Commit 6b2c305c authored by Tobias Tebbi's avatar Tobias Tebbi Committed by Commit Bot

[torque] allow templates without body

Change-Id: Ie61c8fa51c7c13ab74c4c97ed6803be7f879a549
Reviewed-on: https://chromium-review.googlesource.com/1069088
Commit-Queue: Tobias Tebbi <tebbi@chromium.org>
Reviewed-by: 's avatarSigurd Schneider <sigurds@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53293}
parent 6e91806b
...@@ -296,10 +296,7 @@ extern macro ExtractFixedArray( ...@@ -296,10 +296,7 @@ extern macro ExtractFixedArray(
extern builtin ExtractFastJSArray(Context, JSArray, Smi, Smi): JSArray; extern builtin ExtractFastJSArray(Context, JSArray, Smi, Smi): JSArray;
macro LoadElementNoHole<T : type>(a: JSArray, index: Smi): Object macro LoadElementNoHole<T : type>(a: JSArray, index: Smi): Object labels IfHole;
labels IfHole {
unreachable;
}
LoadElementNoHole<FixedArray>(a: JSArray, index: Smi): Object LoadElementNoHole<FixedArray>(a: JSArray, index: Smi): Object
labels IfHole { labels IfHole {
......
...@@ -275,9 +275,9 @@ typeAliasDeclaration : 'type' IDENTIFIER '=' type ';'; ...@@ -275,9 +275,9 @@ typeAliasDeclaration : 'type' IDENTIFIER '=' type ';';
externalBuiltin : EXTERN JAVASCRIPT? BUILTIN IDENTIFIER optionalGenericTypeList '(' typeList ')' optionalType ';'; externalBuiltin : EXTERN JAVASCRIPT? BUILTIN IDENTIFIER optionalGenericTypeList '(' typeList ')' optionalType ';';
externalMacro : EXTERN (IMPLICIT? 'operator' STRING_LITERAL)? MACRO IDENTIFIER optionalGenericTypeList typeListMaybeVarArgs optionalType optionalLabelList ';'; externalMacro : EXTERN (IMPLICIT? 'operator' STRING_LITERAL)? MACRO IDENTIFIER optionalGenericTypeList typeListMaybeVarArgs optionalType optionalLabelList ';';
externalRuntime : EXTERN RUNTIME IDENTIFIER typeListMaybeVarArgs optionalType ';'; externalRuntime : EXTERN RUNTIME IDENTIFIER typeListMaybeVarArgs optionalType ';';
builtinDeclaration : JAVASCRIPT? BUILTIN IDENTIFIER optionalGenericTypeList parameterList optionalType helperBody; builtinDeclaration : JAVASCRIPT? BUILTIN IDENTIFIER optionalGenericTypeList parameterList optionalType (helperBody | ';');
genericSpecialization: IDENTIFIER genericSpecializationTypeList parameterList optionalType optionalLabelList helperBody; genericSpecialization: IDENTIFIER genericSpecializationTypeList parameterList optionalType optionalLabelList helperBody;
macroDeclaration : MACRO IDENTIFIER optionalGenericTypeList parameterList optionalType optionalLabelList helperBody; macroDeclaration : MACRO IDENTIFIER optionalGenericTypeList parameterList optionalType optionalLabelList (helperBody | ';');
constDeclaration : 'const' IDENTIFIER ':' type '=' STRING_LITERAL ';'; constDeclaration : 'const' IDENTIFIER ':' type '=' STRING_LITERAL ';';
declaration declaration
......
...@@ -5923,8 +5923,25 @@ TorqueParser::BuiltinDeclarationContext* TorqueParser::builtinDeclaration() { ...@@ -5923,8 +5923,25 @@ TorqueParser::BuiltinDeclarationContext* TorqueParser::builtinDeclaration() {
parameterList(); parameterList();
setState(699); setState(699);
optionalType(); optionalType();
setState(702);
_errHandler->sync(this);
switch (_input->LA(1)) {
case TorqueParser::T__15:
case TorqueParser::DEFERRED: {
setState(700); setState(700);
helperBody(); helperBody();
break;
}
case TorqueParser::T__12: {
setState(701);
match(TorqueParser::T__12);
break;
}
default:
throw NoViableAltException(this);
}
} catch (RecognitionException& e) { } catch (RecognitionException& e) {
_errHandler->reportError(this, e); _errHandler->reportError(this, e);
...@@ -6006,17 +6023,17 @@ TorqueParser::genericSpecialization() { ...@@ -6006,17 +6023,17 @@ TorqueParser::genericSpecialization() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(702); setState(704);
match(TorqueParser::IDENTIFIER); match(TorqueParser::IDENTIFIER);
setState(703); setState(705);
genericSpecializationTypeList(); genericSpecializationTypeList();
setState(704); setState(706);
parameterList(); parameterList();
setState(705); setState(707);
optionalType(); optionalType();
setState(706); setState(708);
optionalLabelList(); optionalLabelList();
setState(707); setState(709);
helperBody(); helperBody();
} catch (RecognitionException& e) { } catch (RecognitionException& e) {
...@@ -6100,20 +6117,37 @@ TorqueParser::MacroDeclarationContext* TorqueParser::macroDeclaration() { ...@@ -6100,20 +6117,37 @@ TorqueParser::MacroDeclarationContext* TorqueParser::macroDeclaration() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(709); setState(711);
match(TorqueParser::MACRO); match(TorqueParser::MACRO);
setState(710); setState(712);
match(TorqueParser::IDENTIFIER); match(TorqueParser::IDENTIFIER);
setState(711); setState(713);
optionalGenericTypeList(); optionalGenericTypeList();
setState(712); setState(714);
parameterList(); parameterList();
setState(713); setState(715);
optionalType(); optionalType();
setState(714); setState(716);
optionalLabelList(); optionalLabelList();
setState(715); setState(719);
_errHandler->sync(this);
switch (_input->LA(1)) {
case TorqueParser::T__15:
case TorqueParser::DEFERRED: {
setState(717);
helperBody(); helperBody();
break;
}
case TorqueParser::T__12: {
setState(718);
match(TorqueParser::T__12);
break;
}
default:
throw NoViableAltException(this);
}
} catch (RecognitionException& e) { } catch (RecognitionException& e) {
_errHandler->reportError(this, e); _errHandler->reportError(this, e);
...@@ -6175,19 +6209,19 @@ TorqueParser::ConstDeclarationContext* TorqueParser::constDeclaration() { ...@@ -6175,19 +6209,19 @@ TorqueParser::ConstDeclarationContext* TorqueParser::constDeclaration() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(717); setState(721);
match(TorqueParser::T__20); match(TorqueParser::T__20);
setState(718); setState(722);
match(TorqueParser::IDENTIFIER); match(TorqueParser::IDENTIFIER);
setState(719); setState(723);
match(TorqueParser::T__4); match(TorqueParser::T__4);
setState(720); setState(724);
type(); type();
setState(721); setState(725);
match(TorqueParser::ASSIGNMENT); match(TorqueParser::ASSIGNMENT);
setState(722); setState(726);
match(TorqueParser::STRING_LITERAL); match(TorqueParser::STRING_LITERAL);
setState(723); setState(727);
match(TorqueParser::T__12); match(TorqueParser::T__12);
} catch (RecognitionException& e) { } catch (RecognitionException& e) {
...@@ -6282,69 +6316,69 @@ TorqueParser::DeclarationContext* TorqueParser::declaration() { ...@@ -6282,69 +6316,69 @@ TorqueParser::DeclarationContext* TorqueParser::declaration() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
setState(734); setState(738);
_errHandler->sync(this); _errHandler->sync(this);
switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict( switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(
_input, 66, _ctx)) { _input, 68, _ctx)) {
case 1: { case 1: {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(725); setState(729);
typeDeclaration(); typeDeclaration();
break; break;
} }
case 2: { case 2: {
enterOuterAlt(_localctx, 2); enterOuterAlt(_localctx, 2);
setState(726); setState(730);
typeAliasDeclaration(); typeAliasDeclaration();
break; break;
} }
case 3: { case 3: {
enterOuterAlt(_localctx, 3); enterOuterAlt(_localctx, 3);
setState(727); setState(731);
builtinDeclaration(); builtinDeclaration();
break; break;
} }
case 4: { case 4: {
enterOuterAlt(_localctx, 4); enterOuterAlt(_localctx, 4);
setState(728); setState(732);
genericSpecialization(); genericSpecialization();
break; break;
} }
case 5: { case 5: {
enterOuterAlt(_localctx, 5); enterOuterAlt(_localctx, 5);
setState(729); setState(733);
macroDeclaration(); macroDeclaration();
break; break;
} }
case 6: { case 6: {
enterOuterAlt(_localctx, 6); enterOuterAlt(_localctx, 6);
setState(730); setState(734);
externalMacro(); externalMacro();
break; break;
} }
case 7: { case 7: {
enterOuterAlt(_localctx, 7); enterOuterAlt(_localctx, 7);
setState(731); setState(735);
externalBuiltin(); externalBuiltin();
break; break;
} }
case 8: { case 8: {
enterOuterAlt(_localctx, 8); enterOuterAlt(_localctx, 8);
setState(732); setState(736);
externalRuntime(); externalRuntime();
break; break;
} }
case 9: { case 9: {
enterOuterAlt(_localctx, 9); enterOuterAlt(_localctx, 9);
setState(733); setState(737);
constDeclaration(); constDeclaration();
break; break;
} }
...@@ -6417,13 +6451,13 @@ TorqueParser::ModuleDeclarationContext* TorqueParser::moduleDeclaration() { ...@@ -6417,13 +6451,13 @@ TorqueParser::ModuleDeclarationContext* TorqueParser::moduleDeclaration() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(736); setState(740);
match(TorqueParser::MODULE); match(TorqueParser::MODULE);
setState(737); setState(741);
match(TorqueParser::IDENTIFIER); match(TorqueParser::IDENTIFIER);
setState(738);
match(TorqueParser::T__15);
setState(742); setState(742);
match(TorqueParser::T__15);
setState(746);
_errHandler->sync(this); _errHandler->sync(this);
_la = _input->LA(1); _la = _input->LA(1);
while ((((_la & ~0x3fULL) == 0) && while ((((_la & ~0x3fULL) == 0) &&
...@@ -6433,13 +6467,13 @@ TorqueParser::ModuleDeclarationContext* TorqueParser::moduleDeclaration() { ...@@ -6433,13 +6467,13 @@ TorqueParser::ModuleDeclarationContext* TorqueParser::moduleDeclaration() {
(1ULL << TorqueParser::JAVASCRIPT) | (1ULL << TorqueParser::JAVASCRIPT) |
(1ULL << TorqueParser::EXTERN))) != 0) || (1ULL << TorqueParser::EXTERN))) != 0) ||
_la == TorqueParser::IDENTIFIER) { _la == TorqueParser::IDENTIFIER) {
setState(739); setState(743);
declaration(); declaration();
setState(744); setState(748);
_errHandler->sync(this); _errHandler->sync(this);
_la = _input->LA(1); _la = _input->LA(1);
} }
setState(745); setState(749);
match(TorqueParser::T__16); match(TorqueParser::T__16);
} catch (RecognitionException& e) { } catch (RecognitionException& e) {
...@@ -6509,7 +6543,7 @@ TorqueParser::FileContext* TorqueParser::file() { ...@@ -6509,7 +6543,7 @@ TorqueParser::FileContext* TorqueParser::file() {
auto onExit = finally([=] { exitRule(); }); auto onExit = finally([=] { exitRule(); });
try { try {
enterOuterAlt(_localctx, 1); enterOuterAlt(_localctx, 1);
setState(751); setState(755);
_errHandler->sync(this); _errHandler->sync(this);
_la = _input->LA(1); _la = _input->LA(1);
while ( while (
...@@ -6520,11 +6554,11 @@ TorqueParser::FileContext* TorqueParser::file() { ...@@ -6520,11 +6554,11 @@ TorqueParser::FileContext* TorqueParser::file() {
(1ULL << TorqueParser::MODULE) | (1ULL << TorqueParser::JAVASCRIPT) | (1ULL << TorqueParser::MODULE) | (1ULL << TorqueParser::JAVASCRIPT) |
(1ULL << TorqueParser::EXTERN))) != 0) || (1ULL << TorqueParser::EXTERN))) != 0) ||
_la == TorqueParser::IDENTIFIER) { _la == TorqueParser::IDENTIFIER) {
setState(749); setState(753);
_errHandler->sync(this); _errHandler->sync(this);
switch (_input->LA(1)) { switch (_input->LA(1)) {
case TorqueParser::MODULE: { case TorqueParser::MODULE: {
setState(747); setState(751);
moduleDeclaration(); moduleDeclaration();
break; break;
} }
...@@ -6536,7 +6570,7 @@ TorqueParser::FileContext* TorqueParser::file() { ...@@ -6536,7 +6570,7 @@ TorqueParser::FileContext* TorqueParser::file() {
case TorqueParser::JAVASCRIPT: case TorqueParser::JAVASCRIPT:
case TorqueParser::EXTERN: case TorqueParser::EXTERN:
case TorqueParser::IDENTIFIER: { case TorqueParser::IDENTIFIER: {
setState(748); setState(752);
declaration(); declaration();
break; break;
} }
...@@ -6544,7 +6578,7 @@ TorqueParser::FileContext* TorqueParser::file() { ...@@ -6544,7 +6578,7 @@ TorqueParser::FileContext* TorqueParser::file() {
default: default:
throw NoViableAltException(this); throw NoViableAltException(this);
} }
setState(753); setState(757);
_errHandler->sync(this); _errHandler->sync(this);
_la = _input->LA(1); _la = _input->LA(1);
} }
...@@ -6986,7 +7020,7 @@ TorqueParser::Initializer::Initializer() { ...@@ -6986,7 +7020,7 @@ TorqueParser::Initializer::Initializer() {
_serializedATN = { _serializedATN = {
0x3, 0x608b, 0xa72a, 0x8133, 0xb9ed, 0x417c, 0x3be7, 0x7786, 0x5964, 0x3, 0x608b, 0xa72a, 0x8133, 0xb9ed, 0x417c, 0x3be7, 0x7786, 0x5964,
0x3, 0x55, 0x2f5, 0x4, 0x2, 0x9, 0x2, 0x4, 0x3, 0x3, 0x55, 0x2f9, 0x4, 0x2, 0x9, 0x2, 0x4, 0x3,
0x9, 0x3, 0x4, 0x4, 0x9, 0x4, 0x4, 0x5, 0x9, 0x9, 0x3, 0x4, 0x4, 0x9, 0x4, 0x4, 0x5, 0x9,
0x5, 0x4, 0x6, 0x9, 0x6, 0x4, 0x7, 0x9, 0x7, 0x5, 0x4, 0x6, 0x9, 0x6, 0x4, 0x7, 0x9, 0x7,
0x4, 0x8, 0x9, 0x8, 0x4, 0x9, 0x9, 0x9, 0x4, 0x4, 0x8, 0x9, 0x8, 0x4, 0x9, 0x9, 0x9, 0x4,
...@@ -7151,561 +7185,567 @@ TorqueParser::Initializer::Initializer() { ...@@ -7151,561 +7185,567 @@ TorqueParser::Initializer::Initializer() {
0x3, 0x40, 0x3, 0x40, 0x3, 0x40, 0x3, 0x40, 0x3, 0x3, 0x40, 0x3, 0x40, 0x3, 0x40, 0x3, 0x40, 0x3,
0x40, 0x3, 0x40, 0x3, 0x41, 0x5, 0x41, 0x2b8, 0xa, 0x40, 0x3, 0x40, 0x3, 0x41, 0x5, 0x41, 0x2b8, 0xa,
0x41, 0x3, 0x41, 0x3, 0x41, 0x3, 0x41, 0x3, 0x41, 0x41, 0x3, 0x41, 0x3, 0x41, 0x3, 0x41, 0x3, 0x41,
0x3, 0x41, 0x3, 0x41, 0x3, 0x41, 0x3, 0x42, 0x3, 0x3, 0x41, 0x3, 0x41, 0x3, 0x41, 0x5, 0x41, 0x2c1,
0x42, 0x3, 0x42, 0x3, 0x42, 0x3, 0x42, 0x3, 0x42, 0xa, 0x41, 0x3, 0x42, 0x3, 0x42, 0x3, 0x42, 0x3,
0x3, 0x42, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x42, 0x3, 0x42, 0x3, 0x42, 0x3, 0x42, 0x3, 0x43,
0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3, 0x43, 0x3,
0x43, 0x3, 0x43, 0x3, 0x43, 0x5, 0x43, 0x2d2, 0xa,
0x43, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44,
0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3,
0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x44, 0x3, 0x45, 0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45,
0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x5,
0x45, 0x3, 0x45, 0x3, 0x45, 0x3, 0x45, 0x5, 0x45, 0x45, 0x2e5, 0xa, 0x45, 0x3, 0x46, 0x3, 0x46, 0x3,
0x2e1, 0xa, 0x45, 0x3, 0x46, 0x3, 0x46, 0x3, 0x46, 0x46, 0x3, 0x46, 0x7, 0x46, 0x2eb, 0xa, 0x46, 0xc,
0x3, 0x46, 0x7, 0x46, 0x2e7, 0xa, 0x46, 0xc, 0x46, 0x46, 0xe, 0x46, 0x2ee, 0xb, 0x46, 0x3, 0x46, 0x3,
0xe, 0x46, 0x2ea, 0xb, 0x46, 0x3, 0x46, 0x3, 0x46, 0x46, 0x3, 0x47, 0x3, 0x47, 0x7, 0x47, 0x2f4, 0xa,
0x3, 0x47, 0x3, 0x47, 0x7, 0x47, 0x2f0, 0xa, 0x47, 0x47, 0xc, 0x47, 0xe, 0x47, 0x2f7, 0xb, 0x47, 0x3,
0xc, 0x47, 0xe, 0x47, 0x2f3, 0xb, 0x47, 0x3, 0x47, 0x47, 0x2, 0xc, 0x1c, 0x1e, 0x20, 0x22, 0x24, 0x26,
0x2, 0xc, 0x1c, 0x1e, 0x20, 0x22, 0x24, 0x26, 0x28, 0x28, 0x2a, 0x2c, 0x30, 0x48, 0x2, 0x4, 0x6, 0x8,
0x2a, 0x2c, 0x30, 0x48, 0x2, 0x4, 0x6, 0x8, 0xa, 0xa, 0xc, 0xe, 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a,
0xc, 0xe, 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1c, 0x1e, 0x20, 0x22, 0x24, 0x26, 0x28, 0x2a, 0x2c,
0x1e, 0x20, 0x22, 0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2e, 0x2e, 0x30, 0x32, 0x34, 0x36, 0x38, 0x3a, 0x3c, 0x3e,
0x30, 0x32, 0x34, 0x36, 0x38, 0x3a, 0x3c, 0x3e, 0x40, 0x40, 0x42, 0x44, 0x46, 0x48, 0x4a, 0x4c, 0x4e, 0x50,
0x42, 0x44, 0x46, 0x48, 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x52, 0x54, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x62,
0x54, 0x56, 0x58, 0x5a, 0x5c, 0x5e, 0x60, 0x62, 0x64, 0x64, 0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x74,
0x66, 0x68, 0x6a, 0x6c, 0x6e, 0x70, 0x72, 0x74, 0x76, 0x76, 0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x86,
0x78, 0x7a, 0x7c, 0x7e, 0x80, 0x82, 0x84, 0x86, 0x88, 0x88, 0x8a, 0x8c, 0x2, 0xb, 0x3, 0x2, 0x3e, 0x3f,
0x8a, 0x8c, 0x2, 0xb, 0x3, 0x2, 0x3e, 0x3f, 0x4, 0x4, 0x2, 0x38, 0x38, 0x43, 0x43, 0x3, 0x2, 0x44,
0x2, 0x38, 0x38, 0x43, 0x43, 0x3, 0x2, 0x44, 0x47, 0x47, 0x3, 0x2, 0x48, 0x4a, 0x3, 0x2, 0x39, 0x3a,
0x3, 0x2, 0x48, 0x4a, 0x3, 0x2, 0x39, 0x3a, 0x3, 0x3, 0x2, 0x3b, 0x3d, 0x5, 0x2, 0x39, 0x3a, 0x40,
0x2, 0x3b, 0x3d, 0x5, 0x2, 0x39, 0x3a, 0x40, 0x40, 0x40, 0x4f, 0x4f, 0x3, 0x2, 0x36, 0x37, 0x4, 0x2,
0x4f, 0x4f, 0x3, 0x2, 0x36, 0x37, 0x4, 0x2, 0x41, 0x41, 0x42, 0x51, 0x51, 0x2, 0x313, 0x2, 0x99, 0x3,
0x42, 0x51, 0x51, 0x2, 0x30d, 0x2, 0x99, 0x3, 0x2, 0x2, 0x2, 0x2, 0x4, 0xa3, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x4, 0xa3, 0x3, 0x2, 0x2, 0x2, 0x6, 0x6, 0xa5, 0x3, 0x2, 0x2, 0x2, 0x8, 0xb7, 0x3,
0xa5, 0x3, 0x2, 0x2, 0x2, 0x8, 0xb7, 0x3, 0x2, 0x2, 0x2, 0x2, 0xa, 0xcc, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xa, 0xcc, 0x3, 0x2, 0x2, 0x2, 0xc, 0xc, 0xce, 0x3, 0x2, 0x2, 0x2, 0xe, 0xd7, 0x3,
0xce, 0x3, 0x2, 0x2, 0x2, 0xe, 0xd7, 0x3, 0x2, 0x2, 0x2, 0x2, 0x10, 0xe2, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x10, 0xe2, 0x3, 0x2, 0x2, 0x2, 0x12, 0x12, 0xed, 0x3, 0x2, 0x2, 0x2, 0x14, 0xef, 0x3,
0xed, 0x3, 0x2, 0x2, 0x2, 0x14, 0xef, 0x3, 0x2, 0x2, 0x2, 0x2, 0x16, 0x109, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x16, 0x109, 0x3, 0x2, 0x2, 0x2, 0x18, 0x18, 0x10b, 0x3, 0x2, 0x2, 0x2, 0x1a, 0x10f, 0x3,
0x10b, 0x3, 0x2, 0x2, 0x2, 0x1a, 0x10f, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1c, 0x111, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1c, 0x111, 0x3, 0x2, 0x2, 0x2, 0x1e, 0x1e, 0x11f, 0x3, 0x2, 0x2, 0x2, 0x20, 0x12a, 0x3,
0x11f, 0x3, 0x2, 0x2, 0x2, 0x20, 0x12a, 0x3, 0x2, 0x2, 0x2, 0x2, 0x22, 0x135, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x22, 0x135, 0x3, 0x2, 0x2, 0x2, 0x24, 0x24, 0x140, 0x3, 0x2, 0x2, 0x2, 0x26, 0x14b, 0x3,
0x140, 0x3, 0x2, 0x2, 0x2, 0x26, 0x14b, 0x3, 0x2, 0x2, 0x2, 0x2, 0x28, 0x156, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x28, 0x156, 0x3, 0x2, 0x2, 0x2, 0x2a, 0x2a, 0x161, 0x3, 0x2, 0x2, 0x2, 0x2c, 0x16c, 0x3,
0x161, 0x3, 0x2, 0x2, 0x2, 0x2c, 0x16c, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2e, 0x17a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2e, 0x17a, 0x3, 0x2, 0x2, 0x2, 0x30, 0x30, 0x17c, 0x3, 0x2, 0x2, 0x2, 0x32, 0x198, 0x3,
0x17c, 0x3, 0x2, 0x2, 0x2, 0x32, 0x198, 0x3, 0x2, 0x2, 0x2, 0x2, 0x34, 0x1a0, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x34, 0x1a0, 0x3, 0x2, 0x2, 0x2, 0x36, 0x36, 0x1a4, 0x3, 0x2, 0x2, 0x2, 0x38, 0x1bf, 0x3,
0x1a4, 0x3, 0x2, 0x2, 0x2, 0x38, 0x1bf, 0x3, 0x2, 0x2, 0x2, 0x2, 0x3a, 0x1c2, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x3a, 0x1c2, 0x3, 0x2, 0x2, 0x2, 0x3c, 0x3c, 0x1c4, 0x3, 0x2, 0x2, 0x2, 0x3e, 0x1ce, 0x3,
0x1c4, 0x3, 0x2, 0x2, 0x2, 0x3e, 0x1ce, 0x3, 0x2, 0x2, 0x2, 0x2, 0x40, 0x1d9, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x40, 0x1d9, 0x3, 0x2, 0x2, 0x2, 0x42, 0x42, 0x1db, 0x3, 0x2, 0x2, 0x2, 0x44, 0x1e4, 0x3,
0x1db, 0x3, 0x2, 0x2, 0x2, 0x44, 0x1e4, 0x3, 0x2, 0x2, 0x2, 0x2, 0x46, 0x1e6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x46, 0x1e6, 0x3, 0x2, 0x2, 0x2, 0x48, 0x48, 0x1f3, 0x3, 0x2, 0x2, 0x2, 0x4a, 0x1fa, 0x3,
0x1f3, 0x3, 0x2, 0x2, 0x2, 0x4a, 0x1fa, 0x3, 0x2, 0x2, 0x2, 0x2, 0x4c, 0x1fc, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x4c, 0x1fc, 0x3, 0x2, 0x2, 0x2, 0x4e, 0x4e, 0x201, 0x3, 0x2, 0x2, 0x2, 0x50, 0x207, 0x3,
0x201, 0x3, 0x2, 0x2, 0x2, 0x50, 0x207, 0x3, 0x2, 0x2, 0x2, 0x2, 0x52, 0x20b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x52, 0x20b, 0x3, 0x2, 0x2, 0x2, 0x54, 0x54, 0x20d, 0x3, 0x2, 0x2, 0x2, 0x56, 0x219, 0x3,
0x20d, 0x3, 0x2, 0x2, 0x2, 0x56, 0x219, 0x3, 0x2, 0x2, 0x2, 0x2, 0x58, 0x21f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x58, 0x21f, 0x3, 0x2, 0x2, 0x2, 0x5a, 0x5a, 0x223, 0x3, 0x2, 0x2, 0x2, 0x5c, 0x225, 0x3,
0x223, 0x3, 0x2, 0x2, 0x2, 0x5c, 0x225, 0x3, 0x2, 0x2, 0x2, 0x2, 0x5e, 0x227, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x5e, 0x227, 0x3, 0x2, 0x2, 0x2, 0x60, 0x60, 0x230, 0x3, 0x2, 0x2, 0x2, 0x62, 0x234, 0x3,
0x230, 0x3, 0x2, 0x2, 0x2, 0x62, 0x234, 0x3, 0x2, 0x2, 0x2, 0x2, 0x64, 0x242, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x64, 0x242, 0x3, 0x2, 0x2, 0x2, 0x66, 0x66, 0x261, 0x3, 0x2, 0x2, 0x2, 0x68, 0x266, 0x3,
0x261, 0x3, 0x2, 0x2, 0x2, 0x68, 0x266, 0x3, 0x2, 0x2, 0x2, 0x2, 0x6a, 0x26a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x6a, 0x26a, 0x3, 0x2, 0x2, 0x2, 0x6c, 0x6c, 0x272, 0x3, 0x2, 0x2, 0x2, 0x6e, 0x274, 0x3,
0x272, 0x3, 0x2, 0x2, 0x2, 0x6e, 0x274, 0x3, 0x2, 0x2, 0x2, 0x2, 0x70, 0x276, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x70, 0x276, 0x3, 0x2, 0x2, 0x2, 0x72, 0x72, 0x279, 0x3, 0x2, 0x2, 0x2, 0x74, 0x27c, 0x3,
0x279, 0x3, 0x2, 0x2, 0x2, 0x74, 0x27c, 0x3, 0x2, 0x2, 0x2, 0x2, 0x76, 0x27f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x76, 0x27f, 0x3, 0x2, 0x2, 0x2, 0x78, 0x78, 0x28c, 0x3, 0x2, 0x2, 0x2, 0x7a, 0x292, 0x3,
0x28c, 0x3, 0x2, 0x2, 0x2, 0x7a, 0x292, 0x3, 0x2, 0x2, 0x2, 0x2, 0x7c, 0x29f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x7c, 0x29f, 0x3, 0x2, 0x2, 0x2, 0x7e, 0x7e, 0x2af, 0x3, 0x2, 0x2, 0x2, 0x80, 0x2b7, 0x3,
0x2af, 0x3, 0x2, 0x2, 0x2, 0x80, 0x2b7, 0x3, 0x2, 0x2, 0x2, 0x2, 0x82, 0x2c2, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x82, 0x2c0, 0x3, 0x2, 0x2, 0x2, 0x84, 0x84, 0x2c9, 0x3, 0x2, 0x2, 0x2, 0x86, 0x2d3, 0x3,
0x2c7, 0x3, 0x2, 0x2, 0x2, 0x86, 0x2cf, 0x3, 0x2, 0x2, 0x2, 0x2, 0x88, 0x2e4, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x88, 0x2e0, 0x3, 0x2, 0x2, 0x2, 0x8a, 0x8a, 0x2e6, 0x3, 0x2, 0x2, 0x2, 0x8c, 0x2f5, 0x3,
0x2e2, 0x3, 0x2, 0x2, 0x2, 0x8c, 0x2f1, 0x3, 0x2, 0x2, 0x2, 0x2, 0x8e, 0x90, 0x7, 0x25, 0x2, 0x2,
0x2, 0x2, 0x8e, 0x90, 0x7, 0x25, 0x2, 0x2, 0x8f, 0x8f, 0x8e, 0x3, 0x2, 0x2, 0x2, 0x8f, 0x90, 0x3,
0x8e, 0x3, 0x2, 0x2, 0x2, 0x8f, 0x90, 0x3, 0x2, 0x2, 0x2, 0x2, 0x90, 0x91, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x90, 0x91, 0x3, 0x2, 0x2, 0x2, 0x91, 0x91, 0x9a, 0x7, 0x51, 0x2, 0x2, 0x92, 0x93, 0x7,
0x9a, 0x7, 0x51, 0x2, 0x2, 0x92, 0x93, 0x7, 0x19, 0x19, 0x2, 0x2, 0x93, 0x94, 0x7, 0x3, 0x2, 0x2,
0x2, 0x2, 0x93, 0x94, 0x7, 0x3, 0x2, 0x2, 0x94, 0x94, 0x95, 0x5, 0x4, 0x3, 0x2, 0x95, 0x96, 0x7,
0x95, 0x5, 0x4, 0x3, 0x2, 0x95, 0x96, 0x7, 0x4, 0x4, 0x2, 0x2, 0x96, 0x97, 0x7, 0x5, 0x2, 0x2,
0x2, 0x2, 0x96, 0x97, 0x7, 0x5, 0x2, 0x2, 0x97, 0x97, 0x98, 0x5, 0x2, 0x2, 0x2, 0x98, 0x9a, 0x3,
0x98, 0x5, 0x2, 0x2, 0x2, 0x98, 0x9a, 0x3, 0x2, 0x2, 0x2, 0x2, 0x99, 0x8f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x99, 0x8f, 0x3, 0x2, 0x2, 0x2, 0x99, 0x99, 0x92, 0x3, 0x2, 0x2, 0x2, 0x9a, 0x3, 0x3,
0x92, 0x3, 0x2, 0x2, 0x2, 0x9a, 0x3, 0x3, 0x2, 0x2, 0x2, 0x2, 0x9b, 0xa0, 0x5, 0x2, 0x2, 0x2,
0x2, 0x2, 0x9b, 0xa0, 0x5, 0x2, 0x2, 0x2, 0x9c, 0x9c, 0x9d, 0x7, 0x6, 0x2, 0x2, 0x9d, 0x9f, 0x5,
0x9d, 0x7, 0x6, 0x2, 0x2, 0x9d, 0x9f, 0x5, 0x2, 0x2, 0x2, 0x2, 0x9e, 0x9c, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x9e, 0x9c, 0x3, 0x2, 0x2, 0x2, 0x9f, 0x9f, 0xa2, 0x3, 0x2, 0x2, 0x2, 0xa0, 0x9e, 0x3,
0xa2, 0x3, 0x2, 0x2, 0x2, 0xa0, 0x9e, 0x3, 0x2, 0x2, 0x2, 0x2, 0xa0, 0xa1, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xa0, 0xa1, 0x3, 0x2, 0x2, 0x2, 0xa1, 0xa1, 0xa4, 0x3, 0x2, 0x2, 0x2, 0xa2, 0xa0, 0x3,
0xa4, 0x3, 0x2, 0x2, 0x2, 0xa2, 0xa0, 0x3, 0x2, 0x2, 0x2, 0x2, 0xa3, 0x9b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xa3, 0x9b, 0x3, 0x2, 0x2, 0x2, 0xa3, 0xa3, 0xa4, 0x3, 0x2, 0x2, 0x2, 0xa4, 0x5, 0x3,
0xa4, 0x3, 0x2, 0x2, 0x2, 0xa4, 0x5, 0x3, 0x2, 0x2, 0x2, 0x2, 0xa5, 0xa6, 0x7, 0x44, 0x2, 0x2,
0x2, 0x2, 0xa5, 0xa6, 0x7, 0x44, 0x2, 0x2, 0xa6, 0xa6, 0xa7, 0x5, 0x4, 0x3, 0x2, 0xa7, 0xa8, 0x7,
0xa7, 0x5, 0x4, 0x3, 0x2, 0xa7, 0xa8, 0x7, 0x46, 0x46, 0x2, 0x2, 0xa8, 0x7, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xa8, 0x7, 0x3, 0x2, 0x2, 0x2, 0xa9, 0xa9, 0xaa, 0x7, 0x44, 0x2, 0x2, 0xaa, 0xab, 0x7,
0xaa, 0x7, 0x44, 0x2, 0x2, 0xaa, 0xab, 0x7, 0x51, 0x51, 0x2, 0x2, 0xab, 0xac, 0x7, 0x7, 0x2, 0x2,
0x2, 0x2, 0xab, 0xac, 0x7, 0x7, 0x2, 0x2, 0xac, 0xac, 0xb3, 0x7, 0x8, 0x2, 0x2, 0xad, 0xae, 0x7,
0xb3, 0x7, 0x8, 0x2, 0x2, 0xad, 0xae, 0x7, 0x6, 0x6, 0x2, 0x2, 0xae, 0xaf, 0x7, 0x51, 0x2, 0x2,
0x2, 0x2, 0xae, 0xaf, 0x7, 0x51, 0x2, 0x2, 0xaf, 0xaf, 0xb0, 0x7, 0x7, 0x2, 0x2, 0xb0, 0xb2, 0x7,
0xb0, 0x7, 0x7, 0x2, 0x2, 0xb0, 0xb2, 0x7, 0x8, 0x8, 0x2, 0x2, 0xb1, 0xad, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xb1, 0xad, 0x3, 0x2, 0x2, 0x2, 0xb2, 0xb2, 0xb5, 0x3, 0x2, 0x2, 0x2, 0xb3, 0xb1, 0x3,
0xb5, 0x3, 0x2, 0x2, 0x2, 0xb3, 0xb1, 0x3, 0x2, 0x2, 0x2, 0x2, 0xb3, 0xb4, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xb3, 0xb4, 0x3, 0x2, 0x2, 0x2, 0xb4, 0xb4, 0xb6, 0x3, 0x2, 0x2, 0x2, 0xb5, 0xb3, 0x3,
0xb6, 0x3, 0x2, 0x2, 0x2, 0xb5, 0xb3, 0x3, 0x2, 0x2, 0x2, 0x2, 0xb6, 0xb8, 0x7, 0x46, 0x2, 0x2,
0x2, 0x2, 0xb6, 0xb8, 0x7, 0x46, 0x2, 0x2, 0xb7, 0xb7, 0xa9, 0x3, 0x2, 0x2, 0x2, 0xb7, 0xb8, 0x3,
0xa9, 0x3, 0x2, 0x2, 0x2, 0xb7, 0xb8, 0x3, 0x2, 0x2, 0x2, 0x2, 0xb8, 0x9, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xb8, 0x9, 0x3, 0x2, 0x2, 0x2, 0xb9, 0xb9, 0xbb, 0x7, 0x3, 0x2, 0x2, 0xba, 0xbc, 0x5,
0xbb, 0x7, 0x3, 0x2, 0x2, 0xba, 0xbc, 0x5, 0x2, 0x2, 0x2, 0x2, 0xbb, 0xba, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xbb, 0xba, 0x3, 0x2, 0x2, 0x2, 0xbb, 0xbb, 0xbc, 0x3, 0x2, 0x2, 0x2, 0xbc, 0xc1, 0x3,
0xbc, 0x3, 0x2, 0x2, 0x2, 0xbc, 0xc1, 0x3, 0x2, 0x2, 0x2, 0x2, 0xbd, 0xbe, 0x7, 0x6, 0x2, 0x2,
0x2, 0x2, 0xbd, 0xbe, 0x7, 0x6, 0x2, 0x2, 0xbe, 0xbe, 0xc0, 0x5, 0x2, 0x2, 0x2, 0xbf, 0xbd, 0x3,
0xc0, 0x5, 0x2, 0x2, 0x2, 0xbf, 0xbd, 0x3, 0x2, 0x2, 0x2, 0x2, 0xc0, 0xc3, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xc0, 0xc3, 0x3, 0x2, 0x2, 0x2, 0xc1, 0xc1, 0xbf, 0x3, 0x2, 0x2, 0x2, 0xc1, 0xc2, 0x3,
0xbf, 0x3, 0x2, 0x2, 0x2, 0xc1, 0xc2, 0x3, 0x2, 0x2, 0x2, 0x2, 0xc2, 0xc6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xc2, 0xc6, 0x3, 0x2, 0x2, 0x2, 0xc3, 0xc3, 0xc1, 0x3, 0x2, 0x2, 0x2, 0xc4, 0xc5, 0x7,
0xc1, 0x3, 0x2, 0x2, 0x2, 0xc4, 0xc5, 0x7, 0x6, 0x6, 0x2, 0x2, 0xc5, 0xc7, 0x7, 0x4b, 0x2, 0x2,
0x2, 0x2, 0xc5, 0xc7, 0x7, 0x4b, 0x2, 0x2, 0xc6, 0xc6, 0xc4, 0x3, 0x2, 0x2, 0x2, 0xc6, 0xc7, 0x3,
0xc4, 0x3, 0x2, 0x2, 0x2, 0xc6, 0xc7, 0x3, 0x2, 0x2, 0x2, 0x2, 0xc7, 0xc8, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xc7, 0xc8, 0x3, 0x2, 0x2, 0x2, 0xc8, 0xc8, 0xcd, 0x7, 0x4, 0x2, 0x2, 0xc9, 0xca, 0x7,
0xcd, 0x7, 0x4, 0x2, 0x2, 0xc9, 0xca, 0x7, 0x3, 0x3, 0x2, 0x2, 0xca, 0xcb, 0x7, 0x4b, 0x2, 0x2,
0x2, 0x2, 0xca, 0xcb, 0x7, 0x4b, 0x2, 0x2, 0xcb, 0xcb, 0xcd, 0x7, 0x4, 0x2, 0x2, 0xcc, 0xb9, 0x3,
0xcd, 0x7, 0x4, 0x2, 0x2, 0xcc, 0xb9, 0x3, 0x2, 0x2, 0x2, 0x2, 0xcc, 0xc9, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xcc, 0xc9, 0x3, 0x2, 0x2, 0x2, 0xcd, 0xcd, 0xb, 0x3, 0x2, 0x2, 0x2, 0xce, 0xd3, 0x7,
0xb, 0x3, 0x2, 0x2, 0x2, 0xce, 0xd3, 0x7, 0x51, 0x51, 0x2, 0x2, 0xcf, 0xd0, 0x7, 0x3, 0x2, 0x2,
0x2, 0x2, 0xcf, 0xd0, 0x7, 0x3, 0x2, 0x2, 0xd0, 0xd0, 0xd1, 0x5, 0x4, 0x3, 0x2, 0xd1, 0xd2, 0x7,
0xd1, 0x5, 0x4, 0x3, 0x2, 0xd1, 0xd2, 0x7, 0x4, 0x4, 0x2, 0x2, 0xd2, 0xd4, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xd2, 0xd4, 0x3, 0x2, 0x2, 0x2, 0xd3, 0xd3, 0xcf, 0x3, 0x2, 0x2, 0x2, 0xd3, 0xd4, 0x3,
0xcf, 0x3, 0x2, 0x2, 0x2, 0xd3, 0xd4, 0x3, 0x2, 0x2, 0x2, 0x2, 0xd4, 0xd, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xd4, 0xd, 0x3, 0x2, 0x2, 0x2, 0xd5, 0xd5, 0xd6, 0x7, 0x7, 0x2, 0x2, 0xd6, 0xd8, 0x5,
0xd6, 0x7, 0x7, 0x2, 0x2, 0xd6, 0xd8, 0x5, 0x2, 0x2, 0x2, 0x2, 0xd7, 0xd5, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xd7, 0xd5, 0x3, 0x2, 0x2, 0x2, 0xd7, 0xd7, 0xd8, 0x3, 0x2, 0x2, 0x2, 0xd8, 0xf, 0x3,
0xd8, 0x3, 0x2, 0x2, 0x2, 0xd8, 0xf, 0x3, 0x2, 0x2, 0x2, 0x2, 0xd9, 0xda, 0x7, 0x2d, 0x2, 0x2,
0x2, 0x2, 0xd9, 0xda, 0x7, 0x2d, 0x2, 0x2, 0xda, 0xda, 0xdf, 0x5, 0xc, 0x7, 0x2, 0xdb, 0xdc, 0x7,
0xdf, 0x5, 0xc, 0x7, 0x2, 0xdb, 0xdc, 0x7, 0x6, 0x6, 0x2, 0x2, 0xdc, 0xde, 0x5, 0xc, 0x7, 0x2,
0x2, 0x2, 0xdc, 0xde, 0x5, 0xc, 0x7, 0x2, 0xdd, 0xdd, 0xdb, 0x3, 0x2, 0x2, 0x2, 0xde, 0xe1, 0x3,
0xdb, 0x3, 0x2, 0x2, 0x2, 0xde, 0xe1, 0x3, 0x2, 0x2, 0x2, 0x2, 0xdf, 0xdd, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xdf, 0xdd, 0x3, 0x2, 0x2, 0x2, 0xdf, 0xdf, 0xe0, 0x3, 0x2, 0x2, 0x2, 0xe0, 0xe3, 0x3,
0xe0, 0x3, 0x2, 0x2, 0x2, 0xe0, 0xe3, 0x3, 0x2, 0x2, 0x2, 0x2, 0xe1, 0xdf, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xe1, 0xdf, 0x3, 0x2, 0x2, 0x2, 0xe2, 0xe2, 0xd9, 0x3, 0x2, 0x2, 0x2, 0xe2, 0xe3, 0x3,
0xd9, 0x3, 0x2, 0x2, 0x2, 0xe2, 0xe3, 0x3, 0x2, 0x2, 0x2, 0x2, 0xe3, 0x11, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xe3, 0x11, 0x3, 0x2, 0x2, 0x2, 0xe4, 0xe4, 0xe5, 0x7, 0x29, 0x2, 0x2, 0xe5, 0xea, 0x7,
0xe5, 0x7, 0x29, 0x2, 0x2, 0xe5, 0xea, 0x7, 0x51, 0x51, 0x2, 0x2, 0xe6, 0xe7, 0x7, 0x6, 0x2, 0x2,
0x2, 0x2, 0xe6, 0xe7, 0x7, 0x6, 0x2, 0x2, 0xe7, 0xe7, 0xe9, 0x7, 0x51, 0x2, 0x2, 0xe8, 0xe6, 0x3,
0xe9, 0x7, 0x51, 0x2, 0x2, 0xe8, 0xe6, 0x3, 0x2, 0x2, 0x2, 0x2, 0xe9, 0xec, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xe9, 0xec, 0x3, 0x2, 0x2, 0x2, 0xea, 0xea, 0xe8, 0x3, 0x2, 0x2, 0x2, 0xea, 0xeb, 0x3,
0xe8, 0x3, 0x2, 0x2, 0x2, 0xea, 0xeb, 0x3, 0x2, 0x2, 0x2, 0x2, 0xeb, 0xee, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xeb, 0xee, 0x3, 0x2, 0x2, 0x2, 0xec, 0xec, 0xea, 0x3, 0x2, 0x2, 0x2, 0xed, 0xe4, 0x3,
0xea, 0x3, 0x2, 0x2, 0x2, 0xed, 0xe4, 0x3, 0x2, 0x2, 0x2, 0x2, 0xed, 0xee, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xed, 0xee, 0x3, 0x2, 0x2, 0x2, 0xee, 0xee, 0x13, 0x3, 0x2, 0x2, 0x2, 0xef, 0xf0, 0x7,
0x13, 0x3, 0x2, 0x2, 0x2, 0xef, 0xf0, 0x7, 0x51, 0x51, 0x2, 0x2, 0xf0, 0xf2, 0x7, 0x7, 0x2, 0x2,
0x2, 0x2, 0xf0, 0xf2, 0x7, 0x7, 0x2, 0x2, 0xf1, 0xf1, 0xf3, 0x5, 0x2, 0x2, 0x2, 0xf2, 0xf1, 0x3,
0xf3, 0x5, 0x2, 0x2, 0x2, 0xf2, 0xf1, 0x3, 0x2, 0x2, 0x2, 0x2, 0xf2, 0xf3, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xf2, 0xf3, 0x3, 0x2, 0x2, 0x2, 0xf3, 0xf3, 0x15, 0x3, 0x2, 0x2, 0x2, 0xf4, 0xf6, 0x7,
0x15, 0x3, 0x2, 0x2, 0x2, 0xf4, 0xf6, 0x7, 0x3, 0x3, 0x2, 0x2, 0xf5, 0xf7, 0x5, 0x14, 0xb, 0x2,
0x2, 0x2, 0xf5, 0xf7, 0x5, 0x14, 0xb, 0x2, 0xf6, 0xf6, 0xf5, 0x3, 0x2, 0x2, 0x2, 0xf6, 0xf7, 0x3,
0xf5, 0x3, 0x2, 0x2, 0x2, 0xf6, 0xf7, 0x3, 0x2, 0x2, 0x2, 0x2, 0xf7, 0xfc, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xf7, 0xfc, 0x3, 0x2, 0x2, 0x2, 0xf8, 0xf8, 0xf9, 0x7, 0x6, 0x2, 0x2, 0xf9, 0xfb, 0x5,
0xf9, 0x7, 0x6, 0x2, 0x2, 0xf9, 0xfb, 0x5, 0x14, 0x14, 0xb, 0x2, 0xfa, 0xf8, 0x3, 0x2, 0x2, 0x2,
0xb, 0x2, 0xfa, 0xf8, 0x3, 0x2, 0x2, 0x2, 0xfb, 0xfb, 0xfe, 0x3, 0x2, 0x2, 0x2, 0xfc, 0xfa, 0x3,
0xfe, 0x3, 0x2, 0x2, 0x2, 0xfc, 0xfa, 0x3, 0x2, 0x2, 0x2, 0x2, 0xfc, 0xfd, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0xfc, 0xfd, 0x3, 0x2, 0x2, 0x2, 0xfd, 0xfd, 0xff, 0x3, 0x2, 0x2, 0x2, 0xfe, 0xfc, 0x3,
0xff, 0x3, 0x2, 0x2, 0x2, 0xfe, 0xfc, 0x3, 0x2, 0x2, 0x2, 0x2, 0xff, 0x10a, 0x7, 0x4, 0x2, 0x2,
0x2, 0x2, 0xff, 0x10a, 0x7, 0x4, 0x2, 0x2, 0x100, 0x100, 0x101, 0x7, 0x3, 0x2, 0x2, 0x101, 0x102, 0x5,
0x101, 0x7, 0x3, 0x2, 0x2, 0x101, 0x102, 0x5, 0x14, 0x14, 0xb, 0x2, 0x102, 0x103, 0x7, 0x6, 0x2, 0x2,
0xb, 0x2, 0x102, 0x103, 0x7, 0x6, 0x2, 0x2, 0x103, 0x103, 0x104, 0x5, 0x14, 0xb, 0x2, 0x104, 0x105, 0x7,
0x104, 0x5, 0x14, 0xb, 0x2, 0x104, 0x105, 0x7, 0x6, 0x6, 0x2, 0x2, 0x105, 0x106, 0x7, 0x4b, 0x2, 0x2,
0x2, 0x2, 0x105, 0x106, 0x7, 0x4b, 0x2, 0x2, 0x106, 0x106, 0x107, 0x7, 0x51, 0x2, 0x2, 0x107, 0x108, 0x7,
0x107, 0x7, 0x51, 0x2, 0x2, 0x107, 0x108, 0x7, 0x4, 0x4, 0x2, 0x2, 0x108, 0x10a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x108, 0x10a, 0x3, 0x2, 0x2, 0x2, 0x109, 0x109, 0xf4, 0x3, 0x2, 0x2, 0x2, 0x109, 0x100, 0x3,
0xf4, 0x3, 0x2, 0x2, 0x2, 0x109, 0x100, 0x3, 0x2, 0x2, 0x2, 0x2, 0x10a, 0x17, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x10a, 0x17, 0x3, 0x2, 0x2, 0x2, 0x10b, 0x10b, 0x10d, 0x7, 0x51, 0x2, 0x2, 0x10c, 0x10e, 0x5,
0x10d, 0x7, 0x51, 0x2, 0x2, 0x10c, 0x10e, 0x5, 0x16, 0x16, 0xc, 0x2, 0x10d, 0x10c, 0x3, 0x2, 0x2, 0x2,
0xc, 0x2, 0x10d, 0x10c, 0x3, 0x2, 0x2, 0x2, 0x10d, 0x10d, 0x10e, 0x3, 0x2, 0x2, 0x2, 0x10e, 0x19, 0x3,
0x10e, 0x3, 0x2, 0x2, 0x2, 0x10e, 0x19, 0x3, 0x2, 0x2, 0x2, 0x2, 0x10f, 0x110, 0x5, 0x1c, 0xf, 0x2,
0x2, 0x2, 0x10f, 0x110, 0x5, 0x1c, 0xf, 0x2, 0x110, 0x110, 0x1b, 0x3, 0x2, 0x2, 0x2, 0x111, 0x112, 0x8,
0x1b, 0x3, 0x2, 0x2, 0x2, 0x111, 0x112, 0x8, 0xf, 0xf, 0x1, 0x2, 0x112, 0x113, 0x5, 0x1e, 0x10, 0x2,
0x1, 0x2, 0x112, 0x113, 0x5, 0x1e, 0x10, 0x2, 0x113, 0x113, 0x11c, 0x3, 0x2, 0x2, 0x2, 0x114, 0x115, 0xc,
0x11c, 0x3, 0x2, 0x2, 0x2, 0x114, 0x115, 0xc, 0x3, 0x3, 0x2, 0x2, 0x115, 0x116, 0x7, 0x9, 0x2, 0x2,
0x2, 0x2, 0x115, 0x116, 0x7, 0x9, 0x2, 0x2, 0x116, 0x116, 0x117, 0x5, 0x1e, 0x10, 0x2, 0x117, 0x118, 0x7,
0x117, 0x5, 0x1e, 0x10, 0x2, 0x117, 0x118, 0x7, 0x7, 0x7, 0x2, 0x2, 0x118, 0x119, 0x5, 0x1e, 0x10, 0x2,
0x2, 0x2, 0x118, 0x119, 0x5, 0x1e, 0x10, 0x2, 0x119, 0x119, 0x11b, 0x3, 0x2, 0x2, 0x2, 0x11a, 0x114, 0x3,
0x11b, 0x3, 0x2, 0x2, 0x2, 0x11a, 0x114, 0x3, 0x2, 0x2, 0x2, 0x2, 0x11b, 0x11e, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x11b, 0x11e, 0x3, 0x2, 0x2, 0x2, 0x11c, 0x11c, 0x11a, 0x3, 0x2, 0x2, 0x2, 0x11c, 0x11d, 0x3,
0x11a, 0x3, 0x2, 0x2, 0x2, 0x11c, 0x11d, 0x3, 0x2, 0x2, 0x2, 0x2, 0x11d, 0x1d, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x11d, 0x1d, 0x3, 0x2, 0x2, 0x2, 0x11e, 0x11e, 0x11c, 0x3, 0x2, 0x2, 0x2, 0x11f, 0x120, 0x8,
0x11c, 0x3, 0x2, 0x2, 0x2, 0x11f, 0x120, 0x8, 0x10, 0x10, 0x1, 0x2, 0x120, 0x121, 0x5, 0x20, 0x11, 0x2,
0x1, 0x2, 0x120, 0x121, 0x5, 0x20, 0x11, 0x2, 0x121, 0x121, 0x127, 0x3, 0x2, 0x2, 0x2, 0x122, 0x123, 0xc,
0x127, 0x3, 0x2, 0x2, 0x2, 0x122, 0x123, 0xc, 0x3, 0x3, 0x2, 0x2, 0x123, 0x124, 0x7, 0xa, 0x2, 0x2,
0x2, 0x2, 0x123, 0x124, 0x7, 0xa, 0x2, 0x2, 0x124, 0x124, 0x126, 0x5, 0x20, 0x11, 0x2, 0x125, 0x122, 0x3,
0x126, 0x5, 0x20, 0x11, 0x2, 0x125, 0x122, 0x3, 0x2, 0x2, 0x2, 0x2, 0x126, 0x129, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x126, 0x129, 0x3, 0x2, 0x2, 0x2, 0x127, 0x127, 0x125, 0x3, 0x2, 0x2, 0x2, 0x127, 0x128, 0x3,
0x125, 0x3, 0x2, 0x2, 0x2, 0x127, 0x128, 0x3, 0x2, 0x2, 0x2, 0x2, 0x128, 0x1f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x128, 0x1f, 0x3, 0x2, 0x2, 0x2, 0x129, 0x129, 0x127, 0x3, 0x2, 0x2, 0x2, 0x12a, 0x12b, 0x8,
0x127, 0x3, 0x2, 0x2, 0x2, 0x12a, 0x12b, 0x8, 0x11, 0x11, 0x1, 0x2, 0x12b, 0x12c, 0x5, 0x22, 0x12, 0x2,
0x1, 0x2, 0x12b, 0x12c, 0x5, 0x22, 0x12, 0x2, 0x12c, 0x12c, 0x132, 0x3, 0x2, 0x2, 0x2, 0x12d, 0x12e, 0xc,
0x132, 0x3, 0x2, 0x2, 0x2, 0x12d, 0x12e, 0xc, 0x3, 0x3, 0x2, 0x2, 0x12e, 0x12f, 0x7, 0xb, 0x2, 0x2,
0x2, 0x2, 0x12e, 0x12f, 0x7, 0xb, 0x2, 0x2, 0x12f, 0x12f, 0x131, 0x5, 0x22, 0x12, 0x2, 0x130, 0x12d, 0x3,
0x131, 0x5, 0x22, 0x12, 0x2, 0x130, 0x12d, 0x3, 0x2, 0x2, 0x2, 0x2, 0x131, 0x134, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x131, 0x134, 0x3, 0x2, 0x2, 0x2, 0x132, 0x132, 0x130, 0x3, 0x2, 0x2, 0x2, 0x132, 0x133, 0x3,
0x130, 0x3, 0x2, 0x2, 0x2, 0x132, 0x133, 0x3, 0x2, 0x2, 0x2, 0x2, 0x133, 0x21, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x133, 0x21, 0x3, 0x2, 0x2, 0x2, 0x134, 0x134, 0x132, 0x3, 0x2, 0x2, 0x2, 0x135, 0x136, 0x8,
0x132, 0x3, 0x2, 0x2, 0x2, 0x135, 0x136, 0x8, 0x12, 0x12, 0x1, 0x2, 0x136, 0x137, 0x5, 0x24, 0x13, 0x2,
0x1, 0x2, 0x136, 0x137, 0x5, 0x24, 0x13, 0x2, 0x137, 0x137, 0x13d, 0x3, 0x2, 0x2, 0x2, 0x138, 0x139, 0xc,
0x13d, 0x3, 0x2, 0x2, 0x2, 0x138, 0x139, 0xc, 0x3, 0x3, 0x2, 0x2, 0x139, 0x13a, 0x9, 0x2, 0x2, 0x2,
0x2, 0x2, 0x139, 0x13a, 0x9, 0x2, 0x2, 0x2, 0x13a, 0x13a, 0x13c, 0x5, 0x24, 0x13, 0x2, 0x13b, 0x138, 0x3,
0x13c, 0x5, 0x24, 0x13, 0x2, 0x13b, 0x138, 0x3, 0x2, 0x2, 0x2, 0x2, 0x13c, 0x13f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x13c, 0x13f, 0x3, 0x2, 0x2, 0x2, 0x13d, 0x13d, 0x13b, 0x3, 0x2, 0x2, 0x2, 0x13d, 0x13e, 0x3,
0x13b, 0x3, 0x2, 0x2, 0x2, 0x13d, 0x13e, 0x3, 0x2, 0x2, 0x2, 0x2, 0x13e, 0x23, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x13e, 0x23, 0x3, 0x2, 0x2, 0x2, 0x13f, 0x13f, 0x13d, 0x3, 0x2, 0x2, 0x2, 0x140, 0x141, 0x8,
0x13d, 0x3, 0x2, 0x2, 0x2, 0x140, 0x141, 0x8, 0x13, 0x13, 0x1, 0x2, 0x141, 0x142, 0x5, 0x26, 0x14, 0x2,
0x1, 0x2, 0x141, 0x142, 0x5, 0x26, 0x14, 0x2, 0x142, 0x142, 0x148, 0x3, 0x2, 0x2, 0x2, 0x143, 0x144, 0xc,
0x148, 0x3, 0x2, 0x2, 0x2, 0x143, 0x144, 0xc, 0x3, 0x3, 0x2, 0x2, 0x144, 0x145, 0x9, 0x3, 0x2, 0x2,
0x2, 0x2, 0x144, 0x145, 0x9, 0x3, 0x2, 0x2, 0x145, 0x145, 0x147, 0x5, 0x26, 0x14, 0x2, 0x146, 0x143, 0x3,
0x147, 0x5, 0x26, 0x14, 0x2, 0x146, 0x143, 0x3, 0x2, 0x2, 0x2, 0x2, 0x147, 0x14a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x147, 0x14a, 0x3, 0x2, 0x2, 0x2, 0x148, 0x148, 0x146, 0x3, 0x2, 0x2, 0x2, 0x148, 0x149, 0x3,
0x146, 0x3, 0x2, 0x2, 0x2, 0x148, 0x149, 0x3, 0x2, 0x2, 0x2, 0x2, 0x149, 0x25, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x149, 0x25, 0x3, 0x2, 0x2, 0x2, 0x14a, 0x14a, 0x148, 0x3, 0x2, 0x2, 0x2, 0x14b, 0x14c, 0x8,
0x148, 0x3, 0x2, 0x2, 0x2, 0x14b, 0x14c, 0x8, 0x14, 0x14, 0x1, 0x2, 0x14c, 0x14d, 0x5, 0x28, 0x15, 0x2,
0x1, 0x2, 0x14c, 0x14d, 0x5, 0x28, 0x15, 0x2, 0x14d, 0x14d, 0x153, 0x3, 0x2, 0x2, 0x2, 0x14e, 0x14f, 0xc,
0x153, 0x3, 0x2, 0x2, 0x2, 0x14e, 0x14f, 0xc, 0x3, 0x3, 0x2, 0x2, 0x14f, 0x150, 0x9, 0x4, 0x2, 0x2,
0x2, 0x2, 0x14f, 0x150, 0x9, 0x4, 0x2, 0x2, 0x150, 0x150, 0x152, 0x5, 0x28, 0x15, 0x2, 0x151, 0x14e, 0x3,
0x152, 0x5, 0x28, 0x15, 0x2, 0x151, 0x14e, 0x3, 0x2, 0x2, 0x2, 0x2, 0x152, 0x155, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x152, 0x155, 0x3, 0x2, 0x2, 0x2, 0x153, 0x153, 0x151, 0x3, 0x2, 0x2, 0x2, 0x153, 0x154, 0x3,
0x151, 0x3, 0x2, 0x2, 0x2, 0x153, 0x154, 0x3, 0x2, 0x2, 0x2, 0x2, 0x154, 0x27, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x154, 0x27, 0x3, 0x2, 0x2, 0x2, 0x155, 0x155, 0x153, 0x3, 0x2, 0x2, 0x2, 0x156, 0x157, 0x8,
0x153, 0x3, 0x2, 0x2, 0x2, 0x156, 0x157, 0x8, 0x15, 0x15, 0x1, 0x2, 0x157, 0x158, 0x5, 0x2a, 0x16, 0x2,
0x1, 0x2, 0x157, 0x158, 0x5, 0x2a, 0x16, 0x2, 0x158, 0x158, 0x15e, 0x3, 0x2, 0x2, 0x2, 0x159, 0x15a, 0xc,
0x15e, 0x3, 0x2, 0x2, 0x2, 0x159, 0x15a, 0xc, 0x3, 0x3, 0x2, 0x2, 0x15a, 0x15b, 0x9, 0x5, 0x2, 0x2,
0x2, 0x2, 0x15a, 0x15b, 0x9, 0x5, 0x2, 0x2, 0x15b, 0x15b, 0x15d, 0x5, 0x2a, 0x16, 0x2, 0x15c, 0x159, 0x3,
0x15d, 0x5, 0x2a, 0x16, 0x2, 0x15c, 0x159, 0x3, 0x2, 0x2, 0x2, 0x2, 0x15d, 0x160, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x15d, 0x160, 0x3, 0x2, 0x2, 0x2, 0x15e, 0x15e, 0x15c, 0x3, 0x2, 0x2, 0x2, 0x15e, 0x15f, 0x3,
0x15c, 0x3, 0x2, 0x2, 0x2, 0x15e, 0x15f, 0x3, 0x2, 0x2, 0x2, 0x2, 0x15f, 0x29, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x15f, 0x29, 0x3, 0x2, 0x2, 0x2, 0x160, 0x160, 0x15e, 0x3, 0x2, 0x2, 0x2, 0x161, 0x162, 0x8,
0x15e, 0x3, 0x2, 0x2, 0x2, 0x161, 0x162, 0x8, 0x16, 0x16, 0x1, 0x2, 0x162, 0x163, 0x5, 0x2c, 0x17, 0x2,
0x1, 0x2, 0x162, 0x163, 0x5, 0x2c, 0x17, 0x2, 0x163, 0x163, 0x169, 0x3, 0x2, 0x2, 0x2, 0x164, 0x165, 0xc,
0x169, 0x3, 0x2, 0x2, 0x2, 0x164, 0x165, 0xc, 0x3, 0x3, 0x2, 0x2, 0x165, 0x166, 0x9, 0x6, 0x2, 0x2,
0x2, 0x2, 0x165, 0x166, 0x9, 0x6, 0x2, 0x2, 0x166, 0x166, 0x168, 0x5, 0x2c, 0x17, 0x2, 0x167, 0x164, 0x3,
0x168, 0x5, 0x2c, 0x17, 0x2, 0x167, 0x164, 0x3, 0x2, 0x2, 0x2, 0x2, 0x168, 0x16b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x168, 0x16b, 0x3, 0x2, 0x2, 0x2, 0x169, 0x169, 0x167, 0x3, 0x2, 0x2, 0x2, 0x169, 0x16a, 0x3,
0x167, 0x3, 0x2, 0x2, 0x2, 0x169, 0x16a, 0x3, 0x2, 0x2, 0x2, 0x2, 0x16a, 0x2b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x16a, 0x2b, 0x3, 0x2, 0x2, 0x2, 0x16b, 0x16b, 0x169, 0x3, 0x2, 0x2, 0x2, 0x16c, 0x16d, 0x8,
0x169, 0x3, 0x2, 0x2, 0x2, 0x16c, 0x16d, 0x8, 0x17, 0x17, 0x1, 0x2, 0x16d, 0x16e, 0x5, 0x2e, 0x18, 0x2,
0x1, 0x2, 0x16d, 0x16e, 0x5, 0x2e, 0x18, 0x2, 0x16e, 0x16e, 0x174, 0x3, 0x2, 0x2, 0x2, 0x16f, 0x170, 0xc,
0x174, 0x3, 0x2, 0x2, 0x2, 0x16f, 0x170, 0xc, 0x3, 0x3, 0x2, 0x2, 0x170, 0x171, 0x9, 0x7, 0x2, 0x2,
0x2, 0x2, 0x170, 0x171, 0x9, 0x7, 0x2, 0x2, 0x171, 0x171, 0x173, 0x5, 0x2e, 0x18, 0x2, 0x172, 0x16f, 0x3,
0x173, 0x5, 0x2e, 0x18, 0x2, 0x172, 0x16f, 0x3, 0x2, 0x2, 0x2, 0x2, 0x173, 0x176, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x173, 0x176, 0x3, 0x2, 0x2, 0x2, 0x174, 0x174, 0x172, 0x3, 0x2, 0x2, 0x2, 0x174, 0x175, 0x3,
0x172, 0x3, 0x2, 0x2, 0x2, 0x174, 0x175, 0x3, 0x2, 0x2, 0x2, 0x2, 0x175, 0x2d, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x175, 0x2d, 0x3, 0x2, 0x2, 0x2, 0x176, 0x176, 0x174, 0x3, 0x2, 0x2, 0x2, 0x177, 0x17b, 0x5,
0x174, 0x3, 0x2, 0x2, 0x2, 0x177, 0x17b, 0x5, 0x36, 0x36, 0x1c, 0x2, 0x178, 0x179, 0x9, 0x8, 0x2, 0x2,
0x1c, 0x2, 0x178, 0x179, 0x9, 0x8, 0x2, 0x2, 0x179, 0x179, 0x17b, 0x5, 0x2e, 0x18, 0x2, 0x17a, 0x177, 0x3,
0x17b, 0x5, 0x2e, 0x18, 0x2, 0x17a, 0x177, 0x3, 0x2, 0x2, 0x2, 0x2, 0x17a, 0x178, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x17a, 0x178, 0x3, 0x2, 0x2, 0x2, 0x17b, 0x17b, 0x2f, 0x3, 0x2, 0x2, 0x2, 0x17c, 0x17d, 0x8,
0x2f, 0x3, 0x2, 0x2, 0x2, 0x17c, 0x17d, 0x8, 0x19, 0x19, 0x1, 0x2, 0x17d, 0x17f, 0x7, 0x51, 0x2, 0x2,
0x1, 0x2, 0x17d, 0x17f, 0x7, 0x51, 0x2, 0x2, 0x17e, 0x17e, 0x180, 0x5, 0x6, 0x4, 0x2, 0x17f, 0x17e, 0x3,
0x180, 0x5, 0x6, 0x4, 0x2, 0x17f, 0x17e, 0x3, 0x2, 0x2, 0x2, 0x2, 0x17f, 0x180, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x17f, 0x180, 0x3, 0x2, 0x2, 0x2, 0x180, 0x180, 0x18b, 0x3, 0x2, 0x2, 0x2, 0x181, 0x182, 0xc,
0x18b, 0x3, 0x2, 0x2, 0x2, 0x181, 0x182, 0xc, 0x4, 0x4, 0x2, 0x2, 0x182, 0x183, 0x7, 0xc, 0x2, 0x2,
0x2, 0x2, 0x182, 0x183, 0x7, 0xc, 0x2, 0x2, 0x183, 0x183, 0x18a, 0x7, 0x51, 0x2, 0x2, 0x184, 0x185, 0xc,
0x18a, 0x7, 0x51, 0x2, 0x2, 0x184, 0x185, 0xc, 0x3, 0x3, 0x2, 0x2, 0x185, 0x186, 0x7, 0xd, 0x2, 0x2,
0x2, 0x2, 0x185, 0x186, 0x7, 0xd, 0x2, 0x2, 0x186, 0x186, 0x187, 0x5, 0x1a, 0xe, 0x2, 0x187, 0x188, 0x7,
0x187, 0x5, 0x1a, 0xe, 0x2, 0x187, 0x188, 0x7, 0xe, 0xe, 0x2, 0x2, 0x188, 0x18a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x188, 0x18a, 0x3, 0x2, 0x2, 0x2, 0x189, 0x189, 0x181, 0x3, 0x2, 0x2, 0x2, 0x189, 0x184, 0x3,
0x181, 0x3, 0x2, 0x2, 0x2, 0x189, 0x184, 0x3, 0x2, 0x2, 0x2, 0x2, 0x18a, 0x18d, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x18a, 0x18d, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x18b, 0x189, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x18c, 0x3,
0x189, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x18c, 0x3, 0x2, 0x2, 0x2, 0x2, 0x18c, 0x31, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x18c, 0x31, 0x3, 0x2, 0x2, 0x2, 0x18d, 0x18d, 0x18b, 0x3, 0x2, 0x2, 0x2, 0x18e, 0x18f, 0x7,
0x18b, 0x3, 0x2, 0x2, 0x2, 0x18e, 0x18f, 0x7, 0x4d, 0x4d, 0x2, 0x2, 0x18f, 0x199, 0x5, 0x30, 0x19, 0x2,
0x2, 0x2, 0x18f, 0x199, 0x5, 0x30, 0x19, 0x2, 0x190, 0x190, 0x191, 0x7, 0x4e, 0x2, 0x2, 0x191, 0x199, 0x5,
0x191, 0x7, 0x4e, 0x2, 0x2, 0x191, 0x199, 0x5, 0x30, 0x30, 0x19, 0x2, 0x192, 0x193, 0x5, 0x30, 0x19, 0x2,
0x19, 0x2, 0x192, 0x193, 0x5, 0x30, 0x19, 0x2, 0x193, 0x193, 0x194, 0x7, 0x4d, 0x2, 0x2, 0x194, 0x199, 0x3,
0x194, 0x7, 0x4d, 0x2, 0x2, 0x194, 0x199, 0x3, 0x2, 0x2, 0x2, 0x2, 0x195, 0x196, 0x5, 0x30, 0x19, 0x2,
0x2, 0x2, 0x195, 0x196, 0x5, 0x30, 0x19, 0x2, 0x196, 0x196, 0x197, 0x7, 0x4e, 0x2, 0x2, 0x197, 0x199, 0x3,
0x197, 0x7, 0x4e, 0x2, 0x2, 0x197, 0x199, 0x3, 0x2, 0x2, 0x2, 0x2, 0x198, 0x18e, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x198, 0x18e, 0x3, 0x2, 0x2, 0x2, 0x198, 0x198, 0x190, 0x3, 0x2, 0x2, 0x2, 0x198, 0x192, 0x3,
0x190, 0x3, 0x2, 0x2, 0x2, 0x198, 0x192, 0x3, 0x2, 0x2, 0x2, 0x2, 0x198, 0x195, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x198, 0x195, 0x3, 0x2, 0x2, 0x2, 0x199, 0x199, 0x33, 0x3, 0x2, 0x2, 0x2, 0x19a, 0x1a1, 0x5,
0x33, 0x3, 0x2, 0x2, 0x2, 0x19a, 0x1a1, 0x5, 0x32, 0x32, 0x1a, 0x2, 0x19b, 0x19e, 0x5, 0x30, 0x19, 0x2,
0x1a, 0x2, 0x19b, 0x19e, 0x5, 0x30, 0x19, 0x2, 0x19c, 0x19c, 0x19d, 0x9, 0x9, 0x2, 0x2, 0x19d, 0x19f, 0x5,
0x19d, 0x9, 0x9, 0x2, 0x2, 0x19d, 0x19f, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x19e, 0x19c, 0x3, 0x2, 0x2, 0x2,
0xe, 0x2, 0x19e, 0x19c, 0x3, 0x2, 0x2, 0x2, 0x19e, 0x19e, 0x19f, 0x3, 0x2, 0x2, 0x2, 0x19f, 0x1a1, 0x3,
0x19f, 0x3, 0x2, 0x2, 0x2, 0x19f, 0x1a1, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1a0, 0x19a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1a0, 0x19a, 0x3, 0x2, 0x2, 0x2, 0x1a0, 0x1a0, 0x19b, 0x3, 0x2, 0x2, 0x2, 0x1a1, 0x35, 0x3,
0x19b, 0x3, 0x2, 0x2, 0x2, 0x1a1, 0x35, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1a2, 0x1a5, 0x5, 0x38, 0x1d, 0x2,
0x2, 0x2, 0x1a2, 0x1a5, 0x5, 0x38, 0x1d, 0x2, 0x1a3, 0x1a3, 0x1a5, 0x5, 0x34, 0x1b, 0x2, 0x1a4, 0x1a2, 0x3,
0x1a5, 0x5, 0x34, 0x1b, 0x2, 0x1a4, 0x1a2, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1a4, 0x1a3, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1a4, 0x1a3, 0x3, 0x2, 0x2, 0x2, 0x1a5, 0x1a5, 0x37, 0x3, 0x2, 0x2, 0x2, 0x1a6, 0x1c0, 0x5,
0x37, 0x3, 0x2, 0x2, 0x2, 0x1a6, 0x1c0, 0x5, 0x48, 0x48, 0x25, 0x2, 0x1a7, 0x1c0, 0x7, 0x55, 0x2, 0x2,
0x25, 0x2, 0x1a7, 0x1c0, 0x7, 0x55, 0x2, 0x2, 0x1a8, 0x1a8, 0x1c0, 0x7, 0x50, 0x2, 0x2, 0x1a9, 0x1aa, 0x7,
0x1c0, 0x7, 0x50, 0x2, 0x2, 0x1a9, 0x1aa, 0x7, 0x20, 0x20, 0x2, 0x2, 0x1aa, 0x1ab, 0x7, 0x44, 0x2, 0x2,
0x2, 0x2, 0x1aa, 0x1ab, 0x7, 0x44, 0x2, 0x2, 0x1ab, 0x1ab, 0x1ac, 0x5, 0x2, 0x2, 0x2, 0x1ac, 0x1ad, 0x7,
0x1ac, 0x5, 0x2, 0x2, 0x2, 0x1ac, 0x1ad, 0x7, 0x46, 0x46, 0x2, 0x2, 0x1ad, 0x1ae, 0x7, 0x3, 0x2, 0x2,
0x2, 0x2, 0x1ad, 0x1ae, 0x7, 0x3, 0x2, 0x2, 0x1ae, 0x1ae, 0x1af, 0x5, 0x1a, 0xe, 0x2, 0x1af, 0x1b0, 0x7,
0x1af, 0x5, 0x1a, 0xe, 0x2, 0x1af, 0x1b0, 0x7, 0x4, 0x4, 0x2, 0x2, 0x1b0, 0x1b1, 0x7, 0x29, 0x2, 0x2,
0x2, 0x2, 0x1b0, 0x1b1, 0x7, 0x29, 0x2, 0x2, 0x1b1, 0x1b1, 0x1b2, 0x7, 0x51, 0x2, 0x2, 0x1b2, 0x1c0, 0x3,
0x1b2, 0x7, 0x51, 0x2, 0x2, 0x1b2, 0x1c0, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1b3, 0x1b4, 0x7, 0x21, 0x2, 0x2,
0x2, 0x2, 0x1b3, 0x1b4, 0x7, 0x21, 0x2, 0x2, 0x1b4, 0x1b4, 0x1b5, 0x7, 0x44, 0x2, 0x2, 0x1b5, 0x1b6, 0x5,
0x1b5, 0x7, 0x44, 0x2, 0x2, 0x1b5, 0x1b6, 0x5, 0x2, 0x2, 0x2, 0x2, 0x1b6, 0x1b7, 0x7, 0x46, 0x2, 0x2,
0x2, 0x2, 0x1b6, 0x1b7, 0x7, 0x46, 0x2, 0x2, 0x1b7, 0x1b7, 0x1b8, 0x7, 0x3, 0x2, 0x2, 0x1b8, 0x1b9, 0x5,
0x1b8, 0x7, 0x3, 0x2, 0x2, 0x1b8, 0x1b9, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x1b9, 0x1ba, 0x7, 0x4, 0x2, 0x2,
0xe, 0x2, 0x1b9, 0x1ba, 0x7, 0x4, 0x2, 0x2, 0x1ba, 0x1ba, 0x1c0, 0x3, 0x2, 0x2, 0x2, 0x1bb, 0x1bc, 0x7,
0x1c0, 0x3, 0x2, 0x2, 0x2, 0x1bb, 0x1bc, 0x7, 0x3, 0x3, 0x2, 0x2, 0x1bc, 0x1bd, 0x5, 0x1a, 0xe, 0x2,
0x2, 0x2, 0x1bc, 0x1bd, 0x5, 0x1a, 0xe, 0x2, 0x1bd, 0x1bd, 0x1be, 0x7, 0x4, 0x2, 0x2, 0x1be, 0x1c0, 0x3,
0x1be, 0x7, 0x4, 0x2, 0x2, 0x1be, 0x1c0, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1bf, 0x1a6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1bf, 0x1a6, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1bf, 0x1a7, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1a8, 0x3,
0x1a7, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1a8, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1bf, 0x1a9, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1bf, 0x1a9, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1bf, 0x1b3, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1bb, 0x3,
0x1b3, 0x3, 0x2, 0x2, 0x2, 0x1bf, 0x1bb, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1c0, 0x39, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1c0, 0x39, 0x3, 0x2, 0x2, 0x2, 0x1c1, 0x1c1, 0x1c3, 0x5, 0x4e, 0x28, 0x2, 0x1c2, 0x1c1, 0x3,
0x1c3, 0x5, 0x4e, 0x28, 0x2, 0x1c2, 0x1c1, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1c2, 0x1c3, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1c2, 0x1c3, 0x3, 0x2, 0x2, 0x2, 0x1c3, 0x1c3, 0x3b, 0x3, 0x2, 0x2, 0x2, 0x1c4, 0x1c5, 0x7,
0x3b, 0x3, 0x2, 0x2, 0x2, 0x1c4, 0x1c5, 0x7, 0x22, 0x22, 0x2, 0x2, 0x1c5, 0x1c6, 0x7, 0x3, 0x2, 0x2,
0x2, 0x2, 0x1c5, 0x1c6, 0x7, 0x3, 0x2, 0x2, 0x1c6, 0x1c6, 0x1c7, 0x5, 0x3a, 0x1e, 0x2, 0x1c7, 0x1c8, 0x7,
0x1c7, 0x5, 0x3a, 0x1e, 0x2, 0x1c7, 0x1c8, 0x7, 0xf, 0xf, 0x2, 0x2, 0x1c8, 0x1c9, 0x5, 0x1a, 0xe, 0x2,
0x2, 0x2, 0x1c8, 0x1c9, 0x5, 0x1a, 0xe, 0x2, 0x1c9, 0x1c9, 0x1ca, 0x7, 0xf, 0x2, 0x2, 0x1ca, 0x1cb, 0x5,
0x1ca, 0x7, 0xf, 0x2, 0x2, 0x1ca, 0x1cb, 0x5, 0x34, 0x34, 0x1b, 0x2, 0x1cb, 0x1cc, 0x7, 0x4, 0x2, 0x2,
0x1b, 0x2, 0x1cb, 0x1cc, 0x7, 0x4, 0x2, 0x2, 0x1cc, 0x1cc, 0x1cd, 0x5, 0x6c, 0x37, 0x2, 0x1cd, 0x3d, 0x3,
0x1cd, 0x5, 0x6c, 0x37, 0x2, 0x1cd, 0x3d, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1ce, 0x1d0, 0x7, 0xd, 0x2, 0x2,
0x2, 0x2, 0x1ce, 0x1d0, 0x7, 0xd, 0x2, 0x2, 0x1cf, 0x1cf, 0x1d1, 0x5, 0x1a, 0xe, 0x2, 0x1d0, 0x1cf, 0x3,
0x1d1, 0x5, 0x1a, 0xe, 0x2, 0x1d0, 0x1cf, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1d0, 0x1d1, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1d0, 0x1d1, 0x3, 0x2, 0x2, 0x2, 0x1d1, 0x1d1, 0x1d2, 0x3, 0x2, 0x2, 0x2, 0x1d2, 0x1d4, 0x7,
0x1d2, 0x3, 0x2, 0x2, 0x2, 0x1d2, 0x1d4, 0x7, 0x7, 0x7, 0x2, 0x2, 0x1d3, 0x1d5, 0x5, 0x1a, 0xe, 0x2,
0x2, 0x2, 0x1d3, 0x1d5, 0x5, 0x1a, 0xe, 0x2, 0x1d4, 0x1d4, 0x1d3, 0x3, 0x2, 0x2, 0x2, 0x1d4, 0x1d5, 0x3,
0x1d3, 0x3, 0x2, 0x2, 0x2, 0x1d4, 0x1d5, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1d5, 0x1d6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1d5, 0x1d6, 0x3, 0x2, 0x2, 0x2, 0x1d6, 0x1d6, 0x1d7, 0x7, 0xe, 0x2, 0x2, 0x1d7, 0x3f, 0x3,
0x1d7, 0x7, 0xe, 0x2, 0x2, 0x1d7, 0x3f, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1d8, 0x1da, 0x5, 0x3e, 0x20, 0x2,
0x2, 0x2, 0x1d8, 0x1da, 0x5, 0x3e, 0x20, 0x2, 0x1d9, 0x1d9, 0x1d8, 0x3, 0x2, 0x2, 0x2, 0x1d9, 0x1da, 0x3,
0x1d8, 0x3, 0x2, 0x2, 0x2, 0x1d9, 0x1da, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1da, 0x41, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1da, 0x41, 0x3, 0x2, 0x2, 0x2, 0x1db, 0x1db, 0x1dc, 0x7, 0x22, 0x2, 0x2, 0x1dc, 0x1dd, 0x7,
0x1dc, 0x7, 0x22, 0x2, 0x2, 0x1dc, 0x1dd, 0x7, 0x3, 0x3, 0x2, 0x2, 0x1dd, 0x1de, 0x5, 0x4c, 0x27, 0x2,
0x2, 0x2, 0x1dd, 0x1de, 0x5, 0x4c, 0x27, 0x2, 0x1de, 0x1de, 0x1df, 0x7, 0x10, 0x2, 0x2, 0x1df, 0x1e0, 0x5,
0x1df, 0x7, 0x10, 0x2, 0x2, 0x1df, 0x1e0, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x1e0, 0x1e1, 0x5, 0x40, 0x21, 0x2,
0xe, 0x2, 0x1e0, 0x1e1, 0x5, 0x40, 0x21, 0x2, 0x1e1, 0x1e1, 0x1e2, 0x7, 0x4, 0x2, 0x2, 0x1e2, 0x1e3, 0x5,
0x1e2, 0x7, 0x4, 0x2, 0x2, 0x1e2, 0x1e3, 0x5, 0x6c, 0x6c, 0x37, 0x2, 0x1e3, 0x43, 0x3, 0x2, 0x2, 0x2,
0x37, 0x2, 0x1e3, 0x43, 0x3, 0x2, 0x2, 0x2, 0x1e4, 0x1e4, 0x1e5, 0x5, 0x1a, 0xe, 0x2, 0x1e5, 0x45, 0x3,
0x1e5, 0x5, 0x1a, 0xe, 0x2, 0x1e5, 0x45, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1e6, 0x1e8, 0x7, 0x3, 0x2, 0x2,
0x2, 0x2, 0x1e6, 0x1e8, 0x7, 0x3, 0x2, 0x2, 0x1e7, 0x1e7, 0x1e9, 0x5, 0x44, 0x23, 0x2, 0x1e8, 0x1e7, 0x3,
0x1e9, 0x5, 0x44, 0x23, 0x2, 0x1e8, 0x1e7, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1e8, 0x1e9, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1e8, 0x1e9, 0x3, 0x2, 0x2, 0x2, 0x1e9, 0x1e9, 0x1ee, 0x3, 0x2, 0x2, 0x2, 0x1ea, 0x1eb, 0x7,
0x1ee, 0x3, 0x2, 0x2, 0x2, 0x1ea, 0x1eb, 0x7, 0x6, 0x6, 0x2, 0x2, 0x1eb, 0x1ed, 0x5, 0x44, 0x23, 0x2,
0x2, 0x2, 0x1eb, 0x1ed, 0x5, 0x44, 0x23, 0x2, 0x1ec, 0x1ec, 0x1ea, 0x3, 0x2, 0x2, 0x2, 0x1ed, 0x1f0, 0x3,
0x1ea, 0x3, 0x2, 0x2, 0x2, 0x1ed, 0x1f0, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1ee, 0x1ec, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1ee, 0x1ec, 0x3, 0x2, 0x2, 0x2, 0x1ee, 0x1ee, 0x1ef, 0x3, 0x2, 0x2, 0x2, 0x1ef, 0x1f1, 0x3,
0x1ef, 0x3, 0x2, 0x2, 0x2, 0x1ef, 0x1f1, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1f0, 0x1ee, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1f0, 0x1ee, 0x3, 0x2, 0x2, 0x2, 0x1f1, 0x1f1, 0x1f2, 0x7, 0x4, 0x2, 0x2, 0x1f2, 0x47, 0x3,
0x1f2, 0x7, 0x4, 0x2, 0x2, 0x1f2, 0x47, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1f3, 0x1f5, 0x9, 0xa, 0x2, 0x2,
0x2, 0x2, 0x1f3, 0x1f5, 0x9, 0xa, 0x2, 0x2, 0x1f4, 0x1f4, 0x1f6, 0x5, 0x6, 0x4, 0x2, 0x1f5, 0x1f4, 0x3,
0x1f6, 0x5, 0x6, 0x4, 0x2, 0x1f5, 0x1f4, 0x3, 0x2, 0x2, 0x2, 0x2, 0x1f5, 0x1f6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1f5, 0x1f6, 0x3, 0x2, 0x2, 0x2, 0x1f6, 0x1f6, 0x1f7, 0x3, 0x2, 0x2, 0x2, 0x1f7, 0x1f8, 0x5,
0x1f7, 0x3, 0x2, 0x2, 0x2, 0x1f7, 0x1f8, 0x5, 0x46, 0x46, 0x24, 0x2, 0x1f8, 0x1f9, 0x5, 0x12, 0xa, 0x2,
0x24, 0x2, 0x1f8, 0x1f9, 0x5, 0x12, 0xa, 0x2, 0x1f9, 0x1f9, 0x49, 0x3, 0x2, 0x2, 0x2, 0x1fa, 0x1fb, 0x7,
0x49, 0x3, 0x2, 0x2, 0x2, 0x1fa, 0x1fb, 0x7, 0x51, 0x51, 0x2, 0x2, 0x1fb, 0x4b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x1fb, 0x4b, 0x3, 0x2, 0x2, 0x2, 0x1fc, 0x1fc, 0x1fd, 0x7, 0x31, 0x2, 0x2, 0x1fd, 0x1fe, 0x7,
0x1fd, 0x7, 0x31, 0x2, 0x2, 0x1fd, 0x1fe, 0x7, 0x51, 0x51, 0x2, 0x2, 0x1fe, 0x1ff, 0x7, 0x7, 0x2, 0x2,
0x2, 0x2, 0x1fe, 0x1ff, 0x7, 0x7, 0x2, 0x2, 0x1ff, 0x1ff, 0x200, 0x5, 0x2, 0x2, 0x2, 0x200, 0x4d, 0x3,
0x200, 0x5, 0x2, 0x2, 0x2, 0x200, 0x4d, 0x3, 0x2, 0x2, 0x2, 0x2, 0x201, 0x204, 0x5, 0x4c, 0x27, 0x2,
0x2, 0x2, 0x201, 0x204, 0x5, 0x4c, 0x27, 0x2, 0x202, 0x202, 0x203, 0x7, 0x36, 0x2, 0x2, 0x203, 0x205, 0x5,
0x203, 0x7, 0x36, 0x2, 0x2, 0x203, 0x205, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x204, 0x202, 0x3, 0x2, 0x2, 0x2,
0xe, 0x2, 0x204, 0x202, 0x3, 0x2, 0x2, 0x2, 0x204, 0x204, 0x205, 0x3, 0x2, 0x2, 0x2, 0x205, 0x4f, 0x3,
0x205, 0x3, 0x2, 0x2, 0x2, 0x205, 0x4f, 0x3, 0x2, 0x2, 0x2, 0x2, 0x206, 0x208, 0x7, 0x2e, 0x2, 0x2,
0x2, 0x2, 0x206, 0x208, 0x7, 0x2e, 0x2, 0x2, 0x207, 0x207, 0x206, 0x3, 0x2, 0x2, 0x2, 0x207, 0x208, 0x3,
0x206, 0x3, 0x2, 0x2, 0x2, 0x207, 0x208, 0x3, 0x2, 0x2, 0x2, 0x2, 0x208, 0x209, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x208, 0x209, 0x3, 0x2, 0x2, 0x2, 0x209, 0x209, 0x20a, 0x5, 0x48, 0x25, 0x2, 0x20a, 0x51, 0x3,
0x20a, 0x5, 0x48, 0x25, 0x2, 0x20a, 0x51, 0x3, 0x2, 0x2, 0x2, 0x2, 0x20b, 0x20c, 0x5, 0x34, 0x1b, 0x2,
0x2, 0x2, 0x20b, 0x20c, 0x5, 0x34, 0x1b, 0x2, 0x20c, 0x20c, 0x53, 0x3, 0x2, 0x2, 0x2, 0x20d, 0x20f, 0x7,
0x53, 0x3, 0x2, 0x2, 0x2, 0x20d, 0x20f, 0x7, 0x1f, 0x1f, 0x2, 0x2, 0x20e, 0x210, 0x7, 0x25, 0x2, 0x2,
0x2, 0x2, 0x20e, 0x210, 0x7, 0x25, 0x2, 0x2, 0x20f, 0x20f, 0x20e, 0x3, 0x2, 0x2, 0x2, 0x20f, 0x210, 0x3,
0x20e, 0x3, 0x2, 0x2, 0x2, 0x20f, 0x210, 0x3, 0x2, 0x2, 0x2, 0x2, 0x210, 0x211, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x210, 0x211, 0x3, 0x2, 0x2, 0x2, 0x211, 0x211, 0x212, 0x7, 0x3, 0x2, 0x2, 0x212, 0x213, 0x5,
0x212, 0x7, 0x3, 0x2, 0x2, 0x212, 0x213, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x213, 0x214, 0x7, 0x4, 0x2, 0x2,
0xe, 0x2, 0x213, 0x214, 0x7, 0x4, 0x2, 0x2, 0x214, 0x214, 0x217, 0x5, 0x6c, 0x37, 0x2, 0x215, 0x216, 0x7,
0x217, 0x5, 0x6c, 0x37, 0x2, 0x215, 0x216, 0x7, 0x11, 0x11, 0x2, 0x2, 0x216, 0x218, 0x5, 0x6c, 0x37, 0x2,
0x2, 0x2, 0x216, 0x218, 0x5, 0x6c, 0x37, 0x2, 0x217, 0x217, 0x215, 0x3, 0x2, 0x2, 0x2, 0x217, 0x218, 0x3,
0x215, 0x3, 0x2, 0x2, 0x2, 0x217, 0x218, 0x3, 0x2, 0x2, 0x2, 0x2, 0x218, 0x55, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x218, 0x55, 0x3, 0x2, 0x2, 0x2, 0x219, 0x219, 0x21a, 0x7, 0x23, 0x2, 0x2, 0x21a, 0x21b, 0x7,
0x21a, 0x7, 0x23, 0x2, 0x2, 0x21a, 0x21b, 0x7, 0x3, 0x3, 0x2, 0x2, 0x21b, 0x21c, 0x5, 0x1a, 0xe, 0x2,
0x2, 0x2, 0x21b, 0x21c, 0x5, 0x1a, 0xe, 0x2, 0x21c, 0x21c, 0x21d, 0x7, 0x4, 0x2, 0x2, 0x21d, 0x21e, 0x5,
0x21d, 0x7, 0x4, 0x2, 0x2, 0x21d, 0x21e, 0x5, 0x6c, 0x6c, 0x37, 0x2, 0x21e, 0x57, 0x3, 0x2, 0x2, 0x2,
0x37, 0x2, 0x21e, 0x57, 0x3, 0x2, 0x2, 0x2, 0x21f, 0x21f, 0x221, 0x7, 0x24, 0x2, 0x2, 0x220, 0x222, 0x5,
0x221, 0x7, 0x24, 0x2, 0x2, 0x220, 0x222, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x221, 0x220, 0x3, 0x2, 0x2, 0x2,
0xe, 0x2, 0x221, 0x220, 0x3, 0x2, 0x2, 0x2, 0x221, 0x221, 0x222, 0x3, 0x2, 0x2, 0x2, 0x222, 0x59, 0x3,
0x222, 0x3, 0x2, 0x2, 0x2, 0x222, 0x59, 0x3, 0x2, 0x2, 0x2, 0x2, 0x223, 0x224, 0x7, 0x27, 0x2, 0x2,
0x2, 0x2, 0x223, 0x224, 0x7, 0x27, 0x2, 0x2, 0x224, 0x224, 0x5b, 0x3, 0x2, 0x2, 0x2, 0x225, 0x226, 0x7,
0x5b, 0x3, 0x2, 0x2, 0x2, 0x225, 0x226, 0x7, 0x26, 0x26, 0x2, 0x2, 0x226, 0x5d, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x226, 0x5d, 0x3, 0x2, 0x2, 0x2, 0x227, 0x227, 0x228, 0x7, 0x28, 0x2, 0x2, 0x228, 0x22a, 0x5,
0x228, 0x7, 0x28, 0x2, 0x2, 0x228, 0x22a, 0x5, 0x4a, 0x4a, 0x26, 0x2, 0x229, 0x22b, 0x5, 0x46, 0x24, 0x2,
0x26, 0x2, 0x229, 0x22b, 0x5, 0x46, 0x24, 0x2, 0x22a, 0x22a, 0x229, 0x3, 0x2, 0x2, 0x2, 0x22a, 0x22b, 0x3,
0x229, 0x3, 0x2, 0x2, 0x2, 0x22a, 0x22b, 0x3, 0x2, 0x2, 0x2, 0x2, 0x22b, 0x5f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x22b, 0x5f, 0x3, 0x2, 0x2, 0x2, 0x22c, 0x22c, 0x22d, 0x7, 0x2b, 0x2, 0x2, 0x22d, 0x231, 0x7,
0x22d, 0x7, 0x2b, 0x2, 0x2, 0x22d, 0x231, 0x7, 0x51, 0x51, 0x2, 0x2, 0x22e, 0x22f, 0x7, 0x2c, 0x2, 0x2,
0x2, 0x2, 0x22e, 0x22f, 0x7, 0x2c, 0x2, 0x2, 0x22f, 0x22f, 0x231, 0x5, 0x18, 0xd, 0x2, 0x230, 0x22c, 0x3,
0x231, 0x5, 0x18, 0xd, 0x2, 0x230, 0x22c, 0x3, 0x2, 0x2, 0x2, 0x2, 0x230, 0x22e, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x230, 0x22e, 0x3, 0x2, 0x2, 0x2, 0x231, 0x231, 0x232, 0x3, 0x2, 0x2, 0x2, 0x232, 0x233, 0x5,
0x232, 0x3, 0x2, 0x2, 0x2, 0x232, 0x233, 0x5, 0x6c, 0x6c, 0x37, 0x2, 0x233, 0x61, 0x3, 0x2, 0x2, 0x2,
0x37, 0x2, 0x233, 0x61, 0x3, 0x2, 0x2, 0x2, 0x234, 0x234, 0x235, 0x7, 0x2a, 0x2, 0x2, 0x235, 0x237, 0x5,
0x235, 0x7, 0x2a, 0x2, 0x2, 0x235, 0x237, 0x5, 0x6c, 0x6c, 0x37, 0x2, 0x236, 0x238, 0x5, 0x60, 0x31, 0x2,
0x37, 0x2, 0x236, 0x238, 0x5, 0x60, 0x31, 0x2, 0x237, 0x237, 0x236, 0x3, 0x2, 0x2, 0x2, 0x238, 0x239, 0x3,
0x236, 0x3, 0x2, 0x2, 0x2, 0x238, 0x239, 0x3, 0x2, 0x2, 0x2, 0x2, 0x239, 0x237, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x239, 0x237, 0x3, 0x2, 0x2, 0x2, 0x239, 0x239, 0x23a, 0x3, 0x2, 0x2, 0x2, 0x23a, 0x63, 0x3,
0x23a, 0x3, 0x2, 0x2, 0x2, 0x23a, 0x63, 0x3, 0x2, 0x2, 0x2, 0x2, 0x23b, 0x23c, 0x7, 0x33, 0x2, 0x2,
0x2, 0x2, 0x23b, 0x23c, 0x7, 0x33, 0x2, 0x2, 0x23c, 0x23c, 0x23d, 0x7, 0x3, 0x2, 0x2, 0x23d, 0x23e, 0x5,
0x23d, 0x7, 0x3, 0x2, 0x2, 0x23d, 0x23e, 0x5, 0x1a, 0x1a, 0xe, 0x2, 0x23e, 0x23f, 0x7, 0x4, 0x2, 0x2,
0xe, 0x2, 0x23e, 0x23f, 0x7, 0x4, 0x2, 0x2, 0x23f, 0x23f, 0x243, 0x3, 0x2, 0x2, 0x2, 0x240, 0x243, 0x7,
0x243, 0x3, 0x2, 0x2, 0x2, 0x240, 0x243, 0x7, 0x34, 0x34, 0x2, 0x2, 0x241, 0x243, 0x7, 0x35, 0x2, 0x2,
0x2, 0x2, 0x241, 0x243, 0x7, 0x35, 0x2, 0x2, 0x242, 0x242, 0x23b, 0x3, 0x2, 0x2, 0x2, 0x242, 0x240, 0x3,
0x23b, 0x3, 0x2, 0x2, 0x2, 0x242, 0x240, 0x3, 0x2, 0x2, 0x2, 0x2, 0x242, 0x241, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x242, 0x241, 0x3, 0x2, 0x2, 0x2, 0x243, 0x243, 0x65, 0x3, 0x2, 0x2, 0x2, 0x244, 0x245, 0x5,
0x65, 0x3, 0x2, 0x2, 0x2, 0x244, 0x245, 0x5, 0x4e, 0x4e, 0x28, 0x2, 0x245, 0x246, 0x7, 0xf, 0x2, 0x2,
0x28, 0x2, 0x245, 0x246, 0x7, 0xf, 0x2, 0x2, 0x246, 0x246, 0x262, 0x3, 0x2, 0x2, 0x2, 0x247, 0x248, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x247, 0x248, 0x5, 0x50, 0x50, 0x29, 0x2, 0x248, 0x249, 0x7, 0xf, 0x2, 0x2,
0x29, 0x2, 0x248, 0x249, 0x7, 0xf, 0x2, 0x2, 0x249, 0x249, 0x262, 0x3, 0x2, 0x2, 0x2, 0x24a, 0x24b, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x24a, 0x24b, 0x5, 0x52, 0x52, 0x2a, 0x2, 0x24b, 0x24c, 0x7, 0xf, 0x2, 0x2,
0x2a, 0x2, 0x24b, 0x24c, 0x7, 0xf, 0x2, 0x2, 0x24c, 0x24c, 0x262, 0x3, 0x2, 0x2, 0x2, 0x24d, 0x24e, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x24d, 0x24e, 0x5, 0x58, 0x58, 0x2d, 0x2, 0x24e, 0x24f, 0x7, 0xf, 0x2, 0x2,
0x2d, 0x2, 0x24e, 0x24f, 0x7, 0xf, 0x2, 0x2, 0x24f, 0x24f, 0x262, 0x3, 0x2, 0x2, 0x2, 0x250, 0x251, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x250, 0x251, 0x5, 0x5a, 0x5a, 0x2e, 0x2, 0x251, 0x252, 0x7, 0xf, 0x2, 0x2,
0x2e, 0x2, 0x251, 0x252, 0x7, 0xf, 0x2, 0x2, 0x252, 0x252, 0x262, 0x3, 0x2, 0x2, 0x2, 0x253, 0x254, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x253, 0x254, 0x5, 0x5c, 0x5c, 0x2f, 0x2, 0x254, 0x255, 0x7, 0xf, 0x2, 0x2,
0x2f, 0x2, 0x254, 0x255, 0x7, 0xf, 0x2, 0x2, 0x255, 0x255, 0x262, 0x3, 0x2, 0x2, 0x2, 0x256, 0x257, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x256, 0x257, 0x5, 0x5e, 0x5e, 0x30, 0x2, 0x257, 0x258, 0x7, 0xf, 0x2, 0x2,
0x30, 0x2, 0x257, 0x258, 0x7, 0xf, 0x2, 0x2, 0x258, 0x258, 0x262, 0x3, 0x2, 0x2, 0x2, 0x259, 0x262, 0x5,
0x262, 0x3, 0x2, 0x2, 0x2, 0x259, 0x262, 0x5, 0x54, 0x54, 0x2b, 0x2, 0x25a, 0x25b, 0x5, 0x64, 0x33, 0x2,
0x2b, 0x2, 0x25a, 0x25b, 0x5, 0x64, 0x33, 0x2, 0x25b, 0x25b, 0x25c, 0x7, 0xf, 0x2, 0x2, 0x25c, 0x262, 0x3,
0x25c, 0x7, 0xf, 0x2, 0x2, 0x25c, 0x262, 0x3, 0x2, 0x2, 0x2, 0x2, 0x25d, 0x262, 0x5, 0x56, 0x2c, 0x2,
0x2, 0x2, 0x25d, 0x262, 0x5, 0x56, 0x2c, 0x2, 0x25e, 0x25e, 0x262, 0x5, 0x42, 0x22, 0x2, 0x25f, 0x262, 0x5,
0x262, 0x5, 0x42, 0x22, 0x2, 0x25f, 0x262, 0x5, 0x3c, 0x3c, 0x1f, 0x2, 0x260, 0x262, 0x5, 0x62, 0x32, 0x2,
0x1f, 0x2, 0x260, 0x262, 0x5, 0x62, 0x32, 0x2, 0x261, 0x261, 0x244, 0x3, 0x2, 0x2, 0x2, 0x261, 0x247, 0x3,
0x244, 0x3, 0x2, 0x2, 0x2, 0x261, 0x247, 0x3, 0x2, 0x2, 0x2, 0x2, 0x261, 0x24a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x261, 0x24a, 0x3, 0x2, 0x2, 0x2, 0x261, 0x261, 0x24d, 0x3, 0x2, 0x2, 0x2, 0x261, 0x250, 0x3,
0x24d, 0x3, 0x2, 0x2, 0x2, 0x261, 0x250, 0x3, 0x2, 0x2, 0x2, 0x2, 0x261, 0x253, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x261, 0x253, 0x3, 0x2, 0x2, 0x2, 0x261, 0x261, 0x256, 0x3, 0x2, 0x2, 0x2, 0x261, 0x259, 0x3,
0x256, 0x3, 0x2, 0x2, 0x2, 0x261, 0x259, 0x3, 0x2, 0x2, 0x2, 0x2, 0x261, 0x25a, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x261, 0x25a, 0x3, 0x2, 0x2, 0x2, 0x261, 0x261, 0x25d, 0x3, 0x2, 0x2, 0x2, 0x261, 0x25e, 0x3,
0x25d, 0x3, 0x2, 0x2, 0x2, 0x261, 0x25e, 0x3, 0x2, 0x2, 0x2, 0x2, 0x261, 0x25f, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x261, 0x25f, 0x3, 0x2, 0x2, 0x2, 0x261, 0x261, 0x260, 0x3, 0x2, 0x2, 0x2, 0x262, 0x67, 0x3,
0x260, 0x3, 0x2, 0x2, 0x2, 0x262, 0x67, 0x3, 0x2, 0x2, 0x2, 0x2, 0x263, 0x265, 0x5, 0x66, 0x34, 0x2,
0x2, 0x2, 0x263, 0x265, 0x5, 0x66, 0x34, 0x2, 0x264, 0x264, 0x263, 0x3, 0x2, 0x2, 0x2, 0x265, 0x268, 0x3,
0x263, 0x3, 0x2, 0x2, 0x2, 0x265, 0x268, 0x3, 0x2, 0x2, 0x2, 0x2, 0x266, 0x264, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x266, 0x264, 0x3, 0x2, 0x2, 0x2, 0x266, 0x266, 0x267, 0x3, 0x2, 0x2, 0x2, 0x267, 0x69, 0x3,
0x267, 0x3, 0x2, 0x2, 0x2, 0x267, 0x69, 0x3, 0x2, 0x2, 0x2, 0x2, 0x268, 0x266, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x268, 0x266, 0x3, 0x2, 0x2, 0x2, 0x269, 0x269, 0x26b, 0x7, 0x1e, 0x2, 0x2, 0x26a, 0x269, 0x3,
0x26b, 0x7, 0x1e, 0x2, 0x2, 0x26a, 0x269, 0x3, 0x2, 0x2, 0x2, 0x2, 0x26a, 0x26b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x26a, 0x26b, 0x3, 0x2, 0x2, 0x2, 0x26b, 0x26b, 0x26c, 0x3, 0x2, 0x2, 0x2, 0x26c, 0x26d, 0x7,
0x26c, 0x3, 0x2, 0x2, 0x2, 0x26c, 0x26d, 0x7, 0x12, 0x12, 0x2, 0x2, 0x26d, 0x26e, 0x5, 0x68, 0x35, 0x2,
0x2, 0x2, 0x26d, 0x26e, 0x5, 0x68, 0x35, 0x2, 0x26e, 0x26e, 0x26f, 0x7, 0x13, 0x2, 0x2, 0x26f, 0x6b, 0x3,
0x26f, 0x7, 0x13, 0x2, 0x2, 0x26f, 0x6b, 0x3, 0x2, 0x2, 0x2, 0x2, 0x270, 0x273, 0x5, 0x66, 0x34, 0x2,
0x2, 0x2, 0x270, 0x273, 0x5, 0x66, 0x34, 0x2, 0x271, 0x271, 0x273, 0x5, 0x6a, 0x36, 0x2, 0x272, 0x270, 0x3,
0x273, 0x5, 0x6a, 0x36, 0x2, 0x272, 0x270, 0x3, 0x2, 0x2, 0x2, 0x2, 0x272, 0x271, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x272, 0x271, 0x3, 0x2, 0x2, 0x2, 0x273, 0x273, 0x6d, 0x3, 0x2, 0x2, 0x2, 0x274, 0x275, 0x5,
0x6d, 0x3, 0x2, 0x2, 0x2, 0x274, 0x275, 0x5, 0x6a, 0x6a, 0x36, 0x2, 0x275, 0x6f, 0x3, 0x2, 0x2, 0x2,
0x36, 0x2, 0x275, 0x6f, 0x3, 0x2, 0x2, 0x2, 0x276, 0x276, 0x277, 0x7, 0x14, 0x2, 0x2, 0x277, 0x278, 0x7,
0x277, 0x7, 0x14, 0x2, 0x2, 0x277, 0x278, 0x7, 0x51, 0x51, 0x2, 0x2, 0x278, 0x71, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x278, 0x71, 0x3, 0x2, 0x2, 0x2, 0x279, 0x279, 0x27a, 0x7, 0x15, 0x2, 0x2, 0x27a, 0x27b, 0x7,
0x27a, 0x7, 0x15, 0x2, 0x2, 0x27a, 0x27b, 0x7, 0x50, 0x50, 0x2, 0x2, 0x27b, 0x73, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x27b, 0x73, 0x3, 0x2, 0x2, 0x2, 0x27c, 0x27c, 0x27d, 0x7, 0x25, 0x2, 0x2, 0x27d, 0x27e, 0x7,
0x27d, 0x7, 0x25, 0x2, 0x2, 0x27d, 0x27e, 0x7, 0x50, 0x50, 0x2, 0x2, 0x27e, 0x75, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x27e, 0x75, 0x3, 0x2, 0x2, 0x2, 0x27f, 0x27f, 0x280, 0x7, 0x8, 0x2, 0x2, 0x280, 0x282, 0x7,
0x280, 0x7, 0x8, 0x2, 0x2, 0x280, 0x282, 0x7, 0x51, 0x51, 0x2, 0x2, 0x281, 0x283, 0x5, 0x70, 0x39, 0x2,
0x2, 0x2, 0x281, 0x283, 0x5, 0x70, 0x39, 0x2, 0x282, 0x282, 0x281, 0x3, 0x2, 0x2, 0x2, 0x282, 0x283, 0x3,
0x281, 0x3, 0x2, 0x2, 0x2, 0x282, 0x283, 0x3, 0x2, 0x2, 0x2, 0x2, 0x283, 0x285, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x283, 0x285, 0x3, 0x2, 0x2, 0x2, 0x284, 0x284, 0x286, 0x5, 0x72, 0x3a, 0x2, 0x285, 0x284, 0x3,
0x286, 0x5, 0x72, 0x3a, 0x2, 0x285, 0x284, 0x3, 0x2, 0x2, 0x2, 0x2, 0x285, 0x286, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x285, 0x286, 0x3, 0x2, 0x2, 0x2, 0x286, 0x286, 0x288, 0x3, 0x2, 0x2, 0x2, 0x287, 0x289, 0x5,
0x288, 0x3, 0x2, 0x2, 0x2, 0x287, 0x289, 0x5, 0x74, 0x74, 0x3b, 0x2, 0x288, 0x287, 0x3, 0x2, 0x2, 0x2,
0x3b, 0x2, 0x288, 0x287, 0x3, 0x2, 0x2, 0x2, 0x288, 0x288, 0x289, 0x3, 0x2, 0x2, 0x2, 0x289, 0x28a, 0x3,
0x289, 0x3, 0x2, 0x2, 0x2, 0x289, 0x28a, 0x3, 0x2, 0x2, 0x2, 0x2, 0x28a, 0x28b, 0x7, 0xf, 0x2, 0x2,
0x2, 0x2, 0x28a, 0x28b, 0x7, 0xf, 0x2, 0x2, 0x28b, 0x28b, 0x77, 0x3, 0x2, 0x2, 0x2, 0x28c, 0x28d, 0x7,
0x77, 0x3, 0x2, 0x2, 0x2, 0x28c, 0x28d, 0x7, 0x8, 0x8, 0x2, 0x2, 0x28d, 0x28e, 0x7, 0x51, 0x2, 0x2,
0x2, 0x2, 0x28d, 0x28e, 0x7, 0x51, 0x2, 0x2, 0x28e, 0x28e, 0x28f, 0x7, 0x36, 0x2, 0x2, 0x28f, 0x290, 0x5,
0x28f, 0x7, 0x36, 0x2, 0x2, 0x28f, 0x290, 0x5, 0x2, 0x2, 0x2, 0x2, 0x290, 0x291, 0x7, 0xf, 0x2, 0x2,
0x2, 0x2, 0x290, 0x291, 0x7, 0xf, 0x2, 0x2, 0x291, 0x291, 0x79, 0x3, 0x2, 0x2, 0x2, 0x292, 0x294, 0x7,
0x79, 0x3, 0x2, 0x2, 0x2, 0x292, 0x294, 0x7, 0x32, 0x32, 0x2, 0x2, 0x293, 0x295, 0x7, 0x1c, 0x2, 0x2,
0x2, 0x2, 0x293, 0x295, 0x7, 0x1c, 0x2, 0x2, 0x294, 0x294, 0x293, 0x3, 0x2, 0x2, 0x2, 0x294, 0x295, 0x3,
0x293, 0x3, 0x2, 0x2, 0x2, 0x294, 0x295, 0x3, 0x2, 0x2, 0x2, 0x2, 0x295, 0x296, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x295, 0x296, 0x3, 0x2, 0x2, 0x2, 0x296, 0x296, 0x297, 0x7, 0x19, 0x2, 0x2, 0x297, 0x298, 0x7,
0x297, 0x7, 0x19, 0x2, 0x2, 0x297, 0x298, 0x7, 0x51, 0x51, 0x2, 0x2, 0x298, 0x299, 0x5, 0x8, 0x5, 0x2,
0x2, 0x2, 0x298, 0x299, 0x5, 0x8, 0x5, 0x2, 0x299, 0x299, 0x29a, 0x7, 0x3, 0x2, 0x2, 0x29a, 0x29b, 0x5,
0x29a, 0x7, 0x3, 0x2, 0x2, 0x29a, 0x29b, 0x5, 0x4, 0x4, 0x3, 0x2, 0x29b, 0x29c, 0x7, 0x4, 0x2, 0x2,
0x3, 0x2, 0x29b, 0x29c, 0x7, 0x4, 0x2, 0x2, 0x29c, 0x29c, 0x29d, 0x5, 0xe, 0x8, 0x2, 0x29d, 0x29e, 0x7,
0x29d, 0x5, 0xe, 0x8, 0x2, 0x29d, 0x29e, 0x7, 0xf, 0xf, 0x2, 0x2, 0x29e, 0x7b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x29e, 0x7b, 0x3, 0x2, 0x2, 0x2, 0x29f, 0x29f, 0x2a5, 0x7, 0x32, 0x2, 0x2, 0x2a0, 0x2a2, 0x7,
0x2a5, 0x7, 0x32, 0x2, 0x2, 0x2a0, 0x2a2, 0x7, 0x1d, 0x1d, 0x2, 0x2, 0x2a1, 0x2a0, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2a1, 0x2a0, 0x3, 0x2, 0x2, 0x2, 0x2a1, 0x2a1, 0x2a2, 0x3, 0x2, 0x2, 0x2, 0x2a2, 0x2a3, 0x3,
0x2a2, 0x3, 0x2, 0x2, 0x2, 0x2a2, 0x2a3, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2a3, 0x2a4, 0x7, 0x16, 0x2, 0x2,
0x2, 0x2, 0x2a3, 0x2a4, 0x7, 0x16, 0x2, 0x2, 0x2a4, 0x2a4, 0x2a6, 0x7, 0x50, 0x2, 0x2, 0x2a5, 0x2a1, 0x3,
0x2a6, 0x7, 0x50, 0x2, 0x2, 0x2a5, 0x2a1, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2a5, 0x2a6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2a5, 0x2a6, 0x3, 0x2, 0x2, 0x2, 0x2a6, 0x2a6, 0x2a7, 0x3, 0x2, 0x2, 0x2, 0x2a7, 0x2a8, 0x7,
0x2a7, 0x3, 0x2, 0x2, 0x2, 0x2a7, 0x2a8, 0x7, 0x18, 0x18, 0x2, 0x2, 0x2a8, 0x2a9, 0x7, 0x51, 0x2, 0x2,
0x2, 0x2, 0x2a8, 0x2a9, 0x7, 0x51, 0x2, 0x2, 0x2a9, 0x2a9, 0x2aa, 0x5, 0x8, 0x5, 0x2, 0x2aa, 0x2ab, 0x5,
0x2aa, 0x5, 0x8, 0x5, 0x2, 0x2aa, 0x2ab, 0x5, 0xa, 0xa, 0x6, 0x2, 0x2ab, 0x2ac, 0x5, 0xe, 0x8, 0x2,
0x6, 0x2, 0x2ab, 0x2ac, 0x5, 0xe, 0x8, 0x2, 0x2ac, 0x2ac, 0x2ad, 0x5, 0x10, 0x9, 0x2, 0x2ad, 0x2ae, 0x7,
0x2ad, 0x5, 0x10, 0x9, 0x2, 0x2ad, 0x2ae, 0x7, 0xf, 0xf, 0x2, 0x2, 0x2ae, 0x7d, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2ae, 0x7d, 0x3, 0x2, 0x2, 0x2, 0x2af, 0x2af, 0x2b0, 0x7, 0x32, 0x2, 0x2, 0x2b0, 0x2b1, 0x7,
0x2b0, 0x7, 0x32, 0x2, 0x2, 0x2b0, 0x2b1, 0x7, 0x1a, 0x1a, 0x2, 0x2, 0x2b1, 0x2b2, 0x7, 0x51, 0x2, 0x2,
0x2, 0x2, 0x2b1, 0x2b2, 0x7, 0x51, 0x2, 0x2, 0x2b2, 0x2b2, 0x2b3, 0x5, 0xa, 0x6, 0x2, 0x2b3, 0x2b4, 0x5,
0x2b3, 0x5, 0xa, 0x6, 0x2, 0x2b3, 0x2b4, 0x5, 0xe, 0xe, 0x8, 0x2, 0x2b4, 0x2b5, 0x7, 0xf, 0x2, 0x2,
0x8, 0x2, 0x2b4, 0x2b5, 0x7, 0xf, 0x2, 0x2, 0x2b5, 0x2b5, 0x7f, 0x3, 0x2, 0x2, 0x2, 0x2b6, 0x2b8, 0x7,
0x7f, 0x3, 0x2, 0x2, 0x2, 0x2b6, 0x2b8, 0x7, 0x1c, 0x1c, 0x2, 0x2, 0x2b7, 0x2b6, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2b7, 0x2b6, 0x3, 0x2, 0x2, 0x2, 0x2b7, 0x2b7, 0x2b8, 0x3, 0x2, 0x2, 0x2, 0x2b8, 0x2b9, 0x3,
0x2b8, 0x3, 0x2, 0x2, 0x2, 0x2b8, 0x2b9, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2b9, 0x2ba, 0x7, 0x19, 0x2, 0x2,
0x2, 0x2, 0x2b9, 0x2ba, 0x7, 0x19, 0x2, 0x2, 0x2ba, 0x2ba, 0x2bb, 0x7, 0x51, 0x2, 0x2, 0x2bb, 0x2bc, 0x5,
0x2bb, 0x7, 0x51, 0x2, 0x2, 0x2bb, 0x2bc, 0x5, 0x8, 0x8, 0x5, 0x2, 0x2bc, 0x2bd, 0x5, 0x16, 0xc, 0x2,
0x5, 0x2, 0x2bc, 0x2bd, 0x5, 0x16, 0xc, 0x2, 0x2bd, 0x2bd, 0x2c0, 0x5, 0xe, 0x8, 0x2, 0x2be, 0x2c1, 0x5,
0x2be, 0x5, 0xe, 0x8, 0x2, 0x2be, 0x2bf, 0x5, 0x6e, 0x6e, 0x38, 0x2, 0x2bf, 0x2c1, 0x7, 0xf, 0x2, 0x2,
0x38, 0x2, 0x2bf, 0x81, 0x3, 0x2, 0x2, 0x2, 0x2c0, 0x2c0, 0x2be, 0x3, 0x2, 0x2, 0x2, 0x2c0, 0x2bf, 0x3,
0x2c1, 0x7, 0x51, 0x2, 0x2, 0x2c1, 0x2c2, 0x5, 0x6, 0x2, 0x2, 0x2, 0x2c1, 0x81, 0x3, 0x2, 0x2, 0x2,
0x4, 0x2, 0x2c2, 0x2c3, 0x5, 0x16, 0xc, 0x2, 0x2c3, 0x2c2, 0x2c3, 0x7, 0x51, 0x2, 0x2, 0x2c3, 0x2c4, 0x5,
0x2c4, 0x5, 0xe, 0x8, 0x2, 0x2c4, 0x2c5, 0x5, 0x10, 0x6, 0x4, 0x2, 0x2c4, 0x2c5, 0x5, 0x16, 0xc, 0x2,
0x9, 0x2, 0x2c5, 0x2c6, 0x5, 0x6e, 0x38, 0x2, 0x2c6, 0x2c5, 0x2c6, 0x5, 0xe, 0x8, 0x2, 0x2c6, 0x2c7, 0x5,
0x83, 0x3, 0x2, 0x2, 0x2, 0x2c7, 0x2c8, 0x7, 0x18, 0x10, 0x9, 0x2, 0x2c7, 0x2c8, 0x5, 0x6e, 0x38, 0x2,
0x2, 0x2, 0x2c8, 0x2c9, 0x7, 0x51, 0x2, 0x2, 0x2c9, 0x2c8, 0x83, 0x3, 0x2, 0x2, 0x2, 0x2c9, 0x2ca, 0x7,
0x2ca, 0x5, 0x8, 0x5, 0x2, 0x2ca, 0x2cb, 0x5, 0x16, 0x18, 0x2, 0x2, 0x2ca, 0x2cb, 0x7, 0x51, 0x2, 0x2,
0xc, 0x2, 0x2cb, 0x2cc, 0x5, 0xe, 0x8, 0x2, 0x2cc, 0x2cb, 0x2cc, 0x5, 0x8, 0x5, 0x2, 0x2cc, 0x2cd, 0x5,
0x2cd, 0x5, 0x10, 0x9, 0x2, 0x2cd, 0x2ce, 0x5, 0x6e, 0x16, 0xc, 0x2, 0x2cd, 0x2ce, 0x5, 0xe, 0x8, 0x2,
0x38, 0x2, 0x2ce, 0x85, 0x3, 0x2, 0x2, 0x2, 0x2cf, 0x2ce, 0x2d1, 0x5, 0x10, 0x9, 0x2, 0x2cf, 0x2d2, 0x5,
0x2d0, 0x7, 0x17, 0x2, 0x2, 0x2d0, 0x2d1, 0x7, 0x51, 0x6e, 0x38, 0x2, 0x2d0, 0x2d2, 0x7, 0xf, 0x2, 0x2,
0x2, 0x2, 0x2d1, 0x2d2, 0x7, 0x7, 0x2, 0x2, 0x2d2, 0x2d1, 0x2cf, 0x3, 0x2, 0x2, 0x2, 0x2d1, 0x2d0, 0x3,
0x2d3, 0x5, 0x2, 0x2, 0x2, 0x2d3, 0x2d4, 0x7, 0x36, 0x2, 0x2, 0x2, 0x2d2, 0x85, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2d4, 0x2d5, 0x7, 0x50, 0x2, 0x2, 0x2d5, 0x2d3, 0x2d4, 0x7, 0x17, 0x2, 0x2, 0x2d4, 0x2d5, 0x7,
0x2d6, 0x7, 0xf, 0x2, 0x2, 0x2d6, 0x87, 0x3, 0x2, 0x51, 0x2, 0x2, 0x2d5, 0x2d6, 0x7, 0x7, 0x2, 0x2,
0x2, 0x2, 0x2d7, 0x2e1, 0x5, 0x76, 0x3c, 0x2, 0x2d8, 0x2d6, 0x2d7, 0x5, 0x2, 0x2, 0x2, 0x2d7, 0x2d8, 0x7,
0x2e1, 0x5, 0x78, 0x3d, 0x2, 0x2d9, 0x2e1, 0x5, 0x80, 0x36, 0x2, 0x2, 0x2d8, 0x2d9, 0x7, 0x50, 0x2, 0x2,
0x41, 0x2, 0x2da, 0x2e1, 0x5, 0x82, 0x42, 0x2, 0x2db, 0x2d9, 0x2da, 0x7, 0xf, 0x2, 0x2, 0x2da, 0x87, 0x3,
0x2e1, 0x5, 0x84, 0x43, 0x2, 0x2dc, 0x2e1, 0x5, 0x7c, 0x2, 0x2, 0x2, 0x2db, 0x2e5, 0x5, 0x76, 0x3c, 0x2,
0x3f, 0x2, 0x2dd, 0x2e1, 0x5, 0x7a, 0x3e, 0x2, 0x2de, 0x2dc, 0x2e5, 0x5, 0x78, 0x3d, 0x2, 0x2dd, 0x2e5, 0x5,
0x2e1, 0x5, 0x7e, 0x40, 0x2, 0x2df, 0x2e1, 0x5, 0x86, 0x80, 0x41, 0x2, 0x2de, 0x2e5, 0x5, 0x82, 0x42, 0x2,
0x44, 0x2, 0x2e0, 0x2d7, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2df, 0x2e5, 0x5, 0x84, 0x43, 0x2, 0x2e0, 0x2e5, 0x5,
0x2d8, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2d9, 0x3, 0x2, 0x7c, 0x3f, 0x2, 0x2e1, 0x2e5, 0x5, 0x7a, 0x3e, 0x2,
0x2, 0x2, 0x2e0, 0x2da, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2e2, 0x2e5, 0x5, 0x7e, 0x40, 0x2, 0x2e3, 0x2e5, 0x5,
0x2db, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2dc, 0x3, 0x2, 0x86, 0x44, 0x2, 0x2e4, 0x2db, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2e0, 0x2dd, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2e4, 0x2dc, 0x3, 0x2, 0x2, 0x2, 0x2e4, 0x2dd, 0x3,
0x2de, 0x3, 0x2, 0x2, 0x2, 0x2e0, 0x2df, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2e4, 0x2de, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2e1, 0x89, 0x3, 0x2, 0x2, 0x2, 0x2e2, 0x2e4, 0x2df, 0x3, 0x2, 0x2, 0x2, 0x2e4, 0x2e0, 0x3,
0x2e3, 0x7, 0x1b, 0x2, 0x2, 0x2e3, 0x2e4, 0x7, 0x51, 0x2, 0x2, 0x2, 0x2e4, 0x2e1, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2e4, 0x2e8, 0x7, 0x12, 0x2, 0x2, 0x2e5, 0x2e4, 0x2e2, 0x3, 0x2, 0x2, 0x2, 0x2e4, 0x2e3, 0x3,
0x2e7, 0x5, 0x88, 0x45, 0x2, 0x2e6, 0x2e5, 0x3, 0x2, 0x2, 0x2, 0x2, 0x2e5, 0x89, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2e7, 0x2ea, 0x3, 0x2, 0x2, 0x2, 0x2e8, 0x2e6, 0x2e7, 0x7, 0x1b, 0x2, 0x2, 0x2e7, 0x2e8, 0x7,
0x2e6, 0x3, 0x2, 0x2, 0x2, 0x2e8, 0x2e9, 0x3, 0x2, 0x51, 0x2, 0x2, 0x2e8, 0x2ec, 0x7, 0x12, 0x2, 0x2,
0x2, 0x2, 0x2e9, 0x2eb, 0x3, 0x2, 0x2, 0x2, 0x2ea, 0x2e9, 0x2eb, 0x5, 0x88, 0x45, 0x2, 0x2ea, 0x2e9, 0x3,
0x2e8, 0x3, 0x2, 0x2, 0x2, 0x2eb, 0x2ec, 0x7, 0x13, 0x2, 0x2, 0x2, 0x2eb, 0x2ee, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2ec, 0x8b, 0x3, 0x2, 0x2, 0x2, 0x2ed, 0x2ec, 0x2ea, 0x3, 0x2, 0x2, 0x2, 0x2ec, 0x2ed, 0x3,
0x2f0, 0x5, 0x8a, 0x46, 0x2, 0x2ee, 0x2f0, 0x5, 0x88, 0x2, 0x2, 0x2, 0x2ed, 0x2ef, 0x3, 0x2, 0x2, 0x2,
0x45, 0x2, 0x2ef, 0x2ed, 0x3, 0x2, 0x2, 0x2, 0x2ef, 0x2ee, 0x2ec, 0x3, 0x2, 0x2, 0x2, 0x2ef, 0x2f0, 0x7,
0x2ee, 0x3, 0x2, 0x2, 0x2, 0x2f0, 0x2f3, 0x3, 0x2, 0x13, 0x2, 0x2, 0x2f0, 0x8b, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2f1, 0x2ef, 0x3, 0x2, 0x2, 0x2, 0x2f1, 0x2f1, 0x2f4, 0x5, 0x8a, 0x46, 0x2, 0x2f2, 0x2f4, 0x5,
0x2f2, 0x3, 0x2, 0x2, 0x2, 0x2f2, 0x8d, 0x3, 0x2, 0x88, 0x45, 0x2, 0x2f3, 0x2f1, 0x3, 0x2, 0x2, 0x2,
0x2, 0x2, 0x2f3, 0x2f1, 0x3, 0x2, 0x2, 0x2, 0x48, 0x2f3, 0x2f2, 0x3, 0x2, 0x2, 0x2, 0x2f4, 0x2f7, 0x3,
0x8f, 0x99, 0xa0, 0xa3, 0xb3, 0xb7, 0xbb, 0xc1, 0xc6, 0x2, 0x2, 0x2, 0x2f5, 0x2f3, 0x3, 0x2, 0x2, 0x2,
0xcc, 0xd3, 0xd7, 0xdf, 0xe2, 0xea, 0xed, 0xf2, 0xf6, 0x2f5, 0x2f6, 0x3, 0x2, 0x2, 0x2, 0x2f6, 0x8d, 0x3,
0xfc, 0x109, 0x10d, 0x11c, 0x127, 0x132, 0x13d, 0x148, 0x153, 0x2, 0x2, 0x2, 0x2f7, 0x2f5, 0x3, 0x2, 0x2, 0x2,
0x15e, 0x169, 0x174, 0x17a, 0x17f, 0x189, 0x18b, 0x198, 0x19e, 0x4a, 0x8f, 0x99, 0xa0, 0xa3, 0xb3, 0xb7, 0xbb, 0xc1,
0x1a0, 0x1a4, 0x1bf, 0x1c2, 0x1d0, 0x1d4, 0x1d9, 0x1e8, 0x1ee, 0xc6, 0xcc, 0xd3, 0xd7, 0xdf, 0xe2, 0xea, 0xed, 0xf2,
0x1f5, 0x204, 0x207, 0x20f, 0x217, 0x221, 0x22a, 0x230, 0x239, 0xf6, 0xfc, 0x109, 0x10d, 0x11c, 0x127, 0x132, 0x13d, 0x148,
0x242, 0x261, 0x266, 0x26a, 0x272, 0x282, 0x285, 0x288, 0x294, 0x153, 0x15e, 0x169, 0x174, 0x17a, 0x17f, 0x189, 0x18b, 0x198,
0x2a1, 0x2a5, 0x2b7, 0x2e0, 0x2e8, 0x2ef, 0x2f1, 0x19e, 0x1a0, 0x1a4, 0x1bf, 0x1c2, 0x1d0, 0x1d4, 0x1d9, 0x1e8,
0x1ee, 0x1f5, 0x204, 0x207, 0x20f, 0x217, 0x221, 0x22a, 0x230,
0x239, 0x242, 0x261, 0x266, 0x26a, 0x272, 0x282, 0x285, 0x288,
0x294, 0x2a1, 0x2a5, 0x2b7, 0x2c0, 0x2d1, 0x2e4, 0x2ec, 0x2f3,
0x2f5,
}; };
atn::ATNDeserializer deserializer; atn::ATNDeserializer deserializer;
......
...@@ -169,13 +169,16 @@ antlrcpp::Any AstGenerator::visitMacroDeclaration( ...@@ -169,13 +169,16 @@ antlrcpp::Any AstGenerator::visitMacroDeclaration(
GetOptionalParameterList(context->parameterList()), GetOptionalParameterList(context->parameterList()),
GetOptionalType(context->optionalType()), GetOptionalType(context->optionalType()),
GetOptionalLabelAndTypeList(context->optionalLabelList())}); GetOptionalLabelAndTypeList(context->optionalLabelList())});
auto body = context->helperBody()->accept(this).as<Statement*>(); base::Optional<Statement*> body;
if (context->helperBody())
body = context->helperBody()->accept(this).as<Statement*>();
Declaration* result = nullptr; Declaration* result = nullptr;
if (generic_parameters.size() != 0) { if (generic_parameters.size() != 0) {
result = RegisterNode( result = RegisterNode(
new GenericDeclaration{Pos(context), macro, generic_parameters, body}); new GenericDeclaration{Pos(context), macro, generic_parameters, body});
} else { } else {
result = RegisterNode(new StandardDeclaration{Pos(context), macro, body}); if (!body) ReportError("A non-generic declaration needs a body.");
result = RegisterNode(new StandardDeclaration{Pos(context), macro, *body});
} }
return result; return result;
} }
...@@ -184,7 +187,9 @@ antlrcpp::Any AstGenerator::visitBuiltinDeclaration( ...@@ -184,7 +187,9 @@ antlrcpp::Any AstGenerator::visitBuiltinDeclaration(
TorqueParser::BuiltinDeclarationContext* context) { TorqueParser::BuiltinDeclarationContext* context) {
auto generic_parameters = auto generic_parameters =
GetIdentifierVector(context->optionalGenericTypeList()->IDENTIFIER()); GetIdentifierVector(context->optionalGenericTypeList()->IDENTIFIER());
Statement* body = context->helperBody()->accept(this).as<Statement*>(); base::Optional<Statement*> body;
if (context->helperBody())
body = context->helperBody()->accept(this).as<Statement*>();
TorqueBuiltinDeclaration* builtin = RegisterNode(new TorqueBuiltinDeclaration{ TorqueBuiltinDeclaration* builtin = RegisterNode(new TorqueBuiltinDeclaration{
Pos(context), context->JAVASCRIPT() != nullptr, Pos(context), context->JAVASCRIPT() != nullptr,
...@@ -197,7 +202,9 @@ antlrcpp::Any AstGenerator::visitBuiltinDeclaration( ...@@ -197,7 +202,9 @@ antlrcpp::Any AstGenerator::visitBuiltinDeclaration(
result = RegisterNode(new GenericDeclaration{Pos(context), builtin, result = RegisterNode(new GenericDeclaration{Pos(context), builtin,
generic_parameters, body}); generic_parameters, body});
} else { } else {
result = RegisterNode(new StandardDeclaration{Pos(context), builtin, body}); if (!body) ReportError("A non-generic declaration needs a body.");
result =
RegisterNode(new StandardDeclaration{Pos(context), builtin, *body});
} }
return result; return result;
} }
......
...@@ -651,14 +651,15 @@ struct StandardDeclaration : Declaration { ...@@ -651,14 +651,15 @@ struct StandardDeclaration : Declaration {
struct GenericDeclaration : Declaration { struct GenericDeclaration : Declaration {
DEFINE_AST_NODE_LEAF_BOILERPLATE(GenericDeclaration) DEFINE_AST_NODE_LEAF_BOILERPLATE(GenericDeclaration)
GenericDeclaration(SourcePosition p, CallableNode* c, GenericDeclaration(SourcePosition p, CallableNode* c,
std::vector<std::string> gp, Statement* b) std::vector<std::string> gp,
base::Optional<Statement*> b = base::nullopt)
: Declaration(kKind, p), : Declaration(kKind, p),
callable(c), callable(c),
generic_parameters(std::move(gp)), generic_parameters(std::move(gp)),
body(b) {} body(b) {}
CallableNode* callable; CallableNode* callable;
std::vector<std::string> generic_parameters; std::vector<std::string> generic_parameters;
Statement* body; base::Optional<Statement*> body;
}; };
struct SpecializationDeclaration : Declaration { struct SpecializationDeclaration : Declaration {
......
...@@ -228,7 +228,8 @@ void DeclarationVisitor::Visit(SpecializationDeclaration* decl) { ...@@ -228,7 +228,8 @@ void DeclarationVisitor::Visit(SpecializationDeclaration* decl) {
} }
} }
SpecializeGeneric({key, callable, decl->signature.get(), decl->body}); SpecializeGeneric(
{key, callable, decl->signature.get(), decl->body, decl->pos});
} }
void DeclarationVisitor::Visit(ReturnStatement* stmt) { void DeclarationVisitor::Visit(ReturnStatement* stmt) {
......
...@@ -88,12 +88,14 @@ Callable* FileVisitor::LookupCall(const std::string& name, ...@@ -88,12 +88,14 @@ Callable* FileVisitor::LookupCall(const std::string& name,
void FileVisitor::QueueGenericSpecialization( void FileVisitor::QueueGenericSpecialization(
const SpecializationKey& key, CallableNode* callable, const SpecializationKey& key, CallableNode* callable,
const CallableNodeSignature* signature, Statement* body) { const CallableNodeSignature* signature, base::Optional<Statement*> body) {
pending_specializations_.push_back({key, callable, signature, body}); pending_specializations_.push_back(
{key, callable, signature, body, CurrentSourcePosition::Get()});
} }
void FileVisitor::SpecializeGeneric( void FileVisitor::SpecializeGeneric(
const PendingSpecialization& specialization) { const PendingSpecialization& specialization) {
CurrentSourcePosition::Scope scope(specialization.request_position);
if (completed_specializations_.find(specialization.key) != if (completed_specializations_.find(specialization.key) !=
completed_specializations_.end()) { completed_specializations_.end()) {
std::stringstream stream; std::stringstream stream;
...@@ -102,12 +104,19 @@ void FileVisitor::SpecializeGeneric( ...@@ -102,12 +104,19 @@ void FileVisitor::SpecializeGeneric(
<< " with types <" << specialization.key.second << ">"; << " with types <" << specialization.key.second << ">";
ReportError(stream.str()); ReportError(stream.str());
} }
if (!specialization.body) {
std::stringstream stream;
stream << "missing specialization of "
<< specialization.key.first->declaration()->callable->name
<< " with types <" << specialization.key.second << ">";
ReportError(stream.str());
}
Declarations::ScopedGenericSpecializationKey instantiation( Declarations::ScopedGenericSpecializationKey instantiation(
declarations(), specialization.key); declarations(), specialization.key);
FileVisitor::ScopedModuleActivator activator( FileVisitor::ScopedModuleActivator activator(
this, specialization.key.first->module()); this, specialization.key.first->module());
Specialize(specialization.key, specialization.callable, Specialize(specialization.key, specialization.callable,
specialization.signature, specialization.body); specialization.signature, *specialization.body);
completed_specializations_.insert(specialization.key); completed_specializations_.insert(specialization.key);
} }
......
...@@ -81,13 +81,14 @@ class FileVisitor { ...@@ -81,13 +81,14 @@ class FileVisitor {
SpecializationKey key; SpecializationKey key;
CallableNode* callable; CallableNode* callable;
const CallableNodeSignature* signature; const CallableNodeSignature* signature;
Statement* body; base::Optional<Statement*> body;
SourcePosition request_position;
}; };
void QueueGenericSpecialization(const SpecializationKey& key, void QueueGenericSpecialization(const SpecializationKey& key,
CallableNode* callable, CallableNode* callable,
const CallableNodeSignature* signature, const CallableNodeSignature* signature,
Statement* body); base::Optional<Statement*> body);
void SpecializeGeneric(const PendingSpecialization& specialization); void SpecializeGeneric(const PendingSpecialization& specialization);
......
...@@ -1459,7 +1459,8 @@ void ImplementationVisitor::Visit(SpecializationDeclaration* decl) { ...@@ -1459,7 +1459,8 @@ void ImplementationVisitor::Visit(SpecializationDeclaration* decl) {
SpecializeGeneric({{generic, specialization_types}, SpecializeGeneric({{generic, specialization_types},
callable, callable,
decl->signature.get(), decl->signature.get(),
decl->body}); decl->body,
decl->pos});
} }
VisitResult ImplementationVisitor::Visit(CallExpression* expr, VisitResult ImplementationVisitor::Visit(CallExpression* expr,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment