From 4c3a08bd7033aefd7f16a7ca300afbcb9457229b Mon Sep 17 00:00:00 2001 From: Mike Lischke Date: Tue, 12 Sep 2023 11:15:40 +0200 Subject: [PATCH] No longer uses an own ANTLR jar for code generation The project instead relies now on the antlr4ng-cli package for code generation. Also increased the Node.js version to use for Github actions. --- .github/workflows/nodejs.yml | 2 +- antlr | 1 - package-lock.json | 20 +- package.json | 5 +- tests/generated/CPP14Lexer.ts | 1258 +-- tests/generated/CPP14Parser.ts | 15646 ++++++++++++++-------------- tests/generated/ExprLexer.ts | 50 +- tests/generated/ExprParser.ts | 272 +- tests/generated/WhiteboxLexer.ts | 56 +- tests/generated/WhiteboxParser.ts | 746 +- 10 files changed, 9042 insertions(+), 9014 deletions(-) delete mode 120000 antlr diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index a35061a..e1d5e26 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [16.x, 19.x] + node-version: [18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: diff --git a/antlr b/antlr deleted file mode 120000 index 68a0288..0000000 --- a/antlr +++ /dev/null @@ -1 +0,0 @@ -/Volumes/Extern/Work/projects/antlr4/tool/target \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 48260d5..e5f176e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "3.2.2", "license": "MIT", "dependencies": { - "antlr4ng": "1.0.6" + "antlr4ng": "1.0.7" }, "devDependencies": { "@types/jest": "29.5.4", @@ -17,6 +17,7 @@ "@types/unicode-properties": "1.3.0", "@typescript-eslint/eslint-plugin": "6.6.0", "@typescript-eslint/parser": "6.6.0", + "antlr4ng-cli": "1.0.0", "eslint": "8.48.0", "eslint-plugin-import": "2.28.1", "eslint-plugin-jsdoc": "46.5.1", @@ -1768,11 +1769,22 @@ } }, "node_modules/antlr4ng": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/antlr4ng/-/antlr4ng-1.0.6.tgz", - "integrity": "sha512-XEERiOQe/qyXYhMuyEovxKHScIXubRgxm+LIcTxLOOadaQ80s/xLCxvmac2trI4CzXNX+X2sZuiPPS6KyTijpg==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/antlr4ng/-/antlr4ng-1.0.7.tgz", + "integrity": "sha512-Y0exiADPPxqOlR5nOxMkM2PHm6l8INQwCVGony7cSvDjr1l8R3qqb9qUFnLnTy18icDphoRWBcNgV35Nt4zRTg==", "engines": { "node": ">=16" + }, + "peerDependencies": { + "antlr4ng-cli": "1.0.0" + } + }, + "node_modules/antlr4ng-cli": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/antlr4ng-cli/-/antlr4ng-cli-1.0.0.tgz", + "integrity": "sha512-VBcZNDmdKkiMdj1ZNVXuPBxD9dRcxMdxuSWEjYVWYlZEWmY+01sPCN7QalK8ZOQdgbPdVwx5EIY49uiqbYFAnQ==", + "bin": { + "antlr4ng": "index.js" } }, "node_modules/anymatch": { diff --git a/package.json b/package.json index 4fdd508..f83c8f0 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "test": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --no-coverage --watchAll=false --max-worker=1", "test-ci": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --no-coverage --watchAll=false --silent", "test-coverage": "jest --testMatch [ \"**/tests/**/*.spec.ts\" ] --coverage --silent", - "generate": "java -jar antlr/antlr4-4.13.2-SNAPSHOT-complete.jar -Dlanguage=TypeScript tests/CPP14.g4 tests/Expr.g4 tests/Whitebox.g4 -no-listener -no-visitor -o tests/generated -Xexact-output-dir", + "generate": "antlr4ng -Dlanguage=TypeScript tests/CPP14.g4 tests/Expr.g4 tests/Whitebox.g4 -no-listener -no-visitor -o tests/generated -Xexact-output-dir", "eslint": "eslint ." }, "devDependencies": { @@ -32,6 +32,7 @@ "@types/unicode-properties": "1.3.0", "@typescript-eslint/eslint-plugin": "6.6.0", "@typescript-eslint/parser": "6.6.0", + "antlr4ng-cli": "1.0.0", "eslint": "8.48.0", "eslint-plugin-import": "2.28.1", "eslint-plugin-jsdoc": "46.5.1", @@ -42,6 +43,6 @@ "typescript": "5.2.2" }, "dependencies": { - "antlr4ng": "1.0.6" + "antlr4ng": "1.0.7" } } diff --git a/tests/generated/CPP14Lexer.ts b/tests/generated/CPP14Lexer.ts index 7a98c65..25e08d1 100644 --- a/tests/generated/CPP14Lexer.ts +++ b/tests/generated/CPP14Lexer.ts @@ -153,52 +153,52 @@ export class CPP14Lexer extends antlr.Lexer { ]; public static readonly literalNames = [ - null, null, null, "'alignas'", "'alignof'", "'asm'", "'auto'", "'bool'", - "'break'", "'case'", "'catch'", "'char'", "'char16_t'", "'char32_t'", - "'class'", "'const'", "'constexpr'", "'const_cast'", "'continue'", - "'decltype'", "'default'", "'delete'", "'do'", "'double'", "'dynamic_cast'", - "'else'", "'enum'", "'explicit'", "'export'", "'extern'", "'false'", - "'final'", "'float'", "'for'", "'friend'", "'goto'", "'if'", "'inline'", - "'int'", "'long'", "'mutable'", "'namespace'", "'new'", "'noexcept'", - "'nullptr'", "'operator'", "'override'", "'private'", "'protected'", - "'public'", "'register'", "'reinterpret_cast'", "'return'", "'short'", - "'signed'", "'sizeof'", "'static'", "'static_assert'", "'static_cast'", - "'struct'", "'switch'", "'template'", "'this'", "'thread_local'", - "'throw'", "'true'", "'try'", "'typedef'", "'typeid'", "'typename'", - "'union'", "'unsigned'", "'using'", "'virtual'", "'void'", "'volatile'", - "'wchar_t'", "'while'", "'('", "')'", "'['", "']'", "'{'", "'}'", - "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "'&'", "'|'", "'~'", "'!'", - "'='", "'<'", "'>'", "'+='", "'-='", "'*='", "'/='", "'%='", "'^='", - "'&='", "'|='", "'<<'", "'<<='", "'=='", "'!='", "'<='", "'>='", - "'&&'", "'||'", "'++'", "'--'", "','", "'->*'", "'->'", "'?'", "':'", + null, null, null, "'alignas'", "'alignof'", "'asm'", "'auto'", "'bool'", + "'break'", "'case'", "'catch'", "'char'", "'char16_t'", "'char32_t'", + "'class'", "'const'", "'constexpr'", "'const_cast'", "'continue'", + "'decltype'", "'default'", "'delete'", "'do'", "'double'", "'dynamic_cast'", + "'else'", "'enum'", "'explicit'", "'export'", "'extern'", "'false'", + "'final'", "'float'", "'for'", "'friend'", "'goto'", "'if'", "'inline'", + "'int'", "'long'", "'mutable'", "'namespace'", "'new'", "'noexcept'", + "'nullptr'", "'operator'", "'override'", "'private'", "'protected'", + "'public'", "'register'", "'reinterpret_cast'", "'return'", "'short'", + "'signed'", "'sizeof'", "'static'", "'static_assert'", "'static_cast'", + "'struct'", "'switch'", "'template'", "'this'", "'thread_local'", + "'throw'", "'true'", "'try'", "'typedef'", "'typeid'", "'typename'", + "'union'", "'unsigned'", "'using'", "'virtual'", "'void'", "'volatile'", + "'wchar_t'", "'while'", "'('", "')'", "'['", "']'", "'{'", "'}'", + "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "'&'", "'|'", "'~'", "'!'", + "'='", "'<'", "'>'", "'+='", "'-='", "'*='", "'/='", "'%='", "'^='", + "'&='", "'|='", "'<<'", "'<<='", "'=='", "'!='", "'<='", "'>='", + "'&&'", "'||'", "'++'", "'--'", "','", "'->*'", "'->'", "'?'", "':'", "'::'", "';'", "'.'", "'.*'", "'...'" ]; public static readonly symbolicNames = [ - null, "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", - "Auto", "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", - "Class", "Const", "Constexpr", "Const_cast", "Continue", "Decltype", - "Default", "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", - "Explicit", "Export", "Extern", "False", "Final", "Float", "For", - "Friend", "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", - "New", "Noexcept", "Nullptr", "Operator", "Override", "Private", - "Protected", "Public", "Register", "Reinterpret_cast", "Return", - "Short", "Signed", "Sizeof", "Static", "Static_assert", "Static_cast", - "Struct", "Switch", "Template", "This", "Thread_local", "Throw", - "True", "Try", "Typedef", "Typeid", "Typename", "Union", "Unsigned", - "Using", "Virtual", "Void", "Volatile", "Wchar", "While", "LeftParen", - "RightParen", "LeftBracket", "RightBracket", "LeftBrace", "RightBrace", - "Plus", "Minus", "Star", "Div", "Mod", "Caret", "And", "Or", "Tilde", - "Not", "Assign", "Less", "Greater", "PlusAssign", "MinusAssign", - "StarAssign", "DivAssign", "ModAssign", "XorAssign", "AndAssign", - "OrAssign", "LeftShift", "LeftShiftAssign", "Equal", "NotEqual", - "LessEqual", "GreaterEqual", "AndAnd", "OrOr", "PlusPlus", "MinusMinus", - "Comma", "ArrowStar", "Arrow", "Question", "Colon", "Doublecolon", - "Semi", "Dot", "DotStar", "Ellipsis", "Identifier", "Integerliteral", - "Decimalliteral", "Octalliteral", "Hexadecimalliteral", "Binaryliteral", - "Integersuffix", "Characterliteral", "Floatingliteral", "Stringliteral", - "Userdefinedintegerliteral", "Userdefinedfloatingliteral", "Userdefinedstringliteral", - "Userdefinedcharacterliteral", "Whitespace", "Newline", "BlockComment", + null, "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", + "Auto", "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", + "Class", "Const", "Constexpr", "Const_cast", "Continue", "Decltype", + "Default", "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", + "Explicit", "Export", "Extern", "False", "Final", "Float", "For", + "Friend", "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", + "New", "Noexcept", "Nullptr", "Operator", "Override", "Private", + "Protected", "Public", "Register", "Reinterpret_cast", "Return", + "Short", "Signed", "Sizeof", "Static", "Static_assert", "Static_cast", + "Struct", "Switch", "Template", "This", "Thread_local", "Throw", + "True", "Try", "Typedef", "Typeid", "Typename", "Union", "Unsigned", + "Using", "Virtual", "Void", "Volatile", "Wchar", "While", "LeftParen", + "RightParen", "LeftBracket", "RightBracket", "LeftBrace", "RightBrace", + "Plus", "Minus", "Star", "Div", "Mod", "Caret", "And", "Or", "Tilde", + "Not", "Assign", "Less", "Greater", "PlusAssign", "MinusAssign", + "StarAssign", "DivAssign", "ModAssign", "XorAssign", "AndAssign", + "OrAssign", "LeftShift", "LeftShiftAssign", "Equal", "NotEqual", + "LessEqual", "GreaterEqual", "AndAnd", "OrOr", "PlusPlus", "MinusMinus", + "Comma", "ArrowStar", "Arrow", "Question", "Colon", "Doublecolon", + "Semi", "Dot", "DotStar", "Ellipsis", "Identifier", "Integerliteral", + "Decimalliteral", "Octalliteral", "Hexadecimalliteral", "Binaryliteral", + "Integersuffix", "Characterliteral", "Floatingliteral", "Stringliteral", + "Userdefinedintegerliteral", "Userdefinedfloatingliteral", "Userdefinedstringliteral", + "Userdefinedcharacterliteral", "Whitespace", "Newline", "BlockComment", "LineComment" ]; @@ -207,35 +207,35 @@ export class CPP14Lexer extends antlr.Lexer { ]; public static readonly ruleNames = [ - "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", "Auto", - "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", "Class", - "Const", "Constexpr", "Const_cast", "Continue", "Decltype", "Default", - "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", "Explicit", - "Export", "Extern", "False", "Final", "Float", "For", "Friend", - "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", "New", - "Noexcept", "Nullptr", "Operator", "Override", "Private", "Protected", - "Public", "Register", "Reinterpret_cast", "Return", "Short", "Signed", - "Sizeof", "Static", "Static_assert", "Static_cast", "Struct", "Switch", - "Template", "This", "Thread_local", "Throw", "True", "Try", "Typedef", - "Typeid", "Typename", "Union", "Unsigned", "Using", "Virtual", "Void", - "Volatile", "Wchar", "While", "LeftParen", "RightParen", "LeftBracket", - "RightBracket", "LeftBrace", "RightBrace", "Plus", "Minus", "Star", - "Div", "Mod", "Caret", "And", "Or", "Tilde", "Not", "Assign", "Less", - "Greater", "PlusAssign", "MinusAssign", "StarAssign", "DivAssign", - "ModAssign", "XorAssign", "AndAssign", "OrAssign", "LeftShift", - "LeftShiftAssign", "Equal", "NotEqual", "LessEqual", "GreaterEqual", - "AndAnd", "OrOr", "PlusPlus", "MinusMinus", "Comma", "ArrowStar", - "Arrow", "Question", "Colon", "Doublecolon", "Semi", "Dot", "DotStar", - "Ellipsis", "Hexquad", "Universalcharactername", "Identifier", "Identifiernondigit", - "NONDIGIT", "DIGIT", "Integerliteral", "Decimalliteral", "Octalliteral", - "Hexadecimalliteral", "Binaryliteral", "NONZERODIGIT", "OCTALDIGIT", - "HEXADECIMALDIGIT", "BINARYDIGIT", "Integersuffix", "Unsignedsuffix", - "Longsuffix", "Longlongsuffix", "Characterliteral", "Cchar", "Escapesequence", - "Simpleescapesequence", "Octalescapesequence", "Hexadecimalescapesequence", - "Floatingliteral", "Fractionalconstant", "Exponentpart", "SIGN", - "Digitsequence", "Floatingsuffix", "Stringliteral", "Encodingprefix", - "Schar", "Rawstring", "Userdefinedintegerliteral", "Userdefinedfloatingliteral", - "Userdefinedstringliteral", "Userdefinedcharacterliteral", "Udsuffix", + "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", "Auto", + "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", "Class", + "Const", "Constexpr", "Const_cast", "Continue", "Decltype", "Default", + "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", "Explicit", + "Export", "Extern", "False", "Final", "Float", "For", "Friend", + "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", "New", + "Noexcept", "Nullptr", "Operator", "Override", "Private", "Protected", + "Public", "Register", "Reinterpret_cast", "Return", "Short", "Signed", + "Sizeof", "Static", "Static_assert", "Static_cast", "Struct", "Switch", + "Template", "This", "Thread_local", "Throw", "True", "Try", "Typedef", + "Typeid", "Typename", "Union", "Unsigned", "Using", "Virtual", "Void", + "Volatile", "Wchar", "While", "LeftParen", "RightParen", "LeftBracket", + "RightBracket", "LeftBrace", "RightBrace", "Plus", "Minus", "Star", + "Div", "Mod", "Caret", "And", "Or", "Tilde", "Not", "Assign", "Less", + "Greater", "PlusAssign", "MinusAssign", "StarAssign", "DivAssign", + "ModAssign", "XorAssign", "AndAssign", "OrAssign", "LeftShift", + "LeftShiftAssign", "Equal", "NotEqual", "LessEqual", "GreaterEqual", + "AndAnd", "OrOr", "PlusPlus", "MinusMinus", "Comma", "ArrowStar", + "Arrow", "Question", "Colon", "Doublecolon", "Semi", "Dot", "DotStar", + "Ellipsis", "Hexquad", "Universalcharactername", "Identifier", "Identifiernondigit", + "NONDIGIT", "DIGIT", "Integerliteral", "Decimalliteral", "Octalliteral", + "Hexadecimalliteral", "Binaryliteral", "NONZERODIGIT", "OCTALDIGIT", + "HEXADECIMALDIGIT", "BINARYDIGIT", "Integersuffix", "Unsignedsuffix", + "Longsuffix", "Longlongsuffix", "Characterliteral", "Cchar", "Escapesequence", + "Simpleescapesequence", "Octalescapesequence", "Hexadecimalescapesequence", + "Floatingliteral", "Fractionalconstant", "Exponentpart", "SIGN", + "Digitsequence", "Floatingsuffix", "Stringliteral", "Encodingprefix", + "Schar", "Rawstring", "Userdefinedintegerliteral", "Userdefinedfloatingliteral", + "Userdefinedstringliteral", "Userdefinedcharacterliteral", "Udsuffix", "Whitespace", "Newline", "BlockComment", "LineComment", ]; @@ -258,562 +258,562 @@ export class CPP14Lexer extends antlr.Lexer { public get modeNames(): string[] { return CPP14Lexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4, 0, 142, 1446, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, - 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, - 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, - 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, - 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, - 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, - 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, - 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, - 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, - 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, - 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, - 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, - 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, - 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, - 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, - 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, - 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, - 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, - 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, - 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, - 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, - 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, - 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, - 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, - 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, - 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, - 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, - 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 1, 0, 1, 0, 5, 0, 340, - 8, 0, 10, 0, 12, 0, 343, 9, 0, 1, 0, 1, 0, 3, 0, 347, 8, 0, 1, 0, 4, 0, 350, 8, 0, 11, 0, 12, - 0, 351, 1, 0, 4, 0, 355, 8, 0, 11, 0, 12, 0, 356, 1, 0, 1, 0, 1, 1, 1, 1, 5, 1, 363, 8, 1, - 10, 1, 12, 1, 366, 9, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, - 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, - 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, - 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, - 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 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, 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, 16, 1, 16, 1, - 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, - 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 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, 1, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, - 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, - 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, - 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, - 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, - 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, - 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, - 34, 1, 34, 1, 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, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, - 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, - 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, - 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, - 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, - 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, - 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, - 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, - 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, - 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, - 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, - 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, - 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, - 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, - 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 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, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, - 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 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, - 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, - 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, - 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, - 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, - 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, - 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, - 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 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, 94, 1, 94, 1, 95, 1, 95, 1, - 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, - 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, - 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, - 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, - 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, - 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, - 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, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, - 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1055, 8, 125, 1, 126, - 1, 126, 1, 126, 5, 126, 1060, 8, 126, 10, 126, 12, 126, 1063, 9, 126, 1, 127, 1, 127, - 3, 127, 1067, 8, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 3, 130, 1075, - 8, 130, 1, 130, 1, 130, 3, 130, 1079, 8, 130, 1, 130, 1, 130, 3, 130, 1083, 8, 130, - 1, 130, 1, 130, 3, 130, 1087, 8, 130, 3, 130, 1089, 8, 130, 1, 131, 1, 131, 3, 131, - 1093, 8, 131, 1, 131, 5, 131, 1096, 8, 131, 10, 131, 12, 131, 1099, 9, 131, 1, 132, - 1, 132, 3, 132, 1103, 8, 132, 1, 132, 5, 132, 1106, 8, 132, 10, 132, 12, 132, 1109, - 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1115, 8, 133, 1, 133, 1, 133, 3, 133, - 1119, 8, 133, 1, 133, 5, 133, 1122, 8, 133, 10, 133, 12, 133, 1125, 9, 133, 1, 134, - 1, 134, 1, 134, 1, 134, 3, 134, 1131, 8, 134, 1, 134, 1, 134, 3, 134, 1135, 8, 134, - 1, 134, 5, 134, 1138, 8, 134, 10, 134, 12, 134, 1141, 9, 134, 1, 135, 1, 135, 1, 136, - 1, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 1153, 8, 139, 1, 139, - 1, 139, 3, 139, 1157, 8, 139, 1, 139, 1, 139, 3, 139, 1161, 8, 139, 1, 139, 1, 139, - 3, 139, 1165, 8, 139, 3, 139, 1167, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, - 1, 142, 1, 142, 1, 142, 3, 142, 1177, 8, 142, 1, 143, 1, 143, 4, 143, 1181, 8, 143, - 11, 143, 12, 143, 1182, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 1190, 8, 143, - 11, 143, 12, 143, 1191, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 1199, 8, 143, - 11, 143, 12, 143, 1200, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 4, 143, 1208, 8, 143, - 11, 143, 12, 143, 1209, 1, 143, 1, 143, 3, 143, 1214, 8, 143, 1, 144, 1, 144, 1, 144, - 3, 144, 1219, 8, 144, 1, 145, 1, 145, 1, 145, 3, 145, 1224, 8, 145, 1, 146, 1, 146, - 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, - 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 1248, - 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, - 1, 147, 3, 147, 1261, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 4, 148, 1267, 8, 148, - 11, 148, 12, 148, 1268, 1, 149, 1, 149, 3, 149, 1273, 8, 149, 1, 149, 3, 149, 1276, - 8, 149, 1, 149, 1, 149, 1, 149, 3, 149, 1281, 8, 149, 3, 149, 1283, 8, 149, 1, 150, - 3, 150, 1286, 8, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 1293, 8, 150, - 1, 151, 1, 151, 3, 151, 1297, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 1302, 8, 151, - 1, 151, 3, 151, 1305, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 1311, 8, 153, - 1, 153, 5, 153, 1314, 8, 153, 10, 153, 12, 153, 1317, 9, 153, 1, 154, 1, 154, 1, 155, - 3, 155, 1322, 8, 155, 1, 155, 1, 155, 5, 155, 1326, 8, 155, 10, 155, 12, 155, 1329, - 9, 155, 1, 155, 1, 155, 3, 155, 1333, 8, 155, 1, 155, 1, 155, 3, 155, 1337, 8, 155, - 1, 156, 1, 156, 1, 156, 3, 156, 1342, 8, 156, 1, 157, 1, 157, 1, 157, 3, 157, 1347, - 8, 157, 1, 158, 1, 158, 5, 158, 1351, 8, 158, 10, 158, 12, 158, 1354, 9, 158, 1, 158, - 1, 158, 5, 158, 1358, 8, 158, 10, 158, 12, 158, 1361, 9, 158, 1, 158, 1, 158, 5, 158, - 1365, 8, 158, 10, 158, 12, 158, 1368, 9, 158, 1, 158, 1, 158, 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, 1384, - 8, 159, 1, 160, 1, 160, 3, 160, 1388, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, - 1, 160, 3, 160, 1396, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 163, - 1, 163, 1, 164, 4, 164, 1407, 8, 164, 11, 164, 12, 164, 1408, 1, 164, 1, 164, 1, 165, - 1, 165, 3, 165, 1415, 8, 165, 1, 165, 3, 165, 1418, 8, 165, 1, 165, 1, 165, 1, 166, - 1, 166, 1, 166, 1, 166, 5, 166, 1426, 8, 166, 10, 166, 12, 166, 1429, 9, 166, 1, 166, - 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 1440, 8, 167, - 10, 167, 12, 167, 1443, 9, 167, 1, 167, 1, 167, 5, 341, 1352, 1359, 1366, 1427, 0, - 168, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, - 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, - 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, - 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, - 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, - 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, - 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, - 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, - 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, - 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, - 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, - 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, - 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 0, 251, 0, 253, 125, - 255, 0, 257, 0, 259, 0, 261, 126, 263, 127, 265, 128, 267, 129, 269, 130, 271, 0, - 273, 0, 275, 0, 277, 0, 279, 131, 281, 0, 283, 0, 285, 0, 287, 132, 289, 0, 291, 0, - 293, 0, 295, 0, 297, 0, 299, 133, 301, 0, 303, 0, 305, 0, 307, 0, 309, 0, 311, 134, - 313, 0, 315, 0, 317, 0, 319, 135, 321, 136, 323, 137, 325, 138, 327, 0, 329, 139, - 331, 140, 333, 141, 335, 142, 1, 0, 16, 1, 0, 10, 10, 3, 0, 65, 90, 95, 95, 97, 122, - 1, 0, 48, 57, 1, 0, 49, 57, 1, 0, 48, 55, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 49, 2, - 0, 85, 85, 117, 117, 2, 0, 76, 76, 108, 108, 4, 0, 10, 10, 13, 13, 39, 39, 92, 92, 2, - 0, 43, 43, 45, 45, 4, 0, 70, 70, 76, 76, 102, 102, 108, 108, 3, 0, 76, 76, 85, 85, 117, - 117, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 9, 9, 32, 32, 2, 0, 10, 10, 13, 13, 1508, - 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, - 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, - 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, - 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, - 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, - 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, - 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, - 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, - 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, - 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, - 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, - 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, - 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, - 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, - 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, - 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, - 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, - 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, - 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, - 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, - 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, - 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, - 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, - 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, - 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, - 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, - 0, 253, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, - 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, - 311, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, - 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 1, 337, - 1, 0, 0, 0, 3, 360, 1, 0, 0, 0, 5, 369, 1, 0, 0, 0, 7, 377, 1, 0, 0, 0, 9, 385, 1, 0, 0, 0, - 11, 389, 1, 0, 0, 0, 13, 394, 1, 0, 0, 0, 15, 399, 1, 0, 0, 0, 17, 405, 1, 0, 0, 0, 19, 410, - 1, 0, 0, 0, 21, 416, 1, 0, 0, 0, 23, 421, 1, 0, 0, 0, 25, 430, 1, 0, 0, 0, 27, 439, 1, 0, - 0, 0, 29, 445, 1, 0, 0, 0, 31, 451, 1, 0, 0, 0, 33, 461, 1, 0, 0, 0, 35, 472, 1, 0, 0, 0, - 37, 481, 1, 0, 0, 0, 39, 490, 1, 0, 0, 0, 41, 498, 1, 0, 0, 0, 43, 505, 1, 0, 0, 0, 45, 508, - 1, 0, 0, 0, 47, 515, 1, 0, 0, 0, 49, 528, 1, 0, 0, 0, 51, 533, 1, 0, 0, 0, 53, 538, 1, 0, - 0, 0, 55, 547, 1, 0, 0, 0, 57, 554, 1, 0, 0, 0, 59, 561, 1, 0, 0, 0, 61, 567, 1, 0, 0, 0, - 63, 573, 1, 0, 0, 0, 65, 579, 1, 0, 0, 0, 67, 583, 1, 0, 0, 0, 69, 590, 1, 0, 0, 0, 71, 595, - 1, 0, 0, 0, 73, 598, 1, 0, 0, 0, 75, 605, 1, 0, 0, 0, 77, 609, 1, 0, 0, 0, 79, 614, 1, 0, - 0, 0, 81, 622, 1, 0, 0, 0, 83, 632, 1, 0, 0, 0, 85, 636, 1, 0, 0, 0, 87, 645, 1, 0, 0, 0, - 89, 653, 1, 0, 0, 0, 91, 662, 1, 0, 0, 0, 93, 671, 1, 0, 0, 0, 95, 679, 1, 0, 0, 0, 97, 689, - 1, 0, 0, 0, 99, 696, 1, 0, 0, 0, 101, 705, 1, 0, 0, 0, 103, 722, 1, 0, 0, 0, 105, 729, 1, - 0, 0, 0, 107, 735, 1, 0, 0, 0, 109, 742, 1, 0, 0, 0, 111, 749, 1, 0, 0, 0, 113, 756, 1, - 0, 0, 0, 115, 770, 1, 0, 0, 0, 117, 782, 1, 0, 0, 0, 119, 789, 1, 0, 0, 0, 121, 796, 1, - 0, 0, 0, 123, 805, 1, 0, 0, 0, 125, 810, 1, 0, 0, 0, 127, 823, 1, 0, 0, 0, 129, 829, 1, - 0, 0, 0, 131, 834, 1, 0, 0, 0, 133, 838, 1, 0, 0, 0, 135, 846, 1, 0, 0, 0, 137, 853, 1, - 0, 0, 0, 139, 862, 1, 0, 0, 0, 141, 868, 1, 0, 0, 0, 143, 877, 1, 0, 0, 0, 145, 883, 1, - 0, 0, 0, 147, 891, 1, 0, 0, 0, 149, 896, 1, 0, 0, 0, 151, 905, 1, 0, 0, 0, 153, 913, 1, - 0, 0, 0, 155, 919, 1, 0, 0, 0, 157, 921, 1, 0, 0, 0, 159, 923, 1, 0, 0, 0, 161, 925, 1, - 0, 0, 0, 163, 927, 1, 0, 0, 0, 165, 929, 1, 0, 0, 0, 167, 931, 1, 0, 0, 0, 169, 933, 1, - 0, 0, 0, 171, 935, 1, 0, 0, 0, 173, 937, 1, 0, 0, 0, 175, 939, 1, 0, 0, 0, 177, 941, 1, - 0, 0, 0, 179, 943, 1, 0, 0, 0, 181, 945, 1, 0, 0, 0, 183, 947, 1, 0, 0, 0, 185, 949, 1, - 0, 0, 0, 187, 951, 1, 0, 0, 0, 189, 953, 1, 0, 0, 0, 191, 955, 1, 0, 0, 0, 193, 957, 1, - 0, 0, 0, 195, 960, 1, 0, 0, 0, 197, 963, 1, 0, 0, 0, 199, 966, 1, 0, 0, 0, 201, 969, 1, - 0, 0, 0, 203, 972, 1, 0, 0, 0, 205, 975, 1, 0, 0, 0, 207, 978, 1, 0, 0, 0, 209, 981, 1, - 0, 0, 0, 211, 984, 1, 0, 0, 0, 213, 988, 1, 0, 0, 0, 215, 991, 1, 0, 0, 0, 217, 994, 1, - 0, 0, 0, 219, 997, 1, 0, 0, 0, 221, 1000, 1, 0, 0, 0, 223, 1003, 1, 0, 0, 0, 225, 1006, - 1, 0, 0, 0, 227, 1009, 1, 0, 0, 0, 229, 1012, 1, 0, 0, 0, 231, 1014, 1, 0, 0, 0, 233, 1018, - 1, 0, 0, 0, 235, 1021, 1, 0, 0, 0, 237, 1023, 1, 0, 0, 0, 239, 1025, 1, 0, 0, 0, 241, 1028, - 1, 0, 0, 0, 243, 1030, 1, 0, 0, 0, 245, 1032, 1, 0, 0, 0, 247, 1035, 1, 0, 0, 0, 249, 1039, - 1, 0, 0, 0, 251, 1054, 1, 0, 0, 0, 253, 1056, 1, 0, 0, 0, 255, 1066, 1, 0, 0, 0, 257, 1068, - 1, 0, 0, 0, 259, 1070, 1, 0, 0, 0, 261, 1088, 1, 0, 0, 0, 263, 1090, 1, 0, 0, 0, 265, 1100, - 1, 0, 0, 0, 267, 1114, 1, 0, 0, 0, 269, 1130, 1, 0, 0, 0, 271, 1142, 1, 0, 0, 0, 273, 1144, - 1, 0, 0, 0, 275, 1146, 1, 0, 0, 0, 277, 1148, 1, 0, 0, 0, 279, 1166, 1, 0, 0, 0, 281, 1168, - 1, 0, 0, 0, 283, 1170, 1, 0, 0, 0, 285, 1176, 1, 0, 0, 0, 287, 1213, 1, 0, 0, 0, 289, 1218, - 1, 0, 0, 0, 291, 1223, 1, 0, 0, 0, 293, 1247, 1, 0, 0, 0, 295, 1260, 1, 0, 0, 0, 297, 1262, - 1, 0, 0, 0, 299, 1282, 1, 0, 0, 0, 301, 1292, 1, 0, 0, 0, 303, 1304, 1, 0, 0, 0, 305, 1306, - 1, 0, 0, 0, 307, 1308, 1, 0, 0, 0, 309, 1318, 1, 0, 0, 0, 311, 1336, 1, 0, 0, 0, 313, 1341, - 1, 0, 0, 0, 315, 1346, 1, 0, 0, 0, 317, 1348, 1, 0, 0, 0, 319, 1383, 1, 0, 0, 0, 321, 1395, - 1, 0, 0, 0, 323, 1397, 1, 0, 0, 0, 325, 1400, 1, 0, 0, 0, 327, 1403, 1, 0, 0, 0, 329, 1406, - 1, 0, 0, 0, 331, 1417, 1, 0, 0, 0, 333, 1421, 1, 0, 0, 0, 335, 1435, 1, 0, 0, 0, 337, 349, - 5, 35, 0, 0, 338, 340, 8, 0, 0, 0, 339, 338, 1, 0, 0, 0, 340, 343, 1, 0, 0, 0, 341, 342, - 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 342, 344, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 346, - 5, 92, 0, 0, 345, 347, 5, 13, 0, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 348, - 1, 0, 0, 0, 348, 350, 5, 10, 0, 0, 349, 341, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 349, - 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 355, 8, 0, 0, 0, 354, 353, - 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, - 1, 0, 0, 0, 358, 359, 6, 0, 0, 0, 359, 2, 1, 0, 0, 0, 360, 364, 5, 35, 0, 0, 361, 363, 8, - 0, 0, 0, 362, 361, 1, 0, 0, 0, 363, 366, 1, 0, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, - 0, 0, 0, 365, 367, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 367, 368, 6, 1, 0, 0, 368, 4, 1, 0, - 0, 0, 369, 370, 5, 97, 0, 0, 370, 371, 5, 108, 0, 0, 371, 372, 5, 105, 0, 0, 372, 373, - 5, 103, 0, 0, 373, 374, 5, 110, 0, 0, 374, 375, 5, 97, 0, 0, 375, 376, 5, 115, 0, 0, 376, - 6, 1, 0, 0, 0, 377, 378, 5, 97, 0, 0, 378, 379, 5, 108, 0, 0, 379, 380, 5, 105, 0, 0, 380, - 381, 5, 103, 0, 0, 381, 382, 5, 110, 0, 0, 382, 383, 5, 111, 0, 0, 383, 384, 5, 102, - 0, 0, 384, 8, 1, 0, 0, 0, 385, 386, 5, 97, 0, 0, 386, 387, 5, 115, 0, 0, 387, 388, 5, 109, - 0, 0, 388, 10, 1, 0, 0, 0, 389, 390, 5, 97, 0, 0, 390, 391, 5, 117, 0, 0, 391, 392, 5, - 116, 0, 0, 392, 393, 5, 111, 0, 0, 393, 12, 1, 0, 0, 0, 394, 395, 5, 98, 0, 0, 395, 396, - 5, 111, 0, 0, 396, 397, 5, 111, 0, 0, 397, 398, 5, 108, 0, 0, 398, 14, 1, 0, 0, 0, 399, - 400, 5, 98, 0, 0, 400, 401, 5, 114, 0, 0, 401, 402, 5, 101, 0, 0, 402, 403, 5, 97, 0, - 0, 403, 404, 5, 107, 0, 0, 404, 16, 1, 0, 0, 0, 405, 406, 5, 99, 0, 0, 406, 407, 5, 97, - 0, 0, 407, 408, 5, 115, 0, 0, 408, 409, 5, 101, 0, 0, 409, 18, 1, 0, 0, 0, 410, 411, 5, - 99, 0, 0, 411, 412, 5, 97, 0, 0, 412, 413, 5, 116, 0, 0, 413, 414, 5, 99, 0, 0, 414, 415, - 5, 104, 0, 0, 415, 20, 1, 0, 0, 0, 416, 417, 5, 99, 0, 0, 417, 418, 5, 104, 0, 0, 418, - 419, 5, 97, 0, 0, 419, 420, 5, 114, 0, 0, 420, 22, 1, 0, 0, 0, 421, 422, 5, 99, 0, 0, 422, - 423, 5, 104, 0, 0, 423, 424, 5, 97, 0, 0, 424, 425, 5, 114, 0, 0, 425, 426, 5, 49, 0, - 0, 426, 427, 5, 54, 0, 0, 427, 428, 5, 95, 0, 0, 428, 429, 5, 116, 0, 0, 429, 24, 1, 0, - 0, 0, 430, 431, 5, 99, 0, 0, 431, 432, 5, 104, 0, 0, 432, 433, 5, 97, 0, 0, 433, 434, - 5, 114, 0, 0, 434, 435, 5, 51, 0, 0, 435, 436, 5, 50, 0, 0, 436, 437, 5, 95, 0, 0, 437, - 438, 5, 116, 0, 0, 438, 26, 1, 0, 0, 0, 439, 440, 5, 99, 0, 0, 440, 441, 5, 108, 0, 0, - 441, 442, 5, 97, 0, 0, 442, 443, 5, 115, 0, 0, 443, 444, 5, 115, 0, 0, 444, 28, 1, 0, - 0, 0, 445, 446, 5, 99, 0, 0, 446, 447, 5, 111, 0, 0, 447, 448, 5, 110, 0, 0, 448, 449, - 5, 115, 0, 0, 449, 450, 5, 116, 0, 0, 450, 30, 1, 0, 0, 0, 451, 452, 5, 99, 0, 0, 452, - 453, 5, 111, 0, 0, 453, 454, 5, 110, 0, 0, 454, 455, 5, 115, 0, 0, 455, 456, 5, 116, - 0, 0, 456, 457, 5, 101, 0, 0, 457, 458, 5, 120, 0, 0, 458, 459, 5, 112, 0, 0, 459, 460, - 5, 114, 0, 0, 460, 32, 1, 0, 0, 0, 461, 462, 5, 99, 0, 0, 462, 463, 5, 111, 0, 0, 463, - 464, 5, 110, 0, 0, 464, 465, 5, 115, 0, 0, 465, 466, 5, 116, 0, 0, 466, 467, 5, 95, 0, - 0, 467, 468, 5, 99, 0, 0, 468, 469, 5, 97, 0, 0, 469, 470, 5, 115, 0, 0, 470, 471, 5, - 116, 0, 0, 471, 34, 1, 0, 0, 0, 472, 473, 5, 99, 0, 0, 473, 474, 5, 111, 0, 0, 474, 475, - 5, 110, 0, 0, 475, 476, 5, 116, 0, 0, 476, 477, 5, 105, 0, 0, 477, 478, 5, 110, 0, 0, - 478, 479, 5, 117, 0, 0, 479, 480, 5, 101, 0, 0, 480, 36, 1, 0, 0, 0, 481, 482, 5, 100, - 0, 0, 482, 483, 5, 101, 0, 0, 483, 484, 5, 99, 0, 0, 484, 485, 5, 108, 0, 0, 485, 486, - 5, 116, 0, 0, 486, 487, 5, 121, 0, 0, 487, 488, 5, 112, 0, 0, 488, 489, 5, 101, 0, 0, - 489, 38, 1, 0, 0, 0, 490, 491, 5, 100, 0, 0, 491, 492, 5, 101, 0, 0, 492, 493, 5, 102, - 0, 0, 493, 494, 5, 97, 0, 0, 494, 495, 5, 117, 0, 0, 495, 496, 5, 108, 0, 0, 496, 497, - 5, 116, 0, 0, 497, 40, 1, 0, 0, 0, 498, 499, 5, 100, 0, 0, 499, 500, 5, 101, 0, 0, 500, - 501, 5, 108, 0, 0, 501, 502, 5, 101, 0, 0, 502, 503, 5, 116, 0, 0, 503, 504, 5, 101, - 0, 0, 504, 42, 1, 0, 0, 0, 505, 506, 5, 100, 0, 0, 506, 507, 5, 111, 0, 0, 507, 44, 1, - 0, 0, 0, 508, 509, 5, 100, 0, 0, 509, 510, 5, 111, 0, 0, 510, 511, 5, 117, 0, 0, 511, - 512, 5, 98, 0, 0, 512, 513, 5, 108, 0, 0, 513, 514, 5, 101, 0, 0, 514, 46, 1, 0, 0, 0, - 515, 516, 5, 100, 0, 0, 516, 517, 5, 121, 0, 0, 517, 518, 5, 110, 0, 0, 518, 519, 5, - 97, 0, 0, 519, 520, 5, 109, 0, 0, 520, 521, 5, 105, 0, 0, 521, 522, 5, 99, 0, 0, 522, - 523, 5, 95, 0, 0, 523, 524, 5, 99, 0, 0, 524, 525, 5, 97, 0, 0, 525, 526, 5, 115, 0, 0, - 526, 527, 5, 116, 0, 0, 527, 48, 1, 0, 0, 0, 528, 529, 5, 101, 0, 0, 529, 530, 5, 108, - 0, 0, 530, 531, 5, 115, 0, 0, 531, 532, 5, 101, 0, 0, 532, 50, 1, 0, 0, 0, 533, 534, 5, - 101, 0, 0, 534, 535, 5, 110, 0, 0, 535, 536, 5, 117, 0, 0, 536, 537, 5, 109, 0, 0, 537, - 52, 1, 0, 0, 0, 538, 539, 5, 101, 0, 0, 539, 540, 5, 120, 0, 0, 540, 541, 5, 112, 0, 0, - 541, 542, 5, 108, 0, 0, 542, 543, 5, 105, 0, 0, 543, 544, 5, 99, 0, 0, 544, 545, 5, 105, - 0, 0, 545, 546, 5, 116, 0, 0, 546, 54, 1, 0, 0, 0, 547, 548, 5, 101, 0, 0, 548, 549, 5, - 120, 0, 0, 549, 550, 5, 112, 0, 0, 550, 551, 5, 111, 0, 0, 551, 552, 5, 114, 0, 0, 552, - 553, 5, 116, 0, 0, 553, 56, 1, 0, 0, 0, 554, 555, 5, 101, 0, 0, 555, 556, 5, 120, 0, 0, - 556, 557, 5, 116, 0, 0, 557, 558, 5, 101, 0, 0, 558, 559, 5, 114, 0, 0, 559, 560, 5, - 110, 0, 0, 560, 58, 1, 0, 0, 0, 561, 562, 5, 102, 0, 0, 562, 563, 5, 97, 0, 0, 563, 564, - 5, 108, 0, 0, 564, 565, 5, 115, 0, 0, 565, 566, 5, 101, 0, 0, 566, 60, 1, 0, 0, 0, 567, - 568, 5, 102, 0, 0, 568, 569, 5, 105, 0, 0, 569, 570, 5, 110, 0, 0, 570, 571, 5, 97, 0, - 0, 571, 572, 5, 108, 0, 0, 572, 62, 1, 0, 0, 0, 573, 574, 5, 102, 0, 0, 574, 575, 5, 108, - 0, 0, 575, 576, 5, 111, 0, 0, 576, 577, 5, 97, 0, 0, 577, 578, 5, 116, 0, 0, 578, 64, - 1, 0, 0, 0, 579, 580, 5, 102, 0, 0, 580, 581, 5, 111, 0, 0, 581, 582, 5, 114, 0, 0, 582, - 66, 1, 0, 0, 0, 583, 584, 5, 102, 0, 0, 584, 585, 5, 114, 0, 0, 585, 586, 5, 105, 0, 0, - 586, 587, 5, 101, 0, 0, 587, 588, 5, 110, 0, 0, 588, 589, 5, 100, 0, 0, 589, 68, 1, 0, - 0, 0, 590, 591, 5, 103, 0, 0, 591, 592, 5, 111, 0, 0, 592, 593, 5, 116, 0, 0, 593, 594, - 5, 111, 0, 0, 594, 70, 1, 0, 0, 0, 595, 596, 5, 105, 0, 0, 596, 597, 5, 102, 0, 0, 597, - 72, 1, 0, 0, 0, 598, 599, 5, 105, 0, 0, 599, 600, 5, 110, 0, 0, 600, 601, 5, 108, 0, 0, - 601, 602, 5, 105, 0, 0, 602, 603, 5, 110, 0, 0, 603, 604, 5, 101, 0, 0, 604, 74, 1, 0, - 0, 0, 605, 606, 5, 105, 0, 0, 606, 607, 5, 110, 0, 0, 607, 608, 5, 116, 0, 0, 608, 76, - 1, 0, 0, 0, 609, 610, 5, 108, 0, 0, 610, 611, 5, 111, 0, 0, 611, 612, 5, 110, 0, 0, 612, - 613, 5, 103, 0, 0, 613, 78, 1, 0, 0, 0, 614, 615, 5, 109, 0, 0, 615, 616, 5, 117, 0, 0, - 616, 617, 5, 116, 0, 0, 617, 618, 5, 97, 0, 0, 618, 619, 5, 98, 0, 0, 619, 620, 5, 108, - 0, 0, 620, 621, 5, 101, 0, 0, 621, 80, 1, 0, 0, 0, 622, 623, 5, 110, 0, 0, 623, 624, 5, - 97, 0, 0, 624, 625, 5, 109, 0, 0, 625, 626, 5, 101, 0, 0, 626, 627, 5, 115, 0, 0, 627, - 628, 5, 112, 0, 0, 628, 629, 5, 97, 0, 0, 629, 630, 5, 99, 0, 0, 630, 631, 5, 101, 0, - 0, 631, 82, 1, 0, 0, 0, 632, 633, 5, 110, 0, 0, 633, 634, 5, 101, 0, 0, 634, 635, 5, 119, - 0, 0, 635, 84, 1, 0, 0, 0, 636, 637, 5, 110, 0, 0, 637, 638, 5, 111, 0, 0, 638, 639, 5, - 101, 0, 0, 639, 640, 5, 120, 0, 0, 640, 641, 5, 99, 0, 0, 641, 642, 5, 101, 0, 0, 642, - 643, 5, 112, 0, 0, 643, 644, 5, 116, 0, 0, 644, 86, 1, 0, 0, 0, 645, 646, 5, 110, 0, 0, - 646, 647, 5, 117, 0, 0, 647, 648, 5, 108, 0, 0, 648, 649, 5, 108, 0, 0, 649, 650, 5, - 112, 0, 0, 650, 651, 5, 116, 0, 0, 651, 652, 5, 114, 0, 0, 652, 88, 1, 0, 0, 0, 653, 654, - 5, 111, 0, 0, 654, 655, 5, 112, 0, 0, 655, 656, 5, 101, 0, 0, 656, 657, 5, 114, 0, 0, - 657, 658, 5, 97, 0, 0, 658, 659, 5, 116, 0, 0, 659, 660, 5, 111, 0, 0, 660, 661, 5, 114, - 0, 0, 661, 90, 1, 0, 0, 0, 662, 663, 5, 111, 0, 0, 663, 664, 5, 118, 0, 0, 664, 665, 5, - 101, 0, 0, 665, 666, 5, 114, 0, 0, 666, 667, 5, 114, 0, 0, 667, 668, 5, 105, 0, 0, 668, - 669, 5, 100, 0, 0, 669, 670, 5, 101, 0, 0, 670, 92, 1, 0, 0, 0, 671, 672, 5, 112, 0, 0, - 672, 673, 5, 114, 0, 0, 673, 674, 5, 105, 0, 0, 674, 675, 5, 118, 0, 0, 675, 676, 5, - 97, 0, 0, 676, 677, 5, 116, 0, 0, 677, 678, 5, 101, 0, 0, 678, 94, 1, 0, 0, 0, 679, 680, - 5, 112, 0, 0, 680, 681, 5, 114, 0, 0, 681, 682, 5, 111, 0, 0, 682, 683, 5, 116, 0, 0, - 683, 684, 5, 101, 0, 0, 684, 685, 5, 99, 0, 0, 685, 686, 5, 116, 0, 0, 686, 687, 5, 101, - 0, 0, 687, 688, 5, 100, 0, 0, 688, 96, 1, 0, 0, 0, 689, 690, 5, 112, 0, 0, 690, 691, 5, - 117, 0, 0, 691, 692, 5, 98, 0, 0, 692, 693, 5, 108, 0, 0, 693, 694, 5, 105, 0, 0, 694, - 695, 5, 99, 0, 0, 695, 98, 1, 0, 0, 0, 696, 697, 5, 114, 0, 0, 697, 698, 5, 101, 0, 0, - 698, 699, 5, 103, 0, 0, 699, 700, 5, 105, 0, 0, 700, 701, 5, 115, 0, 0, 701, 702, 5, - 116, 0, 0, 702, 703, 5, 101, 0, 0, 703, 704, 5, 114, 0, 0, 704, 100, 1, 0, 0, 0, 705, - 706, 5, 114, 0, 0, 706, 707, 5, 101, 0, 0, 707, 708, 5, 105, 0, 0, 708, 709, 5, 110, - 0, 0, 709, 710, 5, 116, 0, 0, 710, 711, 5, 101, 0, 0, 711, 712, 5, 114, 0, 0, 712, 713, - 5, 112, 0, 0, 713, 714, 5, 114, 0, 0, 714, 715, 5, 101, 0, 0, 715, 716, 5, 116, 0, 0, - 716, 717, 5, 95, 0, 0, 717, 718, 5, 99, 0, 0, 718, 719, 5, 97, 0, 0, 719, 720, 5, 115, - 0, 0, 720, 721, 5, 116, 0, 0, 721, 102, 1, 0, 0, 0, 722, 723, 5, 114, 0, 0, 723, 724, - 5, 101, 0, 0, 724, 725, 5, 116, 0, 0, 725, 726, 5, 117, 0, 0, 726, 727, 5, 114, 0, 0, - 727, 728, 5, 110, 0, 0, 728, 104, 1, 0, 0, 0, 729, 730, 5, 115, 0, 0, 730, 731, 5, 104, - 0, 0, 731, 732, 5, 111, 0, 0, 732, 733, 5, 114, 0, 0, 733, 734, 5, 116, 0, 0, 734, 106, - 1, 0, 0, 0, 735, 736, 5, 115, 0, 0, 736, 737, 5, 105, 0, 0, 737, 738, 5, 103, 0, 0, 738, - 739, 5, 110, 0, 0, 739, 740, 5, 101, 0, 0, 740, 741, 5, 100, 0, 0, 741, 108, 1, 0, 0, - 0, 742, 743, 5, 115, 0, 0, 743, 744, 5, 105, 0, 0, 744, 745, 5, 122, 0, 0, 745, 746, - 5, 101, 0, 0, 746, 747, 5, 111, 0, 0, 747, 748, 5, 102, 0, 0, 748, 110, 1, 0, 0, 0, 749, - 750, 5, 115, 0, 0, 750, 751, 5, 116, 0, 0, 751, 752, 5, 97, 0, 0, 752, 753, 5, 116, 0, - 0, 753, 754, 5, 105, 0, 0, 754, 755, 5, 99, 0, 0, 755, 112, 1, 0, 0, 0, 756, 757, 5, 115, - 0, 0, 757, 758, 5, 116, 0, 0, 758, 759, 5, 97, 0, 0, 759, 760, 5, 116, 0, 0, 760, 761, - 5, 105, 0, 0, 761, 762, 5, 99, 0, 0, 762, 763, 5, 95, 0, 0, 763, 764, 5, 97, 0, 0, 764, - 765, 5, 115, 0, 0, 765, 766, 5, 115, 0, 0, 766, 767, 5, 101, 0, 0, 767, 768, 5, 114, - 0, 0, 768, 769, 5, 116, 0, 0, 769, 114, 1, 0, 0, 0, 770, 771, 5, 115, 0, 0, 771, 772, - 5, 116, 0, 0, 772, 773, 5, 97, 0, 0, 773, 774, 5, 116, 0, 0, 774, 775, 5, 105, 0, 0, 775, - 776, 5, 99, 0, 0, 776, 777, 5, 95, 0, 0, 777, 778, 5, 99, 0, 0, 778, 779, 5, 97, 0, 0, - 779, 780, 5, 115, 0, 0, 780, 781, 5, 116, 0, 0, 781, 116, 1, 0, 0, 0, 782, 783, 5, 115, - 0, 0, 783, 784, 5, 116, 0, 0, 784, 785, 5, 114, 0, 0, 785, 786, 5, 117, 0, 0, 786, 787, - 5, 99, 0, 0, 787, 788, 5, 116, 0, 0, 788, 118, 1, 0, 0, 0, 789, 790, 5, 115, 0, 0, 790, - 791, 5, 119, 0, 0, 791, 792, 5, 105, 0, 0, 792, 793, 5, 116, 0, 0, 793, 794, 5, 99, 0, - 0, 794, 795, 5, 104, 0, 0, 795, 120, 1, 0, 0, 0, 796, 797, 5, 116, 0, 0, 797, 798, 5, - 101, 0, 0, 798, 799, 5, 109, 0, 0, 799, 800, 5, 112, 0, 0, 800, 801, 5, 108, 0, 0, 801, - 802, 5, 97, 0, 0, 802, 803, 5, 116, 0, 0, 803, 804, 5, 101, 0, 0, 804, 122, 1, 0, 0, 0, - 805, 806, 5, 116, 0, 0, 806, 807, 5, 104, 0, 0, 807, 808, 5, 105, 0, 0, 808, 809, 5, - 115, 0, 0, 809, 124, 1, 0, 0, 0, 810, 811, 5, 116, 0, 0, 811, 812, 5, 104, 0, 0, 812, - 813, 5, 114, 0, 0, 813, 814, 5, 101, 0, 0, 814, 815, 5, 97, 0, 0, 815, 816, 5, 100, 0, - 0, 816, 817, 5, 95, 0, 0, 817, 818, 5, 108, 0, 0, 818, 819, 5, 111, 0, 0, 819, 820, 5, - 99, 0, 0, 820, 821, 5, 97, 0, 0, 821, 822, 5, 108, 0, 0, 822, 126, 1, 0, 0, 0, 823, 824, - 5, 116, 0, 0, 824, 825, 5, 104, 0, 0, 825, 826, 5, 114, 0, 0, 826, 827, 5, 111, 0, 0, - 827, 828, 5, 119, 0, 0, 828, 128, 1, 0, 0, 0, 829, 830, 5, 116, 0, 0, 830, 831, 5, 114, - 0, 0, 831, 832, 5, 117, 0, 0, 832, 833, 5, 101, 0, 0, 833, 130, 1, 0, 0, 0, 834, 835, - 5, 116, 0, 0, 835, 836, 5, 114, 0, 0, 836, 837, 5, 121, 0, 0, 837, 132, 1, 0, 0, 0, 838, - 839, 5, 116, 0, 0, 839, 840, 5, 121, 0, 0, 840, 841, 5, 112, 0, 0, 841, 842, 5, 101, - 0, 0, 842, 843, 5, 100, 0, 0, 843, 844, 5, 101, 0, 0, 844, 845, 5, 102, 0, 0, 845, 134, - 1, 0, 0, 0, 846, 847, 5, 116, 0, 0, 847, 848, 5, 121, 0, 0, 848, 849, 5, 112, 0, 0, 849, - 850, 5, 101, 0, 0, 850, 851, 5, 105, 0, 0, 851, 852, 5, 100, 0, 0, 852, 136, 1, 0, 0, - 0, 853, 854, 5, 116, 0, 0, 854, 855, 5, 121, 0, 0, 855, 856, 5, 112, 0, 0, 856, 857, - 5, 101, 0, 0, 857, 858, 5, 110, 0, 0, 858, 859, 5, 97, 0, 0, 859, 860, 5, 109, 0, 0, 860, - 861, 5, 101, 0, 0, 861, 138, 1, 0, 0, 0, 862, 863, 5, 117, 0, 0, 863, 864, 5, 110, 0, - 0, 864, 865, 5, 105, 0, 0, 865, 866, 5, 111, 0, 0, 866, 867, 5, 110, 0, 0, 867, 140, - 1, 0, 0, 0, 868, 869, 5, 117, 0, 0, 869, 870, 5, 110, 0, 0, 870, 871, 5, 115, 0, 0, 871, - 872, 5, 105, 0, 0, 872, 873, 5, 103, 0, 0, 873, 874, 5, 110, 0, 0, 874, 875, 5, 101, - 0, 0, 875, 876, 5, 100, 0, 0, 876, 142, 1, 0, 0, 0, 877, 878, 5, 117, 0, 0, 878, 879, - 5, 115, 0, 0, 879, 880, 5, 105, 0, 0, 880, 881, 5, 110, 0, 0, 881, 882, 5, 103, 0, 0, - 882, 144, 1, 0, 0, 0, 883, 884, 5, 118, 0, 0, 884, 885, 5, 105, 0, 0, 885, 886, 5, 114, - 0, 0, 886, 887, 5, 116, 0, 0, 887, 888, 5, 117, 0, 0, 888, 889, 5, 97, 0, 0, 889, 890, - 5, 108, 0, 0, 890, 146, 1, 0, 0, 0, 891, 892, 5, 118, 0, 0, 892, 893, 5, 111, 0, 0, 893, - 894, 5, 105, 0, 0, 894, 895, 5, 100, 0, 0, 895, 148, 1, 0, 0, 0, 896, 897, 5, 118, 0, - 0, 897, 898, 5, 111, 0, 0, 898, 899, 5, 108, 0, 0, 899, 900, 5, 97, 0, 0, 900, 901, 5, - 116, 0, 0, 901, 902, 5, 105, 0, 0, 902, 903, 5, 108, 0, 0, 903, 904, 5, 101, 0, 0, 904, - 150, 1, 0, 0, 0, 905, 906, 5, 119, 0, 0, 906, 907, 5, 99, 0, 0, 907, 908, 5, 104, 0, 0, - 908, 909, 5, 97, 0, 0, 909, 910, 5, 114, 0, 0, 910, 911, 5, 95, 0, 0, 911, 912, 5, 116, - 0, 0, 912, 152, 1, 0, 0, 0, 913, 914, 5, 119, 0, 0, 914, 915, 5, 104, 0, 0, 915, 916, - 5, 105, 0, 0, 916, 917, 5, 108, 0, 0, 917, 918, 5, 101, 0, 0, 918, 154, 1, 0, 0, 0, 919, - 920, 5, 40, 0, 0, 920, 156, 1, 0, 0, 0, 921, 922, 5, 41, 0, 0, 922, 158, 1, 0, 0, 0, 923, - 924, 5, 91, 0, 0, 924, 160, 1, 0, 0, 0, 925, 926, 5, 93, 0, 0, 926, 162, 1, 0, 0, 0, 927, - 928, 5, 123, 0, 0, 928, 164, 1, 0, 0, 0, 929, 930, 5, 125, 0, 0, 930, 166, 1, 0, 0, 0, - 931, 932, 5, 43, 0, 0, 932, 168, 1, 0, 0, 0, 933, 934, 5, 45, 0, 0, 934, 170, 1, 0, 0, - 0, 935, 936, 5, 42, 0, 0, 936, 172, 1, 0, 0, 0, 937, 938, 5, 47, 0, 0, 938, 174, 1, 0, - 0, 0, 939, 940, 5, 37, 0, 0, 940, 176, 1, 0, 0, 0, 941, 942, 5, 94, 0, 0, 942, 178, 1, - 0, 0, 0, 943, 944, 5, 38, 0, 0, 944, 180, 1, 0, 0, 0, 945, 946, 5, 124, 0, 0, 946, 182, - 1, 0, 0, 0, 947, 948, 5, 126, 0, 0, 948, 184, 1, 0, 0, 0, 949, 950, 5, 33, 0, 0, 950, 186, - 1, 0, 0, 0, 951, 952, 5, 61, 0, 0, 952, 188, 1, 0, 0, 0, 953, 954, 5, 60, 0, 0, 954, 190, - 1, 0, 0, 0, 955, 956, 5, 62, 0, 0, 956, 192, 1, 0, 0, 0, 957, 958, 5, 43, 0, 0, 958, 959, - 5, 61, 0, 0, 959, 194, 1, 0, 0, 0, 960, 961, 5, 45, 0, 0, 961, 962, 5, 61, 0, 0, 962, 196, - 1, 0, 0, 0, 963, 964, 5, 42, 0, 0, 964, 965, 5, 61, 0, 0, 965, 198, 1, 0, 0, 0, 966, 967, - 5, 47, 0, 0, 967, 968, 5, 61, 0, 0, 968, 200, 1, 0, 0, 0, 969, 970, 5, 37, 0, 0, 970, 971, - 5, 61, 0, 0, 971, 202, 1, 0, 0, 0, 972, 973, 5, 94, 0, 0, 973, 974, 5, 61, 0, 0, 974, 204, - 1, 0, 0, 0, 975, 976, 5, 38, 0, 0, 976, 977, 5, 61, 0, 0, 977, 206, 1, 0, 0, 0, 978, 979, - 5, 124, 0, 0, 979, 980, 5, 61, 0, 0, 980, 208, 1, 0, 0, 0, 981, 982, 5, 60, 0, 0, 982, - 983, 5, 60, 0, 0, 983, 210, 1, 0, 0, 0, 984, 985, 5, 60, 0, 0, 985, 986, 5, 60, 0, 0, 986, - 987, 5, 61, 0, 0, 987, 212, 1, 0, 0, 0, 988, 989, 5, 61, 0, 0, 989, 990, 5, 61, 0, 0, 990, - 214, 1, 0, 0, 0, 991, 992, 5, 33, 0, 0, 992, 993, 5, 61, 0, 0, 993, 216, 1, 0, 0, 0, 994, - 995, 5, 60, 0, 0, 995, 996, 5, 61, 0, 0, 996, 218, 1, 0, 0, 0, 997, 998, 5, 62, 0, 0, 998, - 999, 5, 61, 0, 0, 999, 220, 1, 0, 0, 0, 1000, 1001, 5, 38, 0, 0, 1001, 1002, 5, 38, 0, - 0, 1002, 222, 1, 0, 0, 0, 1003, 1004, 5, 124, 0, 0, 1004, 1005, 5, 124, 0, 0, 1005, - 224, 1, 0, 0, 0, 1006, 1007, 5, 43, 0, 0, 1007, 1008, 5, 43, 0, 0, 1008, 226, 1, 0, 0, - 0, 1009, 1010, 5, 45, 0, 0, 1010, 1011, 5, 45, 0, 0, 1011, 228, 1, 0, 0, 0, 1012, 1013, - 5, 44, 0, 0, 1013, 230, 1, 0, 0, 0, 1014, 1015, 5, 45, 0, 0, 1015, 1016, 5, 62, 0, 0, - 1016, 1017, 5, 42, 0, 0, 1017, 232, 1, 0, 0, 0, 1018, 1019, 5, 45, 0, 0, 1019, 1020, - 5, 62, 0, 0, 1020, 234, 1, 0, 0, 0, 1021, 1022, 5, 63, 0, 0, 1022, 236, 1, 0, 0, 0, 1023, - 1024, 5, 58, 0, 0, 1024, 238, 1, 0, 0, 0, 1025, 1026, 5, 58, 0, 0, 1026, 1027, 5, 58, - 0, 0, 1027, 240, 1, 0, 0, 0, 1028, 1029, 5, 59, 0, 0, 1029, 242, 1, 0, 0, 0, 1030, 1031, - 5, 46, 0, 0, 1031, 244, 1, 0, 0, 0, 1032, 1033, 5, 46, 0, 0, 1033, 1034, 5, 42, 0, 0, - 1034, 246, 1, 0, 0, 0, 1035, 1036, 5, 46, 0, 0, 1036, 1037, 5, 46, 0, 0, 1037, 1038, - 5, 46, 0, 0, 1038, 248, 1, 0, 0, 0, 1039, 1040, 3, 275, 137, 0, 1040, 1041, 3, 275, - 137, 0, 1041, 1042, 3, 275, 137, 0, 1042, 1043, 3, 275, 137, 0, 1043, 250, 1, 0, 0, - 0, 1044, 1045, 5, 92, 0, 0, 1045, 1046, 5, 117, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, - 1055, 3, 249, 124, 0, 1048, 1049, 5, 92, 0, 0, 1049, 1050, 5, 85, 0, 0, 1050, 1051, - 1, 0, 0, 0, 1051, 1052, 3, 249, 124, 0, 1052, 1053, 3, 249, 124, 0, 1053, 1055, 1, - 0, 0, 0, 1054, 1044, 1, 0, 0, 0, 1054, 1048, 1, 0, 0, 0, 1055, 252, 1, 0, 0, 0, 1056, - 1061, 3, 255, 127, 0, 1057, 1060, 3, 255, 127, 0, 1058, 1060, 3, 259, 129, 0, 1059, - 1057, 1, 0, 0, 0, 1059, 1058, 1, 0, 0, 0, 1060, 1063, 1, 0, 0, 0, 1061, 1059, 1, 0, 0, - 0, 1061, 1062, 1, 0, 0, 0, 1062, 254, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1064, 1067, - 3, 257, 128, 0, 1065, 1067, 3, 251, 125, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1065, 1, - 0, 0, 0, 1067, 256, 1, 0, 0, 0, 1068, 1069, 7, 1, 0, 0, 1069, 258, 1, 0, 0, 0, 1070, 1071, - 7, 2, 0, 0, 1071, 260, 1, 0, 0, 0, 1072, 1074, 3, 263, 131, 0, 1073, 1075, 3, 279, 139, - 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1089, 1, 0, 0, 0, 1076, 1078, - 3, 265, 132, 0, 1077, 1079, 3, 279, 139, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, - 0, 0, 0, 1079, 1089, 1, 0, 0, 0, 1080, 1082, 3, 267, 133, 0, 1081, 1083, 3, 279, 139, - 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1089, 1, 0, 0, 0, 1084, 1086, - 3, 269, 134, 0, 1085, 1087, 3, 279, 139, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, - 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1072, 1, 0, 0, 0, 1088, 1076, 1, 0, 0, 0, 1088, - 1080, 1, 0, 0, 0, 1088, 1084, 1, 0, 0, 0, 1089, 262, 1, 0, 0, 0, 1090, 1097, 3, 271, - 135, 0, 1091, 1093, 5, 39, 0, 0, 1092, 1091, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, - 1094, 1, 0, 0, 0, 1094, 1096, 3, 259, 129, 0, 1095, 1092, 1, 0, 0, 0, 1096, 1099, 1, - 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 264, 1, 0, 0, 0, 1099, - 1097, 1, 0, 0, 0, 1100, 1107, 5, 48, 0, 0, 1101, 1103, 5, 39, 0, 0, 1102, 1101, 1, 0, - 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 3, 273, 136, 0, 1105, - 1102, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, - 0, 1108, 266, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1111, 5, 48, 0, 0, 1111, 1115, - 5, 120, 0, 0, 1112, 1113, 5, 48, 0, 0, 1113, 1115, 5, 88, 0, 0, 1114, 1110, 1, 0, 0, - 0, 1114, 1112, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1123, 3, 275, 137, 0, 1117, - 1119, 5, 39, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, - 0, 0, 1120, 1122, 3, 275, 137, 0, 1121, 1118, 1, 0, 0, 0, 1122, 1125, 1, 0, 0, 0, 1123, - 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 268, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, - 0, 1126, 1127, 5, 48, 0, 0, 1127, 1131, 5, 98, 0, 0, 1128, 1129, 5, 48, 0, 0, 1129, - 1131, 5, 66, 0, 0, 1130, 1126, 1, 0, 0, 0, 1130, 1128, 1, 0, 0, 0, 1131, 1132, 1, 0, - 0, 0, 1132, 1139, 3, 277, 138, 0, 1133, 1135, 5, 39, 0, 0, 1134, 1133, 1, 0, 0, 0, 1134, - 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1138, 3, 277, 138, 0, 1137, 1134, 1, - 0, 0, 0, 1138, 1141, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, - 270, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1142, 1143, 7, 3, 0, 0, 1143, 272, 1, 0, 0, 0, - 1144, 1145, 7, 4, 0, 0, 1145, 274, 1, 0, 0, 0, 1146, 1147, 7, 5, 0, 0, 1147, 276, 1, - 0, 0, 0, 1148, 1149, 7, 6, 0, 0, 1149, 278, 1, 0, 0, 0, 1150, 1152, 3, 281, 140, 0, 1151, - 1153, 3, 283, 141, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1167, 1, - 0, 0, 0, 1154, 1156, 3, 281, 140, 0, 1155, 1157, 3, 285, 142, 0, 1156, 1155, 1, 0, - 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1167, 1, 0, 0, 0, 1158, 1160, 3, 283, 141, 0, 1159, - 1161, 3, 281, 140, 0, 1160, 1159, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1167, 1, - 0, 0, 0, 1162, 1164, 3, 285, 142, 0, 1163, 1165, 3, 281, 140, 0, 1164, 1163, 1, 0, - 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1167, 1, 0, 0, 0, 1166, 1150, 1, 0, 0, 0, 1166, 1154, - 1, 0, 0, 0, 1166, 1158, 1, 0, 0, 0, 1166, 1162, 1, 0, 0, 0, 1167, 280, 1, 0, 0, 0, 1168, - 1169, 7, 7, 0, 0, 1169, 282, 1, 0, 0, 0, 1170, 1171, 7, 8, 0, 0, 1171, 284, 1, 0, 0, 0, - 1172, 1173, 5, 108, 0, 0, 1173, 1177, 5, 108, 0, 0, 1174, 1175, 5, 76, 0, 0, 1175, - 1177, 5, 76, 0, 0, 1176, 1172, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1177, 286, 1, 0, 0, - 0, 1178, 1180, 5, 39, 0, 0, 1179, 1181, 3, 289, 144, 0, 1180, 1179, 1, 0, 0, 0, 1181, - 1182, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, - 0, 1184, 1185, 5, 39, 0, 0, 1185, 1214, 1, 0, 0, 0, 1186, 1187, 5, 117, 0, 0, 1187, - 1189, 5, 39, 0, 0, 1188, 1190, 3, 289, 144, 0, 1189, 1188, 1, 0, 0, 0, 1190, 1191, - 1, 0, 0, 0, 1191, 1189, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, - 1194, 5, 39, 0, 0, 1194, 1214, 1, 0, 0, 0, 1195, 1196, 5, 85, 0, 0, 1196, 1198, 5, 39, - 0, 0, 1197, 1199, 3, 289, 144, 0, 1198, 1197, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, - 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 5, 39, - 0, 0, 1203, 1214, 1, 0, 0, 0, 1204, 1205, 5, 76, 0, 0, 1205, 1207, 5, 39, 0, 0, 1206, - 1208, 3, 289, 144, 0, 1207, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1207, 1, - 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 5, 39, 0, 0, 1212, - 1214, 1, 0, 0, 0, 1213, 1178, 1, 0, 0, 0, 1213, 1186, 1, 0, 0, 0, 1213, 1195, 1, 0, 0, - 0, 1213, 1204, 1, 0, 0, 0, 1214, 288, 1, 0, 0, 0, 1215, 1219, 8, 9, 0, 0, 1216, 1219, - 3, 291, 145, 0, 1217, 1219, 3, 251, 125, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1216, 1, - 0, 0, 0, 1218, 1217, 1, 0, 0, 0, 1219, 290, 1, 0, 0, 0, 1220, 1224, 3, 293, 146, 0, 1221, - 1224, 3, 295, 147, 0, 1222, 1224, 3, 297, 148, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1221, - 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1224, 292, 1, 0, 0, 0, 1225, 1226, 5, 92, 0, 0, 1226, - 1248, 5, 39, 0, 0, 1227, 1228, 5, 92, 0, 0, 1228, 1248, 5, 34, 0, 0, 1229, 1230, 5, - 92, 0, 0, 1230, 1248, 5, 63, 0, 0, 1231, 1232, 5, 92, 0, 0, 1232, 1248, 5, 92, 0, 0, - 1233, 1234, 5, 92, 0, 0, 1234, 1248, 5, 97, 0, 0, 1235, 1236, 5, 92, 0, 0, 1236, 1248, - 5, 98, 0, 0, 1237, 1238, 5, 92, 0, 0, 1238, 1248, 5, 102, 0, 0, 1239, 1240, 5, 92, 0, - 0, 1240, 1248, 5, 110, 0, 0, 1241, 1242, 5, 92, 0, 0, 1242, 1248, 5, 114, 0, 0, 1243, - 1244, 5, 92, 0, 0, 1244, 1248, 5, 116, 0, 0, 1245, 1246, 5, 92, 0, 0, 1246, 1248, 5, - 118, 0, 0, 1247, 1225, 1, 0, 0, 0, 1247, 1227, 1, 0, 0, 0, 1247, 1229, 1, 0, 0, 0, 1247, - 1231, 1, 0, 0, 0, 1247, 1233, 1, 0, 0, 0, 1247, 1235, 1, 0, 0, 0, 1247, 1237, 1, 0, 0, - 0, 1247, 1239, 1, 0, 0, 0, 1247, 1241, 1, 0, 0, 0, 1247, 1243, 1, 0, 0, 0, 1247, 1245, - 1, 0, 0, 0, 1248, 294, 1, 0, 0, 0, 1249, 1250, 5, 92, 0, 0, 1250, 1261, 3, 273, 136, - 0, 1251, 1252, 5, 92, 0, 0, 1252, 1253, 3, 273, 136, 0, 1253, 1254, 3, 273, 136, 0, - 1254, 1261, 1, 0, 0, 0, 1255, 1256, 5, 92, 0, 0, 1256, 1257, 3, 273, 136, 0, 1257, - 1258, 3, 273, 136, 0, 1258, 1259, 3, 273, 136, 0, 1259, 1261, 1, 0, 0, 0, 1260, 1249, - 1, 0, 0, 0, 1260, 1251, 1, 0, 0, 0, 1260, 1255, 1, 0, 0, 0, 1261, 296, 1, 0, 0, 0, 1262, - 1263, 5, 92, 0, 0, 1263, 1264, 5, 120, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, - 275, 137, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, - 1268, 1269, 1, 0, 0, 0, 1269, 298, 1, 0, 0, 0, 1270, 1272, 3, 301, 150, 0, 1271, 1273, - 3, 303, 151, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1275, 1, 0, 0, - 0, 1274, 1276, 3, 309, 154, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, - 1283, 1, 0, 0, 0, 1277, 1278, 3, 307, 153, 0, 1278, 1280, 3, 303, 151, 0, 1279, 1281, - 3, 309, 154, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1283, 1, 0, 0, - 0, 1282, 1270, 1, 0, 0, 0, 1282, 1277, 1, 0, 0, 0, 1283, 300, 1, 0, 0, 0, 1284, 1286, - 3, 307, 153, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, - 0, 1287, 1288, 5, 46, 0, 0, 1288, 1293, 3, 307, 153, 0, 1289, 1290, 3, 307, 153, 0, - 1290, 1291, 5, 46, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1285, 1, 0, 0, 0, 1292, 1289, - 1, 0, 0, 0, 1293, 302, 1, 0, 0, 0, 1294, 1296, 5, 101, 0, 0, 1295, 1297, 3, 305, 152, - 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1305, - 3, 307, 153, 0, 1299, 1301, 5, 69, 0, 0, 1300, 1302, 3, 305, 152, 0, 1301, 1300, 1, - 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 3, 307, 153, 0, - 1304, 1294, 1, 0, 0, 0, 1304, 1299, 1, 0, 0, 0, 1305, 304, 1, 0, 0, 0, 1306, 1307, 7, - 10, 0, 0, 1307, 306, 1, 0, 0, 0, 1308, 1315, 3, 259, 129, 0, 1309, 1311, 5, 39, 0, 0, - 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, - 3, 259, 129, 0, 1313, 1310, 1, 0, 0, 0, 1314, 1317, 1, 0, 0, 0, 1315, 1313, 1, 0, 0, - 0, 1315, 1316, 1, 0, 0, 0, 1316, 308, 1, 0, 0, 0, 1317, 1315, 1, 0, 0, 0, 1318, 1319, - 7, 11, 0, 0, 1319, 310, 1, 0, 0, 0, 1320, 1322, 3, 313, 156, 0, 1321, 1320, 1, 0, 0, - 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1327, 5, 34, 0, 0, 1324, 1326, - 3, 315, 157, 0, 1325, 1324, 1, 0, 0, 0, 1326, 1329, 1, 0, 0, 0, 1327, 1325, 1, 0, 0, - 0, 1327, 1328, 1, 0, 0, 0, 1328, 1330, 1, 0, 0, 0, 1329, 1327, 1, 0, 0, 0, 1330, 1337, - 5, 34, 0, 0, 1331, 1333, 3, 313, 156, 0, 1332, 1331, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, - 0, 1333, 1334, 1, 0, 0, 0, 1334, 1335, 5, 82, 0, 0, 1335, 1337, 3, 317, 158, 0, 1336, - 1321, 1, 0, 0, 0, 1336, 1332, 1, 0, 0, 0, 1337, 312, 1, 0, 0, 0, 1338, 1339, 5, 117, - 0, 0, 1339, 1342, 5, 56, 0, 0, 1340, 1342, 7, 12, 0, 0, 1341, 1338, 1, 0, 0, 0, 1341, - 1340, 1, 0, 0, 0, 1342, 314, 1, 0, 0, 0, 1343, 1347, 8, 13, 0, 0, 1344, 1347, 3, 291, - 145, 0, 1345, 1347, 3, 251, 125, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, - 1346, 1345, 1, 0, 0, 0, 1347, 316, 1, 0, 0, 0, 1348, 1352, 5, 34, 0, 0, 1349, 1351, - 9, 0, 0, 0, 1350, 1349, 1, 0, 0, 0, 1351, 1354, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1352, - 1350, 1, 0, 0, 0, 1353, 1355, 1, 0, 0, 0, 1354, 1352, 1, 0, 0, 0, 1355, 1359, 5, 40, - 0, 0, 1356, 1358, 9, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 1361, 1, 0, 0, 0, 1359, 1360, - 1, 0, 0, 0, 1359, 1357, 1, 0, 0, 0, 1360, 1362, 1, 0, 0, 0, 1361, 1359, 1, 0, 0, 0, 1362, - 1366, 5, 41, 0, 0, 1363, 1365, 9, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 1368, 1, 0, - 0, 0, 1366, 1367, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1369, 1, 0, 0, 0, 1368, 1366, - 1, 0, 0, 0, 1369, 1370, 5, 34, 0, 0, 1370, 318, 1, 0, 0, 0, 1371, 1372, 3, 263, 131, - 0, 1372, 1373, 3, 327, 163, 0, 1373, 1384, 1, 0, 0, 0, 1374, 1375, 3, 265, 132, 0, - 1375, 1376, 3, 327, 163, 0, 1376, 1384, 1, 0, 0, 0, 1377, 1378, 3, 267, 133, 0, 1378, - 1379, 3, 327, 163, 0, 1379, 1384, 1, 0, 0, 0, 1380, 1381, 3, 269, 134, 0, 1381, 1382, - 3, 327, 163, 0, 1382, 1384, 1, 0, 0, 0, 1383, 1371, 1, 0, 0, 0, 1383, 1374, 1, 0, 0, - 0, 1383, 1377, 1, 0, 0, 0, 1383, 1380, 1, 0, 0, 0, 1384, 320, 1, 0, 0, 0, 1385, 1387, - 3, 301, 150, 0, 1386, 1388, 3, 303, 151, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, - 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 3, 327, 163, 0, 1390, 1396, 1, 0, 0, 0, - 1391, 1392, 3, 307, 153, 0, 1392, 1393, 3, 303, 151, 0, 1393, 1394, 3, 327, 163, - 0, 1394, 1396, 1, 0, 0, 0, 1395, 1385, 1, 0, 0, 0, 1395, 1391, 1, 0, 0, 0, 1396, 322, - 1, 0, 0, 0, 1397, 1398, 3, 311, 155, 0, 1398, 1399, 3, 327, 163, 0, 1399, 324, 1, 0, - 0, 0, 1400, 1401, 3, 287, 143, 0, 1401, 1402, 3, 327, 163, 0, 1402, 326, 1, 0, 0, 0, - 1403, 1404, 3, 253, 126, 0, 1404, 328, 1, 0, 0, 0, 1405, 1407, 7, 14, 0, 0, 1406, 1405, - 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, - 1410, 1, 0, 0, 0, 1410, 1411, 6, 164, 1, 0, 1411, 330, 1, 0, 0, 0, 1412, 1414, 5, 13, - 0, 0, 1413, 1415, 5, 10, 0, 0, 1414, 1413, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, - 1418, 1, 0, 0, 0, 1416, 1418, 5, 10, 0, 0, 1417, 1412, 1, 0, 0, 0, 1417, 1416, 1, 0, - 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 6, 165, 1, 0, 1420, 332, 1, 0, 0, 0, 1421, - 1422, 5, 47, 0, 0, 1422, 1423, 5, 42, 0, 0, 1423, 1427, 1, 0, 0, 0, 1424, 1426, 9, 0, - 0, 0, 1425, 1424, 1, 0, 0, 0, 1426, 1429, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1427, 1425, - 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1431, 5, 42, 0, 0, 1431, - 1432, 5, 47, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 6, 166, 1, 0, 1434, 334, 1, 0, - 0, 0, 1435, 1436, 5, 47, 0, 0, 1436, 1437, 5, 47, 0, 0, 1437, 1441, 1, 0, 0, 0, 1438, - 1440, 8, 15, 0, 0, 1439, 1438, 1, 0, 0, 0, 1440, 1443, 1, 0, 0, 0, 1441, 1439, 1, 0, - 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1445, - 6, 167, 1, 0, 1445, 336, 1, 0, 0, 0, 69, 0, 341, 346, 351, 356, 364, 1054, 1059, 1061, - 1066, 1074, 1078, 1082, 1086, 1088, 1092, 1097, 1102, 1107, 1114, 1118, 1123, - 1130, 1134, 1139, 1152, 1156, 1160, 1164, 1166, 1176, 1182, 1191, 1200, 1209, - 1213, 1218, 1223, 1247, 1260, 1268, 1272, 1275, 1280, 1282, 1285, 1292, 1296, - 1301, 1304, 1310, 1315, 1321, 1327, 1332, 1336, 1341, 1346, 1352, 1359, 1366, - 1383, 1387, 1395, 1408, 1414, 1417, 1427, 1441, 2, 0, 1, 0, 6, 0, 0 + 4,0,142,1446,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, + 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, + 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, + 2,26,7,26,2,27,7,27,2,28,7,28,2,29,7,29,2,30,7,30,2,31,7,31,2,32, + 7,32,2,33,7,33,2,34,7,34,2,35,7,35,2,36,7,36,2,37,7,37,2,38,7,38, + 2,39,7,39,2,40,7,40,2,41,7,41,2,42,7,42,2,43,7,43,2,44,7,44,2,45, + 7,45,2,46,7,46,2,47,7,47,2,48,7,48,2,49,7,49,2,50,7,50,2,51,7,51, + 2,52,7,52,2,53,7,53,2,54,7,54,2,55,7,55,2,56,7,56,2,57,7,57,2,58, + 7,58,2,59,7,59,2,60,7,60,2,61,7,61,2,62,7,62,2,63,7,63,2,64,7,64, + 2,65,7,65,2,66,7,66,2,67,7,67,2,68,7,68,2,69,7,69,2,70,7,70,2,71, + 7,71,2,72,7,72,2,73,7,73,2,74,7,74,2,75,7,75,2,76,7,76,2,77,7,77, + 2,78,7,78,2,79,7,79,2,80,7,80,2,81,7,81,2,82,7,82,2,83,7,83,2,84, + 7,84,2,85,7,85,2,86,7,86,2,87,7,87,2,88,7,88,2,89,7,89,2,90,7,90, + 2,91,7,91,2,92,7,92,2,93,7,93,2,94,7,94,2,95,7,95,2,96,7,96,2,97, + 7,97,2,98,7,98,2,99,7,99,2,100,7,100,2,101,7,101,2,102,7,102,2,103, + 7,103,2,104,7,104,2,105,7,105,2,106,7,106,2,107,7,107,2,108,7,108, + 2,109,7,109,2,110,7,110,2,111,7,111,2,112,7,112,2,113,7,113,2,114, + 7,114,2,115,7,115,2,116,7,116,2,117,7,117,2,118,7,118,2,119,7,119, + 2,120,7,120,2,121,7,121,2,122,7,122,2,123,7,123,2,124,7,124,2,125, + 7,125,2,126,7,126,2,127,7,127,2,128,7,128,2,129,7,129,2,130,7,130, + 2,131,7,131,2,132,7,132,2,133,7,133,2,134,7,134,2,135,7,135,2,136, + 7,136,2,137,7,137,2,138,7,138,2,139,7,139,2,140,7,140,2,141,7,141, + 2,142,7,142,2,143,7,143,2,144,7,144,2,145,7,145,2,146,7,146,2,147, + 7,147,2,148,7,148,2,149,7,149,2,150,7,150,2,151,7,151,2,152,7,152, + 2,153,7,153,2,154,7,154,2,155,7,155,2,156,7,156,2,157,7,157,2,158, + 7,158,2,159,7,159,2,160,7,160,2,161,7,161,2,162,7,162,2,163,7,163, + 2,164,7,164,2,165,7,165,2,166,7,166,2,167,7,167,1,0,1,0,5,0,340, + 8,0,10,0,12,0,343,9,0,1,0,1,0,3,0,347,8,0,1,0,4,0,350,8,0,11,0,12, + 0,351,1,0,4,0,355,8,0,11,0,12,0,356,1,0,1,0,1,1,1,1,5,1,363,8,1, + 10,1,12,1,366,9,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,3,1, + 3,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1, + 6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1, + 9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,11,1,11,1,11,1, + 11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,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,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,16,1,16,1, + 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1, + 17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,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,1,20,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1, + 23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1, + 24,1,24,1,24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1, + 26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1, + 28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1, + 30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,32,1, + 32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1, + 34,1,34,1,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,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1, + 39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1, + 41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1, + 44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, + 46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1, + 47,1,47,1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1, + 50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1, + 51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, + 55,1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1, + 57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1,60,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,62,1,62,1,62,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1, + 63,1,63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,66,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, + 68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1, + 69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1, + 71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1, + 73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1, + 76,1,77,1,77,1,78,1,78,1,79,1,79,1,80,1,80,1,81,1,81,1,82,1,82,1, + 83,1,83,1,84,1,84,1,85,1,85,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,94,1,94,1,95,1,95,1, + 96,1,96,1,96,1,97,1,97,1,97,1,98,1,98,1,98,1,99,1,99,1,99,1,100, + 1,100,1,100,1,101,1,101,1,101,1,102,1,102,1,102,1,103,1,103,1,103, + 1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,106,1,106,1,106,1,107, + 1,107,1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110, + 1,111,1,111,1,111,1,112,1,112,1,112,1,113,1,113,1,113,1,114,1,114, + 1,115,1,115,1,115,1,115,1,116,1,116,1,116,1,117,1,117,1,118,1,118, + 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,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,1055,8,125,1,126, + 1,126,1,126,5,126,1060,8,126,10,126,12,126,1063,9,126,1,127,1,127, + 3,127,1067,8,127,1,128,1,128,1,129,1,129,1,130,1,130,3,130,1075, + 8,130,1,130,1,130,3,130,1079,8,130,1,130,1,130,3,130,1083,8,130, + 1,130,1,130,3,130,1087,8,130,3,130,1089,8,130,1,131,1,131,3,131, + 1093,8,131,1,131,5,131,1096,8,131,10,131,12,131,1099,9,131,1,132, + 1,132,3,132,1103,8,132,1,132,5,132,1106,8,132,10,132,12,132,1109, + 9,132,1,133,1,133,1,133,1,133,3,133,1115,8,133,1,133,1,133,3,133, + 1119,8,133,1,133,5,133,1122,8,133,10,133,12,133,1125,9,133,1,134, + 1,134,1,134,1,134,3,134,1131,8,134,1,134,1,134,3,134,1135,8,134, + 1,134,5,134,1138,8,134,10,134,12,134,1141,9,134,1,135,1,135,1,136, + 1,136,1,137,1,137,1,138,1,138,1,139,1,139,3,139,1153,8,139,1,139, + 1,139,3,139,1157,8,139,1,139,1,139,3,139,1161,8,139,1,139,1,139, + 3,139,1165,8,139,3,139,1167,8,139,1,140,1,140,1,141,1,141,1,142, + 1,142,1,142,1,142,3,142,1177,8,142,1,143,1,143,4,143,1181,8,143, + 11,143,12,143,1182,1,143,1,143,1,143,1,143,1,143,4,143,1190,8,143, + 11,143,12,143,1191,1,143,1,143,1,143,1,143,1,143,4,143,1199,8,143, + 11,143,12,143,1200,1,143,1,143,1,143,1,143,1,143,4,143,1208,8,143, + 11,143,12,143,1209,1,143,1,143,3,143,1214,8,143,1,144,1,144,1,144, + 3,144,1219,8,144,1,145,1,145,1,145,3,145,1224,8,145,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,1248, + 8,146,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, + 1,147,3,147,1261,8,147,1,148,1,148,1,148,1,148,4,148,1267,8,148, + 11,148,12,148,1268,1,149,1,149,3,149,1273,8,149,1,149,3,149,1276, + 8,149,1,149,1,149,1,149,3,149,1281,8,149,3,149,1283,8,149,1,150, + 3,150,1286,8,150,1,150,1,150,1,150,1,150,1,150,3,150,1293,8,150, + 1,151,1,151,3,151,1297,8,151,1,151,1,151,1,151,3,151,1302,8,151, + 1,151,3,151,1305,8,151,1,152,1,152,1,153,1,153,3,153,1311,8,153, + 1,153,5,153,1314,8,153,10,153,12,153,1317,9,153,1,154,1,154,1,155, + 3,155,1322,8,155,1,155,1,155,5,155,1326,8,155,10,155,12,155,1329, + 9,155,1,155,1,155,3,155,1333,8,155,1,155,1,155,3,155,1337,8,155, + 1,156,1,156,1,156,3,156,1342,8,156,1,157,1,157,1,157,3,157,1347, + 8,157,1,158,1,158,5,158,1351,8,158,10,158,12,158,1354,9,158,1,158, + 1,158,5,158,1358,8,158,10,158,12,158,1361,9,158,1,158,1,158,5,158, + 1365,8,158,10,158,12,158,1368,9,158,1,158,1,158,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,1384, + 8,159,1,160,1,160,3,160,1388,8,160,1,160,1,160,1,160,1,160,1,160, + 1,160,3,160,1396,8,160,1,161,1,161,1,161,1,162,1,162,1,162,1,163, + 1,163,1,164,4,164,1407,8,164,11,164,12,164,1408,1,164,1,164,1,165, + 1,165,3,165,1415,8,165,1,165,3,165,1418,8,165,1,165,1,165,1,166, + 1,166,1,166,1,166,5,166,1426,8,166,10,166,12,166,1429,9,166,1,166, + 1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,167,5,167,1440,8,167, + 10,167,12,167,1443,9,167,1,167,1,167,5,341,1352,1359,1366,1427,0, + 168,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25, + 13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23,47, + 24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34,69, + 35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45,91, + 46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55,111, + 56,113,57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129,65, + 131,66,133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74,149, + 75,151,76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167,84, + 169,85,171,86,173,87,175,88,177,89,179,90,181,91,183,92,185,93,187, + 94,189,95,191,96,193,97,195,98,197,99,199,100,201,101,203,102,205, + 103,207,104,209,105,211,106,213,107,215,108,217,109,219,110,221, + 111,223,112,225,113,227,114,229,115,231,116,233,117,235,118,237, + 119,239,120,241,121,243,122,245,123,247,124,249,0,251,0,253,125, + 255,0,257,0,259,0,261,126,263,127,265,128,267,129,269,130,271,0, + 273,0,275,0,277,0,279,131,281,0,283,0,285,0,287,132,289,0,291,0, + 293,0,295,0,297,0,299,133,301,0,303,0,305,0,307,0,309,0,311,134, + 313,0,315,0,317,0,319,135,321,136,323,137,325,138,327,0,329,139, + 331,140,333,141,335,142,1,0,16,1,0,10,10,3,0,65,90,95,95,97,122, + 1,0,48,57,1,0,49,57,1,0,48,55,3,0,48,57,65,70,97,102,1,0,48,49,2, + 0,85,85,117,117,2,0,76,76,108,108,4,0,10,10,13,13,39,39,92,92,2, + 0,43,43,45,45,4,0,70,70,76,76,102,102,108,108,3,0,76,76,85,85,117, + 117,4,0,10,10,13,13,34,34,92,92,2,0,9,9,32,32,2,0,10,10,13,13,1508, + 0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11, + 1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21, + 1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31, + 1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41, + 1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51, + 1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61, + 1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71, + 1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81, + 1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91, + 1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101, + 1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0, + 0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1, + 0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0, + 129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0, + 0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147, + 1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0, + 0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1, + 0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0, + 175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0, + 0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193, + 1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0, + 0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1, + 0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0, + 221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0, + 0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239, + 1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0, + 0,253,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1, + 0,0,0,0,269,1,0,0,0,0,279,1,0,0,0,0,287,1,0,0,0,0,299,1,0,0,0,0, + 311,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0, + 0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,1,337, + 1,0,0,0,3,360,1,0,0,0,5,369,1,0,0,0,7,377,1,0,0,0,9,385,1,0,0,0, + 11,389,1,0,0,0,13,394,1,0,0,0,15,399,1,0,0,0,17,405,1,0,0,0,19,410, + 1,0,0,0,21,416,1,0,0,0,23,421,1,0,0,0,25,430,1,0,0,0,27,439,1,0, + 0,0,29,445,1,0,0,0,31,451,1,0,0,0,33,461,1,0,0,0,35,472,1,0,0,0, + 37,481,1,0,0,0,39,490,1,0,0,0,41,498,1,0,0,0,43,505,1,0,0,0,45,508, + 1,0,0,0,47,515,1,0,0,0,49,528,1,0,0,0,51,533,1,0,0,0,53,538,1,0, + 0,0,55,547,1,0,0,0,57,554,1,0,0,0,59,561,1,0,0,0,61,567,1,0,0,0, + 63,573,1,0,0,0,65,579,1,0,0,0,67,583,1,0,0,0,69,590,1,0,0,0,71,595, + 1,0,0,0,73,598,1,0,0,0,75,605,1,0,0,0,77,609,1,0,0,0,79,614,1,0, + 0,0,81,622,1,0,0,0,83,632,1,0,0,0,85,636,1,0,0,0,87,645,1,0,0,0, + 89,653,1,0,0,0,91,662,1,0,0,0,93,671,1,0,0,0,95,679,1,0,0,0,97,689, + 1,0,0,0,99,696,1,0,0,0,101,705,1,0,0,0,103,722,1,0,0,0,105,729,1, + 0,0,0,107,735,1,0,0,0,109,742,1,0,0,0,111,749,1,0,0,0,113,756,1, + 0,0,0,115,770,1,0,0,0,117,782,1,0,0,0,119,789,1,0,0,0,121,796,1, + 0,0,0,123,805,1,0,0,0,125,810,1,0,0,0,127,823,1,0,0,0,129,829,1, + 0,0,0,131,834,1,0,0,0,133,838,1,0,0,0,135,846,1,0,0,0,137,853,1, + 0,0,0,139,862,1,0,0,0,141,868,1,0,0,0,143,877,1,0,0,0,145,883,1, + 0,0,0,147,891,1,0,0,0,149,896,1,0,0,0,151,905,1,0,0,0,153,913,1, + 0,0,0,155,919,1,0,0,0,157,921,1,0,0,0,159,923,1,0,0,0,161,925,1, + 0,0,0,163,927,1,0,0,0,165,929,1,0,0,0,167,931,1,0,0,0,169,933,1, + 0,0,0,171,935,1,0,0,0,173,937,1,0,0,0,175,939,1,0,0,0,177,941,1, + 0,0,0,179,943,1,0,0,0,181,945,1,0,0,0,183,947,1,0,0,0,185,949,1, + 0,0,0,187,951,1,0,0,0,189,953,1,0,0,0,191,955,1,0,0,0,193,957,1, + 0,0,0,195,960,1,0,0,0,197,963,1,0,0,0,199,966,1,0,0,0,201,969,1, + 0,0,0,203,972,1,0,0,0,205,975,1,0,0,0,207,978,1,0,0,0,209,981,1, + 0,0,0,211,984,1,0,0,0,213,988,1,0,0,0,215,991,1,0,0,0,217,994,1, + 0,0,0,219,997,1,0,0,0,221,1000,1,0,0,0,223,1003,1,0,0,0,225,1006, + 1,0,0,0,227,1009,1,0,0,0,229,1012,1,0,0,0,231,1014,1,0,0,0,233,1018, + 1,0,0,0,235,1021,1,0,0,0,237,1023,1,0,0,0,239,1025,1,0,0,0,241,1028, + 1,0,0,0,243,1030,1,0,0,0,245,1032,1,0,0,0,247,1035,1,0,0,0,249,1039, + 1,0,0,0,251,1054,1,0,0,0,253,1056,1,0,0,0,255,1066,1,0,0,0,257,1068, + 1,0,0,0,259,1070,1,0,0,0,261,1088,1,0,0,0,263,1090,1,0,0,0,265,1100, + 1,0,0,0,267,1114,1,0,0,0,269,1130,1,0,0,0,271,1142,1,0,0,0,273,1144, + 1,0,0,0,275,1146,1,0,0,0,277,1148,1,0,0,0,279,1166,1,0,0,0,281,1168, + 1,0,0,0,283,1170,1,0,0,0,285,1176,1,0,0,0,287,1213,1,0,0,0,289,1218, + 1,0,0,0,291,1223,1,0,0,0,293,1247,1,0,0,0,295,1260,1,0,0,0,297,1262, + 1,0,0,0,299,1282,1,0,0,0,301,1292,1,0,0,0,303,1304,1,0,0,0,305,1306, + 1,0,0,0,307,1308,1,0,0,0,309,1318,1,0,0,0,311,1336,1,0,0,0,313,1341, + 1,0,0,0,315,1346,1,0,0,0,317,1348,1,0,0,0,319,1383,1,0,0,0,321,1395, + 1,0,0,0,323,1397,1,0,0,0,325,1400,1,0,0,0,327,1403,1,0,0,0,329,1406, + 1,0,0,0,331,1417,1,0,0,0,333,1421,1,0,0,0,335,1435,1,0,0,0,337,349, + 5,35,0,0,338,340,8,0,0,0,339,338,1,0,0,0,340,343,1,0,0,0,341,342, + 1,0,0,0,341,339,1,0,0,0,342,344,1,0,0,0,343,341,1,0,0,0,344,346, + 5,92,0,0,345,347,5,13,0,0,346,345,1,0,0,0,346,347,1,0,0,0,347,348, + 1,0,0,0,348,350,5,10,0,0,349,341,1,0,0,0,350,351,1,0,0,0,351,349, + 1,0,0,0,351,352,1,0,0,0,352,354,1,0,0,0,353,355,8,0,0,0,354,353, + 1,0,0,0,355,356,1,0,0,0,356,354,1,0,0,0,356,357,1,0,0,0,357,358, + 1,0,0,0,358,359,6,0,0,0,359,2,1,0,0,0,360,364,5,35,0,0,361,363,8, + 0,0,0,362,361,1,0,0,0,363,366,1,0,0,0,364,362,1,0,0,0,364,365,1, + 0,0,0,365,367,1,0,0,0,366,364,1,0,0,0,367,368,6,1,0,0,368,4,1,0, + 0,0,369,370,5,97,0,0,370,371,5,108,0,0,371,372,5,105,0,0,372,373, + 5,103,0,0,373,374,5,110,0,0,374,375,5,97,0,0,375,376,5,115,0,0,376, + 6,1,0,0,0,377,378,5,97,0,0,378,379,5,108,0,0,379,380,5,105,0,0,380, + 381,5,103,0,0,381,382,5,110,0,0,382,383,5,111,0,0,383,384,5,102, + 0,0,384,8,1,0,0,0,385,386,5,97,0,0,386,387,5,115,0,0,387,388,5,109, + 0,0,388,10,1,0,0,0,389,390,5,97,0,0,390,391,5,117,0,0,391,392,5, + 116,0,0,392,393,5,111,0,0,393,12,1,0,0,0,394,395,5,98,0,0,395,396, + 5,111,0,0,396,397,5,111,0,0,397,398,5,108,0,0,398,14,1,0,0,0,399, + 400,5,98,0,0,400,401,5,114,0,0,401,402,5,101,0,0,402,403,5,97,0, + 0,403,404,5,107,0,0,404,16,1,0,0,0,405,406,5,99,0,0,406,407,5,97, + 0,0,407,408,5,115,0,0,408,409,5,101,0,0,409,18,1,0,0,0,410,411,5, + 99,0,0,411,412,5,97,0,0,412,413,5,116,0,0,413,414,5,99,0,0,414,415, + 5,104,0,0,415,20,1,0,0,0,416,417,5,99,0,0,417,418,5,104,0,0,418, + 419,5,97,0,0,419,420,5,114,0,0,420,22,1,0,0,0,421,422,5,99,0,0,422, + 423,5,104,0,0,423,424,5,97,0,0,424,425,5,114,0,0,425,426,5,49,0, + 0,426,427,5,54,0,0,427,428,5,95,0,0,428,429,5,116,0,0,429,24,1,0, + 0,0,430,431,5,99,0,0,431,432,5,104,0,0,432,433,5,97,0,0,433,434, + 5,114,0,0,434,435,5,51,0,0,435,436,5,50,0,0,436,437,5,95,0,0,437, + 438,5,116,0,0,438,26,1,0,0,0,439,440,5,99,0,0,440,441,5,108,0,0, + 441,442,5,97,0,0,442,443,5,115,0,0,443,444,5,115,0,0,444,28,1,0, + 0,0,445,446,5,99,0,0,446,447,5,111,0,0,447,448,5,110,0,0,448,449, + 5,115,0,0,449,450,5,116,0,0,450,30,1,0,0,0,451,452,5,99,0,0,452, + 453,5,111,0,0,453,454,5,110,0,0,454,455,5,115,0,0,455,456,5,116, + 0,0,456,457,5,101,0,0,457,458,5,120,0,0,458,459,5,112,0,0,459,460, + 5,114,0,0,460,32,1,0,0,0,461,462,5,99,0,0,462,463,5,111,0,0,463, + 464,5,110,0,0,464,465,5,115,0,0,465,466,5,116,0,0,466,467,5,95,0, + 0,467,468,5,99,0,0,468,469,5,97,0,0,469,470,5,115,0,0,470,471,5, + 116,0,0,471,34,1,0,0,0,472,473,5,99,0,0,473,474,5,111,0,0,474,475, + 5,110,0,0,475,476,5,116,0,0,476,477,5,105,0,0,477,478,5,110,0,0, + 478,479,5,117,0,0,479,480,5,101,0,0,480,36,1,0,0,0,481,482,5,100, + 0,0,482,483,5,101,0,0,483,484,5,99,0,0,484,485,5,108,0,0,485,486, + 5,116,0,0,486,487,5,121,0,0,487,488,5,112,0,0,488,489,5,101,0,0, + 489,38,1,0,0,0,490,491,5,100,0,0,491,492,5,101,0,0,492,493,5,102, + 0,0,493,494,5,97,0,0,494,495,5,117,0,0,495,496,5,108,0,0,496,497, + 5,116,0,0,497,40,1,0,0,0,498,499,5,100,0,0,499,500,5,101,0,0,500, + 501,5,108,0,0,501,502,5,101,0,0,502,503,5,116,0,0,503,504,5,101, + 0,0,504,42,1,0,0,0,505,506,5,100,0,0,506,507,5,111,0,0,507,44,1, + 0,0,0,508,509,5,100,0,0,509,510,5,111,0,0,510,511,5,117,0,0,511, + 512,5,98,0,0,512,513,5,108,0,0,513,514,5,101,0,0,514,46,1,0,0,0, + 515,516,5,100,0,0,516,517,5,121,0,0,517,518,5,110,0,0,518,519,5, + 97,0,0,519,520,5,109,0,0,520,521,5,105,0,0,521,522,5,99,0,0,522, + 523,5,95,0,0,523,524,5,99,0,0,524,525,5,97,0,0,525,526,5,115,0,0, + 526,527,5,116,0,0,527,48,1,0,0,0,528,529,5,101,0,0,529,530,5,108, + 0,0,530,531,5,115,0,0,531,532,5,101,0,0,532,50,1,0,0,0,533,534,5, + 101,0,0,534,535,5,110,0,0,535,536,5,117,0,0,536,537,5,109,0,0,537, + 52,1,0,0,0,538,539,5,101,0,0,539,540,5,120,0,0,540,541,5,112,0,0, + 541,542,5,108,0,0,542,543,5,105,0,0,543,544,5,99,0,0,544,545,5,105, + 0,0,545,546,5,116,0,0,546,54,1,0,0,0,547,548,5,101,0,0,548,549,5, + 120,0,0,549,550,5,112,0,0,550,551,5,111,0,0,551,552,5,114,0,0,552, + 553,5,116,0,0,553,56,1,0,0,0,554,555,5,101,0,0,555,556,5,120,0,0, + 556,557,5,116,0,0,557,558,5,101,0,0,558,559,5,114,0,0,559,560,5, + 110,0,0,560,58,1,0,0,0,561,562,5,102,0,0,562,563,5,97,0,0,563,564, + 5,108,0,0,564,565,5,115,0,0,565,566,5,101,0,0,566,60,1,0,0,0,567, + 568,5,102,0,0,568,569,5,105,0,0,569,570,5,110,0,0,570,571,5,97,0, + 0,571,572,5,108,0,0,572,62,1,0,0,0,573,574,5,102,0,0,574,575,5,108, + 0,0,575,576,5,111,0,0,576,577,5,97,0,0,577,578,5,116,0,0,578,64, + 1,0,0,0,579,580,5,102,0,0,580,581,5,111,0,0,581,582,5,114,0,0,582, + 66,1,0,0,0,583,584,5,102,0,0,584,585,5,114,0,0,585,586,5,105,0,0, + 586,587,5,101,0,0,587,588,5,110,0,0,588,589,5,100,0,0,589,68,1,0, + 0,0,590,591,5,103,0,0,591,592,5,111,0,0,592,593,5,116,0,0,593,594, + 5,111,0,0,594,70,1,0,0,0,595,596,5,105,0,0,596,597,5,102,0,0,597, + 72,1,0,0,0,598,599,5,105,0,0,599,600,5,110,0,0,600,601,5,108,0,0, + 601,602,5,105,0,0,602,603,5,110,0,0,603,604,5,101,0,0,604,74,1,0, + 0,0,605,606,5,105,0,0,606,607,5,110,0,0,607,608,5,116,0,0,608,76, + 1,0,0,0,609,610,5,108,0,0,610,611,5,111,0,0,611,612,5,110,0,0,612, + 613,5,103,0,0,613,78,1,0,0,0,614,615,5,109,0,0,615,616,5,117,0,0, + 616,617,5,116,0,0,617,618,5,97,0,0,618,619,5,98,0,0,619,620,5,108, + 0,0,620,621,5,101,0,0,621,80,1,0,0,0,622,623,5,110,0,0,623,624,5, + 97,0,0,624,625,5,109,0,0,625,626,5,101,0,0,626,627,5,115,0,0,627, + 628,5,112,0,0,628,629,5,97,0,0,629,630,5,99,0,0,630,631,5,101,0, + 0,631,82,1,0,0,0,632,633,5,110,0,0,633,634,5,101,0,0,634,635,5,119, + 0,0,635,84,1,0,0,0,636,637,5,110,0,0,637,638,5,111,0,0,638,639,5, + 101,0,0,639,640,5,120,0,0,640,641,5,99,0,0,641,642,5,101,0,0,642, + 643,5,112,0,0,643,644,5,116,0,0,644,86,1,0,0,0,645,646,5,110,0,0, + 646,647,5,117,0,0,647,648,5,108,0,0,648,649,5,108,0,0,649,650,5, + 112,0,0,650,651,5,116,0,0,651,652,5,114,0,0,652,88,1,0,0,0,653,654, + 5,111,0,0,654,655,5,112,0,0,655,656,5,101,0,0,656,657,5,114,0,0, + 657,658,5,97,0,0,658,659,5,116,0,0,659,660,5,111,0,0,660,661,5,114, + 0,0,661,90,1,0,0,0,662,663,5,111,0,0,663,664,5,118,0,0,664,665,5, + 101,0,0,665,666,5,114,0,0,666,667,5,114,0,0,667,668,5,105,0,0,668, + 669,5,100,0,0,669,670,5,101,0,0,670,92,1,0,0,0,671,672,5,112,0,0, + 672,673,5,114,0,0,673,674,5,105,0,0,674,675,5,118,0,0,675,676,5, + 97,0,0,676,677,5,116,0,0,677,678,5,101,0,0,678,94,1,0,0,0,679,680, + 5,112,0,0,680,681,5,114,0,0,681,682,5,111,0,0,682,683,5,116,0,0, + 683,684,5,101,0,0,684,685,5,99,0,0,685,686,5,116,0,0,686,687,5,101, + 0,0,687,688,5,100,0,0,688,96,1,0,0,0,689,690,5,112,0,0,690,691,5, + 117,0,0,691,692,5,98,0,0,692,693,5,108,0,0,693,694,5,105,0,0,694, + 695,5,99,0,0,695,98,1,0,0,0,696,697,5,114,0,0,697,698,5,101,0,0, + 698,699,5,103,0,0,699,700,5,105,0,0,700,701,5,115,0,0,701,702,5, + 116,0,0,702,703,5,101,0,0,703,704,5,114,0,0,704,100,1,0,0,0,705, + 706,5,114,0,0,706,707,5,101,0,0,707,708,5,105,0,0,708,709,5,110, + 0,0,709,710,5,116,0,0,710,711,5,101,0,0,711,712,5,114,0,0,712,713, + 5,112,0,0,713,714,5,114,0,0,714,715,5,101,0,0,715,716,5,116,0,0, + 716,717,5,95,0,0,717,718,5,99,0,0,718,719,5,97,0,0,719,720,5,115, + 0,0,720,721,5,116,0,0,721,102,1,0,0,0,722,723,5,114,0,0,723,724, + 5,101,0,0,724,725,5,116,0,0,725,726,5,117,0,0,726,727,5,114,0,0, + 727,728,5,110,0,0,728,104,1,0,0,0,729,730,5,115,0,0,730,731,5,104, + 0,0,731,732,5,111,0,0,732,733,5,114,0,0,733,734,5,116,0,0,734,106, + 1,0,0,0,735,736,5,115,0,0,736,737,5,105,0,0,737,738,5,103,0,0,738, + 739,5,110,0,0,739,740,5,101,0,0,740,741,5,100,0,0,741,108,1,0,0, + 0,742,743,5,115,0,0,743,744,5,105,0,0,744,745,5,122,0,0,745,746, + 5,101,0,0,746,747,5,111,0,0,747,748,5,102,0,0,748,110,1,0,0,0,749, + 750,5,115,0,0,750,751,5,116,0,0,751,752,5,97,0,0,752,753,5,116,0, + 0,753,754,5,105,0,0,754,755,5,99,0,0,755,112,1,0,0,0,756,757,5,115, + 0,0,757,758,5,116,0,0,758,759,5,97,0,0,759,760,5,116,0,0,760,761, + 5,105,0,0,761,762,5,99,0,0,762,763,5,95,0,0,763,764,5,97,0,0,764, + 765,5,115,0,0,765,766,5,115,0,0,766,767,5,101,0,0,767,768,5,114, + 0,0,768,769,5,116,0,0,769,114,1,0,0,0,770,771,5,115,0,0,771,772, + 5,116,0,0,772,773,5,97,0,0,773,774,5,116,0,0,774,775,5,105,0,0,775, + 776,5,99,0,0,776,777,5,95,0,0,777,778,5,99,0,0,778,779,5,97,0,0, + 779,780,5,115,0,0,780,781,5,116,0,0,781,116,1,0,0,0,782,783,5,115, + 0,0,783,784,5,116,0,0,784,785,5,114,0,0,785,786,5,117,0,0,786,787, + 5,99,0,0,787,788,5,116,0,0,788,118,1,0,0,0,789,790,5,115,0,0,790, + 791,5,119,0,0,791,792,5,105,0,0,792,793,5,116,0,0,793,794,5,99,0, + 0,794,795,5,104,0,0,795,120,1,0,0,0,796,797,5,116,0,0,797,798,5, + 101,0,0,798,799,5,109,0,0,799,800,5,112,0,0,800,801,5,108,0,0,801, + 802,5,97,0,0,802,803,5,116,0,0,803,804,5,101,0,0,804,122,1,0,0,0, + 805,806,5,116,0,0,806,807,5,104,0,0,807,808,5,105,0,0,808,809,5, + 115,0,0,809,124,1,0,0,0,810,811,5,116,0,0,811,812,5,104,0,0,812, + 813,5,114,0,0,813,814,5,101,0,0,814,815,5,97,0,0,815,816,5,100,0, + 0,816,817,5,95,0,0,817,818,5,108,0,0,818,819,5,111,0,0,819,820,5, + 99,0,0,820,821,5,97,0,0,821,822,5,108,0,0,822,126,1,0,0,0,823,824, + 5,116,0,0,824,825,5,104,0,0,825,826,5,114,0,0,826,827,5,111,0,0, + 827,828,5,119,0,0,828,128,1,0,0,0,829,830,5,116,0,0,830,831,5,114, + 0,0,831,832,5,117,0,0,832,833,5,101,0,0,833,130,1,0,0,0,834,835, + 5,116,0,0,835,836,5,114,0,0,836,837,5,121,0,0,837,132,1,0,0,0,838, + 839,5,116,0,0,839,840,5,121,0,0,840,841,5,112,0,0,841,842,5,101, + 0,0,842,843,5,100,0,0,843,844,5,101,0,0,844,845,5,102,0,0,845,134, + 1,0,0,0,846,847,5,116,0,0,847,848,5,121,0,0,848,849,5,112,0,0,849, + 850,5,101,0,0,850,851,5,105,0,0,851,852,5,100,0,0,852,136,1,0,0, + 0,853,854,5,116,0,0,854,855,5,121,0,0,855,856,5,112,0,0,856,857, + 5,101,0,0,857,858,5,110,0,0,858,859,5,97,0,0,859,860,5,109,0,0,860, + 861,5,101,0,0,861,138,1,0,0,0,862,863,5,117,0,0,863,864,5,110,0, + 0,864,865,5,105,0,0,865,866,5,111,0,0,866,867,5,110,0,0,867,140, + 1,0,0,0,868,869,5,117,0,0,869,870,5,110,0,0,870,871,5,115,0,0,871, + 872,5,105,0,0,872,873,5,103,0,0,873,874,5,110,0,0,874,875,5,101, + 0,0,875,876,5,100,0,0,876,142,1,0,0,0,877,878,5,117,0,0,878,879, + 5,115,0,0,879,880,5,105,0,0,880,881,5,110,0,0,881,882,5,103,0,0, + 882,144,1,0,0,0,883,884,5,118,0,0,884,885,5,105,0,0,885,886,5,114, + 0,0,886,887,5,116,0,0,887,888,5,117,0,0,888,889,5,97,0,0,889,890, + 5,108,0,0,890,146,1,0,0,0,891,892,5,118,0,0,892,893,5,111,0,0,893, + 894,5,105,0,0,894,895,5,100,0,0,895,148,1,0,0,0,896,897,5,118,0, + 0,897,898,5,111,0,0,898,899,5,108,0,0,899,900,5,97,0,0,900,901,5, + 116,0,0,901,902,5,105,0,0,902,903,5,108,0,0,903,904,5,101,0,0,904, + 150,1,0,0,0,905,906,5,119,0,0,906,907,5,99,0,0,907,908,5,104,0,0, + 908,909,5,97,0,0,909,910,5,114,0,0,910,911,5,95,0,0,911,912,5,116, + 0,0,912,152,1,0,0,0,913,914,5,119,0,0,914,915,5,104,0,0,915,916, + 5,105,0,0,916,917,5,108,0,0,917,918,5,101,0,0,918,154,1,0,0,0,919, + 920,5,40,0,0,920,156,1,0,0,0,921,922,5,41,0,0,922,158,1,0,0,0,923, + 924,5,91,0,0,924,160,1,0,0,0,925,926,5,93,0,0,926,162,1,0,0,0,927, + 928,5,123,0,0,928,164,1,0,0,0,929,930,5,125,0,0,930,166,1,0,0,0, + 931,932,5,43,0,0,932,168,1,0,0,0,933,934,5,45,0,0,934,170,1,0,0, + 0,935,936,5,42,0,0,936,172,1,0,0,0,937,938,5,47,0,0,938,174,1,0, + 0,0,939,940,5,37,0,0,940,176,1,0,0,0,941,942,5,94,0,0,942,178,1, + 0,0,0,943,944,5,38,0,0,944,180,1,0,0,0,945,946,5,124,0,0,946,182, + 1,0,0,0,947,948,5,126,0,0,948,184,1,0,0,0,949,950,5,33,0,0,950,186, + 1,0,0,0,951,952,5,61,0,0,952,188,1,0,0,0,953,954,5,60,0,0,954,190, + 1,0,0,0,955,956,5,62,0,0,956,192,1,0,0,0,957,958,5,43,0,0,958,959, + 5,61,0,0,959,194,1,0,0,0,960,961,5,45,0,0,961,962,5,61,0,0,962,196, + 1,0,0,0,963,964,5,42,0,0,964,965,5,61,0,0,965,198,1,0,0,0,966,967, + 5,47,0,0,967,968,5,61,0,0,968,200,1,0,0,0,969,970,5,37,0,0,970,971, + 5,61,0,0,971,202,1,0,0,0,972,973,5,94,0,0,973,974,5,61,0,0,974,204, + 1,0,0,0,975,976,5,38,0,0,976,977,5,61,0,0,977,206,1,0,0,0,978,979, + 5,124,0,0,979,980,5,61,0,0,980,208,1,0,0,0,981,982,5,60,0,0,982, + 983,5,60,0,0,983,210,1,0,0,0,984,985,5,60,0,0,985,986,5,60,0,0,986, + 987,5,61,0,0,987,212,1,0,0,0,988,989,5,61,0,0,989,990,5,61,0,0,990, + 214,1,0,0,0,991,992,5,33,0,0,992,993,5,61,0,0,993,216,1,0,0,0,994, + 995,5,60,0,0,995,996,5,61,0,0,996,218,1,0,0,0,997,998,5,62,0,0,998, + 999,5,61,0,0,999,220,1,0,0,0,1000,1001,5,38,0,0,1001,1002,5,38,0, + 0,1002,222,1,0,0,0,1003,1004,5,124,0,0,1004,1005,5,124,0,0,1005, + 224,1,0,0,0,1006,1007,5,43,0,0,1007,1008,5,43,0,0,1008,226,1,0,0, + 0,1009,1010,5,45,0,0,1010,1011,5,45,0,0,1011,228,1,0,0,0,1012,1013, + 5,44,0,0,1013,230,1,0,0,0,1014,1015,5,45,0,0,1015,1016,5,62,0,0, + 1016,1017,5,42,0,0,1017,232,1,0,0,0,1018,1019,5,45,0,0,1019,1020, + 5,62,0,0,1020,234,1,0,0,0,1021,1022,5,63,0,0,1022,236,1,0,0,0,1023, + 1024,5,58,0,0,1024,238,1,0,0,0,1025,1026,5,58,0,0,1026,1027,5,58, + 0,0,1027,240,1,0,0,0,1028,1029,5,59,0,0,1029,242,1,0,0,0,1030,1031, + 5,46,0,0,1031,244,1,0,0,0,1032,1033,5,46,0,0,1033,1034,5,42,0,0, + 1034,246,1,0,0,0,1035,1036,5,46,0,0,1036,1037,5,46,0,0,1037,1038, + 5,46,0,0,1038,248,1,0,0,0,1039,1040,3,275,137,0,1040,1041,3,275, + 137,0,1041,1042,3,275,137,0,1042,1043,3,275,137,0,1043,250,1,0,0, + 0,1044,1045,5,92,0,0,1045,1046,5,117,0,0,1046,1047,1,0,0,0,1047, + 1055,3,249,124,0,1048,1049,5,92,0,0,1049,1050,5,85,0,0,1050,1051, + 1,0,0,0,1051,1052,3,249,124,0,1052,1053,3,249,124,0,1053,1055,1, + 0,0,0,1054,1044,1,0,0,0,1054,1048,1,0,0,0,1055,252,1,0,0,0,1056, + 1061,3,255,127,0,1057,1060,3,255,127,0,1058,1060,3,259,129,0,1059, + 1057,1,0,0,0,1059,1058,1,0,0,0,1060,1063,1,0,0,0,1061,1059,1,0,0, + 0,1061,1062,1,0,0,0,1062,254,1,0,0,0,1063,1061,1,0,0,0,1064,1067, + 3,257,128,0,1065,1067,3,251,125,0,1066,1064,1,0,0,0,1066,1065,1, + 0,0,0,1067,256,1,0,0,0,1068,1069,7,1,0,0,1069,258,1,0,0,0,1070,1071, + 7,2,0,0,1071,260,1,0,0,0,1072,1074,3,263,131,0,1073,1075,3,279,139, + 0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,1089,1,0,0,0,1076,1078, + 3,265,132,0,1077,1079,3,279,139,0,1078,1077,1,0,0,0,1078,1079,1, + 0,0,0,1079,1089,1,0,0,0,1080,1082,3,267,133,0,1081,1083,3,279,139, + 0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1089,1,0,0,0,1084,1086, + 3,269,134,0,1085,1087,3,279,139,0,1086,1085,1,0,0,0,1086,1087,1, + 0,0,0,1087,1089,1,0,0,0,1088,1072,1,0,0,0,1088,1076,1,0,0,0,1088, + 1080,1,0,0,0,1088,1084,1,0,0,0,1089,262,1,0,0,0,1090,1097,3,271, + 135,0,1091,1093,5,39,0,0,1092,1091,1,0,0,0,1092,1093,1,0,0,0,1093, + 1094,1,0,0,0,1094,1096,3,259,129,0,1095,1092,1,0,0,0,1096,1099,1, + 0,0,0,1097,1095,1,0,0,0,1097,1098,1,0,0,0,1098,264,1,0,0,0,1099, + 1097,1,0,0,0,1100,1107,5,48,0,0,1101,1103,5,39,0,0,1102,1101,1,0, + 0,0,1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1106,3,273,136,0,1105, + 1102,1,0,0,0,1106,1109,1,0,0,0,1107,1105,1,0,0,0,1107,1108,1,0,0, + 0,1108,266,1,0,0,0,1109,1107,1,0,0,0,1110,1111,5,48,0,0,1111,1115, + 5,120,0,0,1112,1113,5,48,0,0,1113,1115,5,88,0,0,1114,1110,1,0,0, + 0,1114,1112,1,0,0,0,1115,1116,1,0,0,0,1116,1123,3,275,137,0,1117, + 1119,5,39,0,0,1118,1117,1,0,0,0,1118,1119,1,0,0,0,1119,1120,1,0, + 0,0,1120,1122,3,275,137,0,1121,1118,1,0,0,0,1122,1125,1,0,0,0,1123, + 1121,1,0,0,0,1123,1124,1,0,0,0,1124,268,1,0,0,0,1125,1123,1,0,0, + 0,1126,1127,5,48,0,0,1127,1131,5,98,0,0,1128,1129,5,48,0,0,1129, + 1131,5,66,0,0,1130,1126,1,0,0,0,1130,1128,1,0,0,0,1131,1132,1,0, + 0,0,1132,1139,3,277,138,0,1133,1135,5,39,0,0,1134,1133,1,0,0,0,1134, + 1135,1,0,0,0,1135,1136,1,0,0,0,1136,1138,3,277,138,0,1137,1134,1, + 0,0,0,1138,1141,1,0,0,0,1139,1137,1,0,0,0,1139,1140,1,0,0,0,1140, + 270,1,0,0,0,1141,1139,1,0,0,0,1142,1143,7,3,0,0,1143,272,1,0,0,0, + 1144,1145,7,4,0,0,1145,274,1,0,0,0,1146,1147,7,5,0,0,1147,276,1, + 0,0,0,1148,1149,7,6,0,0,1149,278,1,0,0,0,1150,1152,3,281,140,0,1151, + 1153,3,283,141,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1167,1, + 0,0,0,1154,1156,3,281,140,0,1155,1157,3,285,142,0,1156,1155,1,0, + 0,0,1156,1157,1,0,0,0,1157,1167,1,0,0,0,1158,1160,3,283,141,0,1159, + 1161,3,281,140,0,1160,1159,1,0,0,0,1160,1161,1,0,0,0,1161,1167,1, + 0,0,0,1162,1164,3,285,142,0,1163,1165,3,281,140,0,1164,1163,1,0, + 0,0,1164,1165,1,0,0,0,1165,1167,1,0,0,0,1166,1150,1,0,0,0,1166,1154, + 1,0,0,0,1166,1158,1,0,0,0,1166,1162,1,0,0,0,1167,280,1,0,0,0,1168, + 1169,7,7,0,0,1169,282,1,0,0,0,1170,1171,7,8,0,0,1171,284,1,0,0,0, + 1172,1173,5,108,0,0,1173,1177,5,108,0,0,1174,1175,5,76,0,0,1175, + 1177,5,76,0,0,1176,1172,1,0,0,0,1176,1174,1,0,0,0,1177,286,1,0,0, + 0,1178,1180,5,39,0,0,1179,1181,3,289,144,0,1180,1179,1,0,0,0,1181, + 1182,1,0,0,0,1182,1180,1,0,0,0,1182,1183,1,0,0,0,1183,1184,1,0,0, + 0,1184,1185,5,39,0,0,1185,1214,1,0,0,0,1186,1187,5,117,0,0,1187, + 1189,5,39,0,0,1188,1190,3,289,144,0,1189,1188,1,0,0,0,1190,1191, + 1,0,0,0,1191,1189,1,0,0,0,1191,1192,1,0,0,0,1192,1193,1,0,0,0,1193, + 1194,5,39,0,0,1194,1214,1,0,0,0,1195,1196,5,85,0,0,1196,1198,5,39, + 0,0,1197,1199,3,289,144,0,1198,1197,1,0,0,0,1199,1200,1,0,0,0,1200, + 1198,1,0,0,0,1200,1201,1,0,0,0,1201,1202,1,0,0,0,1202,1203,5,39, + 0,0,1203,1214,1,0,0,0,1204,1205,5,76,0,0,1205,1207,5,39,0,0,1206, + 1208,3,289,144,0,1207,1206,1,0,0,0,1208,1209,1,0,0,0,1209,1207,1, + 0,0,0,1209,1210,1,0,0,0,1210,1211,1,0,0,0,1211,1212,5,39,0,0,1212, + 1214,1,0,0,0,1213,1178,1,0,0,0,1213,1186,1,0,0,0,1213,1195,1,0,0, + 0,1213,1204,1,0,0,0,1214,288,1,0,0,0,1215,1219,8,9,0,0,1216,1219, + 3,291,145,0,1217,1219,3,251,125,0,1218,1215,1,0,0,0,1218,1216,1, + 0,0,0,1218,1217,1,0,0,0,1219,290,1,0,0,0,1220,1224,3,293,146,0,1221, + 1224,3,295,147,0,1222,1224,3,297,148,0,1223,1220,1,0,0,0,1223,1221, + 1,0,0,0,1223,1222,1,0,0,0,1224,292,1,0,0,0,1225,1226,5,92,0,0,1226, + 1248,5,39,0,0,1227,1228,5,92,0,0,1228,1248,5,34,0,0,1229,1230,5, + 92,0,0,1230,1248,5,63,0,0,1231,1232,5,92,0,0,1232,1248,5,92,0,0, + 1233,1234,5,92,0,0,1234,1248,5,97,0,0,1235,1236,5,92,0,0,1236,1248, + 5,98,0,0,1237,1238,5,92,0,0,1238,1248,5,102,0,0,1239,1240,5,92,0, + 0,1240,1248,5,110,0,0,1241,1242,5,92,0,0,1242,1248,5,114,0,0,1243, + 1244,5,92,0,0,1244,1248,5,116,0,0,1245,1246,5,92,0,0,1246,1248,5, + 118,0,0,1247,1225,1,0,0,0,1247,1227,1,0,0,0,1247,1229,1,0,0,0,1247, + 1231,1,0,0,0,1247,1233,1,0,0,0,1247,1235,1,0,0,0,1247,1237,1,0,0, + 0,1247,1239,1,0,0,0,1247,1241,1,0,0,0,1247,1243,1,0,0,0,1247,1245, + 1,0,0,0,1248,294,1,0,0,0,1249,1250,5,92,0,0,1250,1261,3,273,136, + 0,1251,1252,5,92,0,0,1252,1253,3,273,136,0,1253,1254,3,273,136,0, + 1254,1261,1,0,0,0,1255,1256,5,92,0,0,1256,1257,3,273,136,0,1257, + 1258,3,273,136,0,1258,1259,3,273,136,0,1259,1261,1,0,0,0,1260,1249, + 1,0,0,0,1260,1251,1,0,0,0,1260,1255,1,0,0,0,1261,296,1,0,0,0,1262, + 1263,5,92,0,0,1263,1264,5,120,0,0,1264,1266,1,0,0,0,1265,1267,3, + 275,137,0,1266,1265,1,0,0,0,1267,1268,1,0,0,0,1268,1266,1,0,0,0, + 1268,1269,1,0,0,0,1269,298,1,0,0,0,1270,1272,3,301,150,0,1271,1273, + 3,303,151,0,1272,1271,1,0,0,0,1272,1273,1,0,0,0,1273,1275,1,0,0, + 0,1274,1276,3,309,154,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276, + 1283,1,0,0,0,1277,1278,3,307,153,0,1278,1280,3,303,151,0,1279,1281, + 3,309,154,0,1280,1279,1,0,0,0,1280,1281,1,0,0,0,1281,1283,1,0,0, + 0,1282,1270,1,0,0,0,1282,1277,1,0,0,0,1283,300,1,0,0,0,1284,1286, + 3,307,153,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287,1,0,0, + 0,1287,1288,5,46,0,0,1288,1293,3,307,153,0,1289,1290,3,307,153,0, + 1290,1291,5,46,0,0,1291,1293,1,0,0,0,1292,1285,1,0,0,0,1292,1289, + 1,0,0,0,1293,302,1,0,0,0,1294,1296,5,101,0,0,1295,1297,3,305,152, + 0,1296,1295,1,0,0,0,1296,1297,1,0,0,0,1297,1298,1,0,0,0,1298,1305, + 3,307,153,0,1299,1301,5,69,0,0,1300,1302,3,305,152,0,1301,1300,1, + 0,0,0,1301,1302,1,0,0,0,1302,1303,1,0,0,0,1303,1305,3,307,153,0, + 1304,1294,1,0,0,0,1304,1299,1,0,0,0,1305,304,1,0,0,0,1306,1307,7, + 10,0,0,1307,306,1,0,0,0,1308,1315,3,259,129,0,1309,1311,5,39,0,0, + 1310,1309,1,0,0,0,1310,1311,1,0,0,0,1311,1312,1,0,0,0,1312,1314, + 3,259,129,0,1313,1310,1,0,0,0,1314,1317,1,0,0,0,1315,1313,1,0,0, + 0,1315,1316,1,0,0,0,1316,308,1,0,0,0,1317,1315,1,0,0,0,1318,1319, + 7,11,0,0,1319,310,1,0,0,0,1320,1322,3,313,156,0,1321,1320,1,0,0, + 0,1321,1322,1,0,0,0,1322,1323,1,0,0,0,1323,1327,5,34,0,0,1324,1326, + 3,315,157,0,1325,1324,1,0,0,0,1326,1329,1,0,0,0,1327,1325,1,0,0, + 0,1327,1328,1,0,0,0,1328,1330,1,0,0,0,1329,1327,1,0,0,0,1330,1337, + 5,34,0,0,1331,1333,3,313,156,0,1332,1331,1,0,0,0,1332,1333,1,0,0, + 0,1333,1334,1,0,0,0,1334,1335,5,82,0,0,1335,1337,3,317,158,0,1336, + 1321,1,0,0,0,1336,1332,1,0,0,0,1337,312,1,0,0,0,1338,1339,5,117, + 0,0,1339,1342,5,56,0,0,1340,1342,7,12,0,0,1341,1338,1,0,0,0,1341, + 1340,1,0,0,0,1342,314,1,0,0,0,1343,1347,8,13,0,0,1344,1347,3,291, + 145,0,1345,1347,3,251,125,0,1346,1343,1,0,0,0,1346,1344,1,0,0,0, + 1346,1345,1,0,0,0,1347,316,1,0,0,0,1348,1352,5,34,0,0,1349,1351, + 9,0,0,0,1350,1349,1,0,0,0,1351,1354,1,0,0,0,1352,1353,1,0,0,0,1352, + 1350,1,0,0,0,1353,1355,1,0,0,0,1354,1352,1,0,0,0,1355,1359,5,40, + 0,0,1356,1358,9,0,0,0,1357,1356,1,0,0,0,1358,1361,1,0,0,0,1359,1360, + 1,0,0,0,1359,1357,1,0,0,0,1360,1362,1,0,0,0,1361,1359,1,0,0,0,1362, + 1366,5,41,0,0,1363,1365,9,0,0,0,1364,1363,1,0,0,0,1365,1368,1,0, + 0,0,1366,1367,1,0,0,0,1366,1364,1,0,0,0,1367,1369,1,0,0,0,1368,1366, + 1,0,0,0,1369,1370,5,34,0,0,1370,318,1,0,0,0,1371,1372,3,263,131, + 0,1372,1373,3,327,163,0,1373,1384,1,0,0,0,1374,1375,3,265,132,0, + 1375,1376,3,327,163,0,1376,1384,1,0,0,0,1377,1378,3,267,133,0,1378, + 1379,3,327,163,0,1379,1384,1,0,0,0,1380,1381,3,269,134,0,1381,1382, + 3,327,163,0,1382,1384,1,0,0,0,1383,1371,1,0,0,0,1383,1374,1,0,0, + 0,1383,1377,1,0,0,0,1383,1380,1,0,0,0,1384,320,1,0,0,0,1385,1387, + 3,301,150,0,1386,1388,3,303,151,0,1387,1386,1,0,0,0,1387,1388,1, + 0,0,0,1388,1389,1,0,0,0,1389,1390,3,327,163,0,1390,1396,1,0,0,0, + 1391,1392,3,307,153,0,1392,1393,3,303,151,0,1393,1394,3,327,163, + 0,1394,1396,1,0,0,0,1395,1385,1,0,0,0,1395,1391,1,0,0,0,1396,322, + 1,0,0,0,1397,1398,3,311,155,0,1398,1399,3,327,163,0,1399,324,1,0, + 0,0,1400,1401,3,287,143,0,1401,1402,3,327,163,0,1402,326,1,0,0,0, + 1403,1404,3,253,126,0,1404,328,1,0,0,0,1405,1407,7,14,0,0,1406,1405, + 1,0,0,0,1407,1408,1,0,0,0,1408,1406,1,0,0,0,1408,1409,1,0,0,0,1409, + 1410,1,0,0,0,1410,1411,6,164,1,0,1411,330,1,0,0,0,1412,1414,5,13, + 0,0,1413,1415,5,10,0,0,1414,1413,1,0,0,0,1414,1415,1,0,0,0,1415, + 1418,1,0,0,0,1416,1418,5,10,0,0,1417,1412,1,0,0,0,1417,1416,1,0, + 0,0,1418,1419,1,0,0,0,1419,1420,6,165,1,0,1420,332,1,0,0,0,1421, + 1422,5,47,0,0,1422,1423,5,42,0,0,1423,1427,1,0,0,0,1424,1426,9,0, + 0,0,1425,1424,1,0,0,0,1426,1429,1,0,0,0,1427,1428,1,0,0,0,1427,1425, + 1,0,0,0,1428,1430,1,0,0,0,1429,1427,1,0,0,0,1430,1431,5,42,0,0,1431, + 1432,5,47,0,0,1432,1433,1,0,0,0,1433,1434,6,166,1,0,1434,334,1,0, + 0,0,1435,1436,5,47,0,0,1436,1437,5,47,0,0,1437,1441,1,0,0,0,1438, + 1440,8,15,0,0,1439,1438,1,0,0,0,1440,1443,1,0,0,0,1441,1439,1,0, + 0,0,1441,1442,1,0,0,0,1442,1444,1,0,0,0,1443,1441,1,0,0,0,1444,1445, + 6,167,1,0,1445,336,1,0,0,0,69,0,341,346,351,356,364,1054,1059,1061, + 1066,1074,1078,1082,1086,1088,1092,1097,1102,1107,1114,1118,1123, + 1130,1134,1139,1152,1156,1160,1164,1166,1176,1182,1191,1200,1209, + 1213,1218,1223,1247,1260,1268,1272,1275,1280,1282,1285,1292,1296, + 1301,1304,1310,1315,1321,1327,1332,1336,1341,1346,1352,1359,1366, + 1383,1387,1395,1408,1414,1417,1427,1441,2,0,1,0,6,0,0 ]; private static __ATN: antlr.ATN; @@ -832,5 +832,5 @@ export class CPP14Lexer extends antlr.Lexer { return CPP14Lexer.vocabulary; } - private static readonly decisionsToDFA = CPP14Lexer._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); -} + private static readonly decisionsToDFA = CPP14Lexer._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); +} \ No newline at end of file diff --git a/tests/generated/CPP14Parser.ts b/tests/generated/CPP14Parser.ts index 0933e69..935bb79 100644 --- a/tests/generated/CPP14Parser.ts +++ b/tests/generated/CPP14Parser.ts @@ -352,108 +352,108 @@ export class CPP14Parser extends antlr.Parser { public static readonly RULE_userdefinedliteral = 198; public static readonly literalNames = [ - null, null, null, "'alignas'", "'alignof'", "'asm'", "'auto'", "'bool'", - "'break'", "'case'", "'catch'", "'char'", "'char16_t'", "'char32_t'", - "'class'", "'const'", "'constexpr'", "'const_cast'", "'continue'", - "'decltype'", "'default'", "'delete'", "'do'", "'double'", "'dynamic_cast'", - "'else'", "'enum'", "'explicit'", "'export'", "'extern'", "'false'", - "'final'", "'float'", "'for'", "'friend'", "'goto'", "'if'", "'inline'", - "'int'", "'long'", "'mutable'", "'namespace'", "'new'", "'noexcept'", - "'nullptr'", "'operator'", "'override'", "'private'", "'protected'", - "'public'", "'register'", "'reinterpret_cast'", "'return'", "'short'", - "'signed'", "'sizeof'", "'static'", "'static_assert'", "'static_cast'", - "'struct'", "'switch'", "'template'", "'this'", "'thread_local'", - "'throw'", "'true'", "'try'", "'typedef'", "'typeid'", "'typename'", - "'union'", "'unsigned'", "'using'", "'virtual'", "'void'", "'volatile'", - "'wchar_t'", "'while'", "'('", "')'", "'['", "']'", "'{'", "'}'", - "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "'&'", "'|'", "'~'", "'!'", - "'='", "'<'", "'>'", "'+='", "'-='", "'*='", "'/='", "'%='", "'^='", - "'&='", "'|='", "'<<'", "'<<='", "'=='", "'!='", "'<='", "'>='", - "'&&'", "'||'", "'++'", "'--'", "','", "'->*'", "'->'", "'?'", "':'", + null, null, null, "'alignas'", "'alignof'", "'asm'", "'auto'", "'bool'", + "'break'", "'case'", "'catch'", "'char'", "'char16_t'", "'char32_t'", + "'class'", "'const'", "'constexpr'", "'const_cast'", "'continue'", + "'decltype'", "'default'", "'delete'", "'do'", "'double'", "'dynamic_cast'", + "'else'", "'enum'", "'explicit'", "'export'", "'extern'", "'false'", + "'final'", "'float'", "'for'", "'friend'", "'goto'", "'if'", "'inline'", + "'int'", "'long'", "'mutable'", "'namespace'", "'new'", "'noexcept'", + "'nullptr'", "'operator'", "'override'", "'private'", "'protected'", + "'public'", "'register'", "'reinterpret_cast'", "'return'", "'short'", + "'signed'", "'sizeof'", "'static'", "'static_assert'", "'static_cast'", + "'struct'", "'switch'", "'template'", "'this'", "'thread_local'", + "'throw'", "'true'", "'try'", "'typedef'", "'typeid'", "'typename'", + "'union'", "'unsigned'", "'using'", "'virtual'", "'void'", "'volatile'", + "'wchar_t'", "'while'", "'('", "')'", "'['", "']'", "'{'", "'}'", + "'+'", "'-'", "'*'", "'/'", "'%'", "'^'", "'&'", "'|'", "'~'", "'!'", + "'='", "'<'", "'>'", "'+='", "'-='", "'*='", "'/='", "'%='", "'^='", + "'&='", "'|='", "'<<'", "'<<='", "'=='", "'!='", "'<='", "'>='", + "'&&'", "'||'", "'++'", "'--'", "','", "'->*'", "'->'", "'?'", "':'", "'::'", "';'", "'.'", "'.*'", "'...'" ]; public static readonly symbolicNames = [ - null, "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", - "Auto", "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", - "Class", "Const", "Constexpr", "Const_cast", "Continue", "Decltype", - "Default", "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", - "Explicit", "Export", "Extern", "False", "Final", "Float", "For", - "Friend", "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", - "New", "Noexcept", "Nullptr", "Operator", "Override", "Private", - "Protected", "Public", "Register", "Reinterpret_cast", "Return", - "Short", "Signed", "Sizeof", "Static", "Static_assert", "Static_cast", - "Struct", "Switch", "Template", "This", "Thread_local", "Throw", - "True", "Try", "Typedef", "Typeid", "Typename", "Union", "Unsigned", - "Using", "Virtual", "Void", "Volatile", "Wchar", "While", "LeftParen", - "RightParen", "LeftBracket", "RightBracket", "LeftBrace", "RightBrace", - "Plus", "Minus", "Star", "Div", "Mod", "Caret", "And", "Or", "Tilde", - "Not", "Assign", "Less", "Greater", "PlusAssign", "MinusAssign", - "StarAssign", "DivAssign", "ModAssign", "XorAssign", "AndAssign", - "OrAssign", "LeftShift", "LeftShiftAssign", "Equal", "NotEqual", - "LessEqual", "GreaterEqual", "AndAnd", "OrOr", "PlusPlus", "MinusMinus", - "Comma", "ArrowStar", "Arrow", "Question", "Colon", "Doublecolon", - "Semi", "Dot", "DotStar", "Ellipsis", "Identifier", "Integerliteral", - "Decimalliteral", "Octalliteral", "Hexadecimalliteral", "Binaryliteral", - "Integersuffix", "Characterliteral", "Floatingliteral", "Stringliteral", - "Userdefinedintegerliteral", "Userdefinedfloatingliteral", "Userdefinedstringliteral", - "Userdefinedcharacterliteral", "Whitespace", "Newline", "BlockComment", + null, "MultiLineMacro", "Directive", "Alignas", "Alignof", "Asm", + "Auto", "Bool", "Break", "Case", "Catch", "Char", "Char16", "Char32", + "Class", "Const", "Constexpr", "Const_cast", "Continue", "Decltype", + "Default", "Delete", "Do", "Double", "Dynamic_cast", "Else", "Enum", + "Explicit", "Export", "Extern", "False", "Final", "Float", "For", + "Friend", "Goto", "If", "Inline", "Int", "Long", "Mutable", "Namespace", + "New", "Noexcept", "Nullptr", "Operator", "Override", "Private", + "Protected", "Public", "Register", "Reinterpret_cast", "Return", + "Short", "Signed", "Sizeof", "Static", "Static_assert", "Static_cast", + "Struct", "Switch", "Template", "This", "Thread_local", "Throw", + "True", "Try", "Typedef", "Typeid", "Typename", "Union", "Unsigned", + "Using", "Virtual", "Void", "Volatile", "Wchar", "While", "LeftParen", + "RightParen", "LeftBracket", "RightBracket", "LeftBrace", "RightBrace", + "Plus", "Minus", "Star", "Div", "Mod", "Caret", "And", "Or", "Tilde", + "Not", "Assign", "Less", "Greater", "PlusAssign", "MinusAssign", + "StarAssign", "DivAssign", "ModAssign", "XorAssign", "AndAssign", + "OrAssign", "LeftShift", "LeftShiftAssign", "Equal", "NotEqual", + "LessEqual", "GreaterEqual", "AndAnd", "OrOr", "PlusPlus", "MinusMinus", + "Comma", "ArrowStar", "Arrow", "Question", "Colon", "Doublecolon", + "Semi", "Dot", "DotStar", "Ellipsis", "Identifier", "Integerliteral", + "Decimalliteral", "Octalliteral", "Hexadecimalliteral", "Binaryliteral", + "Integersuffix", "Characterliteral", "Floatingliteral", "Stringliteral", + "Userdefinedintegerliteral", "Userdefinedfloatingliteral", "Userdefinedstringliteral", + "Userdefinedcharacterliteral", "Whitespace", "Newline", "BlockComment", "LineComment" ]; public static readonly ruleNames = [ - "translationunit", "primaryexpression", "idexpression", "unqualifiedid", - "qualifiedid", "nestednamespecifier", "lambdaexpression", "lambdaintroducer", - "lambdacapture", "capturedefault", "capturelist", "capture", "simplecapture", - "initcapture", "lambdadeclarator", "postfixexpression", "expressionlist", - "pseudodestructorname", "unaryexpression", "unaryoperator", "newexpression", - "newplacement", "newtypeid", "newdeclarator", "noptrnewdeclarator", - "newinitializer", "deleteexpression", "noexceptexpression", "castexpression", - "pmexpression", "multiplicativeexpression", "additiveexpression", - "shiftexpression", "relationalexpression", "equalityexpression", - "andexpression", "exclusiveorexpression", "inclusiveorexpression", - "logicalandexpression", "logicalorexpression", "conditionalexpression", - "assignmentexpression", "assignmentoperator", "expression", "constantexpression", - "statement", "labeledstatement", "expressionstatement", "compoundstatement", - "statementseq", "selectionstatement", "condition", "iterationstatement", - "forinitstatement", "forrangedeclaration", "forrangeinitializer", - "jumpstatement", "declarationstatement", "declarationseq", "declaration", - "blockdeclaration", "aliasdeclaration", "simpledeclaration", "static_assertdeclaration", - "emptydeclaration", "attributedeclaration", "declspecifier", "declspecifierseq", - "storageclassspecifier", "functionspecifier", "typedefname", "typespecifier", - "trailingtypespecifier", "typespecifierseq", "trailingtypespecifierseq", - "simpletypespecifier", "typename", "decltypespecifier", "elaboratedtypespecifier", - "enumname", "enumspecifier", "enumhead", "opaqueenumdeclaration", - "enumkey", "enumbase", "enumeratorlist", "enumeratordefinition", - "enumerator", "namespacename", "originalnamespacename", "namespacedefinition", - "namednamespacedefinition", "originalnamespacedefinition", "extensionnamespacedefinition", - "unnamednamespacedefinition", "namespacebody", "namespacealias", - "namespacealiasdefinition", "qualifiednamespacespecifier", "usingdeclaration", - "usingdirective", "asmdefinition", "linkagespecification", "attributespecifierseq", - "attributespecifier", "alignmentspecifier", "attributelist", "attribute", - "attributetoken", "attributescopedtoken", "attributenamespace", - "attributeargumentclause", "balancedtokenseq", "balancedtoken", - "initdeclaratorlist", "initdeclarator", "declarator", "ptrdeclarator", - "noptrdeclarator", "parametersandqualifiers", "trailingreturntype", - "ptroperator", "cvqualifierseq", "cvqualifier", "refqualifier", - "declaratorid", "typeid", "abstractdeclarator", "ptrabstractdeclarator", - "noptrabstractdeclarator", "abstractpackdeclarator", "noptrabstractpackdeclarator", - "parameterdeclarationclause", "parameterdeclarationlist", "parameterdeclaration", - "functiondefinition", "functionbody", "initializer", "braceorequalinitializer", - "initializerclause", "initializerlist", "bracedinitlist", "classname", - "classspecifier", "classhead", "classheadname", "classvirtspecifier", - "classkey", "memberspecification", "memberdeclaration", "memberdeclaratorlist", - "memberdeclarator", "virtspecifierseq", "virtspecifier", "purespecifier", - "baseclause", "basespecifierlist", "basespecifier", "classordecltype", - "basetypespecifier", "accessspecifier", "conversionfunctionid", - "conversiontypeid", "conversiondeclarator", "ctorinitializer", "meminitializerlist", - "meminitializer", "meminitializerid", "operatorfunctionid", "literaloperatorid", - "templatedeclaration", "templateparameterlist", "templateparameter", - "typeparameter", "simpletemplateid", "templateid", "templatename", - "templateargumentlist", "templateargument", "typenamespecifier", - "explicitinstantiation", "explicitspecialization", "tryblock", "functiontryblock", - "handlerseq", "handler", "exceptiondeclaration", "throwexpression", - "exceptionspecification", "dynamicexceptionspecification", "typeidlist", - "noexceptspecification", "rightShift", "rightShiftAssign", "operator", + "translationunit", "primaryexpression", "idexpression", "unqualifiedid", + "qualifiedid", "nestednamespecifier", "lambdaexpression", "lambdaintroducer", + "lambdacapture", "capturedefault", "capturelist", "capture", "simplecapture", + "initcapture", "lambdadeclarator", "postfixexpression", "expressionlist", + "pseudodestructorname", "unaryexpression", "unaryoperator", "newexpression", + "newplacement", "newtypeid", "newdeclarator", "noptrnewdeclarator", + "newinitializer", "deleteexpression", "noexceptexpression", "castexpression", + "pmexpression", "multiplicativeexpression", "additiveexpression", + "shiftexpression", "relationalexpression", "equalityexpression", + "andexpression", "exclusiveorexpression", "inclusiveorexpression", + "logicalandexpression", "logicalorexpression", "conditionalexpression", + "assignmentexpression", "assignmentoperator", "expression", "constantexpression", + "statement", "labeledstatement", "expressionstatement", "compoundstatement", + "statementseq", "selectionstatement", "condition", "iterationstatement", + "forinitstatement", "forrangedeclaration", "forrangeinitializer", + "jumpstatement", "declarationstatement", "declarationseq", "declaration", + "blockdeclaration", "aliasdeclaration", "simpledeclaration", "static_assertdeclaration", + "emptydeclaration", "attributedeclaration", "declspecifier", "declspecifierseq", + "storageclassspecifier", "functionspecifier", "typedefname", "typespecifier", + "trailingtypespecifier", "typespecifierseq", "trailingtypespecifierseq", + "simpletypespecifier", "typename", "decltypespecifier", "elaboratedtypespecifier", + "enumname", "enumspecifier", "enumhead", "opaqueenumdeclaration", + "enumkey", "enumbase", "enumeratorlist", "enumeratordefinition", + "enumerator", "namespacename", "originalnamespacename", "namespacedefinition", + "namednamespacedefinition", "originalnamespacedefinition", "extensionnamespacedefinition", + "unnamednamespacedefinition", "namespacebody", "namespacealias", + "namespacealiasdefinition", "qualifiednamespacespecifier", "usingdeclaration", + "usingdirective", "asmdefinition", "linkagespecification", "attributespecifierseq", + "attributespecifier", "alignmentspecifier", "attributelist", "attribute", + "attributetoken", "attributescopedtoken", "attributenamespace", + "attributeargumentclause", "balancedtokenseq", "balancedtoken", + "initdeclaratorlist", "initdeclarator", "declarator", "ptrdeclarator", + "noptrdeclarator", "parametersandqualifiers", "trailingreturntype", + "ptroperator", "cvqualifierseq", "cvqualifier", "refqualifier", + "declaratorid", "typeid", "abstractdeclarator", "ptrabstractdeclarator", + "noptrabstractdeclarator", "abstractpackdeclarator", "noptrabstractpackdeclarator", + "parameterdeclarationclause", "parameterdeclarationlist", "parameterdeclaration", + "functiondefinition", "functionbody", "initializer", "braceorequalinitializer", + "initializerclause", "initializerlist", "bracedinitlist", "classname", + "classspecifier", "classhead", "classheadname", "classvirtspecifier", + "classkey", "memberspecification", "memberdeclaration", "memberdeclaratorlist", + "memberdeclarator", "virtspecifierseq", "virtspecifier", "purespecifier", + "baseclause", "basespecifierlist", "basespecifier", "classordecltype", + "basetypespecifier", "accessspecifier", "conversionfunctionid", + "conversiontypeid", "conversiondeclarator", "ctorinitializer", "meminitializerlist", + "meminitializer", "meminitializerid", "operatorfunctionid", "literaloperatorid", + "templatedeclaration", "templateparameterlist", "templateparameter", + "typeparameter", "simpletemplateid", "templateid", "templatename", + "templateargumentlist", "templateargument", "typenamespecifier", + "explicitinstantiation", "explicitspecialization", "tryblock", "functiontryblock", + "handlerseq", "handler", "exceptiondeclaration", "throwexpression", + "exceptionspecification", "dynamicexceptionspecification", "typeidlist", + "noexceptspecification", "rightShift", "rightShiftAssign", "operator", "literal", "booleanliteral", "pointerliteral", "userdefinedliteral", ]; @@ -478,18 +478,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 399; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { - { - this.state = 398; - this.declarationseq(0); - } + this.state = 399; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { + { + this.state = 398; + this.declarationseq(0); } + } - this.state = 401; - this.match(CPP14Parser.EOF); + this.state = 401; + this.match(CPP14Parser.EOF); } } catch (re) { @@ -513,61 +513,61 @@ export class CPP14Parser extends antlr.Parser { this.state = 411; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.False: - case CPP14Parser.Nullptr: - case CPP14Parser.True: - case CPP14Parser.Integerliteral: - case CPP14Parser.Characterliteral: - case CPP14Parser.Floatingliteral: - case CPP14Parser.Stringliteral: - case CPP14Parser.Userdefinedintegerliteral: - case CPP14Parser.Userdefinedfloatingliteral: - case CPP14Parser.Userdefinedstringliteral: - case CPP14Parser.Userdefinedcharacterliteral: - this.enterOuterAlt(localctx, 1); - { - this.state = 403; - this.literal(); - } - break; - case CPP14Parser.This: - this.enterOuterAlt(localctx, 2); - { - this.state = 404; - this.match(CPP14Parser.This); - } - break; - case CPP14Parser.LeftParen: - this.enterOuterAlt(localctx, 3); - { - this.state = 405; - this.match(CPP14Parser.LeftParen); - this.state = 406; - this.expression(0); - this.state = 407; - this.match(CPP14Parser.RightParen); - } - break; - case CPP14Parser.Decltype: - case CPP14Parser.Operator: - case CPP14Parser.Tilde: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 4); - { - this.state = 409; - this.idexpression(); - } - break; - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 5); - { - this.state = 410; - this.lambdaexpression(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.False: + case CPP14Parser.Nullptr: + case CPP14Parser.True: + case CPP14Parser.Integerliteral: + case CPP14Parser.Characterliteral: + case CPP14Parser.Floatingliteral: + case CPP14Parser.Stringliteral: + case CPP14Parser.Userdefinedintegerliteral: + case CPP14Parser.Userdefinedfloatingliteral: + case CPP14Parser.Userdefinedstringliteral: + case CPP14Parser.Userdefinedcharacterliteral: + this.enterOuterAlt(localctx, 1); + { + this.state = 403; + this.literal(); + } + break; + case CPP14Parser.This: + this.enterOuterAlt(localctx, 2); + { + this.state = 404; + this.match(CPP14Parser.This); + } + break; + case CPP14Parser.LeftParen: + this.enterOuterAlt(localctx, 3); + { + this.state = 405; + this.match(CPP14Parser.LeftParen); + this.state = 406; + this.expression(0); + this.state = 407; + this.match(CPP14Parser.RightParen); + } + break; + case CPP14Parser.Decltype: + case CPP14Parser.Operator: + case CPP14Parser.Tilde: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 4); + { + this.state = 409; + this.idexpression(); + } + break; + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 5); + { + this.state = 410; + this.lambdaexpression(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -590,21 +590,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 415; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 2, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 413; - this.unqualifiedid(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 414; - this.qualifiedid(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 2, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 413; + this.unqualifiedid(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 414; + this.qualifiedid(); + } + break; } } catch (re) { @@ -627,60 +627,60 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 426; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 3, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 417; - this.match(CPP14Parser.Identifier); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 418; - this.operatorfunctionid(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 419; - this.conversionfunctionid(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 420; - this.literaloperatorid(); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 421; - this.match(CPP14Parser.Tilde); - this.state = 422; - this.classname(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 423; - this.match(CPP14Parser.Tilde); - this.state = 424; - this.decltypespecifier(); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 425; - this.templateid(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 3, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 417; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 418; + this.operatorfunctionid(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 419; + this.conversionfunctionid(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 420; + this.literaloperatorid(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 421; + this.match(CPP14Parser.Tilde); + this.state = 422; + this.classname(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 423; + this.match(CPP14Parser.Tilde); + this.state = 424; + this.decltypespecifier(); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 425; + this.templateid(); + } + break; } } catch (re) { @@ -704,20 +704,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 428; - this.nestednamespecifier(0); - this.state = 430; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 429; - this.match(CPP14Parser.Template); - } + this.state = 428; + this.nestednamespecifier(0); + this.state = 430; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { + { + this.state = 429; + this.match(CPP14Parser.Template); } + } - this.state = 432; - this.unqualifiedid(); + this.state = 432; + this.unqualifiedid(); } } catch (re) { @@ -753,99 +753,99 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 445; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 5, this._ctx)) { + this.state = 445; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 5, this._ctx) ) { + case 1: + { + this.state = 435; + this.match(CPP14Parser.Doublecolon); + } + break; + case 2: + { + this.state = 436; + this.typename(); + this.state = 437; + this.match(CPP14Parser.Doublecolon); + } + break; + case 3: + { + this.state = 439; + this.namespacename(); + this.state = 440; + this.match(CPP14Parser.Doublecolon); + } + break; + case 4: + { + this.state = 442; + this.decltypespecifier(); + this.state = 443; + this.match(CPP14Parser.Doublecolon); + } + break; + } + this._ctx.stop = this._input.LT(-1); + this.state = 459; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 8, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 457; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 7, this._ctx) ) { case 1: { - this.state = 435; - this.match(CPP14Parser.Doublecolon); + localctx = new NestednamespecifierContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_nestednamespecifier); + this.state = 447; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 448; + this.match(CPP14Parser.Identifier); + this.state = 449; + this.match(CPP14Parser.Doublecolon); } break; case 2: { - this.state = 436; - this.typename(); - this.state = 437; - this.match(CPP14Parser.Doublecolon); + localctx = new NestednamespecifierContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_nestednamespecifier); + this.state = 450; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } - break; - case 3: - { - this.state = 439; - this.namespacename(); - this.state = 440; - this.match(CPP14Parser.Doublecolon); + this.state = 452; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { + { + this.state = 451; + this.match(CPP14Parser.Template); + } } - break; - case 4: - { - this.state = 442; - this.decltypespecifier(); - this.state = 443; - this.match(CPP14Parser.Doublecolon); + + this.state = 454; + this.simpletemplateid(); + this.state = 455; + this.match(CPP14Parser.Doublecolon); } break; + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 459; + this.state = 461; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 8, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - this.state = 457; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 7, this._ctx)) { - case 1: - { - localctx = new NestednamespecifierContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_nestednamespecifier); - this.state = 447; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 448; - this.match(CPP14Parser.Identifier); - this.state = 449; - this.match(CPP14Parser.Doublecolon); - } - break; - case 2: - { - localctx = new NestednamespecifierContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_nestednamespecifier); - this.state = 450; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 452; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 451; - this.match(CPP14Parser.Template); - } - } - - this.state = 454; - this.simpletemplateid(); - this.state = 455; - this.match(CPP14Parser.Doublecolon); - } - break; - } - } - } - this.state = 461; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 8, this._ctx); - } + } } } catch (re) { @@ -869,20 +869,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 462; - this.lambdaintroducer(); - this.state = 464; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 78) { - { - this.state = 463; - this.lambdadeclarator(); - } + this.state = 462; + this.lambdaintroducer(); + this.state = 464; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===78) { + { + this.state = 463; + this.lambdadeclarator(); } + } - this.state = 466; - this.compoundstatement(); + this.state = 466; + this.compoundstatement(); } } catch (re) { @@ -906,20 +906,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 468; - this.match(CPP14Parser.LeftBracket); - this.state = 470; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 62 || _la === 90 || _la === 94 || _la === 125) { - { - this.state = 469; - this.lambdacapture(); - } + this.state = 468; + this.match(CPP14Parser.LeftBracket); + this.state = 470; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===62 || _la===90 || _la===94 || _la===125) { + { + this.state = 469; + this.lambdacapture(); } + } - this.state = 472; - this.match(CPP14Parser.RightBracket); + this.state = 472; + this.match(CPP14Parser.RightBracket); } } catch (re) { @@ -942,32 +942,32 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 480; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 11, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 474; - this.capturedefault(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 475; - this.capturelist(0); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 476; - this.capturedefault(); - this.state = 477; - this.match(CPP14Parser.Comma); - this.state = 478; - this.capturelist(0); - } - break; + switch ( this._interp.adaptivePredict(this._input, 11, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 474; + this.capturedefault(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 475; + this.capturelist(0); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 476; + this.capturedefault(); + this.state = 477; + this.match(CPP14Parser.Comma); + this.state = 478; + this.capturelist(0); + } + break; } } catch (re) { @@ -991,15 +991,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 482; - _la = this._input.LA(1); - if (!(_la === 90 || _la === 94)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 482; + _la = this._input.LA(1); + if(!(_la===90 || _la===94)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -1034,59 +1034,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 485; + this.capture(); + this.state = 487; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 12, this._ctx) ) { + case 1: { - this.state = 485; + this.state = 486; + this.match(CPP14Parser.Ellipsis); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 497; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 14, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new CapturelistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_capturelist); + this.state = 489; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 490; + this.match(CPP14Parser.Comma); + this.state = 491; this.capture(); - this.state = 487; + this.state = 493; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 12, this._ctx)) { - case 1: - { - this.state = 486; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 497; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 14, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 13, this._ctx) ) { + case 1: { - { - localctx = new CapturelistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_capturelist); - this.state = 489; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 490; - this.match(CPP14Parser.Comma); - this.state = 491; - this.capture(); - this.state = 493; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 13, this._ctx)) { - case 1: - { - this.state = 492; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } + this.state = 492; + this.match(CPP14Parser.Ellipsis); } + break; + } + } } - this.state = 499; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 14, this._ctx); } + this.state = 499; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 14, this._ctx); + } } } catch (re) { @@ -1109,21 +1109,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 502; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 15, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 500; - this.simplecapture(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 501; - this.initcapture(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 15, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 500; + this.simplecapture(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 501; + this.initcapture(); + } + break; } } catch (re) { @@ -1147,31 +1147,31 @@ export class CPP14Parser extends antlr.Parser { this.state = 508; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); - { - this.state = 504; - this.match(CPP14Parser.Identifier); - } - break; - case CPP14Parser.And: - this.enterOuterAlt(localctx, 2); - { - this.state = 505; - this.match(CPP14Parser.And); - this.state = 506; - this.match(CPP14Parser.Identifier); - } - break; - case CPP14Parser.This: - this.enterOuterAlt(localctx, 3); - { - this.state = 507; - this.match(CPP14Parser.This); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 504; + this.match(CPP14Parser.Identifier); + } + break; + case CPP14Parser.And: + this.enterOuterAlt(localctx, 2); + { + this.state = 505; + this.match(CPP14Parser.And); + this.state = 506; + this.match(CPP14Parser.Identifier); + } + break; + case CPP14Parser.This: + this.enterOuterAlt(localctx, 3); + { + this.state = 507; + this.match(CPP14Parser.This); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -1195,28 +1195,28 @@ export class CPP14Parser extends antlr.Parser { this.state = 515; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); - { - this.state = 510; - this.match(CPP14Parser.Identifier); - this.state = 511; - this.initializer(); - } - break; - case CPP14Parser.And: - this.enterOuterAlt(localctx, 2); - { - this.state = 512; - this.match(CPP14Parser.And); - this.state = 513; - this.match(CPP14Parser.Identifier); - this.state = 514; - this.initializer(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 510; + this.match(CPP14Parser.Identifier); + this.state = 511; + this.initializer(); + } + break; + case CPP14Parser.And: + this.enterOuterAlt(localctx, 2); + { + this.state = 512; + this.match(CPP14Parser.And); + this.state = 513; + this.match(CPP14Parser.Identifier); + this.state = 514; + this.initializer(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -1240,51 +1240,51 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 517; - this.match(CPP14Parser.LeftParen); - this.state = 518; - this.parameterdeclarationclause(); - this.state = 519; - this.match(CPP14Parser.RightParen); - this.state = 521; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 40) { - { - this.state = 520; - this.match(CPP14Parser.Mutable); - } + this.state = 517; + this.match(CPP14Parser.LeftParen); + this.state = 518; + this.parameterdeclarationclause(); + this.state = 519; + this.match(CPP14Parser.RightParen); + this.state = 521; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===40) { + { + this.state = 520; + this.match(CPP14Parser.Mutable); } + } - this.state = 524; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 43 || _la === 64) { - { - this.state = 523; - this.exceptionspecification(); - } + this.state = 524; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===43 || _la===64) { + { + this.state = 523; + this.exceptionspecification(); } + } - this.state = 527; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 526; - this.attributespecifierseq(0); - } + this.state = 527; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 526; + this.attributespecifierseq(0); } + } - this.state = 530; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 117) { - { - this.state = 529; - this.trailingreturntype(); - } + this.state = 530; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===117) { + { + this.state = 529; + this.trailingreturntype(); } + } } } @@ -1321,345 +1321,345 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 596; + this.state = 596; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 24, this._ctx) ) { + case 1: + { + this.state = 533; + this.primaryexpression(); + } + break; + case 2: + { + this.state = 534; + this.simpletypespecifier(); + this.state = 535; + this.match(CPP14Parser.LeftParen); + this.state = 537; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 24, this._ctx)) { + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 536; + this.expressionlist(); + } + } + + this.state = 539; + this.match(CPP14Parser.RightParen); + } + break; + case 3: + { + this.state = 541; + this.typenamespecifier(); + this.state = 542; + this.match(CPP14Parser.LeftParen); + this.state = 544; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 543; + this.expressionlist(); + } + } + + this.state = 546; + this.match(CPP14Parser.RightParen); + } + break; + case 4: + { + this.state = 548; + this.simpletypespecifier(); + this.state = 549; + this.bracedinitlist(); + } + break; + case 5: + { + this.state = 551; + this.typenamespecifier(); + this.state = 552; + this.bracedinitlist(); + } + break; + case 6: + { + this.state = 554; + this.match(CPP14Parser.Dynamic_cast); + this.state = 555; + this.match(CPP14Parser.Less); + this.state = 556; + this.typeid(); + this.state = 557; + this.match(CPP14Parser.Greater); + this.state = 558; + this.match(CPP14Parser.LeftParen); + this.state = 559; + this.expression(0); + this.state = 560; + this.match(CPP14Parser.RightParen); + } + break; + case 7: + { + this.state = 562; + this.match(CPP14Parser.Static_cast); + this.state = 563; + this.match(CPP14Parser.Less); + this.state = 564; + this.typeid(); + this.state = 565; + this.match(CPP14Parser.Greater); + this.state = 566; + this.match(CPP14Parser.LeftParen); + this.state = 567; + this.expression(0); + this.state = 568; + this.match(CPP14Parser.RightParen); + } + break; + case 8: + { + this.state = 570; + this.match(CPP14Parser.Reinterpret_cast); + this.state = 571; + this.match(CPP14Parser.Less); + this.state = 572; + this.typeid(); + this.state = 573; + this.match(CPP14Parser.Greater); + this.state = 574; + this.match(CPP14Parser.LeftParen); + this.state = 575; + this.expression(0); + this.state = 576; + this.match(CPP14Parser.RightParen); + } + break; + case 9: + { + this.state = 578; + this.match(CPP14Parser.Const_cast); + this.state = 579; + this.match(CPP14Parser.Less); + this.state = 580; + this.typeid(); + this.state = 581; + this.match(CPP14Parser.Greater); + this.state = 582; + this.match(CPP14Parser.LeftParen); + this.state = 583; + this.expression(0); + this.state = 584; + this.match(CPP14Parser.RightParen); + } + break; + case 10: + { + this.state = 586; + this.match(CPP14Parser.Typeid); + this.state = 587; + this.match(CPP14Parser.LeftParen); + this.state = 588; + this.expression(0); + this.state = 589; + this.match(CPP14Parser.RightParen); + } + break; + case 11: + { + this.state = 591; + this.match(CPP14Parser.Typeid); + this.state = 592; + this.match(CPP14Parser.LeftParen); + this.state = 593; + this.typeid(); + this.state = 594; + this.match(CPP14Parser.RightParen); + } + break; + } + this._ctx.stop = this._input.LT(-1); + this.state = 638; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 29, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 636; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 28, this._ctx) ) { case 1: { - this.state = 533; - this.primaryexpression(); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 598; + if (!(this.precpred(this._ctx, 19))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 19)"); + } + this.state = 599; + this.match(CPP14Parser.LeftBracket); + this.state = 600; + this.expression(0); + this.state = 601; + this.match(CPP14Parser.RightBracket); } break; case 2: { - this.state = 534; - this.simpletypespecifier(); - this.state = 535; - this.match(CPP14Parser.LeftParen); - this.state = 537; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 536; - this.expressionlist(); - } - } - - this.state = 539; - this.match(CPP14Parser.RightParen); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 603; + if (!(this.precpred(this._ctx, 18))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 18)"); + } + this.state = 604; + this.match(CPP14Parser.LeftBracket); + this.state = 605; + this.bracedinitlist(); + this.state = 606; + this.match(CPP14Parser.RightBracket); } break; case 3: { - this.state = 541; - this.typenamespecifier(); - this.state = 542; - this.match(CPP14Parser.LeftParen); - this.state = 544; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 543; - this.expressionlist(); - } + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 608; + if (!(this.precpred(this._ctx, 17))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 17)"); + } + this.state = 609; + this.match(CPP14Parser.LeftParen); + this.state = 611; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 610; + this.expressionlist(); } + } - this.state = 546; - this.match(CPP14Parser.RightParen); + this.state = 613; + this.match(CPP14Parser.RightParen); } break; case 4: { - this.state = 548; - this.simpletypespecifier(); - this.state = 549; - this.bracedinitlist(); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 614; + if (!(this.precpred(this._ctx, 12))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 12)"); + } + this.state = 615; + this.match(CPP14Parser.Dot); + this.state = 617; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { + { + this.state = 616; + this.match(CPP14Parser.Template); + } + } + + this.state = 619; + this.idexpression(); } break; case 5: { - this.state = 551; - this.typenamespecifier(); - this.state = 552; - this.bracedinitlist(); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 620; + if (!(this.precpred(this._ctx, 11))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 11)"); + } + this.state = 621; + this.match(CPP14Parser.Arrow); + this.state = 623; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { + { + this.state = 622; + this.match(CPP14Parser.Template); + } + } + + this.state = 625; + this.idexpression(); } break; case 6: { - this.state = 554; - this.match(CPP14Parser.Dynamic_cast); - this.state = 555; - this.match(CPP14Parser.Less); - this.state = 556; - this.typeid(); - this.state = 557; - this.match(CPP14Parser.Greater); - this.state = 558; - this.match(CPP14Parser.LeftParen); - this.state = 559; - this.expression(0); - this.state = 560; - this.match(CPP14Parser.RightParen); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 626; + if (!(this.precpred(this._ctx, 10))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 10)"); + } + this.state = 627; + this.match(CPP14Parser.Dot); + this.state = 628; + this.pseudodestructorname(); } break; case 7: { - this.state = 562; - this.match(CPP14Parser.Static_cast); - this.state = 563; - this.match(CPP14Parser.Less); - this.state = 564; - this.typeid(); - this.state = 565; - this.match(CPP14Parser.Greater); - this.state = 566; - this.match(CPP14Parser.LeftParen); - this.state = 567; - this.expression(0); - this.state = 568; - this.match(CPP14Parser.RightParen); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 629; + if (!(this.precpred(this._ctx, 9))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 9)"); + } + this.state = 630; + this.match(CPP14Parser.Arrow); + this.state = 631; + this.pseudodestructorname(); } break; case 8: { - this.state = 570; - this.match(CPP14Parser.Reinterpret_cast); - this.state = 571; - this.match(CPP14Parser.Less); - this.state = 572; - this.typeid(); - this.state = 573; - this.match(CPP14Parser.Greater); - this.state = 574; - this.match(CPP14Parser.LeftParen); - this.state = 575; - this.expression(0); - this.state = 576; - this.match(CPP14Parser.RightParen); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 632; + if (!(this.precpred(this._ctx, 8))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 8)"); } - break; - case 9: - { - this.state = 578; - this.match(CPP14Parser.Const_cast); - this.state = 579; - this.match(CPP14Parser.Less); - this.state = 580; - this.typeid(); - this.state = 581; - this.match(CPP14Parser.Greater); - this.state = 582; - this.match(CPP14Parser.LeftParen); - this.state = 583; - this.expression(0); - this.state = 584; - this.match(CPP14Parser.RightParen); + this.state = 633; + this.match(CPP14Parser.PlusPlus); } break; - case 10: + case 9: { - this.state = 586; - this.match(CPP14Parser.Typeid); - this.state = 587; - this.match(CPP14Parser.LeftParen); - this.state = 588; - this.expression(0); - this.state = 589; - this.match(CPP14Parser.RightParen); + localctx = new PostfixexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); + this.state = 634; + if (!(this.precpred(this._ctx, 7))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 7)"); } - break; - case 11: - { - this.state = 591; - this.match(CPP14Parser.Typeid); - this.state = 592; - this.match(CPP14Parser.LeftParen); - this.state = 593; - this.typeid(); - this.state = 594; - this.match(CPP14Parser.RightParen); + this.state = 635; + this.match(CPP14Parser.MinusMinus); } break; + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 638; + this.state = 640; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 29, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - this.state = 636; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 28, this._ctx)) { - case 1: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 598; - if (!(this.precpred(this._ctx, 19))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 19)"); - } - this.state = 599; - this.match(CPP14Parser.LeftBracket); - this.state = 600; - this.expression(0); - this.state = 601; - this.match(CPP14Parser.RightBracket); - } - break; - case 2: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 603; - if (!(this.precpred(this._ctx, 18))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 18)"); - } - this.state = 604; - this.match(CPP14Parser.LeftBracket); - this.state = 605; - this.bracedinitlist(); - this.state = 606; - this.match(CPP14Parser.RightBracket); - } - break; - case 3: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 608; - if (!(this.precpred(this._ctx, 17))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 17)"); - } - this.state = 609; - this.match(CPP14Parser.LeftParen); - this.state = 611; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 610; - this.expressionlist(); - } - } - - this.state = 613; - this.match(CPP14Parser.RightParen); - } - break; - case 4: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 614; - if (!(this.precpred(this._ctx, 12))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 12)"); - } - this.state = 615; - this.match(CPP14Parser.Dot); - this.state = 617; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 616; - this.match(CPP14Parser.Template); - } - } - - this.state = 619; - this.idexpression(); - } - break; - case 5: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 620; - if (!(this.precpred(this._ctx, 11))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 11)"); - } - this.state = 621; - this.match(CPP14Parser.Arrow); - this.state = 623; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 622; - this.match(CPP14Parser.Template); - } - } - - this.state = 625; - this.idexpression(); - } - break; - case 6: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 626; - if (!(this.precpred(this._ctx, 10))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 10)"); - } - this.state = 627; - this.match(CPP14Parser.Dot); - this.state = 628; - this.pseudodestructorname(); - } - break; - case 7: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 629; - if (!(this.precpred(this._ctx, 9))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 9)"); - } - this.state = 630; - this.match(CPP14Parser.Arrow); - this.state = 631; - this.pseudodestructorname(); - } - break; - case 8: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 632; - if (!(this.precpred(this._ctx, 8))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 8)"); - } - this.state = 633; - this.match(CPP14Parser.PlusPlus); - } - break; - case 9: - { - localctx = new PostfixexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_postfixexpression); - this.state = 634; - if (!(this.precpred(this._ctx, 7))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 7)"); - } - this.state = 635; - this.match(CPP14Parser.MinusMinus); - } - break; - } - } - } - this.state = 640; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 29, this._ctx); - } + } } } catch (re) { @@ -1682,8 +1682,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 641; - this.initializerlist(0); + this.state = 641; + this.initializerlist(0); } } catch (re) { @@ -1707,75 +1707,75 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 665; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 32, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 32, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 644; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 30, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 644; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 30, this._ctx)) { - case 1: - { - this.state = 643; - this.nestednamespecifier(0); - } - break; - } - this.state = 646; - this.typename(); - this.state = 647; - this.match(CPP14Parser.Doublecolon); - this.state = 648; - this.match(CPP14Parser.Tilde); - this.state = 649; - this.typename(); + this.state = 643; + this.nestednamespecifier(0); } break; - case 2: - this.enterOuterAlt(localctx, 2); + } + this.state = 646; + this.typename(); + this.state = 647; + this.match(CPP14Parser.Doublecolon); + this.state = 648; + this.match(CPP14Parser.Tilde); + this.state = 649; + this.typename(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 651; + this.nestednamespecifier(0); + this.state = 652; + this.match(CPP14Parser.Template); + this.state = 653; + this.simpletemplateid(); + this.state = 654; + this.match(CPP14Parser.Doublecolon); + this.state = 655; + this.match(CPP14Parser.Tilde); + this.state = 656; + this.typename(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 659; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===19 || _la===120 || _la===125) { { - this.state = 651; - this.nestednamespecifier(0); - this.state = 652; - this.match(CPP14Parser.Template); - this.state = 653; - this.simpletemplateid(); - this.state = 654; - this.match(CPP14Parser.Doublecolon); - this.state = 655; - this.match(CPP14Parser.Tilde); - this.state = 656; - this.typename(); + this.state = 658; + this.nestednamespecifier(0); } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 659; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 19 || _la === 120 || _la === 125) { - { - this.state = 658; - this.nestednamespecifier(0); - } - } + } - this.state = 661; - this.match(CPP14Parser.Tilde); - this.state = 662; - this.typename(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 663; - this.match(CPP14Parser.Tilde); - this.state = 664; - this.decltypespecifier(); - } - break; + this.state = 661; + this.match(CPP14Parser.Tilde); + this.state = 662; + this.typename(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 663; + this.match(CPP14Parser.Tilde); + this.state = 664; + this.decltypespecifier(); + } + break; } } catch (re) { @@ -1798,112 +1798,112 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 695; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 33, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 667; - this.postfixexpression(0); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 668; - this.match(CPP14Parser.PlusPlus); - this.state = 669; - this.castexpression(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 670; - this.match(CPP14Parser.MinusMinus); - this.state = 671; - this.castexpression(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 672; - this.unaryoperator(); - this.state = 673; - this.castexpression(); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 675; - this.match(CPP14Parser.Sizeof); - this.state = 676; - this.unaryexpression(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 677; - this.match(CPP14Parser.Sizeof); - this.state = 678; - this.match(CPP14Parser.LeftParen); - this.state = 679; - this.typeid(); - this.state = 680; - this.match(CPP14Parser.RightParen); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 682; - this.match(CPP14Parser.Sizeof); - this.state = 683; - this.match(CPP14Parser.Ellipsis); - this.state = 684; - this.match(CPP14Parser.LeftParen); - this.state = 685; - this.match(CPP14Parser.Identifier); - this.state = 686; - this.match(CPP14Parser.RightParen); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 687; - this.match(CPP14Parser.Alignof); - this.state = 688; - this.match(CPP14Parser.LeftParen); - this.state = 689; - this.typeid(); - this.state = 690; - this.match(CPP14Parser.RightParen); - } - break; - case 9: - this.enterOuterAlt(localctx, 9); - { - this.state = 692; - this.noexceptexpression(); - } - break; - case 10: - this.enterOuterAlt(localctx, 10); - { - this.state = 693; - this.newexpression(); - } - break; - case 11: - this.enterOuterAlt(localctx, 11); - { - this.state = 694; - this.deleteexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 33, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 667; + this.postfixexpression(0); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 668; + this.match(CPP14Parser.PlusPlus); + this.state = 669; + this.castexpression(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 670; + this.match(CPP14Parser.MinusMinus); + this.state = 671; + this.castexpression(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 672; + this.unaryoperator(); + this.state = 673; + this.castexpression(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 675; + this.match(CPP14Parser.Sizeof); + this.state = 676; + this.unaryexpression(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 677; + this.match(CPP14Parser.Sizeof); + this.state = 678; + this.match(CPP14Parser.LeftParen); + this.state = 679; + this.typeid(); + this.state = 680; + this.match(CPP14Parser.RightParen); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 682; + this.match(CPP14Parser.Sizeof); + this.state = 683; + this.match(CPP14Parser.Ellipsis); + this.state = 684; + this.match(CPP14Parser.LeftParen); + this.state = 685; + this.match(CPP14Parser.Identifier); + this.state = 686; + this.match(CPP14Parser.RightParen); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 687; + this.match(CPP14Parser.Alignof); + this.state = 688; + this.match(CPP14Parser.LeftParen); + this.state = 689; + this.typeid(); + this.state = 690; + this.match(CPP14Parser.RightParen); + } + break; + case 9: + this.enterOuterAlt(localctx, 9); + { + this.state = 692; + this.noexceptexpression(); + } + break; + case 10: + this.enterOuterAlt(localctx, 10); + { + this.state = 693; + this.newexpression(); + } + break; + case 11: + this.enterOuterAlt(localctx, 11); + { + this.state = 694; + this.deleteexpression(); + } + break; } } catch (re) { @@ -1927,15 +1927,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 697; - _la = this._input.LA(1); - if (!(((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 967) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 697; + _la = this._input.LA(1); + if(!(((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 967) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -1959,89 +1959,89 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 723; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 40, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 40, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 700; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===120) { { - this.state = 700; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 120) { - { - this.state = 699; - this.match(CPP14Parser.Doublecolon); - } - } + this.state = 699; + this.match(CPP14Parser.Doublecolon); + } + } - this.state = 702; - this.match(CPP14Parser.New); - this.state = 704; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 78) { - { - this.state = 703; - this.newplacement(); - } - } + this.state = 702; + this.match(CPP14Parser.New); + this.state = 704; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===78) { + { + this.state = 703; + this.newplacement(); + } + } - this.state = 706; - this.newtypeid(); - this.state = 708; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 36, this._ctx)) { - case 1: - { - this.state = 707; - this.newinitializer(); - } - break; - } + this.state = 706; + this.newtypeid(); + this.state = 708; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 36, this._ctx) ) { + case 1: + { + this.state = 707; + this.newinitializer(); } break; - case 2: - this.enterOuterAlt(localctx, 2); + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 711; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===120) { { - this.state = 711; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 120) { - { - this.state = 710; - this.match(CPP14Parser.Doublecolon); - } - } + this.state = 710; + this.match(CPP14Parser.Doublecolon); + } + } - this.state = 713; - this.match(CPP14Parser.New); - this.state = 715; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 38, this._ctx)) { - case 1: - { - this.state = 714; - this.newplacement(); - } - break; - } - this.state = 717; - this.match(CPP14Parser.LeftParen); - this.state = 718; - this.typeid(); - this.state = 719; - this.match(CPP14Parser.RightParen); - this.state = 721; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 39, this._ctx)) { - case 1: - { - this.state = 720; - this.newinitializer(); - } - break; - } + this.state = 713; + this.match(CPP14Parser.New); + this.state = 715; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 38, this._ctx) ) { + case 1: + { + this.state = 714; + this.newplacement(); + } + break; + } + this.state = 717; + this.match(CPP14Parser.LeftParen); + this.state = 718; + this.typeid(); + this.state = 719; + this.match(CPP14Parser.RightParen); + this.state = 721; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 39, this._ctx) ) { + case 1: + { + this.state = 720; + this.newinitializer(); } break; + } + } + break; } } catch (re) { @@ -2064,12 +2064,12 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 725; - this.match(CPP14Parser.LeftParen); - this.state = 726; - this.expressionlist(); - this.state = 727; - this.match(CPP14Parser.RightParen); + this.state = 725; + this.match(CPP14Parser.LeftParen); + this.state = 726; + this.expressionlist(); + this.state = 727; + this.match(CPP14Parser.RightParen); } } catch (re) { @@ -2092,18 +2092,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 729; - this.typespecifierseq(); - this.state = 731; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 41, this._ctx)) { - case 1: - { - this.state = 730; - this.newdeclarator(); - } - break; + this.state = 729; + this.typespecifierseq(); + this.state = 731; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 41, this._ctx) ) { + case 1: + { + this.state = 730; + this.newdeclarator(); } + break; + } } } catch (re) { @@ -2127,37 +2127,37 @@ export class CPP14Parser extends antlr.Parser { this.state = 738; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Decltype: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.AndAnd: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); - { - this.state = 733; - this.ptroperator(); - this.state = 735; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 42, this._ctx)) { - case 1: - { - this.state = 734; - this.newdeclarator(); - } - break; - } - } - break; - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 2); + case CPP14Parser.Decltype: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.AndAnd: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 733; + this.ptroperator(); + this.state = 735; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 42, this._ctx) ) { + case 1: { - this.state = 737; - this.noptrnewdeclarator(0); + this.state = 734; + this.newdeclarator(); } break; - default: - throw new antlr.NoViableAltException(this); + } + } + break; + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 2); + { + this.state = 737; + this.noptrnewdeclarator(0); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -2192,65 +2192,65 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 741; + this.match(CPP14Parser.LeftBracket); + this.state = 742; + this.expression(0); + this.state = 743; + this.match(CPP14Parser.RightBracket); + this.state = 745; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 44, this._ctx) ) { + case 1: { - this.state = 741; + this.state = 744; + this.attributespecifierseq(0); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 756; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 46, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new NoptrnewdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrnewdeclarator); + this.state = 747; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 748; this.match(CPP14Parser.LeftBracket); - this.state = 742; - this.expression(0); - this.state = 743; + this.state = 749; + this.constantexpression(); + this.state = 750; this.match(CPP14Parser.RightBracket); - this.state = 745; + this.state = 752; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 44, this._ctx)) { - case 1: - { - this.state = 744; - this.attributespecifierseq(0); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 756; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 46, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 45, this._ctx) ) { + case 1: { - { - localctx = new NoptrnewdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrnewdeclarator); - this.state = 747; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 748; - this.match(CPP14Parser.LeftBracket); - this.state = 749; - this.constantexpression(); - this.state = 750; - this.match(CPP14Parser.RightBracket); - this.state = 752; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 45, this._ctx)) { - case 1: - { - this.state = 751; - this.attributespecifierseq(0); - } - break; - } - } + this.state = 751; + this.attributespecifierseq(0); } + break; + } + } } - this.state = 758; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 46, this._ctx); } + this.state = 758; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 46, this._ctx); + } } } catch (re) { @@ -2275,34 +2275,34 @@ export class CPP14Parser extends antlr.Parser { this.state = 765; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.LeftParen: - this.enterOuterAlt(localctx, 1); - { - this.state = 759; - this.match(CPP14Parser.LeftParen); - this.state = 761; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 760; - this.expressionlist(); - } - } - - this.state = 763; - this.match(CPP14Parser.RightParen); - } - break; - case CPP14Parser.LeftBrace: - this.enterOuterAlt(localctx, 2); + case CPP14Parser.LeftParen: + this.enterOuterAlt(localctx, 1); + { + this.state = 759; + this.match(CPP14Parser.LeftParen); + this.state = 761; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 764; - this.bracedinitlist(); + this.state = 760; + this.expressionlist(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + + this.state = 763; + this.match(CPP14Parser.RightParen); + } + break; + case CPP14Parser.LeftBrace: + this.enterOuterAlt(localctx, 2); + { + this.state = 764; + this.bracedinitlist(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -2326,49 +2326,49 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 779; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 51, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 51, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 768; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===120) { { - this.state = 768; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 120) { - { - this.state = 767; - this.match(CPP14Parser.Doublecolon); - } - } - - this.state = 770; - this.match(CPP14Parser.Delete); - this.state = 771; - this.castexpression(); + this.state = 767; + this.match(CPP14Parser.Doublecolon); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 773; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 120) { - { - this.state = 772; - this.match(CPP14Parser.Doublecolon); - } - } + } - this.state = 775; - this.match(CPP14Parser.Delete); - this.state = 776; - this.match(CPP14Parser.LeftBracket); - this.state = 777; - this.match(CPP14Parser.RightBracket); - this.state = 778; - this.castexpression(); + this.state = 770; + this.match(CPP14Parser.Delete); + this.state = 771; + this.castexpression(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 773; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===120) { + { + this.state = 772; + this.match(CPP14Parser.Doublecolon); } - break; + } + + this.state = 775; + this.match(CPP14Parser.Delete); + this.state = 776; + this.match(CPP14Parser.LeftBracket); + this.state = 777; + this.match(CPP14Parser.RightBracket); + this.state = 778; + this.castexpression(); + } + break; } } catch (re) { @@ -2391,14 +2391,14 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 781; - this.match(CPP14Parser.Noexcept); - this.state = 782; - this.match(CPP14Parser.LeftParen); - this.state = 783; - this.expression(0); - this.state = 784; - this.match(CPP14Parser.RightParen); + this.state = 781; + this.match(CPP14Parser.Noexcept); + this.state = 782; + this.match(CPP14Parser.LeftParen); + this.state = 783; + this.expression(0); + this.state = 784; + this.match(CPP14Parser.RightParen); } } catch (re) { @@ -2421,27 +2421,27 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 792; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 52, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 786; - this.unaryexpression(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 787; - this.match(CPP14Parser.LeftParen); - this.state = 788; - this.typeid(); - this.state = 789; - this.match(CPP14Parser.RightParen); - this.state = 790; - this.castexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 52, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 786; + this.unaryexpression(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 787; + this.match(CPP14Parser.LeftParen); + this.state = 788; + this.typeid(); + this.state = 789; + this.match(CPP14Parser.RightParen); + this.state = 790; + this.castexpression(); + } + break; } } catch (re) { @@ -2476,59 +2476,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 795; - this.castexpression(); - } - this._ctx.stop = this._input.LT(-1); - this.state = 805; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 54, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 795; + this.castexpression(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 805; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 54, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 803; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 53, this._ctx) ) { + case 1: + { + localctx = new PmexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_pmexpression); + this.state = 797; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 798; + this.match(CPP14Parser.DotStar); + this.state = 799; + this.castexpression(); } - _prevctx = localctx; + break; + case 2: { - this.state = 803; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 53, this._ctx)) { - case 1: - { - localctx = new PmexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_pmexpression); - this.state = 797; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 798; - this.match(CPP14Parser.DotStar); - this.state = 799; - this.castexpression(); - } - break; - case 2: - { - localctx = new PmexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_pmexpression); - this.state = 800; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 801; - this.match(CPP14Parser.ArrowStar); - this.state = 802; - this.castexpression(); - } - break; - } + localctx = new PmexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_pmexpression); + this.state = 800; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } + this.state = 801; + this.match(CPP14Parser.ArrowStar); + this.state = 802; + this.castexpression(); + } + break; + } } - this.state = 807; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 54, this._ctx); } + this.state = 807; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 54, this._ctx); + } } } catch (re) { @@ -2563,73 +2563,73 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 809; - this.pmexpression(0); - } - this._ctx.stop = this._input.LT(-1); - this.state = 822; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 56, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 809; + this.pmexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 822; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 56, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 820; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 55, this._ctx) ) { + case 1: + { + localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); + this.state = 811; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 812; + this.match(CPP14Parser.Star); + this.state = 813; + this.pmexpression(0); } - _prevctx = localctx; + break; + case 2: { - this.state = 820; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 55, this._ctx)) { - case 1: - { - localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); - this.state = 811; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 812; - this.match(CPP14Parser.Star); - this.state = 813; - this.pmexpression(0); - } - break; - case 2: - { - localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); - this.state = 814; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 815; - this.match(CPP14Parser.Div); - this.state = 816; - this.pmexpression(0); - } - break; - case 3: - { - localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); - this.state = 817; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 818; - this.match(CPP14Parser.Mod); - this.state = 819; - this.pmexpression(0); - } - break; - } + localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); + this.state = 814; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 815; + this.match(CPP14Parser.Div); + this.state = 816; + this.pmexpression(0); } + break; + case 3: + { + localctx = new MultiplicativeexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_multiplicativeexpression); + this.state = 817; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 818; + this.match(CPP14Parser.Mod); + this.state = 819; + this.pmexpression(0); + } + break; + } } - this.state = 824; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 56, this._ctx); } + this.state = 824; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 56, this._ctx); + } } } catch (re) { @@ -2664,59 +2664,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 826; - this.multiplicativeexpression(0); - } - this._ctx.stop = this._input.LT(-1); - this.state = 836; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 58, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 826; + this.multiplicativeexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 836; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 58, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 834; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 57, this._ctx) ) { + case 1: + { + localctx = new AdditiveexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_additiveexpression); + this.state = 828; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - _prevctx = localctx; + this.state = 829; + this.match(CPP14Parser.Plus); + this.state = 830; + this.multiplicativeexpression(0); + } + break; + case 2: { - this.state = 834; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 57, this._ctx)) { - case 1: - { - localctx = new AdditiveexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_additiveexpression); - this.state = 828; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 829; - this.match(CPP14Parser.Plus); - this.state = 830; - this.multiplicativeexpression(0); - } - break; - case 2: - { - localctx = new AdditiveexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_additiveexpression); - this.state = 831; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 832; - this.match(CPP14Parser.Minus); - this.state = 833; - this.multiplicativeexpression(0); - } - break; - } + localctx = new AdditiveexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_additiveexpression); + this.state = 831; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 832; + this.match(CPP14Parser.Minus); + this.state = 833; + this.multiplicativeexpression(0); } + break; + } } - this.state = 838; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 58, this._ctx); } + this.state = 838; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 58, this._ctx); + } } } catch (re) { @@ -2751,59 +2751,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 840; - this.additiveexpression(0); - } - this._ctx.stop = this._input.LT(-1); - this.state = 851; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 60, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 840; + this.additiveexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 851; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 60, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 849; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 59, this._ctx) ) { + case 1: + { + localctx = new ShiftexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_shiftexpression); + this.state = 842; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 843; + this.match(CPP14Parser.LeftShift); + this.state = 844; + this.additiveexpression(0); } - _prevctx = localctx; + break; + case 2: { - this.state = 849; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 59, this._ctx)) { - case 1: - { - localctx = new ShiftexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_shiftexpression); - this.state = 842; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 843; - this.match(CPP14Parser.LeftShift); - this.state = 844; - this.additiveexpression(0); - } - break; - case 2: - { - localctx = new ShiftexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_shiftexpression); - this.state = 845; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 846; - this.rightShift(); - this.state = 847; - this.additiveexpression(0); - } - break; - } + localctx = new ShiftexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_shiftexpression); + this.state = 845; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 846; + this.rightShift(); + this.state = 847; + this.additiveexpression(0); } + break; + } } - this.state = 853; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 60, this._ctx); } + this.state = 853; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 60, this._ctx); + } } } catch (re) { @@ -2838,87 +2838,87 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 855; - this.shiftexpression(0); - } - this._ctx.stop = this._input.LT(-1); - this.state = 871; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 62, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 855; + this.shiftexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 871; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 62, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 869; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 61, this._ctx) ) { + case 1: + { + localctx = new RelationalexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); + this.state = 857; + if (!(this.precpred(this._ctx, 4))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); + } + this.state = 858; + this.match(CPP14Parser.Less); + this.state = 859; + this.shiftexpression(0); } - _prevctx = localctx; + break; + case 2: { - this.state = 869; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 61, this._ctx)) { - case 1: - { - localctx = new RelationalexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); - this.state = 857; - if (!(this.precpred(this._ctx, 4))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); - } - this.state = 858; - this.match(CPP14Parser.Less); - this.state = 859; - this.shiftexpression(0); - } - break; - case 2: - { - localctx = new RelationalexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); - this.state = 860; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 861; - this.match(CPP14Parser.Greater); - this.state = 862; - this.shiftexpression(0); - } - break; - case 3: - { - localctx = new RelationalexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); - this.state = 863; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 864; - this.match(CPP14Parser.LessEqual); - this.state = 865; - this.shiftexpression(0); - } - break; - case 4: - { - localctx = new RelationalexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); - this.state = 866; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 867; - this.match(CPP14Parser.GreaterEqual); - this.state = 868; - this.shiftexpression(0); - } - break; - } + localctx = new RelationalexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); + this.state = 860; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 861; + this.match(CPP14Parser.Greater); + this.state = 862; + this.shiftexpression(0); + } + break; + case 3: + { + localctx = new RelationalexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); + this.state = 863; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 864; + this.match(CPP14Parser.LessEqual); + this.state = 865; + this.shiftexpression(0); + } + break; + case 4: + { + localctx = new RelationalexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_relationalexpression); + this.state = 866; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 867; + this.match(CPP14Parser.GreaterEqual); + this.state = 868; + this.shiftexpression(0); } + break; + } } - this.state = 873; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 62, this._ctx); } + this.state = 873; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 62, this._ctx); + } } } catch (re) { @@ -2953,59 +2953,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 875; - this.relationalexpression(0); - } - this._ctx.stop = this._input.LT(-1); - this.state = 885; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 64, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 875; + this.relationalexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 885; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 64, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 883; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 63, this._ctx) ) { + case 1: + { + localctx = new EqualityexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_equalityexpression); + this.state = 877; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 878; + this.match(CPP14Parser.Equal); + this.state = 879; + this.relationalexpression(0); } - _prevctx = localctx; + break; + case 2: { - this.state = 883; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 63, this._ctx)) { - case 1: - { - localctx = new EqualityexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_equalityexpression); - this.state = 877; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 878; - this.match(CPP14Parser.Equal); - this.state = 879; - this.relationalexpression(0); - } - break; - case 2: - { - localctx = new EqualityexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_equalityexpression); - this.state = 880; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 881; - this.match(CPP14Parser.NotEqual); - this.state = 882; - this.relationalexpression(0); - } - break; - } + localctx = new EqualityexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_equalityexpression); + this.state = 880; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); } + this.state = 881; + this.match(CPP14Parser.NotEqual); + this.state = 882; + this.relationalexpression(0); + } + break; + } } - this.state = 887; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 64, this._ctx); } + this.state = 887; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 64, this._ctx); + } } } catch (re) { @@ -3040,39 +3040,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 889; + { + this.state = 889; + this.equalityexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 896; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 65, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new AndexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_andexpression); + this.state = 891; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 892; + this.match(CPP14Parser.And); + this.state = 893; this.equalityexpression(0); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 896; + this.state = 898; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 65, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new AndexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_andexpression); - this.state = 891; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 892; - this.match(CPP14Parser.And); - this.state = 893; - this.equalityexpression(0); - } - } - } - this.state = 898; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 65, this._ctx); - } + } } } catch (re) { @@ -3107,39 +3107,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 900; + { + this.state = 900; + this.andexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 907; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 66, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new ExclusiveorexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_exclusiveorexpression); + this.state = 902; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 903; + this.match(CPP14Parser.Caret); + this.state = 904; this.andexpression(0); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 907; + this.state = 909; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 66, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new ExclusiveorexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_exclusiveorexpression); - this.state = 902; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 903; - this.match(CPP14Parser.Caret); - this.state = 904; - this.andexpression(0); - } - } - } - this.state = 909; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 66, this._ctx); - } + } } } catch (re) { @@ -3174,39 +3174,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 911; + { + this.state = 911; + this.exclusiveorexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 918; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 67, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new InclusiveorexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_inclusiveorexpression); + this.state = 913; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 914; + this.match(CPP14Parser.Or); + this.state = 915; this.exclusiveorexpression(0); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 918; + this.state = 920; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 67, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new InclusiveorexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_inclusiveorexpression); - this.state = 913; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 914; - this.match(CPP14Parser.Or); - this.state = 915; - this.exclusiveorexpression(0); - } - } - } - this.state = 920; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 67, this._ctx); - } + } } } catch (re) { @@ -3241,39 +3241,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 922; + { + this.state = 922; + this.inclusiveorexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 929; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 68, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new LogicalandexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_logicalandexpression); + this.state = 924; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 925; + this.match(CPP14Parser.AndAnd); + this.state = 926; this.inclusiveorexpression(0); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 929; + this.state = 931; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 68, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new LogicalandexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_logicalandexpression); - this.state = 924; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 925; - this.match(CPP14Parser.AndAnd); - this.state = 926; - this.inclusiveorexpression(0); - } - } - } - this.state = 931; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 68, this._ctx); - } + } } } catch (re) { @@ -3308,39 +3308,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 933; + { + this.state = 933; + this.logicalandexpression(0); + } + this._ctx.stop = this._input.LT(-1); + this.state = 940; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 69, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new LogicalorexpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_logicalorexpression); + this.state = 935; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 936; + this.match(CPP14Parser.OrOr); + this.state = 937; this.logicalandexpression(0); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 940; + this.state = 942; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 69, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new LogicalorexpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_logicalorexpression); - this.state = 935; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 936; - this.match(CPP14Parser.OrOr); - this.state = 937; - this.logicalandexpression(0); - } - } - } - this.state = 942; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 69, this._ctx); - } + } } } catch (re) { @@ -3363,29 +3363,29 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 950; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 70, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 943; - this.logicalorexpression(0); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 944; - this.logicalorexpression(0); - this.state = 945; - this.match(CPP14Parser.Question); - this.state = 946; - this.expression(0); - this.state = 947; - this.match(CPP14Parser.Colon); - this.state = 948; - this.assignmentexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 70, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 943; + this.logicalorexpression(0); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 944; + this.logicalorexpression(0); + this.state = 945; + this.match(CPP14Parser.Question); + this.state = 946; + this.expression(0); + this.state = 947; + this.match(CPP14Parser.Colon); + this.state = 948; + this.assignmentexpression(); + } + break; } } catch (re) { @@ -3408,32 +3408,32 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 958; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 71, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 952; - this.conditionalexpression(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 953; - this.logicalorexpression(0); - this.state = 954; - this.assignmentoperator(); - this.state = 955; - this.initializerclause(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 957; - this.throwexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 71, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 952; + this.conditionalexpression(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 953; + this.logicalorexpression(0); + this.state = 954; + this.assignmentoperator(); + this.state = 955; + this.initializerclause(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 957; + this.throwexpression(); + } + break; } } catch (re) { @@ -3457,85 +3457,85 @@ export class CPP14Parser extends antlr.Parser { this.state = 971; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Assign: - this.enterOuterAlt(localctx, 1); - { - this.state = 960; - this.match(CPP14Parser.Assign); - } - break; - case CPP14Parser.StarAssign: - this.enterOuterAlt(localctx, 2); - { - this.state = 961; - this.match(CPP14Parser.StarAssign); - } - break; - case CPP14Parser.DivAssign: - this.enterOuterAlt(localctx, 3); - { - this.state = 962; - this.match(CPP14Parser.DivAssign); - } - break; - case CPP14Parser.ModAssign: - this.enterOuterAlt(localctx, 4); - { - this.state = 963; - this.match(CPP14Parser.ModAssign); - } - break; - case CPP14Parser.PlusAssign: - this.enterOuterAlt(localctx, 5); - { - this.state = 964; - this.match(CPP14Parser.PlusAssign); - } - break; - case CPP14Parser.MinusAssign: - this.enterOuterAlt(localctx, 6); - { - this.state = 965; - this.match(CPP14Parser.MinusAssign); - } - break; - case CPP14Parser.Greater: - this.enterOuterAlt(localctx, 7); - { - this.state = 966; - this.rightShiftAssign(); - } - break; - case CPP14Parser.LeftShiftAssign: - this.enterOuterAlt(localctx, 8); - { - this.state = 967; - this.match(CPP14Parser.LeftShiftAssign); - } - break; - case CPP14Parser.AndAssign: - this.enterOuterAlt(localctx, 9); - { - this.state = 968; - this.match(CPP14Parser.AndAssign); - } - break; - case CPP14Parser.XorAssign: - this.enterOuterAlt(localctx, 10); - { - this.state = 969; - this.match(CPP14Parser.XorAssign); - } - break; - case CPP14Parser.OrAssign: - this.enterOuterAlt(localctx, 11); - { - this.state = 970; - this.match(CPP14Parser.OrAssign); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Assign: + this.enterOuterAlt(localctx, 1); + { + this.state = 960; + this.match(CPP14Parser.Assign); + } + break; + case CPP14Parser.StarAssign: + this.enterOuterAlt(localctx, 2); + { + this.state = 961; + this.match(CPP14Parser.StarAssign); + } + break; + case CPP14Parser.DivAssign: + this.enterOuterAlt(localctx, 3); + { + this.state = 962; + this.match(CPP14Parser.DivAssign); + } + break; + case CPP14Parser.ModAssign: + this.enterOuterAlt(localctx, 4); + { + this.state = 963; + this.match(CPP14Parser.ModAssign); + } + break; + case CPP14Parser.PlusAssign: + this.enterOuterAlt(localctx, 5); + { + this.state = 964; + this.match(CPP14Parser.PlusAssign); + } + break; + case CPP14Parser.MinusAssign: + this.enterOuterAlt(localctx, 6); + { + this.state = 965; + this.match(CPP14Parser.MinusAssign); + } + break; + case CPP14Parser.Greater: + this.enterOuterAlt(localctx, 7); + { + this.state = 966; + this.rightShiftAssign(); + } + break; + case CPP14Parser.LeftShiftAssign: + this.enterOuterAlt(localctx, 8); + { + this.state = 967; + this.match(CPP14Parser.LeftShiftAssign); + } + break; + case CPP14Parser.AndAssign: + this.enterOuterAlt(localctx, 9); + { + this.state = 968; + this.match(CPP14Parser.AndAssign); + } + break; + case CPP14Parser.XorAssign: + this.enterOuterAlt(localctx, 10); + { + this.state = 969; + this.match(CPP14Parser.XorAssign); + } + break; + case CPP14Parser.OrAssign: + this.enterOuterAlt(localctx, 11); + { + this.state = 970; + this.match(CPP14Parser.OrAssign); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -3570,39 +3570,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 974; + { + this.state = 974; + this.assignmentexpression(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 981; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 73, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new ExpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_expression); + this.state = 976; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 977; + this.match(CPP14Parser.Comma); + this.state = 978; this.assignmentexpression(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 981; + this.state = 983; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 73, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new ExpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_expression); - this.state = 976; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 977; - this.match(CPP14Parser.Comma); - this.state = 978; - this.assignmentexpression(); - } - } - } - this.state = 983; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 73, this._ctx); - } + } } } catch (re) { @@ -3625,8 +3625,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 984; - this.conditionalexpression(); + this.state = 984; + this.conditionalexpression(); } } catch (re) { @@ -3650,123 +3650,123 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1012; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 80, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 80, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 986; + this.labeledstatement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 988; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 74, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 986; - this.labeledstatement(); + this.state = 987; + this.attributespecifierseq(0); } break; - case 2: - this.enterOuterAlt(localctx, 2); + } + this.state = 990; + this.expressionstatement(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 992; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 988; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 74, this._ctx)) { - case 1: - { - this.state = 987; - this.attributespecifierseq(0); - } - break; - } - this.state = 990; - this.expressionstatement(); + this.state = 991; + this.attributespecifierseq(0); } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 992; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 991; - this.attributespecifierseq(0); - } - } + } - this.state = 994; - this.compoundstatement(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); + this.state = 994; + this.compoundstatement(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 996; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 996; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 995; - this.attributespecifierseq(0); - } - } - - this.state = 998; - this.selectionstatement(); + this.state = 995; + this.attributespecifierseq(0); } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1000; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 999; - this.attributespecifierseq(0); - } - } + } - this.state = 1002; - this.iterationstatement(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); + this.state = 998; + this.selectionstatement(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1000; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1004; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1003; - this.attributespecifierseq(0); - } - } - - this.state = 1006; - this.jumpstatement(); + this.state = 999; + this.attributespecifierseq(0); } - break; - case 7: - this.enterOuterAlt(localctx, 7); + } + + this.state = 1002; + this.iterationstatement(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 1004; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1007; - this.declarationstatement(); + this.state = 1003; + this.attributespecifierseq(0); } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 1009; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1008; - this.attributespecifierseq(0); - } - } + } - this.state = 1011; - this.tryblock(); + this.state = 1006; + this.jumpstatement(); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 1007; + this.declarationstatement(); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 1009; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1008; + this.attributespecifierseq(0); } - break; + } + + this.state = 1011; + this.tryblock(); + } + break; } } catch (re) { @@ -3790,72 +3790,72 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1034; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 84, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 84, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1015; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1015; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1014; - this.attributespecifierseq(0); - } - } - - this.state = 1017; - this.match(CPP14Parser.Identifier); - this.state = 1018; - this.match(CPP14Parser.Colon); - this.state = 1019; - this.statement(); + this.state = 1014; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1021; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1020; - this.attributespecifierseq(0); - } - } + } - this.state = 1023; - this.match(CPP14Parser.Case); - this.state = 1024; - this.constantexpression(); - this.state = 1025; - this.match(CPP14Parser.Colon); - this.state = 1026; - this.statement(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); + this.state = 1017; + this.match(CPP14Parser.Identifier); + this.state = 1018; + this.match(CPP14Parser.Colon); + this.state = 1019; + this.statement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1021; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1029; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1028; - this.attributespecifierseq(0); - } - } + this.state = 1020; + this.attributespecifierseq(0); + } + } - this.state = 1031; - this.match(CPP14Parser.Default); - this.state = 1032; - this.match(CPP14Parser.Colon); - this.state = 1033; - this.statement(); + this.state = 1023; + this.match(CPP14Parser.Case); + this.state = 1024; + this.constantexpression(); + this.state = 1025; + this.match(CPP14Parser.Colon); + this.state = 1026; + this.statement(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1029; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1028; + this.attributespecifierseq(0); } - break; + } + + this.state = 1031; + this.match(CPP14Parser.Default); + this.state = 1032; + this.match(CPP14Parser.Colon); + this.state = 1033; + this.statement(); + } + break; } } catch (re) { @@ -3879,18 +3879,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1037; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1036; - this.expression(0); - } + this.state = 1037; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 1036; + this.expression(0); } + } - this.state = 1039; - this.match(CPP14Parser.Semi); + this.state = 1039; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -3914,20 +3914,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1041; - this.match(CPP14Parser.LeftBrace); - this.state = 1043; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1845492728) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3757850623) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014333439) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 266397197) !== 0)) { - { - this.state = 1042; - this.statementseq(0); - } + this.state = 1041; + this.match(CPP14Parser.LeftBrace); + this.state = 1043; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1845492728) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3757850623) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014333439) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 266397197) !== 0)) { + { + this.state = 1042; + this.statementseq(0); } + } - this.state = 1045; - this.match(CPP14Parser.RightBrace); + this.state = 1045; + this.match(CPP14Parser.RightBrace); } } catch (re) { @@ -3962,37 +3962,37 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1048; + { + this.state = 1048; + this.statement(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1054; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 87, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new StatementseqContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_statementseq); + this.state = 1050; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1051; this.statement(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1054; + this.state = 1056; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 87, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new StatementseqContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_statementseq); - this.state = 1050; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1051; - this.statement(); - } - } - } - this.state = 1056; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 87, this._ctx); - } + } } } catch (re) { @@ -4015,56 +4015,56 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1077; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 88, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1057; - this.match(CPP14Parser.If); - this.state = 1058; - this.match(CPP14Parser.LeftParen); - this.state = 1059; - this.condition(); - this.state = 1060; - this.match(CPP14Parser.RightParen); - this.state = 1061; - this.statement(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1063; - this.match(CPP14Parser.If); - this.state = 1064; - this.match(CPP14Parser.LeftParen); - this.state = 1065; - this.condition(); - this.state = 1066; - this.match(CPP14Parser.RightParen); - this.state = 1067; - this.statement(); - this.state = 1068; - this.match(CPP14Parser.Else); - this.state = 1069; - this.statement(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1071; - this.match(CPP14Parser.Switch); - this.state = 1072; - this.match(CPP14Parser.LeftParen); - this.state = 1073; - this.condition(); - this.state = 1074; - this.match(CPP14Parser.RightParen); - this.state = 1075; - this.statement(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 88, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1057; + this.match(CPP14Parser.If); + this.state = 1058; + this.match(CPP14Parser.LeftParen); + this.state = 1059; + this.condition(); + this.state = 1060; + this.match(CPP14Parser.RightParen); + this.state = 1061; + this.statement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1063; + this.match(CPP14Parser.If); + this.state = 1064; + this.match(CPP14Parser.LeftParen); + this.state = 1065; + this.condition(); + this.state = 1066; + this.match(CPP14Parser.RightParen); + this.state = 1067; + this.statement(); + this.state = 1068; + this.match(CPP14Parser.Else); + this.state = 1069; + this.statement(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1071; + this.match(CPP14Parser.Switch); + this.state = 1072; + this.match(CPP14Parser.LeftParen); + this.state = 1073; + this.condition(); + this.state = 1074; + this.match(CPP14Parser.RightParen); + this.state = 1075; + this.statement(); + } + break; } } catch (re) { @@ -4088,58 +4088,58 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1095; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 91, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 91, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1079; + this.expression(0); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1081; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1079; - this.expression(0); + this.state = 1080; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1081; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1080; - this.attributespecifierseq(0); - } - } + } - this.state = 1083; - this.declspecifierseq(); - this.state = 1084; - this.declarator(); - this.state = 1085; - this.match(CPP14Parser.Assign); - this.state = 1086; - this.initializerclause(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); + this.state = 1083; + this.declspecifierseq(); + this.state = 1084; + this.declarator(); + this.state = 1085; + this.match(CPP14Parser.Assign); + this.state = 1086; + this.initializerclause(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1089; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1089; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1088; - this.attributespecifierseq(0); - } - } - - this.state = 1091; - this.declspecifierseq(); - this.state = 1092; - this.declarator(); - this.state = 1093; - this.bracedinitlist(); + this.state = 1088; + this.attributespecifierseq(0); } - break; + } + + this.state = 1091; + this.declspecifierseq(); + this.state = 1092; + this.declarator(); + this.state = 1093; + this.bracedinitlist(); + } + break; } } catch (re) { @@ -4163,97 +4163,97 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1132; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 94, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1097; - this.match(CPP14Parser.While); - this.state = 1098; - this.match(CPP14Parser.LeftParen); - this.state = 1099; - this.condition(); - this.state = 1100; - this.match(CPP14Parser.RightParen); - this.state = 1101; - this.statement(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 94, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1097; + this.match(CPP14Parser.While); + this.state = 1098; + this.match(CPP14Parser.LeftParen); + this.state = 1099; + this.condition(); + this.state = 1100; + this.match(CPP14Parser.RightParen); + this.state = 1101; + this.statement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1103; + this.match(CPP14Parser.Do); + this.state = 1104; + this.statement(); + this.state = 1105; + this.match(CPP14Parser.While); + this.state = 1106; + this.match(CPP14Parser.LeftParen); + this.state = 1107; + this.expression(0); + this.state = 1108; + this.match(CPP14Parser.RightParen); + this.state = 1109; + this.match(CPP14Parser.Semi); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1111; + this.match(CPP14Parser.For); + this.state = 1112; + this.match(CPP14Parser.LeftParen); + this.state = 1113; + this.forinitstatement(); + this.state = 1115; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1839986904) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3454811621) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014062843) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 1103; - this.match(CPP14Parser.Do); - this.state = 1104; - this.statement(); - this.state = 1105; - this.match(CPP14Parser.While); - this.state = 1106; - this.match(CPP14Parser.LeftParen); - this.state = 1107; - this.expression(0); - this.state = 1108; - this.match(CPP14Parser.RightParen); - this.state = 1109; - this.match(CPP14Parser.Semi); + this.state = 1114; + this.condition(); } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1111; - this.match(CPP14Parser.For); - this.state = 1112; - this.match(CPP14Parser.LeftParen); - this.state = 1113; - this.forinitstatement(); - this.state = 1115; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1839986904) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3454811621) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014062843) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1114; - this.condition(); - } - } - - this.state = 1117; - this.match(CPP14Parser.Semi); - this.state = 1119; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1118; - this.expression(0); - } - } + } - this.state = 1121; - this.match(CPP14Parser.RightParen); - this.state = 1122; - this.statement(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); + this.state = 1117; + this.match(CPP14Parser.Semi); + this.state = 1119; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 1124; - this.match(CPP14Parser.For); - this.state = 1125; - this.match(CPP14Parser.LeftParen); - this.state = 1126; - this.forrangedeclaration(); - this.state = 1127; - this.match(CPP14Parser.Colon); - this.state = 1128; - this.forrangeinitializer(); - this.state = 1129; - this.match(CPP14Parser.RightParen); - this.state = 1130; - this.statement(); + this.state = 1118; + this.expression(0); } - break; + } + + this.state = 1121; + this.match(CPP14Parser.RightParen); + this.state = 1122; + this.statement(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1124; + this.match(CPP14Parser.For); + this.state = 1125; + this.match(CPP14Parser.LeftParen); + this.state = 1126; + this.forrangedeclaration(); + this.state = 1127; + this.match(CPP14Parser.Colon); + this.state = 1128; + this.forrangeinitializer(); + this.state = 1129; + this.match(CPP14Parser.RightParen); + this.state = 1130; + this.statement(); + } + break; } } catch (re) { @@ -4276,21 +4276,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1136; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 95, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1134; - this.expressionstatement(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1135; - this.simpledeclaration(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 95, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1134; + this.expressionstatement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1135; + this.simpledeclaration(); + } + break; } } catch (re) { @@ -4314,20 +4314,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1139; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1138; - this.attributespecifierseq(0); - } + this.state = 1139; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1138; + this.attributespecifierseq(0); } + } - this.state = 1141; - this.declspecifierseq(); - this.state = 1142; - this.declarator(); + this.state = 1141; + this.declspecifierseq(); + this.state = 1142; + this.declarator(); } } catch (re) { @@ -4351,74 +4351,74 @@ export class CPP14Parser extends antlr.Parser { this.state = 1146; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Alignof: - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Const_cast: - case CPP14Parser.Decltype: - case CPP14Parser.Delete: - case CPP14Parser.Double: - case CPP14Parser.Dynamic_cast: - case CPP14Parser.False: - case CPP14Parser.Float: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.New: - case CPP14Parser.Noexcept: - case CPP14Parser.Nullptr: - case CPP14Parser.Operator: - case CPP14Parser.Reinterpret_cast: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Sizeof: - case CPP14Parser.Static_cast: - case CPP14Parser.This: - case CPP14Parser.Throw: - case CPP14Parser.True: - case CPP14Parser.Typeid: - case CPP14Parser.Typename: - case CPP14Parser.Unsigned: - case CPP14Parser.Void: - case CPP14Parser.Wchar: - case CPP14Parser.LeftParen: - case CPP14Parser.LeftBracket: - case CPP14Parser.Plus: - case CPP14Parser.Minus: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.Or: - case CPP14Parser.Tilde: - case CPP14Parser.Not: - case CPP14Parser.PlusPlus: - case CPP14Parser.MinusMinus: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - case CPP14Parser.Integerliteral: - case CPP14Parser.Characterliteral: - case CPP14Parser.Floatingliteral: - case CPP14Parser.Stringliteral: - case CPP14Parser.Userdefinedintegerliteral: - case CPP14Parser.Userdefinedfloatingliteral: - case CPP14Parser.Userdefinedstringliteral: - case CPP14Parser.Userdefinedcharacterliteral: - this.enterOuterAlt(localctx, 1); - { - this.state = 1144; - this.expression(0); - } - break; - case CPP14Parser.LeftBrace: - this.enterOuterAlt(localctx, 2); - { - this.state = 1145; - this.bracedinitlist(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Alignof: + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Const_cast: + case CPP14Parser.Decltype: + case CPP14Parser.Delete: + case CPP14Parser.Double: + case CPP14Parser.Dynamic_cast: + case CPP14Parser.False: + case CPP14Parser.Float: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.New: + case CPP14Parser.Noexcept: + case CPP14Parser.Nullptr: + case CPP14Parser.Operator: + case CPP14Parser.Reinterpret_cast: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Sizeof: + case CPP14Parser.Static_cast: + case CPP14Parser.This: + case CPP14Parser.Throw: + case CPP14Parser.True: + case CPP14Parser.Typeid: + case CPP14Parser.Typename: + case CPP14Parser.Unsigned: + case CPP14Parser.Void: + case CPP14Parser.Wchar: + case CPP14Parser.LeftParen: + case CPP14Parser.LeftBracket: + case CPP14Parser.Plus: + case CPP14Parser.Minus: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.Or: + case CPP14Parser.Tilde: + case CPP14Parser.Not: + case CPP14Parser.PlusPlus: + case CPP14Parser.MinusMinus: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + case CPP14Parser.Integerliteral: + case CPP14Parser.Characterliteral: + case CPP14Parser.Floatingliteral: + case CPP14Parser.Stringliteral: + case CPP14Parser.Userdefinedintegerliteral: + case CPP14Parser.Userdefinedfloatingliteral: + case CPP14Parser.Userdefinedstringliteral: + case CPP14Parser.Userdefinedcharacterliteral: + this.enterOuterAlt(localctx, 1); + { + this.state = 1144; + this.expression(0); + } + break; + case CPP14Parser.LeftBrace: + this.enterOuterAlt(localctx, 2); + { + this.state = 1145; + this.bracedinitlist(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -4442,66 +4442,66 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1164; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 99, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1148; - this.match(CPP14Parser.Break); - this.state = 1149; - this.match(CPP14Parser.Semi); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 99, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1148; + this.match(CPP14Parser.Break); + this.state = 1149; + this.match(CPP14Parser.Semi); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1150; + this.match(CPP14Parser.Continue); + this.state = 1151; + this.match(CPP14Parser.Semi); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1152; + this.match(CPP14Parser.Return); + this.state = 1154; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 1150; - this.match(CPP14Parser.Continue); - this.state = 1151; - this.match(CPP14Parser.Semi); + this.state = 1153; + this.expression(0); } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1152; - this.match(CPP14Parser.Return); - this.state = 1154; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014060211) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1153; - this.expression(0); - } - } + } - this.state = 1156; - this.match(CPP14Parser.Semi); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1157; - this.match(CPP14Parser.Return); - this.state = 1158; - this.bracedinitlist(); - this.state = 1159; - this.match(CPP14Parser.Semi); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1161; - this.match(CPP14Parser.Goto); - this.state = 1162; - this.match(CPP14Parser.Identifier); - this.state = 1163; - this.match(CPP14Parser.Semi); - } - break; + this.state = 1156; + this.match(CPP14Parser.Semi); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1157; + this.match(CPP14Parser.Return); + this.state = 1158; + this.bracedinitlist(); + this.state = 1159; + this.match(CPP14Parser.Semi); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1161; + this.match(CPP14Parser.Goto); + this.state = 1162; + this.match(CPP14Parser.Identifier); + this.state = 1163; + this.match(CPP14Parser.Semi); + } + break; } } catch (re) { @@ -4524,8 +4524,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1166; - this.blockdeclaration(); + this.state = 1166; + this.blockdeclaration(); } } catch (re) { @@ -4560,37 +4560,37 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1169; + { + this.state = 1169; + this.declaration(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1175; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 100, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new DeclarationseqContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_declarationseq); + this.state = 1171; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1172; this.declaration(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1175; + this.state = 1177; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 100, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new DeclarationseqContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_declarationseq); - this.state = 1171; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1172; - this.declaration(); - } - } - } - this.state = 1177; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 100, this._ctx); - } + } } } catch (re) { @@ -4613,70 +4613,70 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1187; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 101, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1178; - this.blockdeclaration(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1179; - this.functiondefinition(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1180; - this.templatedeclaration(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1181; - this.explicitinstantiation(); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1182; - this.explicitspecialization(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 1183; - this.linkagespecification(); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 1184; - this.namespacedefinition(); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 1185; - this.emptydeclaration(); - } - break; - case 9: - this.enterOuterAlt(localctx, 9); - { - this.state = 1186; - this.attributedeclaration(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 101, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1178; + this.blockdeclaration(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1179; + this.functiondefinition(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1180; + this.templatedeclaration(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1181; + this.explicitinstantiation(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1182; + this.explicitspecialization(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 1183; + this.linkagespecification(); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 1184; + this.namespacedefinition(); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 1185; + this.emptydeclaration(); + } + break; + case 9: + this.enterOuterAlt(localctx, 9); + { + this.state = 1186; + this.attributedeclaration(); + } + break; } } catch (re) { @@ -4699,63 +4699,63 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1197; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 102, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1189; - this.simpledeclaration(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1190; - this.asmdefinition(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1191; - this.namespacealiasdefinition(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1192; - this.usingdeclaration(); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1193; - this.usingdirective(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 1194; - this.static_assertdeclaration(); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 1195; - this.aliasdeclaration(); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 1196; - this.opaqueenumdeclaration(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 102, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1189; + this.simpledeclaration(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1190; + this.asmdefinition(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1191; + this.namespacealiasdefinition(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1192; + this.usingdeclaration(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1193; + this.usingdirective(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 1194; + this.static_assertdeclaration(); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 1195; + this.aliasdeclaration(); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 1196; + this.opaqueenumdeclaration(); + } + break; } } catch (re) { @@ -4779,26 +4779,26 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1199; - this.match(CPP14Parser.Using); - this.state = 1200; - this.match(CPP14Parser.Identifier); - this.state = 1202; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1201; - this.attributespecifierseq(0); - } + this.state = 1199; + this.match(CPP14Parser.Using); + this.state = 1200; + this.match(CPP14Parser.Identifier); + this.state = 1202; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1201; + this.attributespecifierseq(0); } + } - this.state = 1204; - this.match(CPP14Parser.Assign); - this.state = 1205; - this.typeid(); - this.state = 1206; - this.match(CPP14Parser.Semi); + this.state = 1204; + this.match(CPP14Parser.Assign); + this.state = 1205; + this.typeid(); + this.state = 1206; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -4823,99 +4823,99 @@ export class CPP14Parser extends antlr.Parser { this.state = 1222; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Class: - case CPP14Parser.Const: - case CPP14Parser.Constexpr: - case CPP14Parser.Decltype: - case CPP14Parser.Double: - case CPP14Parser.Enum: - case CPP14Parser.Explicit: - case CPP14Parser.Extern: - case CPP14Parser.Float: - case CPP14Parser.Friend: - case CPP14Parser.Inline: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.Mutable: - case CPP14Parser.Operator: - case CPP14Parser.Register: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Static: - case CPP14Parser.Struct: - case CPP14Parser.Thread_local: - case CPP14Parser.Typedef: - case CPP14Parser.Typename: - case CPP14Parser.Union: - case CPP14Parser.Unsigned: - case CPP14Parser.Virtual: - case CPP14Parser.Void: - case CPP14Parser.Volatile: - case CPP14Parser.Wchar: - case CPP14Parser.LeftParen: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.Tilde: - case CPP14Parser.AndAnd: - case CPP14Parser.Doublecolon: - case CPP14Parser.Semi: - case CPP14Parser.Ellipsis: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Class: + case CPP14Parser.Const: + case CPP14Parser.Constexpr: + case CPP14Parser.Decltype: + case CPP14Parser.Double: + case CPP14Parser.Enum: + case CPP14Parser.Explicit: + case CPP14Parser.Extern: + case CPP14Parser.Float: + case CPP14Parser.Friend: + case CPP14Parser.Inline: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.Mutable: + case CPP14Parser.Operator: + case CPP14Parser.Register: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Static: + case CPP14Parser.Struct: + case CPP14Parser.Thread_local: + case CPP14Parser.Typedef: + case CPP14Parser.Typename: + case CPP14Parser.Union: + case CPP14Parser.Unsigned: + case CPP14Parser.Virtual: + case CPP14Parser.Void: + case CPP14Parser.Volatile: + case CPP14Parser.Wchar: + case CPP14Parser.LeftParen: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.Tilde: + case CPP14Parser.AndAnd: + case CPP14Parser.Doublecolon: + case CPP14Parser.Semi: + case CPP14Parser.Ellipsis: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 1209; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 104, this._ctx) ) { + case 1: { - this.state = 1209; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 104, this._ctx)) { - case 1: - { - this.state = 1208; - this.declspecifierseq(); - } - break; - } - this.state = 1212; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 19 || _la === 45 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 20737) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { - { - this.state = 1211; - this.initdeclaratorlist(0); - } - } - - this.state = 1214; - this.match(CPP14Parser.Semi); + this.state = 1208; + this.declspecifierseq(); } break; - case CPP14Parser.Alignas: - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 2); + } + this.state = 1212; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===19 || _la===45 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 20737) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { { - this.state = 1215; - this.attributespecifierseq(0); - this.state = 1217; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 106, this._ctx)) { - case 1: - { - this.state = 1216; - this.declspecifierseq(); - } - break; - } - this.state = 1219; - this.initdeclaratorlist(0); - this.state = 1220; - this.match(CPP14Parser.Semi); + this.state = 1211; + this.initdeclaratorlist(0); + } + } + + this.state = 1214; + this.match(CPP14Parser.Semi); + } + break; + case CPP14Parser.Alignas: + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 2); + { + this.state = 1215; + this.attributespecifierseq(0); + this.state = 1217; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 106, this._ctx) ) { + case 1: + { + this.state = 1216; + this.declspecifierseq(); } break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 1219; + this.initdeclaratorlist(0); + this.state = 1220; + this.match(CPP14Parser.Semi); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -4938,20 +4938,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1224; - this.match(CPP14Parser.Static_assert); - this.state = 1225; - this.match(CPP14Parser.LeftParen); - this.state = 1226; - this.constantexpression(); - this.state = 1227; - this.match(CPP14Parser.Comma); - this.state = 1228; - this.match(CPP14Parser.Stringliteral); - this.state = 1229; - this.match(CPP14Parser.RightParen); - this.state = 1230; - this.match(CPP14Parser.Semi); + this.state = 1224; + this.match(CPP14Parser.Static_assert); + this.state = 1225; + this.match(CPP14Parser.LeftParen); + this.state = 1226; + this.constantexpression(); + this.state = 1227; + this.match(CPP14Parser.Comma); + this.state = 1228; + this.match(CPP14Parser.Stringliteral); + this.state = 1229; + this.match(CPP14Parser.RightParen); + this.state = 1230; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -4974,8 +4974,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1232; - this.match(CPP14Parser.Semi); + this.state = 1232; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -4998,10 +4998,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1234; - this.attributespecifierseq(0); - this.state = 1235; - this.match(CPP14Parser.Semi); + this.state = 1234; + this.attributespecifierseq(0); + this.state = 1235; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -5025,79 +5025,79 @@ export class CPP14Parser extends antlr.Parser { this.state = 1243; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Extern: - case CPP14Parser.Mutable: - case CPP14Parser.Register: - case CPP14Parser.Static: - case CPP14Parser.Thread_local: - this.enterOuterAlt(localctx, 1); - { - this.state = 1237; - this.storageclassspecifier(); - } - break; - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Class: - case CPP14Parser.Const: - case CPP14Parser.Decltype: - case CPP14Parser.Double: - case CPP14Parser.Enum: - case CPP14Parser.Float: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Struct: - case CPP14Parser.Typename: - case CPP14Parser.Union: - case CPP14Parser.Unsigned: - case CPP14Parser.Void: - case CPP14Parser.Volatile: - case CPP14Parser.Wchar: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 2); - { - this.state = 1238; - this.typespecifier(); - } - break; - case CPP14Parser.Explicit: - case CPP14Parser.Inline: - case CPP14Parser.Virtual: - this.enterOuterAlt(localctx, 3); - { - this.state = 1239; - this.functionspecifier(); - } - break; - case CPP14Parser.Friend: - this.enterOuterAlt(localctx, 4); - { - this.state = 1240; - this.match(CPP14Parser.Friend); - } - break; - case CPP14Parser.Typedef: - this.enterOuterAlt(localctx, 5); - { - this.state = 1241; - this.match(CPP14Parser.Typedef); - } - break; - case CPP14Parser.Constexpr: - this.enterOuterAlt(localctx, 6); - { - this.state = 1242; - this.match(CPP14Parser.Constexpr); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Extern: + case CPP14Parser.Mutable: + case CPP14Parser.Register: + case CPP14Parser.Static: + case CPP14Parser.Thread_local: + this.enterOuterAlt(localctx, 1); + { + this.state = 1237; + this.storageclassspecifier(); + } + break; + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Class: + case CPP14Parser.Const: + case CPP14Parser.Decltype: + case CPP14Parser.Double: + case CPP14Parser.Enum: + case CPP14Parser.Float: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Struct: + case CPP14Parser.Typename: + case CPP14Parser.Union: + case CPP14Parser.Unsigned: + case CPP14Parser.Void: + case CPP14Parser.Volatile: + case CPP14Parser.Wchar: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 2); + { + this.state = 1238; + this.typespecifier(); + } + break; + case CPP14Parser.Explicit: + case CPP14Parser.Inline: + case CPP14Parser.Virtual: + this.enterOuterAlt(localctx, 3); + { + this.state = 1239; + this.functionspecifier(); + } + break; + case CPP14Parser.Friend: + this.enterOuterAlt(localctx, 4); + { + this.state = 1240; + this.match(CPP14Parser.Friend); + } + break; + case CPP14Parser.Typedef: + this.enterOuterAlt(localctx, 5); + { + this.state = 1241; + this.match(CPP14Parser.Typedef); + } + break; + case CPP14Parser.Constexpr: + this.enterOuterAlt(localctx, 6); + { + this.state = 1242; + this.match(CPP14Parser.Constexpr); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -5120,33 +5120,33 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1252; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 110, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 110, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1245; + this.declspecifier(); + this.state = 1247; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 109, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1245; - this.declspecifier(); - this.state = 1247; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 109, this._ctx)) { - case 1: - { - this.state = 1246; - this.attributespecifierseq(0); - } - break; - } - } - break; - case 2: - this.enterOuterAlt(localctx, 2); { - this.state = 1249; - this.declspecifier(); - this.state = 1250; - this.declspecifierseq(); + this.state = 1246; + this.attributespecifierseq(0); } break; + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1249; + this.declspecifier(); + this.state = 1250; + this.declspecifierseq(); + } + break; } } catch (re) { @@ -5170,15 +5170,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1254; - _la = this._input.LA(1); - if (!(_la === 29 || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 8455169) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1254; + _la = this._input.LA(1); + if(!(_la===29 || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 8455169) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -5202,15 +5202,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1256; - _la = this._input.LA(1); - if (!(_la === 27 || _la === 37 || _la === 73)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1256; + _la = this._input.LA(1); + if(!(_la===27 || _la===37 || _la===73)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -5233,8 +5233,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1258; - this.match(CPP14Parser.Identifier); + this.state = 1258; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -5257,28 +5257,28 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1263; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 111, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1260; - this.trailingtypespecifier(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1261; - this.classspecifier(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1262; - this.enumspecifier(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 111, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1260; + this.trailingtypespecifier(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1261; + this.classspecifier(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1262; + this.enumspecifier(); + } + break; } } catch (re) { @@ -5302,56 +5302,56 @@ export class CPP14Parser extends antlr.Parser { this.state = 1269; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Decltype: - case CPP14Parser.Double: - case CPP14Parser.Float: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Unsigned: - case CPP14Parser.Void: - case CPP14Parser.Wchar: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); - { - this.state = 1265; - this.simpletypespecifier(); - } - break; - case CPP14Parser.Class: - case CPP14Parser.Enum: - case CPP14Parser.Struct: - case CPP14Parser.Union: - this.enterOuterAlt(localctx, 2); - { - this.state = 1266; - this.elaboratedtypespecifier(); - } - break; - case CPP14Parser.Typename: - this.enterOuterAlt(localctx, 3); - { - this.state = 1267; - this.typenamespecifier(); - } - break; - case CPP14Parser.Const: - case CPP14Parser.Volatile: - this.enterOuterAlt(localctx, 4); - { - this.state = 1268; - this.cvqualifier(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Decltype: + case CPP14Parser.Double: + case CPP14Parser.Float: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Unsigned: + case CPP14Parser.Void: + case CPP14Parser.Wchar: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 1265; + this.simpletypespecifier(); + } + break; + case CPP14Parser.Class: + case CPP14Parser.Enum: + case CPP14Parser.Struct: + case CPP14Parser.Union: + this.enterOuterAlt(localctx, 2); + { + this.state = 1266; + this.elaboratedtypespecifier(); + } + break; + case CPP14Parser.Typename: + this.enterOuterAlt(localctx, 3); + { + this.state = 1267; + this.typenamespecifier(); + } + break; + case CPP14Parser.Const: + case CPP14Parser.Volatile: + this.enterOuterAlt(localctx, 4); + { + this.state = 1268; + this.cvqualifier(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -5374,33 +5374,33 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1278; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 114, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 114, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1271; + this.typespecifier(); + this.state = 1273; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 113, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 1271; - this.typespecifier(); - this.state = 1273; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 113, this._ctx)) { - case 1: - { - this.state = 1272; - this.attributespecifierseq(0); - } - break; - } - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1275; - this.typespecifier(); - this.state = 1276; - this.typespecifierseq(); + this.state = 1272; + this.attributespecifierseq(0); } break; + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1275; + this.typespecifier(); + this.state = 1276; + this.typespecifierseq(); + } + break; } } catch (re) { @@ -5423,33 +5423,33 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1287; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 116, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 116, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1280; + this.trailingtypespecifier(); + this.state = 1282; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 115, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1280; - this.trailingtypespecifier(); - this.state = 1282; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 115, this._ctx)) { - case 1: - { - this.state = 1281; - this.attributespecifierseq(0); - } - break; - } - } - break; - case 2: - this.enterOuterAlt(localctx, 2); { - this.state = 1284; - this.trailingtypespecifier(); - this.state = 1285; - this.trailingtypespecifierseq(); + this.state = 1281; + this.attributespecifierseq(0); } break; + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1284; + this.trailingtypespecifier(); + this.state = 1285; + this.trailingtypespecifierseq(); + } + break; } } catch (re) { @@ -5472,140 +5472,140 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1312; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 118, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 118, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1290; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 117, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1290; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 117, this._ctx)) { - case 1: - { - this.state = 1289; - this.nestednamespecifier(0); - } - break; - } - this.state = 1292; - this.typename(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1293; - this.nestednamespecifier(0); - this.state = 1294; - this.match(CPP14Parser.Template); - this.state = 1295; - this.simpletemplateid(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); { - this.state = 1297; - this.match(CPP14Parser.Char); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1298; - this.match(CPP14Parser.Char16); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 1299; - this.match(CPP14Parser.Char32); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 1300; - this.match(CPP14Parser.Wchar); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 1301; - this.match(CPP14Parser.Bool); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 1302; - this.match(CPP14Parser.Short); - } - break; - case 9: - this.enterOuterAlt(localctx, 9); - { - this.state = 1303; - this.match(CPP14Parser.Int); - } - break; - case 10: - this.enterOuterAlt(localctx, 10); - { - this.state = 1304; - this.match(CPP14Parser.Long); - } - break; - case 11: - this.enterOuterAlt(localctx, 11); - { - this.state = 1305; - this.match(CPP14Parser.Signed); - } - break; - case 12: - this.enterOuterAlt(localctx, 12); - { - this.state = 1306; - this.match(CPP14Parser.Unsigned); - } - break; - case 13: - this.enterOuterAlt(localctx, 13); - { - this.state = 1307; - this.match(CPP14Parser.Float); - } - break; - case 14: - this.enterOuterAlt(localctx, 14); - { - this.state = 1308; - this.match(CPP14Parser.Double); - } - break; - case 15: - this.enterOuterAlt(localctx, 15); - { - this.state = 1309; - this.match(CPP14Parser.Void); - } - break; - case 16: - this.enterOuterAlt(localctx, 16); - { - this.state = 1310; - this.match(CPP14Parser.Auto); - } - break; - case 17: - this.enterOuterAlt(localctx, 17); - { - this.state = 1311; - this.decltypespecifier(); + this.state = 1289; + this.nestednamespecifier(0); } break; + } + this.state = 1292; + this.typename(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1293; + this.nestednamespecifier(0); + this.state = 1294; + this.match(CPP14Parser.Template); + this.state = 1295; + this.simpletemplateid(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1297; + this.match(CPP14Parser.Char); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1298; + this.match(CPP14Parser.Char16); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 1299; + this.match(CPP14Parser.Char32); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 1300; + this.match(CPP14Parser.Wchar); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 1301; + this.match(CPP14Parser.Bool); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 1302; + this.match(CPP14Parser.Short); + } + break; + case 9: + this.enterOuterAlt(localctx, 9); + { + this.state = 1303; + this.match(CPP14Parser.Int); + } + break; + case 10: + this.enterOuterAlt(localctx, 10); + { + this.state = 1304; + this.match(CPP14Parser.Long); + } + break; + case 11: + this.enterOuterAlt(localctx, 11); + { + this.state = 1305; + this.match(CPP14Parser.Signed); + } + break; + case 12: + this.enterOuterAlt(localctx, 12); + { + this.state = 1306; + this.match(CPP14Parser.Unsigned); + } + break; + case 13: + this.enterOuterAlt(localctx, 13); + { + this.state = 1307; + this.match(CPP14Parser.Float); + } + break; + case 14: + this.enterOuterAlt(localctx, 14); + { + this.state = 1308; + this.match(CPP14Parser.Double); + } + break; + case 15: + this.enterOuterAlt(localctx, 15); + { + this.state = 1309; + this.match(CPP14Parser.Void); + } + break; + case 16: + this.enterOuterAlt(localctx, 16); + { + this.state = 1310; + this.match(CPP14Parser.Auto); + } + break; + case 17: + this.enterOuterAlt(localctx, 17); + { + this.state = 1311; + this.decltypespecifier(); + } + break; } } catch (re) { @@ -5628,35 +5628,35 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1318; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 119, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1314; - this.classname(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1315; - this.enumname(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1316; - this.typedefname(); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 1317; - this.simpletemplateid(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 119, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1314; + this.classname(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1315; + this.enumname(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1316; + this.typedefname(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1317; + this.simpletemplateid(); + } + break; } } catch (re) { @@ -5679,33 +5679,33 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1329; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 120, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1320; - this.match(CPP14Parser.Decltype); - this.state = 1321; - this.match(CPP14Parser.LeftParen); - this.state = 1322; - this.expression(0); - this.state = 1323; - this.match(CPP14Parser.RightParen); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1325; - this.match(CPP14Parser.Decltype); - this.state = 1326; - this.match(CPP14Parser.LeftParen); - this.state = 1327; - this.match(CPP14Parser.Auto); - this.state = 1328; - this.match(CPP14Parser.RightParen); - } - break; + switch ( this._interp.adaptivePredict(this._input, 120, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1320; + this.match(CPP14Parser.Decltype); + this.state = 1321; + this.match(CPP14Parser.LeftParen); + this.state = 1322; + this.expression(0); + this.state = 1323; + this.match(CPP14Parser.RightParen); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1325; + this.match(CPP14Parser.Decltype); + this.state = 1326; + this.match(CPP14Parser.LeftParen); + this.state = 1327; + this.match(CPP14Parser.Auto); + this.state = 1328; + this.match(CPP14Parser.RightParen); + } + break; } } catch (re) { @@ -5729,85 +5729,85 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1355; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 125, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 125, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1331; + this.classkey(); + this.state = 1333; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1331; - this.classkey(); - this.state = 1333; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1332; - this.attributespecifierseq(0); - } - } - - this.state = 1336; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 122, this._ctx)) { - case 1: - { - this.state = 1335; - this.nestednamespecifier(0); - } - break; - } - this.state = 1338; - this.match(CPP14Parser.Identifier); + this.state = 1332; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); + } + + this.state = 1336; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 122, this._ctx) ) { + case 1: { - this.state = 1340; - this.classkey(); - this.state = 1341; - this.simpletemplateid(); + this.state = 1335; + this.nestednamespecifier(0); } break; - case 3: - this.enterOuterAlt(localctx, 3); + } + this.state = 1338; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1340; + this.classkey(); + this.state = 1341; + this.simpletemplateid(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1343; + this.classkey(); + this.state = 1344; + this.nestednamespecifier(0); + this.state = 1346; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { { - this.state = 1343; - this.classkey(); - this.state = 1344; - this.nestednamespecifier(0); - this.state = 1346; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 1345; - this.match(CPP14Parser.Template); - } - } - - this.state = 1348; - this.simpletemplateid(); + this.state = 1345; + this.match(CPP14Parser.Template); } - break; - case 4: - this.enterOuterAlt(localctx, 4); + } + + this.state = 1348; + this.simpletemplateid(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1350; + this.match(CPP14Parser.Enum); + this.state = 1352; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 124, this._ctx) ) { + case 1: { - this.state = 1350; - this.match(CPP14Parser.Enum); - this.state = 1352; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 124, this._ctx)) { - case 1: - { - this.state = 1351; - this.nestednamespecifier(0); - } - break; - } - this.state = 1354; - this.match(CPP14Parser.Identifier); + this.state = 1351; + this.nestednamespecifier(0); } break; + } + this.state = 1354; + this.match(CPP14Parser.Identifier); + } + break; } } catch (re) { @@ -5830,8 +5830,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1357; - this.match(CPP14Parser.Identifier); + this.state = 1357; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -5855,43 +5855,43 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1372; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 127, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1359; - this.enumhead(); - this.state = 1360; - this.match(CPP14Parser.LeftBrace); - this.state = 1362; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 1361; - this.enumeratorlist(0); - } - } - - this.state = 1364; - this.match(CPP14Parser.RightBrace); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 127, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1359; + this.enumhead(); + this.state = 1360; + this.match(CPP14Parser.LeftBrace); + this.state = 1362; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { { - this.state = 1366; - this.enumhead(); - this.state = 1367; - this.match(CPP14Parser.LeftBrace); - this.state = 1368; - this.enumeratorlist(0); - this.state = 1369; - this.match(CPP14Parser.Comma); - this.state = 1370; - this.match(CPP14Parser.RightBrace); + this.state = 1361; + this.enumeratorlist(0); } - break; + } + + this.state = 1364; + this.match(CPP14Parser.RightBrace); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1366; + this.enumhead(); + this.state = 1367; + this.match(CPP14Parser.LeftBrace); + this.state = 1368; + this.enumeratorlist(0); + this.state = 1369; + this.match(CPP14Parser.Comma); + this.state = 1370; + this.match(CPP14Parser.RightBrace); + } + break; } } catch (re) { @@ -5912,78 +5912,78 @@ export class CPP14Parser extends antlr.Parser { let localctx: EnumheadContext = new EnumheadContext(this._ctx, this.state); this.enterRule(localctx, 162, CPP14Parser.RULE_enumhead); let _la: number; - try { - this.state = 1393; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 133, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1374; - this.enumkey(); - this.state = 1376; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1375; - this.attributespecifierseq(0); - } - } - - this.state = 1379; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 1378; - this.match(CPP14Parser.Identifier); - } - } - - this.state = 1382; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1381; - this.enumbase(); - } - } + try { + this.state = 1393; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 133, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1374; + this.enumkey(); + this.state = 1376; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1375; + this.attributespecifierseq(0); + } + } + this.state = 1379; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { + { + this.state = 1378; + this.match(CPP14Parser.Identifier); } - break; - case 2: - this.enterOuterAlt(localctx, 2); + } + + this.state = 1382; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { { - this.state = 1384; - this.enumkey(); - this.state = 1386; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1385; - this.attributespecifierseq(0); - } - } + this.state = 1381; + this.enumbase(); + } + } - this.state = 1388; - this.nestednamespecifier(0); - this.state = 1389; - this.match(CPP14Parser.Identifier); - this.state = 1391; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1390; - this.enumbase(); - } - } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1384; + this.enumkey(); + this.state = 1386; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1385; + this.attributespecifierseq(0); + } + } + this.state = 1388; + this.nestednamespecifier(0); + this.state = 1389; + this.match(CPP14Parser.Identifier); + this.state = 1391; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { + { + this.state = 1390; + this.enumbase(); } - break; + } + + } + break; } } catch (re) { @@ -6007,32 +6007,32 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1395; - this.enumkey(); - this.state = 1397; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1396; - this.attributespecifierseq(0); - } + this.state = 1395; + this.enumkey(); + this.state = 1397; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1396; + this.attributespecifierseq(0); } + } - this.state = 1399; - this.match(CPP14Parser.Identifier); - this.state = 1401; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1400; - this.enumbase(); - } + this.state = 1399; + this.match(CPP14Parser.Identifier); + this.state = 1401; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { + { + this.state = 1400; + this.enumbase(); } + } - this.state = 1403; - this.match(CPP14Parser.Semi); + this.state = 1403; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -6055,32 +6055,32 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1410; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 136, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1405; - this.match(CPP14Parser.Enum); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1406; - this.match(CPP14Parser.Enum); - this.state = 1407; - this.match(CPP14Parser.Class); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1408; - this.match(CPP14Parser.Enum); - this.state = 1409; - this.match(CPP14Parser.Struct); - } - break; + switch ( this._interp.adaptivePredict(this._input, 136, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1405; + this.match(CPP14Parser.Enum); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1406; + this.match(CPP14Parser.Enum); + this.state = 1407; + this.match(CPP14Parser.Class); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1408; + this.match(CPP14Parser.Enum); + this.state = 1409; + this.match(CPP14Parser.Struct); + } + break; } } catch (re) { @@ -6103,10 +6103,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1412; - this.match(CPP14Parser.Colon); - this.state = 1413; - this.typespecifierseq(); + this.state = 1412; + this.match(CPP14Parser.Colon); + this.state = 1413; + this.typespecifierseq(); } } catch (re) { @@ -6141,39 +6141,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1416; + { + this.state = 1416; + this.enumeratordefinition(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1423; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 137, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new EnumeratorlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_enumeratorlist); + this.state = 1418; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1419; + this.match(CPP14Parser.Comma); + this.state = 1420; this.enumeratordefinition(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1423; + this.state = 1425; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 137, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new EnumeratorlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_enumeratorlist); - this.state = 1418; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1419; - this.match(CPP14Parser.Comma); - this.state = 1420; - this.enumeratordefinition(); - } - } - } - this.state = 1425; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 137, this._ctx); - } + } } } catch (re) { @@ -6196,25 +6196,25 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1431; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 138, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1426; - this.enumerator(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1427; - this.enumerator(); - this.state = 1428; - this.match(CPP14Parser.Assign); - this.state = 1429; - this.constantexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 138, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1426; + this.enumerator(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1427; + this.enumerator(); + this.state = 1428; + this.match(CPP14Parser.Assign); + this.state = 1429; + this.constantexpression(); + } + break; } } catch (re) { @@ -6237,8 +6237,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1433; - this.match(CPP14Parser.Identifier); + this.state = 1433; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -6261,21 +6261,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1437; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 139, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1435; - this.originalnamespacename(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1436; - this.namespacealias(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 139, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1435; + this.originalnamespacename(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1436; + this.namespacealias(); + } + break; } } catch (re) { @@ -6298,8 +6298,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1439; - this.match(CPP14Parser.Identifier); + this.state = 1439; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -6322,21 +6322,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1443; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 140, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1441; - this.namednamespacedefinition(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1442; - this.unnamednamespacedefinition(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 140, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1441; + this.namednamespacedefinition(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1442; + this.unnamednamespacedefinition(); + } + break; } } catch (re) { @@ -6359,21 +6359,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1447; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 141, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1445; - this.originalnamespacedefinition(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1446; - this.extensionnamespacedefinition(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 141, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1445; + this.originalnamespacedefinition(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1446; + this.extensionnamespacedefinition(); + } + break; } } catch (re) { @@ -6397,26 +6397,26 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1450; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 37) { - { - this.state = 1449; - this.match(CPP14Parser.Inline); - } + this.state = 1450; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===37) { + { + this.state = 1449; + this.match(CPP14Parser.Inline); } + } - this.state = 1452; - this.match(CPP14Parser.Namespace); - this.state = 1453; - this.match(CPP14Parser.Identifier); - this.state = 1454; - this.match(CPP14Parser.LeftBrace); - this.state = 1455; - this.namespacebody(); - this.state = 1456; - this.match(CPP14Parser.RightBrace); + this.state = 1452; + this.match(CPP14Parser.Namespace); + this.state = 1453; + this.match(CPP14Parser.Identifier); + this.state = 1454; + this.match(CPP14Parser.LeftBrace); + this.state = 1455; + this.namespacebody(); + this.state = 1456; + this.match(CPP14Parser.RightBrace); } } catch (re) { @@ -6440,26 +6440,26 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1459; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 37) { - { - this.state = 1458; - this.match(CPP14Parser.Inline); - } + this.state = 1459; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===37) { + { + this.state = 1458; + this.match(CPP14Parser.Inline); } + } - this.state = 1461; - this.match(CPP14Parser.Namespace); - this.state = 1462; - this.originalnamespacename(); - this.state = 1463; - this.match(CPP14Parser.LeftBrace); - this.state = 1464; - this.namespacebody(); - this.state = 1465; - this.match(CPP14Parser.RightBrace); + this.state = 1461; + this.match(CPP14Parser.Namespace); + this.state = 1462; + this.originalnamespacename(); + this.state = 1463; + this.match(CPP14Parser.LeftBrace); + this.state = 1464; + this.namespacebody(); + this.state = 1465; + this.match(CPP14Parser.RightBrace); } } catch (re) { @@ -6483,24 +6483,24 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1468; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 37) { - { - this.state = 1467; - this.match(CPP14Parser.Inline); - } + this.state = 1468; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===37) { + { + this.state = 1467; + this.match(CPP14Parser.Inline); } + } - this.state = 1470; - this.match(CPP14Parser.Namespace); - this.state = 1471; - this.match(CPP14Parser.LeftBrace); - this.state = 1472; - this.namespacebody(); - this.state = 1473; - this.match(CPP14Parser.RightBrace); + this.state = 1470; + this.match(CPP14Parser.Namespace); + this.state = 1471; + this.match(CPP14Parser.LeftBrace); + this.state = 1472; + this.namespacebody(); + this.state = 1473; + this.match(CPP14Parser.RightBrace); } } catch (re) { @@ -6524,15 +6524,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1476; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { - { - this.state = 1475; - this.declarationseq(0); - } + this.state = 1476; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { + { + this.state = 1475; + this.declarationseq(0); } + } } } @@ -6556,8 +6556,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1478; - this.match(CPP14Parser.Identifier); + this.state = 1478; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -6580,16 +6580,16 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1480; - this.match(CPP14Parser.Namespace); - this.state = 1481; - this.match(CPP14Parser.Identifier); - this.state = 1482; - this.match(CPP14Parser.Assign); - this.state = 1483; - this.qualifiednamespacespecifier(); - this.state = 1484; - this.match(CPP14Parser.Semi); + this.state = 1480; + this.match(CPP14Parser.Namespace); + this.state = 1481; + this.match(CPP14Parser.Identifier); + this.state = 1482; + this.match(CPP14Parser.Assign); + this.state = 1483; + this.qualifiednamespacespecifier(); + this.state = 1484; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -6612,18 +6612,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1487; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 146, this._ctx)) { - case 1: - { - this.state = 1486; - this.nestednamespecifier(0); - } - break; + this.state = 1487; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 146, this._ctx) ) { + case 1: + { + this.state = 1486; + this.nestednamespecifier(0); } - this.state = 1489; - this.namespacename(); + break; + } + this.state = 1489; + this.namespacename(); } } catch (re) { @@ -6647,43 +6647,43 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1504; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 148, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1491; - this.match(CPP14Parser.Using); - this.state = 1493; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 69) { - { - this.state = 1492; - this.match(CPP14Parser.Typename); - } - } - - this.state = 1495; - this.nestednamespecifier(0); - this.state = 1496; - this.unqualifiedid(); - this.state = 1497; - this.match(CPP14Parser.Semi); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 148, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1491; + this.match(CPP14Parser.Using); + this.state = 1493; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===69) { { - this.state = 1499; - this.match(CPP14Parser.Using); - this.state = 1500; - this.match(CPP14Parser.Doublecolon); - this.state = 1501; - this.unqualifiedid(); - this.state = 1502; - this.match(CPP14Parser.Semi); + this.state = 1492; + this.match(CPP14Parser.Typename); } - break; + } + + this.state = 1495; + this.nestednamespecifier(0); + this.state = 1496; + this.unqualifiedid(); + this.state = 1497; + this.match(CPP14Parser.Semi); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1499; + this.match(CPP14Parser.Using); + this.state = 1500; + this.match(CPP14Parser.Doublecolon); + this.state = 1501; + this.unqualifiedid(); + this.state = 1502; + this.match(CPP14Parser.Semi); + } + break; } } catch (re) { @@ -6704,37 +6704,37 @@ export class CPP14Parser extends antlr.Parser { let localctx: UsingdirectiveContext = new UsingdirectiveContext(this._ctx, this.state); this.enterRule(localctx, 200, CPP14Parser.RULE_usingdirective); let _la: number; - try { - this.enterOuterAlt(localctx, 1); - { - this.state = 1507; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1506; - this.attributespecifierseq(0); - } + try { + this.enterOuterAlt(localctx, 1); + { + this.state = 1507; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1506; + this.attributespecifierseq(0); } + } - this.state = 1509; - this.match(CPP14Parser.Using); - this.state = 1510; - this.match(CPP14Parser.Namespace); - this.state = 1512; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 150, this._ctx)) { - case 1: - { - this.state = 1511; - this.nestednamespecifier(0); - } - break; + this.state = 1509; + this.match(CPP14Parser.Using); + this.state = 1510; + this.match(CPP14Parser.Namespace); + this.state = 1512; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 150, this._ctx) ) { + case 1: + { + this.state = 1511; + this.nestednamespecifier(0); } - this.state = 1514; - this.namespacename(); - this.state = 1515; - this.match(CPP14Parser.Semi); + break; + } + this.state = 1514; + this.namespacename(); + this.state = 1515; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -6757,16 +6757,16 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1517; - this.match(CPP14Parser.Asm); - this.state = 1518; - this.match(CPP14Parser.LeftParen); - this.state = 1519; - this.match(CPP14Parser.Stringliteral); - this.state = 1520; - this.match(CPP14Parser.RightParen); - this.state = 1521; - this.match(CPP14Parser.Semi); + this.state = 1517; + this.match(CPP14Parser.Asm); + this.state = 1518; + this.match(CPP14Parser.LeftParen); + this.state = 1519; + this.match(CPP14Parser.Stringliteral); + this.state = 1520; + this.match(CPP14Parser.RightParen); + this.state = 1521; + this.match(CPP14Parser.Semi); } } catch (re) { @@ -6790,41 +6790,41 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1533; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 152, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1523; - this.match(CPP14Parser.Extern); - this.state = 1524; - this.match(CPP14Parser.Stringliteral); - this.state = 1525; - this.match(CPP14Parser.LeftBrace); - this.state = 1527; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { - { - this.state = 1526; - this.declarationseq(0); - } - } - - this.state = 1529; - this.match(CPP14Parser.RightBrace); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 152, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1523; + this.match(CPP14Parser.Extern); + this.state = 1524; + this.match(CPP14Parser.Stringliteral); + this.state = 1525; + this.match(CPP14Parser.LeftBrace); + this.state = 1527; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875466725) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26113) !== 0)) { { - this.state = 1530; - this.match(CPP14Parser.Extern); - this.state = 1531; - this.match(CPP14Parser.Stringliteral); - this.state = 1532; - this.declaration(); + this.state = 1526; + this.declarationseq(0); } - break; + } + + this.state = 1529; + this.match(CPP14Parser.RightBrace); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1530; + this.match(CPP14Parser.Extern); + this.state = 1531; + this.match(CPP14Parser.Stringliteral); + this.state = 1532; + this.declaration(); + } + break; } } catch (re) { @@ -6859,37 +6859,37 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1536; + { + this.state = 1536; + this.attributespecifier(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1542; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 153, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new AttributespecifierseqContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributespecifierseq); + this.state = 1538; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1539; this.attributespecifier(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1542; + this.state = 1544; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 153, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new AttributespecifierseqContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributespecifierseq); - this.state = 1538; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1539; - this.attributespecifier(); - } - } - } - this.state = 1544; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 153, this._ctx); - } + } } } catch (re) { @@ -6913,30 +6913,30 @@ export class CPP14Parser extends antlr.Parser { this.state = 1552; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 1); - { - this.state = 1545; - this.match(CPP14Parser.LeftBracket); - this.state = 1546; - this.match(CPP14Parser.LeftBracket); - this.state = 1547; - this.attributelist(0); - this.state = 1548; - this.match(CPP14Parser.RightBracket); - this.state = 1549; - this.match(CPP14Parser.RightBracket); - } - break; - case CPP14Parser.Alignas: - this.enterOuterAlt(localctx, 2); - { - this.state = 1551; - this.alignmentspecifier(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 1); + { + this.state = 1545; + this.match(CPP14Parser.LeftBracket); + this.state = 1546; + this.match(CPP14Parser.LeftBracket); + this.state = 1547; + this.attributelist(0); + this.state = 1548; + this.match(CPP14Parser.RightBracket); + this.state = 1549; + this.match(CPP14Parser.RightBracket); + } + break; + case CPP14Parser.Alignas: + this.enterOuterAlt(localctx, 2); + { + this.state = 1551; + this.alignmentspecifier(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -6960,53 +6960,53 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1570; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 157, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 157, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1554; + this.match(CPP14Parser.Alignas); + this.state = 1555; + this.match(CPP14Parser.LeftParen); + this.state = 1556; + this.typeid(); + this.state = 1558; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { { - this.state = 1554; - this.match(CPP14Parser.Alignas); - this.state = 1555; - this.match(CPP14Parser.LeftParen); - this.state = 1556; - this.typeid(); - this.state = 1558; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 1557; - this.match(CPP14Parser.Ellipsis); - } - } - - this.state = 1560; - this.match(CPP14Parser.RightParen); + this.state = 1557; + this.match(CPP14Parser.Ellipsis); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1562; - this.match(CPP14Parser.Alignas); - this.state = 1563; - this.match(CPP14Parser.LeftParen); - this.state = 1564; - this.constantexpression(); - this.state = 1566; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 1565; - this.match(CPP14Parser.Ellipsis); - } - } + } - this.state = 1568; - this.match(CPP14Parser.RightParen); + this.state = 1560; + this.match(CPP14Parser.RightParen); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1562; + this.match(CPP14Parser.Alignas); + this.state = 1563; + this.match(CPP14Parser.LeftParen); + this.state = 1564; + this.constantexpression(); + this.state = 1566; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { + { + this.state = 1565; + this.match(CPP14Parser.Ellipsis); } - break; + } + + this.state = 1568; + this.match(CPP14Parser.RightParen); + } + break; } } catch (re) { @@ -7041,91 +7041,91 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1579; + this.state = 1579; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 159, this._ctx) ) { + case 1: + { + this.state = 1574; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 159, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 158, this._ctx) ) { + case 1: + { + this.state = 1573; + this.attribute(); + } + break; + } + } + break; + case 2: + { + this.state = 1576; + this.attribute(); + this.state = 1577; + this.match(CPP14Parser.Ellipsis); + } + break; + } + this._ctx.stop = this._input.LT(-1); + this.state = 1593; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 162, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 1591; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 161, this._ctx) ) { case 1: { - this.state = 1574; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 158, this._ctx)) { - case 1: - { - this.state = 1573; - this.attribute(); - } - break; + localctx = new AttributelistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributelist); + this.state = 1581; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 1582; + this.match(CPP14Parser.Comma); + this.state = 1584; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 160, this._ctx) ) { + case 1: + { + this.state = 1583; + this.attribute(); } + break; + } } break; case 2: { - this.state = 1576; - this.attribute(); - this.state = 1577; - this.match(CPP14Parser.Ellipsis); + localctx = new AttributelistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributelist); + this.state = 1586; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1587; + this.match(CPP14Parser.Comma); + this.state = 1588; + this.attribute(); + this.state = 1589; + this.match(CPP14Parser.Ellipsis); } break; + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1593; + this.state = 1595; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 162, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - this.state = 1591; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 161, this._ctx)) { - case 1: - { - localctx = new AttributelistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributelist); - this.state = 1581; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 1582; - this.match(CPP14Parser.Comma); - this.state = 1584; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 160, this._ctx)) { - case 1: - { - this.state = 1583; - this.attribute(); - } - break; - } - } - break; - case 2: - { - localctx = new AttributelistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_attributelist); - this.state = 1586; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1587; - this.match(CPP14Parser.Comma); - this.state = 1588; - this.attribute(); - this.state = 1589; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - } - this.state = 1595; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 162, this._ctx); - } + } } } catch (re) { @@ -7148,18 +7148,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1596; - this.attributetoken(); - this.state = 1598; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 163, this._ctx)) { - case 1: - { - this.state = 1597; - this.attributeargumentclause(); - } - break; + this.state = 1596; + this.attributetoken(); + this.state = 1598; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 163, this._ctx) ) { + case 1: + { + this.state = 1597; + this.attributeargumentclause(); } + break; + } } } catch (re) { @@ -7182,21 +7182,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1602; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 164, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1600; - this.match(CPP14Parser.Identifier); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1601; - this.attributescopedtoken(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 164, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1600; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1601; + this.attributescopedtoken(); + } + break; } } catch (re) { @@ -7219,12 +7219,12 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1604; - this.attributenamespace(); - this.state = 1605; - this.match(CPP14Parser.Doublecolon); - this.state = 1606; - this.match(CPP14Parser.Identifier); + this.state = 1604; + this.attributenamespace(); + this.state = 1605; + this.match(CPP14Parser.Doublecolon); + this.state = 1606; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -7247,8 +7247,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1608; - this.match(CPP14Parser.Identifier); + this.state = 1608; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -7271,12 +7271,12 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1610; - this.match(CPP14Parser.LeftParen); - this.state = 1611; - this.balancedtokenseq(0); - this.state = 1612; - this.match(CPP14Parser.RightParen); + this.state = 1610; + this.match(CPP14Parser.LeftParen); + this.state = 1611; + this.balancedtokenseq(0); + this.state = 1612; + this.match(CPP14Parser.RightParen); } } catch (re) { @@ -7311,45 +7311,45 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 1616; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 165, this._ctx) ) { + case 1: { - this.state = 1616; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 165, this._ctx)) { - case 1: - { - this.state = 1615; - this.balancedtoken(); - } - break; + this.state = 1615; + this.balancedtoken(); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 1622; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 166, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new BalancedtokenseqContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_balancedtokenseq); + this.state = 1618; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1619; + this.balancedtoken(); + } } } - this._ctx.stop = this._input.LT(-1); - this.state = 1622; + this.state = 1624; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 166, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new BalancedtokenseqContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_balancedtokenseq); - this.state = 1618; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1619; - this.balancedtoken(); - } - } - } - this.state = 1624; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 166, this._ctx); - } + } } } catch (re) { @@ -7373,41 +7373,41 @@ export class CPP14Parser extends antlr.Parser { this.state = 1637; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.LeftParen: - this.enterOuterAlt(localctx, 1); - { - this.state = 1625; - this.match(CPP14Parser.LeftParen); - this.state = 1626; - this.balancedtokenseq(0); - this.state = 1627; - this.match(CPP14Parser.RightParen); - } - break; - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 2); - { - this.state = 1629; - this.match(CPP14Parser.LeftBracket); - this.state = 1630; - this.balancedtokenseq(0); - this.state = 1631; - this.match(CPP14Parser.RightBracket); - } - break; - case CPP14Parser.LeftBrace: - this.enterOuterAlt(localctx, 3); - { - this.state = 1633; - this.match(CPP14Parser.LeftBrace); - this.state = 1634; - this.balancedtokenseq(0); - this.state = 1635; - this.match(CPP14Parser.RightBrace); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.LeftParen: + this.enterOuterAlt(localctx, 1); + { + this.state = 1625; + this.match(CPP14Parser.LeftParen); + this.state = 1626; + this.balancedtokenseq(0); + this.state = 1627; + this.match(CPP14Parser.RightParen); + } + break; + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 2); + { + this.state = 1629; + this.match(CPP14Parser.LeftBracket); + this.state = 1630; + this.balancedtokenseq(0); + this.state = 1631; + this.match(CPP14Parser.RightBracket); + } + break; + case CPP14Parser.LeftBrace: + this.enterOuterAlt(localctx, 3); + { + this.state = 1633; + this.match(CPP14Parser.LeftBrace); + this.state = 1634; + this.balancedtokenseq(0); + this.state = 1635; + this.match(CPP14Parser.RightBrace); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -7442,39 +7442,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1640; + { + this.state = 1640; + this.initdeclarator(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1647; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 168, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new InitdeclaratorlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_initdeclaratorlist); + this.state = 1642; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1643; + this.match(CPP14Parser.Comma); + this.state = 1644; this.initdeclarator(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1647; + this.state = 1649; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 168, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new InitdeclaratorlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_initdeclaratorlist); - this.state = 1642; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1643; - this.match(CPP14Parser.Comma); - this.state = 1644; - this.initdeclarator(); - } - } - } - this.state = 1649; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 168, this._ctx); - } + } } } catch (re) { @@ -7497,18 +7497,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1650; - this.declarator(); - this.state = 1652; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 169, this._ctx)) { - case 1: - { - this.state = 1651; - this.initializer(); - } - break; + this.state = 1650; + this.declarator(); + this.state = 1652; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 169, this._ctx) ) { + case 1: + { + this.state = 1651; + this.initializer(); } + break; + } } } catch (re) { @@ -7531,25 +7531,25 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1659; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 170, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1654; - this.ptrdeclarator(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1655; - this.noptrdeclarator(0); - this.state = 1656; - this.parametersandqualifiers(); - this.state = 1657; - this.trailingreturntype(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 170, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1654; + this.ptrdeclarator(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1655; + this.noptrdeclarator(0); + this.state = 1656; + this.parametersandqualifiers(); + this.state = 1657; + this.trailingreturntype(); + } + break; } } catch (re) { @@ -7572,23 +7572,23 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1665; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 171, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1661; - this.noptrdeclarator(0); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1662; - this.ptroperator(); - this.state = 1663; - this.ptrdeclarator(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 171, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1661; + this.noptrdeclarator(0); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1662; + this.ptroperator(); + this.state = 1663; + this.ptrdeclarator(); + } + break; } } catch (re) { @@ -7624,110 +7624,110 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1676; + this.state = 1676; + this._errHandler.sync(this); + switch (this._input.LA(1)) { + case CPP14Parser.Decltype: + case CPP14Parser.Operator: + case CPP14Parser.Tilde: + case CPP14Parser.Doublecolon: + case CPP14Parser.Ellipsis: + case CPP14Parser.Identifier: + { + this.state = 1668; + this.declaratorid(); + this.state = 1670; this._errHandler.sync(this); - switch (this._input.LA(1)) { - case CPP14Parser.Decltype: - case CPP14Parser.Operator: - case CPP14Parser.Tilde: - case CPP14Parser.Doublecolon: - case CPP14Parser.Ellipsis: - case CPP14Parser.Identifier: + switch ( this._interp.adaptivePredict(this._input, 172, this._ctx) ) { + case 1: + { + this.state = 1669; + this.attributespecifierseq(0); + } + break; + } + } + break; + case CPP14Parser.LeftParen: + { + this.state = 1672; + this.match(CPP14Parser.LeftParen); + this.state = 1673; + this.ptrdeclarator(); + this.state = 1674; + this.match(CPP14Parser.RightParen); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1691; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 177, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 1689; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 176, this._ctx) ) { + case 1: { - this.state = 1668; - this.declaratorid(); - this.state = 1670; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 172, this._ctx)) { - case 1: - { - this.state = 1669; - this.attributespecifierseq(0); - } - break; - } + localctx = new NoptrdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrdeclarator); + this.state = 1678; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 1679; + this.parametersandqualifiers(); } break; - case CPP14Parser.LeftParen: + case 2: { - this.state = 1672; - this.match(CPP14Parser.LeftParen); - this.state = 1673; - this.ptrdeclarator(); - this.state = 1674; - this.match(CPP14Parser.RightParen); + localctx = new NoptrdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrdeclarator); + this.state = 1680; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); } - break; - default: - throw new antlr.NoViableAltException(this); - } - this._ctx.stop = this._input.LT(-1); - this.state = 1691; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 177, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + this.state = 1681; + this.match(CPP14Parser.LeftBracket); + this.state = 1683; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 1682; + this.constantexpression(); + } } - _prevctx = localctx; - { - this.state = 1689; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 176, this._ctx)) { - case 1: - { - localctx = new NoptrdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrdeclarator); - this.state = 1678; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 1679; - this.parametersandqualifiers(); - } - break; - case 2: - { - localctx = new NoptrdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrdeclarator); - this.state = 1680; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 1681; - this.match(CPP14Parser.LeftBracket); - this.state = 1683; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1682; - this.constantexpression(); - } - } - - this.state = 1685; - this.match(CPP14Parser.RightBracket); - this.state = 1687; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 175, this._ctx)) { - case 1: - { - this.state = 1686; - this.attributespecifierseq(0); - } - break; - } - } - break; + + this.state = 1685; + this.match(CPP14Parser.RightBracket); + this.state = 1687; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 175, this._ctx) ) { + case 1: + { + this.state = 1686; + this.attributespecifierseq(0); } + break; + } } + break; + } } - this.state = 1693; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 177, this._ctx); } + this.state = 1693; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 177, this._ctx); + } } } catch (re) { @@ -7750,52 +7750,52 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1694; - this.match(CPP14Parser.LeftParen); - this.state = 1695; - this.parameterdeclarationclause(); - this.state = 1696; - this.match(CPP14Parser.RightParen); - this.state = 1698; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 178, this._ctx)) { - case 1: - { - this.state = 1697; - this.cvqualifierseq(); - } - break; + this.state = 1694; + this.match(CPP14Parser.LeftParen); + this.state = 1695; + this.parameterdeclarationclause(); + this.state = 1696; + this.match(CPP14Parser.RightParen); + this.state = 1698; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 178, this._ctx) ) { + case 1: + { + this.state = 1697; + this.cvqualifierseq(); } - this.state = 1701; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 179, this._ctx)) { - case 1: - { - this.state = 1700; - this.refqualifier(); - } - break; + break; + } + this.state = 1701; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 179, this._ctx) ) { + case 1: + { + this.state = 1700; + this.refqualifier(); } - this.state = 1704; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 180, this._ctx)) { - case 1: - { - this.state = 1703; - this.exceptionspecification(); - } - break; + break; + } + this.state = 1704; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 180, this._ctx) ) { + case 1: + { + this.state = 1703; + this.exceptionspecification(); } - this.state = 1707; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 181, this._ctx)) { - case 1: - { - this.state = 1706; - this.attributespecifierseq(0); - } - break; + break; + } + this.state = 1707; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 181, this._ctx) ) { + case 1: + { + this.state = 1706; + this.attributespecifierseq(0); } + break; + } } } catch (re) { @@ -7818,20 +7818,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1709; - this.match(CPP14Parser.Arrow); - this.state = 1710; - this.trailingtypespecifierseq(); - this.state = 1712; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 182, this._ctx)) { - case 1: - { - this.state = 1711; - this.abstractdeclarator(); - } - break; + this.state = 1709; + this.match(CPP14Parser.Arrow); + this.state = 1710; + this.trailingtypespecifierseq(); + this.state = 1712; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 182, this._ctx) ) { + case 1: + { + this.state = 1711; + this.abstractdeclarator(); } + break; + } } } catch (re) { @@ -7855,100 +7855,100 @@ export class CPP14Parser extends antlr.Parser { this.state = 1737; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Star: - this.enterOuterAlt(localctx, 1); + case CPP14Parser.Star: + this.enterOuterAlt(localctx, 1); + { + this.state = 1714; + this.match(CPP14Parser.Star); + this.state = 1716; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 183, this._ctx) ) { + case 1: { - this.state = 1714; - this.match(CPP14Parser.Star); - this.state = 1716; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 183, this._ctx)) { - case 1: - { - this.state = 1715; - this.attributespecifierseq(0); - } - break; - } - this.state = 1719; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 184, this._ctx)) { - case 1: - { - this.state = 1718; - this.cvqualifierseq(); - } - break; - } + this.state = 1715; + this.attributespecifierseq(0); + } + break; + } + this.state = 1719; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 184, this._ctx) ) { + case 1: + { + this.state = 1718; + this.cvqualifierseq(); } break; - case CPP14Parser.And: - this.enterOuterAlt(localctx, 2); + } + } + break; + case CPP14Parser.And: + this.enterOuterAlt(localctx, 2); + { + this.state = 1721; + this.match(CPP14Parser.And); + this.state = 1723; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 185, this._ctx) ) { + case 1: { - this.state = 1721; - this.match(CPP14Parser.And); - this.state = 1723; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 185, this._ctx)) { - case 1: - { - this.state = 1722; - this.attributespecifierseq(0); - } - break; - } + this.state = 1722; + this.attributespecifierseq(0); } break; - case CPP14Parser.AndAnd: - this.enterOuterAlt(localctx, 3); + } + } + break; + case CPP14Parser.AndAnd: + this.enterOuterAlt(localctx, 3); + { + this.state = 1725; + this.match(CPP14Parser.AndAnd); + this.state = 1727; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 186, this._ctx) ) { + case 1: { - this.state = 1725; - this.match(CPP14Parser.AndAnd); - this.state = 1727; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 186, this._ctx)) { - case 1: - { - this.state = 1726; - this.attributespecifierseq(0); - } - break; - } + this.state = 1726; + this.attributespecifierseq(0); } break; - case CPP14Parser.Decltype: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 4); + } + } + break; + case CPP14Parser.Decltype: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 4); + { + this.state = 1729; + this.nestednamespecifier(0); + this.state = 1730; + this.match(CPP14Parser.Star); + this.state = 1732; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 187, this._ctx) ) { + case 1: { - this.state = 1729; - this.nestednamespecifier(0); - this.state = 1730; - this.match(CPP14Parser.Star); - this.state = 1732; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 187, this._ctx)) { - case 1: - { - this.state = 1731; - this.attributespecifierseq(0); - } - break; - } - this.state = 1735; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 188, this._ctx)) { - case 1: - { - this.state = 1734; - this.cvqualifierseq(); - } - break; - } + this.state = 1731; + this.attributespecifierseq(0); + } + break; + } + this.state = 1735; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 188, this._ctx) ) { + case 1: + { + this.state = 1734; + this.cvqualifierseq(); } break; - default: - throw new antlr.NoViableAltException(this); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -7971,18 +7971,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1739; - this.cvqualifier(); - this.state = 1741; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 190, this._ctx)) { - case 1: - { - this.state = 1740; - this.cvqualifierseq(); - } - break; + this.state = 1739; + this.cvqualifier(); + this.state = 1741; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 190, this._ctx) ) { + case 1: + { + this.state = 1740; + this.cvqualifierseq(); } + break; + } } } catch (re) { @@ -8006,15 +8006,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1743; - _la = this._input.LA(1); - if (!(_la === 15 || _la === 75)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1743; + _la = this._input.LA(1); + if(!(_la===15 || _la===75)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -8038,15 +8038,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1745; - _la = this._input.LA(1); - if (!(_la === 90 || _la === 111)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1745; + _la = this._input.LA(1); + if(!(_la===90 || _la===111)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -8070,18 +8070,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1748; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 1747; - this.match(CPP14Parser.Ellipsis); - } + this.state = 1748; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { + { + this.state = 1747; + this.match(CPP14Parser.Ellipsis); } + } - this.state = 1750; - this.idexpression(); + this.state = 1750; + this.idexpression(); } } catch (re) { @@ -8104,18 +8104,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1752; - this.typespecifierseq(); - this.state = 1754; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 192, this._ctx)) { - case 1: - { - this.state = 1753; - this.abstractdeclarator(); - } - break; + this.state = 1752; + this.typespecifierseq(); + this.state = 1754; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 192, this._ctx) ) { + case 1: + { + this.state = 1753; + this.abstractdeclarator(); } + break; + } } } catch (re) { @@ -8138,40 +8138,40 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1764; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 194, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 194, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1756; + this.ptrabstractdeclarator(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1758; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 193, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1756; - this.ptrabstractdeclarator(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1758; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 193, this._ctx)) { - case 1: - { - this.state = 1757; - this.noptrabstractdeclarator(0); - } - break; - } - this.state = 1760; - this.parametersandqualifiers(); - this.state = 1761; - this.trailingreturntype(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); { - this.state = 1763; - this.abstractpackdeclarator(); + this.state = 1757; + this.noptrabstractdeclarator(0); } break; + } + this.state = 1760; + this.parametersandqualifiers(); + this.state = 1761; + this.trailingreturntype(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1763; + this.abstractpackdeclarator(); + } + break; } } catch (re) { @@ -8195,38 +8195,38 @@ export class CPP14Parser extends antlr.Parser { this.state = 1771; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.LeftParen: - case CPP14Parser.LeftBracket: - this.enterOuterAlt(localctx, 1); - { - this.state = 1766; - this.noptrabstractdeclarator(0); - } - break; - case CPP14Parser.Decltype: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.AndAnd: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 2); + case CPP14Parser.LeftParen: + case CPP14Parser.LeftBracket: + this.enterOuterAlt(localctx, 1); + { + this.state = 1766; + this.noptrabstractdeclarator(0); + } + break; + case CPP14Parser.Decltype: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.AndAnd: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 2); + { + this.state = 1767; + this.ptroperator(); + this.state = 1769; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 195, this._ctx) ) { + case 1: { - this.state = 1767; - this.ptroperator(); - this.state = 1769; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 195, this._ctx)) { - case 1: - { - this.state = 1768; - this.ptrabstractdeclarator(); - } - break; - } + this.state = 1768; + this.ptrabstractdeclarator(); } break; - default: - throw new antlr.NoViableAltException(this); + } + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8262,121 +8262,121 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 1787; + this.state = 1787; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 199, this._ctx) ) { + case 1: + { + this.state = 1774; + this.parametersandqualifiers(); + } + break; + case 2: + { + this.state = 1775; + this.match(CPP14Parser.LeftBracket); + this.state = 1777; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 1776; + this.constantexpression(); + } + } + + this.state = 1779; + this.match(CPP14Parser.RightBracket); + this.state = 1781; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 199, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 198, this._ctx) ) { + case 1: + { + this.state = 1780; + this.attributespecifierseq(0); + } + break; + } + } + break; + case 3: + { + this.state = 1783; + this.match(CPP14Parser.LeftParen); + this.state = 1784; + this.ptrabstractdeclarator(); + this.state = 1785; + this.match(CPP14Parser.RightParen); + } + break; + } + this._ctx.stop = this._input.LT(-1); + this.state = 1802; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 203, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 1800; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 202, this._ctx) ) { case 1: { - this.state = 1774; - this.parametersandqualifiers(); + localctx = new NoptrabstractdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractdeclarator); + this.state = 1789; + if (!(this.precpred(this._ctx, 5))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); + } + this.state = 1790; + this.parametersandqualifiers(); } break; case 2: { - this.state = 1775; - this.match(CPP14Parser.LeftBracket); - this.state = 1777; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1776; - this.constantexpression(); - } + localctx = new NoptrabstractdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractdeclarator); + this.state = 1791; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 1792; + this.match(CPP14Parser.LeftBracket); + this.state = 1794; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 1793; + this.constantexpression(); } + } - this.state = 1779; - this.match(CPP14Parser.RightBracket); - this.state = 1781; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 198, this._ctx)) { - case 1: - { - this.state = 1780; - this.attributespecifierseq(0); - } - break; + this.state = 1796; + this.match(CPP14Parser.RightBracket); + this.state = 1798; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 201, this._ctx) ) { + case 1: + { + this.state = 1797; + this.attributespecifierseq(0); } + break; } - break; - case 3: - { - this.state = 1783; - this.match(CPP14Parser.LeftParen); - this.state = 1784; - this.ptrabstractdeclarator(); - this.state = 1785; - this.match(CPP14Parser.RightParen); } break; + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1802; + this.state = 1804; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 203, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - this.state = 1800; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 202, this._ctx)) { - case 1: - { - localctx = new NoptrabstractdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractdeclarator); - this.state = 1789; - if (!(this.precpred(this._ctx, 5))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 5)"); - } - this.state = 1790; - this.parametersandqualifiers(); - } - break; - case 2: - { - localctx = new NoptrabstractdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractdeclarator); - this.state = 1791; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 1792; - this.match(CPP14Parser.LeftBracket); - this.state = 1794; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1793; - this.constantexpression(); - } - } - - this.state = 1796; - this.match(CPP14Parser.RightBracket); - this.state = 1798; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 201, this._ctx)) { - case 1: - { - this.state = 1797; - this.attributespecifierseq(0); - } - break; - } - } - break; - } - } - } - this.state = 1804; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 203, this._ctx); - } + } } } catch (re) { @@ -8400,29 +8400,29 @@ export class CPP14Parser extends antlr.Parser { this.state = 1809; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Ellipsis: - this.enterOuterAlt(localctx, 1); - { - this.state = 1805; - this.noptrabstractpackdeclarator(0); - } - break; - case CPP14Parser.Decltype: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.AndAnd: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 2); - { - this.state = 1806; - this.ptroperator(); - this.state = 1807; - this.abstractpackdeclarator(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Ellipsis: + this.enterOuterAlt(localctx, 1); + { + this.state = 1805; + this.noptrabstractpackdeclarator(0); + } + break; + case CPP14Parser.Decltype: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.AndAnd: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 2); + { + this.state = 1806; + this.ptroperator(); + this.state = 1807; + this.abstractpackdeclarator(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8458,77 +8458,77 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1812; - this.match(CPP14Parser.Ellipsis); - } - this._ctx.stop = this._input.LT(-1); - this.state = 1827; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + { + this.state = 1812; + this.match(CPP14Parser.Ellipsis); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1827; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 1825; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 207, this._ctx) ) { + case 1: + { + localctx = new NoptrabstractpackdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractpackdeclarator); + this.state = 1814; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); + } + this.state = 1815; + this.parametersandqualifiers(); } - _prevctx = localctx; + break; + case 2: { - this.state = 1825; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 207, this._ctx)) { - case 1: - { - localctx = new NoptrabstractpackdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractpackdeclarator); - this.state = 1814; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 1815; - this.parametersandqualifiers(); - } - break; - case 2: - { - localctx = new NoptrabstractpackdeclaratorContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractpackdeclarator); - this.state = 1816; - if (!(this.precpred(this._ctx, 2))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); - } - this.state = 1817; - this.match(CPP14Parser.LeftBracket); - this.state = 1819; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 1818; - this.constantexpression(); - } - } - - this.state = 1821; - this.match(CPP14Parser.RightBracket); - this.state = 1823; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 206, this._ctx)) { - case 1: - { - this.state = 1822; - this.attributespecifierseq(0); - } - break; - } - } - break; + localctx = new NoptrabstractpackdeclaratorContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_noptrabstractpackdeclarator); + this.state = 1816; + if (!(this.precpred(this._ctx, 2))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 2)"); + } + this.state = 1817; + this.match(CPP14Parser.LeftBracket); + this.state = 1819; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507030105) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 1818; + this.constantexpression(); + } + } + + this.state = 1821; + this.match(CPP14Parser.RightBracket); + this.state = 1823; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 206, this._ctx) ) { + case 1: + { + this.state = 1822; + this.attributespecifierseq(0); } + break; + } } + break; + } } - this.state = 1829; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); } + this.state = 1829; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 208, this._ctx); + } } } catch (re) { @@ -8552,43 +8552,43 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1840; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 211, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 211, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1831; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2305032677) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 9181) !== 0) || _la===120 || _la===125) { { - this.state = 1831; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2305032677) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 9181) !== 0) || _la === 120 || _la === 125) { - { - this.state = 1830; - this.parameterdeclarationlist(0); - } - } - - this.state = 1834; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 1833; - this.match(CPP14Parser.Ellipsis); - } - } - + this.state = 1830; + this.parameterdeclarationlist(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); + } + + this.state = 1834; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { { - this.state = 1836; - this.parameterdeclarationlist(0); - this.state = 1837; - this.match(CPP14Parser.Comma); - this.state = 1838; - this.match(CPP14Parser.Ellipsis); + this.state = 1833; + this.match(CPP14Parser.Ellipsis); } - break; + } + + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1836; + this.parameterdeclarationlist(0); + this.state = 1837; + this.match(CPP14Parser.Comma); + this.state = 1838; + this.match(CPP14Parser.Ellipsis); + } + break; } } catch (re) { @@ -8623,39 +8623,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 1843; + { + this.state = 1843; + this.parameterdeclaration(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 1850; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 212, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new ParameterdeclarationlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_parameterdeclarationlist); + this.state = 1845; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1846; + this.match(CPP14Parser.Comma); + this.state = 1847; this.parameterdeclaration(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 1850; + this.state = 1852; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 212, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new ParameterdeclarationlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_parameterdeclarationlist); - this.state = 1845; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1846; - this.match(CPP14Parser.Comma); - this.state = 1847; - this.parameterdeclaration(); - } - } - } - this.state = 1852; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 212, this._ctx); - } + } } } catch (re) { @@ -8679,107 +8679,107 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1884; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 219, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 219, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1854; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1854; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1853; - this.attributespecifierseq(0); - } - } - - this.state = 1856; - this.declspecifierseq(); - this.state = 1857; - this.declarator(); + this.state = 1853; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1860; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1859; - this.attributespecifierseq(0); - } - } + } - this.state = 1862; - this.declspecifierseq(); - this.state = 1863; - this.declarator(); - this.state = 1864; - this.match(CPP14Parser.Assign); - this.state = 1865; - this.initializerclause(); + this.state = 1856; + this.declspecifierseq(); + this.state = 1857; + this.declarator(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1860; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1859; + this.attributespecifierseq(0); } - break; - case 3: - this.enterOuterAlt(localctx, 3); + } + + this.state = 1862; + this.declspecifierseq(); + this.state = 1863; + this.declarator(); + this.state = 1864; + this.match(CPP14Parser.Assign); + this.state = 1865; + this.initializerclause(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1868; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1868; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1867; - this.attributespecifierseq(0); - } - } + this.state = 1867; + this.attributespecifierseq(0); + } + } - this.state = 1870; - this.declspecifierseq(); - this.state = 1872; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 216, this._ctx)) { - case 1: - { - this.state = 1871; - this.abstractdeclarator(); - } - break; - } + this.state = 1870; + this.declspecifierseq(); + this.state = 1872; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 216, this._ctx) ) { + case 1: + { + this.state = 1871; + this.abstractdeclarator(); } break; - case 4: - this.enterOuterAlt(localctx, 4); + } + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1875; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1875; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1874; - this.attributespecifierseq(0); - } - } - - this.state = 1877; - this.declspecifierseq(); - this.state = 1879; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 19 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 4357) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { - { - this.state = 1878; - this.abstractdeclarator(); - } - } + this.state = 1874; + this.attributespecifierseq(0); + } + } - this.state = 1881; - this.match(CPP14Parser.Assign); - this.state = 1882; - this.initializerclause(); + this.state = 1877; + this.declspecifierseq(); + this.state = 1879; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===19 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 4357) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { + { + this.state = 1878; + this.abstractdeclarator(); } - break; + } + + this.state = 1881; + this.match(CPP14Parser.Assign); + this.state = 1882; + this.initializerclause(); + } + break; } } catch (re) { @@ -8803,40 +8803,40 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1887; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1886; - this.attributespecifierseq(0); - } + this.state = 1887; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1886; + this.attributespecifierseq(0); } + } - this.state = 1890; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 221, this._ctx)) { - case 1: - { - this.state = 1889; - this.declspecifierseq(); - } - break; + this.state = 1890; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 221, this._ctx) ) { + case 1: + { + this.state = 1889; + this.declspecifierseq(); } - this.state = 1892; - this.declarator(); - this.state = 1894; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 31 || _la === 46) { - { - this.state = 1893; - this.virtspecifierseq(0); - } + break; + } + this.state = 1892; + this.declarator(); + this.state = 1894; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===31 || _la===46) { + { + this.state = 1893; + this.virtspecifierseq(0); } + } - this.state = 1896; - this.functionbody(); + this.state = 1896; + this.functionbody(); } } catch (re) { @@ -8860,53 +8860,53 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1909; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 224, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1899; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1898; - this.ctorinitializer(); - } - } - - this.state = 1901; - this.compoundstatement(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1902; - this.functiontryblock(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 1903; - this.match(CPP14Parser.Assign); - this.state = 1904; - this.match(CPP14Parser.Default); - this.state = 1905; - this.match(CPP14Parser.Semi); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); + switch ( this._interp.adaptivePredict(this._input, 224, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1899; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { { - this.state = 1906; - this.match(CPP14Parser.Assign); - this.state = 1907; - this.match(CPP14Parser.Delete); - this.state = 1908; - this.match(CPP14Parser.Semi); + this.state = 1898; + this.ctorinitializer(); } - break; + } + + this.state = 1901; + this.compoundstatement(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1902; + this.functiontryblock(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 1903; + this.match(CPP14Parser.Assign); + this.state = 1904; + this.match(CPP14Parser.Default); + this.state = 1905; + this.match(CPP14Parser.Semi); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 1906; + this.match(CPP14Parser.Assign); + this.state = 1907; + this.match(CPP14Parser.Delete); + this.state = 1908; + this.match(CPP14Parser.Semi); + } + break; } } catch (re) { @@ -8930,27 +8930,27 @@ export class CPP14Parser extends antlr.Parser { this.state = 1916; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.LeftBrace: - case CPP14Parser.Assign: - this.enterOuterAlt(localctx, 1); - { - this.state = 1911; - this.braceorequalinitializer(); - } - break; - case CPP14Parser.LeftParen: - this.enterOuterAlt(localctx, 2); - { - this.state = 1912; - this.match(CPP14Parser.LeftParen); - this.state = 1913; - this.expressionlist(); - this.state = 1914; - this.match(CPP14Parser.RightParen); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.LeftBrace: + case CPP14Parser.Assign: + this.enterOuterAlt(localctx, 1); + { + this.state = 1911; + this.braceorequalinitializer(); + } + break; + case CPP14Parser.LeftParen: + this.enterOuterAlt(localctx, 2); + { + this.state = 1912; + this.match(CPP14Parser.LeftParen); + this.state = 1913; + this.expressionlist(); + this.state = 1914; + this.match(CPP14Parser.RightParen); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -8974,24 +8974,24 @@ export class CPP14Parser extends antlr.Parser { this.state = 1921; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Assign: - this.enterOuterAlt(localctx, 1); - { - this.state = 1918; - this.match(CPP14Parser.Assign); - this.state = 1919; - this.initializerclause(); - } - break; - case CPP14Parser.LeftBrace: - this.enterOuterAlt(localctx, 2); - { - this.state = 1920; - this.bracedinitlist(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Assign: + this.enterOuterAlt(localctx, 1); + { + this.state = 1918; + this.match(CPP14Parser.Assign); + this.state = 1919; + this.initializerclause(); + } + break; + case CPP14Parser.LeftBrace: + this.enterOuterAlt(localctx, 2); + { + this.state = 1920; + this.bracedinitlist(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -9015,74 +9015,74 @@ export class CPP14Parser extends antlr.Parser { this.state = 1925; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Alignof: - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Const_cast: - case CPP14Parser.Decltype: - case CPP14Parser.Delete: - case CPP14Parser.Double: - case CPP14Parser.Dynamic_cast: - case CPP14Parser.False: - case CPP14Parser.Float: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.New: - case CPP14Parser.Noexcept: - case CPP14Parser.Nullptr: - case CPP14Parser.Operator: - case CPP14Parser.Reinterpret_cast: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Sizeof: - case CPP14Parser.Static_cast: - case CPP14Parser.This: - case CPP14Parser.Throw: - case CPP14Parser.True: - case CPP14Parser.Typeid: - case CPP14Parser.Typename: - case CPP14Parser.Unsigned: - case CPP14Parser.Void: - case CPP14Parser.Wchar: - case CPP14Parser.LeftParen: - case CPP14Parser.LeftBracket: - case CPP14Parser.Plus: - case CPP14Parser.Minus: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.Or: - case CPP14Parser.Tilde: - case CPP14Parser.Not: - case CPP14Parser.PlusPlus: - case CPP14Parser.MinusMinus: - case CPP14Parser.Doublecolon: - case CPP14Parser.Identifier: - case CPP14Parser.Integerliteral: - case CPP14Parser.Characterliteral: - case CPP14Parser.Floatingliteral: - case CPP14Parser.Stringliteral: - case CPP14Parser.Userdefinedintegerliteral: - case CPP14Parser.Userdefinedfloatingliteral: - case CPP14Parser.Userdefinedstringliteral: - case CPP14Parser.Userdefinedcharacterliteral: - this.enterOuterAlt(localctx, 1); - { - this.state = 1923; - this.assignmentexpression(); - } - break; - case CPP14Parser.LeftBrace: - this.enterOuterAlt(localctx, 2); - { - this.state = 1924; - this.bracedinitlist(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Alignof: + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Const_cast: + case CPP14Parser.Decltype: + case CPP14Parser.Delete: + case CPP14Parser.Double: + case CPP14Parser.Dynamic_cast: + case CPP14Parser.False: + case CPP14Parser.Float: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.New: + case CPP14Parser.Noexcept: + case CPP14Parser.Nullptr: + case CPP14Parser.Operator: + case CPP14Parser.Reinterpret_cast: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Sizeof: + case CPP14Parser.Static_cast: + case CPP14Parser.This: + case CPP14Parser.Throw: + case CPP14Parser.True: + case CPP14Parser.Typeid: + case CPP14Parser.Typename: + case CPP14Parser.Unsigned: + case CPP14Parser.Void: + case CPP14Parser.Wchar: + case CPP14Parser.LeftParen: + case CPP14Parser.LeftBracket: + case CPP14Parser.Plus: + case CPP14Parser.Minus: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.Or: + case CPP14Parser.Tilde: + case CPP14Parser.Not: + case CPP14Parser.PlusPlus: + case CPP14Parser.MinusMinus: + case CPP14Parser.Doublecolon: + case CPP14Parser.Identifier: + case CPP14Parser.Integerliteral: + case CPP14Parser.Characterliteral: + case CPP14Parser.Floatingliteral: + case CPP14Parser.Stringliteral: + case CPP14Parser.Userdefinedintegerliteral: + case CPP14Parser.Userdefinedfloatingliteral: + case CPP14Parser.Userdefinedstringliteral: + case CPP14Parser.Userdefinedcharacterliteral: + this.enterOuterAlt(localctx, 1); + { + this.state = 1923; + this.assignmentexpression(); + } + break; + case CPP14Parser.LeftBrace: + this.enterOuterAlt(localctx, 2); + { + this.state = 1924; + this.bracedinitlist(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -9117,59 +9117,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 1928; + this.initializerclause(); + this.state = 1930; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 228, this._ctx) ) { + case 1: { - this.state = 1928; + this.state = 1929; + this.match(CPP14Parser.Ellipsis); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 1940; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 230, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new InitializerlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_initializerlist); + this.state = 1932; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 1933; + this.match(CPP14Parser.Comma); + this.state = 1934; this.initializerclause(); - this.state = 1930; + this.state = 1936; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 228, this._ctx)) { - case 1: - { - this.state = 1929; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 1940; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 230, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 229, this._ctx) ) { + case 1: { - { - localctx = new InitializerlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_initializerlist); - this.state = 1932; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 1933; - this.match(CPP14Parser.Comma); - this.state = 1934; - this.initializerclause(); - this.state = 1936; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 229, this._ctx)) { - case 1: - { - this.state = 1935; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } + this.state = 1935; + this.match(CPP14Parser.Ellipsis); } + break; + } + } } - this.state = 1942; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 230, this._ctx); } + this.state = 1942; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 230, this._ctx); + } } } catch (re) { @@ -9193,37 +9193,37 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1952; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 232, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1943; - this.match(CPP14Parser.LeftBrace); - this.state = 1944; - this.initializerlist(0); - this.state = 1946; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 115) { - { - this.state = 1945; - this.match(CPP14Parser.Comma); - } - } - - this.state = 1948; - this.match(CPP14Parser.RightBrace); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 232, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1943; + this.match(CPP14Parser.LeftBrace); + this.state = 1944; + this.initializerlist(0); + this.state = 1946; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===115) { { - this.state = 1950; - this.match(CPP14Parser.LeftBrace); - this.state = 1951; - this.match(CPP14Parser.RightBrace); + this.state = 1945; + this.match(CPP14Parser.Comma); } - break; + } + + this.state = 1948; + this.match(CPP14Parser.RightBrace); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1950; + this.match(CPP14Parser.LeftBrace); + this.state = 1951; + this.match(CPP14Parser.RightBrace); + } + break; } } catch (re) { @@ -9246,21 +9246,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1956; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 233, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 1954; - this.match(CPP14Parser.Identifier); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 1955; - this.simpletemplateid(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 233, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1954; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1955; + this.simpletemplateid(); + } + break; } } catch (re) { @@ -9284,22 +9284,22 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1958; - this.classhead(); - this.state = 1959; - this.match(CPP14Parser.LeftBrace); - this.state = 1961; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { - { - this.state = 1960; - this.memberspecification(); - } + this.state = 1958; + this.classhead(); + this.state = 1959; + this.match(CPP14Parser.LeftBrace); + this.state = 1961; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { + { + this.state = 1960; + this.memberspecification(); } + } - this.state = 1963; - this.match(CPP14Parser.RightBrace); + this.state = 1963; + this.match(CPP14Parser.RightBrace); } } catch (re) { @@ -9323,73 +9323,73 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 1983; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 240, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 240, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 1965; + this.classkey(); + this.state = 1967; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 1965; - this.classkey(); - this.state = 1967; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1966; - this.attributespecifierseq(0); - } - } - - this.state = 1969; - this.classheadname(); - this.state = 1971; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 31) { - { - this.state = 1970; - this.classvirtspecifier(); - } - } - - this.state = 1974; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1973; - this.baseclause(); - } - } + this.state = 1966; + this.attributespecifierseq(0); + } + } + this.state = 1969; + this.classheadname(); + this.state = 1971; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===31) { + { + this.state = 1970; + this.classvirtspecifier(); } - break; - case 2: - this.enterOuterAlt(localctx, 2); + } + + this.state = 1974; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { { - this.state = 1976; - this.classkey(); - this.state = 1978; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 1977; - this.attributespecifierseq(0); - } - } + this.state = 1973; + this.baseclause(); + } + } - this.state = 1981; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 1980; - this.baseclause(); - } - } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 1976; + this.classkey(); + this.state = 1978; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 1977; + this.attributespecifierseq(0); + } + } + this.state = 1981; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { + { + this.state = 1980; + this.baseclause(); } - break; + } + + } + break; } } catch (re) { @@ -9412,18 +9412,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1986; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 241, this._ctx)) { - case 1: - { - this.state = 1985; - this.nestednamespecifier(0); - } - break; + this.state = 1986; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 241, this._ctx) ) { + case 1: + { + this.state = 1985; + this.nestednamespecifier(0); } - this.state = 1988; - this.classname(); + break; + } + this.state = 1988; + this.classname(); } } catch (re) { @@ -9446,8 +9446,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1990; - this.match(CPP14Parser.Final); + this.state = 1990; + this.match(CPP14Parser.Final); } } catch (re) { @@ -9471,15 +9471,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 1992; - _la = this._input.LA(1); - if (!(_la === 14 || _la === 59 || _la === 70)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 1992; + _la = this._input.LA(1); + if(!(_la===14 || _la===59 || _la===70)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -9504,94 +9504,94 @@ export class CPP14Parser extends antlr.Parser { this.state = 2003; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Alignas: - case CPP14Parser.Auto: - case CPP14Parser.Bool: - case CPP14Parser.Char: - case CPP14Parser.Char16: - case CPP14Parser.Char32: - case CPP14Parser.Class: - case CPP14Parser.Const: - case CPP14Parser.Constexpr: - case CPP14Parser.Decltype: - case CPP14Parser.Double: - case CPP14Parser.Enum: - case CPP14Parser.Explicit: - case CPP14Parser.Extern: - case CPP14Parser.Float: - case CPP14Parser.Friend: - case CPP14Parser.Inline: - case CPP14Parser.Int: - case CPP14Parser.Long: - case CPP14Parser.Mutable: - case CPP14Parser.Operator: - case CPP14Parser.Register: - case CPP14Parser.Short: - case CPP14Parser.Signed: - case CPP14Parser.Static: - case CPP14Parser.Static_assert: - case CPP14Parser.Struct: - case CPP14Parser.Template: - case CPP14Parser.Thread_local: - case CPP14Parser.Typedef: - case CPP14Parser.Typename: - case CPP14Parser.Union: - case CPP14Parser.Unsigned: - case CPP14Parser.Using: - case CPP14Parser.Virtual: - case CPP14Parser.Void: - case CPP14Parser.Volatile: - case CPP14Parser.Wchar: - case CPP14Parser.LeftParen: - case CPP14Parser.LeftBracket: - case CPP14Parser.Star: - case CPP14Parser.And: - case CPP14Parser.Tilde: - case CPP14Parser.AndAnd: - case CPP14Parser.Colon: - case CPP14Parser.Doublecolon: - case CPP14Parser.Semi: - case CPP14Parser.Ellipsis: - case CPP14Parser.Identifier: - this.enterOuterAlt(localctx, 1); + case CPP14Parser.Alignas: + case CPP14Parser.Auto: + case CPP14Parser.Bool: + case CPP14Parser.Char: + case CPP14Parser.Char16: + case CPP14Parser.Char32: + case CPP14Parser.Class: + case CPP14Parser.Const: + case CPP14Parser.Constexpr: + case CPP14Parser.Decltype: + case CPP14Parser.Double: + case CPP14Parser.Enum: + case CPP14Parser.Explicit: + case CPP14Parser.Extern: + case CPP14Parser.Float: + case CPP14Parser.Friend: + case CPP14Parser.Inline: + case CPP14Parser.Int: + case CPP14Parser.Long: + case CPP14Parser.Mutable: + case CPP14Parser.Operator: + case CPP14Parser.Register: + case CPP14Parser.Short: + case CPP14Parser.Signed: + case CPP14Parser.Static: + case CPP14Parser.Static_assert: + case CPP14Parser.Struct: + case CPP14Parser.Template: + case CPP14Parser.Thread_local: + case CPP14Parser.Typedef: + case CPP14Parser.Typename: + case CPP14Parser.Union: + case CPP14Parser.Unsigned: + case CPP14Parser.Using: + case CPP14Parser.Virtual: + case CPP14Parser.Void: + case CPP14Parser.Volatile: + case CPP14Parser.Wchar: + case CPP14Parser.LeftParen: + case CPP14Parser.LeftBracket: + case CPP14Parser.Star: + case CPP14Parser.And: + case CPP14Parser.Tilde: + case CPP14Parser.AndAnd: + case CPP14Parser.Colon: + case CPP14Parser.Doublecolon: + case CPP14Parser.Semi: + case CPP14Parser.Ellipsis: + case CPP14Parser.Identifier: + this.enterOuterAlt(localctx, 1); + { + this.state = 1994; + this.memberdeclaration(); + this.state = 1996; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { { - this.state = 1994; - this.memberdeclaration(); - this.state = 1996; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { - { - this.state = 1995; - this.memberspecification(); - } - } - + this.state = 1995; + this.memberspecification(); } - break; - case CPP14Parser.Private: - case CPP14Parser.Protected: - case CPP14Parser.Public: - this.enterOuterAlt(localctx, 2); - { - this.state = 1998; - this.accessspecifier(); - this.state = 1999; - this.match(CPP14Parser.Colon); - this.state = 2001; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { - { - this.state = 2000; - this.memberspecification(); - } - } + } + } + break; + case CPP14Parser.Private: + case CPP14Parser.Protected: + case CPP14Parser.Public: + this.enterOuterAlt(localctx, 2); + { + this.state = 1998; + this.accessspecifier(); + this.state = 1999; + this.match(CPP14Parser.Colon); + this.state = 2001; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 747239624) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 2875695589) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 42478589) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 26369) !== 0)) { + { + this.state = 2000; + this.memberspecification(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -9615,86 +9615,86 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2021; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 248, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 248, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2006; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 245, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 2006; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 245, this._ctx)) { - case 1: - { - this.state = 2005; - this.attributespecifierseq(0); - } - break; - } - this.state = 2009; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 246, this._ctx)) { - case 1: - { - this.state = 2008; - this.declspecifierseq(); - } - break; - } - this.state = 2012; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 19 || _la === 45 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 20741) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25345) !== 0)) { - { - this.state = 2011; - this.memberdeclaratorlist(0); - } - } - - this.state = 2014; - this.match(CPP14Parser.Semi); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2015; - this.functiondefinition(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 2016; - this.usingdeclaration(); + this.state = 2005; + this.attributespecifierseq(0); } break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 2017; - this.static_assertdeclaration(); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 2018; - this.templatedeclaration(); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); + } + this.state = 2009; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 246, this._ctx) ) { + case 1: { - this.state = 2019; - this.aliasdeclaration(); + this.state = 2008; + this.declspecifierseq(); } break; - case 7: - this.enterOuterAlt(localctx, 7); + } + this.state = 2012; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===19 || _la===45 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 20741) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25345) !== 0)) { { - this.state = 2020; - this.emptydeclaration(); + this.state = 2011; + this.memberdeclaratorlist(0); } - break; + } + + this.state = 2014; + this.match(CPP14Parser.Semi); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2015; + this.functiondefinition(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2016; + this.usingdeclaration(); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 2017; + this.static_assertdeclaration(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 2018; + this.templatedeclaration(); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 2019; + this.aliasdeclaration(); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 2020; + this.emptydeclaration(); + } + break; } } catch (re) { @@ -9729,39 +9729,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 2024; + { + this.state = 2024; + this.memberdeclarator(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 2031; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 249, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new MemberdeclaratorlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_memberdeclaratorlist); + this.state = 2026; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2027; + this.match(CPP14Parser.Comma); + this.state = 2028; this.memberdeclarator(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 2031; + this.state = 2033; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 249, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new MemberdeclaratorlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_memberdeclaratorlist); - this.state = 2026; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2027; - this.match(CPP14Parser.Comma); - this.state = 2028; - this.memberdeclarator(); - } - } - } - this.state = 2033; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 249, this._ctx); - } + } } } catch (re) { @@ -9785,80 +9785,80 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2053; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 255, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 255, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2034; + this.declarator(); + this.state = 2036; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 250, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 2034; - this.declarator(); - this.state = 2036; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 250, this._ctx)) { - case 1: - { - this.state = 2035; - this.virtspecifierseq(0); - } - break; - } - this.state = 2039; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 251, this._ctx)) { - case 1: - { - this.state = 2038; - this.purespecifier(); - } - break; - } + this.state = 2035; + this.virtspecifierseq(0); } break; - case 2: - this.enterOuterAlt(localctx, 2); + } + this.state = 2039; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 251, this._ctx) ) { + case 1: { - this.state = 2041; - this.declarator(); - this.state = 2043; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 252, this._ctx)) { - case 1: - { - this.state = 2042; - this.braceorequalinitializer(); - } - break; - } + this.state = 2038; + this.purespecifier(); } break; - case 3: - this.enterOuterAlt(localctx, 3); + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2041; + this.declarator(); + this.state = 2043; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 252, this._ctx) ) { + case 1: { - this.state = 2046; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 2045; - this.match(CPP14Parser.Identifier); - } - } - - this.state = 2049; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2048; - this.attributespecifierseq(0); - } - } - - this.state = 2051; - this.match(CPP14Parser.Colon); - this.state = 2052; - this.constantexpression(); + this.state = 2042; + this.braceorequalinitializer(); } break; + } + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2046; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { + { + this.state = 2045; + this.match(CPP14Parser.Identifier); + } + } + + this.state = 2049; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 2048; + this.attributespecifierseq(0); + } + } + + this.state = 2051; + this.match(CPP14Parser.Colon); + this.state = 2052; + this.constantexpression(); + } + break; } } catch (re) { @@ -9893,37 +9893,37 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 2056; + { + this.state = 2056; + this.virtspecifier(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 2062; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 256, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new VirtspecifierseqContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_virtspecifierseq); + this.state = 2058; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2059; this.virtspecifier(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 2062; + this.state = 2064; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 256, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new VirtspecifierseqContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_virtspecifierseq); - this.state = 2058; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2059; - this.virtspecifier(); - } - } - } - this.state = 2064; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 256, this._ctx); - } + } } } catch (re) { @@ -9947,15 +9947,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2065; - _la = this._input.LA(1); - if (!(_la === 31 || _la === 46)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 2065; + _la = this._input.LA(1); + if(!(_la===31 || _la===46)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -9978,11 +9978,11 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2067; - this.match(CPP14Parser.Assign); - this.state = 2068; - localctx._val = this.match(CPP14Parser.Octalliteral); - if ((localctx._val != null ? localctx._val.text : undefined) != "0") throw new antlr.InputMismatchException(this); + this.state = 2067; + this.match(CPP14Parser.Assign); + this.state = 2068; + localctx._val = this.match(CPP14Parser.Octalliteral); + if((localctx._val != null ? localctx._val.text : undefined) != "0") throw new antlr.InputMismatchException(this); } } catch (re) { @@ -10005,10 +10005,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2071; - this.match(CPP14Parser.Colon); - this.state = 2072; - this.basespecifierlist(0); + this.state = 2071; + this.match(CPP14Parser.Colon); + this.state = 2072; + this.basespecifierlist(0); } } catch (re) { @@ -10043,59 +10043,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 2075; + this.basespecifier(); + this.state = 2077; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 257, this._ctx) ) { + case 1: { - this.state = 2075; + this.state = 2076; + this.match(CPP14Parser.Ellipsis); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 2087; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 259, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new BasespecifierlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_basespecifierlist); + this.state = 2079; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2080; + this.match(CPP14Parser.Comma); + this.state = 2081; this.basespecifier(); - this.state = 2077; + this.state = 2083; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 257, this._ctx)) { - case 1: - { - this.state = 2076; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 2087; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 259, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 258, this._ctx) ) { + case 1: { - { - localctx = new BasespecifierlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_basespecifierlist); - this.state = 2079; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2080; - this.match(CPP14Parser.Comma); - this.state = 2081; - this.basespecifier(); - this.state = 2083; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 258, this._ctx)) { - case 1: - { - this.state = 2082; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } + this.state = 2082; + this.match(CPP14Parser.Ellipsis); } + break; + } + } } - this.state = 2089; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 259, this._ctx); } + this.state = 2089; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 259, this._ctx); + } } } catch (re) { @@ -10119,82 +10119,82 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2111; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 265, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 265, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2091; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 2091; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2090; - this.attributespecifierseq(0); - } - } - - this.state = 2093; - this.basetypespecifier(); + this.state = 2090; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2095; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2094; - this.attributespecifierseq(0); - } - } - - this.state = 2097; - this.match(CPP14Parser.Virtual); - this.state = 2099; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & 7) !== 0)) { - { - this.state = 2098; - this.accessspecifier(); - } - } + } - this.state = 2101; - this.basetypespecifier(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); + this.state = 2093; + this.basetypespecifier(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2095; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 2103; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2102; - this.attributespecifierseq(0); - } - } + this.state = 2094; + this.attributespecifierseq(0); + } + } - this.state = 2105; - this.accessspecifier(); - this.state = 2107; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 73) { - { - this.state = 2106; - this.match(CPP14Parser.Virtual); - } - } + this.state = 2097; + this.match(CPP14Parser.Virtual); + this.state = 2099; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & 7) !== 0)) { + { + this.state = 2098; + this.accessspecifier(); + } + } + + this.state = 2101; + this.basetypespecifier(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2103; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 2102; + this.attributespecifierseq(0); + } + } - this.state = 2109; - this.basetypespecifier(); + this.state = 2105; + this.accessspecifier(); + this.state = 2107; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===73) { + { + this.state = 2106; + this.match(CPP14Parser.Virtual); } - break; + } + + this.state = 2109; + this.basetypespecifier(); + } + break; } } catch (re) { @@ -10217,31 +10217,31 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2118; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 267, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 267, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2114; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 266, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2114; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 266, this._ctx)) { - case 1: - { - this.state = 2113; - this.nestednamespecifier(0); - } - break; - } - this.state = 2116; - this.classname(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); { - this.state = 2117; - this.decltypespecifier(); + this.state = 2113; + this.nestednamespecifier(0); } break; + } + this.state = 2116; + this.classname(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2117; + this.decltypespecifier(); + } + break; } } catch (re) { @@ -10264,8 +10264,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2120; - this.classordecltype(); + this.state = 2120; + this.classordecltype(); } } catch (re) { @@ -10289,15 +10289,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2122; - _la = this._input.LA(1); - if (!(((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & 7) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 2122; + _la = this._input.LA(1); + if(!(((((_la - 47)) & ~0x1F) === 0 && ((1 << (_la - 47)) & 7) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -10320,10 +10320,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2124; - this.match(CPP14Parser.Operator); - this.state = 2125; - this.conversiontypeid(); + this.state = 2124; + this.match(CPP14Parser.Operator); + this.state = 2125; + this.conversiontypeid(); } } catch (re) { @@ -10346,18 +10346,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2127; - this.typespecifierseq(); - this.state = 2129; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 268, this._ctx)) { - case 1: - { - this.state = 2128; - this.conversiondeclarator(); - } - break; + this.state = 2127; + this.typespecifierseq(); + this.state = 2129; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 268, this._ctx) ) { + case 1: + { + this.state = 2128; + this.conversiondeclarator(); } + break; + } } } catch (re) { @@ -10380,18 +10380,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2131; - this.ptroperator(); - this.state = 2133; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 269, this._ctx)) { - case 1: - { - this.state = 2132; - this.conversiondeclarator(); - } - break; + this.state = 2131; + this.ptroperator(); + this.state = 2133; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 269, this._ctx) ) { + case 1: + { + this.state = 2132; + this.conversiondeclarator(); } + break; + } } } catch (re) { @@ -10414,10 +10414,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2135; - this.match(CPP14Parser.Colon); - this.state = 2136; - this.meminitializerlist(); + this.state = 2135; + this.match(CPP14Parser.Colon); + this.state = 2136; + this.meminitializerlist(); } } catch (re) { @@ -10441,45 +10441,45 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2149; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 272, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 272, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2138; + this.meminitializer(); + this.state = 2140; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { { - this.state = 2138; - this.meminitializer(); - this.state = 2140; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 2139; - this.match(CPP14Parser.Ellipsis); - } - } - + this.state = 2139; + this.match(CPP14Parser.Ellipsis); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2142; - this.meminitializer(); - this.state = 2144; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 124) { - { - this.state = 2143; - this.match(CPP14Parser.Ellipsis); - } - } + } - this.state = 2146; - this.match(CPP14Parser.Comma); - this.state = 2147; - this.meminitializerlist(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2142; + this.meminitializer(); + this.state = 2144; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===124) { + { + this.state = 2143; + this.match(CPP14Parser.Ellipsis); } - break; + } + + this.state = 2146; + this.match(CPP14Parser.Comma); + this.state = 2147; + this.meminitializerlist(); + } + break; } } catch (re) { @@ -10503,37 +10503,37 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2161; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 274, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2151; - this.meminitializerid(); - this.state = 2152; - this.match(CPP14Parser.LeftParen); - this.state = 2154; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 2153; - this.expressionlist(); - } - } - - this.state = 2156; - this.match(CPP14Parser.RightParen); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); + switch ( this._interp.adaptivePredict(this._input, 274, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2151; + this.meminitializerid(); + this.state = 2152; + this.match(CPP14Parser.LeftParen); + this.state = 2154; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1101674704) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1156070593) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 1014322355) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 2158; - this.meminitializerid(); - this.state = 2159; - this.bracedinitlist(); + this.state = 2153; + this.expressionlist(); } - break; + } + + this.state = 2156; + this.match(CPP14Parser.RightParen); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2158; + this.meminitializerid(); + this.state = 2159; + this.bracedinitlist(); + } + break; } } catch (re) { @@ -10556,21 +10556,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2165; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 275, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2163; - this.classordecltype(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2164; - this.match(CPP14Parser.Identifier); - } - break; + switch ( this._interp.adaptivePredict(this._input, 275, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2163; + this.classordecltype(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2164; + this.match(CPP14Parser.Identifier); + } + break; } } catch (re) { @@ -10593,10 +10593,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2167; - this.match(CPP14Parser.Operator); - this.state = 2168; - this.operator(); + this.state = 2167; + this.match(CPP14Parser.Operator); + this.state = 2168; + this.operator(); } } catch (re) { @@ -10619,27 +10619,27 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2175; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 276, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2170; - this.match(CPP14Parser.Operator); - this.state = 2171; - this.match(CPP14Parser.Stringliteral); - this.state = 2172; - this.match(CPP14Parser.Identifier); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2173; - this.match(CPP14Parser.Operator); - this.state = 2174; - this.match(CPP14Parser.Userdefinedstringliteral); - } - break; + switch ( this._interp.adaptivePredict(this._input, 276, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2170; + this.match(CPP14Parser.Operator); + this.state = 2171; + this.match(CPP14Parser.Stringliteral); + this.state = 2172; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2173; + this.match(CPP14Parser.Operator); + this.state = 2174; + this.match(CPP14Parser.Userdefinedstringliteral); + } + break; } } catch (re) { @@ -10662,16 +10662,16 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2177; - this.match(CPP14Parser.Template); - this.state = 2178; - this.match(CPP14Parser.Less); - this.state = 2179; - this.templateparameterlist(0); - this.state = 2180; - this.match(CPP14Parser.Greater); - this.state = 2181; - this.declaration(); + this.state = 2177; + this.match(CPP14Parser.Template); + this.state = 2178; + this.match(CPP14Parser.Less); + this.state = 2179; + this.templateparameterlist(0); + this.state = 2180; + this.match(CPP14Parser.Greater); + this.state = 2181; + this.declaration(); } } catch (re) { @@ -10706,39 +10706,39 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - { - this.state = 2184; + { + this.state = 2184; + this.templateparameter(); + } + this._ctx.stop = this._input.LT(-1); + this.state = 2191; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 277, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new TemplateparameterlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_templateparameterlist); + this.state = 2186; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2187; + this.match(CPP14Parser.Comma); + this.state = 2188; this.templateparameter(); + } + } } - this._ctx.stop = this._input.LT(-1); - this.state = 2191; + this.state = 2193; this._errHandler.sync(this); _alt = this._interp.adaptivePredict(this._input, 277, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; - { - { - localctx = new TemplateparameterlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_templateparameterlist); - this.state = 2186; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2187; - this.match(CPP14Parser.Comma); - this.state = 2188; - this.templateparameter(); - } - } - } - this.state = 2193; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 277, this._ctx); - } + } } } catch (re) { @@ -10761,21 +10761,21 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2196; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 278, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2194; - this.typeparameter(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2195; - this.parameterdeclaration(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 278, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2194; + this.typeparameter(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2195; + this.parameterdeclaration(); + } + break; } } catch (re) { @@ -10799,167 +10799,167 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2246; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 288, this._ctx)) { + switch ( this._interp.adaptivePredict(this._input, 288, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2198; + this.match(CPP14Parser.Class); + this.state = 2200; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 279, this._ctx) ) { case 1: - this.enterOuterAlt(localctx, 1); { - this.state = 2198; - this.match(CPP14Parser.Class); - this.state = 2200; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 279, this._ctx)) { - case 1: - { - this.state = 2199; - this.match(CPP14Parser.Ellipsis); - } - break; - } - this.state = 2203; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 280, this._ctx)) { - case 1: - { - this.state = 2202; - this.match(CPP14Parser.Identifier); - } - break; - } + this.state = 2199; + this.match(CPP14Parser.Ellipsis); } break; - case 2: - this.enterOuterAlt(localctx, 2); + } + this.state = 2203; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 280, this._ctx) ) { + case 1: { - this.state = 2205; - this.match(CPP14Parser.Class); - this.state = 2207; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 2206; - this.match(CPP14Parser.Identifier); - } - } + this.state = 2202; + this.match(CPP14Parser.Identifier); + } + break; + } + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2205; + this.match(CPP14Parser.Class); + this.state = 2207; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { + { + this.state = 2206; + this.match(CPP14Parser.Identifier); + } + } - this.state = 2209; - this.match(CPP14Parser.Assign); - this.state = 2210; - this.typeid(); + this.state = 2209; + this.match(CPP14Parser.Assign); + this.state = 2210; + this.typeid(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2211; + this.match(CPP14Parser.Typename); + this.state = 2213; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 282, this._ctx) ) { + case 1: + { + this.state = 2212; + this.match(CPP14Parser.Ellipsis); } break; - case 3: - this.enterOuterAlt(localctx, 3); + } + this.state = 2216; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 283, this._ctx) ) { + case 1: { - this.state = 2211; - this.match(CPP14Parser.Typename); - this.state = 2213; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 282, this._ctx)) { - case 1: - { - this.state = 2212; - this.match(CPP14Parser.Ellipsis); - } - break; - } - this.state = 2216; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 283, this._ctx)) { - case 1: - { - this.state = 2215; - this.match(CPP14Parser.Identifier); - } - break; - } + this.state = 2215; + this.match(CPP14Parser.Identifier); } break; - case 4: - this.enterOuterAlt(localctx, 4); + } + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 2218; + this.match(CPP14Parser.Typename); + this.state = 2220; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { + { + this.state = 2219; + this.match(CPP14Parser.Identifier); + } + } + + this.state = 2222; + this.match(CPP14Parser.Assign); + this.state = 2223; + this.typeid(); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 2224; + this.match(CPP14Parser.Template); + this.state = 2225; + this.match(CPP14Parser.Less); + this.state = 2226; + this.templateparameterlist(0); + this.state = 2227; + this.match(CPP14Parser.Greater); + this.state = 2228; + this.match(CPP14Parser.Class); + this.state = 2230; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 285, this._ctx) ) { + case 1: { - this.state = 2218; - this.match(CPP14Parser.Typename); - this.state = 2220; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 2219; - this.match(CPP14Parser.Identifier); - } - } - - this.state = 2222; - this.match(CPP14Parser.Assign); - this.state = 2223; - this.typeid(); + this.state = 2229; + this.match(CPP14Parser.Ellipsis); } break; - case 5: - this.enterOuterAlt(localctx, 5); + } + this.state = 2233; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 286, this._ctx) ) { + case 1: { - this.state = 2224; - this.match(CPP14Parser.Template); - this.state = 2225; - this.match(CPP14Parser.Less); - this.state = 2226; - this.templateparameterlist(0); - this.state = 2227; - this.match(CPP14Parser.Greater); - this.state = 2228; - this.match(CPP14Parser.Class); - this.state = 2230; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 285, this._ctx)) { - case 1: - { - this.state = 2229; - this.match(CPP14Parser.Ellipsis); - } - break; - } - this.state = 2233; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 286, this._ctx)) { - case 1: - { - this.state = 2232; - this.match(CPP14Parser.Identifier); - } - break; - } + this.state = 2232; + this.match(CPP14Parser.Identifier); } break; - case 6: - this.enterOuterAlt(localctx, 6); + } + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 2235; + this.match(CPP14Parser.Template); + this.state = 2236; + this.match(CPP14Parser.Less); + this.state = 2237; + this.templateparameterlist(0); + this.state = 2238; + this.match(CPP14Parser.Greater); + this.state = 2239; + this.match(CPP14Parser.Class); + this.state = 2241; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===125) { { - this.state = 2235; - this.match(CPP14Parser.Template); - this.state = 2236; - this.match(CPP14Parser.Less); - this.state = 2237; - this.templateparameterlist(0); - this.state = 2238; - this.match(CPP14Parser.Greater); - this.state = 2239; - this.match(CPP14Parser.Class); - this.state = 2241; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 125) { - { - this.state = 2240; - this.match(CPP14Parser.Identifier); - } - } - - this.state = 2243; - this.match(CPP14Parser.Assign); - this.state = 2244; - this.idexpression(); + this.state = 2240; + this.match(CPP14Parser.Identifier); } - break; + } + + this.state = 2243; + this.match(CPP14Parser.Assign); + this.state = 2244; + this.idexpression(); + } + break; } } catch (re) { @@ -10983,22 +10983,22 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2248; - this.templatename(); - this.state = 2249; - this.match(CPP14Parser.Less); - this.state = 2251; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 2250; - this.templateargumentlist(0); - } + this.state = 2248; + this.templatename(); + this.state = 2249; + this.match(CPP14Parser.Less); + this.state = 2251; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { + { + this.state = 2250; + this.templateargumentlist(0); } + } - this.state = 2253; - this.match(CPP14Parser.Greater); + this.state = 2253; + this.match(CPP14Parser.Greater); } } catch (re) { @@ -11022,56 +11022,56 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2270; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 292, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 292, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2255; + this.simpletemplateid(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2256; + this.operatorfunctionid(); + this.state = 2257; + this.match(CPP14Parser.Less); + this.state = 2259; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 2255; - this.simpletemplateid(); + this.state = 2258; + this.templateargumentlist(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2256; - this.operatorfunctionid(); - this.state = 2257; - this.match(CPP14Parser.Less); - this.state = 2259; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 2258; - this.templateargumentlist(0); - } - } + } - this.state = 2261; - this.match(CPP14Parser.Greater); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); + this.state = 2261; + this.match(CPP14Parser.Greater); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2263; + this.literaloperatorid(); + this.state = 2264; + this.match(CPP14Parser.Less); + this.state = 2266; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { { - this.state = 2263; - this.literaloperatorid(); - this.state = 2264; - this.match(CPP14Parser.Less); - this.state = 2266; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1168832720) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1290288321) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 507031161) !== 0) || ((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 66596995) !== 0)) { - { - this.state = 2265; - this.templateargumentlist(0); - } - } - - this.state = 2268; - this.match(CPP14Parser.Greater); + this.state = 2265; + this.templateargumentlist(0); } - break; + } + + this.state = 2268; + this.match(CPP14Parser.Greater); + } + break; } } catch (re) { @@ -11094,8 +11094,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2272; - this.match(CPP14Parser.Identifier); + this.state = 2272; + this.match(CPP14Parser.Identifier); } } catch (re) { @@ -11130,59 +11130,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 2275; + this.templateargument(); + this.state = 2277; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 293, this._ctx) ) { + case 1: { - this.state = 2275; + this.state = 2276; + this.match(CPP14Parser.Ellipsis); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 2287; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 295, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new TemplateargumentlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_templateargumentlist); + this.state = 2279; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2280; + this.match(CPP14Parser.Comma); + this.state = 2281; this.templateargument(); - this.state = 2277; + this.state = 2283; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 293, this._ctx)) { - case 1: - { - this.state = 2276; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 2287; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 295, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 294, this._ctx) ) { + case 1: { - { - localctx = new TemplateargumentlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_templateargumentlist); - this.state = 2279; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2280; - this.match(CPP14Parser.Comma); - this.state = 2281; - this.templateargument(); - this.state = 2283; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 294, this._ctx)) { - case 1: - { - this.state = 2282; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } + this.state = 2282; + this.match(CPP14Parser.Ellipsis); } + break; + } + } } - this.state = 2289; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 295, this._ctx); } + this.state = 2289; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 295, this._ctx); + } } } catch (re) { @@ -11205,28 +11205,28 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2293; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 296, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2290; - this.typeid(); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2291; - this.constantexpression(); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 2292; - this.idexpression(); - } - break; + switch ( this._interp.adaptivePredict(this._input, 296, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2290; + this.typeid(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2291; + this.constantexpression(); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2292; + this.idexpression(); + } + break; } } catch (re) { @@ -11250,39 +11250,39 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2306; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 298, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 298, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2295; + this.match(CPP14Parser.Typename); + this.state = 2296; + this.nestednamespecifier(0); + this.state = 2297; + this.match(CPP14Parser.Identifier); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2299; + this.match(CPP14Parser.Typename); + this.state = 2300; + this.nestednamespecifier(0); + this.state = 2302; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===61) { { - this.state = 2295; - this.match(CPP14Parser.Typename); - this.state = 2296; - this.nestednamespecifier(0); - this.state = 2297; - this.match(CPP14Parser.Identifier); + this.state = 2301; + this.match(CPP14Parser.Template); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2299; - this.match(CPP14Parser.Typename); - this.state = 2300; - this.nestednamespecifier(0); - this.state = 2302; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 61) { - { - this.state = 2301; - this.match(CPP14Parser.Template); - } - } + } - this.state = 2304; - this.simpletemplateid(); - } - break; + this.state = 2304; + this.simpletemplateid(); + } + break; } } catch (re) { @@ -11306,20 +11306,20 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2309; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 29) { - { - this.state = 2308; - this.match(CPP14Parser.Extern); - } + this.state = 2309; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===29) { + { + this.state = 2308; + this.match(CPP14Parser.Extern); } + } - this.state = 2311; - this.match(CPP14Parser.Template); - this.state = 2312; - this.declaration(); + this.state = 2311; + this.match(CPP14Parser.Template); + this.state = 2312; + this.declaration(); } } catch (re) { @@ -11342,14 +11342,14 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2314; - this.match(CPP14Parser.Template); - this.state = 2315; - this.match(CPP14Parser.Less); - this.state = 2316; - this.match(CPP14Parser.Greater); - this.state = 2317; - this.declaration(); + this.state = 2314; + this.match(CPP14Parser.Template); + this.state = 2315; + this.match(CPP14Parser.Less); + this.state = 2316; + this.match(CPP14Parser.Greater); + this.state = 2317; + this.declaration(); } } catch (re) { @@ -11372,12 +11372,12 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2319; - this.match(CPP14Parser.Try); - this.state = 2320; - this.compoundstatement(); - this.state = 2321; - this.handlerseq(); + this.state = 2319; + this.match(CPP14Parser.Try); + this.state = 2320; + this.compoundstatement(); + this.state = 2321; + this.handlerseq(); } } catch (re) { @@ -11401,22 +11401,22 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2323; - this.match(CPP14Parser.Try); - this.state = 2325; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 119) { - { - this.state = 2324; - this.ctorinitializer(); - } + this.state = 2323; + this.match(CPP14Parser.Try); + this.state = 2325; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===119) { + { + this.state = 2324; + this.ctorinitializer(); } + } - this.state = 2327; - this.compoundstatement(); - this.state = 2328; - this.handlerseq(); + this.state = 2327; + this.compoundstatement(); + this.state = 2328; + this.handlerseq(); } } catch (re) { @@ -11439,18 +11439,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2330; - this.handler(); - this.state = 2332; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 301, this._ctx)) { - case 1: - { - this.state = 2331; - this.handlerseq(); - } - break; + this.state = 2330; + this.handler(); + this.state = 2332; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 301, this._ctx) ) { + case 1: + { + this.state = 2331; + this.handlerseq(); } + break; + } } } catch (re) { @@ -11473,16 +11473,16 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2334; - this.match(CPP14Parser.Catch); - this.state = 2335; - this.match(CPP14Parser.LeftParen); - this.state = 2336; - this.exceptiondeclaration(); - this.state = 2337; - this.match(CPP14Parser.RightParen); - this.state = 2338; - this.compoundstatement(); + this.state = 2334; + this.match(CPP14Parser.Catch); + this.state = 2335; + this.match(CPP14Parser.LeftParen); + this.state = 2336; + this.exceptiondeclaration(); + this.state = 2337; + this.match(CPP14Parser.RightParen); + this.state = 2338; + this.compoundstatement(); } } catch (re) { @@ -11506,60 +11506,60 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2354; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 305, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); + switch ( this._interp.adaptivePredict(this._input, 305, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2341; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { { - this.state = 2341; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2340; - this.attributespecifierseq(0); - } - } - - this.state = 2343; - this.typespecifierseq(); - this.state = 2344; - this.declarator(); + this.state = 2340; + this.attributespecifierseq(0); } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2347; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3 || _la === 80) { - { - this.state = 2346; - this.attributespecifierseq(0); - } - } - - this.state = 2349; - this.typespecifierseq(); - this.state = 2351; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 19 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 4357) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { - { - this.state = 2350; - this.abstractdeclarator(); - } - } + } + this.state = 2343; + this.typespecifierseq(); + this.state = 2344; + this.declarator(); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2347; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3 || _la===80) { + { + this.state = 2346; + this.attributespecifierseq(0); } - break; - case 3: - this.enterOuterAlt(localctx, 3); + } + + this.state = 2349; + this.typespecifierseq(); + this.state = 2351; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===19 || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 4357) !== 0) || ((((_la - 111)) & ~0x1F) === 0 && ((1 << (_la - 111)) & 25089) !== 0)) { { - this.state = 2353; - this.match(CPP14Parser.Ellipsis); + this.state = 2350; + this.abstractdeclarator(); } - break; + } + + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2353; + this.match(CPP14Parser.Ellipsis); + } + break; } } catch (re) { @@ -11582,18 +11582,18 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2356; - this.match(CPP14Parser.Throw); - this.state = 2358; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 306, this._ctx)) { - case 1: - { - this.state = 2357; - this.assignmentexpression(); - } - break; + this.state = 2356; + this.match(CPP14Parser.Throw); + this.state = 2358; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 306, this._ctx) ) { + case 1: + { + this.state = 2357; + this.assignmentexpression(); } + break; + } } } catch (re) { @@ -11617,22 +11617,22 @@ export class CPP14Parser extends antlr.Parser { this.state = 2362; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Throw: - this.enterOuterAlt(localctx, 1); - { - this.state = 2360; - this.dynamicexceptionspecification(); - } - break; - case CPP14Parser.Noexcept: - this.enterOuterAlt(localctx, 2); - { - this.state = 2361; - this.noexceptspecification(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Throw: + this.enterOuterAlt(localctx, 1); + { + this.state = 2360; + this.dynamicexceptionspecification(); + } + break; + case CPP14Parser.Noexcept: + this.enterOuterAlt(localctx, 2); + { + this.state = 2361; + this.noexceptspecification(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -11656,22 +11656,22 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2364; - this.match(CPP14Parser.Throw); - this.state = 2365; - this.match(CPP14Parser.LeftParen); - this.state = 2367; - this._errHandler.sync(this); - _la = this._input.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 76085440) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 140509377) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 231) !== 0) || _la === 120 || _la === 125) { - { - this.state = 2366; - this.typeidlist(0); - } + this.state = 2364; + this.match(CPP14Parser.Throw); + this.state = 2365; + this.match(CPP14Parser.LeftParen); + this.state = 2367; + this._errHandler.sync(this); + _la = this._input.LA(1); + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 76085440) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 140509377) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 231) !== 0) || _la===120 || _la===125) { + { + this.state = 2366; + this.typeidlist(0); } + } - this.state = 2369; - this.match(CPP14Parser.RightParen); + this.state = 2369; + this.match(CPP14Parser.RightParen); } } catch (re) { @@ -11706,59 +11706,59 @@ export class CPP14Parser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { + { + this.state = 2372; + this.typeid(); + this.state = 2374; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 309, this._ctx) ) { + case 1: { - this.state = 2372; + this.state = 2373; + this.match(CPP14Parser.Ellipsis); + } + break; + } + } + this._ctx.stop = this._input.LT(-1); + this.state = 2384; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 311, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + { + localctx = new TypeidlistContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_typeidlist); + this.state = 2376; + if (!(this.precpred(this._ctx, 1))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); + } + this.state = 2377; + this.match(CPP14Parser.Comma); + this.state = 2378; this.typeid(); - this.state = 2374; + this.state = 2380; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 309, this._ctx)) { - case 1: - { - this.state = 2373; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } - this._ctx.stop = this._input.LT(-1); - this.state = 2384; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 311, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - _prevctx = localctx; + switch ( this._interp.adaptivePredict(this._input, 310, this._ctx) ) { + case 1: { - { - localctx = new TypeidlistContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, CPP14Parser.RULE_typeidlist); - this.state = 2376; - if (!(this.precpred(this._ctx, 1))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 1)"); - } - this.state = 2377; - this.match(CPP14Parser.Comma); - this.state = 2378; - this.typeid(); - this.state = 2380; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 310, this._ctx)) { - case 1: - { - this.state = 2379; - this.match(CPP14Parser.Ellipsis); - } - break; - } - } + this.state = 2379; + this.match(CPP14Parser.Ellipsis); } + break; + } + } } - this.state = 2386; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 311, this._ctx); } + this.state = 2386; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 311, this._ctx); + } } } catch (re) { @@ -11781,27 +11781,27 @@ export class CPP14Parser extends antlr.Parser { try { this.state = 2393; this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 312, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2387; - this.match(CPP14Parser.Noexcept); - this.state = 2388; - this.match(CPP14Parser.LeftParen); - this.state = 2389; - this.constantexpression(); - this.state = 2390; - this.match(CPP14Parser.RightParen); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2392; - this.match(CPP14Parser.Noexcept); - } - break; + switch ( this._interp.adaptivePredict(this._input, 312, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2387; + this.match(CPP14Parser.Noexcept); + this.state = 2388; + this.match(CPP14Parser.LeftParen); + this.state = 2389; + this.constantexpression(); + this.state = 2390; + this.match(CPP14Parser.RightParen); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2392; + this.match(CPP14Parser.Noexcept); + } + break; } } catch (re) { @@ -11824,10 +11824,10 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2395; - this.match(CPP14Parser.Greater); - this.state = 2396; - this.match(CPP14Parser.Greater); + this.state = 2395; + this.match(CPP14Parser.Greater); + this.state = 2396; + this.match(CPP14Parser.Greater); } } catch (re) { @@ -11850,12 +11850,12 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2398; - this.match(CPP14Parser.Greater); - this.state = 2399; - this.match(CPP14Parser.Greater); - this.state = 2400; - this.match(CPP14Parser.Assign); + this.state = 2398; + this.match(CPP14Parser.Greater); + this.state = 2399; + this.match(CPP14Parser.Greater); + this.state = 2400; + this.match(CPP14Parser.Assign); } } catch (re) { @@ -11864,327 +11864,327 @@ export class CPP14Parser extends antlr.Parser { this._errHandler.reportError(this, re); this._errHandler.recover(this, re); } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localctx; - } - public operator(): OperatorContext { - let localctx: OperatorContext = new OperatorContext(this._ctx, this.state); - this.enterRule(localctx, 388, CPP14Parser.RULE_operator); - try { - this.state = 2450; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 313, this._ctx)) { - case 1: - this.enterOuterAlt(localctx, 1); - { - this.state = 2402; - this.match(CPP14Parser.New); - } - break; - case 2: - this.enterOuterAlt(localctx, 2); - { - this.state = 2403; - this.match(CPP14Parser.Delete); - } - break; - case 3: - this.enterOuterAlt(localctx, 3); - { - this.state = 2404; - this.match(CPP14Parser.New); - this.state = 2405; - this.match(CPP14Parser.LeftBracket); - this.state = 2406; - this.match(CPP14Parser.RightBracket); - } - break; - case 4: - this.enterOuterAlt(localctx, 4); - { - this.state = 2407; - this.match(CPP14Parser.Delete); - this.state = 2408; - this.match(CPP14Parser.LeftBracket); - this.state = 2409; - this.match(CPP14Parser.RightBracket); - } - break; - case 5: - this.enterOuterAlt(localctx, 5); - { - this.state = 2410; - this.match(CPP14Parser.Plus); - } - break; - case 6: - this.enterOuterAlt(localctx, 6); - { - this.state = 2411; - this.match(CPP14Parser.Minus); - } - break; - case 7: - this.enterOuterAlt(localctx, 7); - { - this.state = 2412; - this.match(CPP14Parser.Star); - } - break; - case 8: - this.enterOuterAlt(localctx, 8); - { - this.state = 2413; - this.match(CPP14Parser.Div); - } - break; - case 9: - this.enterOuterAlt(localctx, 9); - { - this.state = 2414; - this.match(CPP14Parser.Mod); - } - break; - case 10: - this.enterOuterAlt(localctx, 10); - { - this.state = 2415; - this.match(CPP14Parser.Caret); - } - break; - case 11: - this.enterOuterAlt(localctx, 11); - { - this.state = 2416; - this.match(CPP14Parser.And); - } - break; - case 12: - this.enterOuterAlt(localctx, 12); - { - this.state = 2417; - this.match(CPP14Parser.Or); - } - break; - case 13: - this.enterOuterAlt(localctx, 13); - { - this.state = 2418; - this.match(CPP14Parser.Tilde); - } - break; - case 14: - this.enterOuterAlt(localctx, 14); - { - this.state = 2419; - this.match(CPP14Parser.Not); - } - break; - case 15: - this.enterOuterAlt(localctx, 15); - { - this.state = 2420; - this.match(CPP14Parser.Assign); - } - break; - case 16: - this.enterOuterAlt(localctx, 16); - { - this.state = 2421; - this.match(CPP14Parser.Less); - } - break; - case 17: - this.enterOuterAlt(localctx, 17); - { - this.state = 2422; - this.match(CPP14Parser.Greater); - } - break; - case 18: - this.enterOuterAlt(localctx, 18); - { - this.state = 2423; - this.match(CPP14Parser.PlusAssign); - } - break; - case 19: - this.enterOuterAlt(localctx, 19); - { - this.state = 2424; - this.match(CPP14Parser.MinusAssign); - } - break; - case 20: - this.enterOuterAlt(localctx, 20); - { - this.state = 2425; - this.match(CPP14Parser.StarAssign); - } - break; - case 21: - this.enterOuterAlt(localctx, 21); - { - this.state = 2426; - this.match(CPP14Parser.DivAssign); - } - break; - case 22: - this.enterOuterAlt(localctx, 22); - { - this.state = 2427; - this.match(CPP14Parser.ModAssign); - } - break; - case 23: - this.enterOuterAlt(localctx, 23); - { - this.state = 2428; - this.match(CPP14Parser.XorAssign); - } - break; - case 24: - this.enterOuterAlt(localctx, 24); - { - this.state = 2429; - this.match(CPP14Parser.AndAssign); - } - break; - case 25: - this.enterOuterAlt(localctx, 25); - { - this.state = 2430; - this.match(CPP14Parser.OrAssign); - } - break; - case 26: - this.enterOuterAlt(localctx, 26); - { - this.state = 2431; - this.match(CPP14Parser.LeftShift); - } - break; - case 27: - this.enterOuterAlt(localctx, 27); - { - this.state = 2432; - this.rightShift(); - } - break; - case 28: - this.enterOuterAlt(localctx, 28); - { - this.state = 2433; - this.rightShiftAssign(); - } - break; - case 29: - this.enterOuterAlt(localctx, 29); - { - this.state = 2434; - this.match(CPP14Parser.LeftShiftAssign); - } - break; - case 30: - this.enterOuterAlt(localctx, 30); - { - this.state = 2435; - this.match(CPP14Parser.Equal); - } - break; - case 31: - this.enterOuterAlt(localctx, 31); - { - this.state = 2436; - this.match(CPP14Parser.NotEqual); - } - break; - case 32: - this.enterOuterAlt(localctx, 32); - { - this.state = 2437; - this.match(CPP14Parser.LessEqual); - } - break; - case 33: - this.enterOuterAlt(localctx, 33); - { - this.state = 2438; - this.match(CPP14Parser.GreaterEqual); - } - break; - case 34: - this.enterOuterAlt(localctx, 34); - { - this.state = 2439; - this.match(CPP14Parser.AndAnd); - } - break; - case 35: - this.enterOuterAlt(localctx, 35); - { - this.state = 2440; - this.match(CPP14Parser.OrOr); - } - break; - case 36: - this.enterOuterAlt(localctx, 36); - { - this.state = 2441; - this.match(CPP14Parser.PlusPlus); - } - break; - case 37: - this.enterOuterAlt(localctx, 37); - { - this.state = 2442; - this.match(CPP14Parser.MinusMinus); - } - break; - case 38: - this.enterOuterAlt(localctx, 38); - { - this.state = 2443; - this.match(CPP14Parser.Comma); - } - break; - case 39: - this.enterOuterAlt(localctx, 39); - { - this.state = 2444; - this.match(CPP14Parser.ArrowStar); - } - break; - case 40: - this.enterOuterAlt(localctx, 40); - { - this.state = 2445; - this.match(CPP14Parser.Arrow); - } - break; - case 41: - this.enterOuterAlt(localctx, 41); - { - this.state = 2446; - this.match(CPP14Parser.LeftParen); - this.state = 2447; - this.match(CPP14Parser.RightParen); - } - break; - case 42: - this.enterOuterAlt(localctx, 42); - { - this.state = 2448; - this.match(CPP14Parser.LeftBracket); - this.state = 2449; - this.match(CPP14Parser.RightBracket); - } - break; + throw re; + } + } + finally { + this.exitRule(); + } + return localctx; + } + public operator(): OperatorContext { + let localctx: OperatorContext = new OperatorContext(this._ctx, this.state); + this.enterRule(localctx, 388, CPP14Parser.RULE_operator); + try { + this.state = 2450; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 313, this._ctx) ) { + case 1: + this.enterOuterAlt(localctx, 1); + { + this.state = 2402; + this.match(CPP14Parser.New); + } + break; + case 2: + this.enterOuterAlt(localctx, 2); + { + this.state = 2403; + this.match(CPP14Parser.Delete); + } + break; + case 3: + this.enterOuterAlt(localctx, 3); + { + this.state = 2404; + this.match(CPP14Parser.New); + this.state = 2405; + this.match(CPP14Parser.LeftBracket); + this.state = 2406; + this.match(CPP14Parser.RightBracket); + } + break; + case 4: + this.enterOuterAlt(localctx, 4); + { + this.state = 2407; + this.match(CPP14Parser.Delete); + this.state = 2408; + this.match(CPP14Parser.LeftBracket); + this.state = 2409; + this.match(CPP14Parser.RightBracket); + } + break; + case 5: + this.enterOuterAlt(localctx, 5); + { + this.state = 2410; + this.match(CPP14Parser.Plus); + } + break; + case 6: + this.enterOuterAlt(localctx, 6); + { + this.state = 2411; + this.match(CPP14Parser.Minus); + } + break; + case 7: + this.enterOuterAlt(localctx, 7); + { + this.state = 2412; + this.match(CPP14Parser.Star); + } + break; + case 8: + this.enterOuterAlt(localctx, 8); + { + this.state = 2413; + this.match(CPP14Parser.Div); + } + break; + case 9: + this.enterOuterAlt(localctx, 9); + { + this.state = 2414; + this.match(CPP14Parser.Mod); + } + break; + case 10: + this.enterOuterAlt(localctx, 10); + { + this.state = 2415; + this.match(CPP14Parser.Caret); + } + break; + case 11: + this.enterOuterAlt(localctx, 11); + { + this.state = 2416; + this.match(CPP14Parser.And); + } + break; + case 12: + this.enterOuterAlt(localctx, 12); + { + this.state = 2417; + this.match(CPP14Parser.Or); + } + break; + case 13: + this.enterOuterAlt(localctx, 13); + { + this.state = 2418; + this.match(CPP14Parser.Tilde); + } + break; + case 14: + this.enterOuterAlt(localctx, 14); + { + this.state = 2419; + this.match(CPP14Parser.Not); + } + break; + case 15: + this.enterOuterAlt(localctx, 15); + { + this.state = 2420; + this.match(CPP14Parser.Assign); + } + break; + case 16: + this.enterOuterAlt(localctx, 16); + { + this.state = 2421; + this.match(CPP14Parser.Less); + } + break; + case 17: + this.enterOuterAlt(localctx, 17); + { + this.state = 2422; + this.match(CPP14Parser.Greater); + } + break; + case 18: + this.enterOuterAlt(localctx, 18); + { + this.state = 2423; + this.match(CPP14Parser.PlusAssign); + } + break; + case 19: + this.enterOuterAlt(localctx, 19); + { + this.state = 2424; + this.match(CPP14Parser.MinusAssign); + } + break; + case 20: + this.enterOuterAlt(localctx, 20); + { + this.state = 2425; + this.match(CPP14Parser.StarAssign); + } + break; + case 21: + this.enterOuterAlt(localctx, 21); + { + this.state = 2426; + this.match(CPP14Parser.DivAssign); + } + break; + case 22: + this.enterOuterAlt(localctx, 22); + { + this.state = 2427; + this.match(CPP14Parser.ModAssign); + } + break; + case 23: + this.enterOuterAlt(localctx, 23); + { + this.state = 2428; + this.match(CPP14Parser.XorAssign); + } + break; + case 24: + this.enterOuterAlt(localctx, 24); + { + this.state = 2429; + this.match(CPP14Parser.AndAssign); + } + break; + case 25: + this.enterOuterAlt(localctx, 25); + { + this.state = 2430; + this.match(CPP14Parser.OrAssign); + } + break; + case 26: + this.enterOuterAlt(localctx, 26); + { + this.state = 2431; + this.match(CPP14Parser.LeftShift); + } + break; + case 27: + this.enterOuterAlt(localctx, 27); + { + this.state = 2432; + this.rightShift(); + } + break; + case 28: + this.enterOuterAlt(localctx, 28); + { + this.state = 2433; + this.rightShiftAssign(); + } + break; + case 29: + this.enterOuterAlt(localctx, 29); + { + this.state = 2434; + this.match(CPP14Parser.LeftShiftAssign); + } + break; + case 30: + this.enterOuterAlt(localctx, 30); + { + this.state = 2435; + this.match(CPP14Parser.Equal); + } + break; + case 31: + this.enterOuterAlt(localctx, 31); + { + this.state = 2436; + this.match(CPP14Parser.NotEqual); + } + break; + case 32: + this.enterOuterAlt(localctx, 32); + { + this.state = 2437; + this.match(CPP14Parser.LessEqual); + } + break; + case 33: + this.enterOuterAlt(localctx, 33); + { + this.state = 2438; + this.match(CPP14Parser.GreaterEqual); + } + break; + case 34: + this.enterOuterAlt(localctx, 34); + { + this.state = 2439; + this.match(CPP14Parser.AndAnd); + } + break; + case 35: + this.enterOuterAlt(localctx, 35); + { + this.state = 2440; + this.match(CPP14Parser.OrOr); + } + break; + case 36: + this.enterOuterAlt(localctx, 36); + { + this.state = 2441; + this.match(CPP14Parser.PlusPlus); + } + break; + case 37: + this.enterOuterAlt(localctx, 37); + { + this.state = 2442; + this.match(CPP14Parser.MinusMinus); + } + break; + case 38: + this.enterOuterAlt(localctx, 38); + { + this.state = 2443; + this.match(CPP14Parser.Comma); + } + break; + case 39: + this.enterOuterAlt(localctx, 39); + { + this.state = 2444; + this.match(CPP14Parser.ArrowStar); + } + break; + case 40: + this.enterOuterAlt(localctx, 40); + { + this.state = 2445; + this.match(CPP14Parser.Arrow); + } + break; + case 41: + this.enterOuterAlt(localctx, 41); + { + this.state = 2446; + this.match(CPP14Parser.LeftParen); + this.state = 2447; + this.match(CPP14Parser.RightParen); + } + break; + case 42: + this.enterOuterAlt(localctx, 42); + { + this.state = 2448; + this.match(CPP14Parser.LeftBracket); + this.state = 2449; + this.match(CPP14Parser.RightBracket); + } + break; } } catch (re) { @@ -12208,61 +12208,61 @@ export class CPP14Parser extends antlr.Parser { this.state = 2459; this._errHandler.sync(this); switch (this._input.LA(1)) { - case CPP14Parser.Integerliteral: - this.enterOuterAlt(localctx, 1); - { - this.state = 2452; - this.match(CPP14Parser.Integerliteral); - } - break; - case CPP14Parser.Characterliteral: - this.enterOuterAlt(localctx, 2); - { - this.state = 2453; - this.match(CPP14Parser.Characterliteral); - } - break; - case CPP14Parser.Floatingliteral: - this.enterOuterAlt(localctx, 3); - { - this.state = 2454; - this.match(CPP14Parser.Floatingliteral); - } - break; - case CPP14Parser.Stringliteral: - this.enterOuterAlt(localctx, 4); - { - this.state = 2455; - this.match(CPP14Parser.Stringliteral); - } - break; - case CPP14Parser.False: - case CPP14Parser.True: - this.enterOuterAlt(localctx, 5); - { - this.state = 2456; - this.booleanliteral(); - } - break; - case CPP14Parser.Nullptr: - this.enterOuterAlt(localctx, 6); - { - this.state = 2457; - this.pointerliteral(); - } - break; - case CPP14Parser.Userdefinedintegerliteral: - case CPP14Parser.Userdefinedfloatingliteral: - case CPP14Parser.Userdefinedstringliteral: - case CPP14Parser.Userdefinedcharacterliteral: - this.enterOuterAlt(localctx, 7); - { - this.state = 2458; - this.userdefinedliteral(); - } - break; - default: - throw new antlr.NoViableAltException(this); + case CPP14Parser.Integerliteral: + this.enterOuterAlt(localctx, 1); + { + this.state = 2452; + this.match(CPP14Parser.Integerliteral); + } + break; + case CPP14Parser.Characterliteral: + this.enterOuterAlt(localctx, 2); + { + this.state = 2453; + this.match(CPP14Parser.Characterliteral); + } + break; + case CPP14Parser.Floatingliteral: + this.enterOuterAlt(localctx, 3); + { + this.state = 2454; + this.match(CPP14Parser.Floatingliteral); + } + break; + case CPP14Parser.Stringliteral: + this.enterOuterAlt(localctx, 4); + { + this.state = 2455; + this.match(CPP14Parser.Stringliteral); + } + break; + case CPP14Parser.False: + case CPP14Parser.True: + this.enterOuterAlt(localctx, 5); + { + this.state = 2456; + this.booleanliteral(); + } + break; + case CPP14Parser.Nullptr: + this.enterOuterAlt(localctx, 6); + { + this.state = 2457; + this.pointerliteral(); + } + break; + case CPP14Parser.Userdefinedintegerliteral: + case CPP14Parser.Userdefinedfloatingliteral: + case CPP14Parser.Userdefinedstringliteral: + case CPP14Parser.Userdefinedcharacterliteral: + this.enterOuterAlt(localctx, 7); + { + this.state = 2458; + this.userdefinedliteral(); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -12286,15 +12286,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2461; - _la = this._input.LA(1); - if (!(_la === 30 || _la === 65)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 2461; + _la = this._input.LA(1); + if(!(_la===30 || _la===65)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -12317,8 +12317,8 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2463; - this.match(CPP14Parser.Nullptr); + this.state = 2463; + this.match(CPP14Parser.Nullptr); } } catch (re) { @@ -12342,15 +12342,15 @@ export class CPP14Parser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 2465; - _la = this._input.LA(1); - if (!(((((_la - 135)) & ~0x1F) === 0 && ((1 << (_la - 135)) & 15) !== 0))) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 2465; + _la = this._input.LA(1); + if(!(((((_la - 135)) & ~0x1F) === 0 && ((1 << (_la - 135)) & 15) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -12370,1402 +12370,1402 @@ export class CPP14Parser extends antlr.Parser { public override sempred(localctx: antlr.RuleContext, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 5: - return this.nestednamespecifier_sempred(localctx as NestednamespecifierContext, predIndex); - case 10: - return this.capturelist_sempred(localctx as CapturelistContext, predIndex); - case 15: - return this.postfixexpression_sempred(localctx as PostfixexpressionContext, predIndex); - case 24: - return this.noptrnewdeclarator_sempred(localctx as NoptrnewdeclaratorContext, predIndex); - case 29: - return this.pmexpression_sempred(localctx as PmexpressionContext, predIndex); - case 30: - return this.multiplicativeexpression_sempred(localctx as MultiplicativeexpressionContext, predIndex); - case 31: - return this.additiveexpression_sempred(localctx as AdditiveexpressionContext, predIndex); - case 32: - return this.shiftexpression_sempred(localctx as ShiftexpressionContext, predIndex); - case 33: - return this.relationalexpression_sempred(localctx as RelationalexpressionContext, predIndex); - case 34: - return this.equalityexpression_sempred(localctx as EqualityexpressionContext, predIndex); - case 35: - return this.andexpression_sempred(localctx as AndexpressionContext, predIndex); - case 36: - return this.exclusiveorexpression_sempred(localctx as ExclusiveorexpressionContext, predIndex); - case 37: - return this.inclusiveorexpression_sempred(localctx as InclusiveorexpressionContext, predIndex); - case 38: - return this.logicalandexpression_sempred(localctx as LogicalandexpressionContext, predIndex); - case 39: - return this.logicalorexpression_sempred(localctx as LogicalorexpressionContext, predIndex); - case 43: - return this.expression_sempred(localctx as ExpressionContext, predIndex); - case 49: - return this.statementseq_sempred(localctx as StatementseqContext, predIndex); - case 58: - return this.declarationseq_sempred(localctx as DeclarationseqContext, predIndex); - case 85: - return this.enumeratorlist_sempred(localctx as EnumeratorlistContext, predIndex); - case 103: - return this.attributespecifierseq_sempred(localctx as AttributespecifierseqContext, predIndex); - case 106: - return this.attributelist_sempred(localctx as AttributelistContext, predIndex); - case 112: - return this.balancedtokenseq_sempred(localctx as BalancedtokenseqContext, predIndex); - case 114: - return this.initdeclaratorlist_sempred(localctx as InitdeclaratorlistContext, predIndex); - case 118: - return this.noptrdeclarator_sempred(localctx as NoptrdeclaratorContext, predIndex); - case 129: - return this.noptrabstractdeclarator_sempred(localctx as NoptrabstractdeclaratorContext, predIndex); - case 131: - return this.noptrabstractpackdeclarator_sempred(localctx as NoptrabstractpackdeclaratorContext, predIndex); - case 133: - return this.parameterdeclarationlist_sempred(localctx as ParameterdeclarationlistContext, predIndex); - case 140: - return this.initializerlist_sempred(localctx as InitializerlistContext, predIndex); - case 150: - return this.memberdeclaratorlist_sempred(localctx as MemberdeclaratorlistContext, predIndex); - case 152: - return this.virtspecifierseq_sempred(localctx as VirtspecifierseqContext, predIndex); - case 156: - return this.basespecifierlist_sempred(localctx as BasespecifierlistContext, predIndex); - case 171: - return this.templateparameterlist_sempred(localctx as TemplateparameterlistContext, predIndex); - case 177: - return this.templateargumentlist_sempred(localctx as TemplateargumentlistContext, predIndex); - case 190: - return this.typeidlist_sempred(localctx as TypeidlistContext, predIndex); + case 5: + return this.nestednamespecifier_sempred(localctx as NestednamespecifierContext, predIndex); + case 10: + return this.capturelist_sempred(localctx as CapturelistContext, predIndex); + case 15: + return this.postfixexpression_sempred(localctx as PostfixexpressionContext, predIndex); + case 24: + return this.noptrnewdeclarator_sempred(localctx as NoptrnewdeclaratorContext, predIndex); + case 29: + return this.pmexpression_sempred(localctx as PmexpressionContext, predIndex); + case 30: + return this.multiplicativeexpression_sempred(localctx as MultiplicativeexpressionContext, predIndex); + case 31: + return this.additiveexpression_sempred(localctx as AdditiveexpressionContext, predIndex); + case 32: + return this.shiftexpression_sempred(localctx as ShiftexpressionContext, predIndex); + case 33: + return this.relationalexpression_sempred(localctx as RelationalexpressionContext, predIndex); + case 34: + return this.equalityexpression_sempred(localctx as EqualityexpressionContext, predIndex); + case 35: + return this.andexpression_sempred(localctx as AndexpressionContext, predIndex); + case 36: + return this.exclusiveorexpression_sempred(localctx as ExclusiveorexpressionContext, predIndex); + case 37: + return this.inclusiveorexpression_sempred(localctx as InclusiveorexpressionContext, predIndex); + case 38: + return this.logicalandexpression_sempred(localctx as LogicalandexpressionContext, predIndex); + case 39: + return this.logicalorexpression_sempred(localctx as LogicalorexpressionContext, predIndex); + case 43: + return this.expression_sempred(localctx as ExpressionContext, predIndex); + case 49: + return this.statementseq_sempred(localctx as StatementseqContext, predIndex); + case 58: + return this.declarationseq_sempred(localctx as DeclarationseqContext, predIndex); + case 85: + return this.enumeratorlist_sempred(localctx as EnumeratorlistContext, predIndex); + case 103: + return this.attributespecifierseq_sempred(localctx as AttributespecifierseqContext, predIndex); + case 106: + return this.attributelist_sempred(localctx as AttributelistContext, predIndex); + case 112: + return this.balancedtokenseq_sempred(localctx as BalancedtokenseqContext, predIndex); + case 114: + return this.initdeclaratorlist_sempred(localctx as InitdeclaratorlistContext, predIndex); + case 118: + return this.noptrdeclarator_sempred(localctx as NoptrdeclaratorContext, predIndex); + case 129: + return this.noptrabstractdeclarator_sempred(localctx as NoptrabstractdeclaratorContext, predIndex); + case 131: + return this.noptrabstractpackdeclarator_sempred(localctx as NoptrabstractpackdeclaratorContext, predIndex); + case 133: + return this.parameterdeclarationlist_sempred(localctx as ParameterdeclarationlistContext, predIndex); + case 140: + return this.initializerlist_sempred(localctx as InitializerlistContext, predIndex); + case 150: + return this.memberdeclaratorlist_sempred(localctx as MemberdeclaratorlistContext, predIndex); + case 152: + return this.virtspecifierseq_sempred(localctx as VirtspecifierseqContext, predIndex); + case 156: + return this.basespecifierlist_sempred(localctx as BasespecifierlistContext, predIndex); + case 171: + return this.templateparameterlist_sempred(localctx as TemplateparameterlistContext, predIndex); + case 177: + return this.templateargumentlist_sempred(localctx as TemplateargumentlistContext, predIndex); + case 190: + return this.typeidlist_sempred(localctx as TypeidlistContext, predIndex); } return true; } private nestednamespecifier_sempred(localctx: NestednamespecifierContext, predIndex: number): boolean { switch (predIndex) { - case 0: - return this.precpred(this._ctx, 2); - case 1: - return this.precpred(this._ctx, 1); + case 0: + return this.precpred(this._ctx, 2); + case 1: + return this.precpred(this._ctx, 1); } return true; } private capturelist_sempred(localctx: CapturelistContext, predIndex: number): boolean { switch (predIndex) { - case 2: - return this.precpred(this._ctx, 1); + case 2: + return this.precpred(this._ctx, 1); } return true; } private postfixexpression_sempred(localctx: PostfixexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 3: - return this.precpred(this._ctx, 19); - case 4: - return this.precpred(this._ctx, 18); - case 5: - return this.precpred(this._ctx, 17); - case 6: - return this.precpred(this._ctx, 12); - case 7: - return this.precpred(this._ctx, 11); - case 8: - return this.precpred(this._ctx, 10); - case 9: - return this.precpred(this._ctx, 9); - case 10: - return this.precpred(this._ctx, 8); - case 11: - return this.precpred(this._ctx, 7); + case 3: + return this.precpred(this._ctx, 19); + case 4: + return this.precpred(this._ctx, 18); + case 5: + return this.precpred(this._ctx, 17); + case 6: + return this.precpred(this._ctx, 12); + case 7: + return this.precpred(this._ctx, 11); + case 8: + return this.precpred(this._ctx, 10); + case 9: + return this.precpred(this._ctx, 9); + case 10: + return this.precpred(this._ctx, 8); + case 11: + return this.precpred(this._ctx, 7); } return true; } private noptrnewdeclarator_sempred(localctx: NoptrnewdeclaratorContext, predIndex: number): boolean { switch (predIndex) { - case 12: - return this.precpred(this._ctx, 1); + case 12: + return this.precpred(this._ctx, 1); } return true; } private pmexpression_sempred(localctx: PmexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 13: - return this.precpred(this._ctx, 2); - case 14: - return this.precpred(this._ctx, 1); + case 13: + return this.precpred(this._ctx, 2); + case 14: + return this.precpred(this._ctx, 1); } return true; } private multiplicativeexpression_sempred(localctx: MultiplicativeexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 15: - return this.precpred(this._ctx, 3); - case 16: - return this.precpred(this._ctx, 2); - case 17: - return this.precpred(this._ctx, 1); + case 15: + return this.precpred(this._ctx, 3); + case 16: + return this.precpred(this._ctx, 2); + case 17: + return this.precpred(this._ctx, 1); } return true; } private additiveexpression_sempred(localctx: AdditiveexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 18: - return this.precpred(this._ctx, 2); - case 19: - return this.precpred(this._ctx, 1); + case 18: + return this.precpred(this._ctx, 2); + case 19: + return this.precpred(this._ctx, 1); } return true; } private shiftexpression_sempred(localctx: ShiftexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 20: - return this.precpred(this._ctx, 2); - case 21: - return this.precpred(this._ctx, 1); + case 20: + return this.precpred(this._ctx, 2); + case 21: + return this.precpred(this._ctx, 1); } return true; } private relationalexpression_sempred(localctx: RelationalexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 22: - return this.precpred(this._ctx, 4); - case 23: - return this.precpred(this._ctx, 3); - case 24: - return this.precpred(this._ctx, 2); - case 25: - return this.precpred(this._ctx, 1); + case 22: + return this.precpred(this._ctx, 4); + case 23: + return this.precpred(this._ctx, 3); + case 24: + return this.precpred(this._ctx, 2); + case 25: + return this.precpred(this._ctx, 1); } return true; } private equalityexpression_sempred(localctx: EqualityexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 26: - return this.precpred(this._ctx, 2); - case 27: - return this.precpred(this._ctx, 1); + case 26: + return this.precpred(this._ctx, 2); + case 27: + return this.precpred(this._ctx, 1); } return true; } private andexpression_sempred(localctx: AndexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 28: - return this.precpred(this._ctx, 1); + case 28: + return this.precpred(this._ctx, 1); } return true; } private exclusiveorexpression_sempred(localctx: ExclusiveorexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 29: - return this.precpred(this._ctx, 1); + case 29: + return this.precpred(this._ctx, 1); } return true; } private inclusiveorexpression_sempred(localctx: InclusiveorexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 30: - return this.precpred(this._ctx, 1); + case 30: + return this.precpred(this._ctx, 1); } return true; } private logicalandexpression_sempred(localctx: LogicalandexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 31: - return this.precpred(this._ctx, 1); + case 31: + return this.precpred(this._ctx, 1); } return true; } private logicalorexpression_sempred(localctx: LogicalorexpressionContext, predIndex: number): boolean { switch (predIndex) { - case 32: - return this.precpred(this._ctx, 1); + case 32: + return this.precpred(this._ctx, 1); } return true; } private expression_sempred(localctx: ExpressionContext, predIndex: number): boolean { switch (predIndex) { - case 33: - return this.precpred(this._ctx, 1); + case 33: + return this.precpred(this._ctx, 1); } return true; } private statementseq_sempred(localctx: StatementseqContext, predIndex: number): boolean { switch (predIndex) { - case 34: - return this.precpred(this._ctx, 1); + case 34: + return this.precpred(this._ctx, 1); } return true; } private declarationseq_sempred(localctx: DeclarationseqContext, predIndex: number): boolean { switch (predIndex) { - case 35: - return this.precpred(this._ctx, 1); + case 35: + return this.precpred(this._ctx, 1); } return true; } private enumeratorlist_sempred(localctx: EnumeratorlistContext, predIndex: number): boolean { switch (predIndex) { - case 36: - return this.precpred(this._ctx, 1); + case 36: + return this.precpred(this._ctx, 1); } return true; } private attributespecifierseq_sempred(localctx: AttributespecifierseqContext, predIndex: number): boolean { switch (predIndex) { - case 37: - return this.precpred(this._ctx, 1); + case 37: + return this.precpred(this._ctx, 1); } return true; } private attributelist_sempred(localctx: AttributelistContext, predIndex: number): boolean { switch (predIndex) { - case 38: - return this.precpred(this._ctx, 3); - case 39: - return this.precpred(this._ctx, 1); + case 38: + return this.precpred(this._ctx, 3); + case 39: + return this.precpred(this._ctx, 1); } return true; } private balancedtokenseq_sempred(localctx: BalancedtokenseqContext, predIndex: number): boolean { switch (predIndex) { - case 40: - return this.precpred(this._ctx, 1); + case 40: + return this.precpred(this._ctx, 1); } return true; } private initdeclaratorlist_sempred(localctx: InitdeclaratorlistContext, predIndex: number): boolean { switch (predIndex) { - case 41: - return this.precpred(this._ctx, 1); + case 41: + return this.precpred(this._ctx, 1); } return true; } private noptrdeclarator_sempred(localctx: NoptrdeclaratorContext, predIndex: number): boolean { switch (predIndex) { - case 42: - return this.precpred(this._ctx, 3); - case 43: - return this.precpred(this._ctx, 2); + case 42: + return this.precpred(this._ctx, 3); + case 43: + return this.precpred(this._ctx, 2); } return true; } private noptrabstractdeclarator_sempred(localctx: NoptrabstractdeclaratorContext, predIndex: number): boolean { switch (predIndex) { - case 44: - return this.precpred(this._ctx, 5); - case 45: - return this.precpred(this._ctx, 3); + case 44: + return this.precpred(this._ctx, 5); + case 45: + return this.precpred(this._ctx, 3); } return true; } private noptrabstractpackdeclarator_sempred(localctx: NoptrabstractpackdeclaratorContext, predIndex: number): boolean { switch (predIndex) { - case 46: - return this.precpred(this._ctx, 3); - case 47: - return this.precpred(this._ctx, 2); + case 46: + return this.precpred(this._ctx, 3); + case 47: + return this.precpred(this._ctx, 2); } return true; } private parameterdeclarationlist_sempred(localctx: ParameterdeclarationlistContext, predIndex: number): boolean { switch (predIndex) { - case 48: - return this.precpred(this._ctx, 1); + case 48: + return this.precpred(this._ctx, 1); } return true; } private initializerlist_sempred(localctx: InitializerlistContext, predIndex: number): boolean { switch (predIndex) { - case 49: - return this.precpred(this._ctx, 1); + case 49: + return this.precpred(this._ctx, 1); } return true; } private memberdeclaratorlist_sempred(localctx: MemberdeclaratorlistContext, predIndex: number): boolean { switch (predIndex) { - case 50: - return this.precpred(this._ctx, 1); + case 50: + return this.precpred(this._ctx, 1); } return true; } private virtspecifierseq_sempred(localctx: VirtspecifierseqContext, predIndex: number): boolean { switch (predIndex) { - case 51: - return this.precpred(this._ctx, 1); + case 51: + return this.precpred(this._ctx, 1); } return true; } private basespecifierlist_sempred(localctx: BasespecifierlistContext, predIndex: number): boolean { switch (predIndex) { - case 52: - return this.precpred(this._ctx, 1); + case 52: + return this.precpred(this._ctx, 1); } return true; } private templateparameterlist_sempred(localctx: TemplateparameterlistContext, predIndex: number): boolean { switch (predIndex) { - case 53: - return this.precpred(this._ctx, 1); + case 53: + return this.precpred(this._ctx, 1); } return true; } private templateargumentlist_sempred(localctx: TemplateargumentlistContext, predIndex: number): boolean { switch (predIndex) { - case 54: - return this.precpred(this._ctx, 1); + case 54: + return this.precpred(this._ctx, 1); } return true; } private typeidlist_sempred(localctx: TypeidlistContext, predIndex: number): boolean { switch (predIndex) { - case 55: - return this.precpred(this._ctx, 1); + case 55: + return this.precpred(this._ctx, 1); } return true; } public static readonly _serializedATN: number[] = [ - 4, 1, 142, 2468, 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, 3, 0, 400, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 3, 1, 412, 8, 1, 1, 2, 1, 2, 3, 2, 416, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, - 3, 1, 3, 1, 3, 1, 3, 3, 3, 427, 8, 3, 1, 4, 1, 4, 3, 4, 431, 8, 4, 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, 446, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, - 5, 3, 5, 453, 8, 5, 1, 5, 1, 5, 1, 5, 5, 5, 458, 8, 5, 10, 5, 12, 5, 461, 9, 5, 1, 6, 1, 6, - 3, 6, 465, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 471, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, - 1, 8, 1, 8, 3, 8, 481, 8, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 3, 10, 488, 8, 10, 1, 10, 1, - 10, 1, 10, 1, 10, 3, 10, 494, 8, 10, 5, 10, 496, 8, 10, 10, 10, 12, 10, 499, 9, 10, 1, - 11, 1, 11, 3, 11, 503, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 509, 8, 12, 1, 13, 1, 13, - 1, 13, 1, 13, 1, 13, 3, 13, 516, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 522, 8, 14, 1, - 14, 3, 14, 525, 8, 14, 1, 14, 3, 14, 528, 8, 14, 1, 14, 3, 14, 531, 8, 14, 1, 15, 1, 15, - 1, 15, 1, 15, 1, 15, 3, 15, 538, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 545, 8, - 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, 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, 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, 1, 15, 1, 15, 1, 15, 3, 15, 597, - 8, 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, 612, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 618, 8, 15, 1, 15, 1, 15, 1, - 15, 1, 15, 3, 15, 624, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, - 15, 1, 15, 1, 15, 5, 15, 637, 8, 15, 10, 15, 12, 15, 640, 9, 15, 1, 16, 1, 16, 1, 17, 3, - 17, 645, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, - 17, 1, 17, 1, 17, 3, 17, 660, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 666, 8, 17, 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, 696, 8, 18, 1, 19, 1, 19, 1, 20, 3, 20, 701, 8, 20, 1, 20, 1, 20, 3, 20, 705, - 8, 20, 1, 20, 1, 20, 3, 20, 709, 8, 20, 1, 20, 3, 20, 712, 8, 20, 1, 20, 1, 20, 3, 20, 716, - 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 722, 8, 20, 3, 20, 724, 8, 20, 1, 21, 1, 21, 1, - 21, 1, 21, 1, 22, 1, 22, 3, 22, 732, 8, 22, 1, 23, 1, 23, 3, 23, 736, 8, 23, 1, 23, 3, 23, - 739, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 746, 8, 24, 1, 24, 1, 24, 1, 24, 1, - 24, 1, 24, 3, 24, 753, 8, 24, 5, 24, 755, 8, 24, 10, 24, 12, 24, 758, 9, 24, 1, 25, 1, - 25, 3, 25, 762, 8, 25, 1, 25, 1, 25, 3, 25, 766, 8, 25, 1, 26, 3, 26, 769, 8, 26, 1, 26, - 1, 26, 1, 26, 3, 26, 774, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 780, 8, 26, 1, 27, 1, - 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 793, 8, 28, 1, - 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 804, 8, 29, 10, 29, 12, - 29, 807, 9, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, - 30, 1, 30, 5, 30, 821, 8, 30, 10, 30, 12, 30, 824, 9, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, - 31, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 835, 8, 31, 10, 31, 12, 31, 838, 9, 31, 1, 32, 1, - 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 850, 8, 32, 10, 32, 12, - 32, 853, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, - 33, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 870, 8, 33, 10, 33, 12, 33, 873, 9, 33, 1, 34, 1, - 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 884, 8, 34, 10, 34, 12, 34, - 887, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 895, 8, 35, 10, 35, 12, 35, - 898, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 906, 8, 36, 10, 36, 12, 36, - 909, 9, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 917, 8, 37, 10, 37, 12, 37, - 920, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 928, 8, 38, 10, 38, 12, 38, - 931, 9, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 939, 8, 39, 10, 39, 12, 39, - 942, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 951, 8, 40, 1, 41, 1, - 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 959, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, - 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 972, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, - 43, 1, 43, 5, 43, 980, 8, 43, 10, 43, 12, 43, 983, 9, 43, 1, 44, 1, 44, 1, 45, 1, 45, 3, - 45, 989, 8, 45, 1, 45, 1, 45, 3, 45, 993, 8, 45, 1, 45, 1, 45, 3, 45, 997, 8, 45, 1, 45, - 1, 45, 3, 45, 1001, 8, 45, 1, 45, 1, 45, 3, 45, 1005, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, - 1010, 8, 45, 1, 45, 3, 45, 1013, 8, 45, 1, 46, 3, 46, 1016, 8, 46, 1, 46, 1, 46, 1, 46, - 1, 46, 3, 46, 1022, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1030, 8, 46, - 1, 46, 1, 46, 1, 46, 3, 46, 1035, 8, 46, 1, 47, 3, 47, 1038, 8, 47, 1, 47, 1, 47, 1, 48, - 1, 48, 3, 48, 1044, 8, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 1053, - 8, 49, 10, 49, 12, 49, 1056, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, - 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, - 50, 1078, 8, 50, 1, 51, 1, 51, 3, 51, 1082, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, - 51, 3, 51, 1090, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1096, 8, 51, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 52, 1, 52, 3, 52, 1120, 8, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1133, 8, 52, 1, 53, 1, - 53, 3, 53, 1137, 8, 53, 1, 54, 3, 54, 1140, 8, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, - 55, 1147, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1155, 8, 56, 1, 56, 1, - 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1165, 8, 56, 1, 57, 1, 57, 1, 58, 1, - 58, 1, 58, 1, 58, 1, 58, 5, 58, 1174, 8, 58, 10, 58, 12, 58, 1177, 9, 58, 1, 59, 1, 59, - 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1188, 8, 59, 1, 60, 1, 60, 1, 60, - 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1198, 8, 60, 1, 61, 1, 61, 1, 61, 3, 61, 1203, - 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 3, 62, 1210, 8, 62, 1, 62, 3, 62, 1213, 8, 62, - 1, 62, 1, 62, 1, 62, 3, 62, 1218, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1223, 8, 62, 1, 63, - 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, - 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1244, 8, 66, 1, 67, 1, 67, 3, 67, 1248, 8, 67, - 1, 67, 1, 67, 1, 67, 3, 67, 1253, 8, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, - 1, 71, 1, 71, 3, 71, 1264, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1270, 8, 72, 1, 73, - 1, 73, 3, 73, 1274, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1279, 8, 73, 1, 74, 1, 74, 3, 74, - 1283, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1288, 8, 74, 1, 75, 3, 75, 1291, 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, 3, 75, 1313, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, - 3, 76, 1319, 8, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, - 1330, 8, 77, 1, 78, 1, 78, 3, 78, 1334, 8, 78, 1, 78, 3, 78, 1337, 8, 78, 1, 78, 1, 78, - 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1347, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, - 3, 78, 1353, 8, 78, 1, 78, 3, 78, 1356, 8, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, - 1363, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1373, 8, 80, - 1, 81, 1, 81, 3, 81, 1377, 8, 81, 1, 81, 3, 81, 1380, 8, 81, 1, 81, 3, 81, 1383, 8, 81, - 1, 81, 1, 81, 3, 81, 1387, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1392, 8, 81, 3, 81, 1394, - 8, 81, 1, 82, 1, 82, 3, 82, 1398, 8, 82, 1, 82, 1, 82, 3, 82, 1402, 8, 82, 1, 82, 1, 82, - 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1411, 8, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, - 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1422, 8, 85, 10, 85, 12, 85, 1425, 9, 85, 1, 86, 1, - 86, 1, 86, 1, 86, 1, 86, 3, 86, 1432, 8, 86, 1, 87, 1, 87, 1, 88, 1, 88, 3, 88, 1438, 8, - 88, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 1444, 8, 90, 1, 91, 1, 91, 3, 91, 1448, 8, 91, 1, - 92, 3, 92, 1451, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 3, 93, 1460, 8, - 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 3, 94, 1469, 8, 94, 1, 94, 1, 94, 1, - 94, 1, 94, 1, 94, 1, 95, 3, 95, 1477, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, - 97, 1, 97, 1, 98, 3, 98, 1488, 8, 98, 1, 98, 1, 98, 1, 99, 1, 99, 3, 99, 1494, 8, 99, 1, - 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1505, 8, 99, 1, 100, - 3, 100, 1508, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1513, 8, 100, 1, 100, 1, 100, - 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, - 3, 102, 1528, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1534, 8, 102, 1, 103, - 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1541, 8, 103, 10, 103, 12, 103, 1544, 9, 103, - 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1553, 8, 104, 1, 105, - 1, 105, 1, 105, 1, 105, 3, 105, 1559, 8, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, - 1, 105, 3, 105, 1567, 8, 105, 1, 105, 1, 105, 3, 105, 1571, 8, 105, 1, 106, 1, 106, - 3, 106, 1575, 8, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1580, 8, 106, 1, 106, 1, 106, - 1, 106, 3, 106, 1585, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 1592, - 8, 106, 10, 106, 12, 106, 1595, 9, 106, 1, 107, 1, 107, 3, 107, 1599, 8, 107, 1, 108, - 1, 108, 3, 108, 1603, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, - 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 3, 112, 1617, 8, 112, 1, 112, 1, 112, 5, 112, - 1621, 8, 112, 10, 112, 12, 112, 1624, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, - 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1638, 8, 113, 1, 114, - 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1646, 8, 114, 10, 114, 12, 114, 1649, - 9, 114, 1, 115, 1, 115, 3, 115, 1653, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, - 3, 116, 1660, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1666, 8, 117, 1, 118, - 1, 118, 1, 118, 3, 118, 1671, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1677, - 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1684, 8, 118, 1, 118, 1, 118, - 3, 118, 1688, 8, 118, 5, 118, 1690, 8, 118, 10, 118, 12, 118, 1693, 9, 118, 1, 119, - 1, 119, 1, 119, 1, 119, 3, 119, 1699, 8, 119, 1, 119, 3, 119, 1702, 8, 119, 1, 119, - 3, 119, 1705, 8, 119, 1, 119, 3, 119, 1708, 8, 119, 1, 120, 1, 120, 1, 120, 3, 120, - 1713, 8, 120, 1, 121, 1, 121, 3, 121, 1717, 8, 121, 1, 121, 3, 121, 1720, 8, 121, 1, - 121, 1, 121, 3, 121, 1724, 8, 121, 1, 121, 1, 121, 3, 121, 1728, 8, 121, 1, 121, 1, - 121, 1, 121, 3, 121, 1733, 8, 121, 1, 121, 3, 121, 1736, 8, 121, 3, 121, 1738, 8, 121, - 1, 122, 1, 122, 3, 122, 1742, 8, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 3, 125, - 1749, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 3, 126, 1755, 8, 126, 1, 127, 1, 127, - 3, 127, 1759, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1765, 8, 127, 1, 128, - 1, 128, 1, 128, 3, 128, 1770, 8, 128, 3, 128, 1772, 8, 128, 1, 129, 1, 129, 1, 129, - 1, 129, 3, 129, 1778, 8, 129, 1, 129, 1, 129, 3, 129, 1782, 8, 129, 1, 129, 1, 129, - 1, 129, 1, 129, 3, 129, 1788, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, - 1795, 8, 129, 1, 129, 1, 129, 3, 129, 1799, 8, 129, 5, 129, 1801, 8, 129, 10, 129, - 12, 129, 1804, 9, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1810, 8, 130, 1, 131, - 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1820, 8, 131, 1, 131, - 1, 131, 3, 131, 1824, 8, 131, 5, 131, 1826, 8, 131, 10, 131, 12, 131, 1829, 9, 131, - 1, 132, 3, 132, 1832, 8, 132, 1, 132, 3, 132, 1835, 8, 132, 1, 132, 1, 132, 1, 132, - 1, 132, 3, 132, 1841, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, - 1849, 8, 133, 10, 133, 12, 133, 1852, 9, 133, 1, 134, 3, 134, 1855, 8, 134, 1, 134, - 1, 134, 1, 134, 1, 134, 3, 134, 1861, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, - 1, 134, 3, 134, 1869, 8, 134, 1, 134, 1, 134, 3, 134, 1873, 8, 134, 1, 134, 3, 134, - 1876, 8, 134, 1, 134, 1, 134, 3, 134, 1880, 8, 134, 1, 134, 1, 134, 1, 134, 3, 134, - 1885, 8, 134, 1, 135, 3, 135, 1888, 8, 135, 1, 135, 3, 135, 1891, 8, 135, 1, 135, 1, - 135, 3, 135, 1895, 8, 135, 1, 135, 1, 135, 1, 136, 3, 136, 1900, 8, 136, 1, 136, 1, - 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1910, 8, 136, 1, 137, 1, - 137, 1, 137, 1, 137, 1, 137, 3, 137, 1917, 8, 137, 1, 138, 1, 138, 1, 138, 3, 138, 1922, - 8, 138, 1, 139, 1, 139, 3, 139, 1926, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 1931, - 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 1937, 8, 140, 5, 140, 1939, 8, 140, - 10, 140, 12, 140, 1942, 9, 140, 1, 141, 1, 141, 1, 141, 3, 141, 1947, 8, 141, 1, 141, - 1, 141, 1, 141, 1, 141, 3, 141, 1953, 8, 141, 1, 142, 1, 142, 3, 142, 1957, 8, 142, - 1, 143, 1, 143, 1, 143, 3, 143, 1962, 8, 143, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, - 1968, 8, 144, 1, 144, 1, 144, 3, 144, 1972, 8, 144, 1, 144, 3, 144, 1975, 8, 144, 1, - 144, 1, 144, 3, 144, 1979, 8, 144, 1, 144, 3, 144, 1982, 8, 144, 3, 144, 1984, 8, 144, - 1, 145, 3, 145, 1987, 8, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, - 1, 148, 3, 148, 1997, 8, 148, 1, 148, 1, 148, 1, 148, 3, 148, 2002, 8, 148, 3, 148, - 2004, 8, 148, 1, 149, 3, 149, 2007, 8, 149, 1, 149, 3, 149, 2010, 8, 149, 1, 149, 3, - 149, 2013, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2022, - 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 5, 150, 2030, 8, 150, 10, 150, - 12, 150, 2033, 9, 150, 1, 151, 1, 151, 3, 151, 2037, 8, 151, 1, 151, 3, 151, 2040, - 8, 151, 1, 151, 1, 151, 3, 151, 2044, 8, 151, 1, 151, 3, 151, 2047, 8, 151, 1, 151, - 3, 151, 2050, 8, 151, 1, 151, 1, 151, 3, 151, 2054, 8, 151, 1, 152, 1, 152, 1, 152, - 1, 152, 1, 152, 5, 152, 2061, 8, 152, 10, 152, 12, 152, 2064, 9, 152, 1, 153, 1, 153, - 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, - 2078, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2084, 8, 156, 5, 156, 2086, 8, - 156, 10, 156, 12, 156, 2089, 9, 156, 1, 157, 3, 157, 2092, 8, 157, 1, 157, 1, 157, - 3, 157, 2096, 8, 157, 1, 157, 1, 157, 3, 157, 2100, 8, 157, 1, 157, 1, 157, 3, 157, - 2104, 8, 157, 1, 157, 1, 157, 3, 157, 2108, 8, 157, 1, 157, 1, 157, 3, 157, 2112, 8, - 157, 1, 158, 3, 158, 2115, 8, 158, 1, 158, 1, 158, 3, 158, 2119, 8, 158, 1, 159, 1, - 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 3, 162, 2130, 8, 162, 1, - 163, 1, 163, 3, 163, 2134, 8, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 3, 165, 2141, - 8, 165, 1, 165, 1, 165, 3, 165, 2145, 8, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2150, - 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2155, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, - 1, 166, 3, 166, 2162, 8, 166, 1, 167, 1, 167, 3, 167, 2166, 8, 167, 1, 168, 1, 168, - 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2176, 8, 169, 1, 170, 1, 170, - 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, - 2190, 8, 171, 10, 171, 12, 171, 2193, 9, 171, 1, 172, 1, 172, 3, 172, 2197, 8, 172, - 1, 173, 1, 173, 3, 173, 2201, 8, 173, 1, 173, 3, 173, 2204, 8, 173, 1, 173, 1, 173, - 3, 173, 2208, 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2214, 8, 173, 1, 173, - 3, 173, 2217, 8, 173, 1, 173, 1, 173, 3, 173, 2221, 8, 173, 1, 173, 1, 173, 1, 173, - 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2231, 8, 173, 1, 173, 3, 173, 2234, - 8, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2242, 8, 173, 1, 173, - 1, 173, 1, 173, 3, 173, 2247, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2252, 8, 174, - 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2260, 8, 175, 1, 175, 1, 175, - 1, 175, 1, 175, 1, 175, 3, 175, 2267, 8, 175, 1, 175, 1, 175, 3, 175, 2271, 8, 175, - 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 3, 177, 2278, 8, 177, 1, 177, 1, 177, 1, 177, - 1, 177, 3, 177, 2284, 8, 177, 5, 177, 2286, 8, 177, 10, 177, 12, 177, 2289, 9, 177, - 1, 178, 1, 178, 1, 178, 3, 178, 2294, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, - 1, 179, 1, 179, 3, 179, 2303, 8, 179, 1, 179, 1, 179, 3, 179, 2307, 8, 179, 1, 180, - 3, 180, 2310, 8, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, - 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2326, 8, 183, 1, 183, 1, 183, - 1, 183, 1, 184, 1, 184, 3, 184, 2333, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, - 1, 185, 1, 186, 3, 186, 2342, 8, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2348, - 8, 186, 1, 186, 1, 186, 3, 186, 2352, 8, 186, 1, 186, 3, 186, 2355, 8, 186, 1, 187, - 1, 187, 3, 187, 2359, 8, 187, 1, 188, 1, 188, 3, 188, 2363, 8, 188, 1, 189, 1, 189, - 1, 189, 3, 189, 2368, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 3, 190, 2375, - 8, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2381, 8, 190, 5, 190, 2383, 8, 190, - 10, 190, 12, 190, 2386, 9, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, - 2394, 8, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 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, 1, 194, 1, 194, - 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, - 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, - 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, - 1, 194, 1, 194, 3, 194, 2451, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, - 1, 195, 3, 195, 2460, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, - 0, 34, 10, 20, 30, 48, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 86, 98, 116, 170, - 206, 212, 224, 228, 236, 258, 262, 266, 280, 300, 304, 312, 342, 354, 380, 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, 11, 2, 0, 90, 90, 94, 94, 2, 0, 84, 86, 90, - 93, 5, 0, 29, 29, 40, 40, 50, 50, 56, 56, 63, 63, 3, 0, 27, 27, 37, 37, 73, 73, 2, 0, 15, - 15, 75, 75, 2, 0, 90, 90, 111, 111, 3, 0, 14, 14, 59, 59, 70, 70, 2, 0, 31, 31, 46, 46, - 1, 0, 47, 49, 2, 0, 30, 30, 65, 65, 1, 0, 135, 138, 2757, 0, 399, 1, 0, 0, 0, 2, 411, 1, - 0, 0, 0, 4, 415, 1, 0, 0, 0, 6, 426, 1, 0, 0, 0, 8, 428, 1, 0, 0, 0, 10, 445, 1, 0, 0, 0, 12, - 462, 1, 0, 0, 0, 14, 468, 1, 0, 0, 0, 16, 480, 1, 0, 0, 0, 18, 482, 1, 0, 0, 0, 20, 484, - 1, 0, 0, 0, 22, 502, 1, 0, 0, 0, 24, 508, 1, 0, 0, 0, 26, 515, 1, 0, 0, 0, 28, 517, 1, 0, - 0, 0, 30, 596, 1, 0, 0, 0, 32, 641, 1, 0, 0, 0, 34, 665, 1, 0, 0, 0, 36, 695, 1, 0, 0, 0, - 38, 697, 1, 0, 0, 0, 40, 723, 1, 0, 0, 0, 42, 725, 1, 0, 0, 0, 44, 729, 1, 0, 0, 0, 46, 738, - 1, 0, 0, 0, 48, 740, 1, 0, 0, 0, 50, 765, 1, 0, 0, 0, 52, 779, 1, 0, 0, 0, 54, 781, 1, 0, - 0, 0, 56, 792, 1, 0, 0, 0, 58, 794, 1, 0, 0, 0, 60, 808, 1, 0, 0, 0, 62, 825, 1, 0, 0, 0, - 64, 839, 1, 0, 0, 0, 66, 854, 1, 0, 0, 0, 68, 874, 1, 0, 0, 0, 70, 888, 1, 0, 0, 0, 72, 899, - 1, 0, 0, 0, 74, 910, 1, 0, 0, 0, 76, 921, 1, 0, 0, 0, 78, 932, 1, 0, 0, 0, 80, 950, 1, 0, - 0, 0, 82, 958, 1, 0, 0, 0, 84, 971, 1, 0, 0, 0, 86, 973, 1, 0, 0, 0, 88, 984, 1, 0, 0, 0, - 90, 1012, 1, 0, 0, 0, 92, 1034, 1, 0, 0, 0, 94, 1037, 1, 0, 0, 0, 96, 1041, 1, 0, 0, 0, - 98, 1047, 1, 0, 0, 0, 100, 1077, 1, 0, 0, 0, 102, 1095, 1, 0, 0, 0, 104, 1132, 1, 0, 0, - 0, 106, 1136, 1, 0, 0, 0, 108, 1139, 1, 0, 0, 0, 110, 1146, 1, 0, 0, 0, 112, 1164, 1, - 0, 0, 0, 114, 1166, 1, 0, 0, 0, 116, 1168, 1, 0, 0, 0, 118, 1187, 1, 0, 0, 0, 120, 1197, - 1, 0, 0, 0, 122, 1199, 1, 0, 0, 0, 124, 1222, 1, 0, 0, 0, 126, 1224, 1, 0, 0, 0, 128, 1232, - 1, 0, 0, 0, 130, 1234, 1, 0, 0, 0, 132, 1243, 1, 0, 0, 0, 134, 1252, 1, 0, 0, 0, 136, 1254, - 1, 0, 0, 0, 138, 1256, 1, 0, 0, 0, 140, 1258, 1, 0, 0, 0, 142, 1263, 1, 0, 0, 0, 144, 1269, - 1, 0, 0, 0, 146, 1278, 1, 0, 0, 0, 148, 1287, 1, 0, 0, 0, 150, 1312, 1, 0, 0, 0, 152, 1318, - 1, 0, 0, 0, 154, 1329, 1, 0, 0, 0, 156, 1355, 1, 0, 0, 0, 158, 1357, 1, 0, 0, 0, 160, 1372, - 1, 0, 0, 0, 162, 1393, 1, 0, 0, 0, 164, 1395, 1, 0, 0, 0, 166, 1410, 1, 0, 0, 0, 168, 1412, - 1, 0, 0, 0, 170, 1415, 1, 0, 0, 0, 172, 1431, 1, 0, 0, 0, 174, 1433, 1, 0, 0, 0, 176, 1437, - 1, 0, 0, 0, 178, 1439, 1, 0, 0, 0, 180, 1443, 1, 0, 0, 0, 182, 1447, 1, 0, 0, 0, 184, 1450, - 1, 0, 0, 0, 186, 1459, 1, 0, 0, 0, 188, 1468, 1, 0, 0, 0, 190, 1476, 1, 0, 0, 0, 192, 1478, - 1, 0, 0, 0, 194, 1480, 1, 0, 0, 0, 196, 1487, 1, 0, 0, 0, 198, 1504, 1, 0, 0, 0, 200, 1507, - 1, 0, 0, 0, 202, 1517, 1, 0, 0, 0, 204, 1533, 1, 0, 0, 0, 206, 1535, 1, 0, 0, 0, 208, 1552, - 1, 0, 0, 0, 210, 1570, 1, 0, 0, 0, 212, 1579, 1, 0, 0, 0, 214, 1596, 1, 0, 0, 0, 216, 1602, - 1, 0, 0, 0, 218, 1604, 1, 0, 0, 0, 220, 1608, 1, 0, 0, 0, 222, 1610, 1, 0, 0, 0, 224, 1614, - 1, 0, 0, 0, 226, 1637, 1, 0, 0, 0, 228, 1639, 1, 0, 0, 0, 230, 1650, 1, 0, 0, 0, 232, 1659, - 1, 0, 0, 0, 234, 1665, 1, 0, 0, 0, 236, 1676, 1, 0, 0, 0, 238, 1694, 1, 0, 0, 0, 240, 1709, - 1, 0, 0, 0, 242, 1737, 1, 0, 0, 0, 244, 1739, 1, 0, 0, 0, 246, 1743, 1, 0, 0, 0, 248, 1745, - 1, 0, 0, 0, 250, 1748, 1, 0, 0, 0, 252, 1752, 1, 0, 0, 0, 254, 1764, 1, 0, 0, 0, 256, 1771, - 1, 0, 0, 0, 258, 1787, 1, 0, 0, 0, 260, 1809, 1, 0, 0, 0, 262, 1811, 1, 0, 0, 0, 264, 1840, - 1, 0, 0, 0, 266, 1842, 1, 0, 0, 0, 268, 1884, 1, 0, 0, 0, 270, 1887, 1, 0, 0, 0, 272, 1909, - 1, 0, 0, 0, 274, 1916, 1, 0, 0, 0, 276, 1921, 1, 0, 0, 0, 278, 1925, 1, 0, 0, 0, 280, 1927, - 1, 0, 0, 0, 282, 1952, 1, 0, 0, 0, 284, 1956, 1, 0, 0, 0, 286, 1958, 1, 0, 0, 0, 288, 1983, - 1, 0, 0, 0, 290, 1986, 1, 0, 0, 0, 292, 1990, 1, 0, 0, 0, 294, 1992, 1, 0, 0, 0, 296, 2003, - 1, 0, 0, 0, 298, 2021, 1, 0, 0, 0, 300, 2023, 1, 0, 0, 0, 302, 2053, 1, 0, 0, 0, 304, 2055, - 1, 0, 0, 0, 306, 2065, 1, 0, 0, 0, 308, 2067, 1, 0, 0, 0, 310, 2071, 1, 0, 0, 0, 312, 2074, - 1, 0, 0, 0, 314, 2111, 1, 0, 0, 0, 316, 2118, 1, 0, 0, 0, 318, 2120, 1, 0, 0, 0, 320, 2122, - 1, 0, 0, 0, 322, 2124, 1, 0, 0, 0, 324, 2127, 1, 0, 0, 0, 326, 2131, 1, 0, 0, 0, 328, 2135, - 1, 0, 0, 0, 330, 2149, 1, 0, 0, 0, 332, 2161, 1, 0, 0, 0, 334, 2165, 1, 0, 0, 0, 336, 2167, - 1, 0, 0, 0, 338, 2175, 1, 0, 0, 0, 340, 2177, 1, 0, 0, 0, 342, 2183, 1, 0, 0, 0, 344, 2196, - 1, 0, 0, 0, 346, 2246, 1, 0, 0, 0, 348, 2248, 1, 0, 0, 0, 350, 2270, 1, 0, 0, 0, 352, 2272, - 1, 0, 0, 0, 354, 2274, 1, 0, 0, 0, 356, 2293, 1, 0, 0, 0, 358, 2306, 1, 0, 0, 0, 360, 2309, - 1, 0, 0, 0, 362, 2314, 1, 0, 0, 0, 364, 2319, 1, 0, 0, 0, 366, 2323, 1, 0, 0, 0, 368, 2330, - 1, 0, 0, 0, 370, 2334, 1, 0, 0, 0, 372, 2354, 1, 0, 0, 0, 374, 2356, 1, 0, 0, 0, 376, 2362, - 1, 0, 0, 0, 378, 2364, 1, 0, 0, 0, 380, 2371, 1, 0, 0, 0, 382, 2393, 1, 0, 0, 0, 384, 2395, - 1, 0, 0, 0, 386, 2398, 1, 0, 0, 0, 388, 2450, 1, 0, 0, 0, 390, 2459, 1, 0, 0, 0, 392, 2461, - 1, 0, 0, 0, 394, 2463, 1, 0, 0, 0, 396, 2465, 1, 0, 0, 0, 398, 400, 3, 116, 58, 0, 399, - 398, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 402, 5, 0, 0, 1, 402, - 1, 1, 0, 0, 0, 403, 412, 3, 390, 195, 0, 404, 412, 5, 62, 0, 0, 405, 406, 5, 78, 0, 0, - 406, 407, 3, 86, 43, 0, 407, 408, 5, 79, 0, 0, 408, 412, 1, 0, 0, 0, 409, 412, 3, 4, 2, - 0, 410, 412, 3, 12, 6, 0, 411, 403, 1, 0, 0, 0, 411, 404, 1, 0, 0, 0, 411, 405, 1, 0, 0, - 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 3, 1, 0, 0, 0, 413, 416, 3, 6, 3, 0, - 414, 416, 3, 8, 4, 0, 415, 413, 1, 0, 0, 0, 415, 414, 1, 0, 0, 0, 416, 5, 1, 0, 0, 0, 417, - 427, 5, 125, 0, 0, 418, 427, 3, 336, 168, 0, 419, 427, 3, 322, 161, 0, 420, 427, 3, - 338, 169, 0, 421, 422, 5, 92, 0, 0, 422, 427, 3, 284, 142, 0, 423, 424, 5, 92, 0, 0, - 424, 427, 3, 154, 77, 0, 425, 427, 3, 350, 175, 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, 423, 1, - 0, 0, 0, 426, 425, 1, 0, 0, 0, 427, 7, 1, 0, 0, 0, 428, 430, 3, 10, 5, 0, 429, 431, 5, 61, - 0, 0, 430, 429, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 3, 6, - 3, 0, 433, 9, 1, 0, 0, 0, 434, 435, 6, 5, -1, 0, 435, 446, 5, 120, 0, 0, 436, 437, 3, 152, - 76, 0, 437, 438, 5, 120, 0, 0, 438, 446, 1, 0, 0, 0, 439, 440, 3, 176, 88, 0, 440, 441, - 5, 120, 0, 0, 441, 446, 1, 0, 0, 0, 442, 443, 3, 154, 77, 0, 443, 444, 5, 120, 0, 0, 444, - 446, 1, 0, 0, 0, 445, 434, 1, 0, 0, 0, 445, 436, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, - 442, 1, 0, 0, 0, 446, 459, 1, 0, 0, 0, 447, 448, 10, 2, 0, 0, 448, 449, 5, 125, 0, 0, 449, - 458, 5, 120, 0, 0, 450, 452, 10, 1, 0, 0, 451, 453, 5, 61, 0, 0, 452, 451, 1, 0, 0, 0, - 452, 453, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 455, 3, 348, 174, 0, 455, 456, 5, 120, - 0, 0, 456, 458, 1, 0, 0, 0, 457, 447, 1, 0, 0, 0, 457, 450, 1, 0, 0, 0, 458, 461, 1, 0, - 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 11, 1, 0, 0, 0, 461, 459, 1, 0, 0, - 0, 462, 464, 3, 14, 7, 0, 463, 465, 3, 28, 14, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, - 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 3, 96, 48, 0, 467, 13, 1, 0, 0, 0, 468, 470, 5, 80, - 0, 0, 469, 471, 3, 16, 8, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, - 0, 0, 472, 473, 5, 81, 0, 0, 473, 15, 1, 0, 0, 0, 474, 481, 3, 18, 9, 0, 475, 481, 3, 20, - 10, 0, 476, 477, 3, 18, 9, 0, 477, 478, 5, 115, 0, 0, 478, 479, 3, 20, 10, 0, 479, 481, - 1, 0, 0, 0, 480, 474, 1, 0, 0, 0, 480, 475, 1, 0, 0, 0, 480, 476, 1, 0, 0, 0, 481, 17, 1, - 0, 0, 0, 482, 483, 7, 0, 0, 0, 483, 19, 1, 0, 0, 0, 484, 485, 6, 10, -1, 0, 485, 487, 3, - 22, 11, 0, 486, 488, 5, 124, 0, 0, 487, 486, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 497, - 1, 0, 0, 0, 489, 490, 10, 1, 0, 0, 490, 491, 5, 115, 0, 0, 491, 493, 3, 22, 11, 0, 492, - 494, 5, 124, 0, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 496, 1, 0, 0, 0, 495, - 489, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, - 21, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 503, 3, 24, 12, 0, 501, 503, 3, 26, 13, 0, 502, - 500, 1, 0, 0, 0, 502, 501, 1, 0, 0, 0, 503, 23, 1, 0, 0, 0, 504, 509, 5, 125, 0, 0, 505, - 506, 5, 90, 0, 0, 506, 509, 5, 125, 0, 0, 507, 509, 5, 62, 0, 0, 508, 504, 1, 0, 0, 0, - 508, 505, 1, 0, 0, 0, 508, 507, 1, 0, 0, 0, 509, 25, 1, 0, 0, 0, 510, 511, 5, 125, 0, 0, - 511, 516, 3, 274, 137, 0, 512, 513, 5, 90, 0, 0, 513, 514, 5, 125, 0, 0, 514, 516, 3, - 274, 137, 0, 515, 510, 1, 0, 0, 0, 515, 512, 1, 0, 0, 0, 516, 27, 1, 0, 0, 0, 517, 518, - 5, 78, 0, 0, 518, 519, 3, 264, 132, 0, 519, 521, 5, 79, 0, 0, 520, 522, 5, 40, 0, 0, 521, - 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 1, 0, 0, 0, 523, 525, 3, 376, 188, 0, - 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 528, 3, 206, 103, - 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 530, 1, 0, 0, 0, 529, 531, 3, 240, - 120, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 29, 1, 0, 0, 0, 532, 533, 6, 15, - -1, 0, 533, 597, 3, 2, 1, 0, 534, 535, 3, 150, 75, 0, 535, 537, 5, 78, 0, 0, 536, 538, - 3, 32, 16, 0, 537, 536, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, - 5, 79, 0, 0, 540, 597, 1, 0, 0, 0, 541, 542, 3, 358, 179, 0, 542, 544, 5, 78, 0, 0, 543, - 545, 3, 32, 16, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, - 547, 5, 79, 0, 0, 547, 597, 1, 0, 0, 0, 548, 549, 3, 150, 75, 0, 549, 550, 3, 282, 141, - 0, 550, 597, 1, 0, 0, 0, 551, 552, 3, 358, 179, 0, 552, 553, 3, 282, 141, 0, 553, 597, - 1, 0, 0, 0, 554, 555, 5, 24, 0, 0, 555, 556, 5, 95, 0, 0, 556, 557, 3, 252, 126, 0, 557, - 558, 5, 96, 0, 0, 558, 559, 5, 78, 0, 0, 559, 560, 3, 86, 43, 0, 560, 561, 5, 79, 0, 0, - 561, 597, 1, 0, 0, 0, 562, 563, 5, 58, 0, 0, 563, 564, 5, 95, 0, 0, 564, 565, 3, 252, - 126, 0, 565, 566, 5, 96, 0, 0, 566, 567, 5, 78, 0, 0, 567, 568, 3, 86, 43, 0, 568, 569, - 5, 79, 0, 0, 569, 597, 1, 0, 0, 0, 570, 571, 5, 51, 0, 0, 571, 572, 5, 95, 0, 0, 572, 573, - 3, 252, 126, 0, 573, 574, 5, 96, 0, 0, 574, 575, 5, 78, 0, 0, 575, 576, 3, 86, 43, 0, - 576, 577, 5, 79, 0, 0, 577, 597, 1, 0, 0, 0, 578, 579, 5, 17, 0, 0, 579, 580, 5, 95, 0, - 0, 580, 581, 3, 252, 126, 0, 581, 582, 5, 96, 0, 0, 582, 583, 5, 78, 0, 0, 583, 584, - 3, 86, 43, 0, 584, 585, 5, 79, 0, 0, 585, 597, 1, 0, 0, 0, 586, 587, 5, 68, 0, 0, 587, - 588, 5, 78, 0, 0, 588, 589, 3, 86, 43, 0, 589, 590, 5, 79, 0, 0, 590, 597, 1, 0, 0, 0, - 591, 592, 5, 68, 0, 0, 592, 593, 5, 78, 0, 0, 593, 594, 3, 252, 126, 0, 594, 595, 5, - 79, 0, 0, 595, 597, 1, 0, 0, 0, 596, 532, 1, 0, 0, 0, 596, 534, 1, 0, 0, 0, 596, 541, 1, - 0, 0, 0, 596, 548, 1, 0, 0, 0, 596, 551, 1, 0, 0, 0, 596, 554, 1, 0, 0, 0, 596, 562, 1, - 0, 0, 0, 596, 570, 1, 0, 0, 0, 596, 578, 1, 0, 0, 0, 596, 586, 1, 0, 0, 0, 596, 591, 1, - 0, 0, 0, 597, 638, 1, 0, 0, 0, 598, 599, 10, 19, 0, 0, 599, 600, 5, 80, 0, 0, 600, 601, - 3, 86, 43, 0, 601, 602, 5, 81, 0, 0, 602, 637, 1, 0, 0, 0, 603, 604, 10, 18, 0, 0, 604, - 605, 5, 80, 0, 0, 605, 606, 3, 282, 141, 0, 606, 607, 5, 81, 0, 0, 607, 637, 1, 0, 0, - 0, 608, 609, 10, 17, 0, 0, 609, 611, 5, 78, 0, 0, 610, 612, 3, 32, 16, 0, 611, 610, 1, - 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 637, 5, 79, 0, 0, 614, 615, 10, - 12, 0, 0, 615, 617, 5, 122, 0, 0, 616, 618, 5, 61, 0, 0, 617, 616, 1, 0, 0, 0, 617, 618, - 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 637, 3, 4, 2, 0, 620, 621, 10, 11, 0, 0, 621, 623, - 5, 117, 0, 0, 622, 624, 5, 61, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, - 1, 0, 0, 0, 625, 637, 3, 4, 2, 0, 626, 627, 10, 10, 0, 0, 627, 628, 5, 122, 0, 0, 628, - 637, 3, 34, 17, 0, 629, 630, 10, 9, 0, 0, 630, 631, 5, 117, 0, 0, 631, 637, 3, 34, 17, - 0, 632, 633, 10, 8, 0, 0, 633, 637, 5, 113, 0, 0, 634, 635, 10, 7, 0, 0, 635, 637, 5, - 114, 0, 0, 636, 598, 1, 0, 0, 0, 636, 603, 1, 0, 0, 0, 636, 608, 1, 0, 0, 0, 636, 614, - 1, 0, 0, 0, 636, 620, 1, 0, 0, 0, 636, 626, 1, 0, 0, 0, 636, 629, 1, 0, 0, 0, 636, 632, - 1, 0, 0, 0, 636, 634, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 636, 1, 0, 0, 0, 638, 639, - 1, 0, 0, 0, 639, 31, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 641, 642, 3, 280, 140, 0, 642, 33, - 1, 0, 0, 0, 643, 645, 3, 10, 5, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, - 1, 0, 0, 0, 646, 647, 3, 152, 76, 0, 647, 648, 5, 120, 0, 0, 648, 649, 5, 92, 0, 0, 649, - 650, 3, 152, 76, 0, 650, 666, 1, 0, 0, 0, 651, 652, 3, 10, 5, 0, 652, 653, 5, 61, 0, 0, - 653, 654, 3, 348, 174, 0, 654, 655, 5, 120, 0, 0, 655, 656, 5, 92, 0, 0, 656, 657, 3, - 152, 76, 0, 657, 666, 1, 0, 0, 0, 658, 660, 3, 10, 5, 0, 659, 658, 1, 0, 0, 0, 659, 660, - 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 5, 92, 0, 0, 662, 666, 3, 152, 76, 0, 663, - 664, 5, 92, 0, 0, 664, 666, 3, 154, 77, 0, 665, 644, 1, 0, 0, 0, 665, 651, 1, 0, 0, 0, - 665, 659, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 666, 35, 1, 0, 0, 0, 667, 696, 3, 30, 15, 0, - 668, 669, 5, 113, 0, 0, 669, 696, 3, 56, 28, 0, 670, 671, 5, 114, 0, 0, 671, 696, 3, - 56, 28, 0, 672, 673, 3, 38, 19, 0, 673, 674, 3, 56, 28, 0, 674, 696, 1, 0, 0, 0, 675, - 676, 5, 55, 0, 0, 676, 696, 3, 36, 18, 0, 677, 678, 5, 55, 0, 0, 678, 679, 5, 78, 0, 0, - 679, 680, 3, 252, 126, 0, 680, 681, 5, 79, 0, 0, 681, 696, 1, 0, 0, 0, 682, 683, 5, 55, - 0, 0, 683, 684, 5, 124, 0, 0, 684, 685, 5, 78, 0, 0, 685, 686, 5, 125, 0, 0, 686, 696, - 5, 79, 0, 0, 687, 688, 5, 4, 0, 0, 688, 689, 5, 78, 0, 0, 689, 690, 3, 252, 126, 0, 690, - 691, 5, 79, 0, 0, 691, 696, 1, 0, 0, 0, 692, 696, 3, 54, 27, 0, 693, 696, 3, 40, 20, 0, - 694, 696, 3, 52, 26, 0, 695, 667, 1, 0, 0, 0, 695, 668, 1, 0, 0, 0, 695, 670, 1, 0, 0, - 0, 695, 672, 1, 0, 0, 0, 695, 675, 1, 0, 0, 0, 695, 677, 1, 0, 0, 0, 695, 682, 1, 0, 0, - 0, 695, 687, 1, 0, 0, 0, 695, 692, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, - 0, 696, 37, 1, 0, 0, 0, 697, 698, 7, 1, 0, 0, 698, 39, 1, 0, 0, 0, 699, 701, 5, 120, 0, - 0, 700, 699, 1, 0, 0, 0, 700, 701, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 704, 5, 42, 0, - 0, 703, 705, 3, 42, 21, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 1, 0, - 0, 0, 706, 708, 3, 44, 22, 0, 707, 709, 3, 50, 25, 0, 708, 707, 1, 0, 0, 0, 708, 709, - 1, 0, 0, 0, 709, 724, 1, 0, 0, 0, 710, 712, 5, 120, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, - 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 715, 5, 42, 0, 0, 714, 716, 3, 42, 21, 0, 715, 714, - 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 1, 0, 0, 0, 717, 718, 5, 78, 0, 0, 718, 719, - 3, 252, 126, 0, 719, 721, 5, 79, 0, 0, 720, 722, 3, 50, 25, 0, 721, 720, 1, 0, 0, 0, 721, - 722, 1, 0, 0, 0, 722, 724, 1, 0, 0, 0, 723, 700, 1, 0, 0, 0, 723, 711, 1, 0, 0, 0, 724, - 41, 1, 0, 0, 0, 725, 726, 5, 78, 0, 0, 726, 727, 3, 32, 16, 0, 727, 728, 5, 79, 0, 0, 728, - 43, 1, 0, 0, 0, 729, 731, 3, 146, 73, 0, 730, 732, 3, 46, 23, 0, 731, 730, 1, 0, 0, 0, - 731, 732, 1, 0, 0, 0, 732, 45, 1, 0, 0, 0, 733, 735, 3, 242, 121, 0, 734, 736, 3, 46, - 23, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 739, 1, 0, 0, 0, 737, 739, 3, 48, - 24, 0, 738, 733, 1, 0, 0, 0, 738, 737, 1, 0, 0, 0, 739, 47, 1, 0, 0, 0, 740, 741, 6, 24, - -1, 0, 741, 742, 5, 80, 0, 0, 742, 743, 3, 86, 43, 0, 743, 745, 5, 81, 0, 0, 744, 746, - 3, 206, 103, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 756, 1, 0, 0, 0, 747, - 748, 10, 1, 0, 0, 748, 749, 5, 80, 0, 0, 749, 750, 3, 88, 44, 0, 750, 752, 5, 81, 0, 0, - 751, 753, 3, 206, 103, 0, 752, 751, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 755, 1, 0, - 0, 0, 754, 747, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 756, 757, 1, 0, - 0, 0, 757, 49, 1, 0, 0, 0, 758, 756, 1, 0, 0, 0, 759, 761, 5, 78, 0, 0, 760, 762, 3, 32, - 16, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 766, 5, 79, - 0, 0, 764, 766, 3, 282, 141, 0, 765, 759, 1, 0, 0, 0, 765, 764, 1, 0, 0, 0, 766, 51, 1, - 0, 0, 0, 767, 769, 5, 120, 0, 0, 768, 767, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, - 1, 0, 0, 0, 770, 771, 5, 21, 0, 0, 771, 780, 3, 56, 28, 0, 772, 774, 5, 120, 0, 0, 773, - 772, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 5, 21, 0, 0, 776, - 777, 5, 80, 0, 0, 777, 778, 5, 81, 0, 0, 778, 780, 3, 56, 28, 0, 779, 768, 1, 0, 0, 0, - 779, 773, 1, 0, 0, 0, 780, 53, 1, 0, 0, 0, 781, 782, 5, 43, 0, 0, 782, 783, 5, 78, 0, 0, - 783, 784, 3, 86, 43, 0, 784, 785, 5, 79, 0, 0, 785, 55, 1, 0, 0, 0, 786, 793, 3, 36, 18, - 0, 787, 788, 5, 78, 0, 0, 788, 789, 3, 252, 126, 0, 789, 790, 5, 79, 0, 0, 790, 791, - 3, 56, 28, 0, 791, 793, 1, 0, 0, 0, 792, 786, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 57, - 1, 0, 0, 0, 794, 795, 6, 29, -1, 0, 795, 796, 3, 56, 28, 0, 796, 805, 1, 0, 0, 0, 797, - 798, 10, 2, 0, 0, 798, 799, 5, 123, 0, 0, 799, 804, 3, 56, 28, 0, 800, 801, 10, 1, 0, - 0, 801, 802, 5, 116, 0, 0, 802, 804, 3, 56, 28, 0, 803, 797, 1, 0, 0, 0, 803, 800, 1, - 0, 0, 0, 804, 807, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 59, 1, 0, - 0, 0, 807, 805, 1, 0, 0, 0, 808, 809, 6, 30, -1, 0, 809, 810, 3, 58, 29, 0, 810, 822, - 1, 0, 0, 0, 811, 812, 10, 3, 0, 0, 812, 813, 5, 86, 0, 0, 813, 821, 3, 58, 29, 0, 814, - 815, 10, 2, 0, 0, 815, 816, 5, 87, 0, 0, 816, 821, 3, 58, 29, 0, 817, 818, 10, 1, 0, 0, - 818, 819, 5, 88, 0, 0, 819, 821, 3, 58, 29, 0, 820, 811, 1, 0, 0, 0, 820, 814, 1, 0, 0, - 0, 820, 817, 1, 0, 0, 0, 821, 824, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, - 0, 823, 61, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 825, 826, 6, 31, -1, 0, 826, 827, 3, 60, - 30, 0, 827, 836, 1, 0, 0, 0, 828, 829, 10, 2, 0, 0, 829, 830, 5, 84, 0, 0, 830, 835, 3, - 60, 30, 0, 831, 832, 10, 1, 0, 0, 832, 833, 5, 85, 0, 0, 833, 835, 3, 60, 30, 0, 834, - 828, 1, 0, 0, 0, 834, 831, 1, 0, 0, 0, 835, 838, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, - 837, 1, 0, 0, 0, 837, 63, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 840, 6, 32, -1, 0, 840, - 841, 3, 62, 31, 0, 841, 851, 1, 0, 0, 0, 842, 843, 10, 2, 0, 0, 843, 844, 5, 105, 0, 0, - 844, 850, 3, 62, 31, 0, 845, 846, 10, 1, 0, 0, 846, 847, 3, 384, 192, 0, 847, 848, 3, - 62, 31, 0, 848, 850, 1, 0, 0, 0, 849, 842, 1, 0, 0, 0, 849, 845, 1, 0, 0, 0, 850, 853, - 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 65, 1, 0, 0, 0, 853, 851, 1, - 0, 0, 0, 854, 855, 6, 33, -1, 0, 855, 856, 3, 64, 32, 0, 856, 871, 1, 0, 0, 0, 857, 858, - 10, 4, 0, 0, 858, 859, 5, 95, 0, 0, 859, 870, 3, 64, 32, 0, 860, 861, 10, 3, 0, 0, 861, - 862, 5, 96, 0, 0, 862, 870, 3, 64, 32, 0, 863, 864, 10, 2, 0, 0, 864, 865, 5, 109, 0, - 0, 865, 870, 3, 64, 32, 0, 866, 867, 10, 1, 0, 0, 867, 868, 5, 110, 0, 0, 868, 870, 3, - 64, 32, 0, 869, 857, 1, 0, 0, 0, 869, 860, 1, 0, 0, 0, 869, 863, 1, 0, 0, 0, 869, 866, - 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 67, 1, - 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 875, 6, 34, -1, 0, 875, 876, 3, 66, 33, 0, 876, 885, - 1, 0, 0, 0, 877, 878, 10, 2, 0, 0, 878, 879, 5, 107, 0, 0, 879, 884, 3, 66, 33, 0, 880, - 881, 10, 1, 0, 0, 881, 882, 5, 108, 0, 0, 882, 884, 3, 66, 33, 0, 883, 877, 1, 0, 0, 0, - 883, 880, 1, 0, 0, 0, 884, 887, 1, 0, 0, 0, 885, 883, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, - 886, 69, 1, 0, 0, 0, 887, 885, 1, 0, 0, 0, 888, 889, 6, 35, -1, 0, 889, 890, 3, 68, 34, - 0, 890, 896, 1, 0, 0, 0, 891, 892, 10, 1, 0, 0, 892, 893, 5, 90, 0, 0, 893, 895, 3, 68, - 34, 0, 894, 891, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, - 0, 0, 897, 71, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 899, 900, 6, 36, -1, 0, 900, 901, 3, 70, - 35, 0, 901, 907, 1, 0, 0, 0, 902, 903, 10, 1, 0, 0, 903, 904, 5, 89, 0, 0, 904, 906, 3, - 70, 35, 0, 905, 902, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, - 1, 0, 0, 0, 908, 73, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 910, 911, 6, 37, -1, 0, 911, 912, - 3, 72, 36, 0, 912, 918, 1, 0, 0, 0, 913, 914, 10, 1, 0, 0, 914, 915, 5, 91, 0, 0, 915, - 917, 3, 72, 36, 0, 916, 913, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, - 919, 1, 0, 0, 0, 919, 75, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 6, 38, -1, 0, 922, - 923, 3, 74, 37, 0, 923, 929, 1, 0, 0, 0, 924, 925, 10, 1, 0, 0, 925, 926, 5, 111, 0, 0, - 926, 928, 3, 74, 37, 0, 927, 924, 1, 0, 0, 0, 928, 931, 1, 0, 0, 0, 929, 927, 1, 0, 0, - 0, 929, 930, 1, 0, 0, 0, 930, 77, 1, 0, 0, 0, 931, 929, 1, 0, 0, 0, 932, 933, 6, 39, -1, - 0, 933, 934, 3, 76, 38, 0, 934, 940, 1, 0, 0, 0, 935, 936, 10, 1, 0, 0, 936, 937, 5, 112, - 0, 0, 937, 939, 3, 76, 38, 0, 938, 935, 1, 0, 0, 0, 939, 942, 1, 0, 0, 0, 940, 938, 1, - 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 79, 1, 0, 0, 0, 942, 940, 1, 0, 0, 0, 943, 951, 3, 78, - 39, 0, 944, 945, 3, 78, 39, 0, 945, 946, 5, 118, 0, 0, 946, 947, 3, 86, 43, 0, 947, 948, - 5, 119, 0, 0, 948, 949, 3, 82, 41, 0, 949, 951, 1, 0, 0, 0, 950, 943, 1, 0, 0, 0, 950, - 944, 1, 0, 0, 0, 951, 81, 1, 0, 0, 0, 952, 959, 3, 80, 40, 0, 953, 954, 3, 78, 39, 0, 954, - 955, 3, 84, 42, 0, 955, 956, 3, 278, 139, 0, 956, 959, 1, 0, 0, 0, 957, 959, 3, 374, - 187, 0, 958, 952, 1, 0, 0, 0, 958, 953, 1, 0, 0, 0, 958, 957, 1, 0, 0, 0, 959, 83, 1, 0, - 0, 0, 960, 972, 5, 94, 0, 0, 961, 972, 5, 99, 0, 0, 962, 972, 5, 100, 0, 0, 963, 972, - 5, 101, 0, 0, 964, 972, 5, 97, 0, 0, 965, 972, 5, 98, 0, 0, 966, 972, 3, 386, 193, 0, - 967, 972, 5, 106, 0, 0, 968, 972, 5, 103, 0, 0, 969, 972, 5, 102, 0, 0, 970, 972, 5, - 104, 0, 0, 971, 960, 1, 0, 0, 0, 971, 961, 1, 0, 0, 0, 971, 962, 1, 0, 0, 0, 971, 963, - 1, 0, 0, 0, 971, 964, 1, 0, 0, 0, 971, 965, 1, 0, 0, 0, 971, 966, 1, 0, 0, 0, 971, 967, - 1, 0, 0, 0, 971, 968, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 970, 1, 0, 0, 0, 972, 85, 1, - 0, 0, 0, 973, 974, 6, 43, -1, 0, 974, 975, 3, 82, 41, 0, 975, 981, 1, 0, 0, 0, 976, 977, - 10, 1, 0, 0, 977, 978, 5, 115, 0, 0, 978, 980, 3, 82, 41, 0, 979, 976, 1, 0, 0, 0, 980, - 983, 1, 0, 0, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 87, 1, 0, 0, 0, 983, 981, - 1, 0, 0, 0, 984, 985, 3, 80, 40, 0, 985, 89, 1, 0, 0, 0, 986, 1013, 3, 92, 46, 0, 987, - 989, 3, 206, 103, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, - 990, 1013, 3, 94, 47, 0, 991, 993, 3, 206, 103, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, - 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1013, 3, 96, 48, 0, 995, 997, 3, 206, 103, 0, 996, - 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 1013, 3, 100, 50, 0, - 999, 1001, 3, 206, 103, 0, 1000, 999, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, - 1, 0, 0, 0, 1002, 1013, 3, 104, 52, 0, 1003, 1005, 3, 206, 103, 0, 1004, 1003, 1, 0, - 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1013, 3, 112, 56, 0, 1007, - 1013, 3, 114, 57, 0, 1008, 1010, 3, 206, 103, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, - 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 3, 364, 182, 0, 1012, 986, 1, 0, 0, 0, - 1012, 988, 1, 0, 0, 0, 1012, 992, 1, 0, 0, 0, 1012, 996, 1, 0, 0, 0, 1012, 1000, 1, 0, - 0, 0, 1012, 1004, 1, 0, 0, 0, 1012, 1007, 1, 0, 0, 0, 1012, 1009, 1, 0, 0, 0, 1013, 91, - 1, 0, 0, 0, 1014, 1016, 3, 206, 103, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, - 0, 1016, 1017, 1, 0, 0, 0, 1017, 1018, 5, 125, 0, 0, 1018, 1019, 5, 119, 0, 0, 1019, - 1035, 3, 90, 45, 0, 1020, 1022, 3, 206, 103, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, - 1, 0, 0, 0, 1022, 1023, 1, 0, 0, 0, 1023, 1024, 5, 9, 0, 0, 1024, 1025, 3, 88, 44, 0, - 1025, 1026, 5, 119, 0, 0, 1026, 1027, 3, 90, 45, 0, 1027, 1035, 1, 0, 0, 0, 1028, 1030, - 3, 206, 103, 0, 1029, 1028, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, - 0, 1031, 1032, 5, 20, 0, 0, 1032, 1033, 5, 119, 0, 0, 1033, 1035, 3, 90, 45, 0, 1034, - 1015, 1, 0, 0, 0, 1034, 1021, 1, 0, 0, 0, 1034, 1029, 1, 0, 0, 0, 1035, 93, 1, 0, 0, 0, - 1036, 1038, 3, 86, 43, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, - 1, 0, 0, 0, 1039, 1040, 5, 121, 0, 0, 1040, 95, 1, 0, 0, 0, 1041, 1043, 5, 82, 0, 0, 1042, - 1044, 3, 98, 49, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, - 0, 0, 1045, 1046, 5, 83, 0, 0, 1046, 97, 1, 0, 0, 0, 1047, 1048, 6, 49, -1, 0, 1048, - 1049, 3, 90, 45, 0, 1049, 1054, 1, 0, 0, 0, 1050, 1051, 10, 1, 0, 0, 1051, 1053, 3, - 90, 45, 0, 1052, 1050, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, - 1055, 1, 0, 0, 0, 1055, 99, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1058, 5, 36, 0, - 0, 1058, 1059, 5, 78, 0, 0, 1059, 1060, 3, 102, 51, 0, 1060, 1061, 5, 79, 0, 0, 1061, - 1062, 3, 90, 45, 0, 1062, 1078, 1, 0, 0, 0, 1063, 1064, 5, 36, 0, 0, 1064, 1065, 5, - 78, 0, 0, 1065, 1066, 3, 102, 51, 0, 1066, 1067, 5, 79, 0, 0, 1067, 1068, 3, 90, 45, - 0, 1068, 1069, 5, 25, 0, 0, 1069, 1070, 3, 90, 45, 0, 1070, 1078, 1, 0, 0, 0, 1071, - 1072, 5, 60, 0, 0, 1072, 1073, 5, 78, 0, 0, 1073, 1074, 3, 102, 51, 0, 1074, 1075, - 5, 79, 0, 0, 1075, 1076, 3, 90, 45, 0, 1076, 1078, 1, 0, 0, 0, 1077, 1057, 1, 0, 0, 0, - 1077, 1063, 1, 0, 0, 0, 1077, 1071, 1, 0, 0, 0, 1078, 101, 1, 0, 0, 0, 1079, 1096, 3, - 86, 43, 0, 1080, 1082, 3, 206, 103, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, - 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 3, 134, 67, 0, 1084, 1085, 3, 232, 116, 0, 1085, - 1086, 5, 94, 0, 0, 1086, 1087, 3, 278, 139, 0, 1087, 1096, 1, 0, 0, 0, 1088, 1090, - 3, 206, 103, 0, 1089, 1088, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, - 0, 1091, 1092, 3, 134, 67, 0, 1092, 1093, 3, 232, 116, 0, 1093, 1094, 3, 282, 141, - 0, 1094, 1096, 1, 0, 0, 0, 1095, 1079, 1, 0, 0, 0, 1095, 1081, 1, 0, 0, 0, 1095, 1089, - 1, 0, 0, 0, 1096, 103, 1, 0, 0, 0, 1097, 1098, 5, 77, 0, 0, 1098, 1099, 5, 78, 0, 0, 1099, - 1100, 3, 102, 51, 0, 1100, 1101, 5, 79, 0, 0, 1101, 1102, 3, 90, 45, 0, 1102, 1133, - 1, 0, 0, 0, 1103, 1104, 5, 22, 0, 0, 1104, 1105, 3, 90, 45, 0, 1105, 1106, 5, 77, 0, - 0, 1106, 1107, 5, 78, 0, 0, 1107, 1108, 3, 86, 43, 0, 1108, 1109, 5, 79, 0, 0, 1109, - 1110, 5, 121, 0, 0, 1110, 1133, 1, 0, 0, 0, 1111, 1112, 5, 33, 0, 0, 1112, 1113, 5, - 78, 0, 0, 1113, 1115, 3, 106, 53, 0, 1114, 1116, 3, 102, 51, 0, 1115, 1114, 1, 0, 0, - 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1119, 5, 121, 0, 0, 1118, 1120, - 3, 86, 43, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, - 1121, 1122, 5, 79, 0, 0, 1122, 1123, 3, 90, 45, 0, 1123, 1133, 1, 0, 0, 0, 1124, 1125, - 5, 33, 0, 0, 1125, 1126, 5, 78, 0, 0, 1126, 1127, 3, 108, 54, 0, 1127, 1128, 5, 119, - 0, 0, 1128, 1129, 3, 110, 55, 0, 1129, 1130, 5, 79, 0, 0, 1130, 1131, 3, 90, 45, 0, - 1131, 1133, 1, 0, 0, 0, 1132, 1097, 1, 0, 0, 0, 1132, 1103, 1, 0, 0, 0, 1132, 1111, - 1, 0, 0, 0, 1132, 1124, 1, 0, 0, 0, 1133, 105, 1, 0, 0, 0, 1134, 1137, 3, 94, 47, 0, 1135, - 1137, 3, 124, 62, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 107, 1, 0, - 0, 0, 1138, 1140, 3, 206, 103, 0, 1139, 1138, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, - 1141, 1, 0, 0, 0, 1141, 1142, 3, 134, 67, 0, 1142, 1143, 3, 232, 116, 0, 1143, 109, - 1, 0, 0, 0, 1144, 1147, 3, 86, 43, 0, 1145, 1147, 3, 282, 141, 0, 1146, 1144, 1, 0, - 0, 0, 1146, 1145, 1, 0, 0, 0, 1147, 111, 1, 0, 0, 0, 1148, 1149, 5, 8, 0, 0, 1149, 1165, - 5, 121, 0, 0, 1150, 1151, 5, 18, 0, 0, 1151, 1165, 5, 121, 0, 0, 1152, 1154, 5, 52, - 0, 0, 1153, 1155, 3, 86, 43, 0, 1154, 1153, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, - 1156, 1, 0, 0, 0, 1156, 1165, 5, 121, 0, 0, 1157, 1158, 5, 52, 0, 0, 1158, 1159, 3, - 282, 141, 0, 1159, 1160, 5, 121, 0, 0, 1160, 1165, 1, 0, 0, 0, 1161, 1162, 5, 35, 0, - 0, 1162, 1163, 5, 125, 0, 0, 1163, 1165, 5, 121, 0, 0, 1164, 1148, 1, 0, 0, 0, 1164, - 1150, 1, 0, 0, 0, 1164, 1152, 1, 0, 0, 0, 1164, 1157, 1, 0, 0, 0, 1164, 1161, 1, 0, 0, - 0, 1165, 113, 1, 0, 0, 0, 1166, 1167, 3, 120, 60, 0, 1167, 115, 1, 0, 0, 0, 1168, 1169, - 6, 58, -1, 0, 1169, 1170, 3, 118, 59, 0, 1170, 1175, 1, 0, 0, 0, 1171, 1172, 10, 1, - 0, 0, 1172, 1174, 3, 118, 59, 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, 117, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, - 0, 1178, 1188, 3, 120, 60, 0, 1179, 1188, 3, 270, 135, 0, 1180, 1188, 3, 340, 170, - 0, 1181, 1188, 3, 360, 180, 0, 1182, 1188, 3, 362, 181, 0, 1183, 1188, 3, 204, 102, - 0, 1184, 1188, 3, 180, 90, 0, 1185, 1188, 3, 128, 64, 0, 1186, 1188, 3, 130, 65, 0, - 1187, 1178, 1, 0, 0, 0, 1187, 1179, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1187, 1181, - 1, 0, 0, 0, 1187, 1182, 1, 0, 0, 0, 1187, 1183, 1, 0, 0, 0, 1187, 1184, 1, 0, 0, 0, 1187, - 1185, 1, 0, 0, 0, 1187, 1186, 1, 0, 0, 0, 1188, 119, 1, 0, 0, 0, 1189, 1198, 3, 124, - 62, 0, 1190, 1198, 3, 202, 101, 0, 1191, 1198, 3, 194, 97, 0, 1192, 1198, 3, 198, - 99, 0, 1193, 1198, 3, 200, 100, 0, 1194, 1198, 3, 126, 63, 0, 1195, 1198, 3, 122, - 61, 0, 1196, 1198, 3, 164, 82, 0, 1197, 1189, 1, 0, 0, 0, 1197, 1190, 1, 0, 0, 0, 1197, - 1191, 1, 0, 0, 0, 1197, 1192, 1, 0, 0, 0, 1197, 1193, 1, 0, 0, 0, 1197, 1194, 1, 0, 0, - 0, 1197, 1195, 1, 0, 0, 0, 1197, 1196, 1, 0, 0, 0, 1198, 121, 1, 0, 0, 0, 1199, 1200, - 5, 72, 0, 0, 1200, 1202, 5, 125, 0, 0, 1201, 1203, 3, 206, 103, 0, 1202, 1201, 1, 0, - 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 94, 0, 0, 1205, - 1206, 3, 252, 126, 0, 1206, 1207, 5, 121, 0, 0, 1207, 123, 1, 0, 0, 0, 1208, 1210, - 3, 134, 67, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, - 1211, 1213, 3, 228, 114, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, - 1, 0, 0, 0, 1214, 1223, 5, 121, 0, 0, 1215, 1217, 3, 206, 103, 0, 1216, 1218, 3, 134, - 67, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, - 1220, 3, 228, 114, 0, 1220, 1221, 5, 121, 0, 0, 1221, 1223, 1, 0, 0, 0, 1222, 1209, - 1, 0, 0, 0, 1222, 1215, 1, 0, 0, 0, 1223, 125, 1, 0, 0, 0, 1224, 1225, 5, 57, 0, 0, 1225, - 1226, 5, 78, 0, 0, 1226, 1227, 3, 88, 44, 0, 1227, 1228, 5, 115, 0, 0, 1228, 1229, - 5, 134, 0, 0, 1229, 1230, 5, 79, 0, 0, 1230, 1231, 5, 121, 0, 0, 1231, 127, 1, 0, 0, - 0, 1232, 1233, 5, 121, 0, 0, 1233, 129, 1, 0, 0, 0, 1234, 1235, 3, 206, 103, 0, 1235, - 1236, 5, 121, 0, 0, 1236, 131, 1, 0, 0, 0, 1237, 1244, 3, 136, 68, 0, 1238, 1244, 3, - 142, 71, 0, 1239, 1244, 3, 138, 69, 0, 1240, 1244, 5, 34, 0, 0, 1241, 1244, 5, 67, - 0, 0, 1242, 1244, 5, 16, 0, 0, 1243, 1237, 1, 0, 0, 0, 1243, 1238, 1, 0, 0, 0, 1243, - 1239, 1, 0, 0, 0, 1243, 1240, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1243, 1242, 1, 0, 0, - 0, 1244, 133, 1, 0, 0, 0, 1245, 1247, 3, 132, 66, 0, 1246, 1248, 3, 206, 103, 0, 1247, - 1246, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1253, 1, 0, 0, 0, 1249, 1250, 3, 132, - 66, 0, 1250, 1251, 3, 134, 67, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1245, 1, 0, 0, 0, 1252, - 1249, 1, 0, 0, 0, 1253, 135, 1, 0, 0, 0, 1254, 1255, 7, 2, 0, 0, 1255, 137, 1, 0, 0, 0, - 1256, 1257, 7, 3, 0, 0, 1257, 139, 1, 0, 0, 0, 1258, 1259, 5, 125, 0, 0, 1259, 141, - 1, 0, 0, 0, 1260, 1264, 3, 144, 72, 0, 1261, 1264, 3, 286, 143, 0, 1262, 1264, 3, 160, - 80, 0, 1263, 1260, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1262, 1, 0, 0, 0, 1264, - 143, 1, 0, 0, 0, 1265, 1270, 3, 150, 75, 0, 1266, 1270, 3, 156, 78, 0, 1267, 1270, - 3, 358, 179, 0, 1268, 1270, 3, 246, 123, 0, 1269, 1265, 1, 0, 0, 0, 1269, 1266, 1, - 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1268, 1, 0, 0, 0, 1270, 145, 1, 0, 0, 0, 1271, - 1273, 3, 142, 71, 0, 1272, 1274, 3, 206, 103, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, - 1, 0, 0, 0, 1274, 1279, 1, 0, 0, 0, 1275, 1276, 3, 142, 71, 0, 1276, 1277, 3, 146, 73, - 0, 1277, 1279, 1, 0, 0, 0, 1278, 1271, 1, 0, 0, 0, 1278, 1275, 1, 0, 0, 0, 1279, 147, - 1, 0, 0, 0, 1280, 1282, 3, 144, 72, 0, 1281, 1283, 3, 206, 103, 0, 1282, 1281, 1, 0, - 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1288, 1, 0, 0, 0, 1284, 1285, 3, 144, 72, 0, 1285, - 1286, 3, 148, 74, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1280, 1, 0, 0, 0, 1287, 1284, 1, - 0, 0, 0, 1288, 149, 1, 0, 0, 0, 1289, 1291, 3, 10, 5, 0, 1290, 1289, 1, 0, 0, 0, 1290, - 1291, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1313, 3, 152, 76, 0, 1293, 1294, 3, - 10, 5, 0, 1294, 1295, 5, 61, 0, 0, 1295, 1296, 3, 348, 174, 0, 1296, 1313, 1, 0, 0, - 0, 1297, 1313, 5, 11, 0, 0, 1298, 1313, 5, 12, 0, 0, 1299, 1313, 5, 13, 0, 0, 1300, - 1313, 5, 76, 0, 0, 1301, 1313, 5, 7, 0, 0, 1302, 1313, 5, 53, 0, 0, 1303, 1313, 5, 38, - 0, 0, 1304, 1313, 5, 39, 0, 0, 1305, 1313, 5, 54, 0, 0, 1306, 1313, 5, 71, 0, 0, 1307, - 1313, 5, 32, 0, 0, 1308, 1313, 5, 23, 0, 0, 1309, 1313, 5, 74, 0, 0, 1310, 1313, 5, - 6, 0, 0, 1311, 1313, 3, 154, 77, 0, 1312, 1290, 1, 0, 0, 0, 1312, 1293, 1, 0, 0, 0, 1312, - 1297, 1, 0, 0, 0, 1312, 1298, 1, 0, 0, 0, 1312, 1299, 1, 0, 0, 0, 1312, 1300, 1, 0, 0, - 0, 1312, 1301, 1, 0, 0, 0, 1312, 1302, 1, 0, 0, 0, 1312, 1303, 1, 0, 0, 0, 1312, 1304, - 1, 0, 0, 0, 1312, 1305, 1, 0, 0, 0, 1312, 1306, 1, 0, 0, 0, 1312, 1307, 1, 0, 0, 0, 1312, - 1308, 1, 0, 0, 0, 1312, 1309, 1, 0, 0, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1311, 1, 0, 0, - 0, 1313, 151, 1, 0, 0, 0, 1314, 1319, 3, 284, 142, 0, 1315, 1319, 3, 158, 79, 0, 1316, - 1319, 3, 140, 70, 0, 1317, 1319, 3, 348, 174, 0, 1318, 1314, 1, 0, 0, 0, 1318, 1315, - 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1318, 1317, 1, 0, 0, 0, 1319, 153, 1, 0, 0, 0, 1320, - 1321, 5, 19, 0, 0, 1321, 1322, 5, 78, 0, 0, 1322, 1323, 3, 86, 43, 0, 1323, 1324, 5, - 79, 0, 0, 1324, 1330, 1, 0, 0, 0, 1325, 1326, 5, 19, 0, 0, 1326, 1327, 5, 78, 0, 0, 1327, - 1328, 5, 6, 0, 0, 1328, 1330, 5, 79, 0, 0, 1329, 1320, 1, 0, 0, 0, 1329, 1325, 1, 0, - 0, 0, 1330, 155, 1, 0, 0, 0, 1331, 1333, 3, 294, 147, 0, 1332, 1334, 3, 206, 103, 0, - 1333, 1332, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 1, 0, 0, 0, 1335, 1337, - 3, 10, 5, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, - 1339, 5, 125, 0, 0, 1339, 1356, 1, 0, 0, 0, 1340, 1341, 3, 294, 147, 0, 1341, 1342, - 3, 348, 174, 0, 1342, 1356, 1, 0, 0, 0, 1343, 1344, 3, 294, 147, 0, 1344, 1346, 3, - 10, 5, 0, 1345, 1347, 5, 61, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, - 1348, 1, 0, 0, 0, 1348, 1349, 3, 348, 174, 0, 1349, 1356, 1, 0, 0, 0, 1350, 1352, 5, - 26, 0, 0, 1351, 1353, 3, 10, 5, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, - 1354, 1, 0, 0, 0, 1354, 1356, 5, 125, 0, 0, 1355, 1331, 1, 0, 0, 0, 1355, 1340, 1, 0, - 0, 0, 1355, 1343, 1, 0, 0, 0, 1355, 1350, 1, 0, 0, 0, 1356, 157, 1, 0, 0, 0, 1357, 1358, - 5, 125, 0, 0, 1358, 159, 1, 0, 0, 0, 1359, 1360, 3, 162, 81, 0, 1360, 1362, 5, 82, 0, - 0, 1361, 1363, 3, 170, 85, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, - 1364, 1, 0, 0, 0, 1364, 1365, 5, 83, 0, 0, 1365, 1373, 1, 0, 0, 0, 1366, 1367, 3, 162, - 81, 0, 1367, 1368, 5, 82, 0, 0, 1368, 1369, 3, 170, 85, 0, 1369, 1370, 5, 115, 0, 0, - 1370, 1371, 5, 83, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1359, 1, 0, 0, 0, 1372, 1366, - 1, 0, 0, 0, 1373, 161, 1, 0, 0, 0, 1374, 1376, 3, 166, 83, 0, 1375, 1377, 3, 206, 103, - 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1379, 1, 0, 0, 0, 1378, 1380, - 5, 125, 0, 0, 1379, 1378, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 1, 0, 0, 0, - 1381, 1383, 3, 168, 84, 0, 1382, 1381, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1394, - 1, 0, 0, 0, 1384, 1386, 3, 166, 83, 0, 1385, 1387, 3, 206, 103, 0, 1386, 1385, 1, 0, - 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 3, 10, 5, 0, 1389, - 1391, 5, 125, 0, 0, 1390, 1392, 3, 168, 84, 0, 1391, 1390, 1, 0, 0, 0, 1391, 1392, - 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1374, 1, 0, 0, 0, 1393, 1384, 1, 0, 0, 0, 1394, - 163, 1, 0, 0, 0, 1395, 1397, 3, 166, 83, 0, 1396, 1398, 3, 206, 103, 0, 1397, 1396, - 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1401, 5, 125, 0, 0, - 1400, 1402, 3, 168, 84, 0, 1401, 1400, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, - 1, 0, 0, 0, 1403, 1404, 5, 121, 0, 0, 1404, 165, 1, 0, 0, 0, 1405, 1411, 5, 26, 0, 0, - 1406, 1407, 5, 26, 0, 0, 1407, 1411, 5, 14, 0, 0, 1408, 1409, 5, 26, 0, 0, 1409, 1411, - 5, 59, 0, 0, 1410, 1405, 1, 0, 0, 0, 1410, 1406, 1, 0, 0, 0, 1410, 1408, 1, 0, 0, 0, 1411, - 167, 1, 0, 0, 0, 1412, 1413, 5, 119, 0, 0, 1413, 1414, 3, 146, 73, 0, 1414, 169, 1, - 0, 0, 0, 1415, 1416, 6, 85, -1, 0, 1416, 1417, 3, 172, 86, 0, 1417, 1423, 1, 0, 0, 0, - 1418, 1419, 10, 1, 0, 0, 1419, 1420, 5, 115, 0, 0, 1420, 1422, 3, 172, 86, 0, 1421, - 1418, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, - 0, 1424, 171, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1432, 3, 174, 87, 0, 1427, 1428, - 3, 174, 87, 0, 1428, 1429, 5, 94, 0, 0, 1429, 1430, 3, 88, 44, 0, 1430, 1432, 1, 0, - 0, 0, 1431, 1426, 1, 0, 0, 0, 1431, 1427, 1, 0, 0, 0, 1432, 173, 1, 0, 0, 0, 1433, 1434, - 5, 125, 0, 0, 1434, 175, 1, 0, 0, 0, 1435, 1438, 3, 178, 89, 0, 1436, 1438, 3, 192, - 96, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1436, 1, 0, 0, 0, 1438, 177, 1, 0, 0, 0, 1439, 1440, - 5, 125, 0, 0, 1440, 179, 1, 0, 0, 0, 1441, 1444, 3, 182, 91, 0, 1442, 1444, 3, 188, - 94, 0, 1443, 1441, 1, 0, 0, 0, 1443, 1442, 1, 0, 0, 0, 1444, 181, 1, 0, 0, 0, 1445, 1448, - 3, 184, 92, 0, 1446, 1448, 3, 186, 93, 0, 1447, 1445, 1, 0, 0, 0, 1447, 1446, 1, 0, - 0, 0, 1448, 183, 1, 0, 0, 0, 1449, 1451, 5, 37, 0, 0, 1450, 1449, 1, 0, 0, 0, 1450, 1451, - 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1453, 5, 41, 0, 0, 1453, 1454, 5, 125, 0, 0, - 1454, 1455, 5, 82, 0, 0, 1455, 1456, 3, 190, 95, 0, 1456, 1457, 5, 83, 0, 0, 1457, - 185, 1, 0, 0, 0, 1458, 1460, 5, 37, 0, 0, 1459, 1458, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, - 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 5, 41, 0, 0, 1462, 1463, 3, 178, 89, 0, 1463, - 1464, 5, 82, 0, 0, 1464, 1465, 3, 190, 95, 0, 1465, 1466, 5, 83, 0, 0, 1466, 187, 1, - 0, 0, 0, 1467, 1469, 5, 37, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, - 1470, 1, 0, 0, 0, 1470, 1471, 5, 41, 0, 0, 1471, 1472, 5, 82, 0, 0, 1472, 1473, 3, 190, - 95, 0, 1473, 1474, 5, 83, 0, 0, 1474, 189, 1, 0, 0, 0, 1475, 1477, 3, 116, 58, 0, 1476, - 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 191, 1, 0, 0, 0, 1478, 1479, 5, 125, - 0, 0, 1479, 193, 1, 0, 0, 0, 1480, 1481, 5, 41, 0, 0, 1481, 1482, 5, 125, 0, 0, 1482, - 1483, 5, 94, 0, 0, 1483, 1484, 3, 196, 98, 0, 1484, 1485, 5, 121, 0, 0, 1485, 195, - 1, 0, 0, 0, 1486, 1488, 3, 10, 5, 0, 1487, 1486, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, - 1489, 1, 0, 0, 0, 1489, 1490, 3, 176, 88, 0, 1490, 197, 1, 0, 0, 0, 1491, 1493, 5, 72, - 0, 0, 1492, 1494, 5, 69, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, - 1495, 1, 0, 0, 0, 1495, 1496, 3, 10, 5, 0, 1496, 1497, 3, 6, 3, 0, 1497, 1498, 5, 121, - 0, 0, 1498, 1505, 1, 0, 0, 0, 1499, 1500, 5, 72, 0, 0, 1500, 1501, 5, 120, 0, 0, 1501, - 1502, 3, 6, 3, 0, 1502, 1503, 5, 121, 0, 0, 1503, 1505, 1, 0, 0, 0, 1504, 1491, 1, 0, - 0, 0, 1504, 1499, 1, 0, 0, 0, 1505, 199, 1, 0, 0, 0, 1506, 1508, 3, 206, 103, 0, 1507, - 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 5, 72, - 0, 0, 1510, 1512, 5, 41, 0, 0, 1511, 1513, 3, 10, 5, 0, 1512, 1511, 1, 0, 0, 0, 1512, - 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 3, 176, 88, 0, 1515, 1516, 5, - 121, 0, 0, 1516, 201, 1, 0, 0, 0, 1517, 1518, 5, 5, 0, 0, 1518, 1519, 5, 78, 0, 0, 1519, - 1520, 5, 134, 0, 0, 1520, 1521, 5, 79, 0, 0, 1521, 1522, 5, 121, 0, 0, 1522, 203, 1, - 0, 0, 0, 1523, 1524, 5, 29, 0, 0, 1524, 1525, 5, 134, 0, 0, 1525, 1527, 5, 82, 0, 0, - 1526, 1528, 3, 116, 58, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, - 1, 0, 0, 0, 1529, 1534, 5, 83, 0, 0, 1530, 1531, 5, 29, 0, 0, 1531, 1532, 5, 134, 0, - 0, 1532, 1534, 3, 118, 59, 0, 1533, 1523, 1, 0, 0, 0, 1533, 1530, 1, 0, 0, 0, 1534, - 205, 1, 0, 0, 0, 1535, 1536, 6, 103, -1, 0, 1536, 1537, 3, 208, 104, 0, 1537, 1542, - 1, 0, 0, 0, 1538, 1539, 10, 1, 0, 0, 1539, 1541, 3, 208, 104, 0, 1540, 1538, 1, 0, 0, - 0, 1541, 1544, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 207, - 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1545, 1546, 5, 80, 0, 0, 1546, 1547, 5, 80, 0, 0, - 1547, 1548, 3, 212, 106, 0, 1548, 1549, 5, 81, 0, 0, 1549, 1550, 5, 81, 0, 0, 1550, - 1553, 1, 0, 0, 0, 1551, 1553, 3, 210, 105, 0, 1552, 1545, 1, 0, 0, 0, 1552, 1551, 1, - 0, 0, 0, 1553, 209, 1, 0, 0, 0, 1554, 1555, 5, 3, 0, 0, 1555, 1556, 5, 78, 0, 0, 1556, - 1558, 3, 252, 126, 0, 1557, 1559, 5, 124, 0, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, - 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 5, 79, 0, 0, 1561, 1571, 1, 0, 0, 0, 1562, - 1563, 5, 3, 0, 0, 1563, 1564, 5, 78, 0, 0, 1564, 1566, 3, 88, 44, 0, 1565, 1567, 5, - 124, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, - 1569, 5, 79, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1554, 1, 0, 0, 0, 1570, 1562, 1, 0, - 0, 0, 1571, 211, 1, 0, 0, 0, 1572, 1574, 6, 106, -1, 0, 1573, 1575, 3, 214, 107, 0, - 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1580, 1, 0, 0, 0, 1576, 1577, - 3, 214, 107, 0, 1577, 1578, 5, 124, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1572, 1, 0, - 0, 0, 1579, 1576, 1, 0, 0, 0, 1580, 1593, 1, 0, 0, 0, 1581, 1582, 10, 3, 0, 0, 1582, - 1584, 5, 115, 0, 0, 1583, 1585, 3, 214, 107, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, - 1, 0, 0, 0, 1585, 1592, 1, 0, 0, 0, 1586, 1587, 10, 1, 0, 0, 1587, 1588, 5, 115, 0, 0, - 1588, 1589, 3, 214, 107, 0, 1589, 1590, 5, 124, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, - 1581, 1, 0, 0, 0, 1591, 1586, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, - 0, 1593, 1594, 1, 0, 0, 0, 1594, 213, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1598, - 3, 216, 108, 0, 1597, 1599, 3, 222, 111, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, - 0, 0, 0, 1599, 215, 1, 0, 0, 0, 1600, 1603, 5, 125, 0, 0, 1601, 1603, 3, 218, 109, 0, - 1602, 1600, 1, 0, 0, 0, 1602, 1601, 1, 0, 0, 0, 1603, 217, 1, 0, 0, 0, 1604, 1605, 3, - 220, 110, 0, 1605, 1606, 5, 120, 0, 0, 1606, 1607, 5, 125, 0, 0, 1607, 219, 1, 0, 0, - 0, 1608, 1609, 5, 125, 0, 0, 1609, 221, 1, 0, 0, 0, 1610, 1611, 5, 78, 0, 0, 1611, 1612, - 3, 224, 112, 0, 1612, 1613, 5, 79, 0, 0, 1613, 223, 1, 0, 0, 0, 1614, 1616, 6, 112, - -1, 0, 1615, 1617, 3, 226, 113, 0, 1616, 1615, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, - 1622, 1, 0, 0, 0, 1618, 1619, 10, 1, 0, 0, 1619, 1621, 3, 226, 113, 0, 1620, 1618, - 1, 0, 0, 0, 1621, 1624, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, - 225, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1625, 1626, 5, 78, 0, 0, 1626, 1627, 3, 224, - 112, 0, 1627, 1628, 5, 79, 0, 0, 1628, 1638, 1, 0, 0, 0, 1629, 1630, 5, 80, 0, 0, 1630, - 1631, 3, 224, 112, 0, 1631, 1632, 5, 81, 0, 0, 1632, 1638, 1, 0, 0, 0, 1633, 1634, - 5, 82, 0, 0, 1634, 1635, 3, 224, 112, 0, 1635, 1636, 5, 83, 0, 0, 1636, 1638, 1, 0, - 0, 0, 1637, 1625, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1633, 1, 0, 0, 0, 1638, 227, - 1, 0, 0, 0, 1639, 1640, 6, 114, -1, 0, 1640, 1641, 3, 230, 115, 0, 1641, 1647, 1, 0, - 0, 0, 1642, 1643, 10, 1, 0, 0, 1643, 1644, 5, 115, 0, 0, 1644, 1646, 3, 230, 115, 0, - 1645, 1642, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, - 1, 0, 0, 0, 1648, 229, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1652, 3, 232, 116, 0, - 1651, 1653, 3, 274, 137, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 231, - 1, 0, 0, 0, 1654, 1660, 3, 234, 117, 0, 1655, 1656, 3, 236, 118, 0, 1656, 1657, 3, - 238, 119, 0, 1657, 1658, 3, 240, 120, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1654, 1, 0, - 0, 0, 1659, 1655, 1, 0, 0, 0, 1660, 233, 1, 0, 0, 0, 1661, 1666, 3, 236, 118, 0, 1662, - 1663, 3, 242, 121, 0, 1663, 1664, 3, 234, 117, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1661, - 1, 0, 0, 0, 1665, 1662, 1, 0, 0, 0, 1666, 235, 1, 0, 0, 0, 1667, 1668, 6, 118, -1, 0, - 1668, 1670, 3, 250, 125, 0, 1669, 1671, 3, 206, 103, 0, 1670, 1669, 1, 0, 0, 0, 1670, - 1671, 1, 0, 0, 0, 1671, 1677, 1, 0, 0, 0, 1672, 1673, 5, 78, 0, 0, 1673, 1674, 3, 234, - 117, 0, 1674, 1675, 5, 79, 0, 0, 1675, 1677, 1, 0, 0, 0, 1676, 1667, 1, 0, 0, 0, 1676, - 1672, 1, 0, 0, 0, 1677, 1691, 1, 0, 0, 0, 1678, 1679, 10, 3, 0, 0, 1679, 1690, 3, 238, - 119, 0, 1680, 1681, 10, 2, 0, 0, 1681, 1683, 5, 80, 0, 0, 1682, 1684, 3, 88, 44, 0, - 1683, 1682, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1687, - 5, 81, 0, 0, 1686, 1688, 3, 206, 103, 0, 1687, 1686, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, - 0, 1688, 1690, 1, 0, 0, 0, 1689, 1678, 1, 0, 0, 0, 1689, 1680, 1, 0, 0, 0, 1690, 1693, - 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 237, 1, 0, 0, 0, 1693, - 1691, 1, 0, 0, 0, 1694, 1695, 5, 78, 0, 0, 1695, 1696, 3, 264, 132, 0, 1696, 1698, - 5, 79, 0, 0, 1697, 1699, 3, 244, 122, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, - 0, 1699, 1701, 1, 0, 0, 0, 1700, 1702, 3, 248, 124, 0, 1701, 1700, 1, 0, 0, 0, 1701, - 1702, 1, 0, 0, 0, 1702, 1704, 1, 0, 0, 0, 1703, 1705, 3, 376, 188, 0, 1704, 1703, 1, - 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1708, 3, 206, 103, 0, - 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 239, 1, 0, 0, 0, 1709, 1710, 5, - 117, 0, 0, 1710, 1712, 3, 148, 74, 0, 1711, 1713, 3, 254, 127, 0, 1712, 1711, 1, 0, - 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 241, 1, 0, 0, 0, 1714, 1716, 5, 86, 0, 0, 1715, 1717, - 3, 206, 103, 0, 1716, 1715, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1719, 1, 0, 0, - 0, 1718, 1720, 3, 244, 122, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, - 1738, 1, 0, 0, 0, 1721, 1723, 5, 90, 0, 0, 1722, 1724, 3, 206, 103, 0, 1723, 1722, - 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1738, 1, 0, 0, 0, 1725, 1727, 5, 111, 0, 0, - 1726, 1728, 3, 206, 103, 0, 1727, 1726, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1738, - 1, 0, 0, 0, 1729, 1730, 3, 10, 5, 0, 1730, 1732, 5, 86, 0, 0, 1731, 1733, 3, 206, 103, - 0, 1732, 1731, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1735, 1, 0, 0, 0, 1734, 1736, - 3, 244, 122, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1738, 1, 0, 0, - 0, 1737, 1714, 1, 0, 0, 0, 1737, 1721, 1, 0, 0, 0, 1737, 1725, 1, 0, 0, 0, 1737, 1729, - 1, 0, 0, 0, 1738, 243, 1, 0, 0, 0, 1739, 1741, 3, 246, 123, 0, 1740, 1742, 3, 244, 122, - 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 245, 1, 0, 0, 0, 1743, 1744, - 7, 4, 0, 0, 1744, 247, 1, 0, 0, 0, 1745, 1746, 7, 5, 0, 0, 1746, 249, 1, 0, 0, 0, 1747, - 1749, 5, 124, 0, 0, 1748, 1747, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 1, 0, - 0, 0, 1750, 1751, 3, 4, 2, 0, 1751, 251, 1, 0, 0, 0, 1752, 1754, 3, 146, 73, 0, 1753, - 1755, 3, 254, 127, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 253, 1, - 0, 0, 0, 1756, 1765, 3, 256, 128, 0, 1757, 1759, 3, 258, 129, 0, 1758, 1757, 1, 0, - 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 3, 238, 119, 0, 1761, - 1762, 3, 240, 120, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1765, 3, 260, 130, 0, 1764, 1756, - 1, 0, 0, 0, 1764, 1758, 1, 0, 0, 0, 1764, 1763, 1, 0, 0, 0, 1765, 255, 1, 0, 0, 0, 1766, - 1772, 3, 258, 129, 0, 1767, 1769, 3, 242, 121, 0, 1768, 1770, 3, 256, 128, 0, 1769, - 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1766, 1, 0, 0, - 0, 1771, 1767, 1, 0, 0, 0, 1772, 257, 1, 0, 0, 0, 1773, 1774, 6, 129, -1, 0, 1774, 1788, - 3, 238, 119, 0, 1775, 1777, 5, 80, 0, 0, 1776, 1778, 3, 88, 44, 0, 1777, 1776, 1, 0, - 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1781, 5, 81, 0, 0, 1780, - 1782, 3, 206, 103, 0, 1781, 1780, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1788, 1, - 0, 0, 0, 1783, 1784, 5, 78, 0, 0, 1784, 1785, 3, 256, 128, 0, 1785, 1786, 5, 79, 0, - 0, 1786, 1788, 1, 0, 0, 0, 1787, 1773, 1, 0, 0, 0, 1787, 1775, 1, 0, 0, 0, 1787, 1783, - 1, 0, 0, 0, 1788, 1802, 1, 0, 0, 0, 1789, 1790, 10, 5, 0, 0, 1790, 1801, 3, 238, 119, - 0, 1791, 1792, 10, 3, 0, 0, 1792, 1794, 5, 80, 0, 0, 1793, 1795, 3, 88, 44, 0, 1794, - 1793, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1798, 5, 81, - 0, 0, 1797, 1799, 3, 206, 103, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, - 1801, 1, 0, 0, 0, 1800, 1789, 1, 0, 0, 0, 1800, 1791, 1, 0, 0, 0, 1801, 1804, 1, 0, 0, - 0, 1802, 1800, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 259, 1, 0, 0, 0, 1804, 1802, - 1, 0, 0, 0, 1805, 1810, 3, 262, 131, 0, 1806, 1807, 3, 242, 121, 0, 1807, 1808, 3, - 260, 130, 0, 1808, 1810, 1, 0, 0, 0, 1809, 1805, 1, 0, 0, 0, 1809, 1806, 1, 0, 0, 0, - 1810, 261, 1, 0, 0, 0, 1811, 1812, 6, 131, -1, 0, 1812, 1813, 5, 124, 0, 0, 1813, 1827, - 1, 0, 0, 0, 1814, 1815, 10, 3, 0, 0, 1815, 1826, 3, 238, 119, 0, 1816, 1817, 10, 2, - 0, 0, 1817, 1819, 5, 80, 0, 0, 1818, 1820, 3, 88, 44, 0, 1819, 1818, 1, 0, 0, 0, 1819, - 1820, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1823, 5, 81, 0, 0, 1822, 1824, 3, 206, - 103, 0, 1823, 1822, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 1, 0, 0, 0, 1825, - 1814, 1, 0, 0, 0, 1825, 1816, 1, 0, 0, 0, 1826, 1829, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, - 0, 1827, 1828, 1, 0, 0, 0, 1828, 263, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1830, 1832, - 3, 266, 133, 0, 1831, 1830, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1834, 1, 0, 0, - 0, 1833, 1835, 5, 124, 0, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1841, - 1, 0, 0, 0, 1836, 1837, 3, 266, 133, 0, 1837, 1838, 5, 115, 0, 0, 1838, 1839, 5, 124, - 0, 0, 1839, 1841, 1, 0, 0, 0, 1840, 1831, 1, 0, 0, 0, 1840, 1836, 1, 0, 0, 0, 1841, 265, - 1, 0, 0, 0, 1842, 1843, 6, 133, -1, 0, 1843, 1844, 3, 268, 134, 0, 1844, 1850, 1, 0, - 0, 0, 1845, 1846, 10, 1, 0, 0, 1846, 1847, 5, 115, 0, 0, 1847, 1849, 3, 268, 134, 0, - 1848, 1845, 1, 0, 0, 0, 1849, 1852, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1851, - 1, 0, 0, 0, 1851, 267, 1, 0, 0, 0, 1852, 1850, 1, 0, 0, 0, 1853, 1855, 3, 206, 103, 0, - 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1857, - 3, 134, 67, 0, 1857, 1858, 3, 232, 116, 0, 1858, 1885, 1, 0, 0, 0, 1859, 1861, 3, 206, - 103, 0, 1860, 1859, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, - 1863, 3, 134, 67, 0, 1863, 1864, 3, 232, 116, 0, 1864, 1865, 5, 94, 0, 0, 1865, 1866, - 3, 278, 139, 0, 1866, 1885, 1, 0, 0, 0, 1867, 1869, 3, 206, 103, 0, 1868, 1867, 1, - 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1872, 3, 134, 67, 0, 1871, - 1873, 3, 254, 127, 0, 1872, 1871, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1885, 1, - 0, 0, 0, 1874, 1876, 3, 206, 103, 0, 1875, 1874, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, - 1876, 1877, 1, 0, 0, 0, 1877, 1879, 3, 134, 67, 0, 1878, 1880, 3, 254, 127, 0, 1879, - 1878, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1882, 5, 94, - 0, 0, 1882, 1883, 3, 278, 139, 0, 1883, 1885, 1, 0, 0, 0, 1884, 1854, 1, 0, 0, 0, 1884, - 1860, 1, 0, 0, 0, 1884, 1868, 1, 0, 0, 0, 1884, 1875, 1, 0, 0, 0, 1885, 269, 1, 0, 0, - 0, 1886, 1888, 3, 206, 103, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, - 1890, 1, 0, 0, 0, 1889, 1891, 3, 134, 67, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, - 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1894, 3, 232, 116, 0, 1893, 1895, 3, 304, 152, - 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, - 3, 272, 136, 0, 1897, 271, 1, 0, 0, 0, 1898, 1900, 3, 328, 164, 0, 1899, 1898, 1, 0, - 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1910, 3, 96, 48, 0, 1902, - 1910, 3, 366, 183, 0, 1903, 1904, 5, 94, 0, 0, 1904, 1905, 5, 20, 0, 0, 1905, 1910, - 5, 121, 0, 0, 1906, 1907, 5, 94, 0, 0, 1907, 1908, 5, 21, 0, 0, 1908, 1910, 5, 121, - 0, 0, 1909, 1899, 1, 0, 0, 0, 1909, 1902, 1, 0, 0, 0, 1909, 1903, 1, 0, 0, 0, 1909, 1906, - 1, 0, 0, 0, 1910, 273, 1, 0, 0, 0, 1911, 1917, 3, 276, 138, 0, 1912, 1913, 5, 78, 0, - 0, 1913, 1914, 3, 32, 16, 0, 1914, 1915, 5, 79, 0, 0, 1915, 1917, 1, 0, 0, 0, 1916, - 1911, 1, 0, 0, 0, 1916, 1912, 1, 0, 0, 0, 1917, 275, 1, 0, 0, 0, 1918, 1919, 5, 94, 0, - 0, 1919, 1922, 3, 278, 139, 0, 1920, 1922, 3, 282, 141, 0, 1921, 1918, 1, 0, 0, 0, - 1921, 1920, 1, 0, 0, 0, 1922, 277, 1, 0, 0, 0, 1923, 1926, 3, 82, 41, 0, 1924, 1926, - 3, 282, 141, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1924, 1, 0, 0, 0, 1926, 279, 1, 0, 0, 0, - 1927, 1928, 6, 140, -1, 0, 1928, 1930, 3, 278, 139, 0, 1929, 1931, 5, 124, 0, 0, 1930, - 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1940, 1, 0, 0, 0, 1932, 1933, 10, 1, - 0, 0, 1933, 1934, 5, 115, 0, 0, 1934, 1936, 3, 278, 139, 0, 1935, 1937, 5, 124, 0, - 0, 1936, 1935, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1939, 1, 0, 0, 0, 1938, 1932, - 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, - 281, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1944, 5, 82, 0, 0, 1944, 1946, 3, 280, - 140, 0, 1945, 1947, 5, 115, 0, 0, 1946, 1945, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, - 1948, 1, 0, 0, 0, 1948, 1949, 5, 83, 0, 0, 1949, 1953, 1, 0, 0, 0, 1950, 1951, 5, 82, - 0, 0, 1951, 1953, 5, 83, 0, 0, 1952, 1943, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1953, - 283, 1, 0, 0, 0, 1954, 1957, 5, 125, 0, 0, 1955, 1957, 3, 348, 174, 0, 1956, 1954, - 1, 0, 0, 0, 1956, 1955, 1, 0, 0, 0, 1957, 285, 1, 0, 0, 0, 1958, 1959, 3, 288, 144, 0, - 1959, 1961, 5, 82, 0, 0, 1960, 1962, 3, 296, 148, 0, 1961, 1960, 1, 0, 0, 0, 1961, - 1962, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 5, 83, 0, 0, 1964, 287, 1, 0, 0, - 0, 1965, 1967, 3, 294, 147, 0, 1966, 1968, 3, 206, 103, 0, 1967, 1966, 1, 0, 0, 0, - 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 3, 290, 145, 0, 1970, 1972, - 3, 292, 146, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, - 0, 1973, 1975, 3, 310, 155, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, - 1984, 1, 0, 0, 0, 1976, 1978, 3, 294, 147, 0, 1977, 1979, 3, 206, 103, 0, 1978, 1977, - 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 310, 155, - 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1965, - 1, 0, 0, 0, 1983, 1976, 1, 0, 0, 0, 1984, 289, 1, 0, 0, 0, 1985, 1987, 3, 10, 5, 0, 1986, - 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 3, 284, - 142, 0, 1989, 291, 1, 0, 0, 0, 1990, 1991, 5, 31, 0, 0, 1991, 293, 1, 0, 0, 0, 1992, - 1993, 7, 6, 0, 0, 1993, 295, 1, 0, 0, 0, 1994, 1996, 3, 298, 149, 0, 1995, 1997, 3, - 296, 148, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2004, 1, 0, 0, 0, - 1998, 1999, 3, 320, 160, 0, 1999, 2001, 5, 119, 0, 0, 2000, 2002, 3, 296, 148, 0, - 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1994, - 1, 0, 0, 0, 2003, 1998, 1, 0, 0, 0, 2004, 297, 1, 0, 0, 0, 2005, 2007, 3, 206, 103, 0, - 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, - 3, 134, 67, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2012, 1, 0, 0, 0, - 2011, 2013, 3, 300, 150, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, - 1, 0, 0, 0, 2014, 2022, 5, 121, 0, 0, 2015, 2022, 3, 270, 135, 0, 2016, 2022, 3, 198, - 99, 0, 2017, 2022, 3, 126, 63, 0, 2018, 2022, 3, 340, 170, 0, 2019, 2022, 3, 122, - 61, 0, 2020, 2022, 3, 128, 64, 0, 2021, 2006, 1, 0, 0, 0, 2021, 2015, 1, 0, 0, 0, 2021, - 2016, 1, 0, 0, 0, 2021, 2017, 1, 0, 0, 0, 2021, 2018, 1, 0, 0, 0, 2021, 2019, 1, 0, 0, - 0, 2021, 2020, 1, 0, 0, 0, 2022, 299, 1, 0, 0, 0, 2023, 2024, 6, 150, -1, 0, 2024, 2025, - 3, 302, 151, 0, 2025, 2031, 1, 0, 0, 0, 2026, 2027, 10, 1, 0, 0, 2027, 2028, 5, 115, - 0, 0, 2028, 2030, 3, 302, 151, 0, 2029, 2026, 1, 0, 0, 0, 2030, 2033, 1, 0, 0, 0, 2031, - 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 301, 1, 0, 0, 0, 2033, 2031, 1, 0, 0, - 0, 2034, 2036, 3, 232, 116, 0, 2035, 2037, 3, 304, 152, 0, 2036, 2035, 1, 0, 0, 0, - 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2040, 3, 308, 154, 0, 2039, 2038, - 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2054, 1, 0, 0, 0, 2041, 2043, 3, 232, 116, - 0, 2042, 2044, 3, 276, 138, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, - 2054, 1, 0, 0, 0, 2045, 2047, 5, 125, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, - 0, 0, 2047, 2049, 1, 0, 0, 0, 2048, 2050, 3, 206, 103, 0, 2049, 2048, 1, 0, 0, 0, 2049, - 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 5, 119, 0, 0, 2052, 2054, 3, 88, - 44, 0, 2053, 2034, 1, 0, 0, 0, 2053, 2041, 1, 0, 0, 0, 2053, 2046, 1, 0, 0, 0, 2054, - 303, 1, 0, 0, 0, 2055, 2056, 6, 152, -1, 0, 2056, 2057, 3, 306, 153, 0, 2057, 2062, - 1, 0, 0, 0, 2058, 2059, 10, 1, 0, 0, 2059, 2061, 3, 306, 153, 0, 2060, 2058, 1, 0, 0, - 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 305, - 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2066, 7, 7, 0, 0, 2066, 307, 1, 0, 0, 0, 2067, - 2068, 5, 94, 0, 0, 2068, 2069, 5, 128, 0, 0, 2069, 2070, 6, 154, -1, 0, 2070, 309, - 1, 0, 0, 0, 2071, 2072, 5, 119, 0, 0, 2072, 2073, 3, 312, 156, 0, 2073, 311, 1, 0, 0, - 0, 2074, 2075, 6, 156, -1, 0, 2075, 2077, 3, 314, 157, 0, 2076, 2078, 5, 124, 0, 0, - 2077, 2076, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2087, 1, 0, 0, 0, 2079, 2080, - 10, 1, 0, 0, 2080, 2081, 5, 115, 0, 0, 2081, 2083, 3, 314, 157, 0, 2082, 2084, 5, 124, - 0, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 2086, 1, 0, 0, 0, 2085, 2079, - 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, - 313, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2090, 2092, 3, 206, 103, 0, 2091, 2090, 1, - 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2112, 3, 318, 159, 0, - 2094, 2096, 3, 206, 103, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, - 1, 0, 0, 0, 2097, 2099, 5, 73, 0, 0, 2098, 2100, 3, 320, 160, 0, 2099, 2098, 1, 0, 0, - 0, 2099, 2100, 1, 0, 0, 0, 2100, 2101, 1, 0, 0, 0, 2101, 2112, 3, 318, 159, 0, 2102, - 2104, 3, 206, 103, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, - 0, 0, 0, 2105, 2107, 3, 320, 160, 0, 2106, 2108, 5, 73, 0, 0, 2107, 2106, 1, 0, 0, 0, - 2107, 2108, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 3, 318, 159, 0, 2110, 2112, - 1, 0, 0, 0, 2111, 2091, 1, 0, 0, 0, 2111, 2095, 1, 0, 0, 0, 2111, 2103, 1, 0, 0, 0, 2112, - 315, 1, 0, 0, 0, 2113, 2115, 3, 10, 5, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, - 0, 2115, 2116, 1, 0, 0, 0, 2116, 2119, 3, 284, 142, 0, 2117, 2119, 3, 154, 77, 0, 2118, - 2114, 1, 0, 0, 0, 2118, 2117, 1, 0, 0, 0, 2119, 317, 1, 0, 0, 0, 2120, 2121, 3, 316, - 158, 0, 2121, 319, 1, 0, 0, 0, 2122, 2123, 7, 8, 0, 0, 2123, 321, 1, 0, 0, 0, 2124, 2125, - 5, 45, 0, 0, 2125, 2126, 3, 324, 162, 0, 2126, 323, 1, 0, 0, 0, 2127, 2129, 3, 146, - 73, 0, 2128, 2130, 3, 326, 163, 0, 2129, 2128, 1, 0, 0, 0, 2129, 2130, 1, 0, 0, 0, 2130, - 325, 1, 0, 0, 0, 2131, 2133, 3, 242, 121, 0, 2132, 2134, 3, 326, 163, 0, 2133, 2132, - 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 327, 1, 0, 0, 0, 2135, 2136, 5, 119, 0, 0, 2136, - 2137, 3, 330, 165, 0, 2137, 329, 1, 0, 0, 0, 2138, 2140, 3, 332, 166, 0, 2139, 2141, - 5, 124, 0, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2150, 1, 0, 0, 0, - 2142, 2144, 3, 332, 166, 0, 2143, 2145, 5, 124, 0, 0, 2144, 2143, 1, 0, 0, 0, 2144, - 2145, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2147, 5, 115, 0, 0, 2147, 2148, 3, 330, - 165, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2138, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2150, - 331, 1, 0, 0, 0, 2151, 2152, 3, 334, 167, 0, 2152, 2154, 5, 78, 0, 0, 2153, 2155, 3, - 32, 16, 0, 2154, 2153, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, - 2157, 5, 79, 0, 0, 2157, 2162, 1, 0, 0, 0, 2158, 2159, 3, 334, 167, 0, 2159, 2160, - 3, 282, 141, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2151, 1, 0, 0, 0, 2161, 2158, 1, 0, 0, - 0, 2162, 333, 1, 0, 0, 0, 2163, 2166, 3, 316, 158, 0, 2164, 2166, 5, 125, 0, 0, 2165, - 2163, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 335, 1, 0, 0, 0, 2167, 2168, 5, 45, 0, - 0, 2168, 2169, 3, 388, 194, 0, 2169, 337, 1, 0, 0, 0, 2170, 2171, 5, 45, 0, 0, 2171, - 2172, 5, 134, 0, 0, 2172, 2176, 5, 125, 0, 0, 2173, 2174, 5, 45, 0, 0, 2174, 2176, - 5, 137, 0, 0, 2175, 2170, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 339, 1, 0, 0, 0, 2177, - 2178, 5, 61, 0, 0, 2178, 2179, 5, 95, 0, 0, 2179, 2180, 3, 342, 171, 0, 2180, 2181, - 5, 96, 0, 0, 2181, 2182, 3, 118, 59, 0, 2182, 341, 1, 0, 0, 0, 2183, 2184, 6, 171, -1, - 0, 2184, 2185, 3, 344, 172, 0, 2185, 2191, 1, 0, 0, 0, 2186, 2187, 10, 1, 0, 0, 2187, - 2188, 5, 115, 0, 0, 2188, 2190, 3, 344, 172, 0, 2189, 2186, 1, 0, 0, 0, 2190, 2193, - 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 343, 1, 0, 0, 0, 2193, - 2191, 1, 0, 0, 0, 2194, 2197, 3, 346, 173, 0, 2195, 2197, 3, 268, 134, 0, 2196, 2194, - 1, 0, 0, 0, 2196, 2195, 1, 0, 0, 0, 2197, 345, 1, 0, 0, 0, 2198, 2200, 5, 14, 0, 0, 2199, - 2201, 5, 124, 0, 0, 2200, 2199, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2203, 1, 0, - 0, 0, 2202, 2204, 5, 125, 0, 0, 2203, 2202, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, - 2247, 1, 0, 0, 0, 2205, 2207, 5, 14, 0, 0, 2206, 2208, 5, 125, 0, 0, 2207, 2206, 1, - 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2210, 5, 94, 0, 0, 2210, - 2247, 3, 252, 126, 0, 2211, 2213, 5, 69, 0, 0, 2212, 2214, 5, 124, 0, 0, 2213, 2212, - 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2216, 1, 0, 0, 0, 2215, 2217, 5, 125, 0, 0, - 2216, 2215, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2247, 1, 0, 0, 0, 2218, 2220, - 5, 69, 0, 0, 2219, 2221, 5, 125, 0, 0, 2220, 2219, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, - 2221, 2222, 1, 0, 0, 0, 2222, 2223, 5, 94, 0, 0, 2223, 2247, 3, 252, 126, 0, 2224, - 2225, 5, 61, 0, 0, 2225, 2226, 5, 95, 0, 0, 2226, 2227, 3, 342, 171, 0, 2227, 2228, - 5, 96, 0, 0, 2228, 2230, 5, 14, 0, 0, 2229, 2231, 5, 124, 0, 0, 2230, 2229, 1, 0, 0, - 0, 2230, 2231, 1, 0, 0, 0, 2231, 2233, 1, 0, 0, 0, 2232, 2234, 5, 125, 0, 0, 2233, 2232, - 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2247, 1, 0, 0, 0, 2235, 2236, 5, 61, 0, 0, 2236, - 2237, 5, 95, 0, 0, 2237, 2238, 3, 342, 171, 0, 2238, 2239, 5, 96, 0, 0, 2239, 2241, - 5, 14, 0, 0, 2240, 2242, 5, 125, 0, 0, 2241, 2240, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, - 2242, 2243, 1, 0, 0, 0, 2243, 2244, 5, 94, 0, 0, 2244, 2245, 3, 4, 2, 0, 2245, 2247, - 1, 0, 0, 0, 2246, 2198, 1, 0, 0, 0, 2246, 2205, 1, 0, 0, 0, 2246, 2211, 1, 0, 0, 0, 2246, - 2218, 1, 0, 0, 0, 2246, 2224, 1, 0, 0, 0, 2246, 2235, 1, 0, 0, 0, 2247, 347, 1, 0, 0, - 0, 2248, 2249, 3, 352, 176, 0, 2249, 2251, 5, 95, 0, 0, 2250, 2252, 3, 354, 177, 0, - 2251, 2250, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 2254, - 5, 96, 0, 0, 2254, 349, 1, 0, 0, 0, 2255, 2271, 3, 348, 174, 0, 2256, 2257, 3, 336, - 168, 0, 2257, 2259, 5, 95, 0, 0, 2258, 2260, 3, 354, 177, 0, 2259, 2258, 1, 0, 0, 0, - 2259, 2260, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 5, 96, 0, 0, 2262, 2271, - 1, 0, 0, 0, 2263, 2264, 3, 338, 169, 0, 2264, 2266, 5, 95, 0, 0, 2265, 2267, 3, 354, - 177, 0, 2266, 2265, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, - 2269, 5, 96, 0, 0, 2269, 2271, 1, 0, 0, 0, 2270, 2255, 1, 0, 0, 0, 2270, 2256, 1, 0, - 0, 0, 2270, 2263, 1, 0, 0, 0, 2271, 351, 1, 0, 0, 0, 2272, 2273, 5, 125, 0, 0, 2273, - 353, 1, 0, 0, 0, 2274, 2275, 6, 177, -1, 0, 2275, 2277, 3, 356, 178, 0, 2276, 2278, - 5, 124, 0, 0, 2277, 2276, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2287, 1, 0, 0, 0, - 2279, 2280, 10, 1, 0, 0, 2280, 2281, 5, 115, 0, 0, 2281, 2283, 3, 356, 178, 0, 2282, - 2284, 5, 124, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, - 0, 0, 2285, 2279, 1, 0, 0, 0, 2286, 2289, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2287, 2288, - 1, 0, 0, 0, 2288, 355, 1, 0, 0, 0, 2289, 2287, 1, 0, 0, 0, 2290, 2294, 3, 252, 126, 0, - 2291, 2294, 3, 88, 44, 0, 2292, 2294, 3, 4, 2, 0, 2293, 2290, 1, 0, 0, 0, 2293, 2291, - 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 357, 1, 0, 0, 0, 2295, 2296, 5, 69, 0, 0, 2296, - 2297, 3, 10, 5, 0, 2297, 2298, 5, 125, 0, 0, 2298, 2307, 1, 0, 0, 0, 2299, 2300, 5, - 69, 0, 0, 2300, 2302, 3, 10, 5, 0, 2301, 2303, 5, 61, 0, 0, 2302, 2301, 1, 0, 0, 0, 2302, - 2303, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 3, 348, 174, 0, 2305, 2307, 1, - 0, 0, 0, 2306, 2295, 1, 0, 0, 0, 2306, 2299, 1, 0, 0, 0, 2307, 359, 1, 0, 0, 0, 2308, - 2310, 5, 29, 0, 0, 2309, 2308, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 1, 0, - 0, 0, 2311, 2312, 5, 61, 0, 0, 2312, 2313, 3, 118, 59, 0, 2313, 361, 1, 0, 0, 0, 2314, - 2315, 5, 61, 0, 0, 2315, 2316, 5, 95, 0, 0, 2316, 2317, 5, 96, 0, 0, 2317, 2318, 3, - 118, 59, 0, 2318, 363, 1, 0, 0, 0, 2319, 2320, 5, 66, 0, 0, 2320, 2321, 3, 96, 48, 0, - 2321, 2322, 3, 368, 184, 0, 2322, 365, 1, 0, 0, 0, 2323, 2325, 5, 66, 0, 0, 2324, 2326, - 3, 328, 164, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, - 0, 2327, 2328, 3, 96, 48, 0, 2328, 2329, 3, 368, 184, 0, 2329, 367, 1, 0, 0, 0, 2330, - 2332, 3, 370, 185, 0, 2331, 2333, 3, 368, 184, 0, 2332, 2331, 1, 0, 0, 0, 2332, 2333, - 1, 0, 0, 0, 2333, 369, 1, 0, 0, 0, 2334, 2335, 5, 10, 0, 0, 2335, 2336, 5, 78, 0, 0, 2336, - 2337, 3, 372, 186, 0, 2337, 2338, 5, 79, 0, 0, 2338, 2339, 3, 96, 48, 0, 2339, 371, - 1, 0, 0, 0, 2340, 2342, 3, 206, 103, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, - 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 3, 146, 73, 0, 2344, 2345, 3, 232, 116, 0, 2345, - 2355, 1, 0, 0, 0, 2346, 2348, 3, 206, 103, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, - 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2351, 3, 146, 73, 0, 2350, 2352, 3, 254, 127, - 0, 2351, 2350, 1, 0, 0, 0, 2351, 2352, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2355, - 5, 124, 0, 0, 2354, 2341, 1, 0, 0, 0, 2354, 2347, 1, 0, 0, 0, 2354, 2353, 1, 0, 0, 0, - 2355, 373, 1, 0, 0, 0, 2356, 2358, 5, 64, 0, 0, 2357, 2359, 3, 82, 41, 0, 2358, 2357, - 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 375, 1, 0, 0, 0, 2360, 2363, 3, 378, 189, 0, - 2361, 2363, 3, 382, 191, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2361, 1, 0, 0, 0, 2363, 377, - 1, 0, 0, 0, 2364, 2365, 5, 64, 0, 0, 2365, 2367, 5, 78, 0, 0, 2366, 2368, 3, 380, 190, - 0, 2367, 2366, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2369, 1, 0, 0, 0, 2369, 2370, - 5, 79, 0, 0, 2370, 379, 1, 0, 0, 0, 2371, 2372, 6, 190, -1, 0, 2372, 2374, 3, 252, 126, - 0, 2373, 2375, 5, 124, 0, 0, 2374, 2373, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2384, - 1, 0, 0, 0, 2376, 2377, 10, 1, 0, 0, 2377, 2378, 5, 115, 0, 0, 2378, 2380, 3, 252, 126, - 0, 2379, 2381, 5, 124, 0, 0, 2380, 2379, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, - 1, 0, 0, 0, 2382, 2376, 1, 0, 0, 0, 2383, 2386, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2384, - 2385, 1, 0, 0, 0, 2385, 381, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2387, 2388, 5, 43, 0, - 0, 2388, 2389, 5, 78, 0, 0, 2389, 2390, 3, 88, 44, 0, 2390, 2391, 5, 79, 0, 0, 2391, - 2394, 1, 0, 0, 0, 2392, 2394, 5, 43, 0, 0, 2393, 2387, 1, 0, 0, 0, 2393, 2392, 1, 0, - 0, 0, 2394, 383, 1, 0, 0, 0, 2395, 2396, 5, 96, 0, 0, 2396, 2397, 5, 96, 0, 0, 2397, - 385, 1, 0, 0, 0, 2398, 2399, 5, 96, 0, 0, 2399, 2400, 5, 96, 0, 0, 2400, 2401, 5, 94, - 0, 0, 2401, 387, 1, 0, 0, 0, 2402, 2451, 5, 42, 0, 0, 2403, 2451, 5, 21, 0, 0, 2404, - 2405, 5, 42, 0, 0, 2405, 2406, 5, 80, 0, 0, 2406, 2451, 5, 81, 0, 0, 2407, 2408, 5, - 21, 0, 0, 2408, 2409, 5, 80, 0, 0, 2409, 2451, 5, 81, 0, 0, 2410, 2451, 5, 84, 0, 0, - 2411, 2451, 5, 85, 0, 0, 2412, 2451, 5, 86, 0, 0, 2413, 2451, 5, 87, 0, 0, 2414, 2451, - 5, 88, 0, 0, 2415, 2451, 5, 89, 0, 0, 2416, 2451, 5, 90, 0, 0, 2417, 2451, 5, 91, 0, - 0, 2418, 2451, 5, 92, 0, 0, 2419, 2451, 5, 93, 0, 0, 2420, 2451, 5, 94, 0, 0, 2421, - 2451, 5, 95, 0, 0, 2422, 2451, 5, 96, 0, 0, 2423, 2451, 5, 97, 0, 0, 2424, 2451, 5, - 98, 0, 0, 2425, 2451, 5, 99, 0, 0, 2426, 2451, 5, 100, 0, 0, 2427, 2451, 5, 101, 0, - 0, 2428, 2451, 5, 102, 0, 0, 2429, 2451, 5, 103, 0, 0, 2430, 2451, 5, 104, 0, 0, 2431, - 2451, 5, 105, 0, 0, 2432, 2451, 3, 384, 192, 0, 2433, 2451, 3, 386, 193, 0, 2434, - 2451, 5, 106, 0, 0, 2435, 2451, 5, 107, 0, 0, 2436, 2451, 5, 108, 0, 0, 2437, 2451, - 5, 109, 0, 0, 2438, 2451, 5, 110, 0, 0, 2439, 2451, 5, 111, 0, 0, 2440, 2451, 5, 112, - 0, 0, 2441, 2451, 5, 113, 0, 0, 2442, 2451, 5, 114, 0, 0, 2443, 2451, 5, 115, 0, 0, - 2444, 2451, 5, 116, 0, 0, 2445, 2451, 5, 117, 0, 0, 2446, 2447, 5, 78, 0, 0, 2447, - 2451, 5, 79, 0, 0, 2448, 2449, 5, 80, 0, 0, 2449, 2451, 5, 81, 0, 0, 2450, 2402, 1, - 0, 0, 0, 2450, 2403, 1, 0, 0, 0, 2450, 2404, 1, 0, 0, 0, 2450, 2407, 1, 0, 0, 0, 2450, - 2410, 1, 0, 0, 0, 2450, 2411, 1, 0, 0, 0, 2450, 2412, 1, 0, 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, 2422, 1, 0, 0, 0, 2450, 2423, 1, 0, 0, 0, 2450, 2424, 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, 2430, 1, 0, 0, 0, 2450, 2431, 1, 0, 0, 0, 2450, - 2432, 1, 0, 0, 0, 2450, 2433, 1, 0, 0, 0, 2450, 2434, 1, 0, 0, 0, 2450, 2435, 1, 0, 0, - 0, 2450, 2436, 1, 0, 0, 0, 2450, 2437, 1, 0, 0, 0, 2450, 2438, 1, 0, 0, 0, 2450, 2439, - 1, 0, 0, 0, 2450, 2440, 1, 0, 0, 0, 2450, 2441, 1, 0, 0, 0, 2450, 2442, 1, 0, 0, 0, 2450, - 2443, 1, 0, 0, 0, 2450, 2444, 1, 0, 0, 0, 2450, 2445, 1, 0, 0, 0, 2450, 2446, 1, 0, 0, - 0, 2450, 2448, 1, 0, 0, 0, 2451, 389, 1, 0, 0, 0, 2452, 2460, 5, 126, 0, 0, 2453, 2460, - 5, 132, 0, 0, 2454, 2460, 5, 133, 0, 0, 2455, 2460, 5, 134, 0, 0, 2456, 2460, 3, 392, - 196, 0, 2457, 2460, 3, 394, 197, 0, 2458, 2460, 3, 396, 198, 0, 2459, 2452, 1, 0, - 0, 0, 2459, 2453, 1, 0, 0, 0, 2459, 2454, 1, 0, 0, 0, 2459, 2455, 1, 0, 0, 0, 2459, 2456, - 1, 0, 0, 0, 2459, 2457, 1, 0, 0, 0, 2459, 2458, 1, 0, 0, 0, 2460, 391, 1, 0, 0, 0, 2461, - 2462, 7, 9, 0, 0, 2462, 393, 1, 0, 0, 0, 2463, 2464, 5, 44, 0, 0, 2464, 395, 1, 0, 0, - 0, 2465, 2466, 7, 10, 0, 0, 2466, 397, 1, 0, 0, 0, 315, 399, 411, 415, 426, 430, 445, - 452, 457, 459, 464, 470, 480, 487, 493, 497, 502, 508, 515, 521, 524, 527, 530, - 537, 544, 596, 611, 617, 623, 636, 638, 644, 659, 665, 695, 700, 704, 708, 711, - 715, 721, 723, 731, 735, 738, 745, 752, 756, 761, 765, 768, 773, 779, 792, 803, - 805, 820, 822, 834, 836, 849, 851, 869, 871, 883, 885, 896, 907, 918, 929, 940, - 950, 958, 971, 981, 988, 992, 996, 1000, 1004, 1009, 1012, 1015, 1021, 1029, 1034, - 1037, 1043, 1054, 1077, 1081, 1089, 1095, 1115, 1119, 1132, 1136, 1139, 1146, - 1154, 1164, 1175, 1187, 1197, 1202, 1209, 1212, 1217, 1222, 1243, 1247, 1252, - 1263, 1269, 1273, 1278, 1282, 1287, 1290, 1312, 1318, 1329, 1333, 1336, 1346, - 1352, 1355, 1362, 1372, 1376, 1379, 1382, 1386, 1391, 1393, 1397, 1401, 1410, - 1423, 1431, 1437, 1443, 1447, 1450, 1459, 1468, 1476, 1487, 1493, 1504, 1507, - 1512, 1527, 1533, 1542, 1552, 1558, 1566, 1570, 1574, 1579, 1584, 1591, 1593, - 1598, 1602, 1616, 1622, 1637, 1647, 1652, 1659, 1665, 1670, 1676, 1683, 1687, - 1689, 1691, 1698, 1701, 1704, 1707, 1712, 1716, 1719, 1723, 1727, 1732, 1735, - 1737, 1741, 1748, 1754, 1758, 1764, 1769, 1771, 1777, 1781, 1787, 1794, 1798, - 1800, 1802, 1809, 1819, 1823, 1825, 1827, 1831, 1834, 1840, 1850, 1854, 1860, - 1868, 1872, 1875, 1879, 1884, 1887, 1890, 1894, 1899, 1909, 1916, 1921, 1925, - 1930, 1936, 1940, 1946, 1952, 1956, 1961, 1967, 1971, 1974, 1978, 1981, 1983, - 1986, 1996, 2001, 2003, 2006, 2009, 2012, 2021, 2031, 2036, 2039, 2043, 2046, - 2049, 2053, 2062, 2077, 2083, 2087, 2091, 2095, 2099, 2103, 2107, 2111, 2114, - 2118, 2129, 2133, 2140, 2144, 2149, 2154, 2161, 2165, 2175, 2191, 2196, 2200, - 2203, 2207, 2213, 2216, 2220, 2230, 2233, 2241, 2246, 2251, 2259, 2266, 2270, - 2277, 2283, 2287, 2293, 2302, 2306, 2309, 2325, 2332, 2341, 2347, 2351, 2354, - 2358, 2362, 2367, 2374, 2380, 2384, 2393, 2450, 2459 + 4,1,142,2468,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,3,0,400,8,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1, + 1,1,1,1,1,3,1,412,8,1,1,2,1,2,3,2,416,8,2,1,3,1,3,1,3,1,3,1,3,1, + 3,1,3,1,3,1,3,3,3,427,8,3,1,4,1,4,3,4,431,8,4,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,446,8,5,1,5,1,5,1,5,1,5,1, + 5,3,5,453,8,5,1,5,1,5,1,5,5,5,458,8,5,10,5,12,5,461,9,5,1,6,1,6, + 3,6,465,8,6,1,6,1,6,1,7,1,7,3,7,471,8,7,1,7,1,7,1,8,1,8,1,8,1,8, + 1,8,1,8,3,8,481,8,8,1,9,1,9,1,10,1,10,1,10,3,10,488,8,10,1,10,1, + 10,1,10,1,10,3,10,494,8,10,5,10,496,8,10,10,10,12,10,499,9,10,1, + 11,1,11,3,11,503,8,11,1,12,1,12,1,12,1,12,3,12,509,8,12,1,13,1,13, + 1,13,1,13,1,13,3,13,516,8,13,1,14,1,14,1,14,1,14,3,14,522,8,14,1, + 14,3,14,525,8,14,1,14,3,14,528,8,14,1,14,3,14,531,8,14,1,15,1,15, + 1,15,1,15,1,15,3,15,538,8,15,1,15,1,15,1,15,1,15,1,15,3,15,545,8, + 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,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,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,1,15,1,15,1,15,3,15,597, + 8,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,612,8,15,1,15,1,15,1,15,1,15,3,15,618,8,15,1,15,1,15,1, + 15,1,15,3,15,624,8,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,5,15,637,8,15,10,15,12,15,640,9,15,1,16,1,16,1,17,3, + 17,645,8,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1, + 17,1,17,1,17,3,17,660,8,17,1,17,1,17,1,17,1,17,3,17,666,8,17,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,696,8,18,1,19,1,19,1,20,3,20,701,8,20,1,20,1,20,3,20,705, + 8,20,1,20,1,20,3,20,709,8,20,1,20,3,20,712,8,20,1,20,1,20,3,20,716, + 8,20,1,20,1,20,1,20,1,20,3,20,722,8,20,3,20,724,8,20,1,21,1,21,1, + 21,1,21,1,22,1,22,3,22,732,8,22,1,23,1,23,3,23,736,8,23,1,23,3,23, + 739,8,23,1,24,1,24,1,24,1,24,1,24,3,24,746,8,24,1,24,1,24,1,24,1, + 24,1,24,3,24,753,8,24,5,24,755,8,24,10,24,12,24,758,9,24,1,25,1, + 25,3,25,762,8,25,1,25,1,25,3,25,766,8,25,1,26,3,26,769,8,26,1,26, + 1,26,1,26,3,26,774,8,26,1,26,1,26,1,26,1,26,3,26,780,8,26,1,27,1, + 27,1,27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,793,8,28,1, + 29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,804,8,29,10,29,12, + 29,807,9,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1, + 30,1,30,5,30,821,8,30,10,30,12,30,824,9,30,1,31,1,31,1,31,1,31,1, + 31,1,31,1,31,1,31,1,31,5,31,835,8,31,10,31,12,31,838,9,31,1,32,1, + 32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,850,8,32,10,32,12, + 32,853,9,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,5,33,870,8,33,10,33,12,33,873,9,33,1,34,1, + 34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,884,8,34,10,34,12,34, + 887,9,34,1,35,1,35,1,35,1,35,1,35,1,35,5,35,895,8,35,10,35,12,35, + 898,9,35,1,36,1,36,1,36,1,36,1,36,1,36,5,36,906,8,36,10,36,12,36, + 909,9,36,1,37,1,37,1,37,1,37,1,37,1,37,5,37,917,8,37,10,37,12,37, + 920,9,37,1,38,1,38,1,38,1,38,1,38,1,38,5,38,928,8,38,10,38,12,38, + 931,9,38,1,39,1,39,1,39,1,39,1,39,1,39,5,39,939,8,39,10,39,12,39, + 942,9,39,1,40,1,40,1,40,1,40,1,40,1,40,1,40,3,40,951,8,40,1,41,1, + 41,1,41,1,41,1,41,1,41,3,41,959,8,41,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,3,42,972,8,42,1,43,1,43,1,43,1,43,1, + 43,1,43,5,43,980,8,43,10,43,12,43,983,9,43,1,44,1,44,1,45,1,45,3, + 45,989,8,45,1,45,1,45,3,45,993,8,45,1,45,1,45,3,45,997,8,45,1,45, + 1,45,3,45,1001,8,45,1,45,1,45,3,45,1005,8,45,1,45,1,45,1,45,3,45, + 1010,8,45,1,45,3,45,1013,8,45,1,46,3,46,1016,8,46,1,46,1,46,1,46, + 1,46,3,46,1022,8,46,1,46,1,46,1,46,1,46,1,46,1,46,3,46,1030,8,46, + 1,46,1,46,1,46,3,46,1035,8,46,1,47,3,47,1038,8,47,1,47,1,47,1,48, + 1,48,3,48,1044,8,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,5,49,1053, + 8,49,10,49,12,49,1056,9,49,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1, + 50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,3, + 50,1078,8,50,1,51,1,51,3,51,1082,8,51,1,51,1,51,1,51,1,51,1,51,1, + 51,3,51,1090,8,51,1,51,1,51,1,51,1,51,3,51,1096,8,51,1,52,1,52,1, + 52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1, + 52,1,52,1,52,3,52,1116,8,52,1,52,1,52,3,52,1120,8,52,1,52,1,52,1, + 52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,1133,8,52,1,53,1, + 53,3,53,1137,8,53,1,54,3,54,1140,8,54,1,54,1,54,1,54,1,55,1,55,3, + 55,1147,8,55,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1155,8,56,1,56,1, + 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1165,8,56,1,57,1,57,1,58,1, + 58,1,58,1,58,1,58,5,58,1174,8,58,10,58,12,58,1177,9,58,1,59,1,59, + 1,59,1,59,1,59,1,59,1,59,1,59,1,59,3,59,1188,8,59,1,60,1,60,1,60, + 1,60,1,60,1,60,1,60,1,60,3,60,1198,8,60,1,61,1,61,1,61,3,61,1203, + 8,61,1,61,1,61,1,61,1,61,1,62,3,62,1210,8,62,1,62,3,62,1213,8,62, + 1,62,1,62,1,62,3,62,1218,8,62,1,62,1,62,1,62,3,62,1223,8,62,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,65,1,65,1,65,1,66, + 1,66,1,66,1,66,1,66,1,66,3,66,1244,8,66,1,67,1,67,3,67,1248,8,67, + 1,67,1,67,1,67,3,67,1253,8,67,1,68,1,68,1,69,1,69,1,70,1,70,1,71, + 1,71,1,71,3,71,1264,8,71,1,72,1,72,1,72,1,72,3,72,1270,8,72,1,73, + 1,73,3,73,1274,8,73,1,73,1,73,1,73,3,73,1279,8,73,1,74,1,74,3,74, + 1283,8,74,1,74,1,74,1,74,3,74,1288,8,74,1,75,3,75,1291,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,3,75,1313,8,75,1,76,1,76,1,76,1,76, + 3,76,1319,8,76,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,1,77,3,77, + 1330,8,77,1,78,1,78,3,78,1334,8,78,1,78,3,78,1337,8,78,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,3,78,1347,8,78,1,78,1,78,1,78,1,78, + 3,78,1353,8,78,1,78,3,78,1356,8,78,1,79,1,79,1,80,1,80,1,80,3,80, + 1363,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1373,8,80, + 1,81,1,81,3,81,1377,8,81,1,81,3,81,1380,8,81,1,81,3,81,1383,8,81, + 1,81,1,81,3,81,1387,8,81,1,81,1,81,1,81,3,81,1392,8,81,3,81,1394, + 8,81,1,82,1,82,3,82,1398,8,82,1,82,1,82,3,82,1402,8,82,1,82,1,82, + 1,83,1,83,1,83,1,83,1,83,3,83,1411,8,83,1,84,1,84,1,84,1,85,1,85, + 1,85,1,85,1,85,1,85,5,85,1422,8,85,10,85,12,85,1425,9,85,1,86,1, + 86,1,86,1,86,1,86,3,86,1432,8,86,1,87,1,87,1,88,1,88,3,88,1438,8, + 88,1,89,1,89,1,90,1,90,3,90,1444,8,90,1,91,1,91,3,91,1448,8,91,1, + 92,3,92,1451,8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,93,3,93,1460,8, + 93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,3,94,1469,8,94,1,94,1,94,1, + 94,1,94,1,94,1,95,3,95,1477,8,95,1,96,1,96,1,97,1,97,1,97,1,97,1, + 97,1,97,1,98,3,98,1488,8,98,1,98,1,98,1,99,1,99,3,99,1494,8,99,1, + 99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1505,8,99,1,100, + 3,100,1508,8,100,1,100,1,100,1,100,3,100,1513,8,100,1,100,1,100, + 1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102, + 3,102,1528,8,102,1,102,1,102,1,102,1,102,3,102,1534,8,102,1,103, + 1,103,1,103,1,103,1,103,5,103,1541,8,103,10,103,12,103,1544,9,103, + 1,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,1553,8,104,1,105, + 1,105,1,105,1,105,3,105,1559,8,105,1,105,1,105,1,105,1,105,1,105, + 1,105,3,105,1567,8,105,1,105,1,105,3,105,1571,8,105,1,106,1,106, + 3,106,1575,8,106,1,106,1,106,1,106,3,106,1580,8,106,1,106,1,106, + 1,106,3,106,1585,8,106,1,106,1,106,1,106,1,106,1,106,5,106,1592, + 8,106,10,106,12,106,1595,9,106,1,107,1,107,3,107,1599,8,107,1,108, + 1,108,3,108,1603,8,108,1,109,1,109,1,109,1,109,1,110,1,110,1,111, + 1,111,1,111,1,111,1,112,1,112,3,112,1617,8,112,1,112,1,112,5,112, + 1621,8,112,10,112,12,112,1624,9,112,1,113,1,113,1,113,1,113,1,113, + 1,113,1,113,1,113,1,113,1,113,1,113,1,113,3,113,1638,8,113,1,114, + 1,114,1,114,1,114,1,114,1,114,5,114,1646,8,114,10,114,12,114,1649, + 9,114,1,115,1,115,3,115,1653,8,115,1,116,1,116,1,116,1,116,1,116, + 3,116,1660,8,116,1,117,1,117,1,117,1,117,3,117,1666,8,117,1,118, + 1,118,1,118,3,118,1671,8,118,1,118,1,118,1,118,1,118,3,118,1677, + 8,118,1,118,1,118,1,118,1,118,1,118,3,118,1684,8,118,1,118,1,118, + 3,118,1688,8,118,5,118,1690,8,118,10,118,12,118,1693,9,118,1,119, + 1,119,1,119,1,119,3,119,1699,8,119,1,119,3,119,1702,8,119,1,119, + 3,119,1705,8,119,1,119,3,119,1708,8,119,1,120,1,120,1,120,3,120, + 1713,8,120,1,121,1,121,3,121,1717,8,121,1,121,3,121,1720,8,121,1, + 121,1,121,3,121,1724,8,121,1,121,1,121,3,121,1728,8,121,1,121,1, + 121,1,121,3,121,1733,8,121,1,121,3,121,1736,8,121,3,121,1738,8,121, + 1,122,1,122,3,122,1742,8,122,1,123,1,123,1,124,1,124,1,125,3,125, + 1749,8,125,1,125,1,125,1,126,1,126,3,126,1755,8,126,1,127,1,127, + 3,127,1759,8,127,1,127,1,127,1,127,1,127,3,127,1765,8,127,1,128, + 1,128,1,128,3,128,1770,8,128,3,128,1772,8,128,1,129,1,129,1,129, + 1,129,3,129,1778,8,129,1,129,1,129,3,129,1782,8,129,1,129,1,129, + 1,129,1,129,3,129,1788,8,129,1,129,1,129,1,129,1,129,1,129,3,129, + 1795,8,129,1,129,1,129,3,129,1799,8,129,5,129,1801,8,129,10,129, + 12,129,1804,9,129,1,130,1,130,1,130,1,130,3,130,1810,8,130,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1820,8,131,1,131, + 1,131,3,131,1824,8,131,5,131,1826,8,131,10,131,12,131,1829,9,131, + 1,132,3,132,1832,8,132,1,132,3,132,1835,8,132,1,132,1,132,1,132, + 1,132,3,132,1841,8,132,1,133,1,133,1,133,1,133,1,133,1,133,5,133, + 1849,8,133,10,133,12,133,1852,9,133,1,134,3,134,1855,8,134,1,134, + 1,134,1,134,1,134,3,134,1861,8,134,1,134,1,134,1,134,1,134,1,134, + 1,134,3,134,1869,8,134,1,134,1,134,3,134,1873,8,134,1,134,3,134, + 1876,8,134,1,134,1,134,3,134,1880,8,134,1,134,1,134,1,134,3,134, + 1885,8,134,1,135,3,135,1888,8,135,1,135,3,135,1891,8,135,1,135,1, + 135,3,135,1895,8,135,1,135,1,135,1,136,3,136,1900,8,136,1,136,1, + 136,1,136,1,136,1,136,1,136,1,136,1,136,3,136,1910,8,136,1,137,1, + 137,1,137,1,137,1,137,3,137,1917,8,137,1,138,1,138,1,138,3,138,1922, + 8,138,1,139,1,139,3,139,1926,8,139,1,140,1,140,1,140,3,140,1931, + 8,140,1,140,1,140,1,140,1,140,3,140,1937,8,140,5,140,1939,8,140, + 10,140,12,140,1942,9,140,1,141,1,141,1,141,3,141,1947,8,141,1,141, + 1,141,1,141,1,141,3,141,1953,8,141,1,142,1,142,3,142,1957,8,142, + 1,143,1,143,1,143,3,143,1962,8,143,1,143,1,143,1,144,1,144,3,144, + 1968,8,144,1,144,1,144,3,144,1972,8,144,1,144,3,144,1975,8,144,1, + 144,1,144,3,144,1979,8,144,1,144,3,144,1982,8,144,3,144,1984,8,144, + 1,145,3,145,1987,8,145,1,145,1,145,1,146,1,146,1,147,1,147,1,148, + 1,148,3,148,1997,8,148,1,148,1,148,1,148,3,148,2002,8,148,3,148, + 2004,8,148,1,149,3,149,2007,8,149,1,149,3,149,2010,8,149,1,149,3, + 149,2013,8,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,2022, + 8,149,1,150,1,150,1,150,1,150,1,150,1,150,5,150,2030,8,150,10,150, + 12,150,2033,9,150,1,151,1,151,3,151,2037,8,151,1,151,3,151,2040, + 8,151,1,151,1,151,3,151,2044,8,151,1,151,3,151,2047,8,151,1,151, + 3,151,2050,8,151,1,151,1,151,3,151,2054,8,151,1,152,1,152,1,152, + 1,152,1,152,5,152,2061,8,152,10,152,12,152,2064,9,152,1,153,1,153, + 1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,156,1,156,1,156,3,156, + 2078,8,156,1,156,1,156,1,156,1,156,3,156,2084,8,156,5,156,2086,8, + 156,10,156,12,156,2089,9,156,1,157,3,157,2092,8,157,1,157,1,157, + 3,157,2096,8,157,1,157,1,157,3,157,2100,8,157,1,157,1,157,3,157, + 2104,8,157,1,157,1,157,3,157,2108,8,157,1,157,1,157,3,157,2112,8, + 157,1,158,3,158,2115,8,158,1,158,1,158,3,158,2119,8,158,1,159,1, + 159,1,160,1,160,1,161,1,161,1,161,1,162,1,162,3,162,2130,8,162,1, + 163,1,163,3,163,2134,8,163,1,164,1,164,1,164,1,165,1,165,3,165,2141, + 8,165,1,165,1,165,3,165,2145,8,165,1,165,1,165,1,165,3,165,2150, + 8,165,1,166,1,166,1,166,3,166,2155,8,166,1,166,1,166,1,166,1,166, + 1,166,3,166,2162,8,166,1,167,1,167,3,167,2166,8,167,1,168,1,168, + 1,168,1,169,1,169,1,169,1,169,1,169,3,169,2176,8,169,1,170,1,170, + 1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,5,171, + 2190,8,171,10,171,12,171,2193,9,171,1,172,1,172,3,172,2197,8,172, + 1,173,1,173,3,173,2201,8,173,1,173,3,173,2204,8,173,1,173,1,173, + 3,173,2208,8,173,1,173,1,173,1,173,1,173,3,173,2214,8,173,1,173, + 3,173,2217,8,173,1,173,1,173,3,173,2221,8,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,3,173,2231,8,173,1,173,3,173,2234, + 8,173,1,173,1,173,1,173,1,173,1,173,1,173,3,173,2242,8,173,1,173, + 1,173,1,173,3,173,2247,8,173,1,174,1,174,1,174,3,174,2252,8,174, + 1,174,1,174,1,175,1,175,1,175,1,175,3,175,2260,8,175,1,175,1,175, + 1,175,1,175,1,175,3,175,2267,8,175,1,175,1,175,3,175,2271,8,175, + 1,176,1,176,1,177,1,177,1,177,3,177,2278,8,177,1,177,1,177,1,177, + 1,177,3,177,2284,8,177,5,177,2286,8,177,10,177,12,177,2289,9,177, + 1,178,1,178,1,178,3,178,2294,8,178,1,179,1,179,1,179,1,179,1,179, + 1,179,1,179,3,179,2303,8,179,1,179,1,179,3,179,2307,8,179,1,180, + 3,180,2310,8,180,1,180,1,180,1,180,1,181,1,181,1,181,1,181,1,181, + 1,182,1,182,1,182,1,182,1,183,1,183,3,183,2326,8,183,1,183,1,183, + 1,183,1,184,1,184,3,184,2333,8,184,1,185,1,185,1,185,1,185,1,185, + 1,185,1,186,3,186,2342,8,186,1,186,1,186,1,186,1,186,3,186,2348, + 8,186,1,186,1,186,3,186,2352,8,186,1,186,3,186,2355,8,186,1,187, + 1,187,3,187,2359,8,187,1,188,1,188,3,188,2363,8,188,1,189,1,189, + 1,189,3,189,2368,8,189,1,189,1,189,1,190,1,190,1,190,3,190,2375, + 8,190,1,190,1,190,1,190,1,190,3,190,2381,8,190,5,190,2383,8,190, + 10,190,12,190,2386,9,190,1,191,1,191,1,191,1,191,1,191,1,191,3,191, + 2394,8,191,1,192,1,192,1,192,1,193,1,193,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,1,194,1,194, + 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 1,194,1,194,3,194,2451,8,194,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,3,195,2460,8,195,1,196,1,196,1,197,1,197,1,198,1,198,1,198, + 0,34,10,20,30,48,58,60,62,64,66,68,70,72,74,76,78,86,98,116,170, + 206,212,224,228,236,258,262,266,280,300,304,312,342,354,380,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,11,2,0,90,90,94,94,2,0,84,86,90, + 93,5,0,29,29,40,40,50,50,56,56,63,63,3,0,27,27,37,37,73,73,2,0,15, + 15,75,75,2,0,90,90,111,111,3,0,14,14,59,59,70,70,2,0,31,31,46,46, + 1,0,47,49,2,0,30,30,65,65,1,0,135,138,2757,0,399,1,0,0,0,2,411,1, + 0,0,0,4,415,1,0,0,0,6,426,1,0,0,0,8,428,1,0,0,0,10,445,1,0,0,0,12, + 462,1,0,0,0,14,468,1,0,0,0,16,480,1,0,0,0,18,482,1,0,0,0,20,484, + 1,0,0,0,22,502,1,0,0,0,24,508,1,0,0,0,26,515,1,0,0,0,28,517,1,0, + 0,0,30,596,1,0,0,0,32,641,1,0,0,0,34,665,1,0,0,0,36,695,1,0,0,0, + 38,697,1,0,0,0,40,723,1,0,0,0,42,725,1,0,0,0,44,729,1,0,0,0,46,738, + 1,0,0,0,48,740,1,0,0,0,50,765,1,0,0,0,52,779,1,0,0,0,54,781,1,0, + 0,0,56,792,1,0,0,0,58,794,1,0,0,0,60,808,1,0,0,0,62,825,1,0,0,0, + 64,839,1,0,0,0,66,854,1,0,0,0,68,874,1,0,0,0,70,888,1,0,0,0,72,899, + 1,0,0,0,74,910,1,0,0,0,76,921,1,0,0,0,78,932,1,0,0,0,80,950,1,0, + 0,0,82,958,1,0,0,0,84,971,1,0,0,0,86,973,1,0,0,0,88,984,1,0,0,0, + 90,1012,1,0,0,0,92,1034,1,0,0,0,94,1037,1,0,0,0,96,1041,1,0,0,0, + 98,1047,1,0,0,0,100,1077,1,0,0,0,102,1095,1,0,0,0,104,1132,1,0,0, + 0,106,1136,1,0,0,0,108,1139,1,0,0,0,110,1146,1,0,0,0,112,1164,1, + 0,0,0,114,1166,1,0,0,0,116,1168,1,0,0,0,118,1187,1,0,0,0,120,1197, + 1,0,0,0,122,1199,1,0,0,0,124,1222,1,0,0,0,126,1224,1,0,0,0,128,1232, + 1,0,0,0,130,1234,1,0,0,0,132,1243,1,0,0,0,134,1252,1,0,0,0,136,1254, + 1,0,0,0,138,1256,1,0,0,0,140,1258,1,0,0,0,142,1263,1,0,0,0,144,1269, + 1,0,0,0,146,1278,1,0,0,0,148,1287,1,0,0,0,150,1312,1,0,0,0,152,1318, + 1,0,0,0,154,1329,1,0,0,0,156,1355,1,0,0,0,158,1357,1,0,0,0,160,1372, + 1,0,0,0,162,1393,1,0,0,0,164,1395,1,0,0,0,166,1410,1,0,0,0,168,1412, + 1,0,0,0,170,1415,1,0,0,0,172,1431,1,0,0,0,174,1433,1,0,0,0,176,1437, + 1,0,0,0,178,1439,1,0,0,0,180,1443,1,0,0,0,182,1447,1,0,0,0,184,1450, + 1,0,0,0,186,1459,1,0,0,0,188,1468,1,0,0,0,190,1476,1,0,0,0,192,1478, + 1,0,0,0,194,1480,1,0,0,0,196,1487,1,0,0,0,198,1504,1,0,0,0,200,1507, + 1,0,0,0,202,1517,1,0,0,0,204,1533,1,0,0,0,206,1535,1,0,0,0,208,1552, + 1,0,0,0,210,1570,1,0,0,0,212,1579,1,0,0,0,214,1596,1,0,0,0,216,1602, + 1,0,0,0,218,1604,1,0,0,0,220,1608,1,0,0,0,222,1610,1,0,0,0,224,1614, + 1,0,0,0,226,1637,1,0,0,0,228,1639,1,0,0,0,230,1650,1,0,0,0,232,1659, + 1,0,0,0,234,1665,1,0,0,0,236,1676,1,0,0,0,238,1694,1,0,0,0,240,1709, + 1,0,0,0,242,1737,1,0,0,0,244,1739,1,0,0,0,246,1743,1,0,0,0,248,1745, + 1,0,0,0,250,1748,1,0,0,0,252,1752,1,0,0,0,254,1764,1,0,0,0,256,1771, + 1,0,0,0,258,1787,1,0,0,0,260,1809,1,0,0,0,262,1811,1,0,0,0,264,1840, + 1,0,0,0,266,1842,1,0,0,0,268,1884,1,0,0,0,270,1887,1,0,0,0,272,1909, + 1,0,0,0,274,1916,1,0,0,0,276,1921,1,0,0,0,278,1925,1,0,0,0,280,1927, + 1,0,0,0,282,1952,1,0,0,0,284,1956,1,0,0,0,286,1958,1,0,0,0,288,1983, + 1,0,0,0,290,1986,1,0,0,0,292,1990,1,0,0,0,294,1992,1,0,0,0,296,2003, + 1,0,0,0,298,2021,1,0,0,0,300,2023,1,0,0,0,302,2053,1,0,0,0,304,2055, + 1,0,0,0,306,2065,1,0,0,0,308,2067,1,0,0,0,310,2071,1,0,0,0,312,2074, + 1,0,0,0,314,2111,1,0,0,0,316,2118,1,0,0,0,318,2120,1,0,0,0,320,2122, + 1,0,0,0,322,2124,1,0,0,0,324,2127,1,0,0,0,326,2131,1,0,0,0,328,2135, + 1,0,0,0,330,2149,1,0,0,0,332,2161,1,0,0,0,334,2165,1,0,0,0,336,2167, + 1,0,0,0,338,2175,1,0,0,0,340,2177,1,0,0,0,342,2183,1,0,0,0,344,2196, + 1,0,0,0,346,2246,1,0,0,0,348,2248,1,0,0,0,350,2270,1,0,0,0,352,2272, + 1,0,0,0,354,2274,1,0,0,0,356,2293,1,0,0,0,358,2306,1,0,0,0,360,2309, + 1,0,0,0,362,2314,1,0,0,0,364,2319,1,0,0,0,366,2323,1,0,0,0,368,2330, + 1,0,0,0,370,2334,1,0,0,0,372,2354,1,0,0,0,374,2356,1,0,0,0,376,2362, + 1,0,0,0,378,2364,1,0,0,0,380,2371,1,0,0,0,382,2393,1,0,0,0,384,2395, + 1,0,0,0,386,2398,1,0,0,0,388,2450,1,0,0,0,390,2459,1,0,0,0,392,2461, + 1,0,0,0,394,2463,1,0,0,0,396,2465,1,0,0,0,398,400,3,116,58,0,399, + 398,1,0,0,0,399,400,1,0,0,0,400,401,1,0,0,0,401,402,5,0,0,1,402, + 1,1,0,0,0,403,412,3,390,195,0,404,412,5,62,0,0,405,406,5,78,0,0, + 406,407,3,86,43,0,407,408,5,79,0,0,408,412,1,0,0,0,409,412,3,4,2, + 0,410,412,3,12,6,0,411,403,1,0,0,0,411,404,1,0,0,0,411,405,1,0,0, + 0,411,409,1,0,0,0,411,410,1,0,0,0,412,3,1,0,0,0,413,416,3,6,3,0, + 414,416,3,8,4,0,415,413,1,0,0,0,415,414,1,0,0,0,416,5,1,0,0,0,417, + 427,5,125,0,0,418,427,3,336,168,0,419,427,3,322,161,0,420,427,3, + 338,169,0,421,422,5,92,0,0,422,427,3,284,142,0,423,424,5,92,0,0, + 424,427,3,154,77,0,425,427,3,350,175,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,423,1, + 0,0,0,426,425,1,0,0,0,427,7,1,0,0,0,428,430,3,10,5,0,429,431,5,61, + 0,0,430,429,1,0,0,0,430,431,1,0,0,0,431,432,1,0,0,0,432,433,3,6, + 3,0,433,9,1,0,0,0,434,435,6,5,-1,0,435,446,5,120,0,0,436,437,3,152, + 76,0,437,438,5,120,0,0,438,446,1,0,0,0,439,440,3,176,88,0,440,441, + 5,120,0,0,441,446,1,0,0,0,442,443,3,154,77,0,443,444,5,120,0,0,444, + 446,1,0,0,0,445,434,1,0,0,0,445,436,1,0,0,0,445,439,1,0,0,0,445, + 442,1,0,0,0,446,459,1,0,0,0,447,448,10,2,0,0,448,449,5,125,0,0,449, + 458,5,120,0,0,450,452,10,1,0,0,451,453,5,61,0,0,452,451,1,0,0,0, + 452,453,1,0,0,0,453,454,1,0,0,0,454,455,3,348,174,0,455,456,5,120, + 0,0,456,458,1,0,0,0,457,447,1,0,0,0,457,450,1,0,0,0,458,461,1,0, + 0,0,459,457,1,0,0,0,459,460,1,0,0,0,460,11,1,0,0,0,461,459,1,0,0, + 0,462,464,3,14,7,0,463,465,3,28,14,0,464,463,1,0,0,0,464,465,1,0, + 0,0,465,466,1,0,0,0,466,467,3,96,48,0,467,13,1,0,0,0,468,470,5,80, + 0,0,469,471,3,16,8,0,470,469,1,0,0,0,470,471,1,0,0,0,471,472,1,0, + 0,0,472,473,5,81,0,0,473,15,1,0,0,0,474,481,3,18,9,0,475,481,3,20, + 10,0,476,477,3,18,9,0,477,478,5,115,0,0,478,479,3,20,10,0,479,481, + 1,0,0,0,480,474,1,0,0,0,480,475,1,0,0,0,480,476,1,0,0,0,481,17,1, + 0,0,0,482,483,7,0,0,0,483,19,1,0,0,0,484,485,6,10,-1,0,485,487,3, + 22,11,0,486,488,5,124,0,0,487,486,1,0,0,0,487,488,1,0,0,0,488,497, + 1,0,0,0,489,490,10,1,0,0,490,491,5,115,0,0,491,493,3,22,11,0,492, + 494,5,124,0,0,493,492,1,0,0,0,493,494,1,0,0,0,494,496,1,0,0,0,495, + 489,1,0,0,0,496,499,1,0,0,0,497,495,1,0,0,0,497,498,1,0,0,0,498, + 21,1,0,0,0,499,497,1,0,0,0,500,503,3,24,12,0,501,503,3,26,13,0,502, + 500,1,0,0,0,502,501,1,0,0,0,503,23,1,0,0,0,504,509,5,125,0,0,505, + 506,5,90,0,0,506,509,5,125,0,0,507,509,5,62,0,0,508,504,1,0,0,0, + 508,505,1,0,0,0,508,507,1,0,0,0,509,25,1,0,0,0,510,511,5,125,0,0, + 511,516,3,274,137,0,512,513,5,90,0,0,513,514,5,125,0,0,514,516,3, + 274,137,0,515,510,1,0,0,0,515,512,1,0,0,0,516,27,1,0,0,0,517,518, + 5,78,0,0,518,519,3,264,132,0,519,521,5,79,0,0,520,522,5,40,0,0,521, + 520,1,0,0,0,521,522,1,0,0,0,522,524,1,0,0,0,523,525,3,376,188,0, + 524,523,1,0,0,0,524,525,1,0,0,0,525,527,1,0,0,0,526,528,3,206,103, + 0,527,526,1,0,0,0,527,528,1,0,0,0,528,530,1,0,0,0,529,531,3,240, + 120,0,530,529,1,0,0,0,530,531,1,0,0,0,531,29,1,0,0,0,532,533,6,15, + -1,0,533,597,3,2,1,0,534,535,3,150,75,0,535,537,5,78,0,0,536,538, + 3,32,16,0,537,536,1,0,0,0,537,538,1,0,0,0,538,539,1,0,0,0,539,540, + 5,79,0,0,540,597,1,0,0,0,541,542,3,358,179,0,542,544,5,78,0,0,543, + 545,3,32,16,0,544,543,1,0,0,0,544,545,1,0,0,0,545,546,1,0,0,0,546, + 547,5,79,0,0,547,597,1,0,0,0,548,549,3,150,75,0,549,550,3,282,141, + 0,550,597,1,0,0,0,551,552,3,358,179,0,552,553,3,282,141,0,553,597, + 1,0,0,0,554,555,5,24,0,0,555,556,5,95,0,0,556,557,3,252,126,0,557, + 558,5,96,0,0,558,559,5,78,0,0,559,560,3,86,43,0,560,561,5,79,0,0, + 561,597,1,0,0,0,562,563,5,58,0,0,563,564,5,95,0,0,564,565,3,252, + 126,0,565,566,5,96,0,0,566,567,5,78,0,0,567,568,3,86,43,0,568,569, + 5,79,0,0,569,597,1,0,0,0,570,571,5,51,0,0,571,572,5,95,0,0,572,573, + 3,252,126,0,573,574,5,96,0,0,574,575,5,78,0,0,575,576,3,86,43,0, + 576,577,5,79,0,0,577,597,1,0,0,0,578,579,5,17,0,0,579,580,5,95,0, + 0,580,581,3,252,126,0,581,582,5,96,0,0,582,583,5,78,0,0,583,584, + 3,86,43,0,584,585,5,79,0,0,585,597,1,0,0,0,586,587,5,68,0,0,587, + 588,5,78,0,0,588,589,3,86,43,0,589,590,5,79,0,0,590,597,1,0,0,0, + 591,592,5,68,0,0,592,593,5,78,0,0,593,594,3,252,126,0,594,595,5, + 79,0,0,595,597,1,0,0,0,596,532,1,0,0,0,596,534,1,0,0,0,596,541,1, + 0,0,0,596,548,1,0,0,0,596,551,1,0,0,0,596,554,1,0,0,0,596,562,1, + 0,0,0,596,570,1,0,0,0,596,578,1,0,0,0,596,586,1,0,0,0,596,591,1, + 0,0,0,597,638,1,0,0,0,598,599,10,19,0,0,599,600,5,80,0,0,600,601, + 3,86,43,0,601,602,5,81,0,0,602,637,1,0,0,0,603,604,10,18,0,0,604, + 605,5,80,0,0,605,606,3,282,141,0,606,607,5,81,0,0,607,637,1,0,0, + 0,608,609,10,17,0,0,609,611,5,78,0,0,610,612,3,32,16,0,611,610,1, + 0,0,0,611,612,1,0,0,0,612,613,1,0,0,0,613,637,5,79,0,0,614,615,10, + 12,0,0,615,617,5,122,0,0,616,618,5,61,0,0,617,616,1,0,0,0,617,618, + 1,0,0,0,618,619,1,0,0,0,619,637,3,4,2,0,620,621,10,11,0,0,621,623, + 5,117,0,0,622,624,5,61,0,0,623,622,1,0,0,0,623,624,1,0,0,0,624,625, + 1,0,0,0,625,637,3,4,2,0,626,627,10,10,0,0,627,628,5,122,0,0,628, + 637,3,34,17,0,629,630,10,9,0,0,630,631,5,117,0,0,631,637,3,34,17, + 0,632,633,10,8,0,0,633,637,5,113,0,0,634,635,10,7,0,0,635,637,5, + 114,0,0,636,598,1,0,0,0,636,603,1,0,0,0,636,608,1,0,0,0,636,614, + 1,0,0,0,636,620,1,0,0,0,636,626,1,0,0,0,636,629,1,0,0,0,636,632, + 1,0,0,0,636,634,1,0,0,0,637,640,1,0,0,0,638,636,1,0,0,0,638,639, + 1,0,0,0,639,31,1,0,0,0,640,638,1,0,0,0,641,642,3,280,140,0,642,33, + 1,0,0,0,643,645,3,10,5,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646, + 1,0,0,0,646,647,3,152,76,0,647,648,5,120,0,0,648,649,5,92,0,0,649, + 650,3,152,76,0,650,666,1,0,0,0,651,652,3,10,5,0,652,653,5,61,0,0, + 653,654,3,348,174,0,654,655,5,120,0,0,655,656,5,92,0,0,656,657,3, + 152,76,0,657,666,1,0,0,0,658,660,3,10,5,0,659,658,1,0,0,0,659,660, + 1,0,0,0,660,661,1,0,0,0,661,662,5,92,0,0,662,666,3,152,76,0,663, + 664,5,92,0,0,664,666,3,154,77,0,665,644,1,0,0,0,665,651,1,0,0,0, + 665,659,1,0,0,0,665,663,1,0,0,0,666,35,1,0,0,0,667,696,3,30,15,0, + 668,669,5,113,0,0,669,696,3,56,28,0,670,671,5,114,0,0,671,696,3, + 56,28,0,672,673,3,38,19,0,673,674,3,56,28,0,674,696,1,0,0,0,675, + 676,5,55,0,0,676,696,3,36,18,0,677,678,5,55,0,0,678,679,5,78,0,0, + 679,680,3,252,126,0,680,681,5,79,0,0,681,696,1,0,0,0,682,683,5,55, + 0,0,683,684,5,124,0,0,684,685,5,78,0,0,685,686,5,125,0,0,686,696, + 5,79,0,0,687,688,5,4,0,0,688,689,5,78,0,0,689,690,3,252,126,0,690, + 691,5,79,0,0,691,696,1,0,0,0,692,696,3,54,27,0,693,696,3,40,20,0, + 694,696,3,52,26,0,695,667,1,0,0,0,695,668,1,0,0,0,695,670,1,0,0, + 0,695,672,1,0,0,0,695,675,1,0,0,0,695,677,1,0,0,0,695,682,1,0,0, + 0,695,687,1,0,0,0,695,692,1,0,0,0,695,693,1,0,0,0,695,694,1,0,0, + 0,696,37,1,0,0,0,697,698,7,1,0,0,698,39,1,0,0,0,699,701,5,120,0, + 0,700,699,1,0,0,0,700,701,1,0,0,0,701,702,1,0,0,0,702,704,5,42,0, + 0,703,705,3,42,21,0,704,703,1,0,0,0,704,705,1,0,0,0,705,706,1,0, + 0,0,706,708,3,44,22,0,707,709,3,50,25,0,708,707,1,0,0,0,708,709, + 1,0,0,0,709,724,1,0,0,0,710,712,5,120,0,0,711,710,1,0,0,0,711,712, + 1,0,0,0,712,713,1,0,0,0,713,715,5,42,0,0,714,716,3,42,21,0,715,714, + 1,0,0,0,715,716,1,0,0,0,716,717,1,0,0,0,717,718,5,78,0,0,718,719, + 3,252,126,0,719,721,5,79,0,0,720,722,3,50,25,0,721,720,1,0,0,0,721, + 722,1,0,0,0,722,724,1,0,0,0,723,700,1,0,0,0,723,711,1,0,0,0,724, + 41,1,0,0,0,725,726,5,78,0,0,726,727,3,32,16,0,727,728,5,79,0,0,728, + 43,1,0,0,0,729,731,3,146,73,0,730,732,3,46,23,0,731,730,1,0,0,0, + 731,732,1,0,0,0,732,45,1,0,0,0,733,735,3,242,121,0,734,736,3,46, + 23,0,735,734,1,0,0,0,735,736,1,0,0,0,736,739,1,0,0,0,737,739,3,48, + 24,0,738,733,1,0,0,0,738,737,1,0,0,0,739,47,1,0,0,0,740,741,6,24, + -1,0,741,742,5,80,0,0,742,743,3,86,43,0,743,745,5,81,0,0,744,746, + 3,206,103,0,745,744,1,0,0,0,745,746,1,0,0,0,746,756,1,0,0,0,747, + 748,10,1,0,0,748,749,5,80,0,0,749,750,3,88,44,0,750,752,5,81,0,0, + 751,753,3,206,103,0,752,751,1,0,0,0,752,753,1,0,0,0,753,755,1,0, + 0,0,754,747,1,0,0,0,755,758,1,0,0,0,756,754,1,0,0,0,756,757,1,0, + 0,0,757,49,1,0,0,0,758,756,1,0,0,0,759,761,5,78,0,0,760,762,3,32, + 16,0,761,760,1,0,0,0,761,762,1,0,0,0,762,763,1,0,0,0,763,766,5,79, + 0,0,764,766,3,282,141,0,765,759,1,0,0,0,765,764,1,0,0,0,766,51,1, + 0,0,0,767,769,5,120,0,0,768,767,1,0,0,0,768,769,1,0,0,0,769,770, + 1,0,0,0,770,771,5,21,0,0,771,780,3,56,28,0,772,774,5,120,0,0,773, + 772,1,0,0,0,773,774,1,0,0,0,774,775,1,0,0,0,775,776,5,21,0,0,776, + 777,5,80,0,0,777,778,5,81,0,0,778,780,3,56,28,0,779,768,1,0,0,0, + 779,773,1,0,0,0,780,53,1,0,0,0,781,782,5,43,0,0,782,783,5,78,0,0, + 783,784,3,86,43,0,784,785,5,79,0,0,785,55,1,0,0,0,786,793,3,36,18, + 0,787,788,5,78,0,0,788,789,3,252,126,0,789,790,5,79,0,0,790,791, + 3,56,28,0,791,793,1,0,0,0,792,786,1,0,0,0,792,787,1,0,0,0,793,57, + 1,0,0,0,794,795,6,29,-1,0,795,796,3,56,28,0,796,805,1,0,0,0,797, + 798,10,2,0,0,798,799,5,123,0,0,799,804,3,56,28,0,800,801,10,1,0, + 0,801,802,5,116,0,0,802,804,3,56,28,0,803,797,1,0,0,0,803,800,1, + 0,0,0,804,807,1,0,0,0,805,803,1,0,0,0,805,806,1,0,0,0,806,59,1,0, + 0,0,807,805,1,0,0,0,808,809,6,30,-1,0,809,810,3,58,29,0,810,822, + 1,0,0,0,811,812,10,3,0,0,812,813,5,86,0,0,813,821,3,58,29,0,814, + 815,10,2,0,0,815,816,5,87,0,0,816,821,3,58,29,0,817,818,10,1,0,0, + 818,819,5,88,0,0,819,821,3,58,29,0,820,811,1,0,0,0,820,814,1,0,0, + 0,820,817,1,0,0,0,821,824,1,0,0,0,822,820,1,0,0,0,822,823,1,0,0, + 0,823,61,1,0,0,0,824,822,1,0,0,0,825,826,6,31,-1,0,826,827,3,60, + 30,0,827,836,1,0,0,0,828,829,10,2,0,0,829,830,5,84,0,0,830,835,3, + 60,30,0,831,832,10,1,0,0,832,833,5,85,0,0,833,835,3,60,30,0,834, + 828,1,0,0,0,834,831,1,0,0,0,835,838,1,0,0,0,836,834,1,0,0,0,836, + 837,1,0,0,0,837,63,1,0,0,0,838,836,1,0,0,0,839,840,6,32,-1,0,840, + 841,3,62,31,0,841,851,1,0,0,0,842,843,10,2,0,0,843,844,5,105,0,0, + 844,850,3,62,31,0,845,846,10,1,0,0,846,847,3,384,192,0,847,848,3, + 62,31,0,848,850,1,0,0,0,849,842,1,0,0,0,849,845,1,0,0,0,850,853, + 1,0,0,0,851,849,1,0,0,0,851,852,1,0,0,0,852,65,1,0,0,0,853,851,1, + 0,0,0,854,855,6,33,-1,0,855,856,3,64,32,0,856,871,1,0,0,0,857,858, + 10,4,0,0,858,859,5,95,0,0,859,870,3,64,32,0,860,861,10,3,0,0,861, + 862,5,96,0,0,862,870,3,64,32,0,863,864,10,2,0,0,864,865,5,109,0, + 0,865,870,3,64,32,0,866,867,10,1,0,0,867,868,5,110,0,0,868,870,3, + 64,32,0,869,857,1,0,0,0,869,860,1,0,0,0,869,863,1,0,0,0,869,866, + 1,0,0,0,870,873,1,0,0,0,871,869,1,0,0,0,871,872,1,0,0,0,872,67,1, + 0,0,0,873,871,1,0,0,0,874,875,6,34,-1,0,875,876,3,66,33,0,876,885, + 1,0,0,0,877,878,10,2,0,0,878,879,5,107,0,0,879,884,3,66,33,0,880, + 881,10,1,0,0,881,882,5,108,0,0,882,884,3,66,33,0,883,877,1,0,0,0, + 883,880,1,0,0,0,884,887,1,0,0,0,885,883,1,0,0,0,885,886,1,0,0,0, + 886,69,1,0,0,0,887,885,1,0,0,0,888,889,6,35,-1,0,889,890,3,68,34, + 0,890,896,1,0,0,0,891,892,10,1,0,0,892,893,5,90,0,0,893,895,3,68, + 34,0,894,891,1,0,0,0,895,898,1,0,0,0,896,894,1,0,0,0,896,897,1,0, + 0,0,897,71,1,0,0,0,898,896,1,0,0,0,899,900,6,36,-1,0,900,901,3,70, + 35,0,901,907,1,0,0,0,902,903,10,1,0,0,903,904,5,89,0,0,904,906,3, + 70,35,0,905,902,1,0,0,0,906,909,1,0,0,0,907,905,1,0,0,0,907,908, + 1,0,0,0,908,73,1,0,0,0,909,907,1,0,0,0,910,911,6,37,-1,0,911,912, + 3,72,36,0,912,918,1,0,0,0,913,914,10,1,0,0,914,915,5,91,0,0,915, + 917,3,72,36,0,916,913,1,0,0,0,917,920,1,0,0,0,918,916,1,0,0,0,918, + 919,1,0,0,0,919,75,1,0,0,0,920,918,1,0,0,0,921,922,6,38,-1,0,922, + 923,3,74,37,0,923,929,1,0,0,0,924,925,10,1,0,0,925,926,5,111,0,0, + 926,928,3,74,37,0,927,924,1,0,0,0,928,931,1,0,0,0,929,927,1,0,0, + 0,929,930,1,0,0,0,930,77,1,0,0,0,931,929,1,0,0,0,932,933,6,39,-1, + 0,933,934,3,76,38,0,934,940,1,0,0,0,935,936,10,1,0,0,936,937,5,112, + 0,0,937,939,3,76,38,0,938,935,1,0,0,0,939,942,1,0,0,0,940,938,1, + 0,0,0,940,941,1,0,0,0,941,79,1,0,0,0,942,940,1,0,0,0,943,951,3,78, + 39,0,944,945,3,78,39,0,945,946,5,118,0,0,946,947,3,86,43,0,947,948, + 5,119,0,0,948,949,3,82,41,0,949,951,1,0,0,0,950,943,1,0,0,0,950, + 944,1,0,0,0,951,81,1,0,0,0,952,959,3,80,40,0,953,954,3,78,39,0,954, + 955,3,84,42,0,955,956,3,278,139,0,956,959,1,0,0,0,957,959,3,374, + 187,0,958,952,1,0,0,0,958,953,1,0,0,0,958,957,1,0,0,0,959,83,1,0, + 0,0,960,972,5,94,0,0,961,972,5,99,0,0,962,972,5,100,0,0,963,972, + 5,101,0,0,964,972,5,97,0,0,965,972,5,98,0,0,966,972,3,386,193,0, + 967,972,5,106,0,0,968,972,5,103,0,0,969,972,5,102,0,0,970,972,5, + 104,0,0,971,960,1,0,0,0,971,961,1,0,0,0,971,962,1,0,0,0,971,963, + 1,0,0,0,971,964,1,0,0,0,971,965,1,0,0,0,971,966,1,0,0,0,971,967, + 1,0,0,0,971,968,1,0,0,0,971,969,1,0,0,0,971,970,1,0,0,0,972,85,1, + 0,0,0,973,974,6,43,-1,0,974,975,3,82,41,0,975,981,1,0,0,0,976,977, + 10,1,0,0,977,978,5,115,0,0,978,980,3,82,41,0,979,976,1,0,0,0,980, + 983,1,0,0,0,981,979,1,0,0,0,981,982,1,0,0,0,982,87,1,0,0,0,983,981, + 1,0,0,0,984,985,3,80,40,0,985,89,1,0,0,0,986,1013,3,92,46,0,987, + 989,3,206,103,0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1,0,0,0, + 990,1013,3,94,47,0,991,993,3,206,103,0,992,991,1,0,0,0,992,993,1, + 0,0,0,993,994,1,0,0,0,994,1013,3,96,48,0,995,997,3,206,103,0,996, + 995,1,0,0,0,996,997,1,0,0,0,997,998,1,0,0,0,998,1013,3,100,50,0, + 999,1001,3,206,103,0,1000,999,1,0,0,0,1000,1001,1,0,0,0,1001,1002, + 1,0,0,0,1002,1013,3,104,52,0,1003,1005,3,206,103,0,1004,1003,1,0, + 0,0,1004,1005,1,0,0,0,1005,1006,1,0,0,0,1006,1013,3,112,56,0,1007, + 1013,3,114,57,0,1008,1010,3,206,103,0,1009,1008,1,0,0,0,1009,1010, + 1,0,0,0,1010,1011,1,0,0,0,1011,1013,3,364,182,0,1012,986,1,0,0,0, + 1012,988,1,0,0,0,1012,992,1,0,0,0,1012,996,1,0,0,0,1012,1000,1,0, + 0,0,1012,1004,1,0,0,0,1012,1007,1,0,0,0,1012,1009,1,0,0,0,1013,91, + 1,0,0,0,1014,1016,3,206,103,0,1015,1014,1,0,0,0,1015,1016,1,0,0, + 0,1016,1017,1,0,0,0,1017,1018,5,125,0,0,1018,1019,5,119,0,0,1019, + 1035,3,90,45,0,1020,1022,3,206,103,0,1021,1020,1,0,0,0,1021,1022, + 1,0,0,0,1022,1023,1,0,0,0,1023,1024,5,9,0,0,1024,1025,3,88,44,0, + 1025,1026,5,119,0,0,1026,1027,3,90,45,0,1027,1035,1,0,0,0,1028,1030, + 3,206,103,0,1029,1028,1,0,0,0,1029,1030,1,0,0,0,1030,1031,1,0,0, + 0,1031,1032,5,20,0,0,1032,1033,5,119,0,0,1033,1035,3,90,45,0,1034, + 1015,1,0,0,0,1034,1021,1,0,0,0,1034,1029,1,0,0,0,1035,93,1,0,0,0, + 1036,1038,3,86,43,0,1037,1036,1,0,0,0,1037,1038,1,0,0,0,1038,1039, + 1,0,0,0,1039,1040,5,121,0,0,1040,95,1,0,0,0,1041,1043,5,82,0,0,1042, + 1044,3,98,49,0,1043,1042,1,0,0,0,1043,1044,1,0,0,0,1044,1045,1,0, + 0,0,1045,1046,5,83,0,0,1046,97,1,0,0,0,1047,1048,6,49,-1,0,1048, + 1049,3,90,45,0,1049,1054,1,0,0,0,1050,1051,10,1,0,0,1051,1053,3, + 90,45,0,1052,1050,1,0,0,0,1053,1056,1,0,0,0,1054,1052,1,0,0,0,1054, + 1055,1,0,0,0,1055,99,1,0,0,0,1056,1054,1,0,0,0,1057,1058,5,36,0, + 0,1058,1059,5,78,0,0,1059,1060,3,102,51,0,1060,1061,5,79,0,0,1061, + 1062,3,90,45,0,1062,1078,1,0,0,0,1063,1064,5,36,0,0,1064,1065,5, + 78,0,0,1065,1066,3,102,51,0,1066,1067,5,79,0,0,1067,1068,3,90,45, + 0,1068,1069,5,25,0,0,1069,1070,3,90,45,0,1070,1078,1,0,0,0,1071, + 1072,5,60,0,0,1072,1073,5,78,0,0,1073,1074,3,102,51,0,1074,1075, + 5,79,0,0,1075,1076,3,90,45,0,1076,1078,1,0,0,0,1077,1057,1,0,0,0, + 1077,1063,1,0,0,0,1077,1071,1,0,0,0,1078,101,1,0,0,0,1079,1096,3, + 86,43,0,1080,1082,3,206,103,0,1081,1080,1,0,0,0,1081,1082,1,0,0, + 0,1082,1083,1,0,0,0,1083,1084,3,134,67,0,1084,1085,3,232,116,0,1085, + 1086,5,94,0,0,1086,1087,3,278,139,0,1087,1096,1,0,0,0,1088,1090, + 3,206,103,0,1089,1088,1,0,0,0,1089,1090,1,0,0,0,1090,1091,1,0,0, + 0,1091,1092,3,134,67,0,1092,1093,3,232,116,0,1093,1094,3,282,141, + 0,1094,1096,1,0,0,0,1095,1079,1,0,0,0,1095,1081,1,0,0,0,1095,1089, + 1,0,0,0,1096,103,1,0,0,0,1097,1098,5,77,0,0,1098,1099,5,78,0,0,1099, + 1100,3,102,51,0,1100,1101,5,79,0,0,1101,1102,3,90,45,0,1102,1133, + 1,0,0,0,1103,1104,5,22,0,0,1104,1105,3,90,45,0,1105,1106,5,77,0, + 0,1106,1107,5,78,0,0,1107,1108,3,86,43,0,1108,1109,5,79,0,0,1109, + 1110,5,121,0,0,1110,1133,1,0,0,0,1111,1112,5,33,0,0,1112,1113,5, + 78,0,0,1113,1115,3,106,53,0,1114,1116,3,102,51,0,1115,1114,1,0,0, + 0,1115,1116,1,0,0,0,1116,1117,1,0,0,0,1117,1119,5,121,0,0,1118,1120, + 3,86,43,0,1119,1118,1,0,0,0,1119,1120,1,0,0,0,1120,1121,1,0,0,0, + 1121,1122,5,79,0,0,1122,1123,3,90,45,0,1123,1133,1,0,0,0,1124,1125, + 5,33,0,0,1125,1126,5,78,0,0,1126,1127,3,108,54,0,1127,1128,5,119, + 0,0,1128,1129,3,110,55,0,1129,1130,5,79,0,0,1130,1131,3,90,45,0, + 1131,1133,1,0,0,0,1132,1097,1,0,0,0,1132,1103,1,0,0,0,1132,1111, + 1,0,0,0,1132,1124,1,0,0,0,1133,105,1,0,0,0,1134,1137,3,94,47,0,1135, + 1137,3,124,62,0,1136,1134,1,0,0,0,1136,1135,1,0,0,0,1137,107,1,0, + 0,0,1138,1140,3,206,103,0,1139,1138,1,0,0,0,1139,1140,1,0,0,0,1140, + 1141,1,0,0,0,1141,1142,3,134,67,0,1142,1143,3,232,116,0,1143,109, + 1,0,0,0,1144,1147,3,86,43,0,1145,1147,3,282,141,0,1146,1144,1,0, + 0,0,1146,1145,1,0,0,0,1147,111,1,0,0,0,1148,1149,5,8,0,0,1149,1165, + 5,121,0,0,1150,1151,5,18,0,0,1151,1165,5,121,0,0,1152,1154,5,52, + 0,0,1153,1155,3,86,43,0,1154,1153,1,0,0,0,1154,1155,1,0,0,0,1155, + 1156,1,0,0,0,1156,1165,5,121,0,0,1157,1158,5,52,0,0,1158,1159,3, + 282,141,0,1159,1160,5,121,0,0,1160,1165,1,0,0,0,1161,1162,5,35,0, + 0,1162,1163,5,125,0,0,1163,1165,5,121,0,0,1164,1148,1,0,0,0,1164, + 1150,1,0,0,0,1164,1152,1,0,0,0,1164,1157,1,0,0,0,1164,1161,1,0,0, + 0,1165,113,1,0,0,0,1166,1167,3,120,60,0,1167,115,1,0,0,0,1168,1169, + 6,58,-1,0,1169,1170,3,118,59,0,1170,1175,1,0,0,0,1171,1172,10,1, + 0,0,1172,1174,3,118,59,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,117,1,0,0,0,1177,1175,1,0,0, + 0,1178,1188,3,120,60,0,1179,1188,3,270,135,0,1180,1188,3,340,170, + 0,1181,1188,3,360,180,0,1182,1188,3,362,181,0,1183,1188,3,204,102, + 0,1184,1188,3,180,90,0,1185,1188,3,128,64,0,1186,1188,3,130,65,0, + 1187,1178,1,0,0,0,1187,1179,1,0,0,0,1187,1180,1,0,0,0,1187,1181, + 1,0,0,0,1187,1182,1,0,0,0,1187,1183,1,0,0,0,1187,1184,1,0,0,0,1187, + 1185,1,0,0,0,1187,1186,1,0,0,0,1188,119,1,0,0,0,1189,1198,3,124, + 62,0,1190,1198,3,202,101,0,1191,1198,3,194,97,0,1192,1198,3,198, + 99,0,1193,1198,3,200,100,0,1194,1198,3,126,63,0,1195,1198,3,122, + 61,0,1196,1198,3,164,82,0,1197,1189,1,0,0,0,1197,1190,1,0,0,0,1197, + 1191,1,0,0,0,1197,1192,1,0,0,0,1197,1193,1,0,0,0,1197,1194,1,0,0, + 0,1197,1195,1,0,0,0,1197,1196,1,0,0,0,1198,121,1,0,0,0,1199,1200, + 5,72,0,0,1200,1202,5,125,0,0,1201,1203,3,206,103,0,1202,1201,1,0, + 0,0,1202,1203,1,0,0,0,1203,1204,1,0,0,0,1204,1205,5,94,0,0,1205, + 1206,3,252,126,0,1206,1207,5,121,0,0,1207,123,1,0,0,0,1208,1210, + 3,134,67,0,1209,1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0, + 1211,1213,3,228,114,0,1212,1211,1,0,0,0,1212,1213,1,0,0,0,1213,1214, + 1,0,0,0,1214,1223,5,121,0,0,1215,1217,3,206,103,0,1216,1218,3,134, + 67,0,1217,1216,1,0,0,0,1217,1218,1,0,0,0,1218,1219,1,0,0,0,1219, + 1220,3,228,114,0,1220,1221,5,121,0,0,1221,1223,1,0,0,0,1222,1209, + 1,0,0,0,1222,1215,1,0,0,0,1223,125,1,0,0,0,1224,1225,5,57,0,0,1225, + 1226,5,78,0,0,1226,1227,3,88,44,0,1227,1228,5,115,0,0,1228,1229, + 5,134,0,0,1229,1230,5,79,0,0,1230,1231,5,121,0,0,1231,127,1,0,0, + 0,1232,1233,5,121,0,0,1233,129,1,0,0,0,1234,1235,3,206,103,0,1235, + 1236,5,121,0,0,1236,131,1,0,0,0,1237,1244,3,136,68,0,1238,1244,3, + 142,71,0,1239,1244,3,138,69,0,1240,1244,5,34,0,0,1241,1244,5,67, + 0,0,1242,1244,5,16,0,0,1243,1237,1,0,0,0,1243,1238,1,0,0,0,1243, + 1239,1,0,0,0,1243,1240,1,0,0,0,1243,1241,1,0,0,0,1243,1242,1,0,0, + 0,1244,133,1,0,0,0,1245,1247,3,132,66,0,1246,1248,3,206,103,0,1247, + 1246,1,0,0,0,1247,1248,1,0,0,0,1248,1253,1,0,0,0,1249,1250,3,132, + 66,0,1250,1251,3,134,67,0,1251,1253,1,0,0,0,1252,1245,1,0,0,0,1252, + 1249,1,0,0,0,1253,135,1,0,0,0,1254,1255,7,2,0,0,1255,137,1,0,0,0, + 1256,1257,7,3,0,0,1257,139,1,0,0,0,1258,1259,5,125,0,0,1259,141, + 1,0,0,0,1260,1264,3,144,72,0,1261,1264,3,286,143,0,1262,1264,3,160, + 80,0,1263,1260,1,0,0,0,1263,1261,1,0,0,0,1263,1262,1,0,0,0,1264, + 143,1,0,0,0,1265,1270,3,150,75,0,1266,1270,3,156,78,0,1267,1270, + 3,358,179,0,1268,1270,3,246,123,0,1269,1265,1,0,0,0,1269,1266,1, + 0,0,0,1269,1267,1,0,0,0,1269,1268,1,0,0,0,1270,145,1,0,0,0,1271, + 1273,3,142,71,0,1272,1274,3,206,103,0,1273,1272,1,0,0,0,1273,1274, + 1,0,0,0,1274,1279,1,0,0,0,1275,1276,3,142,71,0,1276,1277,3,146,73, + 0,1277,1279,1,0,0,0,1278,1271,1,0,0,0,1278,1275,1,0,0,0,1279,147, + 1,0,0,0,1280,1282,3,144,72,0,1281,1283,3,206,103,0,1282,1281,1,0, + 0,0,1282,1283,1,0,0,0,1283,1288,1,0,0,0,1284,1285,3,144,72,0,1285, + 1286,3,148,74,0,1286,1288,1,0,0,0,1287,1280,1,0,0,0,1287,1284,1, + 0,0,0,1288,149,1,0,0,0,1289,1291,3,10,5,0,1290,1289,1,0,0,0,1290, + 1291,1,0,0,0,1291,1292,1,0,0,0,1292,1313,3,152,76,0,1293,1294,3, + 10,5,0,1294,1295,5,61,0,0,1295,1296,3,348,174,0,1296,1313,1,0,0, + 0,1297,1313,5,11,0,0,1298,1313,5,12,0,0,1299,1313,5,13,0,0,1300, + 1313,5,76,0,0,1301,1313,5,7,0,0,1302,1313,5,53,0,0,1303,1313,5,38, + 0,0,1304,1313,5,39,0,0,1305,1313,5,54,0,0,1306,1313,5,71,0,0,1307, + 1313,5,32,0,0,1308,1313,5,23,0,0,1309,1313,5,74,0,0,1310,1313,5, + 6,0,0,1311,1313,3,154,77,0,1312,1290,1,0,0,0,1312,1293,1,0,0,0,1312, + 1297,1,0,0,0,1312,1298,1,0,0,0,1312,1299,1,0,0,0,1312,1300,1,0,0, + 0,1312,1301,1,0,0,0,1312,1302,1,0,0,0,1312,1303,1,0,0,0,1312,1304, + 1,0,0,0,1312,1305,1,0,0,0,1312,1306,1,0,0,0,1312,1307,1,0,0,0,1312, + 1308,1,0,0,0,1312,1309,1,0,0,0,1312,1310,1,0,0,0,1312,1311,1,0,0, + 0,1313,151,1,0,0,0,1314,1319,3,284,142,0,1315,1319,3,158,79,0,1316, + 1319,3,140,70,0,1317,1319,3,348,174,0,1318,1314,1,0,0,0,1318,1315, + 1,0,0,0,1318,1316,1,0,0,0,1318,1317,1,0,0,0,1319,153,1,0,0,0,1320, + 1321,5,19,0,0,1321,1322,5,78,0,0,1322,1323,3,86,43,0,1323,1324,5, + 79,0,0,1324,1330,1,0,0,0,1325,1326,5,19,0,0,1326,1327,5,78,0,0,1327, + 1328,5,6,0,0,1328,1330,5,79,0,0,1329,1320,1,0,0,0,1329,1325,1,0, + 0,0,1330,155,1,0,0,0,1331,1333,3,294,147,0,1332,1334,3,206,103,0, + 1333,1332,1,0,0,0,1333,1334,1,0,0,0,1334,1336,1,0,0,0,1335,1337, + 3,10,5,0,1336,1335,1,0,0,0,1336,1337,1,0,0,0,1337,1338,1,0,0,0,1338, + 1339,5,125,0,0,1339,1356,1,0,0,0,1340,1341,3,294,147,0,1341,1342, + 3,348,174,0,1342,1356,1,0,0,0,1343,1344,3,294,147,0,1344,1346,3, + 10,5,0,1345,1347,5,61,0,0,1346,1345,1,0,0,0,1346,1347,1,0,0,0,1347, + 1348,1,0,0,0,1348,1349,3,348,174,0,1349,1356,1,0,0,0,1350,1352,5, + 26,0,0,1351,1353,3,10,5,0,1352,1351,1,0,0,0,1352,1353,1,0,0,0,1353, + 1354,1,0,0,0,1354,1356,5,125,0,0,1355,1331,1,0,0,0,1355,1340,1,0, + 0,0,1355,1343,1,0,0,0,1355,1350,1,0,0,0,1356,157,1,0,0,0,1357,1358, + 5,125,0,0,1358,159,1,0,0,0,1359,1360,3,162,81,0,1360,1362,5,82,0, + 0,1361,1363,3,170,85,0,1362,1361,1,0,0,0,1362,1363,1,0,0,0,1363, + 1364,1,0,0,0,1364,1365,5,83,0,0,1365,1373,1,0,0,0,1366,1367,3,162, + 81,0,1367,1368,5,82,0,0,1368,1369,3,170,85,0,1369,1370,5,115,0,0, + 1370,1371,5,83,0,0,1371,1373,1,0,0,0,1372,1359,1,0,0,0,1372,1366, + 1,0,0,0,1373,161,1,0,0,0,1374,1376,3,166,83,0,1375,1377,3,206,103, + 0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377,1379,1,0,0,0,1378,1380, + 5,125,0,0,1379,1378,1,0,0,0,1379,1380,1,0,0,0,1380,1382,1,0,0,0, + 1381,1383,3,168,84,0,1382,1381,1,0,0,0,1382,1383,1,0,0,0,1383,1394, + 1,0,0,0,1384,1386,3,166,83,0,1385,1387,3,206,103,0,1386,1385,1,0, + 0,0,1386,1387,1,0,0,0,1387,1388,1,0,0,0,1388,1389,3,10,5,0,1389, + 1391,5,125,0,0,1390,1392,3,168,84,0,1391,1390,1,0,0,0,1391,1392, + 1,0,0,0,1392,1394,1,0,0,0,1393,1374,1,0,0,0,1393,1384,1,0,0,0,1394, + 163,1,0,0,0,1395,1397,3,166,83,0,1396,1398,3,206,103,0,1397,1396, + 1,0,0,0,1397,1398,1,0,0,0,1398,1399,1,0,0,0,1399,1401,5,125,0,0, + 1400,1402,3,168,84,0,1401,1400,1,0,0,0,1401,1402,1,0,0,0,1402,1403, + 1,0,0,0,1403,1404,5,121,0,0,1404,165,1,0,0,0,1405,1411,5,26,0,0, + 1406,1407,5,26,0,0,1407,1411,5,14,0,0,1408,1409,5,26,0,0,1409,1411, + 5,59,0,0,1410,1405,1,0,0,0,1410,1406,1,0,0,0,1410,1408,1,0,0,0,1411, + 167,1,0,0,0,1412,1413,5,119,0,0,1413,1414,3,146,73,0,1414,169,1, + 0,0,0,1415,1416,6,85,-1,0,1416,1417,3,172,86,0,1417,1423,1,0,0,0, + 1418,1419,10,1,0,0,1419,1420,5,115,0,0,1420,1422,3,172,86,0,1421, + 1418,1,0,0,0,1422,1425,1,0,0,0,1423,1421,1,0,0,0,1423,1424,1,0,0, + 0,1424,171,1,0,0,0,1425,1423,1,0,0,0,1426,1432,3,174,87,0,1427,1428, + 3,174,87,0,1428,1429,5,94,0,0,1429,1430,3,88,44,0,1430,1432,1,0, + 0,0,1431,1426,1,0,0,0,1431,1427,1,0,0,0,1432,173,1,0,0,0,1433,1434, + 5,125,0,0,1434,175,1,0,0,0,1435,1438,3,178,89,0,1436,1438,3,192, + 96,0,1437,1435,1,0,0,0,1437,1436,1,0,0,0,1438,177,1,0,0,0,1439,1440, + 5,125,0,0,1440,179,1,0,0,0,1441,1444,3,182,91,0,1442,1444,3,188, + 94,0,1443,1441,1,0,0,0,1443,1442,1,0,0,0,1444,181,1,0,0,0,1445,1448, + 3,184,92,0,1446,1448,3,186,93,0,1447,1445,1,0,0,0,1447,1446,1,0, + 0,0,1448,183,1,0,0,0,1449,1451,5,37,0,0,1450,1449,1,0,0,0,1450,1451, + 1,0,0,0,1451,1452,1,0,0,0,1452,1453,5,41,0,0,1453,1454,5,125,0,0, + 1454,1455,5,82,0,0,1455,1456,3,190,95,0,1456,1457,5,83,0,0,1457, + 185,1,0,0,0,1458,1460,5,37,0,0,1459,1458,1,0,0,0,1459,1460,1,0,0, + 0,1460,1461,1,0,0,0,1461,1462,5,41,0,0,1462,1463,3,178,89,0,1463, + 1464,5,82,0,0,1464,1465,3,190,95,0,1465,1466,5,83,0,0,1466,187,1, + 0,0,0,1467,1469,5,37,0,0,1468,1467,1,0,0,0,1468,1469,1,0,0,0,1469, + 1470,1,0,0,0,1470,1471,5,41,0,0,1471,1472,5,82,0,0,1472,1473,3,190, + 95,0,1473,1474,5,83,0,0,1474,189,1,0,0,0,1475,1477,3,116,58,0,1476, + 1475,1,0,0,0,1476,1477,1,0,0,0,1477,191,1,0,0,0,1478,1479,5,125, + 0,0,1479,193,1,0,0,0,1480,1481,5,41,0,0,1481,1482,5,125,0,0,1482, + 1483,5,94,0,0,1483,1484,3,196,98,0,1484,1485,5,121,0,0,1485,195, + 1,0,0,0,1486,1488,3,10,5,0,1487,1486,1,0,0,0,1487,1488,1,0,0,0,1488, + 1489,1,0,0,0,1489,1490,3,176,88,0,1490,197,1,0,0,0,1491,1493,5,72, + 0,0,1492,1494,5,69,0,0,1493,1492,1,0,0,0,1493,1494,1,0,0,0,1494, + 1495,1,0,0,0,1495,1496,3,10,5,0,1496,1497,3,6,3,0,1497,1498,5,121, + 0,0,1498,1505,1,0,0,0,1499,1500,5,72,0,0,1500,1501,5,120,0,0,1501, + 1502,3,6,3,0,1502,1503,5,121,0,0,1503,1505,1,0,0,0,1504,1491,1,0, + 0,0,1504,1499,1,0,0,0,1505,199,1,0,0,0,1506,1508,3,206,103,0,1507, + 1506,1,0,0,0,1507,1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,5,72, + 0,0,1510,1512,5,41,0,0,1511,1513,3,10,5,0,1512,1511,1,0,0,0,1512, + 1513,1,0,0,0,1513,1514,1,0,0,0,1514,1515,3,176,88,0,1515,1516,5, + 121,0,0,1516,201,1,0,0,0,1517,1518,5,5,0,0,1518,1519,5,78,0,0,1519, + 1520,5,134,0,0,1520,1521,5,79,0,0,1521,1522,5,121,0,0,1522,203,1, + 0,0,0,1523,1524,5,29,0,0,1524,1525,5,134,0,0,1525,1527,5,82,0,0, + 1526,1528,3,116,58,0,1527,1526,1,0,0,0,1527,1528,1,0,0,0,1528,1529, + 1,0,0,0,1529,1534,5,83,0,0,1530,1531,5,29,0,0,1531,1532,5,134,0, + 0,1532,1534,3,118,59,0,1533,1523,1,0,0,0,1533,1530,1,0,0,0,1534, + 205,1,0,0,0,1535,1536,6,103,-1,0,1536,1537,3,208,104,0,1537,1542, + 1,0,0,0,1538,1539,10,1,0,0,1539,1541,3,208,104,0,1540,1538,1,0,0, + 0,1541,1544,1,0,0,0,1542,1540,1,0,0,0,1542,1543,1,0,0,0,1543,207, + 1,0,0,0,1544,1542,1,0,0,0,1545,1546,5,80,0,0,1546,1547,5,80,0,0, + 1547,1548,3,212,106,0,1548,1549,5,81,0,0,1549,1550,5,81,0,0,1550, + 1553,1,0,0,0,1551,1553,3,210,105,0,1552,1545,1,0,0,0,1552,1551,1, + 0,0,0,1553,209,1,0,0,0,1554,1555,5,3,0,0,1555,1556,5,78,0,0,1556, + 1558,3,252,126,0,1557,1559,5,124,0,0,1558,1557,1,0,0,0,1558,1559, + 1,0,0,0,1559,1560,1,0,0,0,1560,1561,5,79,0,0,1561,1571,1,0,0,0,1562, + 1563,5,3,0,0,1563,1564,5,78,0,0,1564,1566,3,88,44,0,1565,1567,5, + 124,0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567,1568,1,0,0,0,1568, + 1569,5,79,0,0,1569,1571,1,0,0,0,1570,1554,1,0,0,0,1570,1562,1,0, + 0,0,1571,211,1,0,0,0,1572,1574,6,106,-1,0,1573,1575,3,214,107,0, + 1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1580,1,0,0,0,1576,1577, + 3,214,107,0,1577,1578,5,124,0,0,1578,1580,1,0,0,0,1579,1572,1,0, + 0,0,1579,1576,1,0,0,0,1580,1593,1,0,0,0,1581,1582,10,3,0,0,1582, + 1584,5,115,0,0,1583,1585,3,214,107,0,1584,1583,1,0,0,0,1584,1585, + 1,0,0,0,1585,1592,1,0,0,0,1586,1587,10,1,0,0,1587,1588,5,115,0,0, + 1588,1589,3,214,107,0,1589,1590,5,124,0,0,1590,1592,1,0,0,0,1591, + 1581,1,0,0,0,1591,1586,1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0, + 0,1593,1594,1,0,0,0,1594,213,1,0,0,0,1595,1593,1,0,0,0,1596,1598, + 3,216,108,0,1597,1599,3,222,111,0,1598,1597,1,0,0,0,1598,1599,1, + 0,0,0,1599,215,1,0,0,0,1600,1603,5,125,0,0,1601,1603,3,218,109,0, + 1602,1600,1,0,0,0,1602,1601,1,0,0,0,1603,217,1,0,0,0,1604,1605,3, + 220,110,0,1605,1606,5,120,0,0,1606,1607,5,125,0,0,1607,219,1,0,0, + 0,1608,1609,5,125,0,0,1609,221,1,0,0,0,1610,1611,5,78,0,0,1611,1612, + 3,224,112,0,1612,1613,5,79,0,0,1613,223,1,0,0,0,1614,1616,6,112, + -1,0,1615,1617,3,226,113,0,1616,1615,1,0,0,0,1616,1617,1,0,0,0,1617, + 1622,1,0,0,0,1618,1619,10,1,0,0,1619,1621,3,226,113,0,1620,1618, + 1,0,0,0,1621,1624,1,0,0,0,1622,1620,1,0,0,0,1622,1623,1,0,0,0,1623, + 225,1,0,0,0,1624,1622,1,0,0,0,1625,1626,5,78,0,0,1626,1627,3,224, + 112,0,1627,1628,5,79,0,0,1628,1638,1,0,0,0,1629,1630,5,80,0,0,1630, + 1631,3,224,112,0,1631,1632,5,81,0,0,1632,1638,1,0,0,0,1633,1634, + 5,82,0,0,1634,1635,3,224,112,0,1635,1636,5,83,0,0,1636,1638,1,0, + 0,0,1637,1625,1,0,0,0,1637,1629,1,0,0,0,1637,1633,1,0,0,0,1638,227, + 1,0,0,0,1639,1640,6,114,-1,0,1640,1641,3,230,115,0,1641,1647,1,0, + 0,0,1642,1643,10,1,0,0,1643,1644,5,115,0,0,1644,1646,3,230,115,0, + 1645,1642,1,0,0,0,1646,1649,1,0,0,0,1647,1645,1,0,0,0,1647,1648, + 1,0,0,0,1648,229,1,0,0,0,1649,1647,1,0,0,0,1650,1652,3,232,116,0, + 1651,1653,3,274,137,0,1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653,231, + 1,0,0,0,1654,1660,3,234,117,0,1655,1656,3,236,118,0,1656,1657,3, + 238,119,0,1657,1658,3,240,120,0,1658,1660,1,0,0,0,1659,1654,1,0, + 0,0,1659,1655,1,0,0,0,1660,233,1,0,0,0,1661,1666,3,236,118,0,1662, + 1663,3,242,121,0,1663,1664,3,234,117,0,1664,1666,1,0,0,0,1665,1661, + 1,0,0,0,1665,1662,1,0,0,0,1666,235,1,0,0,0,1667,1668,6,118,-1,0, + 1668,1670,3,250,125,0,1669,1671,3,206,103,0,1670,1669,1,0,0,0,1670, + 1671,1,0,0,0,1671,1677,1,0,0,0,1672,1673,5,78,0,0,1673,1674,3,234, + 117,0,1674,1675,5,79,0,0,1675,1677,1,0,0,0,1676,1667,1,0,0,0,1676, + 1672,1,0,0,0,1677,1691,1,0,0,0,1678,1679,10,3,0,0,1679,1690,3,238, + 119,0,1680,1681,10,2,0,0,1681,1683,5,80,0,0,1682,1684,3,88,44,0, + 1683,1682,1,0,0,0,1683,1684,1,0,0,0,1684,1685,1,0,0,0,1685,1687, + 5,81,0,0,1686,1688,3,206,103,0,1687,1686,1,0,0,0,1687,1688,1,0,0, + 0,1688,1690,1,0,0,0,1689,1678,1,0,0,0,1689,1680,1,0,0,0,1690,1693, + 1,0,0,0,1691,1689,1,0,0,0,1691,1692,1,0,0,0,1692,237,1,0,0,0,1693, + 1691,1,0,0,0,1694,1695,5,78,0,0,1695,1696,3,264,132,0,1696,1698, + 5,79,0,0,1697,1699,3,244,122,0,1698,1697,1,0,0,0,1698,1699,1,0,0, + 0,1699,1701,1,0,0,0,1700,1702,3,248,124,0,1701,1700,1,0,0,0,1701, + 1702,1,0,0,0,1702,1704,1,0,0,0,1703,1705,3,376,188,0,1704,1703,1, + 0,0,0,1704,1705,1,0,0,0,1705,1707,1,0,0,0,1706,1708,3,206,103,0, + 1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,239,1,0,0,0,1709,1710,5, + 117,0,0,1710,1712,3,148,74,0,1711,1713,3,254,127,0,1712,1711,1,0, + 0,0,1712,1713,1,0,0,0,1713,241,1,0,0,0,1714,1716,5,86,0,0,1715,1717, + 3,206,103,0,1716,1715,1,0,0,0,1716,1717,1,0,0,0,1717,1719,1,0,0, + 0,1718,1720,3,244,122,0,1719,1718,1,0,0,0,1719,1720,1,0,0,0,1720, + 1738,1,0,0,0,1721,1723,5,90,0,0,1722,1724,3,206,103,0,1723,1722, + 1,0,0,0,1723,1724,1,0,0,0,1724,1738,1,0,0,0,1725,1727,5,111,0,0, + 1726,1728,3,206,103,0,1727,1726,1,0,0,0,1727,1728,1,0,0,0,1728,1738, + 1,0,0,0,1729,1730,3,10,5,0,1730,1732,5,86,0,0,1731,1733,3,206,103, + 0,1732,1731,1,0,0,0,1732,1733,1,0,0,0,1733,1735,1,0,0,0,1734,1736, + 3,244,122,0,1735,1734,1,0,0,0,1735,1736,1,0,0,0,1736,1738,1,0,0, + 0,1737,1714,1,0,0,0,1737,1721,1,0,0,0,1737,1725,1,0,0,0,1737,1729, + 1,0,0,0,1738,243,1,0,0,0,1739,1741,3,246,123,0,1740,1742,3,244,122, + 0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,245,1,0,0,0,1743,1744, + 7,4,0,0,1744,247,1,0,0,0,1745,1746,7,5,0,0,1746,249,1,0,0,0,1747, + 1749,5,124,0,0,1748,1747,1,0,0,0,1748,1749,1,0,0,0,1749,1750,1,0, + 0,0,1750,1751,3,4,2,0,1751,251,1,0,0,0,1752,1754,3,146,73,0,1753, + 1755,3,254,127,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,253,1, + 0,0,0,1756,1765,3,256,128,0,1757,1759,3,258,129,0,1758,1757,1,0, + 0,0,1758,1759,1,0,0,0,1759,1760,1,0,0,0,1760,1761,3,238,119,0,1761, + 1762,3,240,120,0,1762,1765,1,0,0,0,1763,1765,3,260,130,0,1764,1756, + 1,0,0,0,1764,1758,1,0,0,0,1764,1763,1,0,0,0,1765,255,1,0,0,0,1766, + 1772,3,258,129,0,1767,1769,3,242,121,0,1768,1770,3,256,128,0,1769, + 1768,1,0,0,0,1769,1770,1,0,0,0,1770,1772,1,0,0,0,1771,1766,1,0,0, + 0,1771,1767,1,0,0,0,1772,257,1,0,0,0,1773,1774,6,129,-1,0,1774,1788, + 3,238,119,0,1775,1777,5,80,0,0,1776,1778,3,88,44,0,1777,1776,1,0, + 0,0,1777,1778,1,0,0,0,1778,1779,1,0,0,0,1779,1781,5,81,0,0,1780, + 1782,3,206,103,0,1781,1780,1,0,0,0,1781,1782,1,0,0,0,1782,1788,1, + 0,0,0,1783,1784,5,78,0,0,1784,1785,3,256,128,0,1785,1786,5,79,0, + 0,1786,1788,1,0,0,0,1787,1773,1,0,0,0,1787,1775,1,0,0,0,1787,1783, + 1,0,0,0,1788,1802,1,0,0,0,1789,1790,10,5,0,0,1790,1801,3,238,119, + 0,1791,1792,10,3,0,0,1792,1794,5,80,0,0,1793,1795,3,88,44,0,1794, + 1793,1,0,0,0,1794,1795,1,0,0,0,1795,1796,1,0,0,0,1796,1798,5,81, + 0,0,1797,1799,3,206,103,0,1798,1797,1,0,0,0,1798,1799,1,0,0,0,1799, + 1801,1,0,0,0,1800,1789,1,0,0,0,1800,1791,1,0,0,0,1801,1804,1,0,0, + 0,1802,1800,1,0,0,0,1802,1803,1,0,0,0,1803,259,1,0,0,0,1804,1802, + 1,0,0,0,1805,1810,3,262,131,0,1806,1807,3,242,121,0,1807,1808,3, + 260,130,0,1808,1810,1,0,0,0,1809,1805,1,0,0,0,1809,1806,1,0,0,0, + 1810,261,1,0,0,0,1811,1812,6,131,-1,0,1812,1813,5,124,0,0,1813,1827, + 1,0,0,0,1814,1815,10,3,0,0,1815,1826,3,238,119,0,1816,1817,10,2, + 0,0,1817,1819,5,80,0,0,1818,1820,3,88,44,0,1819,1818,1,0,0,0,1819, + 1820,1,0,0,0,1820,1821,1,0,0,0,1821,1823,5,81,0,0,1822,1824,3,206, + 103,0,1823,1822,1,0,0,0,1823,1824,1,0,0,0,1824,1826,1,0,0,0,1825, + 1814,1,0,0,0,1825,1816,1,0,0,0,1826,1829,1,0,0,0,1827,1825,1,0,0, + 0,1827,1828,1,0,0,0,1828,263,1,0,0,0,1829,1827,1,0,0,0,1830,1832, + 3,266,133,0,1831,1830,1,0,0,0,1831,1832,1,0,0,0,1832,1834,1,0,0, + 0,1833,1835,5,124,0,0,1834,1833,1,0,0,0,1834,1835,1,0,0,0,1835,1841, + 1,0,0,0,1836,1837,3,266,133,0,1837,1838,5,115,0,0,1838,1839,5,124, + 0,0,1839,1841,1,0,0,0,1840,1831,1,0,0,0,1840,1836,1,0,0,0,1841,265, + 1,0,0,0,1842,1843,6,133,-1,0,1843,1844,3,268,134,0,1844,1850,1,0, + 0,0,1845,1846,10,1,0,0,1846,1847,5,115,0,0,1847,1849,3,268,134,0, + 1848,1845,1,0,0,0,1849,1852,1,0,0,0,1850,1848,1,0,0,0,1850,1851, + 1,0,0,0,1851,267,1,0,0,0,1852,1850,1,0,0,0,1853,1855,3,206,103,0, + 1854,1853,1,0,0,0,1854,1855,1,0,0,0,1855,1856,1,0,0,0,1856,1857, + 3,134,67,0,1857,1858,3,232,116,0,1858,1885,1,0,0,0,1859,1861,3,206, + 103,0,1860,1859,1,0,0,0,1860,1861,1,0,0,0,1861,1862,1,0,0,0,1862, + 1863,3,134,67,0,1863,1864,3,232,116,0,1864,1865,5,94,0,0,1865,1866, + 3,278,139,0,1866,1885,1,0,0,0,1867,1869,3,206,103,0,1868,1867,1, + 0,0,0,1868,1869,1,0,0,0,1869,1870,1,0,0,0,1870,1872,3,134,67,0,1871, + 1873,3,254,127,0,1872,1871,1,0,0,0,1872,1873,1,0,0,0,1873,1885,1, + 0,0,0,1874,1876,3,206,103,0,1875,1874,1,0,0,0,1875,1876,1,0,0,0, + 1876,1877,1,0,0,0,1877,1879,3,134,67,0,1878,1880,3,254,127,0,1879, + 1878,1,0,0,0,1879,1880,1,0,0,0,1880,1881,1,0,0,0,1881,1882,5,94, + 0,0,1882,1883,3,278,139,0,1883,1885,1,0,0,0,1884,1854,1,0,0,0,1884, + 1860,1,0,0,0,1884,1868,1,0,0,0,1884,1875,1,0,0,0,1885,269,1,0,0, + 0,1886,1888,3,206,103,0,1887,1886,1,0,0,0,1887,1888,1,0,0,0,1888, + 1890,1,0,0,0,1889,1891,3,134,67,0,1890,1889,1,0,0,0,1890,1891,1, + 0,0,0,1891,1892,1,0,0,0,1892,1894,3,232,116,0,1893,1895,3,304,152, + 0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1,0,0,0,1896,1897, + 3,272,136,0,1897,271,1,0,0,0,1898,1900,3,328,164,0,1899,1898,1,0, + 0,0,1899,1900,1,0,0,0,1900,1901,1,0,0,0,1901,1910,3,96,48,0,1902, + 1910,3,366,183,0,1903,1904,5,94,0,0,1904,1905,5,20,0,0,1905,1910, + 5,121,0,0,1906,1907,5,94,0,0,1907,1908,5,21,0,0,1908,1910,5,121, + 0,0,1909,1899,1,0,0,0,1909,1902,1,0,0,0,1909,1903,1,0,0,0,1909,1906, + 1,0,0,0,1910,273,1,0,0,0,1911,1917,3,276,138,0,1912,1913,5,78,0, + 0,1913,1914,3,32,16,0,1914,1915,5,79,0,0,1915,1917,1,0,0,0,1916, + 1911,1,0,0,0,1916,1912,1,0,0,0,1917,275,1,0,0,0,1918,1919,5,94,0, + 0,1919,1922,3,278,139,0,1920,1922,3,282,141,0,1921,1918,1,0,0,0, + 1921,1920,1,0,0,0,1922,277,1,0,0,0,1923,1926,3,82,41,0,1924,1926, + 3,282,141,0,1925,1923,1,0,0,0,1925,1924,1,0,0,0,1926,279,1,0,0,0, + 1927,1928,6,140,-1,0,1928,1930,3,278,139,0,1929,1931,5,124,0,0,1930, + 1929,1,0,0,0,1930,1931,1,0,0,0,1931,1940,1,0,0,0,1932,1933,10,1, + 0,0,1933,1934,5,115,0,0,1934,1936,3,278,139,0,1935,1937,5,124,0, + 0,1936,1935,1,0,0,0,1936,1937,1,0,0,0,1937,1939,1,0,0,0,1938,1932, + 1,0,0,0,1939,1942,1,0,0,0,1940,1938,1,0,0,0,1940,1941,1,0,0,0,1941, + 281,1,0,0,0,1942,1940,1,0,0,0,1943,1944,5,82,0,0,1944,1946,3,280, + 140,0,1945,1947,5,115,0,0,1946,1945,1,0,0,0,1946,1947,1,0,0,0,1947, + 1948,1,0,0,0,1948,1949,5,83,0,0,1949,1953,1,0,0,0,1950,1951,5,82, + 0,0,1951,1953,5,83,0,0,1952,1943,1,0,0,0,1952,1950,1,0,0,0,1953, + 283,1,0,0,0,1954,1957,5,125,0,0,1955,1957,3,348,174,0,1956,1954, + 1,0,0,0,1956,1955,1,0,0,0,1957,285,1,0,0,0,1958,1959,3,288,144,0, + 1959,1961,5,82,0,0,1960,1962,3,296,148,0,1961,1960,1,0,0,0,1961, + 1962,1,0,0,0,1962,1963,1,0,0,0,1963,1964,5,83,0,0,1964,287,1,0,0, + 0,1965,1967,3,294,147,0,1966,1968,3,206,103,0,1967,1966,1,0,0,0, + 1967,1968,1,0,0,0,1968,1969,1,0,0,0,1969,1971,3,290,145,0,1970,1972, + 3,292,146,0,1971,1970,1,0,0,0,1971,1972,1,0,0,0,1972,1974,1,0,0, + 0,1973,1975,3,310,155,0,1974,1973,1,0,0,0,1974,1975,1,0,0,0,1975, + 1984,1,0,0,0,1976,1978,3,294,147,0,1977,1979,3,206,103,0,1978,1977, + 1,0,0,0,1978,1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,310,155, + 0,1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1965, + 1,0,0,0,1983,1976,1,0,0,0,1984,289,1,0,0,0,1985,1987,3,10,5,0,1986, + 1985,1,0,0,0,1986,1987,1,0,0,0,1987,1988,1,0,0,0,1988,1989,3,284, + 142,0,1989,291,1,0,0,0,1990,1991,5,31,0,0,1991,293,1,0,0,0,1992, + 1993,7,6,0,0,1993,295,1,0,0,0,1994,1996,3,298,149,0,1995,1997,3, + 296,148,0,1996,1995,1,0,0,0,1996,1997,1,0,0,0,1997,2004,1,0,0,0, + 1998,1999,3,320,160,0,1999,2001,5,119,0,0,2000,2002,3,296,148,0, + 2001,2000,1,0,0,0,2001,2002,1,0,0,0,2002,2004,1,0,0,0,2003,1994, + 1,0,0,0,2003,1998,1,0,0,0,2004,297,1,0,0,0,2005,2007,3,206,103,0, + 2006,2005,1,0,0,0,2006,2007,1,0,0,0,2007,2009,1,0,0,0,2008,2010, + 3,134,67,0,2009,2008,1,0,0,0,2009,2010,1,0,0,0,2010,2012,1,0,0,0, + 2011,2013,3,300,150,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0,2013,2014, + 1,0,0,0,2014,2022,5,121,0,0,2015,2022,3,270,135,0,2016,2022,3,198, + 99,0,2017,2022,3,126,63,0,2018,2022,3,340,170,0,2019,2022,3,122, + 61,0,2020,2022,3,128,64,0,2021,2006,1,0,0,0,2021,2015,1,0,0,0,2021, + 2016,1,0,0,0,2021,2017,1,0,0,0,2021,2018,1,0,0,0,2021,2019,1,0,0, + 0,2021,2020,1,0,0,0,2022,299,1,0,0,0,2023,2024,6,150,-1,0,2024,2025, + 3,302,151,0,2025,2031,1,0,0,0,2026,2027,10,1,0,0,2027,2028,5,115, + 0,0,2028,2030,3,302,151,0,2029,2026,1,0,0,0,2030,2033,1,0,0,0,2031, + 2029,1,0,0,0,2031,2032,1,0,0,0,2032,301,1,0,0,0,2033,2031,1,0,0, + 0,2034,2036,3,232,116,0,2035,2037,3,304,152,0,2036,2035,1,0,0,0, + 2036,2037,1,0,0,0,2037,2039,1,0,0,0,2038,2040,3,308,154,0,2039,2038, + 1,0,0,0,2039,2040,1,0,0,0,2040,2054,1,0,0,0,2041,2043,3,232,116, + 0,2042,2044,3,276,138,0,2043,2042,1,0,0,0,2043,2044,1,0,0,0,2044, + 2054,1,0,0,0,2045,2047,5,125,0,0,2046,2045,1,0,0,0,2046,2047,1,0, + 0,0,2047,2049,1,0,0,0,2048,2050,3,206,103,0,2049,2048,1,0,0,0,2049, + 2050,1,0,0,0,2050,2051,1,0,0,0,2051,2052,5,119,0,0,2052,2054,3,88, + 44,0,2053,2034,1,0,0,0,2053,2041,1,0,0,0,2053,2046,1,0,0,0,2054, + 303,1,0,0,0,2055,2056,6,152,-1,0,2056,2057,3,306,153,0,2057,2062, + 1,0,0,0,2058,2059,10,1,0,0,2059,2061,3,306,153,0,2060,2058,1,0,0, + 0,2061,2064,1,0,0,0,2062,2060,1,0,0,0,2062,2063,1,0,0,0,2063,305, + 1,0,0,0,2064,2062,1,0,0,0,2065,2066,7,7,0,0,2066,307,1,0,0,0,2067, + 2068,5,94,0,0,2068,2069,5,128,0,0,2069,2070,6,154,-1,0,2070,309, + 1,0,0,0,2071,2072,5,119,0,0,2072,2073,3,312,156,0,2073,311,1,0,0, + 0,2074,2075,6,156,-1,0,2075,2077,3,314,157,0,2076,2078,5,124,0,0, + 2077,2076,1,0,0,0,2077,2078,1,0,0,0,2078,2087,1,0,0,0,2079,2080, + 10,1,0,0,2080,2081,5,115,0,0,2081,2083,3,314,157,0,2082,2084,5,124, + 0,0,2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,2086,1,0,0,0,2085,2079, + 1,0,0,0,2086,2089,1,0,0,0,2087,2085,1,0,0,0,2087,2088,1,0,0,0,2088, + 313,1,0,0,0,2089,2087,1,0,0,0,2090,2092,3,206,103,0,2091,2090,1, + 0,0,0,2091,2092,1,0,0,0,2092,2093,1,0,0,0,2093,2112,3,318,159,0, + 2094,2096,3,206,103,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097, + 1,0,0,0,2097,2099,5,73,0,0,2098,2100,3,320,160,0,2099,2098,1,0,0, + 0,2099,2100,1,0,0,0,2100,2101,1,0,0,0,2101,2112,3,318,159,0,2102, + 2104,3,206,103,0,2103,2102,1,0,0,0,2103,2104,1,0,0,0,2104,2105,1, + 0,0,0,2105,2107,3,320,160,0,2106,2108,5,73,0,0,2107,2106,1,0,0,0, + 2107,2108,1,0,0,0,2108,2109,1,0,0,0,2109,2110,3,318,159,0,2110,2112, + 1,0,0,0,2111,2091,1,0,0,0,2111,2095,1,0,0,0,2111,2103,1,0,0,0,2112, + 315,1,0,0,0,2113,2115,3,10,5,0,2114,2113,1,0,0,0,2114,2115,1,0,0, + 0,2115,2116,1,0,0,0,2116,2119,3,284,142,0,2117,2119,3,154,77,0,2118, + 2114,1,0,0,0,2118,2117,1,0,0,0,2119,317,1,0,0,0,2120,2121,3,316, + 158,0,2121,319,1,0,0,0,2122,2123,7,8,0,0,2123,321,1,0,0,0,2124,2125, + 5,45,0,0,2125,2126,3,324,162,0,2126,323,1,0,0,0,2127,2129,3,146, + 73,0,2128,2130,3,326,163,0,2129,2128,1,0,0,0,2129,2130,1,0,0,0,2130, + 325,1,0,0,0,2131,2133,3,242,121,0,2132,2134,3,326,163,0,2133,2132, + 1,0,0,0,2133,2134,1,0,0,0,2134,327,1,0,0,0,2135,2136,5,119,0,0,2136, + 2137,3,330,165,0,2137,329,1,0,0,0,2138,2140,3,332,166,0,2139,2141, + 5,124,0,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141,2150,1,0,0,0, + 2142,2144,3,332,166,0,2143,2145,5,124,0,0,2144,2143,1,0,0,0,2144, + 2145,1,0,0,0,2145,2146,1,0,0,0,2146,2147,5,115,0,0,2147,2148,3,330, + 165,0,2148,2150,1,0,0,0,2149,2138,1,0,0,0,2149,2142,1,0,0,0,2150, + 331,1,0,0,0,2151,2152,3,334,167,0,2152,2154,5,78,0,0,2153,2155,3, + 32,16,0,2154,2153,1,0,0,0,2154,2155,1,0,0,0,2155,2156,1,0,0,0,2156, + 2157,5,79,0,0,2157,2162,1,0,0,0,2158,2159,3,334,167,0,2159,2160, + 3,282,141,0,2160,2162,1,0,0,0,2161,2151,1,0,0,0,2161,2158,1,0,0, + 0,2162,333,1,0,0,0,2163,2166,3,316,158,0,2164,2166,5,125,0,0,2165, + 2163,1,0,0,0,2165,2164,1,0,0,0,2166,335,1,0,0,0,2167,2168,5,45,0, + 0,2168,2169,3,388,194,0,2169,337,1,0,0,0,2170,2171,5,45,0,0,2171, + 2172,5,134,0,0,2172,2176,5,125,0,0,2173,2174,5,45,0,0,2174,2176, + 5,137,0,0,2175,2170,1,0,0,0,2175,2173,1,0,0,0,2176,339,1,0,0,0,2177, + 2178,5,61,0,0,2178,2179,5,95,0,0,2179,2180,3,342,171,0,2180,2181, + 5,96,0,0,2181,2182,3,118,59,0,2182,341,1,0,0,0,2183,2184,6,171,-1, + 0,2184,2185,3,344,172,0,2185,2191,1,0,0,0,2186,2187,10,1,0,0,2187, + 2188,5,115,0,0,2188,2190,3,344,172,0,2189,2186,1,0,0,0,2190,2193, + 1,0,0,0,2191,2189,1,0,0,0,2191,2192,1,0,0,0,2192,343,1,0,0,0,2193, + 2191,1,0,0,0,2194,2197,3,346,173,0,2195,2197,3,268,134,0,2196,2194, + 1,0,0,0,2196,2195,1,0,0,0,2197,345,1,0,0,0,2198,2200,5,14,0,0,2199, + 2201,5,124,0,0,2200,2199,1,0,0,0,2200,2201,1,0,0,0,2201,2203,1,0, + 0,0,2202,2204,5,125,0,0,2203,2202,1,0,0,0,2203,2204,1,0,0,0,2204, + 2247,1,0,0,0,2205,2207,5,14,0,0,2206,2208,5,125,0,0,2207,2206,1, + 0,0,0,2207,2208,1,0,0,0,2208,2209,1,0,0,0,2209,2210,5,94,0,0,2210, + 2247,3,252,126,0,2211,2213,5,69,0,0,2212,2214,5,124,0,0,2213,2212, + 1,0,0,0,2213,2214,1,0,0,0,2214,2216,1,0,0,0,2215,2217,5,125,0,0, + 2216,2215,1,0,0,0,2216,2217,1,0,0,0,2217,2247,1,0,0,0,2218,2220, + 5,69,0,0,2219,2221,5,125,0,0,2220,2219,1,0,0,0,2220,2221,1,0,0,0, + 2221,2222,1,0,0,0,2222,2223,5,94,0,0,2223,2247,3,252,126,0,2224, + 2225,5,61,0,0,2225,2226,5,95,0,0,2226,2227,3,342,171,0,2227,2228, + 5,96,0,0,2228,2230,5,14,0,0,2229,2231,5,124,0,0,2230,2229,1,0,0, + 0,2230,2231,1,0,0,0,2231,2233,1,0,0,0,2232,2234,5,125,0,0,2233,2232, + 1,0,0,0,2233,2234,1,0,0,0,2234,2247,1,0,0,0,2235,2236,5,61,0,0,2236, + 2237,5,95,0,0,2237,2238,3,342,171,0,2238,2239,5,96,0,0,2239,2241, + 5,14,0,0,2240,2242,5,125,0,0,2241,2240,1,0,0,0,2241,2242,1,0,0,0, + 2242,2243,1,0,0,0,2243,2244,5,94,0,0,2244,2245,3,4,2,0,2245,2247, + 1,0,0,0,2246,2198,1,0,0,0,2246,2205,1,0,0,0,2246,2211,1,0,0,0,2246, + 2218,1,0,0,0,2246,2224,1,0,0,0,2246,2235,1,0,0,0,2247,347,1,0,0, + 0,2248,2249,3,352,176,0,2249,2251,5,95,0,0,2250,2252,3,354,177,0, + 2251,2250,1,0,0,0,2251,2252,1,0,0,0,2252,2253,1,0,0,0,2253,2254, + 5,96,0,0,2254,349,1,0,0,0,2255,2271,3,348,174,0,2256,2257,3,336, + 168,0,2257,2259,5,95,0,0,2258,2260,3,354,177,0,2259,2258,1,0,0,0, + 2259,2260,1,0,0,0,2260,2261,1,0,0,0,2261,2262,5,96,0,0,2262,2271, + 1,0,0,0,2263,2264,3,338,169,0,2264,2266,5,95,0,0,2265,2267,3,354, + 177,0,2266,2265,1,0,0,0,2266,2267,1,0,0,0,2267,2268,1,0,0,0,2268, + 2269,5,96,0,0,2269,2271,1,0,0,0,2270,2255,1,0,0,0,2270,2256,1,0, + 0,0,2270,2263,1,0,0,0,2271,351,1,0,0,0,2272,2273,5,125,0,0,2273, + 353,1,0,0,0,2274,2275,6,177,-1,0,2275,2277,3,356,178,0,2276,2278, + 5,124,0,0,2277,2276,1,0,0,0,2277,2278,1,0,0,0,2278,2287,1,0,0,0, + 2279,2280,10,1,0,0,2280,2281,5,115,0,0,2281,2283,3,356,178,0,2282, + 2284,5,124,0,0,2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284,2286,1,0, + 0,0,2285,2279,1,0,0,0,2286,2289,1,0,0,0,2287,2285,1,0,0,0,2287,2288, + 1,0,0,0,2288,355,1,0,0,0,2289,2287,1,0,0,0,2290,2294,3,252,126,0, + 2291,2294,3,88,44,0,2292,2294,3,4,2,0,2293,2290,1,0,0,0,2293,2291, + 1,0,0,0,2293,2292,1,0,0,0,2294,357,1,0,0,0,2295,2296,5,69,0,0,2296, + 2297,3,10,5,0,2297,2298,5,125,0,0,2298,2307,1,0,0,0,2299,2300,5, + 69,0,0,2300,2302,3,10,5,0,2301,2303,5,61,0,0,2302,2301,1,0,0,0,2302, + 2303,1,0,0,0,2303,2304,1,0,0,0,2304,2305,3,348,174,0,2305,2307,1, + 0,0,0,2306,2295,1,0,0,0,2306,2299,1,0,0,0,2307,359,1,0,0,0,2308, + 2310,5,29,0,0,2309,2308,1,0,0,0,2309,2310,1,0,0,0,2310,2311,1,0, + 0,0,2311,2312,5,61,0,0,2312,2313,3,118,59,0,2313,361,1,0,0,0,2314, + 2315,5,61,0,0,2315,2316,5,95,0,0,2316,2317,5,96,0,0,2317,2318,3, + 118,59,0,2318,363,1,0,0,0,2319,2320,5,66,0,0,2320,2321,3,96,48,0, + 2321,2322,3,368,184,0,2322,365,1,0,0,0,2323,2325,5,66,0,0,2324,2326, + 3,328,164,0,2325,2324,1,0,0,0,2325,2326,1,0,0,0,2326,2327,1,0,0, + 0,2327,2328,3,96,48,0,2328,2329,3,368,184,0,2329,367,1,0,0,0,2330, + 2332,3,370,185,0,2331,2333,3,368,184,0,2332,2331,1,0,0,0,2332,2333, + 1,0,0,0,2333,369,1,0,0,0,2334,2335,5,10,0,0,2335,2336,5,78,0,0,2336, + 2337,3,372,186,0,2337,2338,5,79,0,0,2338,2339,3,96,48,0,2339,371, + 1,0,0,0,2340,2342,3,206,103,0,2341,2340,1,0,0,0,2341,2342,1,0,0, + 0,2342,2343,1,0,0,0,2343,2344,3,146,73,0,2344,2345,3,232,116,0,2345, + 2355,1,0,0,0,2346,2348,3,206,103,0,2347,2346,1,0,0,0,2347,2348,1, + 0,0,0,2348,2349,1,0,0,0,2349,2351,3,146,73,0,2350,2352,3,254,127, + 0,2351,2350,1,0,0,0,2351,2352,1,0,0,0,2352,2355,1,0,0,0,2353,2355, + 5,124,0,0,2354,2341,1,0,0,0,2354,2347,1,0,0,0,2354,2353,1,0,0,0, + 2355,373,1,0,0,0,2356,2358,5,64,0,0,2357,2359,3,82,41,0,2358,2357, + 1,0,0,0,2358,2359,1,0,0,0,2359,375,1,0,0,0,2360,2363,3,378,189,0, + 2361,2363,3,382,191,0,2362,2360,1,0,0,0,2362,2361,1,0,0,0,2363,377, + 1,0,0,0,2364,2365,5,64,0,0,2365,2367,5,78,0,0,2366,2368,3,380,190, + 0,2367,2366,1,0,0,0,2367,2368,1,0,0,0,2368,2369,1,0,0,0,2369,2370, + 5,79,0,0,2370,379,1,0,0,0,2371,2372,6,190,-1,0,2372,2374,3,252,126, + 0,2373,2375,5,124,0,0,2374,2373,1,0,0,0,2374,2375,1,0,0,0,2375,2384, + 1,0,0,0,2376,2377,10,1,0,0,2377,2378,5,115,0,0,2378,2380,3,252,126, + 0,2379,2381,5,124,0,0,2380,2379,1,0,0,0,2380,2381,1,0,0,0,2381,2383, + 1,0,0,0,2382,2376,1,0,0,0,2383,2386,1,0,0,0,2384,2382,1,0,0,0,2384, + 2385,1,0,0,0,2385,381,1,0,0,0,2386,2384,1,0,0,0,2387,2388,5,43,0, + 0,2388,2389,5,78,0,0,2389,2390,3,88,44,0,2390,2391,5,79,0,0,2391, + 2394,1,0,0,0,2392,2394,5,43,0,0,2393,2387,1,0,0,0,2393,2392,1,0, + 0,0,2394,383,1,0,0,0,2395,2396,5,96,0,0,2396,2397,5,96,0,0,2397, + 385,1,0,0,0,2398,2399,5,96,0,0,2399,2400,5,96,0,0,2400,2401,5,94, + 0,0,2401,387,1,0,0,0,2402,2451,5,42,0,0,2403,2451,5,21,0,0,2404, + 2405,5,42,0,0,2405,2406,5,80,0,0,2406,2451,5,81,0,0,2407,2408,5, + 21,0,0,2408,2409,5,80,0,0,2409,2451,5,81,0,0,2410,2451,5,84,0,0, + 2411,2451,5,85,0,0,2412,2451,5,86,0,0,2413,2451,5,87,0,0,2414,2451, + 5,88,0,0,2415,2451,5,89,0,0,2416,2451,5,90,0,0,2417,2451,5,91,0, + 0,2418,2451,5,92,0,0,2419,2451,5,93,0,0,2420,2451,5,94,0,0,2421, + 2451,5,95,0,0,2422,2451,5,96,0,0,2423,2451,5,97,0,0,2424,2451,5, + 98,0,0,2425,2451,5,99,0,0,2426,2451,5,100,0,0,2427,2451,5,101,0, + 0,2428,2451,5,102,0,0,2429,2451,5,103,0,0,2430,2451,5,104,0,0,2431, + 2451,5,105,0,0,2432,2451,3,384,192,0,2433,2451,3,386,193,0,2434, + 2451,5,106,0,0,2435,2451,5,107,0,0,2436,2451,5,108,0,0,2437,2451, + 5,109,0,0,2438,2451,5,110,0,0,2439,2451,5,111,0,0,2440,2451,5,112, + 0,0,2441,2451,5,113,0,0,2442,2451,5,114,0,0,2443,2451,5,115,0,0, + 2444,2451,5,116,0,0,2445,2451,5,117,0,0,2446,2447,5,78,0,0,2447, + 2451,5,79,0,0,2448,2449,5,80,0,0,2449,2451,5,81,0,0,2450,2402,1, + 0,0,0,2450,2403,1,0,0,0,2450,2404,1,0,0,0,2450,2407,1,0,0,0,2450, + 2410,1,0,0,0,2450,2411,1,0,0,0,2450,2412,1,0,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,2422,1,0,0,0,2450,2423,1,0,0,0,2450,2424,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,2430,1,0,0,0,2450,2431,1,0,0,0,2450, + 2432,1,0,0,0,2450,2433,1,0,0,0,2450,2434,1,0,0,0,2450,2435,1,0,0, + 0,2450,2436,1,0,0,0,2450,2437,1,0,0,0,2450,2438,1,0,0,0,2450,2439, + 1,0,0,0,2450,2440,1,0,0,0,2450,2441,1,0,0,0,2450,2442,1,0,0,0,2450, + 2443,1,0,0,0,2450,2444,1,0,0,0,2450,2445,1,0,0,0,2450,2446,1,0,0, + 0,2450,2448,1,0,0,0,2451,389,1,0,0,0,2452,2460,5,126,0,0,2453,2460, + 5,132,0,0,2454,2460,5,133,0,0,2455,2460,5,134,0,0,2456,2460,3,392, + 196,0,2457,2460,3,394,197,0,2458,2460,3,396,198,0,2459,2452,1,0, + 0,0,2459,2453,1,0,0,0,2459,2454,1,0,0,0,2459,2455,1,0,0,0,2459,2456, + 1,0,0,0,2459,2457,1,0,0,0,2459,2458,1,0,0,0,2460,391,1,0,0,0,2461, + 2462,7,9,0,0,2462,393,1,0,0,0,2463,2464,5,44,0,0,2464,395,1,0,0, + 0,2465,2466,7,10,0,0,2466,397,1,0,0,0,315,399,411,415,426,430,445, + 452,457,459,464,470,480,487,493,497,502,508,515,521,524,527,530, + 537,544,596,611,617,623,636,638,644,659,665,695,700,704,708,711, + 715,721,723,731,735,738,745,752,756,761,765,768,773,779,792,803, + 805,820,822,834,836,849,851,869,871,883,885,896,907,918,929,940, + 950,958,971,981,988,992,996,1000,1004,1009,1012,1015,1021,1029,1034, + 1037,1043,1054,1077,1081,1089,1095,1115,1119,1132,1136,1139,1146, + 1154,1164,1175,1187,1197,1202,1209,1212,1217,1222,1243,1247,1252, + 1263,1269,1273,1278,1282,1287,1290,1312,1318,1329,1333,1336,1346, + 1352,1355,1362,1372,1376,1379,1382,1386,1391,1393,1397,1401,1410, + 1423,1431,1437,1443,1447,1450,1459,1468,1476,1487,1493,1504,1507, + 1512,1527,1533,1542,1552,1558,1566,1570,1574,1579,1584,1591,1593, + 1598,1602,1616,1622,1637,1647,1652,1659,1665,1670,1676,1683,1687, + 1689,1691,1698,1701,1704,1707,1712,1716,1719,1723,1727,1732,1735, + 1737,1741,1748,1754,1758,1764,1769,1771,1777,1781,1787,1794,1798, + 1800,1802,1809,1819,1823,1825,1827,1831,1834,1840,1850,1854,1860, + 1868,1872,1875,1879,1884,1887,1890,1894,1899,1909,1916,1921,1925, + 1930,1936,1940,1946,1952,1956,1961,1967,1971,1974,1978,1981,1983, + 1986,1996,2001,2003,2006,2009,2012,2021,2031,2036,2039,2043,2046, + 2049,2053,2062,2077,2083,2087,2091,2095,2099,2103,2107,2111,2114, + 2118,2129,2133,2140,2144,2149,2154,2161,2165,2175,2191,2196,2200, + 2203,2207,2213,2216,2220,2230,2233,2241,2246,2251,2259,2266,2270, + 2277,2283,2287,2293,2302,2306,2309,2325,2332,2341,2347,2351,2354, + 2358,2362,2367,2374,2380,2384,2393,2450,2459 ]; private static __ATN: antlr.ATN; @@ -13784,7 +13784,7 @@ export class CPP14Parser extends antlr.Parser { return CPP14Parser.vocabulary; } - private static readonly decisionsToDFA = CPP14Parser._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); + private static readonly decisionsToDFA = CPP14Parser._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); } export class TranslationunitContext extends antlr.ParserRuleContext { @@ -16281,7 +16281,7 @@ export class AttributespecifierContext extends antlr.ParserRuleContext { super(parent, invokingState); } public LeftBracket__list(): antlr.TerminalNode[] { - return this.getTokens(CPP14Parser.LeftBracket); + return this.getTokens(CPP14Parser.LeftBracket); } public LeftBracket(i: number): antlr.TerminalNode { return this.getToken(CPP14Parser.LeftBracket, i); @@ -16290,7 +16290,7 @@ export class AttributespecifierContext extends antlr.ParserRuleContext { return this.getTypedRuleContext(AttributelistContext, 0); } public RightBracket__list(): antlr.TerminalNode[] { - return this.getTokens(CPP14Parser.RightBracket); + return this.getTokens(CPP14Parser.RightBracket); } public RightBracket(i: number): antlr.TerminalNode { return this.getToken(CPP14Parser.RightBracket, i); @@ -18146,7 +18146,7 @@ export class RightShiftContext extends antlr.ParserRuleContext { super(parent, invokingState); } public Greater__list(): antlr.TerminalNode[] { - return this.getTokens(CPP14Parser.Greater); + return this.getTokens(CPP14Parser.Greater); } public Greater(i: number): antlr.TerminalNode { return this.getToken(CPP14Parser.Greater, i); @@ -18162,7 +18162,7 @@ export class RightShiftAssignContext extends antlr.ParserRuleContext { super(parent, invokingState); } public Greater__list(): antlr.TerminalNode[] { - return this.getTokens(CPP14Parser.Greater); + return this.getTokens(CPP14Parser.Greater); } public Greater(i: number): antlr.TerminalNode { return this.getToken(CPP14Parser.Greater, i); diff --git a/tests/generated/ExprLexer.ts b/tests/generated/ExprLexer.ts index ffcab12..1f7c3ab 100644 --- a/tests/generated/ExprLexer.ts +++ b/tests/generated/ExprLexer.ts @@ -1,6 +1,8 @@ // Generated from tests/Expr.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; +import { Token } from "antlr4ng"; + export class ExprLexer extends antlr.Lexer { public static readonly VAR = 1; @@ -24,7 +26,7 @@ export class ExprLexer extends antlr.Lexer { ]; public static readonly symbolicNames = [ - null, "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", + null, "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", "OPEN_PAR", "CLOSE_PAR", "ID", "WS" ]; @@ -33,7 +35,7 @@ export class ExprLexer extends antlr.Lexer { ]; public static readonly ruleNames = [ - "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", "OPEN_PAR", + "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", "OPEN_PAR", "CLOSE_PAR", "ID", "WS", ]; @@ -56,26 +58,26 @@ export class ExprLexer extends antlr.Lexer { public get modeNames(): string[] { return ExprLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4, 0, 11, 56, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, - 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, - 1, 9, 1, 9, 5, 9, 48, 8, 9, 10, 9, 12, 9, 51, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 0, 0, 11, 1, - 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 1, 0, 9, 2, 0, 86, 86, - 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 82, 82, 114, 114, 2, 0, 76, 76, 108, 108, 2, 0, - 69, 69, 101, 101, 2, 0, 84, 84, 116, 116, 2, 0, 65, 90, 97, 122, 4, 0, 48, 57, 65, 90, - 95, 95, 97, 122, 3, 0, 9, 10, 13, 13, 32, 32, 56, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, - 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, - 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 1, 23, 1, 0, 0, 0, 3, 27, 1, - 0, 0, 0, 5, 31, 1, 0, 0, 0, 7, 33, 1, 0, 0, 0, 9, 35, 1, 0, 0, 0, 11, 37, 1, 0, 0, 0, 13, 39, - 1, 0, 0, 0, 15, 41, 1, 0, 0, 0, 17, 43, 1, 0, 0, 0, 19, 45, 1, 0, 0, 0, 21, 52, 1, 0, 0, 0, - 23, 24, 7, 0, 0, 0, 24, 25, 7, 1, 0, 0, 25, 26, 7, 2, 0, 0, 26, 2, 1, 0, 0, 0, 27, 28, 7, 3, - 0, 0, 28, 29, 7, 4, 0, 0, 29, 30, 7, 5, 0, 0, 30, 4, 1, 0, 0, 0, 31, 32, 5, 43, 0, 0, 32, 6, - 1, 0, 0, 0, 33, 34, 5, 45, 0, 0, 34, 8, 1, 0, 0, 0, 35, 36, 5, 42, 0, 0, 36, 10, 1, 0, 0, 0, - 37, 38, 5, 47, 0, 0, 38, 12, 1, 0, 0, 0, 39, 40, 5, 61, 0, 0, 40, 14, 1, 0, 0, 0, 41, 42, - 5, 40, 0, 0, 42, 16, 1, 0, 0, 0, 43, 44, 5, 41, 0, 0, 44, 18, 1, 0, 0, 0, 45, 49, 7, 6, 0, - 0, 46, 48, 7, 7, 0, 0, 47, 46, 1, 0, 0, 0, 48, 51, 1, 0, 0, 0, 49, 47, 1, 0, 0, 0, 49, 50, - 1, 0, 0, 0, 50, 20, 1, 0, 0, 0, 51, 49, 1, 0, 0, 0, 52, 53, 7, 8, 0, 0, 53, 54, 1, 0, 0, 0, - 54, 55, 6, 10, 0, 0, 55, 22, 1, 0, 0, 0, 2, 0, 49, 1, 0, 1, 0 + 4,0,11,56,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, + 6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,1,0,1,0,1,0,1,0,1,1,1,1, + 1,1,1,1,1,2,1,2,1,3,1,3,1,4,1,4,1,5,1,5,1,6,1,6,1,7,1,7,1,8,1,8, + 1,9,1,9,5,9,48,8,9,10,9,12,9,51,9,9,1,10,1,10,1,10,1,10,0,0,11,1, + 1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,1,0,9,2,0,86,86, + 118,118,2,0,65,65,97,97,2,0,82,82,114,114,2,0,76,76,108,108,2,0, + 69,69,101,101,2,0,84,84,116,116,2,0,65,90,97,122,4,0,48,57,65,90, + 95,95,97,122,3,0,9,10,13,13,32,32,56,0,1,1,0,0,0,0,3,1,0,0,0,0,5, + 1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1, + 0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,1,23,1,0,0,0,3,27,1, + 0,0,0,5,31,1,0,0,0,7,33,1,0,0,0,9,35,1,0,0,0,11,37,1,0,0,0,13,39, + 1,0,0,0,15,41,1,0,0,0,17,43,1,0,0,0,19,45,1,0,0,0,21,52,1,0,0,0, + 23,24,7,0,0,0,24,25,7,1,0,0,25,26,7,2,0,0,26,2,1,0,0,0,27,28,7,3, + 0,0,28,29,7,4,0,0,29,30,7,5,0,0,30,4,1,0,0,0,31,32,5,43,0,0,32,6, + 1,0,0,0,33,34,5,45,0,0,34,8,1,0,0,0,35,36,5,42,0,0,36,10,1,0,0,0, + 37,38,5,47,0,0,38,12,1,0,0,0,39,40,5,61,0,0,40,14,1,0,0,0,41,42, + 5,40,0,0,42,16,1,0,0,0,43,44,5,41,0,0,44,18,1,0,0,0,45,49,7,6,0, + 0,46,48,7,7,0,0,47,46,1,0,0,0,48,51,1,0,0,0,49,47,1,0,0,0,49,50, + 1,0,0,0,50,20,1,0,0,0,51,49,1,0,0,0,52,53,7,8,0,0,53,54,1,0,0,0, + 54,55,6,10,0,0,55,22,1,0,0,0,2,0,49,1,0,1,0 ]; private static __ATN: antlr.ATN; @@ -94,5 +96,5 @@ export class ExprLexer extends antlr.Lexer { return ExprLexer.vocabulary; } - private static readonly decisionsToDFA = ExprLexer._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); -} + private static readonly decisionsToDFA = ExprLexer._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); +} \ No newline at end of file diff --git a/tests/generated/ExprParser.ts b/tests/generated/ExprParser.ts index aa25a51..3457ff8 100644 --- a/tests/generated/ExprParser.ts +++ b/tests/generated/ExprParser.ts @@ -1,6 +1,12 @@ // Generated from tests/Expr.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; +import { Token } from "antlr4ng"; + +// for running tests with parameters, TODO: discuss strategy for typed parameters in CI +// eslint-disable-next-line no-unused-vars +type int = number; + export class ExprParser extends antlr.Parser { public static readonly VAR = 1; @@ -26,11 +32,11 @@ export class ExprParser extends antlr.Parser { ]; public static readonly symbolicNames = [ - null, "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", + null, "VAR", "LET", "PLUS", "MINUS", "MULTIPLY", "DIVIDE", "EQUAL", "OPEN_PAR", "CLOSE_PAR", "ID", "WS" ]; public static readonly ruleNames = [ - "expression", "assignment", "simpleExpression", "variableRef", "functionRef", + "expression", "assignment", "simpleExpression", "variableRef", "functionRef", "identifier", ]; @@ -55,23 +61,23 @@ export class ExprParser extends antlr.Parser { this.state = 14; this._errHandler.sync(this); switch (this._input.LA(1)) { - case ExprParser.VAR: - case ExprParser.LET: - this.enterOuterAlt(localctx, 1); - { - this.state = 12; - this.assignment(); - } - break; - case ExprParser.ID: - this.enterOuterAlt(localctx, 2); - { - this.state = 13; - this.simpleExpression(0); - } - break; - default: - throw new antlr.NoViableAltException(this); + case ExprParser.VAR: + case ExprParser.LET: + this.enterOuterAlt(localctx, 1); + { + this.state = 12; + this.assignment(); + } + break; + case ExprParser.ID: + this.enterOuterAlt(localctx, 2); + { + this.state = 13; + this.simpleExpression(0); + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -95,21 +101,21 @@ export class ExprParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 16; - _la = this._input.LA(1); - if (!(_la === 1 || _la === 2)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 17; - this.match(ExprParser.ID); - this.state = 18; - this.match(ExprParser.EQUAL); - this.state = 19; - this.simpleExpression(0); + this.state = 16; + _la = this._input.LA(1); + if(!(_la===1 || _la===2)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 17; + this.match(ExprParser.ID); + this.state = 18; + this.match(ExprParser.EQUAL); + this.state = 19; + this.simpleExpression(0); } } catch (re) { @@ -145,85 +151,85 @@ export class ExprParser extends antlr.Parser { let _alt: number; this.enterOuterAlt(localctx, 1); { - this.state = 24; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 1, this._ctx)) { + this.state = 24; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 1, this._ctx) ) { + case 1: + { + this.state = 22; + this.variableRef(); + } + break; + case 2: + { + this.state = 23; + this.functionRef(); + } + break; + } + this._ctx.stop = this._input.LT(-1); + this.state = 34; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 3, this._ctx); + while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { + if (_alt === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + { + this.state = 32; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 2, this._ctx) ) { case 1: { - this.state = 22; - this.variableRef(); + localctx = new SimpleExpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, ExprParser.RULE_simpleExpression); + this.state = 26; + if (!(this.precpred(this._ctx, 4))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); + } + this.state = 27; + _la = this._input.LA(1); + if(!(_la===3 || _la===4)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 28; + this.simpleExpression(5); } break; case 2: { - this.state = 23; - this.functionRef(); + localctx = new SimpleExpressionContext(_parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, ExprParser.RULE_simpleExpression); + this.state = 29; + if (!(this.precpred(this._ctx, 3))) { + throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); } - break; - } - this._ctx.stop = this._input.LT(-1); - this.state = 34; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 3, this._ctx); - while (_alt !== 2 && _alt !== antlr.ATN.INVALID_ALT_NUMBER) { - if (_alt === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); + this.state = 30; + _la = this._input.LA(1); + if(!(_la===5 || _la===6)) { + this._errHandler.recoverInline(this); } - _prevctx = localctx; - { - this.state = 32; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 2, this._ctx)) { - case 1: - { - localctx = new SimpleExpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, ExprParser.RULE_simpleExpression); - this.state = 26; - if (!(this.precpred(this._ctx, 4))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 4)"); - } - this.state = 27; - _la = this._input.LA(1); - if (!(_la === 3 || _la === 4)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 28; - this.simpleExpression(5); - } - break; - case 2: - { - localctx = new SimpleExpressionContext(_parentctx, _parentState); - this.pushNewRecursionContext(localctx, _startState, ExprParser.RULE_simpleExpression); - this.state = 29; - if (!(this.precpred(this._ctx, 3))) { - throw this.createFailedPredicateException("this.precpred(this._ctx, 3)"); - } - this.state = 30; - _la = this._input.LA(1); - if (!(_la === 5 || _la === 6)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - this.state = 31; - this.simpleExpression(4); - } - break; - } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 31; + this.simpleExpression(4); } + break; + } } - this.state = 36; - this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input, 3, this._ctx); } + this.state = 36; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input, 3, this._ctx); + } } } catch (re) { @@ -246,8 +252,8 @@ export class ExprParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 37; - this.identifier(); + this.state = 37; + this.identifier(); } } catch (re) { @@ -270,12 +276,12 @@ export class ExprParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 39; - this.identifier(); - this.state = 40; - this.match(ExprParser.OPEN_PAR); - this.state = 41; - this.match(ExprParser.CLOSE_PAR); + this.state = 39; + this.identifier(); + this.state = 40; + this.match(ExprParser.OPEN_PAR); + this.state = 41; + this.match(ExprParser.CLOSE_PAR); } } catch (re) { @@ -298,8 +304,8 @@ export class ExprParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 43; - this.match(ExprParser.ID); + this.state = 43; + this.match(ExprParser.ID); } } catch (re) { @@ -319,36 +325,36 @@ export class ExprParser extends antlr.Parser { public override sempred(localctx: antlr.RuleContext, ruleIndex: number, predIndex: number): boolean { switch (ruleIndex) { - case 2: - return this.simpleExpression_sempred(localctx as SimpleExpressionContext, predIndex); + case 2: + return this.simpleExpression_sempred(localctx as SimpleExpressionContext, predIndex); } return true; } private simpleExpression_sempred(localctx: SimpleExpressionContext, predIndex: number): boolean { switch (predIndex) { - case 0: - return this.precpred(this._ctx, 4); - case 1: - return this.precpred(this._ctx, 3); + case 0: + return this.precpred(this._ctx, 4); + case 1: + return this.precpred(this._ctx, 3); } return true; } public static readonly _serializedATN: number[] = [ - 4, 1, 11, 46, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 1, 0, 1, - 0, 3, 0, 15, 8, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 3, 2, 25, 8, 2, 1, 2, 1, 2, - 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 33, 8, 2, 10, 2, 12, 2, 36, 9, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, - 1, 4, 1, 5, 1, 5, 1, 5, 0, 1, 4, 6, 0, 2, 4, 6, 8, 10, 0, 3, 1, 0, 1, 2, 1, 0, 3, 4, 1, 0, 5, 6, - 43, 0, 14, 1, 0, 0, 0, 2, 16, 1, 0, 0, 0, 4, 24, 1, 0, 0, 0, 6, 37, 1, 0, 0, 0, 8, 39, 1, 0, - 0, 0, 10, 43, 1, 0, 0, 0, 12, 15, 3, 2, 1, 0, 13, 15, 3, 4, 2, 0, 14, 12, 1, 0, 0, 0, 14, 13, - 1, 0, 0, 0, 15, 1, 1, 0, 0, 0, 16, 17, 7, 0, 0, 0, 17, 18, 5, 10, 0, 0, 18, 19, 5, 7, 0, 0, - 19, 20, 3, 4, 2, 0, 20, 3, 1, 0, 0, 0, 21, 22, 6, 2, -1, 0, 22, 25, 3, 6, 3, 0, 23, 25, 3, - 8, 4, 0, 24, 21, 1, 0, 0, 0, 24, 23, 1, 0, 0, 0, 25, 34, 1, 0, 0, 0, 26, 27, 10, 4, 0, 0, 27, - 28, 7, 1, 0, 0, 28, 33, 3, 4, 2, 5, 29, 30, 10, 3, 0, 0, 30, 31, 7, 2, 0, 0, 31, 33, 3, 4, - 2, 4, 32, 26, 1, 0, 0, 0, 32, 29, 1, 0, 0, 0, 33, 36, 1, 0, 0, 0, 34, 32, 1, 0, 0, 0, 34, 35, - 1, 0, 0, 0, 35, 5, 1, 0, 0, 0, 36, 34, 1, 0, 0, 0, 37, 38, 3, 10, 5, 0, 38, 7, 1, 0, 0, 0, 39, - 40, 3, 10, 5, 0, 40, 41, 5, 8, 0, 0, 41, 42, 5, 9, 0, 0, 42, 9, 1, 0, 0, 0, 43, 44, 5, 10, - 0, 0, 44, 11, 1, 0, 0, 0, 4, 14, 24, 32, 34 + 4,1,11,46,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,1,0,1, + 0,3,0,15,8,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,3,2,25,8,2,1,2,1,2, + 1,2,1,2,1,2,1,2,5,2,33,8,2,10,2,12,2,36,9,2,1,3,1,3,1,4,1,4,1,4, + 1,4,1,5,1,5,1,5,0,1,4,6,0,2,4,6,8,10,0,3,1,0,1,2,1,0,3,4,1,0,5,6, + 43,0,14,1,0,0,0,2,16,1,0,0,0,4,24,1,0,0,0,6,37,1,0,0,0,8,39,1,0, + 0,0,10,43,1,0,0,0,12,15,3,2,1,0,13,15,3,4,2,0,14,12,1,0,0,0,14,13, + 1,0,0,0,15,1,1,0,0,0,16,17,7,0,0,0,17,18,5,10,0,0,18,19,5,7,0,0, + 19,20,3,4,2,0,20,3,1,0,0,0,21,22,6,2,-1,0,22,25,3,6,3,0,23,25,3, + 8,4,0,24,21,1,0,0,0,24,23,1,0,0,0,25,34,1,0,0,0,26,27,10,4,0,0,27, + 28,7,1,0,0,28,33,3,4,2,5,29,30,10,3,0,0,30,31,7,2,0,0,31,33,3,4, + 2,4,32,26,1,0,0,0,32,29,1,0,0,0,33,36,1,0,0,0,34,32,1,0,0,0,34,35, + 1,0,0,0,35,5,1,0,0,0,36,34,1,0,0,0,37,38,3,10,5,0,38,7,1,0,0,0,39, + 40,3,10,5,0,40,41,5,8,0,0,41,42,5,9,0,0,42,9,1,0,0,0,43,44,5,10, + 0,0,44,11,1,0,0,0,4,14,24,32,34 ]; private static __ATN: antlr.ATN; @@ -367,7 +373,7 @@ export class ExprParser extends antlr.Parser { return ExprParser.vocabulary; } - private static readonly decisionsToDFA = ExprParser._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); + private static readonly decisionsToDFA = ExprParser._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); } export class ExpressionContext extends antlr.ParserRuleContext { diff --git a/tests/generated/WhiteboxLexer.ts b/tests/generated/WhiteboxLexer.ts index 1156f38..13b0e2e 100644 --- a/tests/generated/WhiteboxLexer.ts +++ b/tests/generated/WhiteboxLexer.ts @@ -1,6 +1,8 @@ // Generated from tests/Whitebox.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; +import { Token } from "antlr4ng"; + export class WhiteboxLexer extends antlr.Lexer { public static readonly LOREM = 1; @@ -17,12 +19,12 @@ export class WhiteboxLexer extends antlr.Lexer { ]; public static readonly literalNames = [ - null, "'LOREM'", "'IPSUM'", "'DOLOR'", "'SIT'", "'AMET'", "'CONSECTETUR'", + null, "'LOREM'", "'IPSUM'", "'DOLOR'", "'SIT'", "'AMET'", "'CONSECTETUR'", "'ADIPISCING'" ]; public static readonly symbolicNames = [ - null, "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", + null, "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", "WS" ]; @@ -31,7 +33,7 @@ export class WhiteboxLexer extends antlr.Lexer { ]; public static readonly ruleNames = [ - "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", + "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", "WS", ]; @@ -54,28 +56,28 @@ export class WhiteboxLexer extends antlr.Lexer { public get modeNames(): string[] { return WhiteboxLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4, 0, 8, 71, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, - 6, 7, 6, 2, 7, 7, 7, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, - 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, - 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 0, 0, 8, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, - 11, 6, 13, 7, 15, 8, 1, 0, 1, 3, 0, 9, 10, 13, 13, 32, 32, 70, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, - 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, - 0, 0, 15, 1, 0, 0, 0, 1, 17, 1, 0, 0, 0, 3, 23, 1, 0, 0, 0, 5, 29, 1, 0, 0, 0, 7, 35, 1, 0, 0, - 0, 9, 39, 1, 0, 0, 0, 11, 44, 1, 0, 0, 0, 13, 56, 1, 0, 0, 0, 15, 67, 1, 0, 0, 0, 17, 18, 5, - 76, 0, 0, 18, 19, 5, 79, 0, 0, 19, 20, 5, 82, 0, 0, 20, 21, 5, 69, 0, 0, 21, 22, 5, 77, 0, - 0, 22, 2, 1, 0, 0, 0, 23, 24, 5, 73, 0, 0, 24, 25, 5, 80, 0, 0, 25, 26, 5, 83, 0, 0, 26, 27, - 5, 85, 0, 0, 27, 28, 5, 77, 0, 0, 28, 4, 1, 0, 0, 0, 29, 30, 5, 68, 0, 0, 30, 31, 5, 79, 0, - 0, 31, 32, 5, 76, 0, 0, 32, 33, 5, 79, 0, 0, 33, 34, 5, 82, 0, 0, 34, 6, 1, 0, 0, 0, 35, 36, - 5, 83, 0, 0, 36, 37, 5, 73, 0, 0, 37, 38, 5, 84, 0, 0, 38, 8, 1, 0, 0, 0, 39, 40, 5, 65, 0, - 0, 40, 41, 5, 77, 0, 0, 41, 42, 5, 69, 0, 0, 42, 43, 5, 84, 0, 0, 43, 10, 1, 0, 0, 0, 44, - 45, 5, 67, 0, 0, 45, 46, 5, 79, 0, 0, 46, 47, 5, 78, 0, 0, 47, 48, 5, 83, 0, 0, 48, 49, 5, - 69, 0, 0, 49, 50, 5, 67, 0, 0, 50, 51, 5, 84, 0, 0, 51, 52, 5, 69, 0, 0, 52, 53, 5, 84, 0, - 0, 53, 54, 5, 85, 0, 0, 54, 55, 5, 82, 0, 0, 55, 12, 1, 0, 0, 0, 56, 57, 5, 65, 0, 0, 57, - 58, 5, 68, 0, 0, 58, 59, 5, 73, 0, 0, 59, 60, 5, 80, 0, 0, 60, 61, 5, 73, 0, 0, 61, 62, 5, - 83, 0, 0, 62, 63, 5, 67, 0, 0, 63, 64, 5, 73, 0, 0, 64, 65, 5, 78, 0, 0, 65, 66, 5, 71, 0, - 0, 66, 14, 1, 0, 0, 0, 67, 68, 7, 0, 0, 0, 68, 69, 1, 0, 0, 0, 69, 70, 6, 7, 0, 0, 70, 16, - 1, 0, 0, 0, 1, 0, 1, 6, 0, 0 + 4,0,8,71,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2, + 6,7,6,2,7,7,7,1,0,1,0,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1, + 2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1, + 6,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,0,0,8,1,1,3,2,5,3,7,4,9,5, + 11,6,13,7,15,8,1,0,1,3,0,9,10,13,13,32,32,70,0,1,1,0,0,0,0,3,1,0, + 0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0, + 0,0,15,1,0,0,0,1,17,1,0,0,0,3,23,1,0,0,0,5,29,1,0,0,0,7,35,1,0,0, + 0,9,39,1,0,0,0,11,44,1,0,0,0,13,56,1,0,0,0,15,67,1,0,0,0,17,18,5, + 76,0,0,18,19,5,79,0,0,19,20,5,82,0,0,20,21,5,69,0,0,21,22,5,77,0, + 0,22,2,1,0,0,0,23,24,5,73,0,0,24,25,5,80,0,0,25,26,5,83,0,0,26,27, + 5,85,0,0,27,28,5,77,0,0,28,4,1,0,0,0,29,30,5,68,0,0,30,31,5,79,0, + 0,31,32,5,76,0,0,32,33,5,79,0,0,33,34,5,82,0,0,34,6,1,0,0,0,35,36, + 5,83,0,0,36,37,5,73,0,0,37,38,5,84,0,0,38,8,1,0,0,0,39,40,5,65,0, + 0,40,41,5,77,0,0,41,42,5,69,0,0,42,43,5,84,0,0,43,10,1,0,0,0,44, + 45,5,67,0,0,45,46,5,79,0,0,46,47,5,78,0,0,47,48,5,83,0,0,48,49,5, + 69,0,0,49,50,5,67,0,0,50,51,5,84,0,0,51,52,5,69,0,0,52,53,5,84,0, + 0,53,54,5,85,0,0,54,55,5,82,0,0,55,12,1,0,0,0,56,57,5,65,0,0,57, + 58,5,68,0,0,58,59,5,73,0,0,59,60,5,80,0,0,60,61,5,73,0,0,61,62,5, + 83,0,0,62,63,5,67,0,0,63,64,5,73,0,0,64,65,5,78,0,0,65,66,5,71,0, + 0,66,14,1,0,0,0,67,68,7,0,0,0,68,69,1,0,0,0,69,70,6,7,0,0,70,16, + 1,0,0,0,1,0,1,6,0,0 ]; private static __ATN: antlr.ATN; @@ -94,5 +96,5 @@ export class WhiteboxLexer extends antlr.Lexer { return WhiteboxLexer.vocabulary; } - private static readonly decisionsToDFA = WhiteboxLexer._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); -} + private static readonly decisionsToDFA = WhiteboxLexer._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); +} \ No newline at end of file diff --git a/tests/generated/WhiteboxParser.ts b/tests/generated/WhiteboxParser.ts index e40888e..c563e2e 100644 --- a/tests/generated/WhiteboxParser.ts +++ b/tests/generated/WhiteboxParser.ts @@ -1,6 +1,12 @@ // Generated from tests/Whitebox.g4 by ANTLR 4.13.1 import * as antlr from "antlr4ng"; +import { Token } from "antlr4ng"; + +// for running tests with parameters, TODO: discuss strategy for typed parameters in CI +// eslint-disable-next-line no-unused-vars +type int = number; + export class WhiteboxParser extends antlr.Parser { public static readonly LOREM = 1; @@ -38,18 +44,18 @@ export class WhiteboxParser extends antlr.Parser { public static readonly RULE_test8 = 24; public static readonly literalNames = [ - null, "'LOREM'", "'IPSUM'", "'DOLOR'", "'SIT'", "'AMET'", "'CONSECTETUR'", + null, "'LOREM'", "'IPSUM'", "'DOLOR'", "'SIT'", "'AMET'", "'CONSECTETUR'", "'ADIPISCING'" ]; public static readonly symbolicNames = [ - null, "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", + null, "LOREM", "IPSUM", "DOLOR", "SIT", "AMET", "CONSECTETUR", "ADIPISCING", "WS" ]; public static readonly ruleNames = [ - "test1", "rule1", "rule2", "rule3", "rule4", "rule5", "test2", "rule7", - "rule8", "rule9", "rule10", "rule11", "test3", "rule13", "test4", - "rule15", "rule16", "test5", "rule18", "rule19", "test6", "rule21", + "test1", "rule1", "rule2", "rule3", "rule4", "rule5", "test2", "rule7", + "rule8", "rule9", "rule10", "rule11", "test3", "rule13", "test4", + "rule15", "rule16", "test5", "rule18", "rule19", "test6", "rule21", "rule22", "test7", "test8", ]; @@ -73,10 +79,10 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 50; - this.rule1(); - this.state = 51; - this.match(WhiteboxParser.ADIPISCING); + this.state = 50; + this.rule1(); + this.state = 51; + this.match(WhiteboxParser.ADIPISCING); } } catch (re) { @@ -99,10 +105,10 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 53; - this.rule2(); - this.state = 54; - this.match(WhiteboxParser.CONSECTETUR); + this.state = 53; + this.rule2(); + this.state = 54; + this.match(WhiteboxParser.CONSECTETUR); } } catch (re) { @@ -126,35 +132,35 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 56; - this.match(WhiteboxParser.LOREM); - this.state = 57; - this.rule3(); - this.state = 58; - this.rule5(); - this.state = 62; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === 4) { - { - { - this.state = 59; - this.match(WhiteboxParser.SIT); - } - } - this.state = 64; - this._errHandler.sync(this); - _la = this._input.LA(1); + this.state = 56; + this.match(WhiteboxParser.LOREM); + this.state = 57; + this.rule3(); + this.state = 58; + this.rule5(); + this.state = 62; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===4) { + { + { + this.state = 59; + this.match(WhiteboxParser.SIT); } - this.state = 66; + } + this.state = 64; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la === 5) { - { - this.state = 65; - this.match(WhiteboxParser.AMET); - } + } + this.state = 66; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===5) { + { + this.state = 65; + this.match(WhiteboxParser.AMET); } + } } } @@ -179,17 +185,17 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 68; - this.rule4(); - this.state = 70; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3) { - { - this.state = 69; - this.match(WhiteboxParser.DOLOR); - } + this.state = 68; + this.rule4(); + this.state = 70; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3) { + { + this.state = 69; + this.match(WhiteboxParser.DOLOR); } + } } } @@ -214,15 +220,15 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 73; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 2) { - { - this.state = 72; - this.match(WhiteboxParser.IPSUM); - } + this.state = 73; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===2) { + { + this.state = 72; + this.match(WhiteboxParser.IPSUM); } + } } } @@ -269,10 +275,10 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 77; - this.rule7(); - this.state = 78; - this.match(WhiteboxParser.ADIPISCING); + this.state = 77; + this.rule7(); + this.state = 78; + this.match(WhiteboxParser.ADIPISCING); } } catch (re) { @@ -295,10 +301,10 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 80; - this.rule8(); - this.state = 81; - this.match(WhiteboxParser.CONSECTETUR); + this.state = 80; + this.rule8(); + this.state = 81; + this.match(WhiteboxParser.CONSECTETUR); } } catch (re) { @@ -322,35 +328,35 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 83; - this.match(WhiteboxParser.LOREM); - this.state = 84; - this.rule11(); - this.state = 85; - this.rule9(); - this.state = 89; - this._errHandler.sync(this); - _la = this._input.LA(1); - while (_la === 4) { - { - { - this.state = 86; - this.match(WhiteboxParser.SIT); - } - } - this.state = 91; - this._errHandler.sync(this); - _la = this._input.LA(1); + this.state = 83; + this.match(WhiteboxParser.LOREM); + this.state = 84; + this.rule11(); + this.state = 85; + this.rule9(); + this.state = 89; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===4) { + { + { + this.state = 86; + this.match(WhiteboxParser.SIT); } - this.state = 93; + } + this.state = 91; this._errHandler.sync(this); _la = this._input.LA(1); - if (_la === 5) { - { - this.state = 92; - this.match(WhiteboxParser.AMET); - } + } + this.state = 93; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===5) { + { + this.state = 92; + this.match(WhiteboxParser.AMET); } + } } } @@ -375,17 +381,17 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 95; - this.rule10(); - this.state = 97; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 3) { - { - this.state = 96; - this.match(WhiteboxParser.DOLOR); - } + this.state = 95; + this.rule10(); + this.state = 97; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===3) { + { + this.state = 96; + this.match(WhiteboxParser.DOLOR); } + } } } @@ -410,15 +416,15 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 100; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 2) { - { - this.state = 99; - this.match(WhiteboxParser.IPSUM); - } + this.state = 100; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===2) { + { + this.state = 99; + this.match(WhiteboxParser.IPSUM); } + } } } @@ -466,36 +472,36 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 104; - this.match(WhiteboxParser.LOREM); - this.state = 106; - this._errHandler.sync(this); - _la = this._input.LA(1); - if (_la === 2) { - { - this.state = 105; - this.match(WhiteboxParser.IPSUM); - } + this.state = 104; + this.match(WhiteboxParser.LOREM); + this.state = 106; + this._errHandler.sync(this); + _la = this._input.LA(1); + if (_la===2) { + { + this.state = 105; + this.match(WhiteboxParser.IPSUM); } + } - this.state = 108; - this.rule13(); - this.state = 110; + this.state = 108; + this.rule13(); + this.state = 110; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + { + { + this.state = 109; + this.match(WhiteboxParser.AMET); + } + } + this.state = 112; this._errHandler.sync(this); _la = this._input.LA(1); - do { - { - { - this.state = 109; - this.match(WhiteboxParser.AMET); - } - } - this.state = 112; - this._errHandler.sync(this); - _la = this._input.LA(1); - } while (_la === 5); - this.state = 114; - this.match(WhiteboxParser.CONSECTETUR); + } while (_la===5); + this.state = 114; + this.match(WhiteboxParser.CONSECTETUR); } } catch (re) { @@ -519,27 +525,27 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 119; - this._errHandler.sync(this); + this.state = 119; + this._errHandler.sync(this); + _la = this._input.LA(1); + while (_la===3 || _la===4) { + { + { + this.state = 116; _la = this._input.LA(1); - while (_la === 3 || _la === 4) { - { - { - this.state = 116; - _la = this._input.LA(1); - if (!(_la === 3 || _la === 4)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } - } - } - this.state = 121; - this._errHandler.sync(this); - _la = this._input.LA(1); + if(!(_la===3 || _la===4)) { + this._errHandler.recoverInline(this); } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + } + this.state = 121; + this._errHandler.sync(this); + _la = this._input.LA(1); + } } } catch (re) { @@ -562,24 +568,24 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 122; - this.match(WhiteboxParser.LOREM); - this.state = 125; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 11, this._ctx)) { - case 1: - { - this.state = 123; - this.rule15(); - } - break; - case 2: - { - this.state = 124; - this.rule16(); - } - break; + this.state = 122; + this.match(WhiteboxParser.LOREM); + this.state = 125; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 11, this._ctx) ) { + case 1: + { + this.state = 123; + this.rule15(); + } + break; + case 2: + { + this.state = 124; + this.rule16(); } + break; + } } } catch (re) { @@ -602,12 +608,12 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 127; - this.match(WhiteboxParser.IPSUM); - this.state = 128; - this.match(WhiteboxParser.DOLOR); - this.state = 129; - this.match(WhiteboxParser.SIT); + this.state = 127; + this.match(WhiteboxParser.IPSUM); + this.state = 128; + this.match(WhiteboxParser.DOLOR); + this.state = 129; + this.match(WhiteboxParser.SIT); } } catch (re) { @@ -630,12 +636,12 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 131; - this.match(WhiteboxParser.IPSUM); - this.state = 132; - this.match(WhiteboxParser.DOLOR); - this.state = 133; - this.match(WhiteboxParser.AMET); + this.state = 131; + this.match(WhiteboxParser.IPSUM); + this.state = 132; + this.match(WhiteboxParser.DOLOR); + this.state = 133; + this.match(WhiteboxParser.AMET); } } catch (re) { @@ -658,24 +664,24 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 135; - this.match(WhiteboxParser.LOREM); - this.state = 138; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 12, this._ctx)) { - case 1: - { - this.state = 136; - this.rule15(); - } - break; - case 2: - { - this.state = 137; - this.rule16(); - } - break; + this.state = 135; + this.match(WhiteboxParser.LOREM); + this.state = 138; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 12, this._ctx) ) { + case 1: + { + this.state = 136; + this.rule15(); + } + break; + case 2: + { + this.state = 137; + this.rule16(); } + break; + } } } catch (re) { @@ -699,19 +705,19 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 140; - this.match(WhiteboxParser.IPSUM); - this.state = 141; - this.match(WhiteboxParser.DOLOR); - this.state = 142; - _la = this._input.LA(1); - if (!(_la === 4 || _la === 6)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 140; + this.match(WhiteboxParser.IPSUM); + this.state = 141; + this.match(WhiteboxParser.DOLOR); + this.state = 142; + _la = this._input.LA(1); + if(!(_la===4 || _la===6)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -734,12 +740,12 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 144; - this.match(WhiteboxParser.IPSUM); - this.state = 145; - this.match(WhiteboxParser.DOLOR); - this.state = 146; - this.match(WhiteboxParser.AMET); + this.state = 144; + this.match(WhiteboxParser.IPSUM); + this.state = 145; + this.match(WhiteboxParser.DOLOR); + this.state = 146; + this.match(WhiteboxParser.AMET); } } catch (re) { @@ -762,24 +768,24 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 148; - this.match(WhiteboxParser.LOREM); - this.state = 151; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 13, this._ctx)) { - case 1: - { - this.state = 149; - this.rule15(); - } - break; - case 2: - { - this.state = 150; - this.rule16(); - } - break; + this.state = 148; + this.match(WhiteboxParser.LOREM); + this.state = 151; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 13, this._ctx) ) { + case 1: + { + this.state = 149; + this.rule15(); } + break; + case 2: + { + this.state = 150; + this.rule16(); + } + break; + } } } catch (re) { @@ -802,12 +808,12 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 153; - this.match(WhiteboxParser.IPSUM); - this.state = 154; - this.match(WhiteboxParser.DOLOR); - this.state = 155; - this.match(WhiteboxParser.SIT); + this.state = 153; + this.match(WhiteboxParser.IPSUM); + this.state = 154; + this.match(WhiteboxParser.DOLOR); + this.state = 155; + this.match(WhiteboxParser.SIT); } } catch (re) { @@ -831,19 +837,19 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 157; - this.match(WhiteboxParser.IPSUM); - this.state = 158; - this.match(WhiteboxParser.DOLOR); - this.state = 159; - _la = this._input.LA(1); - if (!(_la === 5 || _la === 6)) { - this._errHandler.recoverInline(this); - } - else { - this._errHandler.reportMatch(this); - this.consume(); - } + this.state = 157; + this.match(WhiteboxParser.IPSUM); + this.state = 158; + this.match(WhiteboxParser.DOLOR); + this.state = 159; + _la = this._input.LA(1); + if(!(_la===5 || _la===6)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } } } catch (re) { @@ -866,32 +872,32 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 161; - this.match(WhiteboxParser.LOREM); - this.state = 168; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 14, this._ctx)) { - case 1: - { - this.state = 162; - this.match(WhiteboxParser.IPSUM); - this.state = 163; - this.match(WhiteboxParser.DOLOR); - this.state = 164; - this.match(WhiteboxParser.SIT); - } - break; - case 2: - { - this.state = 165; - this.match(WhiteboxParser.IPSUM); - this.state = 166; - this.match(WhiteboxParser.DOLOR); - this.state = 167; - this.match(WhiteboxParser.AMET); - } - break; + this.state = 161; + this.match(WhiteboxParser.LOREM); + this.state = 168; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 14, this._ctx) ) { + case 1: + { + this.state = 162; + this.match(WhiteboxParser.IPSUM); + this.state = 163; + this.match(WhiteboxParser.DOLOR); + this.state = 164; + this.match(WhiteboxParser.SIT); + } + break; + case 2: + { + this.state = 165; + this.match(WhiteboxParser.IPSUM); + this.state = 166; + this.match(WhiteboxParser.DOLOR); + this.state = 167; + this.match(WhiteboxParser.AMET); } + break; + } } } catch (re) { @@ -914,36 +920,36 @@ export class WhiteboxParser extends antlr.Parser { try { this.enterOuterAlt(localctx, 1); { - this.state = 170; - this.match(WhiteboxParser.LOREM); - this.state = 179; - this._errHandler.sync(this); - switch (this._interp.adaptivePredict(this._input, 15, this._ctx)) { - case 1: - { - this.state = 171; - this.match(WhiteboxParser.IPSUM); - this.state = 172; - this.match(WhiteboxParser.DOLOR); - this.state = 173; - this.match(WhiteboxParser.SIT); - this.state = 174; - this.match(WhiteboxParser.AMET); - } - break; - case 2: - { - this.state = 175; - this.match(WhiteboxParser.IPSUM); - this.state = 176; - this.match(WhiteboxParser.DOLOR); - this.state = 177; - this.match(WhiteboxParser.SIT); - this.state = 178; - this.match(WhiteboxParser.CONSECTETUR); - } - break; + this.state = 170; + this.match(WhiteboxParser.LOREM); + this.state = 179; + this._errHandler.sync(this); + switch ( this._interp.adaptivePredict(this._input, 15, this._ctx) ) { + case 1: + { + this.state = 171; + this.match(WhiteboxParser.IPSUM); + this.state = 172; + this.match(WhiteboxParser.DOLOR); + this.state = 173; + this.match(WhiteboxParser.SIT); + this.state = 174; + this.match(WhiteboxParser.AMET); } + break; + case 2: + { + this.state = 175; + this.match(WhiteboxParser.IPSUM); + this.state = 176; + this.match(WhiteboxParser.DOLOR); + this.state = 177; + this.match(WhiteboxParser.SIT); + this.state = 178; + this.match(WhiteboxParser.CONSECTETUR); + } + break; + } } } catch (re) { @@ -962,63 +968,63 @@ export class WhiteboxParser extends antlr.Parser { } public static readonly _serializedATN: number[] = [ - 4, 1, 8, 182, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, - 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 61, 8, 2, 10, 2, 12, 2, 64, 9, 2, 1, 2, 3, 2, 67, 8, 2, 1, - 3, 1, 3, 3, 3, 71, 8, 3, 1, 4, 3, 4, 74, 8, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, - 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 88, 8, 8, 10, 8, 12, 8, 91, 9, 8, 1, 8, 3, 8, 94, 8, 8, 1, 9, 1, - 9, 3, 9, 98, 8, 9, 1, 10, 3, 10, 101, 8, 10, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 107, 8, 12, - 1, 12, 1, 12, 4, 12, 111, 8, 12, 11, 12, 12, 12, 112, 1, 12, 1, 12, 1, 13, 5, 13, 118, - 8, 13, 10, 13, 12, 13, 121, 9, 13, 1, 14, 1, 14, 1, 14, 3, 14, 126, 8, 14, 1, 15, 1, 15, - 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 3, 17, 139, 8, 17, 1, 18, - 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 3, 20, 152, 8, 20, - 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, - 1, 23, 1, 23, 3, 23, 169, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, - 1, 24, 3, 24, 180, 8, 24, 1, 24, 0, 0, 25, 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, 0, 3, 1, 0, 3, 4, 2, 0, 4, 4, 6, 6, 1, 0, - 5, 6, 172, 0, 50, 1, 0, 0, 0, 2, 53, 1, 0, 0, 0, 4, 56, 1, 0, 0, 0, 6, 68, 1, 0, 0, 0, 8, 73, - 1, 0, 0, 0, 10, 75, 1, 0, 0, 0, 12, 77, 1, 0, 0, 0, 14, 80, 1, 0, 0, 0, 16, 83, 1, 0, 0, 0, - 18, 95, 1, 0, 0, 0, 20, 100, 1, 0, 0, 0, 22, 102, 1, 0, 0, 0, 24, 104, 1, 0, 0, 0, 26, 119, - 1, 0, 0, 0, 28, 122, 1, 0, 0, 0, 30, 127, 1, 0, 0, 0, 32, 131, 1, 0, 0, 0, 34, 135, 1, 0, - 0, 0, 36, 140, 1, 0, 0, 0, 38, 144, 1, 0, 0, 0, 40, 148, 1, 0, 0, 0, 42, 153, 1, 0, 0, 0, - 44, 157, 1, 0, 0, 0, 46, 161, 1, 0, 0, 0, 48, 170, 1, 0, 0, 0, 50, 51, 3, 2, 1, 0, 51, 52, - 5, 7, 0, 0, 52, 1, 1, 0, 0, 0, 53, 54, 3, 4, 2, 0, 54, 55, 5, 6, 0, 0, 55, 3, 1, 0, 0, 0, 56, - 57, 5, 1, 0, 0, 57, 58, 3, 6, 3, 0, 58, 62, 3, 10, 5, 0, 59, 61, 5, 4, 0, 0, 60, 59, 1, 0, - 0, 0, 61, 64, 1, 0, 0, 0, 62, 60, 1, 0, 0, 0, 62, 63, 1, 0, 0, 0, 63, 66, 1, 0, 0, 0, 64, 62, - 1, 0, 0, 0, 65, 67, 5, 5, 0, 0, 66, 65, 1, 0, 0, 0, 66, 67, 1, 0, 0, 0, 67, 5, 1, 0, 0, 0, 68, - 70, 3, 8, 4, 0, 69, 71, 5, 3, 0, 0, 70, 69, 1, 0, 0, 0, 70, 71, 1, 0, 0, 0, 71, 7, 1, 0, 0, - 0, 72, 74, 5, 2, 0, 0, 73, 72, 1, 0, 0, 0, 73, 74, 1, 0, 0, 0, 74, 9, 1, 0, 0, 0, 75, 76, 1, - 0, 0, 0, 76, 11, 1, 0, 0, 0, 77, 78, 3, 14, 7, 0, 78, 79, 5, 7, 0, 0, 79, 13, 1, 0, 0, 0, 80, - 81, 3, 16, 8, 0, 81, 82, 5, 6, 0, 0, 82, 15, 1, 0, 0, 0, 83, 84, 5, 1, 0, 0, 84, 85, 3, 22, - 11, 0, 85, 89, 3, 18, 9, 0, 86, 88, 5, 4, 0, 0, 87, 86, 1, 0, 0, 0, 88, 91, 1, 0, 0, 0, 89, - 87, 1, 0, 0, 0, 89, 90, 1, 0, 0, 0, 90, 93, 1, 0, 0, 0, 91, 89, 1, 0, 0, 0, 92, 94, 5, 5, 0, - 0, 93, 92, 1, 0, 0, 0, 93, 94, 1, 0, 0, 0, 94, 17, 1, 0, 0, 0, 95, 97, 3, 20, 10, 0, 96, 98, - 5, 3, 0, 0, 97, 96, 1, 0, 0, 0, 97, 98, 1, 0, 0, 0, 98, 19, 1, 0, 0, 0, 99, 101, 5, 2, 0, 0, - 100, 99, 1, 0, 0, 0, 100, 101, 1, 0, 0, 0, 101, 21, 1, 0, 0, 0, 102, 103, 1, 0, 0, 0, 103, - 23, 1, 0, 0, 0, 104, 106, 5, 1, 0, 0, 105, 107, 5, 2, 0, 0, 106, 105, 1, 0, 0, 0, 106, 107, - 1, 0, 0, 0, 107, 108, 1, 0, 0, 0, 108, 110, 3, 26, 13, 0, 109, 111, 5, 5, 0, 0, 110, 109, - 1, 0, 0, 0, 111, 112, 1, 0, 0, 0, 112, 110, 1, 0, 0, 0, 112, 113, 1, 0, 0, 0, 113, 114, - 1, 0, 0, 0, 114, 115, 5, 6, 0, 0, 115, 25, 1, 0, 0, 0, 116, 118, 7, 0, 0, 0, 117, 116, 1, - 0, 0, 0, 118, 121, 1, 0, 0, 0, 119, 117, 1, 0, 0, 0, 119, 120, 1, 0, 0, 0, 120, 27, 1, 0, - 0, 0, 121, 119, 1, 0, 0, 0, 122, 125, 5, 1, 0, 0, 123, 126, 3, 30, 15, 0, 124, 126, 3, - 32, 16, 0, 125, 123, 1, 0, 0, 0, 125, 124, 1, 0, 0, 0, 126, 29, 1, 0, 0, 0, 127, 128, 5, - 2, 0, 0, 128, 129, 5, 3, 0, 0, 129, 130, 5, 4, 0, 0, 130, 31, 1, 0, 0, 0, 131, 132, 5, 2, - 0, 0, 132, 133, 5, 3, 0, 0, 133, 134, 5, 5, 0, 0, 134, 33, 1, 0, 0, 0, 135, 138, 5, 1, 0, - 0, 136, 139, 3, 30, 15, 0, 137, 139, 3, 32, 16, 0, 138, 136, 1, 0, 0, 0, 138, 137, 1, - 0, 0, 0, 139, 35, 1, 0, 0, 0, 140, 141, 5, 2, 0, 0, 141, 142, 5, 3, 0, 0, 142, 143, 7, 1, - 0, 0, 143, 37, 1, 0, 0, 0, 144, 145, 5, 2, 0, 0, 145, 146, 5, 3, 0, 0, 146, 147, 5, 5, 0, - 0, 147, 39, 1, 0, 0, 0, 148, 151, 5, 1, 0, 0, 149, 152, 3, 30, 15, 0, 150, 152, 3, 32, - 16, 0, 151, 149, 1, 0, 0, 0, 151, 150, 1, 0, 0, 0, 152, 41, 1, 0, 0, 0, 153, 154, 5, 2, - 0, 0, 154, 155, 5, 3, 0, 0, 155, 156, 5, 4, 0, 0, 156, 43, 1, 0, 0, 0, 157, 158, 5, 2, 0, - 0, 158, 159, 5, 3, 0, 0, 159, 160, 7, 2, 0, 0, 160, 45, 1, 0, 0, 0, 161, 168, 5, 1, 0, 0, - 162, 163, 5, 2, 0, 0, 163, 164, 5, 3, 0, 0, 164, 169, 5, 4, 0, 0, 165, 166, 5, 2, 0, 0, - 166, 167, 5, 3, 0, 0, 167, 169, 5, 5, 0, 0, 168, 162, 1, 0, 0, 0, 168, 165, 1, 0, 0, 0, - 169, 47, 1, 0, 0, 0, 170, 179, 5, 1, 0, 0, 171, 172, 5, 2, 0, 0, 172, 173, 5, 3, 0, 0, 173, - 174, 5, 4, 0, 0, 174, 180, 5, 5, 0, 0, 175, 176, 5, 2, 0, 0, 176, 177, 5, 3, 0, 0, 177, - 178, 5, 4, 0, 0, 178, 180, 5, 6, 0, 0, 179, 171, 1, 0, 0, 0, 179, 175, 1, 0, 0, 0, 180, - 49, 1, 0, 0, 0, 16, 62, 66, 70, 73, 89, 93, 97, 100, 106, 112, 119, 125, 138, 151, 168, + 4,1,8,182,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,1,0,1,0,1,0,1,1,1,1, + 1,1,1,2,1,2,1,2,1,2,5,2,61,8,2,10,2,12,2,64,9,2,1,2,3,2,67,8,2,1, + 3,1,3,3,3,71,8,3,1,4,3,4,74,8,4,1,5,1,5,1,6,1,6,1,6,1,7,1,7,1,7, + 1,8,1,8,1,8,1,8,5,8,88,8,8,10,8,12,8,91,9,8,1,8,3,8,94,8,8,1,9,1, + 9,3,9,98,8,9,1,10,3,10,101,8,10,1,11,1,11,1,12,1,12,3,12,107,8,12, + 1,12,1,12,4,12,111,8,12,11,12,12,12,112,1,12,1,12,1,13,5,13,118, + 8,13,10,13,12,13,121,9,13,1,14,1,14,1,14,3,14,126,8,14,1,15,1,15, + 1,15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,3,17,139,8,17,1,18, + 1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,20,1,20,1,20,3,20,152,8,20, + 1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,23,1,23,1,23,1,23,1,23, + 1,23,1,23,3,23,169,8,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,24,3,24,180,8,24,1,24,0,0,25,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,0,3,1,0,3,4,2,0,4,4,6,6,1,0, + 5,6,172,0,50,1,0,0,0,2,53,1,0,0,0,4,56,1,0,0,0,6,68,1,0,0,0,8,73, + 1,0,0,0,10,75,1,0,0,0,12,77,1,0,0,0,14,80,1,0,0,0,16,83,1,0,0,0, + 18,95,1,0,0,0,20,100,1,0,0,0,22,102,1,0,0,0,24,104,1,0,0,0,26,119, + 1,0,0,0,28,122,1,0,0,0,30,127,1,0,0,0,32,131,1,0,0,0,34,135,1,0, + 0,0,36,140,1,0,0,0,38,144,1,0,0,0,40,148,1,0,0,0,42,153,1,0,0,0, + 44,157,1,0,0,0,46,161,1,0,0,0,48,170,1,0,0,0,50,51,3,2,1,0,51,52, + 5,7,0,0,52,1,1,0,0,0,53,54,3,4,2,0,54,55,5,6,0,0,55,3,1,0,0,0,56, + 57,5,1,0,0,57,58,3,6,3,0,58,62,3,10,5,0,59,61,5,4,0,0,60,59,1,0, + 0,0,61,64,1,0,0,0,62,60,1,0,0,0,62,63,1,0,0,0,63,66,1,0,0,0,64,62, + 1,0,0,0,65,67,5,5,0,0,66,65,1,0,0,0,66,67,1,0,0,0,67,5,1,0,0,0,68, + 70,3,8,4,0,69,71,5,3,0,0,70,69,1,0,0,0,70,71,1,0,0,0,71,7,1,0,0, + 0,72,74,5,2,0,0,73,72,1,0,0,0,73,74,1,0,0,0,74,9,1,0,0,0,75,76,1, + 0,0,0,76,11,1,0,0,0,77,78,3,14,7,0,78,79,5,7,0,0,79,13,1,0,0,0,80, + 81,3,16,8,0,81,82,5,6,0,0,82,15,1,0,0,0,83,84,5,1,0,0,84,85,3,22, + 11,0,85,89,3,18,9,0,86,88,5,4,0,0,87,86,1,0,0,0,88,91,1,0,0,0,89, + 87,1,0,0,0,89,90,1,0,0,0,90,93,1,0,0,0,91,89,1,0,0,0,92,94,5,5,0, + 0,93,92,1,0,0,0,93,94,1,0,0,0,94,17,1,0,0,0,95,97,3,20,10,0,96,98, + 5,3,0,0,97,96,1,0,0,0,97,98,1,0,0,0,98,19,1,0,0,0,99,101,5,2,0,0, + 100,99,1,0,0,0,100,101,1,0,0,0,101,21,1,0,0,0,102,103,1,0,0,0,103, + 23,1,0,0,0,104,106,5,1,0,0,105,107,5,2,0,0,106,105,1,0,0,0,106,107, + 1,0,0,0,107,108,1,0,0,0,108,110,3,26,13,0,109,111,5,5,0,0,110,109, + 1,0,0,0,111,112,1,0,0,0,112,110,1,0,0,0,112,113,1,0,0,0,113,114, + 1,0,0,0,114,115,5,6,0,0,115,25,1,0,0,0,116,118,7,0,0,0,117,116,1, + 0,0,0,118,121,1,0,0,0,119,117,1,0,0,0,119,120,1,0,0,0,120,27,1,0, + 0,0,121,119,1,0,0,0,122,125,5,1,0,0,123,126,3,30,15,0,124,126,3, + 32,16,0,125,123,1,0,0,0,125,124,1,0,0,0,126,29,1,0,0,0,127,128,5, + 2,0,0,128,129,5,3,0,0,129,130,5,4,0,0,130,31,1,0,0,0,131,132,5,2, + 0,0,132,133,5,3,0,0,133,134,5,5,0,0,134,33,1,0,0,0,135,138,5,1,0, + 0,136,139,3,30,15,0,137,139,3,32,16,0,138,136,1,0,0,0,138,137,1, + 0,0,0,139,35,1,0,0,0,140,141,5,2,0,0,141,142,5,3,0,0,142,143,7,1, + 0,0,143,37,1,0,0,0,144,145,5,2,0,0,145,146,5,3,0,0,146,147,5,5,0, + 0,147,39,1,0,0,0,148,151,5,1,0,0,149,152,3,30,15,0,150,152,3,32, + 16,0,151,149,1,0,0,0,151,150,1,0,0,0,152,41,1,0,0,0,153,154,5,2, + 0,0,154,155,5,3,0,0,155,156,5,4,0,0,156,43,1,0,0,0,157,158,5,2,0, + 0,158,159,5,3,0,0,159,160,7,2,0,0,160,45,1,0,0,0,161,168,5,1,0,0, + 162,163,5,2,0,0,163,164,5,3,0,0,164,169,5,4,0,0,165,166,5,2,0,0, + 166,167,5,3,0,0,167,169,5,5,0,0,168,162,1,0,0,0,168,165,1,0,0,0, + 169,47,1,0,0,0,170,179,5,1,0,0,171,172,5,2,0,0,172,173,5,3,0,0,173, + 174,5,4,0,0,174,180,5,5,0,0,175,176,5,2,0,0,176,177,5,3,0,0,177, + 178,5,4,0,0,178,180,5,6,0,0,179,171,1,0,0,0,179,175,1,0,0,0,180, + 49,1,0,0,0,16,62,66,70,73,89,93,97,100,106,112,119,125,138,151,168, 179 ]; @@ -1038,7 +1044,7 @@ export class WhiteboxParser extends antlr.Parser { return WhiteboxParser.vocabulary; } - private static readonly decisionsToDFA = WhiteboxParser._ATN.decisionToState.map((ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index)); + private static readonly decisionsToDFA = WhiteboxParser._ATN.decisionToState.map( (ds: antlr.DecisionState, index: number) => new antlr.DFA(ds, index) ); } export class Test1Context extends antlr.ParserRuleContext { @@ -1087,7 +1093,7 @@ export class Rule2Context extends antlr.ParserRuleContext { return this.getTypedRuleContext(Rule5Context, 0); } public SIT__list(): antlr.TerminalNode[] { - return this.getTokens(WhiteboxParser.SIT); + return this.getTokens(WhiteboxParser.SIT); } public SIT(i: number): antlr.TerminalNode { return this.getToken(WhiteboxParser.SIT, i); @@ -1186,7 +1192,7 @@ export class Rule8Context extends antlr.ParserRuleContext { return this.getTypedRuleContext(Rule9Context, 0); } public SIT__list(): antlr.TerminalNode[] { - return this.getTokens(WhiteboxParser.SIT); + return this.getTokens(WhiteboxParser.SIT); } public SIT(i: number): antlr.TerminalNode { return this.getToken(WhiteboxParser.SIT, i); @@ -1256,7 +1262,7 @@ export class Test3Context extends antlr.ParserRuleContext { return this.getToken(WhiteboxParser.IPSUM, 0); } public AMET__list(): antlr.TerminalNode[] { - return this.getTokens(WhiteboxParser.AMET); + return this.getTokens(WhiteboxParser.AMET); } public AMET(i: number): antlr.TerminalNode { return this.getToken(WhiteboxParser.AMET, i); @@ -1272,13 +1278,13 @@ export class Rule13Context extends antlr.ParserRuleContext { super(parent, invokingState); } public DOLOR__list(): antlr.TerminalNode[] { - return this.getTokens(WhiteboxParser.DOLOR); + return this.getTokens(WhiteboxParser.DOLOR); } public DOLOR(i: number): antlr.TerminalNode { return this.getToken(WhiteboxParser.DOLOR, i); } public SIT__list(): antlr.TerminalNode[] { - return this.getTokens(WhiteboxParser.SIT); + return this.getTokens(WhiteboxParser.SIT); } public SIT(i: number): antlr.TerminalNode { return this.getToken(WhiteboxParser.SIT, i);