diff --git a/x-pack/plugin/esql/build.gradle b/x-pack/plugin/esql/build.gradle index 2498b621b73e4..99e19a98dd031 100644 --- a/x-pack/plugin/esql/build.gradle +++ b/x-pack/plugin/esql/build.gradle @@ -205,6 +205,7 @@ tasks.register("regenLexer", JavaExec) { '-package', 'org.elasticsearch.xpack.esql.parser', '-listener', '-visitor', + '-lib', "${file(grammarPath)}/lexer", '-o', outputPath, "${file(grammarPath)}/EsqlBaseLexer.g4" } @@ -222,8 +223,9 @@ tasks.register("regenParser", JavaExec) { '-package', 'org.elasticsearch.xpack.esql.parser', '-listener', '-visitor', - '-o', outputPath, '-lib', outputPath, + '-lib', "${file(grammarPath)}/parser", + '-o', outputPath, "${file(grammarPath)}/EsqlBaseParser.g4" } diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java index dc979806370f0..accfd2f69ee64 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestEsqlTestCase.java @@ -764,7 +764,8 @@ public void testNamedParamsForIdentifierAndIdentifierPatterns() throws IOExcepti ); error = re.getMessage(); assertThat(error, containsString("ParsingException")); - assertThat(error, containsString("line 1:23: mismatched input '?cmd' expecting {'dissect', 'drop'")); + assertThat(error, containsString("line 1:23: mismatched input '?cmd' expecting {")); + assertThat(error, containsString("'dissect', 'eval', 'grok', 'limit', 'sort'")); } } diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 index 67dad1d61d4c3..e934acc0bad79 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 @@ -21,28 +21,20 @@ options { } /* - * Before modifying this file, please read the section above as changes here - * have significant impact in the ANTLR generated code and its consumption upstream - * (including Kibana). + * Before modifying this file or the files in the `lexer` subdirectory, please read + * the section below as changes here have significant impact in the ANTLR generated + * code and its consumption in Kibana. * - * A. To add a development token (only available behind in snapshot/dev builds) + * A. To add a development command (only available behind in snapshot/dev builds) * - * Since the tokens/modes are in development, simply define them under the - * "// in development section" and follow the section comments in that section. - * That is use the DEV_ prefix and use the {this.isDevVersion()}? conditional. - * They are defined at the end of the file, to minimize the impact on the existing - * token types. + * Since the tokens/modes are in development, add a predicate like this: + * DEV_MYCOMMAND : {this.isDevVersion()}? 'mycommand' -> ... * * B. To add a new (production-ready) token * * Be sure to go through step A (add a development token). * Make sure to remove the prefix and conditional before promoting the tokens in * production. - * Since tokens types (numbers) are generated by ANTLR in a continuous fashion, - * it is desirable to avoid changing these values hence where possible, add - * add them at the end of their respective section. - * Note that the use of lexing modes prevents this since any addition to a mode - * (regardless where it occurs) shifts all the declarations that follow in other modes. * * C. Renaming a token * @@ -57,48 +49,24 @@ options { * they have on the UI (auto-completion, etc...) */ -DISSECT : 'dissect' -> pushMode(EXPRESSION_MODE); -DROP : 'drop' -> pushMode(PROJECT_MODE); -ENRICH : 'enrich' -> pushMode(ENRICH_MODE); -EVAL : 'eval' -> pushMode(EXPRESSION_MODE); -EXPLAIN : 'explain' -> pushMode(EXPLAIN_MODE); -FROM : 'from' -> pushMode(FROM_MODE); -GROK : 'grok' -> pushMode(EXPRESSION_MODE); -KEEP : 'keep' -> pushMode(PROJECT_MODE); -LIMIT : 'limit' -> pushMode(EXPRESSION_MODE); -MV_EXPAND : 'mv_expand' -> pushMode(MVEXPAND_MODE); -RENAME : 'rename' -> pushMode(RENAME_MODE); -ROW : 'row' -> pushMode(EXPRESSION_MODE); -SHOW : 'show' -> pushMode(SHOW_MODE); -SORT : 'sort' -> pushMode(EXPRESSION_MODE); -STATS : 'stats' -> pushMode(EXPRESSION_MODE); -WHERE : 'where' -> pushMode(EXPRESSION_MODE); -JOIN_LOOKUP : 'lookup' -> pushMode(JOIN_MODE); -// -// in development -// -// Before adding a new in-development command, to sandbox the behavior when running in production environments -// -// For example: to add myCommand use the following declaration: -// DEV_MYCOMMAND : {this.isDevVersion()}? 'mycommand' -> ... -// -// Once the command has been stabilized, remove the DEV_ prefix and the {}? conditional and move the command to the -// main section while preserving alphabetical order: -// MYCOMMAND : 'mycommand' -> ... -DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION_MODE); -DEV_INSIST : {this.isDevVersion()}? 'insist_🐔' -> pushMode(PROJECT_MODE); -DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE); -DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE); -// list of all JOIN commands -DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE); -DEV_JOIN_LEFT : {this.isDevVersion()}? 'left' -> pushMode(JOIN_MODE); -DEV_JOIN_RIGHT : {this.isDevVersion()}? 'right' -> pushMode(JOIN_MODE); - - -// -// Catch-all for unrecognized commands - don't define any beyond this line -// -UNKNOWN_CMD : ~[ \r\n\t[\]/]+ -> pushMode(EXPRESSION_MODE) ; +/* + * Import lexer grammars for each command, making sure to import + * the UNKNOWN_CMD token *last* because it takes over parsing for + * all other commands. + */ +import ChangePoint, + Enrich, + Explain, + Expression, + From, + Join, + Lookup, + Metrics, + MvExpand, + Project, + Rename, + Show, + UnknownCommand; LINE_COMMENT : '//' ~[\r\n]* '\r'? '\n'? -> channel(HIDDEN) @@ -111,543 +79,3 @@ MULTILINE_COMMENT WS : [ \r\n\t]+ -> channel(HIDDEN) ; - -// -// Expression - used by most command -// -mode EXPRESSION_MODE; - -PIPE : '|' -> popMode; - -fragment DIGIT - : [0-9] - ; - -fragment LETTER - : [a-z] - ; - -fragment ESCAPE_SEQUENCE - : '\\' [tnr"\\] - ; - -fragment UNESCAPED_CHARS - : ~[\r\n"\\] - ; - -fragment EXPONENT - : [e] [+-]? DIGIT+ - ; - -fragment ASPERAND - : '@' - ; - -fragment BACKQUOTE - : '`' - ; - -fragment BACKQUOTE_BLOCK - : ~'`' - | '``' - ; - -fragment UNDERSCORE - : '_' - ; - -fragment UNQUOTED_ID_BODY - : (LETTER | DIGIT | UNDERSCORE) - ; - -QUOTED_STRING - : '"' (ESCAPE_SEQUENCE | UNESCAPED_CHARS)* '"' - | '"""' (~[\r\n])*? '"""' '"'? '"'? - ; - -INTEGER_LITERAL - : DIGIT+ - ; - -DECIMAL_LITERAL - : DIGIT+ DOT DIGIT* - | DOT DIGIT+ - | DIGIT+ (DOT DIGIT*)? EXPONENT - | DOT DIGIT+ EXPONENT - ; - -BY : 'by'; - -AND : 'and'; -ASC : 'asc'; -ASSIGN : '='; -CAST_OP : '::'; -COLON : ':'; -COMMA : ','; -DESC : 'desc'; -DOT : '.'; -FALSE : 'false'; -FIRST : 'first'; -IN: 'in'; -IS: 'is'; -LAST : 'last'; -LIKE: 'like'; -LP : '('; -NOT : 'not'; -NULL : 'null'; -NULLS : 'nulls'; -OR : 'or'; -PARAM: '?'; -RLIKE: 'rlike'; -RP : ')'; -TRUE : 'true'; - -EQ : '=='; -CIEQ : '=~'; -NEQ : '!='; -LT : '<'; -LTE : '<='; -GT : '>'; -GTE : '>='; - -PLUS : '+'; -MINUS : '-'; -ASTERISK : '*'; -SLASH : '/'; -PERCENT : '%'; - -LEFT_BRACES : '{'; -RIGHT_BRACES : '}'; - -NESTED_WHERE : WHERE -> type(WHERE); - -NAMED_OR_POSITIONAL_PARAM - : PARAM (LETTER | UNDERSCORE) UNQUOTED_ID_BODY* - | PARAM DIGIT+ - ; - -// Brackets are funny. We can happen upon a CLOSING_BRACKET in two ways - one -// way is to start in an explain command which then shifts us to expression -// mode. Thus, the two popModes on CLOSING_BRACKET. The other way could as -// the start of a multivalued field constant. To line up with the double pop -// the explain mode needs, we double push when we see that. -OPENING_BRACKET : '[' -> pushMode(EXPRESSION_MODE), pushMode(EXPRESSION_MODE); -CLOSING_BRACKET : ']' -> popMode, popMode; - -UNQUOTED_IDENTIFIER - : LETTER UNQUOTED_ID_BODY* - // only allow @ at beginning of identifier to keep the option to allow @ as infix operator in the future - // also, single `_` and `@` characters are not valid identifiers - | (UNDERSCORE | ASPERAND) UNQUOTED_ID_BODY+ - ; - -fragment QUOTED_ID - : BACKQUOTE BACKQUOTE_BLOCK+ BACKQUOTE - ; - -QUOTED_IDENTIFIER - : QUOTED_ID - ; - -EXPR_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -EXPR_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -EXPR_WS - : WS -> channel(HIDDEN) - ; - -// -// Explain -// -mode EXPLAIN_MODE; -EXPLAIN_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET), pushMode(DEFAULT_MODE); -EXPLAIN_PIPE : PIPE -> type(PIPE), popMode; -EXPLAIN_WS : WS -> channel(HIDDEN); -EXPLAIN_LINE_COMMENT : LINE_COMMENT -> channel(HIDDEN); -EXPLAIN_MULTILINE_COMMENT : MULTILINE_COMMENT -> channel(HIDDEN); - -// -// FROM command -// -mode FROM_MODE; -FROM_PIPE : PIPE -> type(PIPE), popMode; -FROM_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET); -FROM_CLOSING_BRACKET : CLOSING_BRACKET -> type(CLOSING_BRACKET); -FROM_COLON : COLON -> type(COLON); -FROM_COMMA : COMMA -> type(COMMA); -FROM_ASSIGN : ASSIGN -> type(ASSIGN); -METADATA : 'metadata'; - -// in 8.14 ` were not allowed -// this has been relaxed in 8.15 since " is used for quoting -fragment UNQUOTED_SOURCE_PART - : ~[:"=|,[\]/ \t\r\n] - | '/' ~[*/] // allow single / but not followed by another / or * which would start a comment -- used in index pattern date spec - ; - -UNQUOTED_SOURCE - : UNQUOTED_SOURCE_PART+ - ; - -FROM_UNQUOTED_SOURCE : UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); -FROM_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); - -FROM_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -FROM_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -FROM_WS - : WS -> channel(HIDDEN) - ; - -// -// DROP, KEEP, INSIST -// -mode PROJECT_MODE; -PROJECT_PIPE : PIPE -> type(PIPE), popMode; -PROJECT_DOT: DOT -> type(DOT); -PROJECT_COMMA : COMMA -> type(COMMA); -PROJECT_PARAM : PARAM -> type(PARAM); -PROJECT_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); - -fragment UNQUOTED_ID_BODY_WITH_PATTERN - : (LETTER | DIGIT | UNDERSCORE | ASTERISK) - ; - -fragment UNQUOTED_ID_PATTERN - : (LETTER | ASTERISK) UNQUOTED_ID_BODY_WITH_PATTERN* - | (UNDERSCORE | ASPERAND) UNQUOTED_ID_BODY_WITH_PATTERN+ - ; - -ID_PATTERN - : (UNQUOTED_ID_PATTERN | QUOTED_ID)+ - ; - -PROJECT_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -PROJECT_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -PROJECT_WS - : WS -> channel(HIDDEN) - ; -// -// | RENAME a.b AS x, c AS y -// -mode RENAME_MODE; -RENAME_PIPE : PIPE -> type(PIPE), popMode; -RENAME_ASSIGN : ASSIGN -> type(ASSIGN); -RENAME_COMMA : COMMA -> type(COMMA); -RENAME_DOT: DOT -> type(DOT); -RENAME_PARAM : PARAM -> type(PARAM); -RENAME_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); - -AS : 'as'; - -RENAME_ID_PATTERN - : ID_PATTERN -> type(ID_PATTERN) - ; - -RENAME_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -RENAME_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -RENAME_WS - : WS -> channel(HIDDEN) - ; - -// | ENRICH ON key WITH fields -mode ENRICH_MODE; -ENRICH_PIPE : PIPE -> type(PIPE), popMode; -ENRICH_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET), pushMode(SETTING_MODE); - -ON : 'on' -> pushMode(ENRICH_FIELD_MODE); -WITH : 'with' -> pushMode(ENRICH_FIELD_MODE); - -// similar to that of an index -// see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html#indices-create-api-path-params -fragment ENRICH_POLICY_NAME_BODY - : ~[\\/?"<>| ,#\t\r\n:] - ; - -ENRICH_POLICY_NAME - // allow prefix for the policy to specify its resolution - : (ENRICH_POLICY_NAME_BODY+ COLON)? ENRICH_POLICY_NAME_BODY+ - ; - -ENRICH_MODE_UNQUOTED_VALUE - : ENRICH_POLICY_NAME -> type(ENRICH_POLICY_NAME) - ; - -ENRICH_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -ENRICH_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -ENRICH_WS - : WS -> channel(HIDDEN) - ; - -// submode for Enrich to allow different lexing between policy source (loose) and field identifiers -mode ENRICH_FIELD_MODE; -ENRICH_FIELD_PIPE : PIPE -> type(PIPE), popMode, popMode; -ENRICH_FIELD_ASSIGN : ASSIGN -> type(ASSIGN); -ENRICH_FIELD_COMMA : COMMA -> type(COMMA); -ENRICH_FIELD_DOT: DOT -> type(DOT); - -ENRICH_FIELD_WITH : WITH -> type(WITH) ; - -ENRICH_FIELD_ID_PATTERN - : ID_PATTERN -> type(ID_PATTERN) - ; - -ENRICH_FIELD_QUOTED_IDENTIFIER - : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER) - ; - -ENRICH_FIELD_PARAM : PARAM -> type(PARAM); -ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); - -ENRICH_FIELD_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -ENRICH_FIELD_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -ENRICH_FIELD_WS - : WS -> channel(HIDDEN) - ; - -mode MVEXPAND_MODE; -MVEXPAND_PIPE : PIPE -> type(PIPE), popMode; -MVEXPAND_DOT: DOT -> type(DOT); -MVEXPAND_PARAM : PARAM -> type(PARAM); -MVEXPAND_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); - -MVEXPAND_QUOTED_IDENTIFIER - : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER) - ; - -MVEXPAND_UNQUOTED_IDENTIFIER - : UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER) - ; - -MVEXPAND_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -MVEXPAND_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -MVEXPAND_WS - : WS -> channel(HIDDEN) - ; - -// -// SHOW commands -// -mode SHOW_MODE; -SHOW_PIPE : PIPE -> type(PIPE), popMode; - -INFO : 'info'; - -SHOW_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -SHOW_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -SHOW_WS - : WS -> channel(HIDDEN) - ; - -mode SETTING_MODE; -SETTING_CLOSING_BRACKET : CLOSING_BRACKET -> type(CLOSING_BRACKET), popMode; - -SETTING_COLON : COLON -> type(COLON); - -SETTING - : (ASPERAND | DIGIT| DOT | LETTER | UNDERSCORE)+ - ; - -SETTING_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -SETTTING_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -SETTING_WS - : WS -> channel(HIDDEN) - ; - -// -// LOOKUP ON key -// -mode LOOKUP_MODE; -LOOKUP_PIPE : PIPE -> type(PIPE), popMode; -LOOKUP_COLON : COLON -> type(COLON); -LOOKUP_COMMA : COMMA -> type(COMMA); -LOOKUP_DOT: DOT -> type(DOT); -LOOKUP_ON : ON -> type(ON), pushMode(LOOKUP_FIELD_MODE); - -LOOKUP_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); -LOOKUP_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); - -LOOKUP_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -LOOKUP_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -LOOKUP_WS - : WS -> channel(HIDDEN) - ; - -mode LOOKUP_FIELD_MODE; -LOOKUP_FIELD_PIPE : PIPE -> type(PIPE), popMode, popMode; -LOOKUP_FIELD_COMMA : COMMA -> type(COMMA); -LOOKUP_FIELD_DOT: DOT -> type(DOT); - -LOOKUP_FIELD_ID_PATTERN - : ID_PATTERN -> type(ID_PATTERN) - ; - -LOOKUP_FIELD_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -LOOKUP_FIELD_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -LOOKUP_FIELD_WS - : WS -> channel(HIDDEN) - ; - -// -// JOIN-related commands -// -mode JOIN_MODE; -JOIN_PIPE : PIPE -> type(PIPE), popMode; -JOIN : 'join'; -JOIN_AS : AS -> type(AS); -JOIN_ON : ON -> type(ON), popMode, pushMode(EXPRESSION_MODE); -USING : 'USING' -> popMode, pushMode(EXPRESSION_MODE); - -JOIN_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); -JOIN_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); -JOIN_COLON : COLON -> type(COLON); - -JOIN_UNQUOTED_IDENTIFER: UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER); -JOIN_QUOTED_IDENTIFIER : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER); - -JOIN_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -JOIN_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -JOIN_WS - : WS -> channel(HIDDEN) - ; - -// -// METRICS command -// -mode METRICS_MODE; -METRICS_PIPE : PIPE -> type(PIPE), popMode; - -METRICS_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE), popMode, pushMode(CLOSING_METRICS_MODE); -METRICS_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING), popMode, pushMode(CLOSING_METRICS_MODE); - -METRICS_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -METRICS_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -METRICS_WS - : WS -> channel(HIDDEN) - ; - -// TODO: remove this workaround mode - see https://github.com/elastic/elasticsearch/issues/108528 -mode CLOSING_METRICS_MODE; - -CLOSING_METRICS_COLON - : COLON -> type(COLON), popMode, pushMode(METRICS_MODE) - ; - -CLOSING_METRICS_COMMA - : COMMA -> type(COMMA), popMode, pushMode(METRICS_MODE) - ; - -CLOSING_METRICS_LINE_COMMENT - : LINE_COMMENT -> channel(HIDDEN) - ; - -CLOSING_METRICS_MULTILINE_COMMENT - : MULTILINE_COMMENT -> channel(HIDDEN) - ; - -CLOSING_METRICS_WS - : WS -> channel(HIDDEN) - ; - -CLOSING_METRICS_QUOTED_IDENTIFIER - : QUOTED_IDENTIFIER -> popMode, pushMode(EXPRESSION_MODE), type(QUOTED_IDENTIFIER) - ; - -CLOSING_METRICS_UNQUOTED_IDENTIFIER - :UNQUOTED_IDENTIFIER -> popMode, pushMode(EXPRESSION_MODE), type(UNQUOTED_IDENTIFIER) - ; - -CLOSING_METRICS_BY - :BY -> popMode, pushMode(EXPRESSION_MODE), type(BY) - ; - -CLOSING_METRICS_PIPE - : PIPE -> type(PIPE), popMode - ; - -// -// INSIST command -// -mode INSIST_MODE; -INSIST_PIPE : PIPE -> type(PIPE), popMode; -INSIST_IDENTIFIER: UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER); - -INSIST_WS : WS -> channel(HIDDEN); -INSIST_LINE_COMMENT : LINE_COMMENT -> channel(HIDDEN); -INSIST_MULTILINE_COMMENT : MULTILINE_COMMENT -> channel(HIDDEN); diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens index ff27d74c959cd..a21e9b3044da2 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens @@ -1,198 +1,198 @@ -DISSECT=1 -DROP=2 -ENRICH=3 -EVAL=4 -EXPLAIN=5 -FROM=6 -GROK=7 -KEEP=8 -LIMIT=9 -MV_EXPAND=10 -RENAME=11 -ROW=12 -SHOW=13 -SORT=14 -STATS=15 -WHERE=16 +LINE_COMMENT=1 +MULTILINE_COMMENT=2 +WS=3 +DEV_CHANGE_POINT=4 +ENRICH=5 +EXPLAIN=6 +DISSECT=7 +EVAL=8 +GROK=9 +LIMIT=10 +ROW=11 +SORT=12 +STATS=13 +WHERE=14 +DEV_INLINESTATS=15 +FROM=16 JOIN_LOOKUP=17 -DEV_INLINESTATS=18 -DEV_INSIST=19 -DEV_LOOKUP=20 -DEV_METRICS=21 -DEV_JOIN_FULL=22 -DEV_JOIN_LEFT=23 -DEV_JOIN_RIGHT=24 -UNKNOWN_CMD=25 -LINE_COMMENT=26 -MULTILINE_COMMENT=27 -WS=28 -PIPE=29 -QUOTED_STRING=30 -INTEGER_LITERAL=31 -DECIMAL_LITERAL=32 -BY=33 -AND=34 -ASC=35 -ASSIGN=36 -CAST_OP=37 -COLON=38 -COMMA=39 -DESC=40 -DOT=41 -FALSE=42 -FIRST=43 -IN=44 -IS=45 -LAST=46 -LIKE=47 -LP=48 -NOT=49 -NULL=50 -NULLS=51 -OR=52 -PARAM=53 -RLIKE=54 -RP=55 -TRUE=56 -EQ=57 -CIEQ=58 -NEQ=59 -LT=60 -LTE=61 -GT=62 -GTE=63 -PLUS=64 -MINUS=65 -ASTERISK=66 -SLASH=67 -PERCENT=68 -LEFT_BRACES=69 -RIGHT_BRACES=70 -NAMED_OR_POSITIONAL_PARAM=71 -OPENING_BRACKET=72 -CLOSING_BRACKET=73 -UNQUOTED_IDENTIFIER=74 -QUOTED_IDENTIFIER=75 -EXPR_LINE_COMMENT=76 -EXPR_MULTILINE_COMMENT=77 -EXPR_WS=78 -EXPLAIN_WS=79 -EXPLAIN_LINE_COMMENT=80 -EXPLAIN_MULTILINE_COMMENT=81 -METADATA=82 -UNQUOTED_SOURCE=83 -FROM_LINE_COMMENT=84 -FROM_MULTILINE_COMMENT=85 -FROM_WS=86 -ID_PATTERN=87 -PROJECT_LINE_COMMENT=88 -PROJECT_MULTILINE_COMMENT=89 -PROJECT_WS=90 -AS=91 -RENAME_LINE_COMMENT=92 -RENAME_MULTILINE_COMMENT=93 -RENAME_WS=94 -ON=95 -WITH=96 -ENRICH_POLICY_NAME=97 -ENRICH_LINE_COMMENT=98 -ENRICH_MULTILINE_COMMENT=99 -ENRICH_WS=100 -ENRICH_FIELD_LINE_COMMENT=101 -ENRICH_FIELD_MULTILINE_COMMENT=102 -ENRICH_FIELD_WS=103 -MVEXPAND_LINE_COMMENT=104 -MVEXPAND_MULTILINE_COMMENT=105 -MVEXPAND_WS=106 -INFO=107 -SHOW_LINE_COMMENT=108 -SHOW_MULTILINE_COMMENT=109 -SHOW_WS=110 -SETTING=111 -SETTING_LINE_COMMENT=112 -SETTTING_MULTILINE_COMMENT=113 -SETTING_WS=114 -LOOKUP_LINE_COMMENT=115 -LOOKUP_MULTILINE_COMMENT=116 -LOOKUP_WS=117 -LOOKUP_FIELD_LINE_COMMENT=118 -LOOKUP_FIELD_MULTILINE_COMMENT=119 -LOOKUP_FIELD_WS=120 -JOIN=121 -USING=122 -JOIN_LINE_COMMENT=123 -JOIN_MULTILINE_COMMENT=124 -JOIN_WS=125 -METRICS_LINE_COMMENT=126 -METRICS_MULTILINE_COMMENT=127 -METRICS_WS=128 -CLOSING_METRICS_LINE_COMMENT=129 -CLOSING_METRICS_MULTILINE_COMMENT=130 -CLOSING_METRICS_WS=131 -INSIST_WS=132 -INSIST_LINE_COMMENT=133 -INSIST_MULTILINE_COMMENT=134 -'dissect'=1 -'drop'=2 -'enrich'=3 -'eval'=4 -'explain'=5 -'from'=6 -'grok'=7 -'keep'=8 -'limit'=9 -'mv_expand'=10 -'rename'=11 -'row'=12 -'show'=13 -'sort'=14 -'stats'=15 -'where'=16 +DEV_JOIN_FULL=18 +DEV_JOIN_LEFT=19 +DEV_JOIN_RIGHT=20 +DEV_LOOKUP=21 +DEV_METRICS=22 +MV_EXPAND=23 +DROP=24 +KEEP=25 +DEV_INSIST=26 +RENAME=27 +SHOW=28 +UNKNOWN_CMD=29 +CHANGE_POINT_LINE_COMMENT=30 +CHANGE_POINT_MULTILINE_COMMENT=31 +CHANGE_POINT_WS=32 +ON=33 +WITH=34 +ENRICH_POLICY_NAME=35 +ENRICH_LINE_COMMENT=36 +ENRICH_MULTILINE_COMMENT=37 +ENRICH_WS=38 +ENRICH_FIELD_LINE_COMMENT=39 +ENRICH_FIELD_MULTILINE_COMMENT=40 +ENRICH_FIELD_WS=41 +SETTING=42 +SETTING_LINE_COMMENT=43 +SETTTING_MULTILINE_COMMENT=44 +SETTING_WS=45 +EXPLAIN_WS=46 +EXPLAIN_LINE_COMMENT=47 +EXPLAIN_MULTILINE_COMMENT=48 +PIPE=49 +QUOTED_STRING=50 +INTEGER_LITERAL=51 +DECIMAL_LITERAL=52 +BY=53 +AND=54 +ASC=55 +ASSIGN=56 +CAST_OP=57 +COLON=58 +COMMA=59 +DESC=60 +DOT=61 +FALSE=62 +FIRST=63 +IN=64 +IS=65 +LAST=66 +LIKE=67 +NOT=68 +NULL=69 +NULLS=70 +OR=71 +PARAM=72 +RLIKE=73 +TRUE=74 +EQ=75 +CIEQ=76 +NEQ=77 +LT=78 +LTE=79 +GT=80 +GTE=81 +PLUS=82 +MINUS=83 +ASTERISK=84 +SLASH=85 +PERCENT=86 +LEFT_BRACES=87 +RIGHT_BRACES=88 +NAMED_OR_POSITIONAL_PARAM=89 +OPENING_BRACKET=90 +CLOSING_BRACKET=91 +LP=92 +RP=93 +UNQUOTED_IDENTIFIER=94 +QUOTED_IDENTIFIER=95 +EXPR_LINE_COMMENT=96 +EXPR_MULTILINE_COMMENT=97 +EXPR_WS=98 +METADATA=99 +UNQUOTED_SOURCE=100 +FROM_LINE_COMMENT=101 +FROM_MULTILINE_COMMENT=102 +FROM_WS=103 +JOIN=104 +USING=105 +JOIN_LINE_COMMENT=106 +JOIN_MULTILINE_COMMENT=107 +JOIN_WS=108 +LOOKUP_LINE_COMMENT=109 +LOOKUP_MULTILINE_COMMENT=110 +LOOKUP_WS=111 +LOOKUP_FIELD_LINE_COMMENT=112 +LOOKUP_FIELD_MULTILINE_COMMENT=113 +LOOKUP_FIELD_WS=114 +METRICS_LINE_COMMENT=115 +METRICS_MULTILINE_COMMENT=116 +METRICS_WS=117 +CLOSING_METRICS_LINE_COMMENT=118 +CLOSING_METRICS_MULTILINE_COMMENT=119 +CLOSING_METRICS_WS=120 +MVEXPAND_LINE_COMMENT=121 +MVEXPAND_MULTILINE_COMMENT=122 +MVEXPAND_WS=123 +ID_PATTERN=124 +PROJECT_LINE_COMMENT=125 +PROJECT_MULTILINE_COMMENT=126 +PROJECT_WS=127 +AS=128 +RENAME_LINE_COMMENT=129 +RENAME_MULTILINE_COMMENT=130 +RENAME_WS=131 +INFO=132 +SHOW_LINE_COMMENT=133 +SHOW_MULTILINE_COMMENT=134 +SHOW_WS=135 +'enrich'=5 +'explain'=6 +'dissect'=7 +'eval'=8 +'grok'=9 +'limit'=10 +'row'=11 +'sort'=12 +'stats'=13 +'where'=14 +'from'=16 'lookup'=17 -'|'=29 -'by'=33 -'and'=34 -'asc'=35 -'='=36 -'::'=37 -':'=38 -','=39 -'desc'=40 -'.'=41 -'false'=42 -'first'=43 -'in'=44 -'is'=45 -'last'=46 -'like'=47 -'('=48 -'not'=49 -'null'=50 -'nulls'=51 -'or'=52 -'?'=53 -'rlike'=54 -')'=55 -'true'=56 -'=='=57 -'=~'=58 -'!='=59 -'<'=60 -'<='=61 -'>'=62 -'>='=63 -'+'=64 -'-'=65 -'*'=66 -'/'=67 -'%'=68 -'{'=69 -'}'=70 -']'=73 -'metadata'=82 -'as'=91 -'on'=95 -'with'=96 -'info'=107 -'join'=121 -'USING'=122 +'mv_expand'=23 +'drop'=24 +'keep'=25 +'rename'=27 +'show'=28 +'on'=33 +'with'=34 +'|'=49 +'by'=53 +'and'=54 +'asc'=55 +'='=56 +'::'=57 +':'=58 +','=59 +'desc'=60 +'.'=61 +'false'=62 +'first'=63 +'in'=64 +'is'=65 +'last'=66 +'like'=67 +'not'=68 +'null'=69 +'nulls'=70 +'or'=71 +'?'=72 +'rlike'=73 +'true'=74 +'=='=75 +'=~'=76 +'!='=77 +'<'=78 +'<='=79 +'>'=80 +'>='=81 +'+'=82 +'-'=83 +'*'=84 +'/'=85 +'%'=86 +'{'=87 +'}'=88 +']'=91 +')'=93 +'metadata'=99 +'join'=104 +'USING'=105 +'as'=128 +'info'=132 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index f0bfb91c776c2..1516fc21f1653 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -20,6 +20,9 @@ options { tokenVocab=EsqlBaseLexer; } +import Expression, + Join; + singleStatement : query EOF ; @@ -62,62 +65,6 @@ whereCommand : WHERE booleanExpression ; -booleanExpression - : NOT booleanExpression #logicalNot - | valueExpression #booleanDefault - | regexBooleanExpression #regexExpression - | left=booleanExpression operator=AND right=booleanExpression #logicalBinary - | left=booleanExpression operator=OR right=booleanExpression #logicalBinary - | valueExpression (NOT)? IN LP valueExpression (COMMA valueExpression)* RP #logicalIn - | valueExpression IS NOT? NULL #isNull - | matchBooleanExpression #matchExpression - ; - -regexBooleanExpression - : valueExpression (NOT)? kind=LIKE pattern=string - | valueExpression (NOT)? kind=RLIKE pattern=string - ; - -matchBooleanExpression - : fieldExp=qualifiedName (CAST_OP fieldType=dataType)? COLON matchQuery=constant - ; - -valueExpression - : operatorExpression #valueExpressionDefault - | left=operatorExpression comparisonOperator right=operatorExpression #comparison - ; - -operatorExpression - : primaryExpression #operatorExpressionDefault - | operator=(MINUS | PLUS) operatorExpression #arithmeticUnary - | left=operatorExpression operator=(ASTERISK | SLASH | PERCENT) right=operatorExpression #arithmeticBinary - | left=operatorExpression operator=(PLUS | MINUS) right=operatorExpression #arithmeticBinary - ; - -primaryExpression - : constant #constantDefault - | qualifiedName #dereference - | functionExpression #function - | LP booleanExpression RP #parenthesizedExpression - | primaryExpression CAST_OP dataType #inlineCast - ; - -functionExpression - : functionName LP (ASTERISK | (booleanExpression (COMMA booleanExpression)* (COMMA mapExpression)?))? RP - ; - -functionName - : identifierOrParameter - ; - -mapExpression - : LEFT_BRACES entryExpression (COMMA entryExpression)* RIGHT_BRACES - ; - -entryExpression - : key=string COLON value=constant - ; - dataType : identifier #toDataType ; @@ -198,19 +145,6 @@ identifierPattern | parameter ; -constant - : NULL #nullLiteral - | integerValue UNQUOTED_IDENTIFIER #qualifiedIntegerLiteral - | decimalValue #decimalLiteral - | integerValue #integerLiteral - | booleanValue #booleanLiteral - | parameter #inputParameter - | string #stringLiteral - | OPENING_BRACKET numericValue (COMMA numericValue)* CLOSING_BRACKET #numericArrayLiteral - | OPENING_BRACKET booleanValue (COMMA booleanValue)* CLOSING_BRACKET #booleanArrayLiteral - | OPENING_BRACKET string (COMMA string)* CLOSING_BRACKET #stringArrayLiteral - ; - parameter : PARAM #inputParam | NAMED_OR_POSITIONAL_PARAM #inputNamedOrPositionalParam @@ -269,31 +203,6 @@ commandOption : identifier ASSIGN constant ; -booleanValue - : TRUE | FALSE - ; - -numericValue - : decimalValue - | integerValue - ; - -decimalValue - : (PLUS | MINUS)? DECIMAL_LITERAL - ; - -integerValue - : (PLUS | MINUS)? INTEGER_LITERAL - ; - -string - : QUOTED_STRING - ; - -comparisonOperator - : EQ | NEQ | LT | LTE | GT | GTE - ; - explainCommand : EXPLAIN subqueryExpression ; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens index ff27d74c959cd..a21e9b3044da2 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens @@ -1,198 +1,198 @@ -DISSECT=1 -DROP=2 -ENRICH=3 -EVAL=4 -EXPLAIN=5 -FROM=6 -GROK=7 -KEEP=8 -LIMIT=9 -MV_EXPAND=10 -RENAME=11 -ROW=12 -SHOW=13 -SORT=14 -STATS=15 -WHERE=16 +LINE_COMMENT=1 +MULTILINE_COMMENT=2 +WS=3 +DEV_CHANGE_POINT=4 +ENRICH=5 +EXPLAIN=6 +DISSECT=7 +EVAL=8 +GROK=9 +LIMIT=10 +ROW=11 +SORT=12 +STATS=13 +WHERE=14 +DEV_INLINESTATS=15 +FROM=16 JOIN_LOOKUP=17 -DEV_INLINESTATS=18 -DEV_INSIST=19 -DEV_LOOKUP=20 -DEV_METRICS=21 -DEV_JOIN_FULL=22 -DEV_JOIN_LEFT=23 -DEV_JOIN_RIGHT=24 -UNKNOWN_CMD=25 -LINE_COMMENT=26 -MULTILINE_COMMENT=27 -WS=28 -PIPE=29 -QUOTED_STRING=30 -INTEGER_LITERAL=31 -DECIMAL_LITERAL=32 -BY=33 -AND=34 -ASC=35 -ASSIGN=36 -CAST_OP=37 -COLON=38 -COMMA=39 -DESC=40 -DOT=41 -FALSE=42 -FIRST=43 -IN=44 -IS=45 -LAST=46 -LIKE=47 -LP=48 -NOT=49 -NULL=50 -NULLS=51 -OR=52 -PARAM=53 -RLIKE=54 -RP=55 -TRUE=56 -EQ=57 -CIEQ=58 -NEQ=59 -LT=60 -LTE=61 -GT=62 -GTE=63 -PLUS=64 -MINUS=65 -ASTERISK=66 -SLASH=67 -PERCENT=68 -LEFT_BRACES=69 -RIGHT_BRACES=70 -NAMED_OR_POSITIONAL_PARAM=71 -OPENING_BRACKET=72 -CLOSING_BRACKET=73 -UNQUOTED_IDENTIFIER=74 -QUOTED_IDENTIFIER=75 -EXPR_LINE_COMMENT=76 -EXPR_MULTILINE_COMMENT=77 -EXPR_WS=78 -EXPLAIN_WS=79 -EXPLAIN_LINE_COMMENT=80 -EXPLAIN_MULTILINE_COMMENT=81 -METADATA=82 -UNQUOTED_SOURCE=83 -FROM_LINE_COMMENT=84 -FROM_MULTILINE_COMMENT=85 -FROM_WS=86 -ID_PATTERN=87 -PROJECT_LINE_COMMENT=88 -PROJECT_MULTILINE_COMMENT=89 -PROJECT_WS=90 -AS=91 -RENAME_LINE_COMMENT=92 -RENAME_MULTILINE_COMMENT=93 -RENAME_WS=94 -ON=95 -WITH=96 -ENRICH_POLICY_NAME=97 -ENRICH_LINE_COMMENT=98 -ENRICH_MULTILINE_COMMENT=99 -ENRICH_WS=100 -ENRICH_FIELD_LINE_COMMENT=101 -ENRICH_FIELD_MULTILINE_COMMENT=102 -ENRICH_FIELD_WS=103 -MVEXPAND_LINE_COMMENT=104 -MVEXPAND_MULTILINE_COMMENT=105 -MVEXPAND_WS=106 -INFO=107 -SHOW_LINE_COMMENT=108 -SHOW_MULTILINE_COMMENT=109 -SHOW_WS=110 -SETTING=111 -SETTING_LINE_COMMENT=112 -SETTTING_MULTILINE_COMMENT=113 -SETTING_WS=114 -LOOKUP_LINE_COMMENT=115 -LOOKUP_MULTILINE_COMMENT=116 -LOOKUP_WS=117 -LOOKUP_FIELD_LINE_COMMENT=118 -LOOKUP_FIELD_MULTILINE_COMMENT=119 -LOOKUP_FIELD_WS=120 -JOIN=121 -USING=122 -JOIN_LINE_COMMENT=123 -JOIN_MULTILINE_COMMENT=124 -JOIN_WS=125 -METRICS_LINE_COMMENT=126 -METRICS_MULTILINE_COMMENT=127 -METRICS_WS=128 -CLOSING_METRICS_LINE_COMMENT=129 -CLOSING_METRICS_MULTILINE_COMMENT=130 -CLOSING_METRICS_WS=131 -INSIST_WS=132 -INSIST_LINE_COMMENT=133 -INSIST_MULTILINE_COMMENT=134 -'dissect'=1 -'drop'=2 -'enrich'=3 -'eval'=4 -'explain'=5 -'from'=6 -'grok'=7 -'keep'=8 -'limit'=9 -'mv_expand'=10 -'rename'=11 -'row'=12 -'show'=13 -'sort'=14 -'stats'=15 -'where'=16 +DEV_JOIN_FULL=18 +DEV_JOIN_LEFT=19 +DEV_JOIN_RIGHT=20 +DEV_LOOKUP=21 +DEV_METRICS=22 +MV_EXPAND=23 +DROP=24 +KEEP=25 +DEV_INSIST=26 +RENAME=27 +SHOW=28 +UNKNOWN_CMD=29 +CHANGE_POINT_LINE_COMMENT=30 +CHANGE_POINT_MULTILINE_COMMENT=31 +CHANGE_POINT_WS=32 +ON=33 +WITH=34 +ENRICH_POLICY_NAME=35 +ENRICH_LINE_COMMENT=36 +ENRICH_MULTILINE_COMMENT=37 +ENRICH_WS=38 +ENRICH_FIELD_LINE_COMMENT=39 +ENRICH_FIELD_MULTILINE_COMMENT=40 +ENRICH_FIELD_WS=41 +SETTING=42 +SETTING_LINE_COMMENT=43 +SETTTING_MULTILINE_COMMENT=44 +SETTING_WS=45 +EXPLAIN_WS=46 +EXPLAIN_LINE_COMMENT=47 +EXPLAIN_MULTILINE_COMMENT=48 +PIPE=49 +QUOTED_STRING=50 +INTEGER_LITERAL=51 +DECIMAL_LITERAL=52 +BY=53 +AND=54 +ASC=55 +ASSIGN=56 +CAST_OP=57 +COLON=58 +COMMA=59 +DESC=60 +DOT=61 +FALSE=62 +FIRST=63 +IN=64 +IS=65 +LAST=66 +LIKE=67 +NOT=68 +NULL=69 +NULLS=70 +OR=71 +PARAM=72 +RLIKE=73 +TRUE=74 +EQ=75 +CIEQ=76 +NEQ=77 +LT=78 +LTE=79 +GT=80 +GTE=81 +PLUS=82 +MINUS=83 +ASTERISK=84 +SLASH=85 +PERCENT=86 +LEFT_BRACES=87 +RIGHT_BRACES=88 +NAMED_OR_POSITIONAL_PARAM=89 +OPENING_BRACKET=90 +CLOSING_BRACKET=91 +LP=92 +RP=93 +UNQUOTED_IDENTIFIER=94 +QUOTED_IDENTIFIER=95 +EXPR_LINE_COMMENT=96 +EXPR_MULTILINE_COMMENT=97 +EXPR_WS=98 +METADATA=99 +UNQUOTED_SOURCE=100 +FROM_LINE_COMMENT=101 +FROM_MULTILINE_COMMENT=102 +FROM_WS=103 +JOIN=104 +USING=105 +JOIN_LINE_COMMENT=106 +JOIN_MULTILINE_COMMENT=107 +JOIN_WS=108 +LOOKUP_LINE_COMMENT=109 +LOOKUP_MULTILINE_COMMENT=110 +LOOKUP_WS=111 +LOOKUP_FIELD_LINE_COMMENT=112 +LOOKUP_FIELD_MULTILINE_COMMENT=113 +LOOKUP_FIELD_WS=114 +METRICS_LINE_COMMENT=115 +METRICS_MULTILINE_COMMENT=116 +METRICS_WS=117 +CLOSING_METRICS_LINE_COMMENT=118 +CLOSING_METRICS_MULTILINE_COMMENT=119 +CLOSING_METRICS_WS=120 +MVEXPAND_LINE_COMMENT=121 +MVEXPAND_MULTILINE_COMMENT=122 +MVEXPAND_WS=123 +ID_PATTERN=124 +PROJECT_LINE_COMMENT=125 +PROJECT_MULTILINE_COMMENT=126 +PROJECT_WS=127 +AS=128 +RENAME_LINE_COMMENT=129 +RENAME_MULTILINE_COMMENT=130 +RENAME_WS=131 +INFO=132 +SHOW_LINE_COMMENT=133 +SHOW_MULTILINE_COMMENT=134 +SHOW_WS=135 +'enrich'=5 +'explain'=6 +'dissect'=7 +'eval'=8 +'grok'=9 +'limit'=10 +'row'=11 +'sort'=12 +'stats'=13 +'where'=14 +'from'=16 'lookup'=17 -'|'=29 -'by'=33 -'and'=34 -'asc'=35 -'='=36 -'::'=37 -':'=38 -','=39 -'desc'=40 -'.'=41 -'false'=42 -'first'=43 -'in'=44 -'is'=45 -'last'=46 -'like'=47 -'('=48 -'not'=49 -'null'=50 -'nulls'=51 -'or'=52 -'?'=53 -'rlike'=54 -')'=55 -'true'=56 -'=='=57 -'=~'=58 -'!='=59 -'<'=60 -'<='=61 -'>'=62 -'>='=63 -'+'=64 -'-'=65 -'*'=66 -'/'=67 -'%'=68 -'{'=69 -'}'=70 -']'=73 -'metadata'=82 -'as'=91 -'on'=95 -'with'=96 -'info'=107 -'join'=121 -'USING'=122 +'mv_expand'=23 +'drop'=24 +'keep'=25 +'rename'=27 +'show'=28 +'on'=33 +'with'=34 +'|'=49 +'by'=53 +'and'=54 +'asc'=55 +'='=56 +'::'=57 +':'=58 +','=59 +'desc'=60 +'.'=61 +'false'=62 +'first'=63 +'in'=64 +'is'=65 +'last'=66 +'like'=67 +'not'=68 +'null'=69 +'nulls'=70 +'or'=71 +'?'=72 +'rlike'=73 +'true'=74 +'=='=75 +'=~'=76 +'!='=77 +'<'=78 +'<='=79 +'>'=80 +'>='=81 +'+'=82 +'-'=83 +'*'=84 +'/'=85 +'%'=86 +'{'=87 +'}'=88 +']'=91 +')'=93 +'metadata'=99 +'join'=104 +'USING'=105 +'as'=128 +'info'=132 diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/ChangePoint.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/ChangePoint.g4 new file mode 100644 index 0000000000000..78ed84a31b6a7 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/ChangePoint.g4 @@ -0,0 +1,24 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar ChangePoint; + +// +// | CHANGE_POINT command +// +DEV_CHANGE_POINT : {this.isDevVersion()}? 'change_point' -> pushMode(CHANGE_POINT_MODE); + +mode CHANGE_POINT_MODE; +CHANGE_POINT_PIPE : PIPE -> type(PIPE), popMode; +CHANGE_POINT_ON : ON -> type(ON); +CHANGE_POINT_AS : AS -> type(AS); +CHANGE_POINT_DOT: DOT -> type(DOT); +CHANGE_POINT_COMMA: COMMA -> type(COMMA); +CHANGE_POINT_QUOTED_IDENTIFIER: QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER); +CHANGE_POINT_UNQUOTED_IDENTIFIER: UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER); +CHANGE_POINT_LINE_COMMENT: LINE_COMMENT -> channel(HIDDEN); +CHANGE_POINT_MULTILINE_COMMENT: MULTILINE_COMMENT -> channel(HIDDEN); +CHANGE_POINT_WS: WS -> channel(HIDDEN); diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Enrich.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Enrich.g4 new file mode 100644 index 0000000000000..f689f8223a29f --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Enrich.g4 @@ -0,0 +1,100 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Enrich; + +// +// | ENRICH ON key WITH fields +// +ENRICH : 'enrich' -> pushMode(ENRICH_MODE); + + +mode ENRICH_MODE; +ENRICH_PIPE : PIPE -> type(PIPE), popMode; +ENRICH_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET), pushMode(SETTING_MODE); + +ON : 'on' -> pushMode(ENRICH_FIELD_MODE); +WITH : 'with' -> pushMode(ENRICH_FIELD_MODE); + +// similar to that of an index +// see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html#indices-create-api-path-params +fragment ENRICH_POLICY_NAME_BODY + : ~[\\/?"<>| ,#\t\r\n:] + ; + +ENRICH_POLICY_NAME + // allow prefix for the policy to specify its resolution + : (ENRICH_POLICY_NAME_BODY+ COLON)? ENRICH_POLICY_NAME_BODY+ + ; + +ENRICH_MODE_UNQUOTED_VALUE + : ENRICH_POLICY_NAME -> type(ENRICH_POLICY_NAME) + ; + +ENRICH_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +ENRICH_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +ENRICH_WS + : WS -> channel(HIDDEN) + ; + +// submode for Enrich to allow different lexing between policy source (loose) and field identifiers +mode ENRICH_FIELD_MODE; +ENRICH_FIELD_PIPE : PIPE -> type(PIPE), popMode, popMode; +ENRICH_FIELD_ASSIGN : ASSIGN -> type(ASSIGN); +ENRICH_FIELD_COMMA : COMMA -> type(COMMA); +ENRICH_FIELD_DOT: DOT -> type(DOT); + +ENRICH_FIELD_WITH : WITH -> type(WITH) ; + +ENRICH_FIELD_ID_PATTERN + : ID_PATTERN -> type(ID_PATTERN) + ; + +ENRICH_FIELD_QUOTED_IDENTIFIER + : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER) + ; + +ENRICH_FIELD_PARAM : PARAM -> type(PARAM); +ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); + +ENRICH_FIELD_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +ENRICH_FIELD_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +ENRICH_FIELD_WS + : WS -> channel(HIDDEN) + ; + +mode SETTING_MODE; +SETTING_CLOSING_BRACKET : CLOSING_BRACKET -> type(CLOSING_BRACKET), popMode; + +SETTING_COLON : COLON -> type(COLON); + +SETTING + : (ASPERAND | DIGIT| DOT | LETTER | UNDERSCORE)+ + ; + +SETTING_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +SETTTING_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +SETTING_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Explain.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Explain.g4 new file mode 100644 index 0000000000000..c65e49cc541ae --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Explain.g4 @@ -0,0 +1,20 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Explain; + +// +// Explain +// +EXPLAIN : 'explain' -> pushMode(EXPLAIN_MODE); + + +mode EXPLAIN_MODE; +EXPLAIN_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET), pushMode(DEFAULT_MODE); +EXPLAIN_PIPE : PIPE -> type(PIPE), popMode; +EXPLAIN_WS : WS -> channel(HIDDEN); +EXPLAIN_LINE_COMMENT : LINE_COMMENT -> channel(HIDDEN); +EXPLAIN_MULTILINE_COMMENT : MULTILINE_COMMENT -> channel(HIDDEN); diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 new file mode 100644 index 0000000000000..365cc5e4194af --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 @@ -0,0 +1,169 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Expression; + +// +// Expression - used by many commands +// +DISSECT : 'dissect' -> pushMode(EXPRESSION_MODE); +EVAL : 'eval' -> pushMode(EXPRESSION_MODE); +GROK : 'grok' -> pushMode(EXPRESSION_MODE); +LIMIT : 'limit' -> pushMode(EXPRESSION_MODE); +ROW : 'row' -> pushMode(EXPRESSION_MODE); +SORT : 'sort' -> pushMode(EXPRESSION_MODE); +STATS : 'stats' -> pushMode(EXPRESSION_MODE); +WHERE : 'where' -> pushMode(EXPRESSION_MODE); + +DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION_MODE); + + +mode EXPRESSION_MODE; + +PIPE : '|' -> popMode; + +fragment DIGIT + : [0-9] + ; + +fragment LETTER + : [a-z] + ; + +fragment ESCAPE_SEQUENCE + : '\\' [tnr"\\] + ; + +fragment UNESCAPED_CHARS + : ~[\r\n"\\] + ; + +fragment EXPONENT + : [e] [+-]? DIGIT+ + ; + +fragment ASPERAND + : '@' + ; + +fragment BACKQUOTE + : '`' + ; + +fragment BACKQUOTE_BLOCK + : ~'`' + | '``' + ; + +fragment UNDERSCORE + : '_' + ; + +fragment UNQUOTED_ID_BODY + : (LETTER | DIGIT | UNDERSCORE) + ; + +QUOTED_STRING + : '"' (ESCAPE_SEQUENCE | UNESCAPED_CHARS)* '"' + | '"""' (~[\r\n])*? '"""' '"'? '"'? + ; + +INTEGER_LITERAL + : DIGIT+ + ; + +DECIMAL_LITERAL + : DIGIT+ DOT DIGIT* + | DOT DIGIT+ + | DIGIT+ (DOT DIGIT*)? EXPONENT + | DOT DIGIT+ EXPONENT + ; + +BY : 'by'; + +AND : 'and'; +ASC : 'asc'; +ASSIGN : '='; +CAST_OP : '::'; +COLON : ':'; +COMMA : ','; +DESC : 'desc'; +DOT : '.'; +FALSE : 'false'; +FIRST : 'first'; +IN: 'in'; +IS: 'is'; +LAST : 'last'; +LIKE: 'like'; +NOT : 'not'; +NULL : 'null'; +NULLS : 'nulls'; +OR : 'or'; +PARAM: '?'; +RLIKE: 'rlike'; +TRUE : 'true'; + +EQ : '=='; +CIEQ : '=~'; +NEQ : '!='; +LT : '<'; +LTE : '<='; +GT : '>'; +GTE : '>='; + +PLUS : '+'; +MINUS : '-'; +ASTERISK : '*'; +SLASH : '/'; +PERCENT : '%'; + +LEFT_BRACES : '{'; +RIGHT_BRACES : '}'; + +NESTED_WHERE : WHERE -> type(WHERE); + +NAMED_OR_POSITIONAL_PARAM + : PARAM (LETTER | UNDERSCORE) UNQUOTED_ID_BODY* + | PARAM DIGIT+ + ; + +// Brackets are funny. We can happen upon a CLOSING_BRACKET in two ways - one +// way is to start in an explain command which then shifts us to expression +// mode. Thus, the two popModes on CLOSING_BRACKET. The other way could as +// the start of a multivalued field constant. To line up with the double pop +// the explain mode needs, we double push when we see that. +OPENING_BRACKET : '[' -> pushMode(EXPRESSION_MODE), pushMode(EXPRESSION_MODE); +CLOSING_BRACKET : ']' -> popMode, popMode; + +LP : '(' -> pushMode(EXPRESSION_MODE), pushMode(EXPRESSION_MODE); +RP : ')' -> popMode, popMode; + +UNQUOTED_IDENTIFIER + : LETTER UNQUOTED_ID_BODY* + // only allow @ at beginning of identifier to keep the option to allow @ as infix operator in the future + // also, single `_` and `@` characters are not valid identifiers + | (UNDERSCORE | ASPERAND) UNQUOTED_ID_BODY+ + ; + +fragment QUOTED_ID + : BACKQUOTE BACKQUOTE_BLOCK+ BACKQUOTE + ; + +QUOTED_IDENTIFIER + : QUOTED_ID + ; + +EXPR_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +EXPR_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +EXPR_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/From.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/From.g4 new file mode 100644 index 0000000000000..1745bd9aaf3a1 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/From.g4 @@ -0,0 +1,48 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar From; + +// +// FROM command +// +FROM : 'from' -> pushMode(FROM_MODE); + + +mode FROM_MODE; +FROM_PIPE : PIPE -> type(PIPE), popMode; +FROM_OPENING_BRACKET : OPENING_BRACKET -> type(OPENING_BRACKET); +FROM_CLOSING_BRACKET : CLOSING_BRACKET -> type(CLOSING_BRACKET); +FROM_COLON : COLON -> type(COLON); +FROM_COMMA : COMMA -> type(COMMA); +FROM_ASSIGN : ASSIGN -> type(ASSIGN); +METADATA : 'metadata'; + +// in 8.14 ` were not allowed +// this has been relaxed in 8.15 since " is used for quoting +fragment UNQUOTED_SOURCE_PART + : ~[:"=|,[\]/ \t\r\n] + | '/' ~[*/] // allow single / but not followed by another / or * which would start a comment -- used in index pattern date spec + ; + +UNQUOTED_SOURCE + : UNQUOTED_SOURCE_PART+ + ; + +FROM_UNQUOTED_SOURCE : UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); +FROM_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); + +FROM_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +FROM_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +FROM_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Join.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Join.g4 new file mode 100644 index 0000000000000..918f3dec780b3 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Join.g4 @@ -0,0 +1,41 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Join; + +// +// JOIN-related commands +// +JOIN_LOOKUP : 'lookup' -> pushMode(JOIN_MODE); +DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE); +DEV_JOIN_LEFT : {this.isDevVersion()}? 'left' -> pushMode(JOIN_MODE); +DEV_JOIN_RIGHT : {this.isDevVersion()}? 'right' -> pushMode(JOIN_MODE); + +mode JOIN_MODE; +JOIN_PIPE : PIPE -> type(PIPE), popMode; +JOIN : 'join'; +JOIN_AS : AS -> type(AS); +JOIN_ON : ON -> type(ON), popMode, pushMode(EXPRESSION_MODE); +USING : 'USING' -> popMode, pushMode(EXPRESSION_MODE); + +JOIN_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); +JOIN_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); +JOIN_COLON : COLON -> type(COLON); + +JOIN_UNQUOTED_IDENTIFER: UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER); +JOIN_QUOTED_IDENTIFIER : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER); + +JOIN_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +JOIN_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +JOIN_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Lookup.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Lookup.g4 new file mode 100644 index 0000000000000..6642a73bf18ca --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Lookup.g4 @@ -0,0 +1,55 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Lookup; + +// +// LOOKUP ON key +// +DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE); + +mode LOOKUP_MODE; +LOOKUP_PIPE : PIPE -> type(PIPE), popMode; +LOOKUP_COLON : COLON -> type(COLON); +LOOKUP_COMMA : COMMA -> type(COMMA); +LOOKUP_DOT: DOT -> type(DOT); +LOOKUP_ON : ON -> type(ON), pushMode(LOOKUP_FIELD_MODE); + +LOOKUP_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE); +LOOKUP_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING); + +LOOKUP_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +LOOKUP_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +LOOKUP_WS + : WS -> channel(HIDDEN) + ; + +mode LOOKUP_FIELD_MODE; +LOOKUP_FIELD_PIPE : PIPE -> type(PIPE), popMode, popMode; +LOOKUP_FIELD_COMMA : COMMA -> type(COMMA); +LOOKUP_FIELD_DOT: DOT -> type(DOT); + +LOOKUP_FIELD_ID_PATTERN + : ID_PATTERN -> type(ID_PATTERN) + ; + +LOOKUP_FIELD_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +LOOKUP_FIELD_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +LOOKUP_FIELD_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Metrics.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Metrics.g4 new file mode 100644 index 0000000000000..e136de24e69f3 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Metrics.g4 @@ -0,0 +1,70 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Metrics; + +// +// METRICS command +// +DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE); + +mode METRICS_MODE; +METRICS_PIPE : PIPE -> type(PIPE), popMode; + +METRICS_UNQUOTED_SOURCE: UNQUOTED_SOURCE -> type(UNQUOTED_SOURCE), popMode, pushMode(CLOSING_METRICS_MODE); +METRICS_QUOTED_SOURCE : QUOTED_STRING -> type(QUOTED_STRING), popMode, pushMode(CLOSING_METRICS_MODE); + +METRICS_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +METRICS_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +METRICS_WS + : WS -> channel(HIDDEN) + ; + + +// TODO: remove this workaround mode - see https://github.com/elastic/elasticsearch/issues/108528 +mode CLOSING_METRICS_MODE; + +CLOSING_METRICS_COLON + : COLON -> type(COLON), popMode, pushMode(METRICS_MODE) + ; + +CLOSING_METRICS_COMMA + : COMMA -> type(COMMA), popMode, pushMode(METRICS_MODE) + ; + +CLOSING_METRICS_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +CLOSING_METRICS_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +CLOSING_METRICS_WS + : WS -> channel(HIDDEN) + ; + +CLOSING_METRICS_QUOTED_IDENTIFIER + : QUOTED_IDENTIFIER -> popMode, pushMode(EXPRESSION_MODE), type(QUOTED_IDENTIFIER) + ; + +CLOSING_METRICS_UNQUOTED_IDENTIFIER + :UNQUOTED_IDENTIFIER -> popMode, pushMode(EXPRESSION_MODE), type(UNQUOTED_IDENTIFIER) + ; + +CLOSING_METRICS_BY + :BY -> popMode, pushMode(EXPRESSION_MODE), type(BY) + ; + +CLOSING_METRICS_PIPE + : PIPE -> type(PIPE), popMode + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/MvExpand.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/MvExpand.g4 new file mode 100644 index 0000000000000..2aedb5f8bd831 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/MvExpand.g4 @@ -0,0 +1,39 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar MvExpand; + +// +// MV_EXPAND +// +MV_EXPAND : 'mv_expand' -> pushMode(MVEXPAND_MODE); + + +mode MVEXPAND_MODE; +MVEXPAND_PIPE : PIPE -> type(PIPE), popMode; +MVEXPAND_DOT: DOT -> type(DOT); +MVEXPAND_PARAM : PARAM -> type(PARAM); +MVEXPAND_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); + +MVEXPAND_QUOTED_IDENTIFIER + : QUOTED_IDENTIFIER -> type(QUOTED_IDENTIFIER) + ; + +MVEXPAND_UNQUOTED_IDENTIFIER + : UNQUOTED_IDENTIFIER -> type(UNQUOTED_IDENTIFIER) + ; + +MVEXPAND_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +MVEXPAND_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +MVEXPAND_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Project.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Project.g4 new file mode 100644 index 0000000000000..8b13ff6cfd63c --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Project.g4 @@ -0,0 +1,46 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Project; + +// +// DROP, KEEP +// +DROP : 'drop' -> pushMode(PROJECT_MODE); +KEEP : 'keep' -> pushMode(PROJECT_MODE); +DEV_INSIST : {this.isDevVersion()}? 'insist_🐔' -> pushMode(PROJECT_MODE); + +mode PROJECT_MODE; +PROJECT_PIPE : PIPE -> type(PIPE), popMode; +PROJECT_DOT: DOT -> type(DOT); +PROJECT_COMMA : COMMA -> type(COMMA); +PROJECT_PARAM : PARAM -> type(PARAM); +PROJECT_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); + +fragment UNQUOTED_ID_BODY_WITH_PATTERN + : (LETTER | DIGIT | UNDERSCORE | ASTERISK) + ; + +fragment UNQUOTED_ID_PATTERN + : (LETTER | ASTERISK) UNQUOTED_ID_BODY_WITH_PATTERN* + | (UNDERSCORE | ASPERAND) UNQUOTED_ID_BODY_WITH_PATTERN+ + ; + +ID_PATTERN + : (UNQUOTED_ID_PATTERN | QUOTED_ID)+ + ; + +PROJECT_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +PROJECT_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +PROJECT_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Rename.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Rename.g4 new file mode 100644 index 0000000000000..e701d7e569edc --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Rename.g4 @@ -0,0 +1,39 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Rename; + +// +// | RENAME a.b AS x, c AS y +// +RENAME : 'rename' -> pushMode(RENAME_MODE); + + +mode RENAME_MODE; +RENAME_PIPE : PIPE -> type(PIPE), popMode; +RENAME_ASSIGN : ASSIGN -> type(ASSIGN); +RENAME_COMMA : COMMA -> type(COMMA); +RENAME_DOT: DOT -> type(DOT); +RENAME_PARAM : PARAM -> type(PARAM); +RENAME_NAMED_OR_POSITIONAL_PARAM : NAMED_OR_POSITIONAL_PARAM -> type(NAMED_OR_POSITIONAL_PARAM); + +AS : 'as'; + +RENAME_ID_PATTERN + : ID_PATTERN -> type(ID_PATTERN) + ; + +RENAME_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +RENAME_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +RENAME_WS + : WS -> channel(HIDDEN) + ; diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Show.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Show.g4 new file mode 100644 index 0000000000000..dfed96353f087 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Show.g4 @@ -0,0 +1,31 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar Show; + +// +// SHOW commands +// +SHOW : 'show' -> pushMode(SHOW_MODE); + + +mode SHOW_MODE; +SHOW_PIPE : PIPE -> type(PIPE), popMode; + +INFO : 'info'; + +SHOW_LINE_COMMENT + : LINE_COMMENT -> channel(HIDDEN) + ; + +SHOW_MULTILINE_COMMENT + : MULTILINE_COMMENT -> channel(HIDDEN) + ; + +SHOW_WS + : WS -> channel(HIDDEN) + ; + diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/UnknownCommand.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/UnknownCommand.g4 new file mode 100644 index 0000000000000..af1b894b2222f --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/lexer/UnknownCommand.g4 @@ -0,0 +1,12 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +lexer grammar UnknownCommand; + +// +// Catch-all for unrecognized commands +// +UNKNOWN_CMD : ~[ \r\n\t[\]/]+ -> pushMode(EXPRESSION_MODE) ; diff --git a/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 new file mode 100644 index 0000000000000..0ab967ec4abf3 --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/parser/Expression.g4 @@ -0,0 +1,101 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +parser grammar Expression; + +booleanExpression + : NOT booleanExpression #logicalNot + | valueExpression #booleanDefault + | regexBooleanExpression #regexExpression + | left=booleanExpression operator=AND right=booleanExpression #logicalBinary + | left=booleanExpression operator=OR right=booleanExpression #logicalBinary + | valueExpression (NOT)? IN LP valueExpression (COMMA valueExpression)* RP #logicalIn + | valueExpression IS NOT? NULL #isNull + | matchBooleanExpression #matchExpression + ; + +regexBooleanExpression + : valueExpression (NOT)? kind=LIKE pattern=string + | valueExpression (NOT)? kind=RLIKE pattern=string + ; + +matchBooleanExpression + : fieldExp=qualifiedName (CAST_OP fieldType=dataType)? COLON matchQuery=constant + ; + +valueExpression + : operatorExpression #valueExpressionDefault + | left=operatorExpression comparisonOperator right=operatorExpression #comparison + ; + +operatorExpression + : primaryExpression #operatorExpressionDefault + | operator=(MINUS | PLUS) operatorExpression #arithmeticUnary + | left=operatorExpression operator=(ASTERISK | SLASH | PERCENT) right=operatorExpression #arithmeticBinary + | left=operatorExpression operator=(PLUS | MINUS) right=operatorExpression #arithmeticBinary + ; + +primaryExpression + : constant #constantDefault + | qualifiedName #dereference + | functionExpression #function + | LP booleanExpression RP #parenthesizedExpression + | primaryExpression CAST_OP dataType #inlineCast + ; + +functionExpression + : functionName LP (ASTERISK | (booleanExpression (COMMA booleanExpression)* (COMMA mapExpression)?))? RP + ; + +functionName + : identifierOrParameter + ; + +mapExpression + : LEFT_BRACES entryExpression (COMMA entryExpression)* RIGHT_BRACES + ; + +entryExpression + : key=string COLON value=constant + ; + +constant + : NULL #nullLiteral + | integerValue UNQUOTED_IDENTIFIER #qualifiedIntegerLiteral + | decimalValue #decimalLiteral + | integerValue #integerLiteral + | booleanValue #booleanLiteral + | parameter #inputParameter + | string #stringLiteral + | OPENING_BRACKET numericValue (COMMA numericValue)* CLOSING_BRACKET #numericArrayLiteral + | OPENING_BRACKET booleanValue (COMMA booleanValue)* CLOSING_BRACKET #booleanArrayLiteral + | OPENING_BRACKET string (COMMA string)* CLOSING_BRACKET #stringArrayLiteral + ; + +booleanValue + : TRUE | FALSE + ; + +numericValue + : decimalValue + | integerValue + ; + +decimalValue + : (PLUS | MINUS)? DECIMAL_LITERAL + ; + +integerValue + : (PLUS | MINUS)? INTEGER_LITERAL + ; + +string + : QUOTED_STRING + ; + +comparisonOperator + : EQ | NEQ | LT | LTE | GT | GTE + ; diff --git a/x-pack/plugin/esql/src/main/antlr/parser/Join.g4 b/x-pack/plugin/esql/src/main/antlr/parser/Join.g4 new file mode 100644 index 0000000000000..834534f1a7d6a --- /dev/null +++ b/x-pack/plugin/esql/src/main/antlr/parser/Join.g4 @@ -0,0 +1,25 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ +parser grammar Join; + +joinCommand + : type=(JOIN_LOOKUP | DEV_JOIN_LEFT | DEV_JOIN_RIGHT) JOIN joinTarget joinCondition + ; + +joinTarget + : index=indexPattern + ; + +joinCondition + : ON joinPredicate (COMMA joinPredicate)* + ; + +joinPredicate + : valueExpression + ; + + diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp index c25e325c5fb7a..985198e028303 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.interp @@ -1,27 +1,47 @@ token literal names: null -'dissect' -'drop' +null +null +null +null 'enrich' -'eval' 'explain' -'from' +'dissect' +'eval' 'grok' -'keep' 'limit' -'mv_expand' -'rename' 'row' -'show' 'sort' 'stats' 'where' +null +'from' 'lookup' null null null null null +'mv_expand' +'drop' +'keep' +null +'rename' +'show' +null +null +null +null +'on' +'with' +null +null +null +null +null +null +null +null null null null @@ -47,14 +67,12 @@ null 'is' 'last' 'like' -'(' 'not' 'null' 'nulls' 'or' '?' 'rlike' -')' 'true' '==' '=~' @@ -74,8 +92,7 @@ null null ']' null -null -null +')' null null null @@ -86,28 +103,12 @@ null null null null +'join' +'USING' null null null null -'as' -null -null -null -'on' -'with' -null -null -null -null -null -null -null -null -null -null -'info' -null null null null @@ -120,51 +121,71 @@ null null null null -'join' -'USING' null null null null null null +'as' null null null +'info' null null null token symbolic names: null -DISSECT -DROP +LINE_COMMENT +MULTILINE_COMMENT +WS +DEV_CHANGE_POINT ENRICH -EVAL EXPLAIN -FROM +DISSECT +EVAL GROK -KEEP LIMIT -MV_EXPAND -RENAME ROW -SHOW SORT STATS WHERE -JOIN_LOOKUP DEV_INLINESTATS -DEV_INSIST -DEV_LOOKUP -DEV_METRICS +FROM +JOIN_LOOKUP DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT +DEV_LOOKUP +DEV_METRICS +MV_EXPAND +DROP +KEEP +DEV_INSIST +RENAME +SHOW UNKNOWN_CMD -LINE_COMMENT -MULTILINE_COMMENT -WS +CHANGE_POINT_LINE_COMMENT +CHANGE_POINT_MULTILINE_COMMENT +CHANGE_POINT_WS +ON +WITH +ENRICH_POLICY_NAME +ENRICH_LINE_COMMENT +ENRICH_MULTILINE_COMMENT +ENRICH_WS +ENRICH_FIELD_LINE_COMMENT +ENRICH_FIELD_MULTILINE_COMMENT +ENRICH_FIELD_WS +SETTING +SETTING_LINE_COMMENT +SETTTING_MULTILINE_COMMENT +SETTING_WS +EXPLAIN_WS +EXPLAIN_LINE_COMMENT +EXPLAIN_MULTILINE_COMMENT PIPE QUOTED_STRING INTEGER_LITERAL @@ -184,14 +205,12 @@ IN IS LAST LIKE -LP NOT NULL NULLS OR PARAM RLIKE -RP TRUE EQ CIEQ @@ -210,97 +229,124 @@ RIGHT_BRACES NAMED_OR_POSITIONAL_PARAM OPENING_BRACKET CLOSING_BRACKET +LP +RP UNQUOTED_IDENTIFIER QUOTED_IDENTIFIER EXPR_LINE_COMMENT EXPR_MULTILINE_COMMENT EXPR_WS -EXPLAIN_WS -EXPLAIN_LINE_COMMENT -EXPLAIN_MULTILINE_COMMENT METADATA UNQUOTED_SOURCE FROM_LINE_COMMENT FROM_MULTILINE_COMMENT FROM_WS -ID_PATTERN -PROJECT_LINE_COMMENT -PROJECT_MULTILINE_COMMENT -PROJECT_WS -AS -RENAME_LINE_COMMENT -RENAME_MULTILINE_COMMENT -RENAME_WS -ON -WITH -ENRICH_POLICY_NAME -ENRICH_LINE_COMMENT -ENRICH_MULTILINE_COMMENT -ENRICH_WS -ENRICH_FIELD_LINE_COMMENT -ENRICH_FIELD_MULTILINE_COMMENT -ENRICH_FIELD_WS -MVEXPAND_LINE_COMMENT -MVEXPAND_MULTILINE_COMMENT -MVEXPAND_WS -INFO -SHOW_LINE_COMMENT -SHOW_MULTILINE_COMMENT -SHOW_WS -SETTING -SETTING_LINE_COMMENT -SETTTING_MULTILINE_COMMENT -SETTING_WS +JOIN +USING +JOIN_LINE_COMMENT +JOIN_MULTILINE_COMMENT +JOIN_WS LOOKUP_LINE_COMMENT LOOKUP_MULTILINE_COMMENT LOOKUP_WS LOOKUP_FIELD_LINE_COMMENT LOOKUP_FIELD_MULTILINE_COMMENT LOOKUP_FIELD_WS -JOIN -USING -JOIN_LINE_COMMENT -JOIN_MULTILINE_COMMENT -JOIN_WS METRICS_LINE_COMMENT METRICS_MULTILINE_COMMENT METRICS_WS CLOSING_METRICS_LINE_COMMENT CLOSING_METRICS_MULTILINE_COMMENT CLOSING_METRICS_WS -INSIST_WS -INSIST_LINE_COMMENT -INSIST_MULTILINE_COMMENT +MVEXPAND_LINE_COMMENT +MVEXPAND_MULTILINE_COMMENT +MVEXPAND_WS +ID_PATTERN +PROJECT_LINE_COMMENT +PROJECT_MULTILINE_COMMENT +PROJECT_WS +AS +RENAME_LINE_COMMENT +RENAME_MULTILINE_COMMENT +RENAME_WS +INFO +SHOW_LINE_COMMENT +SHOW_MULTILINE_COMMENT +SHOW_WS rule names: -DISSECT -DROP +LINE_COMMENT +MULTILINE_COMMENT +WS +DEV_CHANGE_POINT ENRICH -EVAL EXPLAIN -FROM +DISSECT +EVAL GROK -KEEP LIMIT -MV_EXPAND -RENAME ROW -SHOW SORT STATS WHERE -JOIN_LOOKUP DEV_INLINESTATS -DEV_INSIST -DEV_LOOKUP -DEV_METRICS +FROM +JOIN_LOOKUP DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT +DEV_LOOKUP +DEV_METRICS +MV_EXPAND +DROP +KEEP +DEV_INSIST +RENAME +SHOW UNKNOWN_CMD -LINE_COMMENT -MULTILINE_COMMENT -WS +CHANGE_POINT_PIPE +CHANGE_POINT_ON +CHANGE_POINT_AS +CHANGE_POINT_DOT +CHANGE_POINT_COMMA +CHANGE_POINT_QUOTED_IDENTIFIER +CHANGE_POINT_UNQUOTED_IDENTIFIER +CHANGE_POINT_LINE_COMMENT +CHANGE_POINT_MULTILINE_COMMENT +CHANGE_POINT_WS +ENRICH_PIPE +ENRICH_OPENING_BRACKET +ON +WITH +ENRICH_POLICY_NAME_BODY +ENRICH_POLICY_NAME +ENRICH_MODE_UNQUOTED_VALUE +ENRICH_LINE_COMMENT +ENRICH_MULTILINE_COMMENT +ENRICH_WS +ENRICH_FIELD_PIPE +ENRICH_FIELD_ASSIGN +ENRICH_FIELD_COMMA +ENRICH_FIELD_DOT +ENRICH_FIELD_WITH +ENRICH_FIELD_ID_PATTERN +ENRICH_FIELD_QUOTED_IDENTIFIER +ENRICH_FIELD_PARAM +ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM +ENRICH_FIELD_LINE_COMMENT +ENRICH_FIELD_MULTILINE_COMMENT +ENRICH_FIELD_WS +SETTING_CLOSING_BRACKET +SETTING_COLON +SETTING +SETTING_LINE_COMMENT +SETTTING_MULTILINE_COMMENT +SETTING_WS +EXPLAIN_OPENING_BRACKET +EXPLAIN_PIPE +EXPLAIN_WS +EXPLAIN_LINE_COMMENT +EXPLAIN_MULTILINE_COMMENT PIPE DIGIT LETTER @@ -330,14 +376,12 @@ IN IS LAST LIKE -LP NOT NULL NULLS OR PARAM RLIKE -RP TRUE EQ CIEQ @@ -357,17 +401,14 @@ NESTED_WHERE NAMED_OR_POSITIONAL_PARAM OPENING_BRACKET CLOSING_BRACKET +LP +RP UNQUOTED_IDENTIFIER QUOTED_ID QUOTED_IDENTIFIER EXPR_LINE_COMMENT EXPR_MULTILINE_COMMENT EXPR_WS -EXPLAIN_OPENING_BRACKET -EXPLAIN_PIPE -EXPLAIN_WS -EXPLAIN_LINE_COMMENT -EXPLAIN_MULTILINE_COMMENT FROM_PIPE FROM_OPENING_BRACKET FROM_CLOSING_BRACKET @@ -382,70 +423,19 @@ FROM_QUOTED_SOURCE FROM_LINE_COMMENT FROM_MULTILINE_COMMENT FROM_WS -PROJECT_PIPE -PROJECT_DOT -PROJECT_COMMA -PROJECT_PARAM -PROJECT_NAMED_OR_POSITIONAL_PARAM -UNQUOTED_ID_BODY_WITH_PATTERN -UNQUOTED_ID_PATTERN -ID_PATTERN -PROJECT_LINE_COMMENT -PROJECT_MULTILINE_COMMENT -PROJECT_WS -RENAME_PIPE -RENAME_ASSIGN -RENAME_COMMA -RENAME_DOT -RENAME_PARAM -RENAME_NAMED_OR_POSITIONAL_PARAM -AS -RENAME_ID_PATTERN -RENAME_LINE_COMMENT -RENAME_MULTILINE_COMMENT -RENAME_WS -ENRICH_PIPE -ENRICH_OPENING_BRACKET -ON -WITH -ENRICH_POLICY_NAME_BODY -ENRICH_POLICY_NAME -ENRICH_MODE_UNQUOTED_VALUE -ENRICH_LINE_COMMENT -ENRICH_MULTILINE_COMMENT -ENRICH_WS -ENRICH_FIELD_PIPE -ENRICH_FIELD_ASSIGN -ENRICH_FIELD_COMMA -ENRICH_FIELD_DOT -ENRICH_FIELD_WITH -ENRICH_FIELD_ID_PATTERN -ENRICH_FIELD_QUOTED_IDENTIFIER -ENRICH_FIELD_PARAM -ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM -ENRICH_FIELD_LINE_COMMENT -ENRICH_FIELD_MULTILINE_COMMENT -ENRICH_FIELD_WS -MVEXPAND_PIPE -MVEXPAND_DOT -MVEXPAND_PARAM -MVEXPAND_NAMED_OR_POSITIONAL_PARAM -MVEXPAND_QUOTED_IDENTIFIER -MVEXPAND_UNQUOTED_IDENTIFIER -MVEXPAND_LINE_COMMENT -MVEXPAND_MULTILINE_COMMENT -MVEXPAND_WS -SHOW_PIPE -INFO -SHOW_LINE_COMMENT -SHOW_MULTILINE_COMMENT -SHOW_WS -SETTING_CLOSING_BRACKET -SETTING_COLON -SETTING -SETTING_LINE_COMMENT -SETTTING_MULTILINE_COMMENT -SETTING_WS +JOIN_PIPE +JOIN +JOIN_AS +JOIN_ON +USING +JOIN_UNQUOTED_SOURCE +JOIN_QUOTED_SOURCE +JOIN_COLON +JOIN_UNQUOTED_IDENTIFER +JOIN_QUOTED_IDENTIFIER +JOIN_LINE_COMMENT +JOIN_MULTILINE_COMMENT +JOIN_WS LOOKUP_PIPE LOOKUP_COLON LOOKUP_COMMA @@ -463,19 +453,6 @@ LOOKUP_FIELD_ID_PATTERN LOOKUP_FIELD_LINE_COMMENT LOOKUP_FIELD_MULTILINE_COMMENT LOOKUP_FIELD_WS -JOIN_PIPE -JOIN -JOIN_AS -JOIN_ON -USING -JOIN_UNQUOTED_SOURCE -JOIN_QUOTED_SOURCE -JOIN_COLON -JOIN_UNQUOTED_IDENTIFER -JOIN_QUOTED_IDENTIFIER -JOIN_LINE_COMMENT -JOIN_MULTILINE_COMMENT -JOIN_WS METRICS_PIPE METRICS_UNQUOTED_SOURCE METRICS_QUOTED_SOURCE @@ -491,11 +468,42 @@ CLOSING_METRICS_QUOTED_IDENTIFIER CLOSING_METRICS_UNQUOTED_IDENTIFIER CLOSING_METRICS_BY CLOSING_METRICS_PIPE -INSIST_PIPE -INSIST_IDENTIFIER -INSIST_WS -INSIST_LINE_COMMENT -INSIST_MULTILINE_COMMENT +MVEXPAND_PIPE +MVEXPAND_DOT +MVEXPAND_PARAM +MVEXPAND_NAMED_OR_POSITIONAL_PARAM +MVEXPAND_QUOTED_IDENTIFIER +MVEXPAND_UNQUOTED_IDENTIFIER +MVEXPAND_LINE_COMMENT +MVEXPAND_MULTILINE_COMMENT +MVEXPAND_WS +PROJECT_PIPE +PROJECT_DOT +PROJECT_COMMA +PROJECT_PARAM +PROJECT_NAMED_OR_POSITIONAL_PARAM +UNQUOTED_ID_BODY_WITH_PATTERN +UNQUOTED_ID_PATTERN +ID_PATTERN +PROJECT_LINE_COMMENT +PROJECT_MULTILINE_COMMENT +PROJECT_WS +RENAME_PIPE +RENAME_ASSIGN +RENAME_COMMA +RENAME_DOT +RENAME_PARAM +RENAME_NAMED_OR_POSITIONAL_PARAM +AS +RENAME_ID_PATTERN +RENAME_LINE_COMMENT +RENAME_MULTILINE_COMMENT +RENAME_WS +SHOW_PIPE +INFO +SHOW_LINE_COMMENT +SHOW_MULTILINE_COMMENT +SHOW_WS channel names: DEFAULT_TOKEN_CHANNEL @@ -503,22 +511,22 @@ HIDDEN mode names: DEFAULT_MODE -EXPRESSION_MODE -EXPLAIN_MODE -FROM_MODE -PROJECT_MODE -RENAME_MODE +CHANGE_POINT_MODE ENRICH_MODE ENRICH_FIELD_MODE -MVEXPAND_MODE -SHOW_MODE SETTING_MODE +EXPLAIN_MODE +EXPRESSION_MODE +FROM_MODE +JOIN_MODE LOOKUP_MODE LOOKUP_FIELD_MODE -JOIN_MODE METRICS_MODE CLOSING_METRICS_MODE -INSIST_MODE +MVEXPAND_MODE +PROJECT_MODE +RENAME_MODE +SHOW_MODE atn: -[4, 0, 134, 1655, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 1, 0, 1, 0, 1, 0, 1, 0, 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, 1, 1, 2, 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, 4, 1, 4, 1, 4, 1, 4, 1, 4, 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, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 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, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 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, 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, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 4, 24, 678, 8, 24, 11, 24, 12, 24, 679, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 688, 8, 25, 10, 25, 12, 25, 691, 9, 25, 1, 25, 3, 25, 694, 8, 25, 1, 25, 3, 25, 697, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 706, 8, 26, 10, 26, 12, 26, 709, 9, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 4, 27, 717, 8, 27, 11, 27, 12, 27, 718, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 738, 8, 33, 1, 33, 4, 33, 741, 8, 33, 11, 33, 12, 33, 742, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 3, 36, 752, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 759, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 764, 8, 39, 10, 39, 12, 39, 767, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 775, 8, 39, 10, 39, 12, 39, 778, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 785, 8, 39, 1, 39, 3, 39, 788, 8, 39, 3, 39, 790, 8, 39, 1, 40, 4, 40, 793, 8, 40, 11, 40, 12, 40, 794, 1, 41, 4, 41, 798, 8, 41, 11, 41, 12, 41, 799, 1, 41, 1, 41, 5, 41, 804, 8, 41, 10, 41, 12, 41, 807, 9, 41, 1, 41, 1, 41, 4, 41, 811, 8, 41, 11, 41, 12, 41, 812, 1, 41, 4, 41, 816, 8, 41, 11, 41, 12, 41, 817, 1, 41, 1, 41, 5, 41, 822, 8, 41, 10, 41, 12, 41, 825, 9, 41, 3, 41, 827, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 4, 41, 833, 8, 41, 11, 41, 12, 41, 834, 1, 41, 1, 41, 3, 41, 839, 8, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 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, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 971, 8, 81, 1, 81, 5, 81, 974, 8, 81, 10, 81, 12, 81, 977, 9, 81, 1, 81, 1, 81, 4, 81, 981, 8, 81, 11, 81, 12, 81, 982, 3, 81, 985, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 5, 84, 999, 8, 84, 10, 84, 12, 84, 1002, 9, 84, 1, 84, 1, 84, 3, 84, 1006, 8, 84, 1, 84, 4, 84, 1009, 8, 84, 11, 84, 12, 84, 1010, 3, 84, 1013, 8, 84, 1, 85, 1, 85, 4, 85, 1017, 8, 85, 11, 85, 12, 85, 1018, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 3, 102, 1096, 8, 102, 1, 103, 4, 103, 1099, 8, 103, 11, 103, 12, 103, 1100, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 1148, 8, 114, 1, 115, 1, 115, 3, 115, 1152, 8, 115, 1, 115, 5, 115, 1155, 8, 115, 10, 115, 12, 115, 1158, 9, 115, 1, 115, 1, 115, 3, 115, 1162, 8, 115, 1, 115, 4, 115, 1165, 8, 115, 11, 115, 12, 115, 1166, 3, 115, 1169, 8, 115, 1, 116, 1, 116, 4, 116, 1173, 8, 116, 11, 116, 12, 116, 1174, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 136, 4, 136, 1258, 8, 136, 11, 136, 12, 136, 1259, 1, 136, 1, 136, 3, 136, 1264, 8, 136, 1, 136, 4, 136, 1267, 8, 136, 11, 136, 12, 136, 1268, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 4, 169, 1410, 8, 169, 11, 169, 12, 169, 1411, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 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, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 2, 707, 776, 0, 223, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 0, 77, 0, 79, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 30, 97, 31, 99, 32, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 0, 179, 71, 181, 72, 183, 73, 185, 74, 187, 0, 189, 75, 191, 76, 193, 77, 195, 78, 197, 0, 199, 0, 201, 79, 203, 80, 205, 81, 207, 0, 209, 0, 211, 0, 213, 0, 215, 0, 217, 0, 219, 82, 221, 0, 223, 83, 225, 0, 227, 0, 229, 84, 231, 85, 233, 86, 235, 0, 237, 0, 239, 0, 241, 0, 243, 0, 245, 0, 247, 0, 249, 87, 251, 88, 253, 89, 255, 90, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 0, 269, 91, 271, 0, 273, 92, 275, 93, 277, 94, 279, 0, 281, 0, 283, 95, 285, 96, 287, 0, 289, 97, 291, 0, 293, 98, 295, 99, 297, 100, 299, 0, 301, 0, 303, 0, 305, 0, 307, 0, 309, 0, 311, 0, 313, 0, 315, 0, 317, 101, 319, 102, 321, 103, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 104, 337, 105, 339, 106, 341, 0, 343, 107, 345, 108, 347, 109, 349, 110, 351, 0, 353, 0, 355, 111, 357, 112, 359, 113, 361, 114, 363, 0, 365, 0, 367, 0, 369, 0, 371, 0, 373, 0, 375, 0, 377, 115, 379, 116, 381, 117, 383, 0, 385, 0, 387, 0, 389, 0, 391, 118, 393, 119, 395, 120, 397, 0, 399, 121, 401, 0, 403, 0, 405, 122, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 123, 419, 124, 421, 125, 423, 0, 425, 0, 427, 0, 429, 126, 431, 127, 433, 128, 435, 0, 437, 0, 439, 129, 441, 130, 443, 131, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 132, 459, 133, 461, 134, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 68, 68, 100, 100, 2, 0, 73, 73, 105, 105, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 78, 78, 110, 110, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 77, 77, 109, 109, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1681, 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, 1, 73, 1, 0, 0, 0, 1, 95, 1, 0, 0, 0, 1, 97, 1, 0, 0, 0, 1, 99, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 189, 1, 0, 0, 0, 1, 191, 1, 0, 0, 0, 1, 193, 1, 0, 0, 0, 1, 195, 1, 0, 0, 0, 2, 197, 1, 0, 0, 0, 2, 199, 1, 0, 0, 0, 2, 201, 1, 0, 0, 0, 2, 203, 1, 0, 0, 0, 2, 205, 1, 0, 0, 0, 3, 207, 1, 0, 0, 0, 3, 209, 1, 0, 0, 0, 3, 211, 1, 0, 0, 0, 3, 213, 1, 0, 0, 0, 3, 215, 1, 0, 0, 0, 3, 217, 1, 0, 0, 0, 3, 219, 1, 0, 0, 0, 3, 223, 1, 0, 0, 0, 3, 225, 1, 0, 0, 0, 3, 227, 1, 0, 0, 0, 3, 229, 1, 0, 0, 0, 3, 231, 1, 0, 0, 0, 3, 233, 1, 0, 0, 0, 4, 235, 1, 0, 0, 0, 4, 237, 1, 0, 0, 0, 4, 239, 1, 0, 0, 0, 4, 241, 1, 0, 0, 0, 4, 243, 1, 0, 0, 0, 4, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 5, 257, 1, 0, 0, 0, 5, 259, 1, 0, 0, 0, 5, 261, 1, 0, 0, 0, 5, 263, 1, 0, 0, 0, 5, 265, 1, 0, 0, 0, 5, 267, 1, 0, 0, 0, 5, 269, 1, 0, 0, 0, 5, 271, 1, 0, 0, 0, 5, 273, 1, 0, 0, 0, 5, 275, 1, 0, 0, 0, 5, 277, 1, 0, 0, 0, 6, 279, 1, 0, 0, 0, 6, 281, 1, 0, 0, 0, 6, 283, 1, 0, 0, 0, 6, 285, 1, 0, 0, 0, 6, 289, 1, 0, 0, 0, 6, 291, 1, 0, 0, 0, 6, 293, 1, 0, 0, 0, 6, 295, 1, 0, 0, 0, 6, 297, 1, 0, 0, 0, 7, 299, 1, 0, 0, 0, 7, 301, 1, 0, 0, 0, 7, 303, 1, 0, 0, 0, 7, 305, 1, 0, 0, 0, 7, 307, 1, 0, 0, 0, 7, 309, 1, 0, 0, 0, 7, 311, 1, 0, 0, 0, 7, 313, 1, 0, 0, 0, 7, 315, 1, 0, 0, 0, 7, 317, 1, 0, 0, 0, 7, 319, 1, 0, 0, 0, 7, 321, 1, 0, 0, 0, 8, 323, 1, 0, 0, 0, 8, 325, 1, 0, 0, 0, 8, 327, 1, 0, 0, 0, 8, 329, 1, 0, 0, 0, 8, 331, 1, 0, 0, 0, 8, 333, 1, 0, 0, 0, 8, 335, 1, 0, 0, 0, 8, 337, 1, 0, 0, 0, 8, 339, 1, 0, 0, 0, 9, 341, 1, 0, 0, 0, 9, 343, 1, 0, 0, 0, 9, 345, 1, 0, 0, 0, 9, 347, 1, 0, 0, 0, 9, 349, 1, 0, 0, 0, 10, 351, 1, 0, 0, 0, 10, 353, 1, 0, 0, 0, 10, 355, 1, 0, 0, 0, 10, 357, 1, 0, 0, 0, 10, 359, 1, 0, 0, 0, 10, 361, 1, 0, 0, 0, 11, 363, 1, 0, 0, 0, 11, 365, 1, 0, 0, 0, 11, 367, 1, 0, 0, 0, 11, 369, 1, 0, 0, 0, 11, 371, 1, 0, 0, 0, 11, 373, 1, 0, 0, 0, 11, 375, 1, 0, 0, 0, 11, 377, 1, 0, 0, 0, 11, 379, 1, 0, 0, 0, 11, 381, 1, 0, 0, 0, 12, 383, 1, 0, 0, 0, 12, 385, 1, 0, 0, 0, 12, 387, 1, 0, 0, 0, 12, 389, 1, 0, 0, 0, 12, 391, 1, 0, 0, 0, 12, 393, 1, 0, 0, 0, 12, 395, 1, 0, 0, 0, 13, 397, 1, 0, 0, 0, 13, 399, 1, 0, 0, 0, 13, 401, 1, 0, 0, 0, 13, 403, 1, 0, 0, 0, 13, 405, 1, 0, 0, 0, 13, 407, 1, 0, 0, 0, 13, 409, 1, 0, 0, 0, 13, 411, 1, 0, 0, 0, 13, 413, 1, 0, 0, 0, 13, 415, 1, 0, 0, 0, 13, 417, 1, 0, 0, 0, 13, 419, 1, 0, 0, 0, 13, 421, 1, 0, 0, 0, 14, 423, 1, 0, 0, 0, 14, 425, 1, 0, 0, 0, 14, 427, 1, 0, 0, 0, 14, 429, 1, 0, 0, 0, 14, 431, 1, 0, 0, 0, 14, 433, 1, 0, 0, 0, 15, 435, 1, 0, 0, 0, 15, 437, 1, 0, 0, 0, 15, 439, 1, 0, 0, 0, 15, 441, 1, 0, 0, 0, 15, 443, 1, 0, 0, 0, 15, 445, 1, 0, 0, 0, 15, 447, 1, 0, 0, 0, 15, 449, 1, 0, 0, 0, 15, 451, 1, 0, 0, 0, 16, 453, 1, 0, 0, 0, 16, 455, 1, 0, 0, 0, 16, 457, 1, 0, 0, 0, 16, 459, 1, 0, 0, 0, 16, 461, 1, 0, 0, 0, 17, 463, 1, 0, 0, 0, 19, 473, 1, 0, 0, 0, 21, 480, 1, 0, 0, 0, 23, 489, 1, 0, 0, 0, 25, 496, 1, 0, 0, 0, 27, 506, 1, 0, 0, 0, 29, 513, 1, 0, 0, 0, 31, 520, 1, 0, 0, 0, 33, 527, 1, 0, 0, 0, 35, 535, 1, 0, 0, 0, 37, 547, 1, 0, 0, 0, 39, 556, 1, 0, 0, 0, 41, 562, 1, 0, 0, 0, 43, 569, 1, 0, 0, 0, 45, 576, 1, 0, 0, 0, 47, 584, 1, 0, 0, 0, 49, 592, 1, 0, 0, 0, 51, 601, 1, 0, 0, 0, 53, 616, 1, 0, 0, 0, 55, 628, 1, 0, 0, 0, 57, 640, 1, 0, 0, 0, 59, 651, 1, 0, 0, 0, 61, 659, 1, 0, 0, 0, 63, 667, 1, 0, 0, 0, 65, 677, 1, 0, 0, 0, 67, 683, 1, 0, 0, 0, 69, 700, 1, 0, 0, 0, 71, 716, 1, 0, 0, 0, 73, 722, 1, 0, 0, 0, 75, 726, 1, 0, 0, 0, 77, 728, 1, 0, 0, 0, 79, 730, 1, 0, 0, 0, 81, 733, 1, 0, 0, 0, 83, 735, 1, 0, 0, 0, 85, 744, 1, 0, 0, 0, 87, 746, 1, 0, 0, 0, 89, 751, 1, 0, 0, 0, 91, 753, 1, 0, 0, 0, 93, 758, 1, 0, 0, 0, 95, 789, 1, 0, 0, 0, 97, 792, 1, 0, 0, 0, 99, 838, 1, 0, 0, 0, 101, 840, 1, 0, 0, 0, 103, 843, 1, 0, 0, 0, 105, 847, 1, 0, 0, 0, 107, 851, 1, 0, 0, 0, 109, 853, 1, 0, 0, 0, 111, 856, 1, 0, 0, 0, 113, 858, 1, 0, 0, 0, 115, 860, 1, 0, 0, 0, 117, 865, 1, 0, 0, 0, 119, 867, 1, 0, 0, 0, 121, 873, 1, 0, 0, 0, 123, 879, 1, 0, 0, 0, 125, 882, 1, 0, 0, 0, 127, 885, 1, 0, 0, 0, 129, 890, 1, 0, 0, 0, 131, 895, 1, 0, 0, 0, 133, 897, 1, 0, 0, 0, 135, 901, 1, 0, 0, 0, 137, 906, 1, 0, 0, 0, 139, 912, 1, 0, 0, 0, 141, 915, 1, 0, 0, 0, 143, 917, 1, 0, 0, 0, 145, 923, 1, 0, 0, 0, 147, 925, 1, 0, 0, 0, 149, 930, 1, 0, 0, 0, 151, 933, 1, 0, 0, 0, 153, 936, 1, 0, 0, 0, 155, 939, 1, 0, 0, 0, 157, 941, 1, 0, 0, 0, 159, 944, 1, 0, 0, 0, 161, 946, 1, 0, 0, 0, 163, 949, 1, 0, 0, 0, 165, 951, 1, 0, 0, 0, 167, 953, 1, 0, 0, 0, 169, 955, 1, 0, 0, 0, 171, 957, 1, 0, 0, 0, 173, 959, 1, 0, 0, 0, 175, 961, 1, 0, 0, 0, 177, 963, 1, 0, 0, 0, 179, 984, 1, 0, 0, 0, 181, 986, 1, 0, 0, 0, 183, 991, 1, 0, 0, 0, 185, 1012, 1, 0, 0, 0, 187, 1014, 1, 0, 0, 0, 189, 1022, 1, 0, 0, 0, 191, 1024, 1, 0, 0, 0, 193, 1028, 1, 0, 0, 0, 195, 1032, 1, 0, 0, 0, 197, 1036, 1, 0, 0, 0, 199, 1041, 1, 0, 0, 0, 201, 1046, 1, 0, 0, 0, 203, 1050, 1, 0, 0, 0, 205, 1054, 1, 0, 0, 0, 207, 1058, 1, 0, 0, 0, 209, 1063, 1, 0, 0, 0, 211, 1067, 1, 0, 0, 0, 213, 1071, 1, 0, 0, 0, 215, 1075, 1, 0, 0, 0, 217, 1079, 1, 0, 0, 0, 219, 1083, 1, 0, 0, 0, 221, 1095, 1, 0, 0, 0, 223, 1098, 1, 0, 0, 0, 225, 1102, 1, 0, 0, 0, 227, 1106, 1, 0, 0, 0, 229, 1110, 1, 0, 0, 0, 231, 1114, 1, 0, 0, 0, 233, 1118, 1, 0, 0, 0, 235, 1122, 1, 0, 0, 0, 237, 1127, 1, 0, 0, 0, 239, 1131, 1, 0, 0, 0, 241, 1135, 1, 0, 0, 0, 243, 1139, 1, 0, 0, 0, 245, 1147, 1, 0, 0, 0, 247, 1168, 1, 0, 0, 0, 249, 1172, 1, 0, 0, 0, 251, 1176, 1, 0, 0, 0, 253, 1180, 1, 0, 0, 0, 255, 1184, 1, 0, 0, 0, 257, 1188, 1, 0, 0, 0, 259, 1193, 1, 0, 0, 0, 261, 1197, 1, 0, 0, 0, 263, 1201, 1, 0, 0, 0, 265, 1205, 1, 0, 0, 0, 267, 1209, 1, 0, 0, 0, 269, 1213, 1, 0, 0, 0, 271, 1216, 1, 0, 0, 0, 273, 1220, 1, 0, 0, 0, 275, 1224, 1, 0, 0, 0, 277, 1228, 1, 0, 0, 0, 279, 1232, 1, 0, 0, 0, 281, 1237, 1, 0, 0, 0, 283, 1242, 1, 0, 0, 0, 285, 1247, 1, 0, 0, 0, 287, 1254, 1, 0, 0, 0, 289, 1263, 1, 0, 0, 0, 291, 1270, 1, 0, 0, 0, 293, 1274, 1, 0, 0, 0, 295, 1278, 1, 0, 0, 0, 297, 1282, 1, 0, 0, 0, 299, 1286, 1, 0, 0, 0, 301, 1292, 1, 0, 0, 0, 303, 1296, 1, 0, 0, 0, 305, 1300, 1, 0, 0, 0, 307, 1304, 1, 0, 0, 0, 309, 1308, 1, 0, 0, 0, 311, 1312, 1, 0, 0, 0, 313, 1316, 1, 0, 0, 0, 315, 1320, 1, 0, 0, 0, 317, 1324, 1, 0, 0, 0, 319, 1328, 1, 0, 0, 0, 321, 1332, 1, 0, 0, 0, 323, 1336, 1, 0, 0, 0, 325, 1341, 1, 0, 0, 0, 327, 1345, 1, 0, 0, 0, 329, 1349, 1, 0, 0, 0, 331, 1353, 1, 0, 0, 0, 333, 1357, 1, 0, 0, 0, 335, 1361, 1, 0, 0, 0, 337, 1365, 1, 0, 0, 0, 339, 1369, 1, 0, 0, 0, 341, 1373, 1, 0, 0, 0, 343, 1378, 1, 0, 0, 0, 345, 1383, 1, 0, 0, 0, 347, 1387, 1, 0, 0, 0, 349, 1391, 1, 0, 0, 0, 351, 1395, 1, 0, 0, 0, 353, 1400, 1, 0, 0, 0, 355, 1409, 1, 0, 0, 0, 357, 1413, 1, 0, 0, 0, 359, 1417, 1, 0, 0, 0, 361, 1421, 1, 0, 0, 0, 363, 1425, 1, 0, 0, 0, 365, 1430, 1, 0, 0, 0, 367, 1434, 1, 0, 0, 0, 369, 1438, 1, 0, 0, 0, 371, 1442, 1, 0, 0, 0, 373, 1447, 1, 0, 0, 0, 375, 1451, 1, 0, 0, 0, 377, 1455, 1, 0, 0, 0, 379, 1459, 1, 0, 0, 0, 381, 1463, 1, 0, 0, 0, 383, 1467, 1, 0, 0, 0, 385, 1473, 1, 0, 0, 0, 387, 1477, 1, 0, 0, 0, 389, 1481, 1, 0, 0, 0, 391, 1485, 1, 0, 0, 0, 393, 1489, 1, 0, 0, 0, 395, 1493, 1, 0, 0, 0, 397, 1497, 1, 0, 0, 0, 399, 1502, 1, 0, 0, 0, 401, 1507, 1, 0, 0, 0, 403, 1511, 1, 0, 0, 0, 405, 1517, 1, 0, 0, 0, 407, 1526, 1, 0, 0, 0, 409, 1530, 1, 0, 0, 0, 411, 1534, 1, 0, 0, 0, 413, 1538, 1, 0, 0, 0, 415, 1542, 1, 0, 0, 0, 417, 1546, 1, 0, 0, 0, 419, 1550, 1, 0, 0, 0, 421, 1554, 1, 0, 0, 0, 423, 1558, 1, 0, 0, 0, 425, 1563, 1, 0, 0, 0, 427, 1569, 1, 0, 0, 0, 429, 1575, 1, 0, 0, 0, 431, 1579, 1, 0, 0, 0, 433, 1583, 1, 0, 0, 0, 435, 1587, 1, 0, 0, 0, 437, 1593, 1, 0, 0, 0, 439, 1599, 1, 0, 0, 0, 441, 1603, 1, 0, 0, 0, 443, 1607, 1, 0, 0, 0, 445, 1611, 1, 0, 0, 0, 447, 1617, 1, 0, 0, 0, 449, 1623, 1, 0, 0, 0, 451, 1629, 1, 0, 0, 0, 453, 1634, 1, 0, 0, 0, 455, 1639, 1, 0, 0, 0, 457, 1643, 1, 0, 0, 0, 459, 1647, 1, 0, 0, 0, 461, 1651, 1, 0, 0, 0, 463, 464, 7, 0, 0, 0, 464, 465, 7, 1, 0, 0, 465, 466, 7, 2, 0, 0, 466, 467, 7, 2, 0, 0, 467, 468, 7, 3, 0, 0, 468, 469, 7, 4, 0, 0, 469, 470, 7, 5, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 6, 0, 0, 0, 472, 18, 1, 0, 0, 0, 473, 474, 7, 0, 0, 0, 474, 475, 7, 6, 0, 0, 475, 476, 7, 7, 0, 0, 476, 477, 7, 8, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 6, 1, 1, 0, 479, 20, 1, 0, 0, 0, 480, 481, 7, 3, 0, 0, 481, 482, 7, 9, 0, 0, 482, 483, 7, 6, 0, 0, 483, 484, 7, 1, 0, 0, 484, 485, 7, 4, 0, 0, 485, 486, 7, 10, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 6, 2, 2, 0, 488, 22, 1, 0, 0, 0, 489, 490, 7, 3, 0, 0, 490, 491, 7, 11, 0, 0, 491, 492, 7, 12, 0, 0, 492, 493, 7, 13, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 6, 3, 0, 0, 495, 24, 1, 0, 0, 0, 496, 497, 7, 3, 0, 0, 497, 498, 7, 14, 0, 0, 498, 499, 7, 8, 0, 0, 499, 500, 7, 13, 0, 0, 500, 501, 7, 12, 0, 0, 501, 502, 7, 1, 0, 0, 502, 503, 7, 9, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 6, 4, 3, 0, 505, 26, 1, 0, 0, 0, 506, 507, 7, 15, 0, 0, 507, 508, 7, 6, 0, 0, 508, 509, 7, 7, 0, 0, 509, 510, 7, 16, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 6, 5, 4, 0, 512, 28, 1, 0, 0, 0, 513, 514, 7, 17, 0, 0, 514, 515, 7, 6, 0, 0, 515, 516, 7, 7, 0, 0, 516, 517, 7, 18, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 6, 0, 0, 519, 30, 1, 0, 0, 0, 520, 521, 7, 18, 0, 0, 521, 522, 7, 3, 0, 0, 522, 523, 7, 3, 0, 0, 523, 524, 7, 8, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 6, 7, 1, 0, 526, 32, 1, 0, 0, 0, 527, 528, 7, 13, 0, 0, 528, 529, 7, 1, 0, 0, 529, 530, 7, 16, 0, 0, 530, 531, 7, 1, 0, 0, 531, 532, 7, 5, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 6, 8, 0, 0, 534, 34, 1, 0, 0, 0, 535, 536, 7, 16, 0, 0, 536, 537, 7, 11, 0, 0, 537, 538, 5, 95, 0, 0, 538, 539, 7, 3, 0, 0, 539, 540, 7, 14, 0, 0, 540, 541, 7, 8, 0, 0, 541, 542, 7, 12, 0, 0, 542, 543, 7, 9, 0, 0, 543, 544, 7, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 6, 9, 5, 0, 546, 36, 1, 0, 0, 0, 547, 548, 7, 6, 0, 0, 548, 549, 7, 3, 0, 0, 549, 550, 7, 9, 0, 0, 550, 551, 7, 12, 0, 0, 551, 552, 7, 16, 0, 0, 552, 553, 7, 3, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 6, 10, 6, 0, 555, 38, 1, 0, 0, 0, 556, 557, 7, 6, 0, 0, 557, 558, 7, 7, 0, 0, 558, 559, 7, 19, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 6, 11, 0, 0, 561, 40, 1, 0, 0, 0, 562, 563, 7, 2, 0, 0, 563, 564, 7, 10, 0, 0, 564, 565, 7, 7, 0, 0, 565, 566, 7, 19, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 6, 12, 7, 0, 568, 42, 1, 0, 0, 0, 569, 570, 7, 2, 0, 0, 570, 571, 7, 7, 0, 0, 571, 572, 7, 6, 0, 0, 572, 573, 7, 5, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 6, 13, 0, 0, 575, 44, 1, 0, 0, 0, 576, 577, 7, 2, 0, 0, 577, 578, 7, 5, 0, 0, 578, 579, 7, 12, 0, 0, 579, 580, 7, 5, 0, 0, 580, 581, 7, 2, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 6, 14, 0, 0, 583, 46, 1, 0, 0, 0, 584, 585, 7, 19, 0, 0, 585, 586, 7, 10, 0, 0, 586, 587, 7, 3, 0, 0, 587, 588, 7, 6, 0, 0, 588, 589, 7, 3, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 6, 15, 0, 0, 591, 48, 1, 0, 0, 0, 592, 593, 7, 13, 0, 0, 593, 594, 7, 7, 0, 0, 594, 595, 7, 7, 0, 0, 595, 596, 7, 18, 0, 0, 596, 597, 7, 20, 0, 0, 597, 598, 7, 8, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 6, 16, 8, 0, 600, 50, 1, 0, 0, 0, 601, 602, 4, 17, 0, 0, 602, 603, 7, 1, 0, 0, 603, 604, 7, 9, 0, 0, 604, 605, 7, 13, 0, 0, 605, 606, 7, 1, 0, 0, 606, 607, 7, 9, 0, 0, 607, 608, 7, 3, 0, 0, 608, 609, 7, 2, 0, 0, 609, 610, 7, 5, 0, 0, 610, 611, 7, 12, 0, 0, 611, 612, 7, 5, 0, 0, 612, 613, 7, 2, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 6, 17, 0, 0, 615, 52, 1, 0, 0, 0, 616, 617, 4, 18, 1, 0, 617, 618, 7, 1, 0, 0, 618, 619, 7, 9, 0, 0, 619, 620, 7, 2, 0, 0, 620, 621, 7, 1, 0, 0, 621, 622, 7, 2, 0, 0, 622, 623, 7, 5, 0, 0, 623, 624, 5, 95, 0, 0, 624, 625, 5, 128020, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 6, 18, 1, 0, 627, 54, 1, 0, 0, 0, 628, 629, 4, 19, 2, 0, 629, 630, 7, 13, 0, 0, 630, 631, 7, 7, 0, 0, 631, 632, 7, 7, 0, 0, 632, 633, 7, 18, 0, 0, 633, 634, 7, 20, 0, 0, 634, 635, 7, 8, 0, 0, 635, 636, 5, 95, 0, 0, 636, 637, 5, 128020, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 6, 19, 9, 0, 639, 56, 1, 0, 0, 0, 640, 641, 4, 20, 3, 0, 641, 642, 7, 16, 0, 0, 642, 643, 7, 3, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 7, 6, 0, 0, 645, 646, 7, 1, 0, 0, 646, 647, 7, 4, 0, 0, 647, 648, 7, 2, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 6, 20, 10, 0, 650, 58, 1, 0, 0, 0, 651, 652, 4, 21, 4, 0, 652, 653, 7, 15, 0, 0, 653, 654, 7, 20, 0, 0, 654, 655, 7, 13, 0, 0, 655, 656, 7, 13, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 6, 21, 8, 0, 658, 60, 1, 0, 0, 0, 659, 660, 4, 22, 5, 0, 660, 661, 7, 13, 0, 0, 661, 662, 7, 3, 0, 0, 662, 663, 7, 15, 0, 0, 663, 664, 7, 5, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 6, 22, 8, 0, 666, 62, 1, 0, 0, 0, 667, 668, 4, 23, 6, 0, 668, 669, 7, 6, 0, 0, 669, 670, 7, 1, 0, 0, 670, 671, 7, 17, 0, 0, 671, 672, 7, 10, 0, 0, 672, 673, 7, 5, 0, 0, 673, 674, 1, 0, 0, 0, 674, 675, 6, 23, 8, 0, 675, 64, 1, 0, 0, 0, 676, 678, 8, 21, 0, 0, 677, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 6, 24, 0, 0, 682, 66, 1, 0, 0, 0, 683, 684, 5, 47, 0, 0, 684, 685, 5, 47, 0, 0, 685, 689, 1, 0, 0, 0, 686, 688, 8, 22, 0, 0, 687, 686, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 694, 5, 13, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 696, 1, 0, 0, 0, 695, 697, 5, 10, 0, 0, 696, 695, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 6, 25, 11, 0, 699, 68, 1, 0, 0, 0, 700, 701, 5, 47, 0, 0, 701, 702, 5, 42, 0, 0, 702, 707, 1, 0, 0, 0, 703, 706, 3, 69, 26, 0, 704, 706, 9, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 704, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 710, 711, 5, 42, 0, 0, 711, 712, 5, 47, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 6, 26, 11, 0, 714, 70, 1, 0, 0, 0, 715, 717, 7, 23, 0, 0, 716, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 27, 11, 0, 721, 72, 1, 0, 0, 0, 722, 723, 5, 124, 0, 0, 723, 724, 1, 0, 0, 0, 724, 725, 6, 28, 12, 0, 725, 74, 1, 0, 0, 0, 726, 727, 7, 24, 0, 0, 727, 76, 1, 0, 0, 0, 728, 729, 7, 25, 0, 0, 729, 78, 1, 0, 0, 0, 730, 731, 5, 92, 0, 0, 731, 732, 7, 26, 0, 0, 732, 80, 1, 0, 0, 0, 733, 734, 8, 27, 0, 0, 734, 82, 1, 0, 0, 0, 735, 737, 7, 3, 0, 0, 736, 738, 7, 28, 0, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 740, 1, 0, 0, 0, 739, 741, 3, 75, 29, 0, 740, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 740, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 84, 1, 0, 0, 0, 744, 745, 5, 64, 0, 0, 745, 86, 1, 0, 0, 0, 746, 747, 5, 96, 0, 0, 747, 88, 1, 0, 0, 0, 748, 752, 8, 29, 0, 0, 749, 750, 5, 96, 0, 0, 750, 752, 5, 96, 0, 0, 751, 748, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 752, 90, 1, 0, 0, 0, 753, 754, 5, 95, 0, 0, 754, 92, 1, 0, 0, 0, 755, 759, 3, 77, 30, 0, 756, 759, 3, 75, 29, 0, 757, 759, 3, 91, 37, 0, 758, 755, 1, 0, 0, 0, 758, 756, 1, 0, 0, 0, 758, 757, 1, 0, 0, 0, 759, 94, 1, 0, 0, 0, 760, 765, 5, 34, 0, 0, 761, 764, 3, 79, 31, 0, 762, 764, 3, 81, 32, 0, 763, 761, 1, 0, 0, 0, 763, 762, 1, 0, 0, 0, 764, 767, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 768, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 768, 790, 5, 34, 0, 0, 769, 770, 5, 34, 0, 0, 770, 771, 5, 34, 0, 0, 771, 772, 5, 34, 0, 0, 772, 776, 1, 0, 0, 0, 773, 775, 8, 22, 0, 0, 774, 773, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 779, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 780, 5, 34, 0, 0, 780, 781, 5, 34, 0, 0, 781, 782, 5, 34, 0, 0, 782, 784, 1, 0, 0, 0, 783, 785, 5, 34, 0, 0, 784, 783, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 787, 1, 0, 0, 0, 786, 788, 5, 34, 0, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 790, 1, 0, 0, 0, 789, 760, 1, 0, 0, 0, 789, 769, 1, 0, 0, 0, 790, 96, 1, 0, 0, 0, 791, 793, 3, 75, 29, 0, 792, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 98, 1, 0, 0, 0, 796, 798, 3, 75, 29, 0, 797, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 805, 3, 117, 50, 0, 802, 804, 3, 75, 29, 0, 803, 802, 1, 0, 0, 0, 804, 807, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 839, 1, 0, 0, 0, 807, 805, 1, 0, 0, 0, 808, 810, 3, 117, 50, 0, 809, 811, 3, 75, 29, 0, 810, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 839, 1, 0, 0, 0, 814, 816, 3, 75, 29, 0, 815, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 826, 1, 0, 0, 0, 819, 823, 3, 117, 50, 0, 820, 822, 3, 75, 29, 0, 821, 820, 1, 0, 0, 0, 822, 825, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 826, 819, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 3, 83, 33, 0, 829, 839, 1, 0, 0, 0, 830, 832, 3, 117, 50, 0, 831, 833, 3, 75, 29, 0, 832, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 3, 83, 33, 0, 837, 839, 1, 0, 0, 0, 838, 797, 1, 0, 0, 0, 838, 808, 1, 0, 0, 0, 838, 815, 1, 0, 0, 0, 838, 830, 1, 0, 0, 0, 839, 100, 1, 0, 0, 0, 840, 841, 7, 30, 0, 0, 841, 842, 7, 31, 0, 0, 842, 102, 1, 0, 0, 0, 843, 844, 7, 12, 0, 0, 844, 845, 7, 9, 0, 0, 845, 846, 7, 0, 0, 0, 846, 104, 1, 0, 0, 0, 847, 848, 7, 12, 0, 0, 848, 849, 7, 2, 0, 0, 849, 850, 7, 4, 0, 0, 850, 106, 1, 0, 0, 0, 851, 852, 5, 61, 0, 0, 852, 108, 1, 0, 0, 0, 853, 854, 5, 58, 0, 0, 854, 855, 5, 58, 0, 0, 855, 110, 1, 0, 0, 0, 856, 857, 5, 58, 0, 0, 857, 112, 1, 0, 0, 0, 858, 859, 5, 44, 0, 0, 859, 114, 1, 0, 0, 0, 860, 861, 7, 0, 0, 0, 861, 862, 7, 3, 0, 0, 862, 863, 7, 2, 0, 0, 863, 864, 7, 4, 0, 0, 864, 116, 1, 0, 0, 0, 865, 866, 5, 46, 0, 0, 866, 118, 1, 0, 0, 0, 867, 868, 7, 15, 0, 0, 868, 869, 7, 12, 0, 0, 869, 870, 7, 13, 0, 0, 870, 871, 7, 2, 0, 0, 871, 872, 7, 3, 0, 0, 872, 120, 1, 0, 0, 0, 873, 874, 7, 15, 0, 0, 874, 875, 7, 1, 0, 0, 875, 876, 7, 6, 0, 0, 876, 877, 7, 2, 0, 0, 877, 878, 7, 5, 0, 0, 878, 122, 1, 0, 0, 0, 879, 880, 7, 1, 0, 0, 880, 881, 7, 9, 0, 0, 881, 124, 1, 0, 0, 0, 882, 883, 7, 1, 0, 0, 883, 884, 7, 2, 0, 0, 884, 126, 1, 0, 0, 0, 885, 886, 7, 13, 0, 0, 886, 887, 7, 12, 0, 0, 887, 888, 7, 2, 0, 0, 888, 889, 7, 5, 0, 0, 889, 128, 1, 0, 0, 0, 890, 891, 7, 13, 0, 0, 891, 892, 7, 1, 0, 0, 892, 893, 7, 18, 0, 0, 893, 894, 7, 3, 0, 0, 894, 130, 1, 0, 0, 0, 895, 896, 5, 40, 0, 0, 896, 132, 1, 0, 0, 0, 897, 898, 7, 9, 0, 0, 898, 899, 7, 7, 0, 0, 899, 900, 7, 5, 0, 0, 900, 134, 1, 0, 0, 0, 901, 902, 7, 9, 0, 0, 902, 903, 7, 20, 0, 0, 903, 904, 7, 13, 0, 0, 904, 905, 7, 13, 0, 0, 905, 136, 1, 0, 0, 0, 906, 907, 7, 9, 0, 0, 907, 908, 7, 20, 0, 0, 908, 909, 7, 13, 0, 0, 909, 910, 7, 13, 0, 0, 910, 911, 7, 2, 0, 0, 911, 138, 1, 0, 0, 0, 912, 913, 7, 7, 0, 0, 913, 914, 7, 6, 0, 0, 914, 140, 1, 0, 0, 0, 915, 916, 5, 63, 0, 0, 916, 142, 1, 0, 0, 0, 917, 918, 7, 6, 0, 0, 918, 919, 7, 13, 0, 0, 919, 920, 7, 1, 0, 0, 920, 921, 7, 18, 0, 0, 921, 922, 7, 3, 0, 0, 922, 144, 1, 0, 0, 0, 923, 924, 5, 41, 0, 0, 924, 146, 1, 0, 0, 0, 925, 926, 7, 5, 0, 0, 926, 927, 7, 6, 0, 0, 927, 928, 7, 20, 0, 0, 928, 929, 7, 3, 0, 0, 929, 148, 1, 0, 0, 0, 930, 931, 5, 61, 0, 0, 931, 932, 5, 61, 0, 0, 932, 150, 1, 0, 0, 0, 933, 934, 5, 61, 0, 0, 934, 935, 5, 126, 0, 0, 935, 152, 1, 0, 0, 0, 936, 937, 5, 33, 0, 0, 937, 938, 5, 61, 0, 0, 938, 154, 1, 0, 0, 0, 939, 940, 5, 60, 0, 0, 940, 156, 1, 0, 0, 0, 941, 942, 5, 60, 0, 0, 942, 943, 5, 61, 0, 0, 943, 158, 1, 0, 0, 0, 944, 945, 5, 62, 0, 0, 945, 160, 1, 0, 0, 0, 946, 947, 5, 62, 0, 0, 947, 948, 5, 61, 0, 0, 948, 162, 1, 0, 0, 0, 949, 950, 5, 43, 0, 0, 950, 164, 1, 0, 0, 0, 951, 952, 5, 45, 0, 0, 952, 166, 1, 0, 0, 0, 953, 954, 5, 42, 0, 0, 954, 168, 1, 0, 0, 0, 955, 956, 5, 47, 0, 0, 956, 170, 1, 0, 0, 0, 957, 958, 5, 37, 0, 0, 958, 172, 1, 0, 0, 0, 959, 960, 5, 123, 0, 0, 960, 174, 1, 0, 0, 0, 961, 962, 5, 125, 0, 0, 962, 176, 1, 0, 0, 0, 963, 964, 3, 47, 15, 0, 964, 965, 1, 0, 0, 0, 965, 966, 6, 80, 13, 0, 966, 178, 1, 0, 0, 0, 967, 970, 3, 141, 62, 0, 968, 971, 3, 77, 30, 0, 969, 971, 3, 91, 37, 0, 970, 968, 1, 0, 0, 0, 970, 969, 1, 0, 0, 0, 971, 975, 1, 0, 0, 0, 972, 974, 3, 93, 38, 0, 973, 972, 1, 0, 0, 0, 974, 977, 1, 0, 0, 0, 975, 973, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 985, 1, 0, 0, 0, 977, 975, 1, 0, 0, 0, 978, 980, 3, 141, 62, 0, 979, 981, 3, 75, 29, 0, 980, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 1, 0, 0, 0, 984, 967, 1, 0, 0, 0, 984, 978, 1, 0, 0, 0, 985, 180, 1, 0, 0, 0, 986, 987, 5, 91, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 6, 82, 0, 0, 989, 990, 6, 82, 0, 0, 990, 182, 1, 0, 0, 0, 991, 992, 5, 93, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 6, 83, 12, 0, 994, 995, 6, 83, 12, 0, 995, 184, 1, 0, 0, 0, 996, 1000, 3, 77, 30, 0, 997, 999, 3, 93, 38, 0, 998, 997, 1, 0, 0, 0, 999, 1002, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1013, 1, 0, 0, 0, 1002, 1000, 1, 0, 0, 0, 1003, 1006, 3, 91, 37, 0, 1004, 1006, 3, 85, 34, 0, 1005, 1003, 1, 0, 0, 0, 1005, 1004, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 93, 38, 0, 1008, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1008, 1, 0, 0, 0, 1010, 1011, 1, 0, 0, 0, 1011, 1013, 1, 0, 0, 0, 1012, 996, 1, 0, 0, 0, 1012, 1005, 1, 0, 0, 0, 1013, 186, 1, 0, 0, 0, 1014, 1016, 3, 87, 35, 0, 1015, 1017, 3, 89, 36, 0, 1016, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 1021, 3, 87, 35, 0, 1021, 188, 1, 0, 0, 0, 1022, 1023, 3, 187, 85, 0, 1023, 190, 1, 0, 0, 0, 1024, 1025, 3, 67, 25, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 6, 87, 11, 0, 1027, 192, 1, 0, 0, 0, 1028, 1029, 3, 69, 26, 0, 1029, 1030, 1, 0, 0, 0, 1030, 1031, 6, 88, 11, 0, 1031, 194, 1, 0, 0, 0, 1032, 1033, 3, 71, 27, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 89, 11, 0, 1035, 196, 1, 0, 0, 0, 1036, 1037, 3, 181, 82, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 6, 90, 14, 0, 1039, 1040, 6, 90, 15, 0, 1040, 198, 1, 0, 0, 0, 1041, 1042, 3, 73, 28, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1044, 6, 91, 16, 0, 1044, 1045, 6, 91, 12, 0, 1045, 200, 1, 0, 0, 0, 1046, 1047, 3, 71, 27, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1049, 6, 92, 11, 0, 1049, 202, 1, 0, 0, 0, 1050, 1051, 3, 67, 25, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 6, 93, 11, 0, 1053, 204, 1, 0, 0, 0, 1054, 1055, 3, 69, 26, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 6, 94, 11, 0, 1057, 206, 1, 0, 0, 0, 1058, 1059, 3, 73, 28, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 6, 95, 16, 0, 1061, 1062, 6, 95, 12, 0, 1062, 208, 1, 0, 0, 0, 1063, 1064, 3, 181, 82, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 6, 96, 14, 0, 1066, 210, 1, 0, 0, 0, 1067, 1068, 3, 183, 83, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 6, 97, 17, 0, 1070, 212, 1, 0, 0, 0, 1071, 1072, 3, 111, 47, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 6, 98, 18, 0, 1074, 214, 1, 0, 0, 0, 1075, 1076, 3, 113, 48, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 6, 99, 19, 0, 1078, 216, 1, 0, 0, 0, 1079, 1080, 3, 107, 45, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 100, 20, 0, 1082, 218, 1, 0, 0, 0, 1083, 1084, 7, 16, 0, 0, 1084, 1085, 7, 3, 0, 0, 1085, 1086, 7, 5, 0, 0, 1086, 1087, 7, 12, 0, 0, 1087, 1088, 7, 0, 0, 0, 1088, 1089, 7, 12, 0, 0, 1089, 1090, 7, 5, 0, 0, 1090, 1091, 7, 12, 0, 0, 1091, 220, 1, 0, 0, 0, 1092, 1096, 8, 32, 0, 0, 1093, 1094, 5, 47, 0, 0, 1094, 1096, 8, 33, 0, 0, 1095, 1092, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1096, 222, 1, 0, 0, 0, 1097, 1099, 3, 221, 102, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 224, 1, 0, 0, 0, 1102, 1103, 3, 223, 103, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1105, 6, 104, 21, 0, 1105, 226, 1, 0, 0, 0, 1106, 1107, 3, 95, 39, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 6, 105, 22, 0, 1109, 228, 1, 0, 0, 0, 1110, 1111, 3, 67, 25, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 6, 106, 11, 0, 1113, 230, 1, 0, 0, 0, 1114, 1115, 3, 69, 26, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 6, 107, 11, 0, 1117, 232, 1, 0, 0, 0, 1118, 1119, 3, 71, 27, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 6, 108, 11, 0, 1121, 234, 1, 0, 0, 0, 1122, 1123, 3, 73, 28, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 6, 109, 16, 0, 1125, 1126, 6, 109, 12, 0, 1126, 236, 1, 0, 0, 0, 1127, 1128, 3, 117, 50, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 6, 110, 23, 0, 1130, 238, 1, 0, 0, 0, 1131, 1132, 3, 113, 48, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 6, 111, 19, 0, 1134, 240, 1, 0, 0, 0, 1135, 1136, 3, 141, 62, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 6, 112, 24, 0, 1138, 242, 1, 0, 0, 0, 1139, 1140, 3, 179, 81, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 6, 113, 25, 0, 1142, 244, 1, 0, 0, 0, 1143, 1148, 3, 77, 30, 0, 1144, 1148, 3, 75, 29, 0, 1145, 1148, 3, 91, 37, 0, 1146, 1148, 3, 167, 75, 0, 1147, 1143, 1, 0, 0, 0, 1147, 1144, 1, 0, 0, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 246, 1, 0, 0, 0, 1149, 1152, 3, 77, 30, 0, 1150, 1152, 3, 167, 75, 0, 1151, 1149, 1, 0, 0, 0, 1151, 1150, 1, 0, 0, 0, 1152, 1156, 1, 0, 0, 0, 1153, 1155, 3, 245, 114, 0, 1154, 1153, 1, 0, 0, 0, 1155, 1158, 1, 0, 0, 0, 1156, 1154, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1169, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 1162, 3, 91, 37, 0, 1160, 1162, 3, 85, 34, 0, 1161, 1159, 1, 0, 0, 0, 1161, 1160, 1, 0, 0, 0, 1162, 1164, 1, 0, 0, 0, 1163, 1165, 3, 245, 114, 0, 1164, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1151, 1, 0, 0, 0, 1168, 1161, 1, 0, 0, 0, 1169, 248, 1, 0, 0, 0, 1170, 1173, 3, 247, 115, 0, 1171, 1173, 3, 187, 85, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 250, 1, 0, 0, 0, 1176, 1177, 3, 67, 25, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 6, 117, 11, 0, 1179, 252, 1, 0, 0, 0, 1180, 1181, 3, 69, 26, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 6, 118, 11, 0, 1183, 254, 1, 0, 0, 0, 1184, 1185, 3, 71, 27, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 6, 119, 11, 0, 1187, 256, 1, 0, 0, 0, 1188, 1189, 3, 73, 28, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1191, 6, 120, 16, 0, 1191, 1192, 6, 120, 12, 0, 1192, 258, 1, 0, 0, 0, 1193, 1194, 3, 107, 45, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 6, 121, 20, 0, 1196, 260, 1, 0, 0, 0, 1197, 1198, 3, 113, 48, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 6, 122, 19, 0, 1200, 262, 1, 0, 0, 0, 1201, 1202, 3, 117, 50, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 6, 123, 23, 0, 1204, 264, 1, 0, 0, 0, 1205, 1206, 3, 141, 62, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 6, 124, 24, 0, 1208, 266, 1, 0, 0, 0, 1209, 1210, 3, 179, 81, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 6, 125, 25, 0, 1212, 268, 1, 0, 0, 0, 1213, 1214, 7, 12, 0, 0, 1214, 1215, 7, 2, 0, 0, 1215, 270, 1, 0, 0, 0, 1216, 1217, 3, 249, 116, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1219, 6, 127, 26, 0, 1219, 272, 1, 0, 0, 0, 1220, 1221, 3, 67, 25, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 6, 128, 11, 0, 1223, 274, 1, 0, 0, 0, 1224, 1225, 3, 69, 26, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 6, 129, 11, 0, 1227, 276, 1, 0, 0, 0, 1228, 1229, 3, 71, 27, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 6, 130, 11, 0, 1231, 278, 1, 0, 0, 0, 1232, 1233, 3, 73, 28, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 6, 131, 16, 0, 1235, 1236, 6, 131, 12, 0, 1236, 280, 1, 0, 0, 0, 1237, 1238, 3, 181, 82, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1240, 6, 132, 14, 0, 1240, 1241, 6, 132, 27, 0, 1241, 282, 1, 0, 0, 0, 1242, 1243, 7, 7, 0, 0, 1243, 1244, 7, 9, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 6, 133, 28, 0, 1246, 284, 1, 0, 0, 0, 1247, 1248, 7, 19, 0, 0, 1248, 1249, 7, 1, 0, 0, 1249, 1250, 7, 5, 0, 0, 1250, 1251, 7, 10, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 6, 134, 28, 0, 1253, 286, 1, 0, 0, 0, 1254, 1255, 8, 34, 0, 0, 1255, 288, 1, 0, 0, 0, 1256, 1258, 3, 287, 135, 0, 1257, 1256, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 3, 111, 47, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1257, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, 287, 135, 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, 290, 1, 0, 0, 0, 1270, 1271, 3, 289, 136, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 6, 137, 29, 0, 1273, 292, 1, 0, 0, 0, 1274, 1275, 3, 67, 25, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 6, 138, 11, 0, 1277, 294, 1, 0, 0, 0, 1278, 1279, 3, 69, 26, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 6, 139, 11, 0, 1281, 296, 1, 0, 0, 0, 1282, 1283, 3, 71, 27, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1285, 6, 140, 11, 0, 1285, 298, 1, 0, 0, 0, 1286, 1287, 3, 73, 28, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1289, 6, 141, 16, 0, 1289, 1290, 6, 141, 12, 0, 1290, 1291, 6, 141, 12, 0, 1291, 300, 1, 0, 0, 0, 1292, 1293, 3, 107, 45, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 142, 20, 0, 1295, 302, 1, 0, 0, 0, 1296, 1297, 3, 113, 48, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 6, 143, 19, 0, 1299, 304, 1, 0, 0, 0, 1300, 1301, 3, 117, 50, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 6, 144, 23, 0, 1303, 306, 1, 0, 0, 0, 1304, 1305, 3, 285, 134, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 6, 145, 30, 0, 1307, 308, 1, 0, 0, 0, 1308, 1309, 3, 249, 116, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 6, 146, 26, 0, 1311, 310, 1, 0, 0, 0, 1312, 1313, 3, 189, 86, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 6, 147, 31, 0, 1315, 312, 1, 0, 0, 0, 1316, 1317, 3, 141, 62, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 6, 148, 24, 0, 1319, 314, 1, 0, 0, 0, 1320, 1321, 3, 179, 81, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 6, 149, 25, 0, 1323, 316, 1, 0, 0, 0, 1324, 1325, 3, 67, 25, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 6, 150, 11, 0, 1327, 318, 1, 0, 0, 0, 1328, 1329, 3, 69, 26, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1331, 6, 151, 11, 0, 1331, 320, 1, 0, 0, 0, 1332, 1333, 3, 71, 27, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1335, 6, 152, 11, 0, 1335, 322, 1, 0, 0, 0, 1336, 1337, 3, 73, 28, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 6, 153, 16, 0, 1339, 1340, 6, 153, 12, 0, 1340, 324, 1, 0, 0, 0, 1341, 1342, 3, 117, 50, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 6, 154, 23, 0, 1344, 326, 1, 0, 0, 0, 1345, 1346, 3, 141, 62, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 6, 155, 24, 0, 1348, 328, 1, 0, 0, 0, 1349, 1350, 3, 179, 81, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1352, 6, 156, 25, 0, 1352, 330, 1, 0, 0, 0, 1353, 1354, 3, 189, 86, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 6, 157, 31, 0, 1356, 332, 1, 0, 0, 0, 1357, 1358, 3, 185, 84, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 6, 158, 32, 0, 1360, 334, 1, 0, 0, 0, 1361, 1362, 3, 67, 25, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 6, 159, 11, 0, 1364, 336, 1, 0, 0, 0, 1365, 1366, 3, 69, 26, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 6, 160, 11, 0, 1368, 338, 1, 0, 0, 0, 1369, 1370, 3, 71, 27, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 6, 161, 11, 0, 1372, 340, 1, 0, 0, 0, 1373, 1374, 3, 73, 28, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 162, 16, 0, 1376, 1377, 6, 162, 12, 0, 1377, 342, 1, 0, 0, 0, 1378, 1379, 7, 1, 0, 0, 1379, 1380, 7, 9, 0, 0, 1380, 1381, 7, 15, 0, 0, 1381, 1382, 7, 7, 0, 0, 1382, 344, 1, 0, 0, 0, 1383, 1384, 3, 67, 25, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 6, 164, 11, 0, 1386, 346, 1, 0, 0, 0, 1387, 1388, 3, 69, 26, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 6, 165, 11, 0, 1390, 348, 1, 0, 0, 0, 1391, 1392, 3, 71, 27, 0, 1392, 1393, 1, 0, 0, 0, 1393, 1394, 6, 166, 11, 0, 1394, 350, 1, 0, 0, 0, 1395, 1396, 3, 183, 83, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 6, 167, 17, 0, 1398, 1399, 6, 167, 12, 0, 1399, 352, 1, 0, 0, 0, 1400, 1401, 3, 111, 47, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 168, 18, 0, 1403, 354, 1, 0, 0, 0, 1404, 1410, 3, 85, 34, 0, 1405, 1410, 3, 75, 29, 0, 1406, 1410, 3, 117, 50, 0, 1407, 1410, 3, 77, 30, 0, 1408, 1410, 3, 91, 37, 0, 1409, 1404, 1, 0, 0, 0, 1409, 1405, 1, 0, 0, 0, 1409, 1406, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1408, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 356, 1, 0, 0, 0, 1413, 1414, 3, 67, 25, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1416, 6, 170, 11, 0, 1416, 358, 1, 0, 0, 0, 1417, 1418, 3, 69, 26, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 6, 171, 11, 0, 1420, 360, 1, 0, 0, 0, 1421, 1422, 3, 71, 27, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 172, 11, 0, 1424, 362, 1, 0, 0, 0, 1425, 1426, 3, 73, 28, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 6, 173, 16, 0, 1428, 1429, 6, 173, 12, 0, 1429, 364, 1, 0, 0, 0, 1430, 1431, 3, 111, 47, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 6, 174, 18, 0, 1433, 366, 1, 0, 0, 0, 1434, 1435, 3, 113, 48, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 6, 175, 19, 0, 1437, 368, 1, 0, 0, 0, 1438, 1439, 3, 117, 50, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 176, 23, 0, 1441, 370, 1, 0, 0, 0, 1442, 1443, 3, 283, 133, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 6, 177, 33, 0, 1445, 1446, 6, 177, 34, 0, 1446, 372, 1, 0, 0, 0, 1447, 1448, 3, 223, 103, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 6, 178, 21, 0, 1450, 374, 1, 0, 0, 0, 1451, 1452, 3, 95, 39, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 6, 179, 22, 0, 1454, 376, 1, 0, 0, 0, 1455, 1456, 3, 67, 25, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 6, 180, 11, 0, 1458, 378, 1, 0, 0, 0, 1459, 1460, 3, 69, 26, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 6, 181, 11, 0, 1462, 380, 1, 0, 0, 0, 1463, 1464, 3, 71, 27, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 6, 182, 11, 0, 1466, 382, 1, 0, 0, 0, 1467, 1468, 3, 73, 28, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 183, 16, 0, 1470, 1471, 6, 183, 12, 0, 1471, 1472, 6, 183, 12, 0, 1472, 384, 1, 0, 0, 0, 1473, 1474, 3, 113, 48, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 6, 184, 19, 0, 1476, 386, 1, 0, 0, 0, 1477, 1478, 3, 117, 50, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 185, 23, 0, 1480, 388, 1, 0, 0, 0, 1481, 1482, 3, 249, 116, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 186, 26, 0, 1484, 390, 1, 0, 0, 0, 1485, 1486, 3, 67, 25, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 187, 11, 0, 1488, 392, 1, 0, 0, 0, 1489, 1490, 3, 69, 26, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 188, 11, 0, 1492, 394, 1, 0, 0, 0, 1493, 1494, 3, 71, 27, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 189, 11, 0, 1496, 396, 1, 0, 0, 0, 1497, 1498, 3, 73, 28, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 6, 190, 16, 0, 1500, 1501, 6, 190, 12, 0, 1501, 398, 1, 0, 0, 0, 1502, 1503, 7, 35, 0, 0, 1503, 1504, 7, 7, 0, 0, 1504, 1505, 7, 1, 0, 0, 1505, 1506, 7, 9, 0, 0, 1506, 400, 1, 0, 0, 0, 1507, 1508, 3, 269, 126, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 6, 192, 35, 0, 1510, 402, 1, 0, 0, 0, 1511, 1512, 3, 283, 133, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 6, 193, 33, 0, 1514, 1515, 6, 193, 12, 0, 1515, 1516, 6, 193, 0, 0, 1516, 404, 1, 0, 0, 0, 1517, 1518, 7, 20, 0, 0, 1518, 1519, 7, 2, 0, 0, 1519, 1520, 7, 1, 0, 0, 1520, 1521, 7, 9, 0, 0, 1521, 1522, 7, 17, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 6, 194, 12, 0, 1524, 1525, 6, 194, 0, 0, 1525, 406, 1, 0, 0, 0, 1526, 1527, 3, 223, 103, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 6, 195, 21, 0, 1529, 408, 1, 0, 0, 0, 1530, 1531, 3, 95, 39, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 6, 196, 22, 0, 1533, 410, 1, 0, 0, 0, 1534, 1535, 3, 111, 47, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 197, 18, 0, 1537, 412, 1, 0, 0, 0, 1538, 1539, 3, 185, 84, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 6, 198, 32, 0, 1541, 414, 1, 0, 0, 0, 1542, 1543, 3, 189, 86, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 6, 199, 31, 0, 1545, 416, 1, 0, 0, 0, 1546, 1547, 3, 67, 25, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 6, 200, 11, 0, 1549, 418, 1, 0, 0, 0, 1550, 1551, 3, 69, 26, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 6, 201, 11, 0, 1553, 420, 1, 0, 0, 0, 1554, 1555, 3, 71, 27, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 6, 202, 11, 0, 1557, 422, 1, 0, 0, 0, 1558, 1559, 3, 73, 28, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 6, 203, 16, 0, 1561, 1562, 6, 203, 12, 0, 1562, 424, 1, 0, 0, 0, 1563, 1564, 3, 223, 103, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 204, 21, 0, 1566, 1567, 6, 204, 12, 0, 1567, 1568, 6, 204, 36, 0, 1568, 426, 1, 0, 0, 0, 1569, 1570, 3, 95, 39, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 205, 22, 0, 1572, 1573, 6, 205, 12, 0, 1573, 1574, 6, 205, 36, 0, 1574, 428, 1, 0, 0, 0, 1575, 1576, 3, 67, 25, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 6, 206, 11, 0, 1578, 430, 1, 0, 0, 0, 1579, 1580, 3, 69, 26, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 6, 207, 11, 0, 1582, 432, 1, 0, 0, 0, 1583, 1584, 3, 71, 27, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 6, 208, 11, 0, 1586, 434, 1, 0, 0, 0, 1587, 1588, 3, 111, 47, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1590, 6, 209, 18, 0, 1590, 1591, 6, 209, 12, 0, 1591, 1592, 6, 209, 10, 0, 1592, 436, 1, 0, 0, 0, 1593, 1594, 3, 113, 48, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1596, 6, 210, 19, 0, 1596, 1597, 6, 210, 12, 0, 1597, 1598, 6, 210, 10, 0, 1598, 438, 1, 0, 0, 0, 1599, 1600, 3, 67, 25, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 6, 211, 11, 0, 1602, 440, 1, 0, 0, 0, 1603, 1604, 3, 69, 26, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1606, 6, 212, 11, 0, 1606, 442, 1, 0, 0, 0, 1607, 1608, 3, 71, 27, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1610, 6, 213, 11, 0, 1610, 444, 1, 0, 0, 0, 1611, 1612, 3, 189, 86, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 6, 214, 12, 0, 1614, 1615, 6, 214, 0, 0, 1615, 1616, 6, 214, 31, 0, 1616, 446, 1, 0, 0, 0, 1617, 1618, 3, 185, 84, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 6, 215, 12, 0, 1620, 1621, 6, 215, 0, 0, 1621, 1622, 6, 215, 32, 0, 1622, 448, 1, 0, 0, 0, 1623, 1624, 3, 101, 42, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 6, 216, 12, 0, 1626, 1627, 6, 216, 0, 0, 1627, 1628, 6, 216, 37, 0, 1628, 450, 1, 0, 0, 0, 1629, 1630, 3, 73, 28, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 6, 217, 16, 0, 1632, 1633, 6, 217, 12, 0, 1633, 452, 1, 0, 0, 0, 1634, 1635, 3, 73, 28, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 6, 218, 16, 0, 1637, 1638, 6, 218, 12, 0, 1638, 454, 1, 0, 0, 0, 1639, 1640, 3, 185, 84, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 219, 32, 0, 1642, 456, 1, 0, 0, 0, 1643, 1644, 3, 71, 27, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 220, 11, 0, 1646, 458, 1, 0, 0, 0, 1647, 1648, 3, 67, 25, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1650, 6, 221, 11, 0, 1650, 460, 1, 0, 0, 0, 1651, 1652, 3, 69, 26, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 222, 11, 0, 1654, 462, 1, 0, 0, 0, 67, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 679, 689, 693, 696, 705, 707, 718, 737, 742, 751, 758, 763, 765, 776, 784, 787, 789, 794, 799, 805, 812, 817, 823, 826, 834, 838, 970, 975, 982, 984, 1000, 1005, 1010, 1012, 1018, 1095, 1100, 1147, 1151, 1156, 1161, 1166, 1168, 1172, 1174, 1259, 1263, 1268, 1409, 1411, 38, 5, 1, 0, 5, 4, 0, 5, 6, 0, 5, 2, 0, 5, 3, 0, 5, 8, 0, 5, 5, 0, 5, 9, 0, 5, 13, 0, 5, 11, 0, 5, 14, 0, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 72, 0, 5, 0, 0, 7, 29, 0, 7, 73, 0, 7, 38, 0, 7, 39, 0, 7, 36, 0, 7, 83, 0, 7, 30, 0, 7, 41, 0, 7, 53, 0, 7, 71, 0, 7, 87, 0, 5, 10, 0, 5, 7, 0, 7, 97, 0, 7, 96, 0, 7, 75, 0, 7, 74, 0, 7, 95, 0, 5, 12, 0, 7, 91, 0, 5, 15, 0, 7, 33, 0] \ No newline at end of file +[4, 0, 135, 1709, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 480, 8, 0, 10, 0, 12, 0, 483, 9, 0, 1, 0, 3, 0, 486, 8, 0, 1, 0, 3, 0, 489, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 498, 8, 1, 10, 1, 12, 1, 501, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 509, 8, 2, 11, 2, 12, 2, 510, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 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, 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, 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, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 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, 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, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 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, 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, 19, 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, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 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, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 4, 28, 745, 8, 28, 11, 28, 12, 28, 746, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 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, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 4, 44, 817, 8, 44, 11, 44, 12, 44, 818, 1, 44, 1, 44, 3, 44, 823, 8, 44, 1, 44, 4, 44, 826, 8, 44, 11, 44, 12, 44, 827, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 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, 63, 1, 63, 1, 63, 1, 63, 1, 63, 4, 63, 910, 8, 63, 11, 63, 12, 63, 911, 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, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 963, 8, 77, 1, 77, 4, 77, 966, 8, 77, 11, 77, 12, 77, 967, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 977, 8, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 3, 82, 984, 8, 82, 1, 83, 1, 83, 1, 83, 5, 83, 989, 8, 83, 10, 83, 12, 83, 992, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1000, 8, 83, 10, 83, 12, 83, 1003, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1010, 8, 83, 1, 83, 3, 83, 1013, 8, 83, 3, 83, 1015, 8, 83, 1, 84, 4, 84, 1018, 8, 84, 11, 84, 12, 84, 1019, 1, 85, 4, 85, 1023, 8, 85, 11, 85, 12, 85, 1024, 1, 85, 1, 85, 5, 85, 1029, 8, 85, 10, 85, 12, 85, 1032, 9, 85, 1, 85, 1, 85, 4, 85, 1036, 8, 85, 11, 85, 12, 85, 1037, 1, 85, 4, 85, 1041, 8, 85, 11, 85, 12, 85, 1042, 1, 85, 1, 85, 5, 85, 1047, 8, 85, 10, 85, 12, 85, 1050, 9, 85, 3, 85, 1052, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 4, 85, 1058, 8, 85, 11, 85, 12, 85, 1059, 1, 85, 1, 85, 3, 85, 1064, 8, 85, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 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, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 3, 123, 1192, 8, 123, 1, 123, 5, 123, 1195, 8, 123, 10, 123, 12, 123, 1198, 9, 123, 1, 123, 1, 123, 4, 123, 1202, 8, 123, 11, 123, 12, 123, 1203, 3, 123, 1206, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 5, 128, 1230, 8, 128, 10, 128, 12, 128, 1233, 9, 128, 1, 128, 1, 128, 3, 128, 1237, 8, 128, 1, 128, 4, 128, 1240, 8, 128, 11, 128, 12, 128, 1241, 3, 128, 1244, 8, 128, 1, 129, 1, 129, 4, 129, 1248, 8, 129, 11, 129, 12, 129, 1249, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 3, 141, 1305, 8, 141, 1, 142, 4, 142, 1308, 8, 142, 11, 142, 12, 142, 1309, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 1603, 8, 207, 1, 208, 1, 208, 3, 208, 1607, 8, 208, 1, 208, 5, 208, 1610, 8, 208, 10, 208, 12, 208, 1613, 9, 208, 1, 208, 1, 208, 3, 208, 1617, 8, 208, 1, 208, 4, 208, 1620, 8, 208, 11, 208, 12, 208, 1621, 3, 208, 1624, 8, 208, 1, 209, 1, 209, 4, 209, 1628, 8, 209, 11, 209, 12, 209, 1629, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 2, 499, 1001, 0, 229, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 0, 77, 0, 79, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 30, 91, 31, 93, 32, 95, 0, 97, 0, 99, 33, 101, 34, 103, 0, 105, 35, 107, 0, 109, 36, 111, 37, 113, 38, 115, 0, 117, 0, 119, 0, 121, 0, 123, 0, 125, 0, 127, 0, 129, 0, 131, 0, 133, 39, 135, 40, 137, 41, 139, 0, 141, 0, 143, 42, 145, 43, 147, 44, 149, 45, 151, 0, 153, 0, 155, 46, 157, 47, 159, 48, 161, 49, 163, 0, 165, 0, 167, 0, 169, 0, 171, 0, 173, 0, 175, 0, 177, 0, 179, 0, 181, 0, 183, 50, 185, 51, 187, 52, 189, 53, 191, 54, 193, 55, 195, 56, 197, 57, 199, 58, 201, 59, 203, 60, 205, 61, 207, 62, 209, 63, 211, 64, 213, 65, 215, 66, 217, 67, 219, 68, 221, 69, 223, 70, 225, 71, 227, 72, 229, 73, 231, 74, 233, 75, 235, 76, 237, 77, 239, 78, 241, 79, 243, 80, 245, 81, 247, 82, 249, 83, 251, 84, 253, 85, 255, 86, 257, 87, 259, 88, 261, 0, 263, 89, 265, 90, 267, 91, 269, 92, 271, 93, 273, 94, 275, 0, 277, 95, 279, 96, 281, 97, 283, 98, 285, 0, 287, 0, 289, 0, 291, 0, 293, 0, 295, 0, 297, 99, 299, 0, 301, 100, 303, 0, 305, 0, 307, 101, 309, 102, 311, 103, 313, 0, 315, 104, 317, 0, 319, 0, 321, 105, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 106, 335, 107, 337, 108, 339, 0, 341, 0, 343, 0, 345, 0, 347, 0, 349, 0, 351, 0, 353, 109, 355, 110, 357, 111, 359, 0, 361, 0, 363, 0, 365, 0, 367, 112, 369, 113, 371, 114, 373, 0, 375, 0, 377, 0, 379, 115, 381, 116, 383, 117, 385, 0, 387, 0, 389, 118, 391, 119, 393, 120, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 121, 417, 122, 419, 123, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 124, 437, 125, 439, 126, 441, 127, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 128, 457, 0, 459, 129, 461, 130, 463, 131, 465, 0, 467, 132, 469, 133, 471, 134, 473, 135, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2, 0, 67, 67, 99, 99, 2, 0, 72, 72, 104, 104, 2, 0, 65, 65, 97, 97, 2, 0, 78, 78, 110, 110, 2, 0, 71, 71, 103, 103, 2, 0, 69, 69, 101, 101, 2, 0, 80, 80, 112, 112, 2, 0, 79, 79, 111, 111, 2, 0, 73, 73, 105, 105, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 88, 88, 120, 120, 2, 0, 76, 76, 108, 108, 2, 0, 68, 68, 100, 100, 2, 0, 83, 83, 115, 115, 2, 0, 86, 86, 118, 118, 2, 0, 75, 75, 107, 107, 2, 0, 77, 77, 109, 109, 2, 0, 87, 87, 119, 119, 2, 0, 70, 70, 102, 102, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 2, 0, 74, 74, 106, 106, 1735, 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, 1, 75, 1, 0, 0, 0, 1, 77, 1, 0, 0, 0, 1, 79, 1, 0, 0, 0, 1, 81, 1, 0, 0, 0, 1, 83, 1, 0, 0, 0, 1, 85, 1, 0, 0, 0, 1, 87, 1, 0, 0, 0, 1, 89, 1, 0, 0, 0, 1, 91, 1, 0, 0, 0, 1, 93, 1, 0, 0, 0, 2, 95, 1, 0, 0, 0, 2, 97, 1, 0, 0, 0, 2, 99, 1, 0, 0, 0, 2, 101, 1, 0, 0, 0, 2, 105, 1, 0, 0, 0, 2, 107, 1, 0, 0, 0, 2, 109, 1, 0, 0, 0, 2, 111, 1, 0, 0, 0, 2, 113, 1, 0, 0, 0, 3, 115, 1, 0, 0, 0, 3, 117, 1, 0, 0, 0, 3, 119, 1, 0, 0, 0, 3, 121, 1, 0, 0, 0, 3, 123, 1, 0, 0, 0, 3, 125, 1, 0, 0, 0, 3, 127, 1, 0, 0, 0, 3, 129, 1, 0, 0, 0, 3, 131, 1, 0, 0, 0, 3, 133, 1, 0, 0, 0, 3, 135, 1, 0, 0, 0, 3, 137, 1, 0, 0, 0, 4, 139, 1, 0, 0, 0, 4, 141, 1, 0, 0, 0, 4, 143, 1, 0, 0, 0, 4, 145, 1, 0, 0, 0, 4, 147, 1, 0, 0, 0, 4, 149, 1, 0, 0, 0, 5, 151, 1, 0, 0, 0, 5, 153, 1, 0, 0, 0, 5, 155, 1, 0, 0, 0, 5, 157, 1, 0, 0, 0, 5, 159, 1, 0, 0, 0, 6, 161, 1, 0, 0, 0, 6, 183, 1, 0, 0, 0, 6, 185, 1, 0, 0, 0, 6, 187, 1, 0, 0, 0, 6, 189, 1, 0, 0, 0, 6, 191, 1, 0, 0, 0, 6, 193, 1, 0, 0, 0, 6, 195, 1, 0, 0, 0, 6, 197, 1, 0, 0, 0, 6, 199, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 6, 203, 1, 0, 0, 0, 6, 205, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 6, 209, 1, 0, 0, 0, 6, 211, 1, 0, 0, 0, 6, 213, 1, 0, 0, 0, 6, 215, 1, 0, 0, 0, 6, 217, 1, 0, 0, 0, 6, 219, 1, 0, 0, 0, 6, 221, 1, 0, 0, 0, 6, 223, 1, 0, 0, 0, 6, 225, 1, 0, 0, 0, 6, 227, 1, 0, 0, 0, 6, 229, 1, 0, 0, 0, 6, 231, 1, 0, 0, 0, 6, 233, 1, 0, 0, 0, 6, 235, 1, 0, 0, 0, 6, 237, 1, 0, 0, 0, 6, 239, 1, 0, 0, 0, 6, 241, 1, 0, 0, 0, 6, 243, 1, 0, 0, 0, 6, 245, 1, 0, 0, 0, 6, 247, 1, 0, 0, 0, 6, 249, 1, 0, 0, 0, 6, 251, 1, 0, 0, 0, 6, 253, 1, 0, 0, 0, 6, 255, 1, 0, 0, 0, 6, 257, 1, 0, 0, 0, 6, 259, 1, 0, 0, 0, 6, 261, 1, 0, 0, 0, 6, 263, 1, 0, 0, 0, 6, 265, 1, 0, 0, 0, 6, 267, 1, 0, 0, 0, 6, 269, 1, 0, 0, 0, 6, 271, 1, 0, 0, 0, 6, 273, 1, 0, 0, 0, 6, 277, 1, 0, 0, 0, 6, 279, 1, 0, 0, 0, 6, 281, 1, 0, 0, 0, 6, 283, 1, 0, 0, 0, 7, 285, 1, 0, 0, 0, 7, 287, 1, 0, 0, 0, 7, 289, 1, 0, 0, 0, 7, 291, 1, 0, 0, 0, 7, 293, 1, 0, 0, 0, 7, 295, 1, 0, 0, 0, 7, 297, 1, 0, 0, 0, 7, 301, 1, 0, 0, 0, 7, 303, 1, 0, 0, 0, 7, 305, 1, 0, 0, 0, 7, 307, 1, 0, 0, 0, 7, 309, 1, 0, 0, 0, 7, 311, 1, 0, 0, 0, 8, 313, 1, 0, 0, 0, 8, 315, 1, 0, 0, 0, 8, 317, 1, 0, 0, 0, 8, 319, 1, 0, 0, 0, 8, 321, 1, 0, 0, 0, 8, 323, 1, 0, 0, 0, 8, 325, 1, 0, 0, 0, 8, 327, 1, 0, 0, 0, 8, 329, 1, 0, 0, 0, 8, 331, 1, 0, 0, 0, 8, 333, 1, 0, 0, 0, 8, 335, 1, 0, 0, 0, 8, 337, 1, 0, 0, 0, 9, 339, 1, 0, 0, 0, 9, 341, 1, 0, 0, 0, 9, 343, 1, 0, 0, 0, 9, 345, 1, 0, 0, 0, 9, 347, 1, 0, 0, 0, 9, 349, 1, 0, 0, 0, 9, 351, 1, 0, 0, 0, 9, 353, 1, 0, 0, 0, 9, 355, 1, 0, 0, 0, 9, 357, 1, 0, 0, 0, 10, 359, 1, 0, 0, 0, 10, 361, 1, 0, 0, 0, 10, 363, 1, 0, 0, 0, 10, 365, 1, 0, 0, 0, 10, 367, 1, 0, 0, 0, 10, 369, 1, 0, 0, 0, 10, 371, 1, 0, 0, 0, 11, 373, 1, 0, 0, 0, 11, 375, 1, 0, 0, 0, 11, 377, 1, 0, 0, 0, 11, 379, 1, 0, 0, 0, 11, 381, 1, 0, 0, 0, 11, 383, 1, 0, 0, 0, 12, 385, 1, 0, 0, 0, 12, 387, 1, 0, 0, 0, 12, 389, 1, 0, 0, 0, 12, 391, 1, 0, 0, 0, 12, 393, 1, 0, 0, 0, 12, 395, 1, 0, 0, 0, 12, 397, 1, 0, 0, 0, 12, 399, 1, 0, 0, 0, 12, 401, 1, 0, 0, 0, 13, 403, 1, 0, 0, 0, 13, 405, 1, 0, 0, 0, 13, 407, 1, 0, 0, 0, 13, 409, 1, 0, 0, 0, 13, 411, 1, 0, 0, 0, 13, 413, 1, 0, 0, 0, 13, 415, 1, 0, 0, 0, 13, 417, 1, 0, 0, 0, 13, 419, 1, 0, 0, 0, 14, 421, 1, 0, 0, 0, 14, 423, 1, 0, 0, 0, 14, 425, 1, 0, 0, 0, 14, 427, 1, 0, 0, 0, 14, 429, 1, 0, 0, 0, 14, 435, 1, 0, 0, 0, 14, 437, 1, 0, 0, 0, 14, 439, 1, 0, 0, 0, 14, 441, 1, 0, 0, 0, 15, 443, 1, 0, 0, 0, 15, 445, 1, 0, 0, 0, 15, 447, 1, 0, 0, 0, 15, 449, 1, 0, 0, 0, 15, 451, 1, 0, 0, 0, 15, 453, 1, 0, 0, 0, 15, 455, 1, 0, 0, 0, 15, 457, 1, 0, 0, 0, 15, 459, 1, 0, 0, 0, 15, 461, 1, 0, 0, 0, 15, 463, 1, 0, 0, 0, 16, 465, 1, 0, 0, 0, 16, 467, 1, 0, 0, 0, 16, 469, 1, 0, 0, 0, 16, 471, 1, 0, 0, 0, 16, 473, 1, 0, 0, 0, 17, 475, 1, 0, 0, 0, 19, 492, 1, 0, 0, 0, 21, 508, 1, 0, 0, 0, 23, 514, 1, 0, 0, 0, 25, 530, 1, 0, 0, 0, 27, 539, 1, 0, 0, 0, 29, 549, 1, 0, 0, 0, 31, 559, 1, 0, 0, 0, 33, 566, 1, 0, 0, 0, 35, 573, 1, 0, 0, 0, 37, 581, 1, 0, 0, 0, 39, 587, 1, 0, 0, 0, 41, 594, 1, 0, 0, 0, 43, 602, 1, 0, 0, 0, 45, 610, 1, 0, 0, 0, 47, 625, 1, 0, 0, 0, 49, 632, 1, 0, 0, 0, 51, 641, 1, 0, 0, 0, 53, 649, 1, 0, 0, 0, 55, 657, 1, 0, 0, 0, 57, 666, 1, 0, 0, 0, 59, 678, 1, 0, 0, 0, 61, 689, 1, 0, 0, 0, 63, 701, 1, 0, 0, 0, 65, 708, 1, 0, 0, 0, 67, 715, 1, 0, 0, 0, 69, 727, 1, 0, 0, 0, 71, 736, 1, 0, 0, 0, 73, 744, 1, 0, 0, 0, 75, 750, 1, 0, 0, 0, 77, 755, 1, 0, 0, 0, 79, 759, 1, 0, 0, 0, 81, 763, 1, 0, 0, 0, 83, 767, 1, 0, 0, 0, 85, 771, 1, 0, 0, 0, 87, 775, 1, 0, 0, 0, 89, 779, 1, 0, 0, 0, 91, 783, 1, 0, 0, 0, 93, 787, 1, 0, 0, 0, 95, 791, 1, 0, 0, 0, 97, 796, 1, 0, 0, 0, 99, 801, 1, 0, 0, 0, 101, 806, 1, 0, 0, 0, 103, 813, 1, 0, 0, 0, 105, 822, 1, 0, 0, 0, 107, 829, 1, 0, 0, 0, 109, 833, 1, 0, 0, 0, 111, 837, 1, 0, 0, 0, 113, 841, 1, 0, 0, 0, 115, 845, 1, 0, 0, 0, 117, 851, 1, 0, 0, 0, 119, 855, 1, 0, 0, 0, 121, 859, 1, 0, 0, 0, 123, 863, 1, 0, 0, 0, 125, 867, 1, 0, 0, 0, 127, 871, 1, 0, 0, 0, 129, 875, 1, 0, 0, 0, 131, 879, 1, 0, 0, 0, 133, 883, 1, 0, 0, 0, 135, 887, 1, 0, 0, 0, 137, 891, 1, 0, 0, 0, 139, 895, 1, 0, 0, 0, 141, 900, 1, 0, 0, 0, 143, 909, 1, 0, 0, 0, 145, 913, 1, 0, 0, 0, 147, 917, 1, 0, 0, 0, 149, 921, 1, 0, 0, 0, 151, 925, 1, 0, 0, 0, 153, 930, 1, 0, 0, 0, 155, 935, 1, 0, 0, 0, 157, 939, 1, 0, 0, 0, 159, 943, 1, 0, 0, 0, 161, 947, 1, 0, 0, 0, 163, 951, 1, 0, 0, 0, 165, 953, 1, 0, 0, 0, 167, 955, 1, 0, 0, 0, 169, 958, 1, 0, 0, 0, 171, 960, 1, 0, 0, 0, 173, 969, 1, 0, 0, 0, 175, 971, 1, 0, 0, 0, 177, 976, 1, 0, 0, 0, 179, 978, 1, 0, 0, 0, 181, 983, 1, 0, 0, 0, 183, 1014, 1, 0, 0, 0, 185, 1017, 1, 0, 0, 0, 187, 1063, 1, 0, 0, 0, 189, 1065, 1, 0, 0, 0, 191, 1068, 1, 0, 0, 0, 193, 1072, 1, 0, 0, 0, 195, 1076, 1, 0, 0, 0, 197, 1078, 1, 0, 0, 0, 199, 1081, 1, 0, 0, 0, 201, 1083, 1, 0, 0, 0, 203, 1085, 1, 0, 0, 0, 205, 1090, 1, 0, 0, 0, 207, 1092, 1, 0, 0, 0, 209, 1098, 1, 0, 0, 0, 211, 1104, 1, 0, 0, 0, 213, 1107, 1, 0, 0, 0, 215, 1110, 1, 0, 0, 0, 217, 1115, 1, 0, 0, 0, 219, 1120, 1, 0, 0, 0, 221, 1124, 1, 0, 0, 0, 223, 1129, 1, 0, 0, 0, 225, 1135, 1, 0, 0, 0, 227, 1138, 1, 0, 0, 0, 229, 1140, 1, 0, 0, 0, 231, 1146, 1, 0, 0, 0, 233, 1151, 1, 0, 0, 0, 235, 1154, 1, 0, 0, 0, 237, 1157, 1, 0, 0, 0, 239, 1160, 1, 0, 0, 0, 241, 1162, 1, 0, 0, 0, 243, 1165, 1, 0, 0, 0, 245, 1167, 1, 0, 0, 0, 247, 1170, 1, 0, 0, 0, 249, 1172, 1, 0, 0, 0, 251, 1174, 1, 0, 0, 0, 253, 1176, 1, 0, 0, 0, 255, 1178, 1, 0, 0, 0, 257, 1180, 1, 0, 0, 0, 259, 1182, 1, 0, 0, 0, 261, 1184, 1, 0, 0, 0, 263, 1205, 1, 0, 0, 0, 265, 1207, 1, 0, 0, 0, 267, 1212, 1, 0, 0, 0, 269, 1217, 1, 0, 0, 0, 271, 1222, 1, 0, 0, 0, 273, 1243, 1, 0, 0, 0, 275, 1245, 1, 0, 0, 0, 277, 1253, 1, 0, 0, 0, 279, 1255, 1, 0, 0, 0, 281, 1259, 1, 0, 0, 0, 283, 1263, 1, 0, 0, 0, 285, 1267, 1, 0, 0, 0, 287, 1272, 1, 0, 0, 0, 289, 1276, 1, 0, 0, 0, 291, 1280, 1, 0, 0, 0, 293, 1284, 1, 0, 0, 0, 295, 1288, 1, 0, 0, 0, 297, 1292, 1, 0, 0, 0, 299, 1304, 1, 0, 0, 0, 301, 1307, 1, 0, 0, 0, 303, 1311, 1, 0, 0, 0, 305, 1315, 1, 0, 0, 0, 307, 1319, 1, 0, 0, 0, 309, 1323, 1, 0, 0, 0, 311, 1327, 1, 0, 0, 0, 313, 1331, 1, 0, 0, 0, 315, 1336, 1, 0, 0, 0, 317, 1341, 1, 0, 0, 0, 319, 1345, 1, 0, 0, 0, 321, 1351, 1, 0, 0, 0, 323, 1360, 1, 0, 0, 0, 325, 1364, 1, 0, 0, 0, 327, 1368, 1, 0, 0, 0, 329, 1372, 1, 0, 0, 0, 331, 1376, 1, 0, 0, 0, 333, 1380, 1, 0, 0, 0, 335, 1384, 1, 0, 0, 0, 337, 1388, 1, 0, 0, 0, 339, 1392, 1, 0, 0, 0, 341, 1397, 1, 0, 0, 0, 343, 1401, 1, 0, 0, 0, 345, 1405, 1, 0, 0, 0, 347, 1409, 1, 0, 0, 0, 349, 1414, 1, 0, 0, 0, 351, 1418, 1, 0, 0, 0, 353, 1422, 1, 0, 0, 0, 355, 1426, 1, 0, 0, 0, 357, 1430, 1, 0, 0, 0, 359, 1434, 1, 0, 0, 0, 361, 1440, 1, 0, 0, 0, 363, 1444, 1, 0, 0, 0, 365, 1448, 1, 0, 0, 0, 367, 1452, 1, 0, 0, 0, 369, 1456, 1, 0, 0, 0, 371, 1460, 1, 0, 0, 0, 373, 1464, 1, 0, 0, 0, 375, 1469, 1, 0, 0, 0, 377, 1475, 1, 0, 0, 0, 379, 1481, 1, 0, 0, 0, 381, 1485, 1, 0, 0, 0, 383, 1489, 1, 0, 0, 0, 385, 1493, 1, 0, 0, 0, 387, 1499, 1, 0, 0, 0, 389, 1505, 1, 0, 0, 0, 391, 1509, 1, 0, 0, 0, 393, 1513, 1, 0, 0, 0, 395, 1517, 1, 0, 0, 0, 397, 1523, 1, 0, 0, 0, 399, 1529, 1, 0, 0, 0, 401, 1535, 1, 0, 0, 0, 403, 1540, 1, 0, 0, 0, 405, 1545, 1, 0, 0, 0, 407, 1549, 1, 0, 0, 0, 409, 1553, 1, 0, 0, 0, 411, 1557, 1, 0, 0, 0, 413, 1561, 1, 0, 0, 0, 415, 1565, 1, 0, 0, 0, 417, 1569, 1, 0, 0, 0, 419, 1573, 1, 0, 0, 0, 421, 1577, 1, 0, 0, 0, 423, 1582, 1, 0, 0, 0, 425, 1586, 1, 0, 0, 0, 427, 1590, 1, 0, 0, 0, 429, 1594, 1, 0, 0, 0, 431, 1602, 1, 0, 0, 0, 433, 1623, 1, 0, 0, 0, 435, 1627, 1, 0, 0, 0, 437, 1631, 1, 0, 0, 0, 439, 1635, 1, 0, 0, 0, 441, 1639, 1, 0, 0, 0, 443, 1643, 1, 0, 0, 0, 445, 1648, 1, 0, 0, 0, 447, 1652, 1, 0, 0, 0, 449, 1656, 1, 0, 0, 0, 451, 1660, 1, 0, 0, 0, 453, 1664, 1, 0, 0, 0, 455, 1668, 1, 0, 0, 0, 457, 1671, 1, 0, 0, 0, 459, 1675, 1, 0, 0, 0, 461, 1679, 1, 0, 0, 0, 463, 1683, 1, 0, 0, 0, 465, 1687, 1, 0, 0, 0, 467, 1692, 1, 0, 0, 0, 469, 1697, 1, 0, 0, 0, 471, 1701, 1, 0, 0, 0, 473, 1705, 1, 0, 0, 0, 475, 476, 5, 47, 0, 0, 476, 477, 5, 47, 0, 0, 477, 481, 1, 0, 0, 0, 478, 480, 8, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 483, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 485, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 486, 5, 13, 0, 0, 485, 484, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 488, 1, 0, 0, 0, 487, 489, 5, 10, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 491, 6, 0, 0, 0, 491, 18, 1, 0, 0, 0, 492, 493, 5, 47, 0, 0, 493, 494, 5, 42, 0, 0, 494, 499, 1, 0, 0, 0, 495, 498, 3, 19, 1, 0, 496, 498, 9, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 496, 1, 0, 0, 0, 498, 501, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 502, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 502, 503, 5, 42, 0, 0, 503, 504, 5, 47, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 6, 1, 0, 0, 506, 20, 1, 0, 0, 0, 507, 509, 7, 1, 0, 0, 508, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 6, 2, 0, 0, 513, 22, 1, 0, 0, 0, 514, 515, 4, 3, 0, 0, 515, 516, 7, 2, 0, 0, 516, 517, 7, 3, 0, 0, 517, 518, 7, 4, 0, 0, 518, 519, 7, 5, 0, 0, 519, 520, 7, 6, 0, 0, 520, 521, 7, 7, 0, 0, 521, 522, 5, 95, 0, 0, 522, 523, 7, 8, 0, 0, 523, 524, 7, 9, 0, 0, 524, 525, 7, 10, 0, 0, 525, 526, 7, 5, 0, 0, 526, 527, 7, 11, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 6, 3, 1, 0, 529, 24, 1, 0, 0, 0, 530, 531, 7, 7, 0, 0, 531, 532, 7, 5, 0, 0, 532, 533, 7, 12, 0, 0, 533, 534, 7, 10, 0, 0, 534, 535, 7, 2, 0, 0, 535, 536, 7, 3, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 6, 4, 2, 0, 538, 26, 1, 0, 0, 0, 539, 540, 7, 7, 0, 0, 540, 541, 7, 13, 0, 0, 541, 542, 7, 8, 0, 0, 542, 543, 7, 14, 0, 0, 543, 544, 7, 4, 0, 0, 544, 545, 7, 10, 0, 0, 545, 546, 7, 5, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 6, 5, 3, 0, 548, 28, 1, 0, 0, 0, 549, 550, 7, 15, 0, 0, 550, 551, 7, 10, 0, 0, 551, 552, 7, 16, 0, 0, 552, 553, 7, 16, 0, 0, 553, 554, 7, 7, 0, 0, 554, 555, 7, 2, 0, 0, 555, 556, 7, 11, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 6, 6, 4, 0, 558, 30, 1, 0, 0, 0, 559, 560, 7, 7, 0, 0, 560, 561, 7, 17, 0, 0, 561, 562, 7, 4, 0, 0, 562, 563, 7, 14, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 6, 7, 4, 0, 565, 32, 1, 0, 0, 0, 566, 567, 7, 6, 0, 0, 567, 568, 7, 12, 0, 0, 568, 569, 7, 9, 0, 0, 569, 570, 7, 18, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 6, 8, 4, 0, 572, 34, 1, 0, 0, 0, 573, 574, 7, 14, 0, 0, 574, 575, 7, 10, 0, 0, 575, 576, 7, 19, 0, 0, 576, 577, 7, 10, 0, 0, 577, 578, 7, 11, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 6, 9, 4, 0, 580, 36, 1, 0, 0, 0, 581, 582, 7, 12, 0, 0, 582, 583, 7, 9, 0, 0, 583, 584, 7, 20, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 6, 10, 4, 0, 586, 38, 1, 0, 0, 0, 587, 588, 7, 16, 0, 0, 588, 589, 7, 9, 0, 0, 589, 590, 7, 12, 0, 0, 590, 591, 7, 11, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 6, 11, 4, 0, 593, 40, 1, 0, 0, 0, 594, 595, 7, 16, 0, 0, 595, 596, 7, 11, 0, 0, 596, 597, 7, 4, 0, 0, 597, 598, 7, 11, 0, 0, 598, 599, 7, 16, 0, 0, 599, 600, 1, 0, 0, 0, 600, 601, 6, 12, 4, 0, 601, 42, 1, 0, 0, 0, 602, 603, 7, 20, 0, 0, 603, 604, 7, 3, 0, 0, 604, 605, 7, 7, 0, 0, 605, 606, 7, 12, 0, 0, 606, 607, 7, 7, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 6, 13, 4, 0, 609, 44, 1, 0, 0, 0, 610, 611, 4, 14, 1, 0, 611, 612, 7, 10, 0, 0, 612, 613, 7, 5, 0, 0, 613, 614, 7, 14, 0, 0, 614, 615, 7, 10, 0, 0, 615, 616, 7, 5, 0, 0, 616, 617, 7, 7, 0, 0, 617, 618, 7, 16, 0, 0, 618, 619, 7, 11, 0, 0, 619, 620, 7, 4, 0, 0, 620, 621, 7, 11, 0, 0, 621, 622, 7, 16, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 6, 14, 4, 0, 624, 46, 1, 0, 0, 0, 625, 626, 7, 21, 0, 0, 626, 627, 7, 12, 0, 0, 627, 628, 7, 9, 0, 0, 628, 629, 7, 19, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 6, 15, 5, 0, 631, 48, 1, 0, 0, 0, 632, 633, 7, 14, 0, 0, 633, 634, 7, 9, 0, 0, 634, 635, 7, 9, 0, 0, 635, 636, 7, 18, 0, 0, 636, 637, 7, 22, 0, 0, 637, 638, 7, 8, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 6, 16, 6, 0, 640, 50, 1, 0, 0, 0, 641, 642, 4, 17, 2, 0, 642, 643, 7, 21, 0, 0, 643, 644, 7, 22, 0, 0, 644, 645, 7, 14, 0, 0, 645, 646, 7, 14, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 6, 17, 6, 0, 648, 52, 1, 0, 0, 0, 649, 650, 4, 18, 3, 0, 650, 651, 7, 14, 0, 0, 651, 652, 7, 7, 0, 0, 652, 653, 7, 21, 0, 0, 653, 654, 7, 11, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 6, 18, 6, 0, 656, 54, 1, 0, 0, 0, 657, 658, 4, 19, 4, 0, 658, 659, 7, 12, 0, 0, 659, 660, 7, 10, 0, 0, 660, 661, 7, 6, 0, 0, 661, 662, 7, 3, 0, 0, 662, 663, 7, 11, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 6, 19, 6, 0, 665, 56, 1, 0, 0, 0, 666, 667, 4, 20, 5, 0, 667, 668, 7, 14, 0, 0, 668, 669, 7, 9, 0, 0, 669, 670, 7, 9, 0, 0, 670, 671, 7, 18, 0, 0, 671, 672, 7, 22, 0, 0, 672, 673, 7, 8, 0, 0, 673, 674, 5, 95, 0, 0, 674, 675, 5, 128020, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 6, 20, 7, 0, 677, 58, 1, 0, 0, 0, 678, 679, 4, 21, 6, 0, 679, 680, 7, 19, 0, 0, 680, 681, 7, 7, 0, 0, 681, 682, 7, 11, 0, 0, 682, 683, 7, 12, 0, 0, 683, 684, 7, 10, 0, 0, 684, 685, 7, 2, 0, 0, 685, 686, 7, 16, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 6, 21, 8, 0, 688, 60, 1, 0, 0, 0, 689, 690, 7, 19, 0, 0, 690, 691, 7, 17, 0, 0, 691, 692, 5, 95, 0, 0, 692, 693, 7, 7, 0, 0, 693, 694, 7, 13, 0, 0, 694, 695, 7, 8, 0, 0, 695, 696, 7, 4, 0, 0, 696, 697, 7, 5, 0, 0, 697, 698, 7, 15, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 6, 22, 9, 0, 700, 62, 1, 0, 0, 0, 701, 702, 7, 15, 0, 0, 702, 703, 7, 12, 0, 0, 703, 704, 7, 9, 0, 0, 704, 705, 7, 8, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 6, 23, 10, 0, 707, 64, 1, 0, 0, 0, 708, 709, 7, 18, 0, 0, 709, 710, 7, 7, 0, 0, 710, 711, 7, 7, 0, 0, 711, 712, 7, 8, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 6, 24, 10, 0, 714, 66, 1, 0, 0, 0, 715, 716, 4, 25, 7, 0, 716, 717, 7, 10, 0, 0, 717, 718, 7, 5, 0, 0, 718, 719, 7, 16, 0, 0, 719, 720, 7, 10, 0, 0, 720, 721, 7, 16, 0, 0, 721, 722, 7, 11, 0, 0, 722, 723, 5, 95, 0, 0, 723, 724, 5, 128020, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 6, 25, 10, 0, 726, 68, 1, 0, 0, 0, 727, 728, 7, 12, 0, 0, 728, 729, 7, 7, 0, 0, 729, 730, 7, 5, 0, 0, 730, 731, 7, 4, 0, 0, 731, 732, 7, 19, 0, 0, 732, 733, 7, 7, 0, 0, 733, 734, 1, 0, 0, 0, 734, 735, 6, 26, 11, 0, 735, 70, 1, 0, 0, 0, 736, 737, 7, 16, 0, 0, 737, 738, 7, 3, 0, 0, 738, 739, 7, 9, 0, 0, 739, 740, 7, 20, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 6, 27, 12, 0, 742, 72, 1, 0, 0, 0, 743, 745, 8, 23, 0, 0, 744, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 6, 28, 4, 0, 749, 74, 1, 0, 0, 0, 750, 751, 3, 161, 72, 0, 751, 752, 1, 0, 0, 0, 752, 753, 6, 29, 13, 0, 753, 754, 6, 29, 14, 0, 754, 76, 1, 0, 0, 0, 755, 756, 3, 99, 41, 0, 756, 757, 1, 0, 0, 0, 757, 758, 6, 30, 15, 0, 758, 78, 1, 0, 0, 0, 759, 760, 3, 455, 219, 0, 760, 761, 1, 0, 0, 0, 761, 762, 6, 31, 16, 0, 762, 80, 1, 0, 0, 0, 763, 764, 3, 205, 94, 0, 764, 765, 1, 0, 0, 0, 765, 766, 6, 32, 17, 0, 766, 82, 1, 0, 0, 0, 767, 768, 3, 201, 92, 0, 768, 769, 1, 0, 0, 0, 769, 770, 6, 33, 18, 0, 770, 84, 1, 0, 0, 0, 771, 772, 3, 277, 130, 0, 772, 773, 1, 0, 0, 0, 773, 774, 6, 34, 19, 0, 774, 86, 1, 0, 0, 0, 775, 776, 3, 273, 128, 0, 776, 777, 1, 0, 0, 0, 777, 778, 6, 35, 20, 0, 778, 88, 1, 0, 0, 0, 779, 780, 3, 17, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 6, 36, 0, 0, 782, 90, 1, 0, 0, 0, 783, 784, 3, 19, 1, 0, 784, 785, 1, 0, 0, 0, 785, 786, 6, 37, 0, 0, 786, 92, 1, 0, 0, 0, 787, 788, 3, 21, 2, 0, 788, 789, 1, 0, 0, 0, 789, 790, 6, 38, 0, 0, 790, 94, 1, 0, 0, 0, 791, 792, 3, 161, 72, 0, 792, 793, 1, 0, 0, 0, 793, 794, 6, 39, 13, 0, 794, 795, 6, 39, 14, 0, 795, 96, 1, 0, 0, 0, 796, 797, 3, 265, 124, 0, 797, 798, 1, 0, 0, 0, 798, 799, 6, 40, 21, 0, 799, 800, 6, 40, 22, 0, 800, 98, 1, 0, 0, 0, 801, 802, 7, 9, 0, 0, 802, 803, 7, 5, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 6, 41, 23, 0, 805, 100, 1, 0, 0, 0, 806, 807, 7, 20, 0, 0, 807, 808, 7, 10, 0, 0, 808, 809, 7, 11, 0, 0, 809, 810, 7, 3, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 6, 42, 23, 0, 812, 102, 1, 0, 0, 0, 813, 814, 8, 24, 0, 0, 814, 104, 1, 0, 0, 0, 815, 817, 3, 103, 43, 0, 816, 815, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 3, 199, 91, 0, 821, 823, 1, 0, 0, 0, 822, 816, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 1, 0, 0, 0, 824, 826, 3, 103, 43, 0, 825, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 106, 1, 0, 0, 0, 829, 830, 3, 105, 44, 0, 830, 831, 1, 0, 0, 0, 831, 832, 6, 45, 24, 0, 832, 108, 1, 0, 0, 0, 833, 834, 3, 17, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 6, 46, 0, 0, 836, 110, 1, 0, 0, 0, 837, 838, 3, 19, 1, 0, 838, 839, 1, 0, 0, 0, 839, 840, 6, 47, 0, 0, 840, 112, 1, 0, 0, 0, 841, 842, 3, 21, 2, 0, 842, 843, 1, 0, 0, 0, 843, 844, 6, 48, 0, 0, 844, 114, 1, 0, 0, 0, 845, 846, 3, 161, 72, 0, 846, 847, 1, 0, 0, 0, 847, 848, 6, 49, 13, 0, 848, 849, 6, 49, 14, 0, 849, 850, 6, 49, 14, 0, 850, 116, 1, 0, 0, 0, 851, 852, 3, 195, 89, 0, 852, 853, 1, 0, 0, 0, 853, 854, 6, 50, 25, 0, 854, 118, 1, 0, 0, 0, 855, 856, 3, 201, 92, 0, 856, 857, 1, 0, 0, 0, 857, 858, 6, 51, 18, 0, 858, 120, 1, 0, 0, 0, 859, 860, 3, 205, 94, 0, 860, 861, 1, 0, 0, 0, 861, 862, 6, 52, 17, 0, 862, 122, 1, 0, 0, 0, 863, 864, 3, 101, 42, 0, 864, 865, 1, 0, 0, 0, 865, 866, 6, 53, 26, 0, 866, 124, 1, 0, 0, 0, 867, 868, 3, 435, 209, 0, 868, 869, 1, 0, 0, 0, 869, 870, 6, 54, 27, 0, 870, 126, 1, 0, 0, 0, 871, 872, 3, 277, 130, 0, 872, 873, 1, 0, 0, 0, 873, 874, 6, 55, 19, 0, 874, 128, 1, 0, 0, 0, 875, 876, 3, 227, 105, 0, 876, 877, 1, 0, 0, 0, 877, 878, 6, 56, 28, 0, 878, 130, 1, 0, 0, 0, 879, 880, 3, 263, 123, 0, 880, 881, 1, 0, 0, 0, 881, 882, 6, 57, 29, 0, 882, 132, 1, 0, 0, 0, 883, 884, 3, 17, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 6, 58, 0, 0, 886, 134, 1, 0, 0, 0, 887, 888, 3, 19, 1, 0, 888, 889, 1, 0, 0, 0, 889, 890, 6, 59, 0, 0, 890, 136, 1, 0, 0, 0, 891, 892, 3, 21, 2, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 60, 0, 0, 894, 138, 1, 0, 0, 0, 895, 896, 3, 267, 125, 0, 896, 897, 1, 0, 0, 0, 897, 898, 6, 61, 30, 0, 898, 899, 6, 61, 14, 0, 899, 140, 1, 0, 0, 0, 900, 901, 3, 199, 91, 0, 901, 902, 1, 0, 0, 0, 902, 903, 6, 62, 31, 0, 903, 142, 1, 0, 0, 0, 904, 910, 3, 173, 78, 0, 905, 910, 3, 163, 73, 0, 906, 910, 3, 205, 94, 0, 907, 910, 3, 165, 74, 0, 908, 910, 3, 179, 81, 0, 909, 904, 1, 0, 0, 0, 909, 905, 1, 0, 0, 0, 909, 906, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 908, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 144, 1, 0, 0, 0, 913, 914, 3, 17, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 6, 64, 0, 0, 916, 146, 1, 0, 0, 0, 917, 918, 3, 19, 1, 0, 918, 919, 1, 0, 0, 0, 919, 920, 6, 65, 0, 0, 920, 148, 1, 0, 0, 0, 921, 922, 3, 21, 2, 0, 922, 923, 1, 0, 0, 0, 923, 924, 6, 66, 0, 0, 924, 150, 1, 0, 0, 0, 925, 926, 3, 265, 124, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 67, 21, 0, 928, 929, 6, 67, 32, 0, 929, 152, 1, 0, 0, 0, 930, 931, 3, 161, 72, 0, 931, 932, 1, 0, 0, 0, 932, 933, 6, 68, 13, 0, 933, 934, 6, 68, 14, 0, 934, 154, 1, 0, 0, 0, 935, 936, 3, 21, 2, 0, 936, 937, 1, 0, 0, 0, 937, 938, 6, 69, 0, 0, 938, 156, 1, 0, 0, 0, 939, 940, 3, 17, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 6, 70, 0, 0, 942, 158, 1, 0, 0, 0, 943, 944, 3, 19, 1, 0, 944, 945, 1, 0, 0, 0, 945, 946, 6, 71, 0, 0, 946, 160, 1, 0, 0, 0, 947, 948, 5, 124, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 6, 72, 14, 0, 950, 162, 1, 0, 0, 0, 951, 952, 7, 25, 0, 0, 952, 164, 1, 0, 0, 0, 953, 954, 7, 26, 0, 0, 954, 166, 1, 0, 0, 0, 955, 956, 5, 92, 0, 0, 956, 957, 7, 27, 0, 0, 957, 168, 1, 0, 0, 0, 958, 959, 8, 28, 0, 0, 959, 170, 1, 0, 0, 0, 960, 962, 7, 7, 0, 0, 961, 963, 7, 29, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 965, 1, 0, 0, 0, 964, 966, 3, 163, 73, 0, 965, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 965, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 172, 1, 0, 0, 0, 969, 970, 5, 64, 0, 0, 970, 174, 1, 0, 0, 0, 971, 972, 5, 96, 0, 0, 972, 176, 1, 0, 0, 0, 973, 977, 8, 30, 0, 0, 974, 975, 5, 96, 0, 0, 975, 977, 5, 96, 0, 0, 976, 973, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 178, 1, 0, 0, 0, 978, 979, 5, 95, 0, 0, 979, 180, 1, 0, 0, 0, 980, 984, 3, 165, 74, 0, 981, 984, 3, 163, 73, 0, 982, 984, 3, 179, 81, 0, 983, 980, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 983, 982, 1, 0, 0, 0, 984, 182, 1, 0, 0, 0, 985, 990, 5, 34, 0, 0, 986, 989, 3, 167, 75, 0, 987, 989, 3, 169, 76, 0, 988, 986, 1, 0, 0, 0, 988, 987, 1, 0, 0, 0, 989, 992, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 993, 1, 0, 0, 0, 992, 990, 1, 0, 0, 0, 993, 1015, 5, 34, 0, 0, 994, 995, 5, 34, 0, 0, 995, 996, 5, 34, 0, 0, 996, 997, 5, 34, 0, 0, 997, 1001, 1, 0, 0, 0, 998, 1000, 8, 0, 0, 0, 999, 998, 1, 0, 0, 0, 1000, 1003, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1001, 999, 1, 0, 0, 0, 1002, 1004, 1, 0, 0, 0, 1003, 1001, 1, 0, 0, 0, 1004, 1005, 5, 34, 0, 0, 1005, 1006, 5, 34, 0, 0, 1006, 1007, 5, 34, 0, 0, 1007, 1009, 1, 0, 0, 0, 1008, 1010, 5, 34, 0, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1012, 1, 0, 0, 0, 1011, 1013, 5, 34, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1015, 1, 0, 0, 0, 1014, 985, 1, 0, 0, 0, 1014, 994, 1, 0, 0, 0, 1015, 184, 1, 0, 0, 0, 1016, 1018, 3, 163, 73, 0, 1017, 1016, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 186, 1, 0, 0, 0, 1021, 1023, 3, 163, 73, 0, 1022, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1022, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1030, 3, 205, 94, 0, 1027, 1029, 3, 163, 73, 0, 1028, 1027, 1, 0, 0, 0, 1029, 1032, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1064, 1, 0, 0, 0, 1032, 1030, 1, 0, 0, 0, 1033, 1035, 3, 205, 94, 0, 1034, 1036, 3, 163, 73, 0, 1035, 1034, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1064, 1, 0, 0, 0, 1039, 1041, 3, 163, 73, 0, 1040, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1040, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1051, 1, 0, 0, 0, 1044, 1048, 3, 205, 94, 0, 1045, 1047, 3, 163, 73, 0, 1046, 1045, 1, 0, 0, 0, 1047, 1050, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1052, 1, 0, 0, 0, 1050, 1048, 1, 0, 0, 0, 1051, 1044, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 3, 171, 77, 0, 1054, 1064, 1, 0, 0, 0, 1055, 1057, 3, 205, 94, 0, 1056, 1058, 3, 163, 73, 0, 1057, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1057, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 3, 171, 77, 0, 1062, 1064, 1, 0, 0, 0, 1063, 1022, 1, 0, 0, 0, 1063, 1033, 1, 0, 0, 0, 1063, 1040, 1, 0, 0, 0, 1063, 1055, 1, 0, 0, 0, 1064, 188, 1, 0, 0, 0, 1065, 1066, 7, 31, 0, 0, 1066, 1067, 7, 32, 0, 0, 1067, 190, 1, 0, 0, 0, 1068, 1069, 7, 4, 0, 0, 1069, 1070, 7, 5, 0, 0, 1070, 1071, 7, 15, 0, 0, 1071, 192, 1, 0, 0, 0, 1072, 1073, 7, 4, 0, 0, 1073, 1074, 7, 16, 0, 0, 1074, 1075, 7, 2, 0, 0, 1075, 194, 1, 0, 0, 0, 1076, 1077, 5, 61, 0, 0, 1077, 196, 1, 0, 0, 0, 1078, 1079, 5, 58, 0, 0, 1079, 1080, 5, 58, 0, 0, 1080, 198, 1, 0, 0, 0, 1081, 1082, 5, 58, 0, 0, 1082, 200, 1, 0, 0, 0, 1083, 1084, 5, 44, 0, 0, 1084, 202, 1, 0, 0, 0, 1085, 1086, 7, 15, 0, 0, 1086, 1087, 7, 7, 0, 0, 1087, 1088, 7, 16, 0, 0, 1088, 1089, 7, 2, 0, 0, 1089, 204, 1, 0, 0, 0, 1090, 1091, 5, 46, 0, 0, 1091, 206, 1, 0, 0, 0, 1092, 1093, 7, 21, 0, 0, 1093, 1094, 7, 4, 0, 0, 1094, 1095, 7, 14, 0, 0, 1095, 1096, 7, 16, 0, 0, 1096, 1097, 7, 7, 0, 0, 1097, 208, 1, 0, 0, 0, 1098, 1099, 7, 21, 0, 0, 1099, 1100, 7, 10, 0, 0, 1100, 1101, 7, 12, 0, 0, 1101, 1102, 7, 16, 0, 0, 1102, 1103, 7, 11, 0, 0, 1103, 210, 1, 0, 0, 0, 1104, 1105, 7, 10, 0, 0, 1105, 1106, 7, 5, 0, 0, 1106, 212, 1, 0, 0, 0, 1107, 1108, 7, 10, 0, 0, 1108, 1109, 7, 16, 0, 0, 1109, 214, 1, 0, 0, 0, 1110, 1111, 7, 14, 0, 0, 1111, 1112, 7, 4, 0, 0, 1112, 1113, 7, 16, 0, 0, 1113, 1114, 7, 11, 0, 0, 1114, 216, 1, 0, 0, 0, 1115, 1116, 7, 14, 0, 0, 1116, 1117, 7, 10, 0, 0, 1117, 1118, 7, 18, 0, 0, 1118, 1119, 7, 7, 0, 0, 1119, 218, 1, 0, 0, 0, 1120, 1121, 7, 5, 0, 0, 1121, 1122, 7, 9, 0, 0, 1122, 1123, 7, 11, 0, 0, 1123, 220, 1, 0, 0, 0, 1124, 1125, 7, 5, 0, 0, 1125, 1126, 7, 22, 0, 0, 1126, 1127, 7, 14, 0, 0, 1127, 1128, 7, 14, 0, 0, 1128, 222, 1, 0, 0, 0, 1129, 1130, 7, 5, 0, 0, 1130, 1131, 7, 22, 0, 0, 1131, 1132, 7, 14, 0, 0, 1132, 1133, 7, 14, 0, 0, 1133, 1134, 7, 16, 0, 0, 1134, 224, 1, 0, 0, 0, 1135, 1136, 7, 9, 0, 0, 1136, 1137, 7, 12, 0, 0, 1137, 226, 1, 0, 0, 0, 1138, 1139, 5, 63, 0, 0, 1139, 228, 1, 0, 0, 0, 1140, 1141, 7, 12, 0, 0, 1141, 1142, 7, 14, 0, 0, 1142, 1143, 7, 10, 0, 0, 1143, 1144, 7, 18, 0, 0, 1144, 1145, 7, 7, 0, 0, 1145, 230, 1, 0, 0, 0, 1146, 1147, 7, 11, 0, 0, 1147, 1148, 7, 12, 0, 0, 1148, 1149, 7, 22, 0, 0, 1149, 1150, 7, 7, 0, 0, 1150, 232, 1, 0, 0, 0, 1151, 1152, 5, 61, 0, 0, 1152, 1153, 5, 61, 0, 0, 1153, 234, 1, 0, 0, 0, 1154, 1155, 5, 61, 0, 0, 1155, 1156, 5, 126, 0, 0, 1156, 236, 1, 0, 0, 0, 1157, 1158, 5, 33, 0, 0, 1158, 1159, 5, 61, 0, 0, 1159, 238, 1, 0, 0, 0, 1160, 1161, 5, 60, 0, 0, 1161, 240, 1, 0, 0, 0, 1162, 1163, 5, 60, 0, 0, 1163, 1164, 5, 61, 0, 0, 1164, 242, 1, 0, 0, 0, 1165, 1166, 5, 62, 0, 0, 1166, 244, 1, 0, 0, 0, 1167, 1168, 5, 62, 0, 0, 1168, 1169, 5, 61, 0, 0, 1169, 246, 1, 0, 0, 0, 1170, 1171, 5, 43, 0, 0, 1171, 248, 1, 0, 0, 0, 1172, 1173, 5, 45, 0, 0, 1173, 250, 1, 0, 0, 0, 1174, 1175, 5, 42, 0, 0, 1175, 252, 1, 0, 0, 0, 1176, 1177, 5, 47, 0, 0, 1177, 254, 1, 0, 0, 0, 1178, 1179, 5, 37, 0, 0, 1179, 256, 1, 0, 0, 0, 1180, 1181, 5, 123, 0, 0, 1181, 258, 1, 0, 0, 0, 1182, 1183, 5, 125, 0, 0, 1183, 260, 1, 0, 0, 0, 1184, 1185, 3, 43, 13, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 6, 122, 33, 0, 1187, 262, 1, 0, 0, 0, 1188, 1191, 3, 227, 105, 0, 1189, 1192, 3, 165, 74, 0, 1190, 1192, 3, 179, 81, 0, 1191, 1189, 1, 0, 0, 0, 1191, 1190, 1, 0, 0, 0, 1192, 1196, 1, 0, 0, 0, 1193, 1195, 3, 181, 82, 0, 1194, 1193, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1206, 1, 0, 0, 0, 1198, 1196, 1, 0, 0, 0, 1199, 1201, 3, 227, 105, 0, 1200, 1202, 3, 163, 73, 0, 1201, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 1, 0, 0, 0, 1205, 1188, 1, 0, 0, 0, 1205, 1199, 1, 0, 0, 0, 1206, 264, 1, 0, 0, 0, 1207, 1208, 5, 91, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 6, 124, 4, 0, 1210, 1211, 6, 124, 4, 0, 1211, 266, 1, 0, 0, 0, 1212, 1213, 5, 93, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1215, 6, 125, 14, 0, 1215, 1216, 6, 125, 14, 0, 1216, 268, 1, 0, 0, 0, 1217, 1218, 5, 40, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 6, 126, 4, 0, 1220, 1221, 6, 126, 4, 0, 1221, 270, 1, 0, 0, 0, 1222, 1223, 5, 41, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1225, 6, 127, 14, 0, 1225, 1226, 6, 127, 14, 0, 1226, 272, 1, 0, 0, 0, 1227, 1231, 3, 165, 74, 0, 1228, 1230, 3, 181, 82, 0, 1229, 1228, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1244, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 3, 179, 81, 0, 1235, 1237, 3, 173, 78, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1239, 1, 0, 0, 0, 1238, 1240, 3, 181, 82, 0, 1239, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1227, 1, 0, 0, 0, 1243, 1236, 1, 0, 0, 0, 1244, 274, 1, 0, 0, 0, 1245, 1247, 3, 175, 79, 0, 1246, 1248, 3, 177, 80, 0, 1247, 1246, 1, 0, 0, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1252, 3, 175, 79, 0, 1252, 276, 1, 0, 0, 0, 1253, 1254, 3, 275, 129, 0, 1254, 278, 1, 0, 0, 0, 1255, 1256, 3, 17, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 6, 131, 0, 0, 1258, 280, 1, 0, 0, 0, 1259, 1260, 3, 19, 1, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 6, 132, 0, 0, 1262, 282, 1, 0, 0, 0, 1263, 1264, 3, 21, 2, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1266, 6, 133, 0, 0, 1266, 284, 1, 0, 0, 0, 1267, 1268, 3, 161, 72, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 6, 134, 13, 0, 1270, 1271, 6, 134, 14, 0, 1271, 286, 1, 0, 0, 0, 1272, 1273, 3, 265, 124, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 6, 135, 21, 0, 1275, 288, 1, 0, 0, 0, 1276, 1277, 3, 267, 125, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 6, 136, 30, 0, 1279, 290, 1, 0, 0, 0, 1280, 1281, 3, 199, 91, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 6, 137, 31, 0, 1283, 292, 1, 0, 0, 0, 1284, 1285, 3, 201, 92, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 6, 138, 18, 0, 1287, 294, 1, 0, 0, 0, 1288, 1289, 3, 195, 89, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 6, 139, 25, 0, 1291, 296, 1, 0, 0, 0, 1292, 1293, 7, 19, 0, 0, 1293, 1294, 7, 7, 0, 0, 1294, 1295, 7, 11, 0, 0, 1295, 1296, 7, 4, 0, 0, 1296, 1297, 7, 15, 0, 0, 1297, 1298, 7, 4, 0, 0, 1298, 1299, 7, 11, 0, 0, 1299, 1300, 7, 4, 0, 0, 1300, 298, 1, 0, 0, 0, 1301, 1305, 8, 33, 0, 0, 1302, 1303, 5, 47, 0, 0, 1303, 1305, 8, 34, 0, 0, 1304, 1301, 1, 0, 0, 0, 1304, 1302, 1, 0, 0, 0, 1305, 300, 1, 0, 0, 0, 1306, 1308, 3, 299, 141, 0, 1307, 1306, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1307, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 302, 1, 0, 0, 0, 1311, 1312, 3, 301, 142, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 6, 143, 34, 0, 1314, 304, 1, 0, 0, 0, 1315, 1316, 3, 183, 83, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 6, 144, 35, 0, 1318, 306, 1, 0, 0, 0, 1319, 1320, 3, 17, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 6, 145, 0, 0, 1322, 308, 1, 0, 0, 0, 1323, 1324, 3, 19, 1, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 6, 146, 0, 0, 1326, 310, 1, 0, 0, 0, 1327, 1328, 3, 21, 2, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1330, 6, 147, 0, 0, 1330, 312, 1, 0, 0, 0, 1331, 1332, 3, 161, 72, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 6, 148, 13, 0, 1334, 1335, 6, 148, 14, 0, 1335, 314, 1, 0, 0, 0, 1336, 1337, 7, 35, 0, 0, 1337, 1338, 7, 9, 0, 0, 1338, 1339, 7, 10, 0, 0, 1339, 1340, 7, 5, 0, 0, 1340, 316, 1, 0, 0, 0, 1341, 1342, 3, 455, 219, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 6, 150, 16, 0, 1344, 318, 1, 0, 0, 0, 1345, 1346, 3, 99, 41, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 6, 151, 15, 0, 1348, 1349, 6, 151, 14, 0, 1349, 1350, 6, 151, 4, 0, 1350, 320, 1, 0, 0, 0, 1351, 1352, 7, 22, 0, 0, 1352, 1353, 7, 16, 0, 0, 1353, 1354, 7, 10, 0, 0, 1354, 1355, 7, 5, 0, 0, 1355, 1356, 7, 6, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1358, 6, 152, 14, 0, 1358, 1359, 6, 152, 4, 0, 1359, 322, 1, 0, 0, 0, 1360, 1361, 3, 301, 142, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 6, 153, 34, 0, 1363, 324, 1, 0, 0, 0, 1364, 1365, 3, 183, 83, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1367, 6, 154, 35, 0, 1367, 326, 1, 0, 0, 0, 1368, 1369, 3, 199, 91, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 6, 155, 31, 0, 1371, 328, 1, 0, 0, 0, 1372, 1373, 3, 273, 128, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1375, 6, 156, 20, 0, 1375, 330, 1, 0, 0, 0, 1376, 1377, 3, 277, 130, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 6, 157, 19, 0, 1379, 332, 1, 0, 0, 0, 1380, 1381, 3, 17, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 6, 158, 0, 0, 1383, 334, 1, 0, 0, 0, 1384, 1385, 3, 19, 1, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 6, 159, 0, 0, 1387, 336, 1, 0, 0, 0, 1388, 1389, 3, 21, 2, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1391, 6, 160, 0, 0, 1391, 338, 1, 0, 0, 0, 1392, 1393, 3, 161, 72, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 6, 161, 13, 0, 1395, 1396, 6, 161, 14, 0, 1396, 340, 1, 0, 0, 0, 1397, 1398, 3, 199, 91, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 6, 162, 31, 0, 1400, 342, 1, 0, 0, 0, 1401, 1402, 3, 201, 92, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 6, 163, 18, 0, 1404, 344, 1, 0, 0, 0, 1405, 1406, 3, 205, 94, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 6, 164, 17, 0, 1408, 346, 1, 0, 0, 0, 1409, 1410, 3, 99, 41, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 6, 165, 15, 0, 1412, 1413, 6, 165, 36, 0, 1413, 348, 1, 0, 0, 0, 1414, 1415, 3, 301, 142, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1417, 6, 166, 34, 0, 1417, 350, 1, 0, 0, 0, 1418, 1419, 3, 183, 83, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 6, 167, 35, 0, 1421, 352, 1, 0, 0, 0, 1422, 1423, 3, 17, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1425, 6, 168, 0, 0, 1425, 354, 1, 0, 0, 0, 1426, 1427, 3, 19, 1, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 6, 169, 0, 0, 1429, 356, 1, 0, 0, 0, 1430, 1431, 3, 21, 2, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 6, 170, 0, 0, 1433, 358, 1, 0, 0, 0, 1434, 1435, 3, 161, 72, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 6, 171, 13, 0, 1437, 1438, 6, 171, 14, 0, 1438, 1439, 6, 171, 14, 0, 1439, 360, 1, 0, 0, 0, 1440, 1441, 3, 201, 92, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 172, 18, 0, 1443, 362, 1, 0, 0, 0, 1444, 1445, 3, 205, 94, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 6, 173, 17, 0, 1447, 364, 1, 0, 0, 0, 1448, 1449, 3, 435, 209, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 174, 27, 0, 1451, 366, 1, 0, 0, 0, 1452, 1453, 3, 17, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 175, 0, 0, 1455, 368, 1, 0, 0, 0, 1456, 1457, 3, 19, 1, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 176, 0, 0, 1459, 370, 1, 0, 0, 0, 1460, 1461, 3, 21, 2, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 177, 0, 0, 1463, 372, 1, 0, 0, 0, 1464, 1465, 3, 161, 72, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 6, 178, 13, 0, 1467, 1468, 6, 178, 14, 0, 1468, 374, 1, 0, 0, 0, 1469, 1470, 3, 301, 142, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 6, 179, 34, 0, 1472, 1473, 6, 179, 14, 0, 1473, 1474, 6, 179, 37, 0, 1474, 376, 1, 0, 0, 0, 1475, 1476, 3, 183, 83, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 6, 180, 35, 0, 1478, 1479, 6, 180, 14, 0, 1479, 1480, 6, 180, 37, 0, 1480, 378, 1, 0, 0, 0, 1481, 1482, 3, 17, 0, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 181, 0, 0, 1484, 380, 1, 0, 0, 0, 1485, 1486, 3, 19, 1, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 182, 0, 0, 1488, 382, 1, 0, 0, 0, 1489, 1490, 3, 21, 2, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 183, 0, 0, 1492, 384, 1, 0, 0, 0, 1493, 1494, 3, 199, 91, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 184, 31, 0, 1496, 1497, 6, 184, 14, 0, 1497, 1498, 6, 184, 8, 0, 1498, 386, 1, 0, 0, 0, 1499, 1500, 3, 201, 92, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 6, 185, 18, 0, 1502, 1503, 6, 185, 14, 0, 1503, 1504, 6, 185, 8, 0, 1504, 388, 1, 0, 0, 0, 1505, 1506, 3, 17, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1508, 6, 186, 0, 0, 1508, 390, 1, 0, 0, 0, 1509, 1510, 3, 19, 1, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1512, 6, 187, 0, 0, 1512, 392, 1, 0, 0, 0, 1513, 1514, 3, 21, 2, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1516, 6, 188, 0, 0, 1516, 394, 1, 0, 0, 0, 1517, 1518, 3, 277, 130, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 6, 189, 14, 0, 1520, 1521, 6, 189, 4, 0, 1521, 1522, 6, 189, 19, 0, 1522, 396, 1, 0, 0, 0, 1523, 1524, 3, 273, 128, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 190, 14, 0, 1526, 1527, 6, 190, 4, 0, 1527, 1528, 6, 190, 20, 0, 1528, 398, 1, 0, 0, 0, 1529, 1530, 3, 189, 86, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 191, 14, 0, 1532, 1533, 6, 191, 4, 0, 1533, 1534, 6, 191, 38, 0, 1534, 400, 1, 0, 0, 0, 1535, 1536, 3, 161, 72, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 6, 192, 13, 0, 1538, 1539, 6, 192, 14, 0, 1539, 402, 1, 0, 0, 0, 1540, 1541, 3, 161, 72, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 6, 193, 13, 0, 1543, 1544, 6, 193, 14, 0, 1544, 404, 1, 0, 0, 0, 1545, 1546, 3, 205, 94, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 6, 194, 17, 0, 1548, 406, 1, 0, 0, 0, 1549, 1550, 3, 227, 105, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1552, 6, 195, 28, 0, 1552, 408, 1, 0, 0, 0, 1553, 1554, 3, 263, 123, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 196, 29, 0, 1556, 410, 1, 0, 0, 0, 1557, 1558, 3, 277, 130, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 197, 19, 0, 1560, 412, 1, 0, 0, 0, 1561, 1562, 3, 273, 128, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 6, 198, 20, 0, 1564, 414, 1, 0, 0, 0, 1565, 1566, 3, 17, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 6, 199, 0, 0, 1568, 416, 1, 0, 0, 0, 1569, 1570, 3, 19, 1, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 200, 0, 0, 1572, 418, 1, 0, 0, 0, 1573, 1574, 3, 21, 2, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 6, 201, 0, 0, 1576, 420, 1, 0, 0, 0, 1577, 1578, 3, 161, 72, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 202, 13, 0, 1580, 1581, 6, 202, 14, 0, 1581, 422, 1, 0, 0, 0, 1582, 1583, 3, 205, 94, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 203, 17, 0, 1585, 424, 1, 0, 0, 0, 1586, 1587, 3, 201, 92, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 204, 18, 0, 1589, 426, 1, 0, 0, 0, 1590, 1591, 3, 227, 105, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 205, 28, 0, 1593, 428, 1, 0, 0, 0, 1594, 1595, 3, 263, 123, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 206, 29, 0, 1597, 430, 1, 0, 0, 0, 1598, 1603, 3, 165, 74, 0, 1599, 1603, 3, 163, 73, 0, 1600, 1603, 3, 179, 81, 0, 1601, 1603, 3, 251, 117, 0, 1602, 1598, 1, 0, 0, 0, 1602, 1599, 1, 0, 0, 0, 1602, 1600, 1, 0, 0, 0, 1602, 1601, 1, 0, 0, 0, 1603, 432, 1, 0, 0, 0, 1604, 1607, 3, 165, 74, 0, 1605, 1607, 3, 251, 117, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1605, 1, 0, 0, 0, 1607, 1611, 1, 0, 0, 0, 1608, 1610, 3, 431, 207, 0, 1609, 1608, 1, 0, 0, 0, 1610, 1613, 1, 0, 0, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1624, 1, 0, 0, 0, 1613, 1611, 1, 0, 0, 0, 1614, 1617, 3, 179, 81, 0, 1615, 1617, 3, 173, 78, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1619, 1, 0, 0, 0, 1618, 1620, 3, 431, 207, 0, 1619, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1606, 1, 0, 0, 0, 1623, 1616, 1, 0, 0, 0, 1624, 434, 1, 0, 0, 0, 1625, 1628, 3, 433, 208, 0, 1626, 1628, 3, 275, 129, 0, 1627, 1625, 1, 0, 0, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1627, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 436, 1, 0, 0, 0, 1631, 1632, 3, 17, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 210, 0, 0, 1634, 438, 1, 0, 0, 0, 1635, 1636, 3, 19, 1, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 211, 0, 0, 1638, 440, 1, 0, 0, 0, 1639, 1640, 3, 21, 2, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 212, 0, 0, 1642, 442, 1, 0, 0, 0, 1643, 1644, 3, 161, 72, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1646, 6, 213, 13, 0, 1646, 1647, 6, 213, 14, 0, 1647, 444, 1, 0, 0, 0, 1648, 1649, 3, 195, 89, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1651, 6, 214, 25, 0, 1651, 446, 1, 0, 0, 0, 1652, 1653, 3, 201, 92, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 6, 215, 18, 0, 1655, 448, 1, 0, 0, 0, 1656, 1657, 3, 205, 94, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1659, 6, 216, 17, 0, 1659, 450, 1, 0, 0, 0, 1660, 1661, 3, 227, 105, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 6, 217, 28, 0, 1663, 452, 1, 0, 0, 0, 1664, 1665, 3, 263, 123, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1667, 6, 218, 29, 0, 1667, 454, 1, 0, 0, 0, 1668, 1669, 7, 4, 0, 0, 1669, 1670, 7, 16, 0, 0, 1670, 456, 1, 0, 0, 0, 1671, 1672, 3, 435, 209, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 6, 220, 27, 0, 1674, 458, 1, 0, 0, 0, 1675, 1676, 3, 17, 0, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 6, 221, 0, 0, 1678, 460, 1, 0, 0, 0, 1679, 1680, 3, 19, 1, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 6, 222, 0, 0, 1682, 462, 1, 0, 0, 0, 1683, 1684, 3, 21, 2, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 6, 223, 0, 0, 1686, 464, 1, 0, 0, 0, 1687, 1688, 3, 161, 72, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 6, 224, 13, 0, 1690, 1691, 6, 224, 14, 0, 1691, 466, 1, 0, 0, 0, 1692, 1693, 7, 10, 0, 0, 1693, 1694, 7, 5, 0, 0, 1694, 1695, 7, 21, 0, 0, 1695, 1696, 7, 9, 0, 0, 1696, 468, 1, 0, 0, 0, 1697, 1698, 3, 17, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 6, 226, 0, 0, 1700, 470, 1, 0, 0, 0, 1701, 1702, 3, 19, 1, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 6, 227, 0, 0, 1704, 472, 1, 0, 0, 0, 1705, 1706, 3, 21, 2, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1708, 6, 228, 0, 0, 1708, 474, 1, 0, 0, 0, 67, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 481, 485, 488, 497, 499, 510, 746, 818, 822, 827, 909, 911, 962, 967, 976, 983, 988, 990, 1001, 1009, 1012, 1014, 1019, 1024, 1030, 1037, 1042, 1048, 1051, 1059, 1063, 1191, 1196, 1203, 1205, 1231, 1236, 1241, 1243, 1249, 1304, 1309, 1602, 1606, 1611, 1616, 1621, 1623, 1627, 1629, 39, 0, 1, 0, 5, 1, 0, 5, 2, 0, 5, 5, 0, 5, 6, 0, 5, 7, 0, 5, 8, 0, 5, 9, 0, 5, 11, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 5, 16, 0, 7, 49, 0, 4, 0, 0, 7, 33, 0, 7, 128, 0, 7, 61, 0, 7, 59, 0, 7, 95, 0, 7, 94, 0, 7, 90, 0, 5, 4, 0, 5, 3, 0, 7, 35, 0, 7, 56, 0, 7, 34, 0, 7, 124, 0, 7, 72, 0, 7, 89, 0, 7, 91, 0, 7, 58, 0, 5, 0, 0, 7, 14, 0, 7, 100, 0, 7, 50, 0, 5, 10, 0, 5, 12, 0, 7, 53, 0] \ No newline at end of file diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java index 8a40fd33ba64d..e7a6b623b64aa 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java @@ -25,152 +25,156 @@ public class EsqlBaseLexer extends LexerConfig { protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int - DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8, - LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15, - WHERE=16, JOIN_LOOKUP=17, DEV_INLINESTATS=18, DEV_INSIST=19, DEV_LOOKUP=20, - DEV_METRICS=21, DEV_JOIN_FULL=22, DEV_JOIN_LEFT=23, DEV_JOIN_RIGHT=24, - UNKNOWN_CMD=25, LINE_COMMENT=26, MULTILINE_COMMENT=27, WS=28, PIPE=29, - QUOTED_STRING=30, INTEGER_LITERAL=31, DECIMAL_LITERAL=32, BY=33, AND=34, - ASC=35, ASSIGN=36, CAST_OP=37, COLON=38, COMMA=39, DESC=40, DOT=41, FALSE=42, - FIRST=43, IN=44, IS=45, LAST=46, LIKE=47, LP=48, NOT=49, NULL=50, NULLS=51, - OR=52, PARAM=53, RLIKE=54, RP=55, TRUE=56, EQ=57, CIEQ=58, NEQ=59, LT=60, - LTE=61, GT=62, GTE=63, PLUS=64, MINUS=65, ASTERISK=66, SLASH=67, PERCENT=68, - LEFT_BRACES=69, RIGHT_BRACES=70, NAMED_OR_POSITIONAL_PARAM=71, OPENING_BRACKET=72, - CLOSING_BRACKET=73, UNQUOTED_IDENTIFIER=74, QUOTED_IDENTIFIER=75, EXPR_LINE_COMMENT=76, - EXPR_MULTILINE_COMMENT=77, EXPR_WS=78, EXPLAIN_WS=79, EXPLAIN_LINE_COMMENT=80, - EXPLAIN_MULTILINE_COMMENT=81, METADATA=82, UNQUOTED_SOURCE=83, FROM_LINE_COMMENT=84, - FROM_MULTILINE_COMMENT=85, FROM_WS=86, ID_PATTERN=87, PROJECT_LINE_COMMENT=88, - PROJECT_MULTILINE_COMMENT=89, PROJECT_WS=90, AS=91, RENAME_LINE_COMMENT=92, - RENAME_MULTILINE_COMMENT=93, RENAME_WS=94, ON=95, WITH=96, ENRICH_POLICY_NAME=97, - ENRICH_LINE_COMMENT=98, ENRICH_MULTILINE_COMMENT=99, ENRICH_WS=100, ENRICH_FIELD_LINE_COMMENT=101, - ENRICH_FIELD_MULTILINE_COMMENT=102, ENRICH_FIELD_WS=103, MVEXPAND_LINE_COMMENT=104, - MVEXPAND_MULTILINE_COMMENT=105, MVEXPAND_WS=106, INFO=107, SHOW_LINE_COMMENT=108, - SHOW_MULTILINE_COMMENT=109, SHOW_WS=110, SETTING=111, SETTING_LINE_COMMENT=112, - SETTTING_MULTILINE_COMMENT=113, SETTING_WS=114, LOOKUP_LINE_COMMENT=115, - LOOKUP_MULTILINE_COMMENT=116, LOOKUP_WS=117, LOOKUP_FIELD_LINE_COMMENT=118, - LOOKUP_FIELD_MULTILINE_COMMENT=119, LOOKUP_FIELD_WS=120, JOIN=121, USING=122, - JOIN_LINE_COMMENT=123, JOIN_MULTILINE_COMMENT=124, JOIN_WS=125, METRICS_LINE_COMMENT=126, - METRICS_MULTILINE_COMMENT=127, METRICS_WS=128, CLOSING_METRICS_LINE_COMMENT=129, - CLOSING_METRICS_MULTILINE_COMMENT=130, CLOSING_METRICS_WS=131, INSIST_WS=132, - INSIST_LINE_COMMENT=133, INSIST_MULTILINE_COMMENT=134; + LINE_COMMENT=1, MULTILINE_COMMENT=2, WS=3, DEV_CHANGE_POINT=4, ENRICH=5, + EXPLAIN=6, DISSECT=7, EVAL=8, GROK=9, LIMIT=10, ROW=11, SORT=12, STATS=13, + WHERE=14, DEV_INLINESTATS=15, FROM=16, JOIN_LOOKUP=17, DEV_JOIN_FULL=18, + DEV_JOIN_LEFT=19, DEV_JOIN_RIGHT=20, DEV_LOOKUP=21, DEV_METRICS=22, MV_EXPAND=23, + DROP=24, KEEP=25, DEV_INSIST=26, RENAME=27, SHOW=28, UNKNOWN_CMD=29, CHANGE_POINT_LINE_COMMENT=30, + CHANGE_POINT_MULTILINE_COMMENT=31, CHANGE_POINT_WS=32, ON=33, WITH=34, + ENRICH_POLICY_NAME=35, ENRICH_LINE_COMMENT=36, ENRICH_MULTILINE_COMMENT=37, + ENRICH_WS=38, ENRICH_FIELD_LINE_COMMENT=39, ENRICH_FIELD_MULTILINE_COMMENT=40, + ENRICH_FIELD_WS=41, SETTING=42, SETTING_LINE_COMMENT=43, SETTTING_MULTILINE_COMMENT=44, + SETTING_WS=45, EXPLAIN_WS=46, EXPLAIN_LINE_COMMENT=47, EXPLAIN_MULTILINE_COMMENT=48, + PIPE=49, QUOTED_STRING=50, INTEGER_LITERAL=51, DECIMAL_LITERAL=52, BY=53, + AND=54, ASC=55, ASSIGN=56, CAST_OP=57, COLON=58, COMMA=59, DESC=60, DOT=61, + FALSE=62, FIRST=63, IN=64, IS=65, LAST=66, LIKE=67, NOT=68, NULL=69, NULLS=70, + OR=71, PARAM=72, RLIKE=73, TRUE=74, EQ=75, CIEQ=76, NEQ=77, LT=78, LTE=79, + GT=80, GTE=81, PLUS=82, MINUS=83, ASTERISK=84, SLASH=85, PERCENT=86, LEFT_BRACES=87, + RIGHT_BRACES=88, NAMED_OR_POSITIONAL_PARAM=89, OPENING_BRACKET=90, CLOSING_BRACKET=91, + LP=92, RP=93, UNQUOTED_IDENTIFIER=94, QUOTED_IDENTIFIER=95, EXPR_LINE_COMMENT=96, + EXPR_MULTILINE_COMMENT=97, EXPR_WS=98, METADATA=99, UNQUOTED_SOURCE=100, + FROM_LINE_COMMENT=101, FROM_MULTILINE_COMMENT=102, FROM_WS=103, JOIN=104, + USING=105, JOIN_LINE_COMMENT=106, JOIN_MULTILINE_COMMENT=107, JOIN_WS=108, + LOOKUP_LINE_COMMENT=109, LOOKUP_MULTILINE_COMMENT=110, LOOKUP_WS=111, + LOOKUP_FIELD_LINE_COMMENT=112, LOOKUP_FIELD_MULTILINE_COMMENT=113, LOOKUP_FIELD_WS=114, + METRICS_LINE_COMMENT=115, METRICS_MULTILINE_COMMENT=116, METRICS_WS=117, + CLOSING_METRICS_LINE_COMMENT=118, CLOSING_METRICS_MULTILINE_COMMENT=119, + CLOSING_METRICS_WS=120, MVEXPAND_LINE_COMMENT=121, MVEXPAND_MULTILINE_COMMENT=122, + MVEXPAND_WS=123, ID_PATTERN=124, PROJECT_LINE_COMMENT=125, PROJECT_MULTILINE_COMMENT=126, + PROJECT_WS=127, AS=128, RENAME_LINE_COMMENT=129, RENAME_MULTILINE_COMMENT=130, + RENAME_WS=131, INFO=132, SHOW_LINE_COMMENT=133, SHOW_MULTILINE_COMMENT=134, + SHOW_WS=135; public static final int - EXPRESSION_MODE=1, EXPLAIN_MODE=2, FROM_MODE=3, PROJECT_MODE=4, RENAME_MODE=5, - ENRICH_MODE=6, ENRICH_FIELD_MODE=7, MVEXPAND_MODE=8, SHOW_MODE=9, SETTING_MODE=10, - LOOKUP_MODE=11, LOOKUP_FIELD_MODE=12, JOIN_MODE=13, METRICS_MODE=14, CLOSING_METRICS_MODE=15, - INSIST_MODE=16; + CHANGE_POINT_MODE=1, ENRICH_MODE=2, ENRICH_FIELD_MODE=3, SETTING_MODE=4, + EXPLAIN_MODE=5, EXPRESSION_MODE=6, FROM_MODE=7, JOIN_MODE=8, LOOKUP_MODE=9, + LOOKUP_FIELD_MODE=10, METRICS_MODE=11, CLOSING_METRICS_MODE=12, MVEXPAND_MODE=13, + PROJECT_MODE=14, RENAME_MODE=15, SHOW_MODE=16; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; public static String[] modeNames = { - "DEFAULT_MODE", "EXPRESSION_MODE", "EXPLAIN_MODE", "FROM_MODE", "PROJECT_MODE", - "RENAME_MODE", "ENRICH_MODE", "ENRICH_FIELD_MODE", "MVEXPAND_MODE", "SHOW_MODE", - "SETTING_MODE", "LOOKUP_MODE", "LOOKUP_FIELD_MODE", "JOIN_MODE", "METRICS_MODE", - "CLOSING_METRICS_MODE", "INSIST_MODE" + "DEFAULT_MODE", "CHANGE_POINT_MODE", "ENRICH_MODE", "ENRICH_FIELD_MODE", + "SETTING_MODE", "EXPLAIN_MODE", "EXPRESSION_MODE", "FROM_MODE", "JOIN_MODE", + "LOOKUP_MODE", "LOOKUP_FIELD_MODE", "METRICS_MODE", "CLOSING_METRICS_MODE", + "MVEXPAND_MODE", "PROJECT_MODE", "RENAME_MODE", "SHOW_MODE" }; private static String[] makeRuleNames() { return new String[] { - "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP", - "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE", - "JOIN_LOOKUP", "DEV_INLINESTATS", "DEV_INSIST", "DEV_LOOKUP", "DEV_METRICS", - "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", - "MULTILINE_COMMENT", "WS", "PIPE", "DIGIT", "LETTER", "ESCAPE_SEQUENCE", - "UNESCAPED_CHARS", "EXPONENT", "ASPERAND", "BACKQUOTE", "BACKQUOTE_BLOCK", - "UNDERSCORE", "UNQUOTED_ID_BODY", "QUOTED_STRING", "INTEGER_LITERAL", - "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", "COLON", - "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", - "LP", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "RP", "TRUE", "EQ", + "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", "ENRICH", + "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", "STATS", + "WHERE", "DEV_INLINESTATS", "FROM", "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", + "DEV_JOIN_RIGHT", "DEV_LOOKUP", "DEV_METRICS", "MV_EXPAND", "DROP", "KEEP", + "DEV_INSIST", "RENAME", "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_PIPE", "CHANGE_POINT_ON", + "CHANGE_POINT_AS", "CHANGE_POINT_DOT", "CHANGE_POINT_COMMA", "CHANGE_POINT_QUOTED_IDENTIFIER", + "CHANGE_POINT_UNQUOTED_IDENTIFIER", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT", + "CHANGE_POINT_WS", "ENRICH_PIPE", "ENRICH_OPENING_BRACKET", "ON", "WITH", + "ENRICH_POLICY_NAME_BODY", "ENRICH_POLICY_NAME", "ENRICH_MODE_UNQUOTED_VALUE", + "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_PIPE", + "ENRICH_FIELD_ASSIGN", "ENRICH_FIELD_COMMA", "ENRICH_FIELD_DOT", "ENRICH_FIELD_WITH", + "ENRICH_FIELD_ID_PATTERN", "ENRICH_FIELD_QUOTED_IDENTIFIER", "ENRICH_FIELD_PARAM", + "ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM", "ENRICH_FIELD_LINE_COMMENT", + "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "SETTING_CLOSING_BRACKET", + "SETTING_COLON", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", + "SETTING_WS", "EXPLAIN_OPENING_BRACKET", "EXPLAIN_PIPE", "EXPLAIN_WS", + "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "PIPE", "DIGIT", + "LETTER", "ESCAPE_SEQUENCE", "UNESCAPED_CHARS", "EXPONENT", "ASPERAND", + "BACKQUOTE", "BACKQUOTE_BLOCK", "UNDERSCORE", "UNQUOTED_ID_BODY", "QUOTED_STRING", + "INTEGER_LITERAL", "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", + "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", + "LIKE", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "TRUE", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_ID", - "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", - "EXPLAIN_OPENING_BRACKET", "EXPLAIN_PIPE", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", - "EXPLAIN_MULTILINE_COMMENT", "FROM_PIPE", "FROM_OPENING_BRACKET", "FROM_CLOSING_BRACKET", + "OPENING_BRACKET", "CLOSING_BRACKET", "LP", "RP", "UNQUOTED_IDENTIFIER", + "QUOTED_ID", "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", + "EXPR_WS", "FROM_PIPE", "FROM_OPENING_BRACKET", "FROM_CLOSING_BRACKET", "FROM_COLON", "FROM_COMMA", "FROM_ASSIGN", "METADATA", "UNQUOTED_SOURCE_PART", "UNQUOTED_SOURCE", "FROM_UNQUOTED_SOURCE", "FROM_QUOTED_SOURCE", "FROM_LINE_COMMENT", - "FROM_MULTILINE_COMMENT", "FROM_WS", "PROJECT_PIPE", "PROJECT_DOT", "PROJECT_COMMA", - "PROJECT_PARAM", "PROJECT_NAMED_OR_POSITIONAL_PARAM", "UNQUOTED_ID_BODY_WITH_PATTERN", + "FROM_MULTILINE_COMMENT", "FROM_WS", "JOIN_PIPE", "JOIN", "JOIN_AS", + "JOIN_ON", "USING", "JOIN_UNQUOTED_SOURCE", "JOIN_QUOTED_SOURCE", "JOIN_COLON", + "JOIN_UNQUOTED_IDENTIFER", "JOIN_QUOTED_IDENTIFIER", "JOIN_LINE_COMMENT", + "JOIN_MULTILINE_COMMENT", "JOIN_WS", "LOOKUP_PIPE", "LOOKUP_COLON", "LOOKUP_COMMA", + "LOOKUP_DOT", "LOOKUP_ON", "LOOKUP_UNQUOTED_SOURCE", "LOOKUP_QUOTED_SOURCE", + "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", "LOOKUP_FIELD_PIPE", + "LOOKUP_FIELD_COMMA", "LOOKUP_FIELD_DOT", "LOOKUP_FIELD_ID_PATTERN", + "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", + "METRICS_PIPE", "METRICS_UNQUOTED_SOURCE", "METRICS_QUOTED_SOURCE", "METRICS_LINE_COMMENT", + "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_COLON", "CLOSING_METRICS_COMMA", + "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT", + "CLOSING_METRICS_WS", "CLOSING_METRICS_QUOTED_IDENTIFIER", "CLOSING_METRICS_UNQUOTED_IDENTIFIER", + "CLOSING_METRICS_BY", "CLOSING_METRICS_PIPE", "MVEXPAND_PIPE", "MVEXPAND_DOT", + "MVEXPAND_PARAM", "MVEXPAND_NAMED_OR_POSITIONAL_PARAM", "MVEXPAND_QUOTED_IDENTIFIER", + "MVEXPAND_UNQUOTED_IDENTIFIER", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", + "MVEXPAND_WS", "PROJECT_PIPE", "PROJECT_DOT", "PROJECT_COMMA", "PROJECT_PARAM", + "PROJECT_NAMED_OR_POSITIONAL_PARAM", "UNQUOTED_ID_BODY_WITH_PATTERN", "UNQUOTED_ID_PATTERN", "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_PIPE", "RENAME_ASSIGN", "RENAME_COMMA", "RENAME_DOT", "RENAME_PARAM", "RENAME_NAMED_OR_POSITIONAL_PARAM", "AS", "RENAME_ID_PATTERN", - "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "ENRICH_PIPE", - "ENRICH_OPENING_BRACKET", "ON", "WITH", "ENRICH_POLICY_NAME_BODY", "ENRICH_POLICY_NAME", - "ENRICH_MODE_UNQUOTED_VALUE", "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", - "ENRICH_WS", "ENRICH_FIELD_PIPE", "ENRICH_FIELD_ASSIGN", "ENRICH_FIELD_COMMA", - "ENRICH_FIELD_DOT", "ENRICH_FIELD_WITH", "ENRICH_FIELD_ID_PATTERN", "ENRICH_FIELD_QUOTED_IDENTIFIER", - "ENRICH_FIELD_PARAM", "ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM", "ENRICH_FIELD_LINE_COMMENT", - "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_PIPE", - "MVEXPAND_DOT", "MVEXPAND_PARAM", "MVEXPAND_NAMED_OR_POSITIONAL_PARAM", - "MVEXPAND_QUOTED_IDENTIFIER", "MVEXPAND_UNQUOTED_IDENTIFIER", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "SHOW_PIPE", "INFO", "SHOW_LINE_COMMENT", - "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING_CLOSING_BRACKET", "SETTING_COLON", - "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", "SETTING_WS", - "LOOKUP_PIPE", "LOOKUP_COLON", "LOOKUP_COMMA", "LOOKUP_DOT", "LOOKUP_ON", - "LOOKUP_UNQUOTED_SOURCE", "LOOKUP_QUOTED_SOURCE", "LOOKUP_LINE_COMMENT", - "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", "LOOKUP_FIELD_PIPE", "LOOKUP_FIELD_COMMA", - "LOOKUP_FIELD_DOT", "LOOKUP_FIELD_ID_PATTERN", "LOOKUP_FIELD_LINE_COMMENT", - "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", "JOIN_PIPE", "JOIN", - "JOIN_AS", "JOIN_ON", "USING", "JOIN_UNQUOTED_SOURCE", "JOIN_QUOTED_SOURCE", - "JOIN_COLON", "JOIN_UNQUOTED_IDENTIFER", "JOIN_QUOTED_IDENTIFIER", "JOIN_LINE_COMMENT", - "JOIN_MULTILINE_COMMENT", "JOIN_WS", "METRICS_PIPE", "METRICS_UNQUOTED_SOURCE", - "METRICS_QUOTED_SOURCE", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", - "METRICS_WS", "CLOSING_METRICS_COLON", "CLOSING_METRICS_COMMA", "CLOSING_METRICS_LINE_COMMENT", - "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "CLOSING_METRICS_QUOTED_IDENTIFIER", - "CLOSING_METRICS_UNQUOTED_IDENTIFIER", "CLOSING_METRICS_BY", "CLOSING_METRICS_PIPE", - "INSIST_PIPE", "INSIST_IDENTIFIER", "INSIST_WS", "INSIST_LINE_COMMENT", - "INSIST_MULTILINE_COMMENT" + "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "SHOW_PIPE", + "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } public static final String[] ruleNames = makeRuleNames(); private static String[] makeLiteralNames() { return new String[] { - null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'", - "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'", - "'sort'", "'stats'", "'where'", "'lookup'", null, null, null, null, null, - null, null, null, null, null, null, "'|'", null, null, null, "'by'", - "'and'", "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", "'false'", - "'first'", "'in'", "'is'", "'last'", "'like'", "'('", "'not'", "'null'", - "'nulls'", "'or'", "'?'", "'rlike'", "')'", "'true'", "'=='", "'=~'", - "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", - "'{'", "'}'", null, null, "']'", null, null, null, null, null, null, - null, null, "'metadata'", null, null, null, null, null, null, null, null, - "'as'", null, null, null, "'on'", "'with'", null, null, null, null, null, - null, null, null, null, null, "'info'", null, null, null, null, null, - null, null, null, null, null, null, null, null, "'join'", "'USING'" + null, null, null, null, null, "'enrich'", "'explain'", "'dissect'", "'eval'", + "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, "'from'", + "'lookup'", null, null, null, null, null, "'mv_expand'", "'drop'", "'keep'", + null, "'rename'", "'show'", null, null, null, null, "'on'", "'with'", + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, "'|'", null, null, null, "'by'", "'and'", "'asc'", "'='", + "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", "'in'", + "'is'", "'last'", "'like'", "'not'", "'null'", "'nulls'", "'or'", "'?'", + "'rlike'", "'true'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", + "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", null, null, "']'", null, + "')'", null, null, null, null, null, "'metadata'", null, null, null, + null, "'join'", "'USING'", null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, null, "'as'", null, null, null, "'info'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", - "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", - "WHERE", "JOIN_LOOKUP", "DEV_INLINESTATS", "DEV_INSIST", "DEV_LOOKUP", - "DEV_METRICS", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "UNKNOWN_CMD", - "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", + null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", + "ENRICH", "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", + "STATS", "WHERE", "DEV_INLINESTATS", "FROM", "JOIN_LOOKUP", "DEV_JOIN_FULL", + "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", "DEV_METRICS", "MV_EXPAND", + "DROP", "KEEP", "DEV_INSIST", "RENAME", "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT", + "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS", "ON", "WITH", "ENRICH_POLICY_NAME", + "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", + "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "SETTING", "SETTING_LINE_COMMENT", + "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", + "EXPLAIN_MULTILINE_COMMENT", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", - "LP", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "RP", "TRUE", "EQ", - "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", - "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NAMED_OR_POSITIONAL_PARAM", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", - "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "EXPLAIN_WS", - "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "METADATA", "UNQUOTED_SOURCE", - "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "ID_PATTERN", - "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", - "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "ON", - "WITH", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", - "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", "ENRICH_FIELD_MULTILINE_COMMENT", - "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", - "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", - "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", - "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", + "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "TRUE", "EQ", "CIEQ", + "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NAMED_OR_POSITIONAL_PARAM", + "OPENING_BRACKET", "CLOSING_BRACKET", "LP", "RP", "UNQUOTED_IDENTIFIER", + "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", + "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", + "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", - "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT", - "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "INSIST_WS", - "INSIST_LINE_COMMENT", "INSIST_MULTILINE_COMMENT" + "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "MVEXPAND_LINE_COMMENT", + "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", + "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", + "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", + "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -235,75 +239,84 @@ public EsqlBaseLexer(CharStream input) { @Override public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { switch (ruleIndex) { - case 17: + case 3: + return DEV_CHANGE_POINT_sempred((RuleContext)_localctx, predIndex); + case 14: return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex); + case 17: + return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); case 18: - return DEV_INSIST_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); case 19: - return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); case 20: - return DEV_METRICS_sempred((RuleContext)_localctx, predIndex); + return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex); case 21: - return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); - case 22: - return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); - case 23: - return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); + return DEV_METRICS_sempred((RuleContext)_localctx, predIndex); + case 25: + return DEV_INSIST_sempred((RuleContext)_localctx, predIndex); } return true; } - private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_CHANGE_POINT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 0: return this.isDevVersion(); } return true; } - private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 1: return this.isDevVersion(); } return true; } - private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 2: return this.isDevVersion(); } return true; } - private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 3: return this.isDevVersion(); } return true; } - private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 4: return this.isDevVersion(); } return true; } - private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 5: return this.isDevVersion(); } return true; } - private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 6: return this.isDevVersion(); } return true; } + private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 7: + return this.isDevVersion(); + } + return true; + } public static final String _serializedATN = - "\u0004\u0000\u0086\u0677\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ + "\u0004\u0000\u0087\u06ad\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ "\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ "\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ "\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ @@ -368,1021 +381,1066 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { "\u0002\u00d4\u0007\u00d4\u0002\u00d5\u0007\u00d5\u0002\u00d6\u0007\u00d6"+ "\u0002\u00d7\u0007\u00d7\u0002\u00d8\u0007\u00d8\u0002\u00d9\u0007\u00d9"+ "\u0002\u00da\u0007\u00da\u0002\u00db\u0007\u00db\u0002\u00dc\u0007\u00dc"+ - "\u0002\u00dd\u0007\u00dd\u0002\u00de\u0007\u00de\u0001\u0000\u0001\u0000"+ - "\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000"+ - "\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ + "\u0002\u00dd\u0007\u00dd\u0002\u00de\u0007\u00de\u0002\u00df\u0007\u00df"+ + "\u0002\u00e0\u0007\u00e0\u0002\u00e1\u0007\u00e1\u0002\u00e2\u0007\u00e2"+ + "\u0002\u00e3\u0007\u00e3\u0002\u00e4\u0007\u00e4\u0001\u0000\u0001\u0000"+ + "\u0001\u0000\u0001\u0000\u0005\u0000\u01e0\b\u0000\n\u0000\f\u0000\u01e3"+ + "\t\u0000\u0001\u0000\u0003\u0000\u01e6\b\u0000\u0001\u0000\u0003\u0000"+ + "\u01e9\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0005\u0001\u01f2\b\u0001\n\u0001\f\u0001\u01f5"+ + "\t\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0002\u0004\u0002\u01fd\b\u0002\u000b\u0002\f\u0002\u01fe\u0001\u0002"+ + "\u0001\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+ + "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+ + "\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+ - "\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001"+ - "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+ - "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001"+ - "\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+ + "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007"+ + "\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+ + "\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b"+ + "\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001"+ + "\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+ "\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ - "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u000f"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f"+ "\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010"+ "\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010"+ "\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+ - "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012"+ "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+ - "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013"+ "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+ - "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014"+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+ - "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015"+ "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+ + "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+ "\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+ - "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018"+ - "\u0004\u0018\u02a6\b\u0018\u000b\u0018\f\u0018\u02a7\u0001\u0018\u0001"+ - "\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0005\u0019\u02b0"+ - "\b\u0019\n\u0019\f\u0019\u02b3\t\u0019\u0001\u0019\u0003\u0019\u02b6\b"+ - "\u0019\u0001\u0019\u0003\u0019\u02b9\b\u0019\u0001\u0019\u0001\u0019\u0001"+ - "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0005\u001a\u02c2"+ - "\b\u001a\n\u001a\f\u001a\u02c5\t\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+ - "\u0001\u001a\u0001\u001a\u0001\u001b\u0004\u001b\u02cd\b\u001b\u000b\u001b"+ - "\f\u001b\u02ce\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c"+ - "\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f"+ - "\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001!\u0003!\u02e2\b!\u0001"+ - "!\u0004!\u02e5\b!\u000b!\f!\u02e6\u0001\"\u0001\"\u0001#\u0001#\u0001"+ - "$\u0001$\u0001$\u0003$\u02f0\b$\u0001%\u0001%\u0001&\u0001&\u0001&\u0003"+ - "&\u02f7\b&\u0001\'\u0001\'\u0001\'\u0005\'\u02fc\b\'\n\'\f\'\u02ff\t\'"+ - "\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u0307\b\'\n\'"+ - "\f\'\u030a\t\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0003\'\u0311\b"+ - "\'\u0001\'\u0003\'\u0314\b\'\u0003\'\u0316\b\'\u0001(\u0004(\u0319\b("+ - "\u000b(\f(\u031a\u0001)\u0004)\u031e\b)\u000b)\f)\u031f\u0001)\u0001)"+ - "\u0005)\u0324\b)\n)\f)\u0327\t)\u0001)\u0001)\u0004)\u032b\b)\u000b)\f"+ - ")\u032c\u0001)\u0004)\u0330\b)\u000b)\f)\u0331\u0001)\u0001)\u0005)\u0336"+ - "\b)\n)\f)\u0339\t)\u0003)\u033b\b)\u0001)\u0001)\u0001)\u0001)\u0004)"+ - "\u0341\b)\u000b)\f)\u0342\u0001)\u0001)\u0003)\u0347\b)\u0001*\u0001*"+ - "\u0001*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0001"+ - "-\u0001-\u0001.\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u00011\u0001"+ - "1\u00011\u00011\u00011\u00012\u00012\u00013\u00013\u00013\u00013\u0001"+ - "3\u00013\u00014\u00014\u00014\u00014\u00014\u00014\u00015\u00015\u0001"+ - "5\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00017\u00018\u0001"+ - "8\u00018\u00018\u00018\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0001"+ - ";\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001"+ - "<\u0001=\u0001=\u0001=\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001"+ - "?\u0001?\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001"+ - "B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0001"+ - "F\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001I\u0001"+ - "J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001"+ - "O\u0001O\u0001P\u0001P\u0001P\u0001P\u0001Q\u0001Q\u0001Q\u0003Q\u03cb"+ - "\bQ\u0001Q\u0005Q\u03ce\bQ\nQ\fQ\u03d1\tQ\u0001Q\u0001Q\u0004Q\u03d5\b"+ - "Q\u000bQ\fQ\u03d6\u0003Q\u03d9\bQ\u0001R\u0001R\u0001R\u0001R\u0001R\u0001"+ - "S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0005T\u03e7\bT\nT\fT\u03ea"+ - "\tT\u0001T\u0001T\u0003T\u03ee\bT\u0001T\u0004T\u03f1\bT\u000bT\fT\u03f2"+ - "\u0003T\u03f5\bT\u0001U\u0001U\u0004U\u03f9\bU\u000bU\fU\u03fa\u0001U"+ - "\u0001U\u0001V\u0001V\u0001W\u0001W\u0001W\u0001W\u0001X\u0001X\u0001"+ - "X\u0001X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+ - "Z\u0001[\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0001\\\u0001"+ - "]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001^\u0001_\u0001_\u0001"+ - "_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001"+ - "a\u0001b\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001d\u0001"+ - "d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001e\u0001"+ - "e\u0001e\u0001f\u0001f\u0001f\u0003f\u0448\bf\u0001g\u0004g\u044b\bg\u000b"+ - "g\fg\u044c\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001"+ - "j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001"+ - "l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001"+ - "n\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001"+ - "q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0003r\u047c\br\u0001s\u0001"+ - "s\u0003s\u0480\bs\u0001s\u0005s\u0483\bs\ns\fs\u0486\ts\u0001s\u0001s"+ - "\u0003s\u048a\bs\u0001s\u0004s\u048d\bs\u000bs\fs\u048e\u0003s\u0491\b"+ - "s\u0001t\u0001t\u0004t\u0495\bt\u000bt\ft\u0496\u0001u\u0001u\u0001u\u0001"+ - "u\u0001v\u0001v\u0001v\u0001v\u0001w\u0001w\u0001w\u0001w\u0001x\u0001"+ - "x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001"+ - "z\u0001z\u0001{\u0001{\u0001{\u0001{\u0001|\u0001|\u0001|\u0001|\u0001"+ - "}\u0001}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001\u007f\u0001\u007f\u0001"+ - "\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0080\u0001"+ - "\u0081\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0082\u0001\u0082\u0001"+ - "\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083\u0001"+ - "\u0083\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001"+ - "\u0085\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0085\u0001\u0086\u0001"+ - "\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001"+ - "\u0087\u0001\u0087\u0001\u0088\u0004\u0088\u04ea\b\u0088\u000b\u0088\f"+ - "\u0088\u04eb\u0001\u0088\u0001\u0088\u0003\u0088\u04f0\b\u0088\u0001\u0088"+ - "\u0004\u0088\u04f3\b\u0088\u000b\u0088\f\u0088\u04f4\u0001\u0089\u0001"+ - "\u0089\u0001\u0089\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0001"+ - "\u008a\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008c\u0001"+ - "\u008c\u0001\u008c\u0001\u008c\u0001\u008d\u0001\u008d\u0001\u008d\u0001"+ - "\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001\u008e\u0001"+ - "\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u0090\u0001"+ - "\u0090\u0001\u0090\u0001\u0090\u0001\u0091\u0001\u0091\u0001\u0091\u0001"+ - "\u0091\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0093\u0001"+ - "\u0093\u0001\u0093\u0001\u0093\u0001\u0094\u0001\u0094\u0001\u0094\u0001"+ - "\u0094\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0096\u0001"+ + "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018"+ + "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019"+ + "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a"+ + "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+ + "\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b"+ + "\u0001\u001b\u0001\u001b\u0001\u001c\u0004\u001c\u02e9\b\u001c\u000b\u001c"+ + "\f\u001c\u02ea\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+ + "\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001 "+ + "\u0001 \u0001!\u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ + "#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0001%\u0001%\u0001"+ + "%\u0001%\u0001&\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+ + "\'\u0001(\u0001(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001)\u0001"+ + ")\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ + ",\u0004,\u0331\b,\u000b,\f,\u0332\u0001,\u0001,\u0003,\u0337\b,\u0001"+ + ",\u0004,\u033a\b,\u000b,\f,\u033b\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+ + ".\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+ + "0\u00011\u00011\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u0001"+ + "2\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00015\u0001"+ + "5\u00015\u00015\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u0001"+ + "7\u00018\u00018\u00018\u00018\u00019\u00019\u00019\u00019\u0001:\u0001"+ + ":\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+ + "<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001"+ + "?\u0001?\u0001?\u0001?\u0001?\u0004?\u038e\b?\u000b?\f?\u038f\u0001@\u0001"+ + "@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001"+ + "B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+ + "D\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001"+ + "G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001I\u0001I\u0001J\u0001"+ + "J\u0001K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0003M\u03c3\bM\u0001"+ + "M\u0004M\u03c6\bM\u000bM\fM\u03c7\u0001N\u0001N\u0001O\u0001O\u0001P\u0001"+ + "P\u0001P\u0003P\u03d1\bP\u0001Q\u0001Q\u0001R\u0001R\u0001R\u0003R\u03d8"+ + "\bR\u0001S\u0001S\u0001S\u0005S\u03dd\bS\nS\fS\u03e0\tS\u0001S\u0001S"+ + "\u0001S\u0001S\u0001S\u0001S\u0005S\u03e8\bS\nS\fS\u03eb\tS\u0001S\u0001"+ + "S\u0001S\u0001S\u0001S\u0003S\u03f2\bS\u0001S\u0003S\u03f5\bS\u0003S\u03f7"+ + "\bS\u0001T\u0004T\u03fa\bT\u000bT\fT\u03fb\u0001U\u0004U\u03ff\bU\u000b"+ + "U\fU\u0400\u0001U\u0001U\u0005U\u0405\bU\nU\fU\u0408\tU\u0001U\u0001U"+ + "\u0004U\u040c\bU\u000bU\fU\u040d\u0001U\u0004U\u0411\bU\u000bU\fU\u0412"+ + "\u0001U\u0001U\u0005U\u0417\bU\nU\fU\u041a\tU\u0003U\u041c\bU\u0001U\u0001"+ + "U\u0001U\u0001U\u0004U\u0422\bU\u000bU\fU\u0423\u0001U\u0001U\u0003U\u0428"+ + "\bU\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0001W\u0001X\u0001X\u0001"+ + "X\u0001X\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0001\\\u0001"+ + "\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001_\u0001_\u0001"+ + "_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001`\u0001`\u0001"+ + "a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001"+ + "c\u0001d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001"+ + "f\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001g\u0001"+ + "g\u0001h\u0001h\u0001h\u0001i\u0001i\u0001j\u0001j\u0001j\u0001j\u0001"+ + "j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+ + "m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001o\u0001o\u0001p\u0001p\u0001"+ + "p\u0001q\u0001q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001t\u0001t\u0001"+ + "u\u0001u\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001y\u0001y\u0001"+ + "z\u0001z\u0001z\u0001z\u0001{\u0001{\u0001{\u0003{\u04a8\b{\u0001{\u0005"+ + "{\u04ab\b{\n{\f{\u04ae\t{\u0001{\u0001{\u0004{\u04b2\b{\u000b{\f{\u04b3"+ + "\u0003{\u04b6\b{\u0001|\u0001|\u0001|\u0001|\u0001|\u0001}\u0001}\u0001"+ + "}\u0001}\u0001}\u0001~\u0001~\u0001~\u0001~\u0001~\u0001\u007f\u0001\u007f"+ + "\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0005\u0080"+ + "\u04ce\b\u0080\n\u0080\f\u0080\u04d1\t\u0080\u0001\u0080\u0001\u0080\u0003"+ + "\u0080\u04d5\b\u0080\u0001\u0080\u0004\u0080\u04d8\b\u0080\u000b\u0080"+ + "\f\u0080\u04d9\u0003\u0080\u04dc\b\u0080\u0001\u0081\u0001\u0081\u0004"+ + "\u0081\u04e0\b\u0081\u000b\u0081\f\u0081\u04e1\u0001\u0081\u0001\u0081"+ + "\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001\u0083\u0001\u0083"+ + "\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085\u0001\u0085"+ + "\u0001\u0085\u0001\u0085\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0086"+ + "\u0001\u0086\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088"+ + "\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089"+ + "\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008b"+ + "\u0001\u008b\u0001\u008b\u0001\u008b\u0001\u008c\u0001\u008c\u0001\u008c"+ + "\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+ + "\u0001\u008d\u0001\u008d\u0001\u008d\u0003\u008d\u0519\b\u008d\u0001\u008e"+ + "\u0004\u008e\u051c\b\u008e\u000b\u008e\f\u008e\u051d\u0001\u008f\u0001"+ + "\u008f\u0001\u008f\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001"+ + "\u0090\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0092\u0001"+ + "\u0092\u0001\u0092\u0001\u0092\u0001\u0093\u0001\u0093\u0001\u0093\u0001"+ + "\u0093\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001\u0094\u0001"+ + "\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0095\u0001\u0096\u0001"+ "\u0096\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001"+ - "\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0099\u0001"+ + "\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0001"+ + "\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001\u0098\u0001"+ "\u0099\u0001\u0099\u0001\u0099\u0001\u0099\u0001\u009a\u0001\u009a\u0001"+ "\u009a\u0001\u009a\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001"+ "\u009c\u0001\u009c\u0001\u009c\u0001\u009c\u0001\u009d\u0001\u009d\u0001"+ "\u009d\u0001\u009d\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009e\u0001"+ "\u009f\u0001\u009f\u0001\u009f\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001"+ "\u00a0\u0001\u00a0\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a3\u0001"+ - "\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001"+ - "\u00a4\u0001\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001"+ + "\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001\u00a3\u0001"+ + "\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001"+ + "\u00a4\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001"+ "\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a7\u0001\u00a7\u0001"+ - "\u00a7\u0001\u00a7\u0001\u00a7\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001"+ - "\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0004"+ - "\u00a9\u0582\b\u00a9\u000b\u00a9\f\u00a9\u0583\u0001\u00aa\u0001\u00aa"+ - "\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab"+ - "\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ad\u0001\u00ad"+ - "\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001\u00ae"+ - "\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00b0"+ - "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1"+ - "\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2"+ - "\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b4\u0001\u00b4"+ - "\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5"+ - "\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7"+ - "\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8\u0001\u00b8"+ - "\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9"+ - "\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001\u00bb"+ - "\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001\u00bc"+ - "\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00be\u0001\u00be"+ - "\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00bf\u0001\u00bf\u0001\u00bf"+ - "\u0001\u00bf\u0001\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0"+ - "\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1"+ - "\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+ - "\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3"+ - "\u0001\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5"+ - "\u0001\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6"+ - "\u0001\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c8"+ - "\u0001\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9\u0001\u00c9\u0001\u00c9"+ - "\u0001\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00cb"+ - "\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001\u00cc"+ - "\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cc\u0001\u00cd\u0001\u00cd"+ - "\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00ce\u0001\u00ce"+ - "\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf"+ - "\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1"+ - "\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2"+ - "\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d3\u0001\u00d3"+ - "\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d4"+ - "\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d6\u0001\u00d6"+ - "\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7"+ - "\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d8\u0001\u00d8"+ - "\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d9\u0001\u00d9"+ - "\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001\u00da"+ - "\u0001\u00da\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db"+ - "\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd"+ - "\u0001\u00dd\u0001\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de"+ - "\u0002\u02c3\u0308\u0000\u00df\u0011\u0001\u0013\u0002\u0015\u0003\u0017"+ - "\u0004\u0019\u0005\u001b\u0006\u001d\u0007\u001f\b!\t#\n%\u000b\'\f)\r"+ - "+\u000e-\u000f/\u00101\u00113\u00125\u00137\u00149\u0015;\u0016=\u0017"+ - "?\u0018A\u0019C\u001aE\u001bG\u001cI\u001dK\u0000M\u0000O\u0000Q\u0000"+ - "S\u0000U\u0000W\u0000Y\u0000[\u0000]\u0000_\u001ea\u001fc e!g\"i#k$m%"+ - "o&q\'s(u)w*y+{,}-\u007f.\u0081/\u00830\u00851\u00872\u00893\u008b4\u008d"+ - "5\u008f6\u00917\u00938\u00959\u0097:\u0099;\u009b<\u009d=\u009f>\u00a1"+ - "?\u00a3@\u00a5A\u00a7B\u00a9C\u00abD\u00adE\u00afF\u00b1\u0000\u00b3G"+ - "\u00b5H\u00b7I\u00b9J\u00bb\u0000\u00bdK\u00bfL\u00c1M\u00c3N\u00c5\u0000"+ - "\u00c7\u0000\u00c9O\u00cbP\u00cdQ\u00cf\u0000\u00d1\u0000\u00d3\u0000"+ - "\u00d5\u0000\u00d7\u0000\u00d9\u0000\u00dbR\u00dd\u0000\u00dfS\u00e1\u0000"+ - "\u00e3\u0000\u00e5T\u00e7U\u00e9V\u00eb\u0000\u00ed\u0000\u00ef\u0000"+ - "\u00f1\u0000\u00f3\u0000\u00f5\u0000\u00f7\u0000\u00f9W\u00fbX\u00fdY"+ - "\u00ffZ\u0101\u0000\u0103\u0000\u0105\u0000\u0107\u0000\u0109\u0000\u010b"+ - "\u0000\u010d[\u010f\u0000\u0111\\\u0113]\u0115^\u0117\u0000\u0119\u0000"+ - "\u011b_\u011d`\u011f\u0000\u0121a\u0123\u0000\u0125b\u0127c\u0129d\u012b"+ - "\u0000\u012d\u0000\u012f\u0000\u0131\u0000\u0133\u0000\u0135\u0000\u0137"+ - "\u0000\u0139\u0000\u013b\u0000\u013de\u013ff\u0141g\u0143\u0000\u0145"+ - "\u0000\u0147\u0000\u0149\u0000\u014b\u0000\u014d\u0000\u014fh\u0151i\u0153"+ - "j\u0155\u0000\u0157k\u0159l\u015bm\u015dn\u015f\u0000\u0161\u0000\u0163"+ - "o\u0165p\u0167q\u0169r\u016b\u0000\u016d\u0000\u016f\u0000\u0171\u0000"+ - "\u0173\u0000\u0175\u0000\u0177\u0000\u0179s\u017bt\u017du\u017f\u0000"+ - "\u0181\u0000\u0183\u0000\u0185\u0000\u0187v\u0189w\u018bx\u018d\u0000"+ - "\u018fy\u0191\u0000\u0193\u0000\u0195z\u0197\u0000\u0199\u0000\u019b\u0000"+ - "\u019d\u0000\u019f\u0000\u01a1{\u01a3|\u01a5}\u01a7\u0000\u01a9\u0000"+ - "\u01ab\u0000\u01ad~\u01af\u007f\u01b1\u0080\u01b3\u0000\u01b5\u0000\u01b7"+ - "\u0081\u01b9\u0082\u01bb\u0083\u01bd\u0000\u01bf\u0000\u01c1\u0000\u01c3"+ - "\u0000\u01c5\u0000\u01c7\u0000\u01c9\u0084\u01cb\u0085\u01cd\u0086\u0011"+ - "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e"+ - "\u000f\u0010$\u0002\u0000DDdd\u0002\u0000IIii\u0002\u0000SSss\u0002\u0000"+ - "EEee\u0002\u0000CCcc\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000OOoo\u0002"+ - "\u0000PPpp\u0002\u0000NNnn\u0002\u0000HHhh\u0002\u0000VVvv\u0002\u0000"+ - "AAaa\u0002\u0000LLll\u0002\u0000XXxx\u0002\u0000FFff\u0002\u0000MMmm\u0002"+ - "\u0000GGgg\u0002\u0000KKkk\u0002\u0000WWww\u0002\u0000UUuu\u0006\u0000"+ - "\t\n\r\r //[[]]\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r\r \u0001\u0000"+ + "\u00a7\u0001\u00a7\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001\u00a8\u0001"+ + "\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00aa\u0001\u00aa\u0001"+ + "\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001\u00ab\u0001"+ + "\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001"+ + "\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001"+ + "\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001"+ + "\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001"+ + "\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001"+ + "\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001"+ + "\u00b3\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001"+ + "\u00b4\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b5\u0001\u00b6\u0001"+ + "\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001"+ + "\u00b7\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001"+ + "\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001"+ + "\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001"+ + "\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001"+ + "\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001"+ + "\u00bd\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001\u00be\u0001"+ + "\u00be\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001"+ + "\u00bf\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001"+ + "\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001"+ + "\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001"+ + "\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001"+ + "\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001"+ + "\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c8\u0001"+ + "\u00c8\u0001\u00c8\u0001\u00c8\u0001\u00c9\u0001\u00c9\u0001\u00c9\u0001"+ + "\u00c9\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001"+ + "\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cb\u0001\u00cc\u0001\u00cc\u0001"+ + "\u00cc\u0001\u00cc\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001\u00cd\u0001"+ + "\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00ce\u0001\u00cf\u0001\u00cf\u0001"+ + "\u00cf\u0001\u00cf\u0003\u00cf\u0643\b\u00cf\u0001\u00d0\u0001\u00d0\u0003"+ + "\u00d0\u0647\b\u00d0\u0001\u00d0\u0005\u00d0\u064a\b\u00d0\n\u00d0\f\u00d0"+ + "\u064d\t\u00d0\u0001\u00d0\u0001\u00d0\u0003\u00d0\u0651\b\u00d0\u0001"+ + "\u00d0\u0004\u00d0\u0654\b\u00d0\u000b\u00d0\f\u00d0\u0655\u0003\u00d0"+ + "\u0658\b\u00d0\u0001\u00d1\u0001\u00d1\u0004\u00d1\u065c\b\u00d1\u000b"+ + "\u00d1\f\u00d1\u065d\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+ + "\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001"+ + "\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001"+ + "\u00d5\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001"+ + "\u00d7\u0001\u00d7\u0001\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001"+ + "\u00d8\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001"+ + "\u00da\u0001\u00da\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001"+ + "\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001"+ + "\u00dd\u0001\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001"+ + "\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001"+ + "\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001"+ + "\u00e1\u0001\u00e1\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001"+ + "\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e4\u0001\u00e4\u0001"+ + "\u00e4\u0001\u00e4\u0002\u01f3\u03e9\u0000\u00e5\u0011\u0001\u0013\u0002"+ + "\u0015\u0003\u0017\u0004\u0019\u0005\u001b\u0006\u001d\u0007\u001f\b!"+ + "\t#\n%\u000b\'\f)\r+\u000e-\u000f/\u00101\u00113\u00125\u00137\u00149"+ + "\u0015;\u0016=\u0017?\u0018A\u0019C\u001aE\u001bG\u001cI\u001dK\u0000"+ + "M\u0000O\u0000Q\u0000S\u0000U\u0000W\u0000Y\u001e[\u001f] _\u0000a\u0000"+ + "c!e\"g\u0000i#k\u0000m$o%q&s\u0000u\u0000w\u0000y\u0000{\u0000}\u0000"+ + "\u007f\u0000\u0081\u0000\u0083\u0000\u0085\'\u0087(\u0089)\u008b\u0000"+ + "\u008d\u0000\u008f*\u0091+\u0093,\u0095-\u0097\u0000\u0099\u0000\u009b"+ + ".\u009d/\u009f0\u00a11\u00a3\u0000\u00a5\u0000\u00a7\u0000\u00a9\u0000"+ + "\u00ab\u0000\u00ad\u0000\u00af\u0000\u00b1\u0000\u00b3\u0000\u00b5\u0000"+ + "\u00b72\u00b93\u00bb4\u00bd5\u00bf6\u00c17\u00c38\u00c59\u00c7:\u00c9"+ + ";\u00cb<\u00cd=\u00cf>\u00d1?\u00d3@\u00d5A\u00d7B\u00d9C\u00dbD\u00dd"+ + "E\u00dfF\u00e1G\u00e3H\u00e5I\u00e7J\u00e9K\u00ebL\u00edM\u00efN\u00f1"+ + "O\u00f3P\u00f5Q\u00f7R\u00f9S\u00fbT\u00fdU\u00ffV\u0101W\u0103X\u0105"+ + "\u0000\u0107Y\u0109Z\u010b[\u010d\\\u010f]\u0111^\u0113\u0000\u0115_\u0117"+ + "`\u0119a\u011bb\u011d\u0000\u011f\u0000\u0121\u0000\u0123\u0000\u0125"+ + "\u0000\u0127\u0000\u0129c\u012b\u0000\u012dd\u012f\u0000\u0131\u0000\u0133"+ + "e\u0135f\u0137g\u0139\u0000\u013bh\u013d\u0000\u013f\u0000\u0141i\u0143"+ + "\u0000\u0145\u0000\u0147\u0000\u0149\u0000\u014b\u0000\u014dj\u014fk\u0151"+ + "l\u0153\u0000\u0155\u0000\u0157\u0000\u0159\u0000\u015b\u0000\u015d\u0000"+ + "\u015f\u0000\u0161m\u0163n\u0165o\u0167\u0000\u0169\u0000\u016b\u0000"+ + "\u016d\u0000\u016fp\u0171q\u0173r\u0175\u0000\u0177\u0000\u0179\u0000"+ + "\u017bs\u017dt\u017fu\u0181\u0000\u0183\u0000\u0185v\u0187w\u0189x\u018b"+ + "\u0000\u018d\u0000\u018f\u0000\u0191\u0000\u0193\u0000\u0195\u0000\u0197"+ + "\u0000\u0199\u0000\u019b\u0000\u019d\u0000\u019fy\u01a1z\u01a3{\u01a5"+ + "\u0000\u01a7\u0000\u01a9\u0000\u01ab\u0000\u01ad\u0000\u01af\u0000\u01b1"+ + "\u0000\u01b3|\u01b5}\u01b7~\u01b9\u007f\u01bb\u0000\u01bd\u0000\u01bf"+ + "\u0000\u01c1\u0000\u01c3\u0000\u01c5\u0000\u01c7\u0080\u01c9\u0000\u01cb"+ + "\u0081\u01cd\u0082\u01cf\u0083\u01d1\u0000\u01d3\u0084\u01d5\u0085\u01d7"+ + "\u0086\u01d9\u0087\u0011\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+ + "\b\t\n\u000b\f\r\u000e\u000f\u0010$\u0002\u0000\n\n\r\r\u0003\u0000\t"+ + "\n\r\r \u0002\u0000CCcc\u0002\u0000HHhh\u0002\u0000AAaa\u0002\u0000N"+ + "Nnn\u0002\u0000GGgg\u0002\u0000EEee\u0002\u0000PPpp\u0002\u0000OOoo\u0002"+ + "\u0000IIii\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000XXxx\u0002\u0000"+ + "LLll\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000VVvv\u0002\u0000KKkk\u0002"+ + "\u0000MMmm\u0002\u0000WWww\u0002\u0000FFff\u0002\u0000UUuu\u0006\u0000"+ + "\t\n\r\r //[[]]\u000b\u0000\t\n\r\r \"#,,//::<<>?\\\\||\u0001\u0000"+ "09\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000\n\n\r\r\"\""+ "\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000YYyy\u000b"+ - "\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u000b\u0000\t\n\r\r"+ - " \"#,,//::<<>?\\\\||\u0002\u0000JJjj\u0691\u0000\u0011\u0001\u0000\u0000"+ - "\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015\u0001\u0000\u0000"+ - "\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019\u0001\u0000\u0000"+ - "\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d\u0001\u0000\u0000"+ - "\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001\u0000\u0000\u0000"+ - "\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000\u0000\u0000\'"+ - "\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000\u0000+\u0001\u0000"+ - "\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/\u0001\u0000\u0000\u0000"+ - "\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000\u0000\u0000\u00005"+ - "\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000\u00009\u0001\u0000"+ - "\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000=\u0001\u0000\u0000\u0000"+ - "\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000\u0000\u0000\u0000C"+ - "\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000\u0000G\u0001\u0000"+ - "\u0000\u0000\u0001I\u0001\u0000\u0000\u0000\u0001_\u0001\u0000\u0000\u0000"+ - "\u0001a\u0001\u0000\u0000\u0000\u0001c\u0001\u0000\u0000\u0000\u0001e"+ - "\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000\u0001i\u0001\u0000"+ - "\u0000\u0000\u0001k\u0001\u0000\u0000\u0000\u0001m\u0001\u0000\u0000\u0000"+ - "\u0001o\u0001\u0000\u0000\u0000\u0001q\u0001\u0000\u0000\u0000\u0001s"+ - "\u0001\u0000\u0000\u0000\u0001u\u0001\u0000\u0000\u0000\u0001w\u0001\u0000"+ - "\u0000\u0000\u0001y\u0001\u0000\u0000\u0000\u0001{\u0001\u0000\u0000\u0000"+ - "\u0001}\u0001\u0000\u0000\u0000\u0001\u007f\u0001\u0000\u0000\u0000\u0001"+ - "\u0081\u0001\u0000\u0000\u0000\u0001\u0083\u0001\u0000\u0000\u0000\u0001"+ - "\u0085\u0001\u0000\u0000\u0000\u0001\u0087\u0001\u0000\u0000\u0000\u0001"+ - "\u0089\u0001\u0000\u0000\u0000\u0001\u008b\u0001\u0000\u0000\u0000\u0001"+ - "\u008d\u0001\u0000\u0000\u0000\u0001\u008f\u0001\u0000\u0000\u0000\u0001"+ - "\u0091\u0001\u0000\u0000\u0000\u0001\u0093\u0001\u0000\u0000\u0000\u0001"+ - "\u0095\u0001\u0000\u0000\u0000\u0001\u0097\u0001\u0000\u0000\u0000\u0001"+ - "\u0099\u0001\u0000\u0000\u0000\u0001\u009b\u0001\u0000\u0000\u0000\u0001"+ - "\u009d\u0001\u0000\u0000\u0000\u0001\u009f\u0001\u0000\u0000\u0000\u0001"+ - "\u00a1\u0001\u0000\u0000\u0000\u0001\u00a3\u0001\u0000\u0000\u0000\u0001"+ - "\u00a5\u0001\u0000\u0000\u0000\u0001\u00a7\u0001\u0000\u0000\u0000\u0001"+ - "\u00a9\u0001\u0000\u0000\u0000\u0001\u00ab\u0001\u0000\u0000\u0000\u0001"+ - "\u00ad\u0001\u0000\u0000\u0000\u0001\u00af\u0001\u0000\u0000\u0000\u0001"+ - "\u00b1\u0001\u0000\u0000\u0000\u0001\u00b3\u0001\u0000\u0000\u0000\u0001"+ - "\u00b5\u0001\u0000\u0000\u0000\u0001\u00b7\u0001\u0000\u0000\u0000\u0001"+ - "\u00b9\u0001\u0000\u0000\u0000\u0001\u00bd\u0001\u0000\u0000\u0000\u0001"+ - "\u00bf\u0001\u0000\u0000\u0000\u0001\u00c1\u0001\u0000\u0000\u0000\u0001"+ - "\u00c3\u0001\u0000\u0000\u0000\u0002\u00c5\u0001\u0000\u0000\u0000\u0002"+ - "\u00c7\u0001\u0000\u0000\u0000\u0002\u00c9\u0001\u0000\u0000\u0000\u0002"+ - "\u00cb\u0001\u0000\u0000\u0000\u0002\u00cd\u0001\u0000\u0000\u0000\u0003"+ - "\u00cf\u0001\u0000\u0000\u0000\u0003\u00d1\u0001\u0000\u0000\u0000\u0003"+ - "\u00d3\u0001\u0000\u0000\u0000\u0003\u00d5\u0001\u0000\u0000\u0000\u0003"+ - "\u00d7\u0001\u0000\u0000\u0000\u0003\u00d9\u0001\u0000\u0000\u0000\u0003"+ - "\u00db\u0001\u0000\u0000\u0000\u0003\u00df\u0001\u0000\u0000\u0000\u0003"+ - "\u00e1\u0001\u0000\u0000\u0000\u0003\u00e3\u0001\u0000\u0000\u0000\u0003"+ - "\u00e5\u0001\u0000\u0000\u0000\u0003\u00e7\u0001\u0000\u0000\u0000\u0003"+ - "\u00e9\u0001\u0000\u0000\u0000\u0004\u00eb\u0001\u0000\u0000\u0000\u0004"+ - "\u00ed\u0001\u0000\u0000\u0000\u0004\u00ef\u0001\u0000\u0000\u0000\u0004"+ - "\u00f1\u0001\u0000\u0000\u0000\u0004\u00f3\u0001\u0000\u0000\u0000\u0004"+ - "\u00f9\u0001\u0000\u0000\u0000\u0004\u00fb\u0001\u0000\u0000\u0000\u0004"+ - "\u00fd\u0001\u0000\u0000\u0000\u0004\u00ff\u0001\u0000\u0000\u0000\u0005"+ - "\u0101\u0001\u0000\u0000\u0000\u0005\u0103\u0001\u0000\u0000\u0000\u0005"+ - "\u0105\u0001\u0000\u0000\u0000\u0005\u0107\u0001\u0000\u0000\u0000\u0005"+ - "\u0109\u0001\u0000\u0000\u0000\u0005\u010b\u0001\u0000\u0000\u0000\u0005"+ - "\u010d\u0001\u0000\u0000\u0000\u0005\u010f\u0001\u0000\u0000\u0000\u0005"+ - "\u0111\u0001\u0000\u0000\u0000\u0005\u0113\u0001\u0000\u0000\u0000\u0005"+ - "\u0115\u0001\u0000\u0000\u0000\u0006\u0117\u0001\u0000\u0000\u0000\u0006"+ - "\u0119\u0001\u0000\u0000\u0000\u0006\u011b\u0001\u0000\u0000\u0000\u0006"+ - "\u011d\u0001\u0000\u0000\u0000\u0006\u0121\u0001\u0000\u0000\u0000\u0006"+ - "\u0123\u0001\u0000\u0000\u0000\u0006\u0125\u0001\u0000\u0000\u0000\u0006"+ - "\u0127\u0001\u0000\u0000\u0000\u0006\u0129\u0001\u0000\u0000\u0000\u0007"+ - "\u012b\u0001\u0000\u0000\u0000\u0007\u012d\u0001\u0000\u0000\u0000\u0007"+ - "\u012f\u0001\u0000\u0000\u0000\u0007\u0131\u0001\u0000\u0000\u0000\u0007"+ - "\u0133\u0001\u0000\u0000\u0000\u0007\u0135\u0001\u0000\u0000\u0000\u0007"+ - "\u0137\u0001\u0000\u0000\u0000\u0007\u0139\u0001\u0000\u0000\u0000\u0007"+ - "\u013b\u0001\u0000\u0000\u0000\u0007\u013d\u0001\u0000\u0000\u0000\u0007"+ - "\u013f\u0001\u0000\u0000\u0000\u0007\u0141\u0001\u0000\u0000\u0000\b\u0143"+ - "\u0001\u0000\u0000\u0000\b\u0145\u0001\u0000\u0000\u0000\b\u0147\u0001"+ - "\u0000\u0000\u0000\b\u0149\u0001\u0000\u0000\u0000\b\u014b\u0001\u0000"+ - "\u0000\u0000\b\u014d\u0001\u0000\u0000\u0000\b\u014f\u0001\u0000\u0000"+ - "\u0000\b\u0151\u0001\u0000\u0000\u0000\b\u0153\u0001\u0000\u0000\u0000"+ - "\t\u0155\u0001\u0000\u0000\u0000\t\u0157\u0001\u0000\u0000\u0000\t\u0159"+ - "\u0001\u0000\u0000\u0000\t\u015b\u0001\u0000\u0000\u0000\t\u015d\u0001"+ - "\u0000\u0000\u0000\n\u015f\u0001\u0000\u0000\u0000\n\u0161\u0001\u0000"+ - "\u0000\u0000\n\u0163\u0001\u0000\u0000\u0000\n\u0165\u0001\u0000\u0000"+ - "\u0000\n\u0167\u0001\u0000\u0000\u0000\n\u0169\u0001\u0000\u0000\u0000"+ - "\u000b\u016b\u0001\u0000\u0000\u0000\u000b\u016d\u0001\u0000\u0000\u0000"+ - "\u000b\u016f\u0001\u0000\u0000\u0000\u000b\u0171\u0001\u0000\u0000\u0000"+ - "\u000b\u0173\u0001\u0000\u0000\u0000\u000b\u0175\u0001\u0000\u0000\u0000"+ - "\u000b\u0177\u0001\u0000\u0000\u0000\u000b\u0179\u0001\u0000\u0000\u0000"+ - "\u000b\u017b\u0001\u0000\u0000\u0000\u000b\u017d\u0001\u0000\u0000\u0000"+ - "\f\u017f\u0001\u0000\u0000\u0000\f\u0181\u0001\u0000\u0000\u0000\f\u0183"+ - "\u0001\u0000\u0000\u0000\f\u0185\u0001\u0000\u0000\u0000\f\u0187\u0001"+ - "\u0000\u0000\u0000\f\u0189\u0001\u0000\u0000\u0000\f\u018b\u0001\u0000"+ - "\u0000\u0000\r\u018d\u0001\u0000\u0000\u0000\r\u018f\u0001\u0000\u0000"+ - "\u0000\r\u0191\u0001\u0000\u0000\u0000\r\u0193\u0001\u0000\u0000\u0000"+ - "\r\u0195\u0001\u0000\u0000\u0000\r\u0197\u0001\u0000\u0000\u0000\r\u0199"+ - "\u0001\u0000\u0000\u0000\r\u019b\u0001\u0000\u0000\u0000\r\u019d\u0001"+ - "\u0000\u0000\u0000\r\u019f\u0001\u0000\u0000\u0000\r\u01a1\u0001\u0000"+ - "\u0000\u0000\r\u01a3\u0001\u0000\u0000\u0000\r\u01a5\u0001\u0000\u0000"+ - "\u0000\u000e\u01a7\u0001\u0000\u0000\u0000\u000e\u01a9\u0001\u0000\u0000"+ - "\u0000\u000e\u01ab\u0001\u0000\u0000\u0000\u000e\u01ad\u0001\u0000\u0000"+ - "\u0000\u000e\u01af\u0001\u0000\u0000\u0000\u000e\u01b1\u0001\u0000\u0000"+ - "\u0000\u000f\u01b3\u0001\u0000\u0000\u0000\u000f\u01b5\u0001\u0000\u0000"+ - "\u0000\u000f\u01b7\u0001\u0000\u0000\u0000\u000f\u01b9\u0001\u0000\u0000"+ - "\u0000\u000f\u01bb\u0001\u0000\u0000\u0000\u000f\u01bd\u0001\u0000\u0000"+ - "\u0000\u000f\u01bf\u0001\u0000\u0000\u0000\u000f\u01c1\u0001\u0000\u0000"+ - "\u0000\u000f\u01c3\u0001\u0000\u0000\u0000\u0010\u01c5\u0001\u0000\u0000"+ - "\u0000\u0010\u01c7\u0001\u0000\u0000\u0000\u0010\u01c9\u0001\u0000\u0000"+ - "\u0000\u0010\u01cb\u0001\u0000\u0000\u0000\u0010\u01cd\u0001\u0000\u0000"+ - "\u0000\u0011\u01cf\u0001\u0000\u0000\u0000\u0013\u01d9\u0001\u0000\u0000"+ - "\u0000\u0015\u01e0\u0001\u0000\u0000\u0000\u0017\u01e9\u0001\u0000\u0000"+ - "\u0000\u0019\u01f0\u0001\u0000\u0000\u0000\u001b\u01fa\u0001\u0000\u0000"+ - "\u0000\u001d\u0201\u0001\u0000\u0000\u0000\u001f\u0208\u0001\u0000\u0000"+ - "\u0000!\u020f\u0001\u0000\u0000\u0000#\u0217\u0001\u0000\u0000\u0000%"+ - "\u0223\u0001\u0000\u0000\u0000\'\u022c\u0001\u0000\u0000\u0000)\u0232"+ - "\u0001\u0000\u0000\u0000+\u0239\u0001\u0000\u0000\u0000-\u0240\u0001\u0000"+ - "\u0000\u0000/\u0248\u0001\u0000\u0000\u00001\u0250\u0001\u0000\u0000\u0000"+ - "3\u0259\u0001\u0000\u0000\u00005\u0268\u0001\u0000\u0000\u00007\u0274"+ - "\u0001\u0000\u0000\u00009\u0280\u0001\u0000\u0000\u0000;\u028b\u0001\u0000"+ - "\u0000\u0000=\u0293\u0001\u0000\u0000\u0000?\u029b\u0001\u0000\u0000\u0000"+ - "A\u02a5\u0001\u0000\u0000\u0000C\u02ab\u0001\u0000\u0000\u0000E\u02bc"+ - "\u0001\u0000\u0000\u0000G\u02cc\u0001\u0000\u0000\u0000I\u02d2\u0001\u0000"+ - "\u0000\u0000K\u02d6\u0001\u0000\u0000\u0000M\u02d8\u0001\u0000\u0000\u0000"+ - "O\u02da\u0001\u0000\u0000\u0000Q\u02dd\u0001\u0000\u0000\u0000S\u02df"+ - "\u0001\u0000\u0000\u0000U\u02e8\u0001\u0000\u0000\u0000W\u02ea\u0001\u0000"+ - "\u0000\u0000Y\u02ef\u0001\u0000\u0000\u0000[\u02f1\u0001\u0000\u0000\u0000"+ - "]\u02f6\u0001\u0000\u0000\u0000_\u0315\u0001\u0000\u0000\u0000a\u0318"+ - "\u0001\u0000\u0000\u0000c\u0346\u0001\u0000\u0000\u0000e\u0348\u0001\u0000"+ - "\u0000\u0000g\u034b\u0001\u0000\u0000\u0000i\u034f\u0001\u0000\u0000\u0000"+ - "k\u0353\u0001\u0000\u0000\u0000m\u0355\u0001\u0000\u0000\u0000o\u0358"+ - "\u0001\u0000\u0000\u0000q\u035a\u0001\u0000\u0000\u0000s\u035c\u0001\u0000"+ - "\u0000\u0000u\u0361\u0001\u0000\u0000\u0000w\u0363\u0001\u0000\u0000\u0000"+ - "y\u0369\u0001\u0000\u0000\u0000{\u036f\u0001\u0000\u0000\u0000}\u0372"+ - "\u0001\u0000\u0000\u0000\u007f\u0375\u0001\u0000\u0000\u0000\u0081\u037a"+ - "\u0001\u0000\u0000\u0000\u0083\u037f\u0001\u0000\u0000\u0000\u0085\u0381"+ - "\u0001\u0000\u0000\u0000\u0087\u0385\u0001\u0000\u0000\u0000\u0089\u038a"+ - "\u0001\u0000\u0000\u0000\u008b\u0390\u0001\u0000\u0000\u0000\u008d\u0393"+ - "\u0001\u0000\u0000\u0000\u008f\u0395\u0001\u0000\u0000\u0000\u0091\u039b"+ - "\u0001\u0000\u0000\u0000\u0093\u039d\u0001\u0000\u0000\u0000\u0095\u03a2"+ - "\u0001\u0000\u0000\u0000\u0097\u03a5\u0001\u0000\u0000\u0000\u0099\u03a8"+ - "\u0001\u0000\u0000\u0000\u009b\u03ab\u0001\u0000\u0000\u0000\u009d\u03ad"+ - "\u0001\u0000\u0000\u0000\u009f\u03b0\u0001\u0000\u0000\u0000\u00a1\u03b2"+ - "\u0001\u0000\u0000\u0000\u00a3\u03b5\u0001\u0000\u0000\u0000\u00a5\u03b7"+ - "\u0001\u0000\u0000\u0000\u00a7\u03b9\u0001\u0000\u0000\u0000\u00a9\u03bb"+ - "\u0001\u0000\u0000\u0000\u00ab\u03bd\u0001\u0000\u0000\u0000\u00ad\u03bf"+ - "\u0001\u0000\u0000\u0000\u00af\u03c1\u0001\u0000\u0000\u0000\u00b1\u03c3"+ - "\u0001\u0000\u0000\u0000\u00b3\u03d8\u0001\u0000\u0000\u0000\u00b5\u03da"+ - "\u0001\u0000\u0000\u0000\u00b7\u03df\u0001\u0000\u0000\u0000\u00b9\u03f4"+ - "\u0001\u0000\u0000\u0000\u00bb\u03f6\u0001\u0000\u0000\u0000\u00bd\u03fe"+ - "\u0001\u0000\u0000\u0000\u00bf\u0400\u0001\u0000\u0000\u0000\u00c1\u0404"+ - "\u0001\u0000\u0000\u0000\u00c3\u0408\u0001\u0000\u0000\u0000\u00c5\u040c"+ - "\u0001\u0000\u0000\u0000\u00c7\u0411\u0001\u0000\u0000\u0000\u00c9\u0416"+ - "\u0001\u0000\u0000\u0000\u00cb\u041a\u0001\u0000\u0000\u0000\u00cd\u041e"+ - "\u0001\u0000\u0000\u0000\u00cf\u0422\u0001\u0000\u0000\u0000\u00d1\u0427"+ - "\u0001\u0000\u0000\u0000\u00d3\u042b\u0001\u0000\u0000\u0000\u00d5\u042f"+ - "\u0001\u0000\u0000\u0000\u00d7\u0433\u0001\u0000\u0000\u0000\u00d9\u0437"+ - "\u0001\u0000\u0000\u0000\u00db\u043b\u0001\u0000\u0000\u0000\u00dd\u0447"+ - "\u0001\u0000\u0000\u0000\u00df\u044a\u0001\u0000\u0000\u0000\u00e1\u044e"+ - "\u0001\u0000\u0000\u0000\u00e3\u0452\u0001\u0000\u0000\u0000\u00e5\u0456"+ - "\u0001\u0000\u0000\u0000\u00e7\u045a\u0001\u0000\u0000\u0000\u00e9\u045e"+ - "\u0001\u0000\u0000\u0000\u00eb\u0462\u0001\u0000\u0000\u0000\u00ed\u0467"+ - "\u0001\u0000\u0000\u0000\u00ef\u046b\u0001\u0000\u0000\u0000\u00f1\u046f"+ - "\u0001\u0000\u0000\u0000\u00f3\u0473\u0001\u0000\u0000\u0000\u00f5\u047b"+ - "\u0001\u0000\u0000\u0000\u00f7\u0490\u0001\u0000\u0000\u0000\u00f9\u0494"+ - "\u0001\u0000\u0000\u0000\u00fb\u0498\u0001\u0000\u0000\u0000\u00fd\u049c"+ - "\u0001\u0000\u0000\u0000\u00ff\u04a0\u0001\u0000\u0000\u0000\u0101\u04a4"+ - "\u0001\u0000\u0000\u0000\u0103\u04a9\u0001\u0000\u0000\u0000\u0105\u04ad"+ - "\u0001\u0000\u0000\u0000\u0107\u04b1\u0001\u0000\u0000\u0000\u0109\u04b5"+ - "\u0001\u0000\u0000\u0000\u010b\u04b9\u0001\u0000\u0000\u0000\u010d\u04bd"+ - "\u0001\u0000\u0000\u0000\u010f\u04c0\u0001\u0000\u0000\u0000\u0111\u04c4"+ - "\u0001\u0000\u0000\u0000\u0113\u04c8\u0001\u0000\u0000\u0000\u0115\u04cc"+ - "\u0001\u0000\u0000\u0000\u0117\u04d0\u0001\u0000\u0000\u0000\u0119\u04d5"+ - "\u0001\u0000\u0000\u0000\u011b\u04da\u0001\u0000\u0000\u0000\u011d\u04df"+ - "\u0001\u0000\u0000\u0000\u011f\u04e6\u0001\u0000\u0000\u0000\u0121\u04ef"+ - "\u0001\u0000\u0000\u0000\u0123\u04f6\u0001\u0000\u0000\u0000\u0125\u04fa"+ - "\u0001\u0000\u0000\u0000\u0127\u04fe\u0001\u0000\u0000\u0000\u0129\u0502"+ - "\u0001\u0000\u0000\u0000\u012b\u0506\u0001\u0000\u0000\u0000\u012d\u050c"+ - "\u0001\u0000\u0000\u0000\u012f\u0510\u0001\u0000\u0000\u0000\u0131\u0514"+ - "\u0001\u0000\u0000\u0000\u0133\u0518\u0001\u0000\u0000\u0000\u0135\u051c"+ - "\u0001\u0000\u0000\u0000\u0137\u0520\u0001\u0000\u0000\u0000\u0139\u0524"+ - "\u0001\u0000\u0000\u0000\u013b\u0528\u0001\u0000\u0000\u0000\u013d\u052c"+ - "\u0001\u0000\u0000\u0000\u013f\u0530\u0001\u0000\u0000\u0000\u0141\u0534"+ - "\u0001\u0000\u0000\u0000\u0143\u0538\u0001\u0000\u0000\u0000\u0145\u053d"+ - "\u0001\u0000\u0000\u0000\u0147\u0541\u0001\u0000\u0000\u0000\u0149\u0545"+ - "\u0001\u0000\u0000\u0000\u014b\u0549\u0001\u0000\u0000\u0000\u014d\u054d"+ - "\u0001\u0000\u0000\u0000\u014f\u0551\u0001\u0000\u0000\u0000\u0151\u0555"+ - "\u0001\u0000\u0000\u0000\u0153\u0559\u0001\u0000\u0000\u0000\u0155\u055d"+ - "\u0001\u0000\u0000\u0000\u0157\u0562\u0001\u0000\u0000\u0000\u0159\u0567"+ - "\u0001\u0000\u0000\u0000\u015b\u056b\u0001\u0000\u0000\u0000\u015d\u056f"+ - "\u0001\u0000\u0000\u0000\u015f\u0573\u0001\u0000\u0000\u0000\u0161\u0578"+ - "\u0001\u0000\u0000\u0000\u0163\u0581\u0001\u0000\u0000\u0000\u0165\u0585"+ - "\u0001\u0000\u0000\u0000\u0167\u0589\u0001\u0000\u0000\u0000\u0169\u058d"+ - "\u0001\u0000\u0000\u0000\u016b\u0591\u0001\u0000\u0000\u0000\u016d\u0596"+ - "\u0001\u0000\u0000\u0000\u016f\u059a\u0001\u0000\u0000\u0000\u0171\u059e"+ - "\u0001\u0000\u0000\u0000\u0173\u05a2\u0001\u0000\u0000\u0000\u0175\u05a7"+ - "\u0001\u0000\u0000\u0000\u0177\u05ab\u0001\u0000\u0000\u0000\u0179\u05af"+ - "\u0001\u0000\u0000\u0000\u017b\u05b3\u0001\u0000\u0000\u0000\u017d\u05b7"+ - "\u0001\u0000\u0000\u0000\u017f\u05bb\u0001\u0000\u0000\u0000\u0181\u05c1"+ - "\u0001\u0000\u0000\u0000\u0183\u05c5\u0001\u0000\u0000\u0000\u0185\u05c9"+ - "\u0001\u0000\u0000\u0000\u0187\u05cd\u0001\u0000\u0000\u0000\u0189\u05d1"+ - "\u0001\u0000\u0000\u0000\u018b\u05d5\u0001\u0000\u0000\u0000\u018d\u05d9"+ - "\u0001\u0000\u0000\u0000\u018f\u05de\u0001\u0000\u0000\u0000\u0191\u05e3"+ - "\u0001\u0000\u0000\u0000\u0193\u05e7\u0001\u0000\u0000\u0000\u0195\u05ed"+ - "\u0001\u0000\u0000\u0000\u0197\u05f6\u0001\u0000\u0000\u0000\u0199\u05fa"+ - "\u0001\u0000\u0000\u0000\u019b\u05fe\u0001\u0000\u0000\u0000\u019d\u0602"+ - "\u0001\u0000\u0000\u0000\u019f\u0606\u0001\u0000\u0000\u0000\u01a1\u060a"+ - "\u0001\u0000\u0000\u0000\u01a3\u060e\u0001\u0000\u0000\u0000\u01a5\u0612"+ - "\u0001\u0000\u0000\u0000\u01a7\u0616\u0001\u0000\u0000\u0000\u01a9\u061b"+ - "\u0001\u0000\u0000\u0000\u01ab\u0621\u0001\u0000\u0000\u0000\u01ad\u0627"+ - "\u0001\u0000\u0000\u0000\u01af\u062b\u0001\u0000\u0000\u0000\u01b1\u062f"+ - "\u0001\u0000\u0000\u0000\u01b3\u0633\u0001\u0000\u0000\u0000\u01b5\u0639"+ - "\u0001\u0000\u0000\u0000\u01b7\u063f\u0001\u0000\u0000\u0000\u01b9\u0643"+ - "\u0001\u0000\u0000\u0000\u01bb\u0647\u0001\u0000\u0000\u0000\u01bd\u064b"+ - "\u0001\u0000\u0000\u0000\u01bf\u0651\u0001\u0000\u0000\u0000\u01c1\u0657"+ - "\u0001\u0000\u0000\u0000\u01c3\u065d\u0001\u0000\u0000\u0000\u01c5\u0662"+ - "\u0001\u0000\u0000\u0000\u01c7\u0667\u0001\u0000\u0000\u0000\u01c9\u066b"+ - "\u0001\u0000\u0000\u0000\u01cb\u066f\u0001\u0000\u0000\u0000\u01cd\u0673"+ - "\u0001\u0000\u0000\u0000\u01cf\u01d0\u0007\u0000\u0000\u0000\u01d0\u01d1"+ - "\u0007\u0001\u0000\u0000\u01d1\u01d2\u0007\u0002\u0000\u0000\u01d2\u01d3"+ - "\u0007\u0002\u0000\u0000\u01d3\u01d4\u0007\u0003\u0000\u0000\u01d4\u01d5"+ - "\u0007\u0004\u0000\u0000\u01d5\u01d6\u0007\u0005\u0000\u0000\u01d6\u01d7"+ - "\u0001\u0000\u0000\u0000\u01d7\u01d8\u0006\u0000\u0000\u0000\u01d8\u0012"+ - "\u0001\u0000\u0000\u0000\u01d9\u01da\u0007\u0000\u0000\u0000\u01da\u01db"+ - "\u0007\u0006\u0000\u0000\u01db\u01dc\u0007\u0007\u0000\u0000\u01dc\u01dd"+ - "\u0007\b\u0000\u0000\u01dd\u01de\u0001\u0000\u0000\u0000\u01de\u01df\u0006"+ - "\u0001\u0001\u0000\u01df\u0014\u0001\u0000\u0000\u0000\u01e0\u01e1\u0007"+ - "\u0003\u0000\u0000\u01e1\u01e2\u0007\t\u0000\u0000\u01e2\u01e3\u0007\u0006"+ - "\u0000\u0000\u01e3\u01e4\u0007\u0001\u0000\u0000\u01e4\u01e5\u0007\u0004"+ - "\u0000\u0000\u01e5\u01e6\u0007\n\u0000\u0000\u01e6\u01e7\u0001\u0000\u0000"+ - "\u0000\u01e7\u01e8\u0006\u0002\u0002\u0000\u01e8\u0016\u0001\u0000\u0000"+ - "\u0000\u01e9\u01ea\u0007\u0003\u0000\u0000\u01ea\u01eb\u0007\u000b\u0000"+ - "\u0000\u01eb\u01ec\u0007\f\u0000\u0000\u01ec\u01ed\u0007\r\u0000\u0000"+ - "\u01ed\u01ee\u0001\u0000\u0000\u0000\u01ee\u01ef\u0006\u0003\u0000\u0000"+ - "\u01ef\u0018\u0001\u0000\u0000\u0000\u01f0\u01f1\u0007\u0003\u0000\u0000"+ - "\u01f1\u01f2\u0007\u000e\u0000\u0000\u01f2\u01f3\u0007\b\u0000\u0000\u01f3"+ - "\u01f4\u0007\r\u0000\u0000\u01f4\u01f5\u0007\f\u0000\u0000\u01f5\u01f6"+ - "\u0007\u0001\u0000\u0000\u01f6\u01f7\u0007\t\u0000\u0000\u01f7\u01f8\u0001"+ - "\u0000\u0000\u0000\u01f8\u01f9\u0006\u0004\u0003\u0000\u01f9\u001a\u0001"+ - "\u0000\u0000\u0000\u01fa\u01fb\u0007\u000f\u0000\u0000\u01fb\u01fc\u0007"+ - "\u0006\u0000\u0000\u01fc\u01fd\u0007\u0007\u0000\u0000\u01fd\u01fe\u0007"+ - "\u0010\u0000\u0000\u01fe\u01ff\u0001\u0000\u0000\u0000\u01ff\u0200\u0006"+ - "\u0005\u0004\u0000\u0200\u001c\u0001\u0000\u0000\u0000\u0201\u0202\u0007"+ - "\u0011\u0000\u0000\u0202\u0203\u0007\u0006\u0000\u0000\u0203\u0204\u0007"+ - "\u0007\u0000\u0000\u0204\u0205\u0007\u0012\u0000\u0000\u0205\u0206\u0001"+ - "\u0000\u0000\u0000\u0206\u0207\u0006\u0006\u0000\u0000\u0207\u001e\u0001"+ - "\u0000\u0000\u0000\u0208\u0209\u0007\u0012\u0000\u0000\u0209\u020a\u0007"+ - "\u0003\u0000\u0000\u020a\u020b\u0007\u0003\u0000\u0000\u020b\u020c\u0007"+ - "\b\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000\u020d\u020e\u0006\u0007"+ - "\u0001\u0000\u020e \u0001\u0000\u0000\u0000\u020f\u0210\u0007\r\u0000"+ - "\u0000\u0210\u0211\u0007\u0001\u0000\u0000\u0211\u0212\u0007\u0010\u0000"+ - "\u0000\u0212\u0213\u0007\u0001\u0000\u0000\u0213\u0214\u0007\u0005\u0000"+ - "\u0000\u0214\u0215\u0001\u0000\u0000\u0000\u0215\u0216\u0006\b\u0000\u0000"+ - "\u0216\"\u0001\u0000\u0000\u0000\u0217\u0218\u0007\u0010\u0000\u0000\u0218"+ - "\u0219\u0007\u000b\u0000\u0000\u0219\u021a\u0005_\u0000\u0000\u021a\u021b"+ - "\u0007\u0003\u0000\u0000\u021b\u021c\u0007\u000e\u0000\u0000\u021c\u021d"+ - "\u0007\b\u0000\u0000\u021d\u021e\u0007\f\u0000\u0000\u021e\u021f\u0007"+ - "\t\u0000\u0000\u021f\u0220\u0007\u0000\u0000\u0000\u0220\u0221\u0001\u0000"+ - "\u0000\u0000\u0221\u0222\u0006\t\u0005\u0000\u0222$\u0001\u0000\u0000"+ - "\u0000\u0223\u0224\u0007\u0006\u0000\u0000\u0224\u0225\u0007\u0003\u0000"+ - "\u0000\u0225\u0226\u0007\t\u0000\u0000\u0226\u0227\u0007\f\u0000\u0000"+ - "\u0227\u0228\u0007\u0010\u0000\u0000\u0228\u0229\u0007\u0003\u0000\u0000"+ - "\u0229\u022a\u0001\u0000\u0000\u0000\u022a\u022b\u0006\n\u0006\u0000\u022b"+ - "&\u0001\u0000\u0000\u0000\u022c\u022d\u0007\u0006\u0000\u0000\u022d\u022e"+ - "\u0007\u0007\u0000\u0000\u022e\u022f\u0007\u0013\u0000\u0000\u022f\u0230"+ - "\u0001\u0000\u0000\u0000\u0230\u0231\u0006\u000b\u0000\u0000\u0231(\u0001"+ - "\u0000\u0000\u0000\u0232\u0233\u0007\u0002\u0000\u0000\u0233\u0234\u0007"+ - "\n\u0000\u0000\u0234\u0235\u0007\u0007\u0000\u0000\u0235\u0236\u0007\u0013"+ - "\u0000\u0000\u0236\u0237\u0001\u0000\u0000\u0000\u0237\u0238\u0006\f\u0007"+ - "\u0000\u0238*\u0001\u0000\u0000\u0000\u0239\u023a\u0007\u0002\u0000\u0000"+ - "\u023a\u023b\u0007\u0007\u0000\u0000\u023b\u023c\u0007\u0006\u0000\u0000"+ - "\u023c\u023d\u0007\u0005\u0000\u0000\u023d\u023e\u0001\u0000\u0000\u0000"+ - "\u023e\u023f\u0006\r\u0000\u0000\u023f,\u0001\u0000\u0000\u0000\u0240"+ - "\u0241\u0007\u0002\u0000\u0000\u0241\u0242\u0007\u0005\u0000\u0000\u0242"+ - "\u0243\u0007\f\u0000\u0000\u0243\u0244\u0007\u0005\u0000\u0000\u0244\u0245"+ - "\u0007\u0002\u0000\u0000\u0245\u0246\u0001\u0000\u0000\u0000\u0246\u0247"+ - "\u0006\u000e\u0000\u0000\u0247.\u0001\u0000\u0000\u0000\u0248\u0249\u0007"+ - "\u0013\u0000\u0000\u0249\u024a\u0007\n\u0000\u0000\u024a\u024b\u0007\u0003"+ - "\u0000\u0000\u024b\u024c\u0007\u0006\u0000\u0000\u024c\u024d\u0007\u0003"+ - "\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e\u024f\u0006\u000f"+ - "\u0000\u0000\u024f0\u0001\u0000\u0000\u0000\u0250\u0251\u0007\r\u0000"+ - "\u0000\u0251\u0252\u0007\u0007\u0000\u0000\u0252\u0253\u0007\u0007\u0000"+ - "\u0000\u0253\u0254\u0007\u0012\u0000\u0000\u0254\u0255\u0007\u0014\u0000"+ - "\u0000\u0255\u0256\u0007\b\u0000\u0000\u0256\u0257\u0001\u0000\u0000\u0000"+ - "\u0257\u0258\u0006\u0010\b\u0000\u02582\u0001\u0000\u0000\u0000\u0259"+ - "\u025a\u0004\u0011\u0000\u0000\u025a\u025b\u0007\u0001\u0000\u0000\u025b"+ - "\u025c\u0007\t\u0000\u0000\u025c\u025d\u0007\r\u0000\u0000\u025d\u025e"+ - "\u0007\u0001\u0000\u0000\u025e\u025f\u0007\t\u0000\u0000\u025f\u0260\u0007"+ - "\u0003\u0000\u0000\u0260\u0261\u0007\u0002\u0000\u0000\u0261\u0262\u0007"+ - "\u0005\u0000\u0000\u0262\u0263\u0007\f\u0000\u0000\u0263\u0264\u0007\u0005"+ - "\u0000\u0000\u0264\u0265\u0007\u0002\u0000\u0000\u0265\u0266\u0001\u0000"+ - "\u0000\u0000\u0266\u0267\u0006\u0011\u0000\u0000\u02674\u0001\u0000\u0000"+ - "\u0000\u0268\u0269\u0004\u0012\u0001\u0000\u0269\u026a\u0007\u0001\u0000"+ - "\u0000\u026a\u026b\u0007\t\u0000\u0000\u026b\u026c\u0007\u0002\u0000\u0000"+ - "\u026c\u026d\u0007\u0001\u0000\u0000\u026d\u026e\u0007\u0002\u0000\u0000"+ - "\u026e\u026f\u0007\u0005\u0000\u0000\u026f\u0270\u0005_\u0000\u0000\u0270"+ - "\u0271\u0005\u8001\uf414\u0000\u0000\u0271\u0272\u0001\u0000\u0000\u0000"+ - "\u0272\u0273\u0006\u0012\u0001\u0000\u02736\u0001\u0000\u0000\u0000\u0274"+ - "\u0275\u0004\u0013\u0002\u0000\u0275\u0276\u0007\r\u0000\u0000\u0276\u0277"+ - "\u0007\u0007\u0000\u0000\u0277\u0278\u0007\u0007\u0000\u0000\u0278\u0279"+ - "\u0007\u0012\u0000\u0000\u0279\u027a\u0007\u0014\u0000\u0000\u027a\u027b"+ - "\u0007\b\u0000\u0000\u027b\u027c\u0005_\u0000\u0000\u027c\u027d\u0005"+ - "\u8001\uf414\u0000\u0000\u027d\u027e\u0001\u0000\u0000\u0000\u027e\u027f"+ - "\u0006\u0013\t\u0000\u027f8\u0001\u0000\u0000\u0000\u0280\u0281\u0004"+ - "\u0014\u0003\u0000\u0281\u0282\u0007\u0010\u0000\u0000\u0282\u0283\u0007"+ - "\u0003\u0000\u0000\u0283\u0284\u0007\u0005\u0000\u0000\u0284\u0285\u0007"+ - "\u0006\u0000\u0000\u0285\u0286\u0007\u0001\u0000\u0000\u0286\u0287\u0007"+ - "\u0004\u0000\u0000\u0287\u0288\u0007\u0002\u0000\u0000\u0288\u0289\u0001"+ - "\u0000\u0000\u0000\u0289\u028a\u0006\u0014\n\u0000\u028a:\u0001\u0000"+ - "\u0000\u0000\u028b\u028c\u0004\u0015\u0004\u0000\u028c\u028d\u0007\u000f"+ - "\u0000\u0000\u028d\u028e\u0007\u0014\u0000\u0000\u028e\u028f\u0007\r\u0000"+ - "\u0000\u028f\u0290\u0007\r\u0000\u0000\u0290\u0291\u0001\u0000\u0000\u0000"+ - "\u0291\u0292\u0006\u0015\b\u0000\u0292<\u0001\u0000\u0000\u0000\u0293"+ - "\u0294\u0004\u0016\u0005\u0000\u0294\u0295\u0007\r\u0000\u0000\u0295\u0296"+ - "\u0007\u0003\u0000\u0000\u0296\u0297\u0007\u000f\u0000\u0000\u0297\u0298"+ - "\u0007\u0005\u0000\u0000\u0298\u0299\u0001\u0000\u0000\u0000\u0299\u029a"+ - "\u0006\u0016\b\u0000\u029a>\u0001\u0000\u0000\u0000\u029b\u029c\u0004"+ - "\u0017\u0006\u0000\u029c\u029d\u0007\u0006\u0000\u0000\u029d\u029e\u0007"+ - "\u0001\u0000\u0000\u029e\u029f\u0007\u0011\u0000\u0000\u029f\u02a0\u0007"+ - "\n\u0000\u0000\u02a0\u02a1\u0007\u0005\u0000\u0000\u02a1\u02a2\u0001\u0000"+ - "\u0000\u0000\u02a2\u02a3\u0006\u0017\b\u0000\u02a3@\u0001\u0000\u0000"+ - "\u0000\u02a4\u02a6\b\u0015\u0000\u0000\u02a5\u02a4\u0001\u0000\u0000\u0000"+ - "\u02a6\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a5\u0001\u0000\u0000\u0000"+ - "\u02a7\u02a8\u0001\u0000\u0000\u0000\u02a8\u02a9\u0001\u0000\u0000\u0000"+ - "\u02a9\u02aa\u0006\u0018\u0000\u0000\u02aaB\u0001\u0000\u0000\u0000\u02ab"+ - "\u02ac\u0005/\u0000\u0000\u02ac\u02ad\u0005/\u0000\u0000\u02ad\u02b1\u0001"+ - "\u0000\u0000\u0000\u02ae\u02b0\b\u0016\u0000\u0000\u02af\u02ae\u0001\u0000"+ - "\u0000\u0000\u02b0\u02b3\u0001\u0000\u0000\u0000\u02b1\u02af\u0001\u0000"+ - "\u0000\u0000\u02b1\u02b2\u0001\u0000\u0000\u0000\u02b2\u02b5\u0001\u0000"+ - "\u0000\u0000\u02b3\u02b1\u0001\u0000\u0000\u0000\u02b4\u02b6\u0005\r\u0000"+ - "\u0000\u02b5\u02b4\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000"+ - "\u0000\u02b6\u02b8\u0001\u0000\u0000\u0000\u02b7\u02b9\u0005\n\u0000\u0000"+ - "\u02b8\u02b7\u0001\u0000\u0000\u0000\u02b8\u02b9\u0001\u0000\u0000\u0000"+ - "\u02b9\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb\u0006\u0019\u000b\u0000"+ - "\u02bbD\u0001\u0000\u0000\u0000\u02bc\u02bd\u0005/\u0000\u0000\u02bd\u02be"+ - "\u0005*\u0000\u0000\u02be\u02c3\u0001\u0000\u0000\u0000\u02bf\u02c2\u0003"+ - "E\u001a\u0000\u02c0\u02c2\t\u0000\u0000\u0000\u02c1\u02bf\u0001\u0000"+ - "\u0000\u0000\u02c1\u02c0\u0001\u0000\u0000\u0000\u02c2\u02c5\u0001\u0000"+ - "\u0000\u0000\u02c3\u02c4\u0001\u0000\u0000\u0000\u02c3\u02c1\u0001\u0000"+ - "\u0000\u0000\u02c4\u02c6\u0001\u0000\u0000\u0000\u02c5\u02c3\u0001\u0000"+ - "\u0000\u0000\u02c6\u02c7\u0005*\u0000\u0000\u02c7\u02c8\u0005/\u0000\u0000"+ - "\u02c8\u02c9\u0001\u0000\u0000\u0000\u02c9\u02ca\u0006\u001a\u000b\u0000"+ - "\u02caF\u0001\u0000\u0000\u0000\u02cb\u02cd\u0007\u0017\u0000\u0000\u02cc"+ - "\u02cb\u0001\u0000\u0000\u0000\u02cd\u02ce\u0001\u0000\u0000\u0000\u02ce"+ - "\u02cc\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001\u0000\u0000\u0000\u02cf"+ - "\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1\u0006\u001b\u000b\u0000\u02d1"+ - "H\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005|\u0000\u0000\u02d3\u02d4\u0001"+ - "\u0000\u0000\u0000\u02d4\u02d5\u0006\u001c\f\u0000\u02d5J\u0001\u0000"+ - "\u0000\u0000\u02d6\u02d7\u0007\u0018\u0000\u0000\u02d7L\u0001\u0000\u0000"+ - "\u0000\u02d8\u02d9\u0007\u0019\u0000\u0000\u02d9N\u0001\u0000\u0000\u0000"+ - "\u02da\u02db\u0005\\\u0000\u0000\u02db\u02dc\u0007\u001a\u0000\u0000\u02dc"+ - "P\u0001\u0000\u0000\u0000\u02dd\u02de\b\u001b\u0000\u0000\u02deR\u0001"+ - "\u0000\u0000\u0000\u02df\u02e1\u0007\u0003\u0000\u0000\u02e0\u02e2\u0007"+ - "\u001c\u0000\u0000\u02e1\u02e0\u0001\u0000\u0000\u0000\u02e1\u02e2\u0001"+ - "\u0000\u0000\u0000\u02e2\u02e4\u0001\u0000\u0000\u0000\u02e3\u02e5\u0003"+ - "K\u001d\u0000\u02e4\u02e3\u0001\u0000\u0000\u0000\u02e5\u02e6\u0001\u0000"+ - "\u0000\u0000\u02e6\u02e4\u0001\u0000\u0000\u0000\u02e6\u02e7\u0001\u0000"+ - "\u0000\u0000\u02e7T\u0001\u0000\u0000\u0000\u02e8\u02e9\u0005@\u0000\u0000"+ - "\u02e9V\u0001\u0000\u0000\u0000\u02ea\u02eb\u0005`\u0000\u0000\u02ebX"+ - "\u0001\u0000\u0000\u0000\u02ec\u02f0\b\u001d\u0000\u0000\u02ed\u02ee\u0005"+ - "`\u0000\u0000\u02ee\u02f0\u0005`\u0000\u0000\u02ef\u02ec\u0001\u0000\u0000"+ - "\u0000\u02ef\u02ed\u0001\u0000\u0000\u0000\u02f0Z\u0001\u0000\u0000\u0000"+ - "\u02f1\u02f2\u0005_\u0000\u0000\u02f2\\\u0001\u0000\u0000\u0000\u02f3"+ - "\u02f7\u0003M\u001e\u0000\u02f4\u02f7\u0003K\u001d\u0000\u02f5\u02f7\u0003"+ - "[%\u0000\u02f6\u02f3\u0001\u0000\u0000\u0000\u02f6\u02f4\u0001\u0000\u0000"+ - "\u0000\u02f6\u02f5\u0001\u0000\u0000\u0000\u02f7^\u0001\u0000\u0000\u0000"+ - "\u02f8\u02fd\u0005\"\u0000\u0000\u02f9\u02fc\u0003O\u001f\u0000\u02fa"+ - "\u02fc\u0003Q \u0000\u02fb\u02f9\u0001\u0000\u0000\u0000\u02fb\u02fa\u0001"+ - "\u0000\u0000\u0000\u02fc\u02ff\u0001\u0000\u0000\u0000\u02fd\u02fb\u0001"+ - "\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000\u0000\u0000\u02fe\u0300\u0001"+ - "\u0000\u0000\u0000\u02ff\u02fd\u0001\u0000\u0000\u0000\u0300\u0316\u0005"+ - "\"\u0000\u0000\u0301\u0302\u0005\"\u0000\u0000\u0302\u0303\u0005\"\u0000"+ - "\u0000\u0303\u0304\u0005\"\u0000\u0000\u0304\u0308\u0001\u0000\u0000\u0000"+ - "\u0305\u0307\b\u0016\u0000\u0000\u0306\u0305\u0001\u0000\u0000\u0000\u0307"+ - "\u030a\u0001\u0000\u0000\u0000\u0308\u0309\u0001\u0000\u0000\u0000\u0308"+ - "\u0306\u0001\u0000\u0000\u0000\u0309\u030b\u0001\u0000\u0000\u0000\u030a"+ - "\u0308\u0001\u0000\u0000\u0000\u030b\u030c\u0005\"\u0000\u0000\u030c\u030d"+ - "\u0005\"\u0000\u0000\u030d\u030e\u0005\"\u0000\u0000\u030e\u0310\u0001"+ - "\u0000\u0000\u0000\u030f\u0311\u0005\"\u0000\u0000\u0310\u030f\u0001\u0000"+ - "\u0000\u0000\u0310\u0311\u0001\u0000\u0000\u0000\u0311\u0313\u0001\u0000"+ - "\u0000\u0000\u0312\u0314\u0005\"\u0000\u0000\u0313\u0312\u0001\u0000\u0000"+ - "\u0000\u0313\u0314\u0001\u0000\u0000\u0000\u0314\u0316\u0001\u0000\u0000"+ - "\u0000\u0315\u02f8\u0001\u0000\u0000\u0000\u0315\u0301\u0001\u0000\u0000"+ - "\u0000\u0316`\u0001\u0000\u0000\u0000\u0317\u0319\u0003K\u001d\u0000\u0318"+ - "\u0317\u0001\u0000\u0000\u0000\u0319\u031a\u0001\u0000\u0000\u0000\u031a"+ - "\u0318\u0001\u0000\u0000\u0000\u031a\u031b\u0001\u0000\u0000\u0000\u031b"+ - "b\u0001\u0000\u0000\u0000\u031c\u031e\u0003K\u001d\u0000\u031d\u031c\u0001"+ - "\u0000\u0000\u0000\u031e\u031f\u0001\u0000\u0000\u0000\u031f\u031d\u0001"+ - "\u0000\u0000\u0000\u031f\u0320\u0001\u0000\u0000\u0000\u0320\u0321\u0001"+ - "\u0000\u0000\u0000\u0321\u0325\u0003u2\u0000\u0322\u0324\u0003K\u001d"+ - "\u0000\u0323\u0322\u0001\u0000\u0000\u0000\u0324\u0327\u0001\u0000\u0000"+ - "\u0000\u0325\u0323\u0001\u0000\u0000\u0000\u0325\u0326\u0001\u0000\u0000"+ - "\u0000\u0326\u0347\u0001\u0000\u0000\u0000\u0327\u0325\u0001\u0000\u0000"+ - "\u0000\u0328\u032a\u0003u2\u0000\u0329\u032b\u0003K\u001d\u0000\u032a"+ - "\u0329\u0001\u0000\u0000\u0000\u032b\u032c\u0001\u0000\u0000\u0000\u032c"+ - "\u032a\u0001\u0000\u0000\u0000\u032c\u032d\u0001\u0000\u0000\u0000\u032d"+ - "\u0347\u0001\u0000\u0000\u0000\u032e\u0330\u0003K\u001d\u0000\u032f\u032e"+ - "\u0001\u0000\u0000\u0000\u0330\u0331\u0001\u0000\u0000\u0000\u0331\u032f"+ - "\u0001\u0000\u0000\u0000\u0331\u0332\u0001\u0000\u0000\u0000\u0332\u033a"+ - "\u0001\u0000\u0000\u0000\u0333\u0337\u0003u2\u0000\u0334\u0336\u0003K"+ - "\u001d\u0000\u0335\u0334\u0001\u0000\u0000\u0000\u0336\u0339\u0001\u0000"+ - "\u0000\u0000\u0337\u0335\u0001\u0000\u0000\u0000\u0337\u0338\u0001\u0000"+ - "\u0000\u0000\u0338\u033b\u0001\u0000\u0000\u0000\u0339\u0337\u0001\u0000"+ - "\u0000\u0000\u033a\u0333\u0001\u0000\u0000\u0000\u033a\u033b\u0001\u0000"+ - "\u0000\u0000\u033b\u033c\u0001\u0000\u0000\u0000\u033c\u033d\u0003S!\u0000"+ - "\u033d\u0347\u0001\u0000\u0000\u0000\u033e\u0340\u0003u2\u0000\u033f\u0341"+ - "\u0003K\u001d\u0000\u0340\u033f\u0001\u0000\u0000\u0000\u0341\u0342\u0001"+ - "\u0000\u0000\u0000\u0342\u0340\u0001\u0000\u0000\u0000\u0342\u0343\u0001"+ - "\u0000\u0000\u0000\u0343\u0344\u0001\u0000\u0000\u0000\u0344\u0345\u0003"+ - "S!\u0000\u0345\u0347\u0001\u0000\u0000\u0000\u0346\u031d\u0001\u0000\u0000"+ - "\u0000\u0346\u0328\u0001\u0000\u0000\u0000\u0346\u032f\u0001\u0000\u0000"+ - "\u0000\u0346\u033e\u0001\u0000\u0000\u0000\u0347d\u0001\u0000\u0000\u0000"+ - "\u0348\u0349\u0007\u001e\u0000\u0000\u0349\u034a\u0007\u001f\u0000\u0000"+ - "\u034af\u0001\u0000\u0000\u0000\u034b\u034c\u0007\f\u0000\u0000\u034c"+ - "\u034d\u0007\t\u0000\u0000\u034d\u034e\u0007\u0000\u0000\u0000\u034eh"+ - "\u0001\u0000\u0000\u0000\u034f\u0350\u0007\f\u0000\u0000\u0350\u0351\u0007"+ - "\u0002\u0000\u0000\u0351\u0352\u0007\u0004\u0000\u0000\u0352j\u0001\u0000"+ - "\u0000\u0000\u0353\u0354\u0005=\u0000\u0000\u0354l\u0001\u0000\u0000\u0000"+ - "\u0355\u0356\u0005:\u0000\u0000\u0356\u0357\u0005:\u0000\u0000\u0357n"+ - "\u0001\u0000\u0000\u0000\u0358\u0359\u0005:\u0000\u0000\u0359p\u0001\u0000"+ - "\u0000\u0000\u035a\u035b\u0005,\u0000\u0000\u035br\u0001\u0000\u0000\u0000"+ - "\u035c\u035d\u0007\u0000\u0000\u0000\u035d\u035e\u0007\u0003\u0000\u0000"+ - "\u035e\u035f\u0007\u0002\u0000\u0000\u035f\u0360\u0007\u0004\u0000\u0000"+ - "\u0360t\u0001\u0000\u0000\u0000\u0361\u0362\u0005.\u0000\u0000\u0362v"+ - "\u0001\u0000\u0000\u0000\u0363\u0364\u0007\u000f\u0000\u0000\u0364\u0365"+ - "\u0007\f\u0000\u0000\u0365\u0366\u0007\r\u0000\u0000\u0366\u0367\u0007"+ - "\u0002\u0000\u0000\u0367\u0368\u0007\u0003\u0000\u0000\u0368x\u0001\u0000"+ - "\u0000\u0000\u0369\u036a\u0007\u000f\u0000\u0000\u036a\u036b\u0007\u0001"+ - "\u0000\u0000\u036b\u036c\u0007\u0006\u0000\u0000\u036c\u036d\u0007\u0002"+ - "\u0000\u0000\u036d\u036e\u0007\u0005\u0000\u0000\u036ez\u0001\u0000\u0000"+ - "\u0000\u036f\u0370\u0007\u0001\u0000\u0000\u0370\u0371\u0007\t\u0000\u0000"+ - "\u0371|\u0001\u0000\u0000\u0000\u0372\u0373\u0007\u0001\u0000\u0000\u0373"+ - "\u0374\u0007\u0002\u0000\u0000\u0374~\u0001\u0000\u0000\u0000\u0375\u0376"+ - "\u0007\r\u0000\u0000\u0376\u0377\u0007\f\u0000\u0000\u0377\u0378\u0007"+ - "\u0002\u0000\u0000\u0378\u0379\u0007\u0005\u0000\u0000\u0379\u0080\u0001"+ - "\u0000\u0000\u0000\u037a\u037b\u0007\r\u0000\u0000\u037b\u037c\u0007\u0001"+ - "\u0000\u0000\u037c\u037d\u0007\u0012\u0000\u0000\u037d\u037e\u0007\u0003"+ - "\u0000\u0000\u037e\u0082\u0001\u0000\u0000\u0000\u037f\u0380\u0005(\u0000"+ - "\u0000\u0380\u0084\u0001\u0000\u0000\u0000\u0381\u0382\u0007\t\u0000\u0000"+ - "\u0382\u0383\u0007\u0007\u0000\u0000\u0383\u0384\u0007\u0005\u0000\u0000"+ - "\u0384\u0086\u0001\u0000\u0000\u0000\u0385\u0386\u0007\t\u0000\u0000\u0386"+ - "\u0387\u0007\u0014\u0000\u0000\u0387\u0388\u0007\r\u0000\u0000\u0388\u0389"+ - "\u0007\r\u0000\u0000\u0389\u0088\u0001\u0000\u0000\u0000\u038a\u038b\u0007"+ - "\t\u0000\u0000\u038b\u038c\u0007\u0014\u0000\u0000\u038c\u038d\u0007\r"+ - "\u0000\u0000\u038d\u038e\u0007\r\u0000\u0000\u038e\u038f\u0007\u0002\u0000"+ - "\u0000\u038f\u008a\u0001\u0000\u0000\u0000\u0390\u0391\u0007\u0007\u0000"+ - "\u0000\u0391\u0392\u0007\u0006\u0000\u0000\u0392\u008c\u0001\u0000\u0000"+ - "\u0000\u0393\u0394\u0005?\u0000\u0000\u0394\u008e\u0001\u0000\u0000\u0000"+ - "\u0395\u0396\u0007\u0006\u0000\u0000\u0396\u0397\u0007\r\u0000\u0000\u0397"+ - "\u0398\u0007\u0001\u0000\u0000\u0398\u0399\u0007\u0012\u0000\u0000\u0399"+ - "\u039a\u0007\u0003\u0000\u0000\u039a\u0090\u0001\u0000\u0000\u0000\u039b"+ - "\u039c\u0005)\u0000\u0000\u039c\u0092\u0001\u0000\u0000\u0000\u039d\u039e"+ - "\u0007\u0005\u0000\u0000\u039e\u039f\u0007\u0006\u0000\u0000\u039f\u03a0"+ - "\u0007\u0014\u0000\u0000\u03a0\u03a1\u0007\u0003\u0000\u0000\u03a1\u0094"+ - "\u0001\u0000\u0000\u0000\u03a2\u03a3\u0005=\u0000\u0000\u03a3\u03a4\u0005"+ - "=\u0000\u0000\u03a4\u0096\u0001\u0000\u0000\u0000\u03a5\u03a6\u0005=\u0000"+ - "\u0000\u03a6\u03a7\u0005~\u0000\u0000\u03a7\u0098\u0001\u0000\u0000\u0000"+ - "\u03a8\u03a9\u0005!\u0000\u0000\u03a9\u03aa\u0005=\u0000\u0000\u03aa\u009a"+ - "\u0001\u0000\u0000\u0000\u03ab\u03ac\u0005<\u0000\u0000\u03ac\u009c\u0001"+ - "\u0000\u0000\u0000\u03ad\u03ae\u0005<\u0000\u0000\u03ae\u03af\u0005=\u0000"+ - "\u0000\u03af\u009e\u0001\u0000\u0000\u0000\u03b0\u03b1\u0005>\u0000\u0000"+ - "\u03b1\u00a0\u0001\u0000\u0000\u0000\u03b2\u03b3\u0005>\u0000\u0000\u03b3"+ - "\u03b4\u0005=\u0000\u0000\u03b4\u00a2\u0001\u0000\u0000\u0000\u03b5\u03b6"+ - "\u0005+\u0000\u0000\u03b6\u00a4\u0001\u0000\u0000\u0000\u03b7\u03b8\u0005"+ - "-\u0000\u0000\u03b8\u00a6\u0001\u0000\u0000\u0000\u03b9\u03ba\u0005*\u0000"+ - "\u0000\u03ba\u00a8\u0001\u0000\u0000\u0000\u03bb\u03bc\u0005/\u0000\u0000"+ - "\u03bc\u00aa\u0001\u0000\u0000\u0000\u03bd\u03be\u0005%\u0000\u0000\u03be"+ - "\u00ac\u0001\u0000\u0000\u0000\u03bf\u03c0\u0005{\u0000\u0000\u03c0\u00ae"+ - "\u0001\u0000\u0000\u0000\u03c1\u03c2\u0005}\u0000\u0000\u03c2\u00b0\u0001"+ - "\u0000\u0000\u0000\u03c3\u03c4\u0003/\u000f\u0000\u03c4\u03c5\u0001\u0000"+ - "\u0000\u0000\u03c5\u03c6\u0006P\r\u0000\u03c6\u00b2\u0001\u0000\u0000"+ - "\u0000\u03c7\u03ca\u0003\u008d>\u0000\u03c8\u03cb\u0003M\u001e\u0000\u03c9"+ - "\u03cb\u0003[%\u0000\u03ca\u03c8\u0001\u0000\u0000\u0000\u03ca\u03c9\u0001"+ - "\u0000\u0000\u0000\u03cb\u03cf\u0001\u0000\u0000\u0000\u03cc\u03ce\u0003"+ - "]&\u0000\u03cd\u03cc\u0001\u0000\u0000\u0000\u03ce\u03d1\u0001\u0000\u0000"+ - "\u0000\u03cf\u03cd\u0001\u0000\u0000\u0000\u03cf\u03d0\u0001\u0000\u0000"+ - "\u0000\u03d0\u03d9\u0001\u0000\u0000\u0000\u03d1\u03cf\u0001\u0000\u0000"+ - "\u0000\u03d2\u03d4\u0003\u008d>\u0000\u03d3\u03d5\u0003K\u001d\u0000\u03d4"+ - "\u03d3\u0001\u0000\u0000\u0000\u03d5\u03d6\u0001\u0000\u0000\u0000\u03d6"+ - "\u03d4\u0001\u0000\u0000\u0000\u03d6\u03d7\u0001\u0000\u0000\u0000\u03d7"+ - "\u03d9\u0001\u0000\u0000\u0000\u03d8\u03c7\u0001\u0000\u0000\u0000\u03d8"+ - "\u03d2\u0001\u0000\u0000\u0000\u03d9\u00b4\u0001\u0000\u0000\u0000\u03da"+ - "\u03db\u0005[\u0000\u0000\u03db\u03dc\u0001\u0000\u0000\u0000\u03dc\u03dd"+ - "\u0006R\u0000\u0000\u03dd\u03de\u0006R\u0000\u0000\u03de\u00b6\u0001\u0000"+ - "\u0000\u0000\u03df\u03e0\u0005]\u0000\u0000\u03e0\u03e1\u0001\u0000\u0000"+ - "\u0000\u03e1\u03e2\u0006S\f\u0000\u03e2\u03e3\u0006S\f\u0000\u03e3\u00b8"+ - "\u0001\u0000\u0000\u0000\u03e4\u03e8\u0003M\u001e\u0000\u03e5\u03e7\u0003"+ - "]&\u0000\u03e6\u03e5\u0001\u0000\u0000\u0000\u03e7\u03ea\u0001\u0000\u0000"+ - "\u0000\u03e8\u03e6\u0001\u0000\u0000\u0000\u03e8\u03e9\u0001\u0000\u0000"+ - "\u0000\u03e9\u03f5\u0001\u0000\u0000\u0000\u03ea\u03e8\u0001\u0000\u0000"+ - "\u0000\u03eb\u03ee\u0003[%\u0000\u03ec\u03ee\u0003U\"\u0000\u03ed\u03eb"+ - "\u0001\u0000\u0000\u0000\u03ed\u03ec\u0001\u0000\u0000\u0000\u03ee\u03f0"+ - "\u0001\u0000\u0000\u0000\u03ef\u03f1\u0003]&\u0000\u03f0\u03ef\u0001\u0000"+ - "\u0000\u0000\u03f1\u03f2\u0001\u0000\u0000\u0000\u03f2\u03f0\u0001\u0000"+ - "\u0000\u0000\u03f2\u03f3\u0001\u0000\u0000\u0000\u03f3\u03f5\u0001\u0000"+ - "\u0000\u0000\u03f4\u03e4\u0001\u0000\u0000\u0000\u03f4\u03ed\u0001\u0000"+ - "\u0000\u0000\u03f5\u00ba\u0001\u0000\u0000\u0000\u03f6\u03f8\u0003W#\u0000"+ - "\u03f7\u03f9\u0003Y$\u0000\u03f8\u03f7\u0001\u0000\u0000\u0000\u03f9\u03fa"+ - "\u0001\u0000\u0000\u0000\u03fa\u03f8\u0001\u0000\u0000\u0000\u03fa\u03fb"+ - "\u0001\u0000\u0000\u0000\u03fb\u03fc\u0001\u0000\u0000\u0000\u03fc\u03fd"+ - "\u0003W#\u0000\u03fd\u00bc\u0001\u0000\u0000\u0000\u03fe\u03ff\u0003\u00bb"+ - "U\u0000\u03ff\u00be\u0001\u0000\u0000\u0000\u0400\u0401\u0003C\u0019\u0000"+ - "\u0401\u0402\u0001\u0000\u0000\u0000\u0402\u0403\u0006W\u000b\u0000\u0403"+ - "\u00c0\u0001\u0000\u0000\u0000\u0404\u0405\u0003E\u001a\u0000\u0405\u0406"+ - "\u0001\u0000\u0000\u0000\u0406\u0407\u0006X\u000b\u0000\u0407\u00c2\u0001"+ - "\u0000\u0000\u0000\u0408\u0409\u0003G\u001b\u0000\u0409\u040a\u0001\u0000"+ - "\u0000\u0000\u040a\u040b\u0006Y\u000b\u0000\u040b\u00c4\u0001\u0000\u0000"+ - "\u0000\u040c\u040d\u0003\u00b5R\u0000\u040d\u040e\u0001\u0000\u0000\u0000"+ - "\u040e\u040f\u0006Z\u000e\u0000\u040f\u0410\u0006Z\u000f\u0000\u0410\u00c6"+ - "\u0001\u0000\u0000\u0000\u0411\u0412\u0003I\u001c\u0000\u0412\u0413\u0001"+ - "\u0000\u0000\u0000\u0413\u0414\u0006[\u0010\u0000\u0414\u0415\u0006[\f"+ - "\u0000\u0415\u00c8\u0001\u0000\u0000\u0000\u0416\u0417\u0003G\u001b\u0000"+ - "\u0417\u0418\u0001\u0000\u0000\u0000\u0418\u0419\u0006\\\u000b\u0000\u0419"+ - "\u00ca\u0001\u0000\u0000\u0000\u041a\u041b\u0003C\u0019\u0000\u041b\u041c"+ - "\u0001\u0000\u0000\u0000\u041c\u041d\u0006]\u000b\u0000\u041d\u00cc\u0001"+ - "\u0000\u0000\u0000\u041e\u041f\u0003E\u001a\u0000\u041f\u0420\u0001\u0000"+ - "\u0000\u0000\u0420\u0421\u0006^\u000b\u0000\u0421\u00ce\u0001\u0000\u0000"+ - "\u0000\u0422\u0423\u0003I\u001c\u0000\u0423\u0424\u0001\u0000\u0000\u0000"+ - "\u0424\u0425\u0006_\u0010\u0000\u0425\u0426\u0006_\f\u0000\u0426\u00d0"+ - "\u0001\u0000\u0000\u0000\u0427\u0428\u0003\u00b5R\u0000\u0428\u0429\u0001"+ - "\u0000\u0000\u0000\u0429\u042a\u0006`\u000e\u0000\u042a\u00d2\u0001\u0000"+ - "\u0000\u0000\u042b\u042c\u0003\u00b7S\u0000\u042c\u042d\u0001\u0000\u0000"+ - "\u0000\u042d\u042e\u0006a\u0011\u0000\u042e\u00d4\u0001\u0000\u0000\u0000"+ - "\u042f\u0430\u0003o/\u0000\u0430\u0431\u0001\u0000\u0000\u0000\u0431\u0432"+ - "\u0006b\u0012\u0000\u0432\u00d6\u0001\u0000\u0000\u0000\u0433\u0434\u0003"+ - "q0\u0000\u0434\u0435\u0001\u0000\u0000\u0000\u0435\u0436\u0006c\u0013"+ - "\u0000\u0436\u00d8\u0001\u0000\u0000\u0000\u0437\u0438\u0003k-\u0000\u0438"+ - "\u0439\u0001\u0000\u0000\u0000\u0439\u043a\u0006d\u0014\u0000\u043a\u00da"+ - "\u0001\u0000\u0000\u0000\u043b\u043c\u0007\u0010\u0000\u0000\u043c\u043d"+ - "\u0007\u0003\u0000\u0000\u043d\u043e\u0007\u0005\u0000\u0000\u043e\u043f"+ - "\u0007\f\u0000\u0000\u043f\u0440\u0007\u0000\u0000\u0000\u0440\u0441\u0007"+ - "\f\u0000\u0000\u0441\u0442\u0007\u0005\u0000\u0000\u0442\u0443\u0007\f"+ - "\u0000\u0000\u0443\u00dc\u0001\u0000\u0000\u0000\u0444\u0448\b \u0000"+ - "\u0000\u0445\u0446\u0005/\u0000\u0000\u0446\u0448\b!\u0000\u0000\u0447"+ - "\u0444\u0001\u0000\u0000\u0000\u0447\u0445\u0001\u0000\u0000\u0000\u0448"+ - "\u00de\u0001\u0000\u0000\u0000\u0449\u044b\u0003\u00ddf\u0000\u044a\u0449"+ - "\u0001\u0000\u0000\u0000\u044b\u044c\u0001\u0000\u0000\u0000\u044c\u044a"+ - "\u0001\u0000\u0000\u0000\u044c\u044d\u0001\u0000\u0000\u0000\u044d\u00e0"+ - "\u0001\u0000\u0000\u0000\u044e\u044f\u0003\u00dfg\u0000\u044f\u0450\u0001"+ - "\u0000\u0000\u0000\u0450\u0451\u0006h\u0015\u0000\u0451\u00e2\u0001\u0000"+ - "\u0000\u0000\u0452\u0453\u0003_\'\u0000\u0453\u0454\u0001\u0000\u0000"+ - "\u0000\u0454\u0455\u0006i\u0016\u0000\u0455\u00e4\u0001\u0000\u0000\u0000"+ - "\u0456\u0457\u0003C\u0019\u0000\u0457\u0458\u0001\u0000\u0000\u0000\u0458"+ - "\u0459\u0006j\u000b\u0000\u0459\u00e6\u0001\u0000\u0000\u0000\u045a\u045b"+ - "\u0003E\u001a\u0000\u045b\u045c\u0001\u0000\u0000\u0000\u045c\u045d\u0006"+ - "k\u000b\u0000\u045d\u00e8\u0001\u0000\u0000\u0000\u045e\u045f\u0003G\u001b"+ - "\u0000\u045f\u0460\u0001\u0000\u0000\u0000\u0460\u0461\u0006l\u000b\u0000"+ - "\u0461\u00ea\u0001\u0000\u0000\u0000\u0462\u0463\u0003I\u001c\u0000\u0463"+ - "\u0464\u0001\u0000\u0000\u0000\u0464\u0465\u0006m\u0010\u0000\u0465\u0466"+ - "\u0006m\f\u0000\u0466\u00ec\u0001\u0000\u0000\u0000\u0467\u0468\u0003"+ - "u2\u0000\u0468\u0469\u0001\u0000\u0000\u0000\u0469\u046a\u0006n\u0017"+ - "\u0000\u046a\u00ee\u0001\u0000\u0000\u0000\u046b\u046c\u0003q0\u0000\u046c"+ - "\u046d\u0001\u0000\u0000\u0000\u046d\u046e\u0006o\u0013\u0000\u046e\u00f0"+ - "\u0001\u0000\u0000\u0000\u046f\u0470\u0003\u008d>\u0000\u0470\u0471\u0001"+ - "\u0000\u0000\u0000\u0471\u0472\u0006p\u0018\u0000\u0472\u00f2\u0001\u0000"+ - "\u0000\u0000\u0473\u0474\u0003\u00b3Q\u0000\u0474\u0475\u0001\u0000\u0000"+ - "\u0000\u0475\u0476\u0006q\u0019\u0000\u0476\u00f4\u0001\u0000\u0000\u0000"+ - "\u0477\u047c\u0003M\u001e\u0000\u0478\u047c\u0003K\u001d\u0000\u0479\u047c"+ - "\u0003[%\u0000\u047a\u047c\u0003\u00a7K\u0000\u047b\u0477\u0001\u0000"+ - "\u0000\u0000\u047b\u0478\u0001\u0000\u0000\u0000\u047b\u0479\u0001\u0000"+ - "\u0000\u0000\u047b\u047a\u0001\u0000\u0000\u0000\u047c\u00f6\u0001\u0000"+ - "\u0000\u0000\u047d\u0480\u0003M\u001e\u0000\u047e\u0480\u0003\u00a7K\u0000"+ - "\u047f\u047d\u0001\u0000\u0000\u0000\u047f\u047e\u0001\u0000\u0000\u0000"+ - "\u0480\u0484\u0001\u0000\u0000\u0000\u0481\u0483\u0003\u00f5r\u0000\u0482"+ - "\u0481\u0001\u0000\u0000\u0000\u0483\u0486\u0001\u0000\u0000\u0000\u0484"+ - "\u0482\u0001\u0000\u0000\u0000\u0484\u0485\u0001\u0000\u0000\u0000\u0485"+ - "\u0491\u0001\u0000\u0000\u0000\u0486\u0484\u0001\u0000\u0000\u0000\u0487"+ - "\u048a\u0003[%\u0000\u0488\u048a\u0003U\"\u0000\u0489\u0487\u0001\u0000"+ - "\u0000\u0000\u0489\u0488\u0001\u0000\u0000\u0000\u048a\u048c\u0001\u0000"+ - "\u0000\u0000\u048b\u048d\u0003\u00f5r\u0000\u048c\u048b\u0001\u0000\u0000"+ - "\u0000\u048d\u048e\u0001\u0000\u0000\u0000\u048e\u048c\u0001\u0000\u0000"+ - "\u0000\u048e\u048f\u0001\u0000\u0000\u0000\u048f\u0491\u0001\u0000\u0000"+ - "\u0000\u0490\u047f\u0001\u0000\u0000\u0000\u0490\u0489\u0001\u0000\u0000"+ - "\u0000\u0491\u00f8\u0001\u0000\u0000\u0000\u0492\u0495\u0003\u00f7s\u0000"+ - "\u0493\u0495\u0003\u00bbU\u0000\u0494\u0492\u0001\u0000\u0000\u0000\u0494"+ - "\u0493\u0001\u0000\u0000\u0000\u0495\u0496\u0001\u0000\u0000\u0000\u0496"+ - "\u0494\u0001\u0000\u0000\u0000\u0496\u0497\u0001\u0000\u0000\u0000\u0497"+ - "\u00fa\u0001\u0000\u0000\u0000\u0498\u0499\u0003C\u0019\u0000\u0499\u049a"+ - "\u0001\u0000\u0000\u0000\u049a\u049b\u0006u\u000b\u0000\u049b\u00fc\u0001"+ - "\u0000\u0000\u0000\u049c\u049d\u0003E\u001a\u0000\u049d\u049e\u0001\u0000"+ - "\u0000\u0000\u049e\u049f\u0006v\u000b\u0000\u049f\u00fe\u0001\u0000\u0000"+ - "\u0000\u04a0\u04a1\u0003G\u001b\u0000\u04a1\u04a2\u0001\u0000\u0000\u0000"+ - "\u04a2\u04a3\u0006w\u000b\u0000\u04a3\u0100\u0001\u0000\u0000\u0000\u04a4"+ - "\u04a5\u0003I\u001c\u0000\u04a5\u04a6\u0001\u0000\u0000\u0000\u04a6\u04a7"+ - "\u0006x\u0010\u0000\u04a7\u04a8\u0006x\f\u0000\u04a8\u0102\u0001\u0000"+ - "\u0000\u0000\u04a9\u04aa\u0003k-\u0000\u04aa\u04ab\u0001\u0000\u0000\u0000"+ - "\u04ab\u04ac\u0006y\u0014\u0000\u04ac\u0104\u0001\u0000\u0000\u0000\u04ad"+ - "\u04ae\u0003q0\u0000\u04ae\u04af\u0001\u0000\u0000\u0000\u04af\u04b0\u0006"+ - "z\u0013\u0000\u04b0\u0106\u0001\u0000\u0000\u0000\u04b1\u04b2\u0003u2"+ - "\u0000\u04b2\u04b3\u0001\u0000\u0000\u0000\u04b3\u04b4\u0006{\u0017\u0000"+ - "\u04b4\u0108\u0001\u0000\u0000\u0000\u04b5\u04b6\u0003\u008d>\u0000\u04b6"+ - "\u04b7\u0001\u0000\u0000\u0000\u04b7\u04b8\u0006|\u0018\u0000\u04b8\u010a"+ - "\u0001\u0000\u0000\u0000\u04b9\u04ba\u0003\u00b3Q\u0000\u04ba\u04bb\u0001"+ - "\u0000\u0000\u0000\u04bb\u04bc\u0006}\u0019\u0000\u04bc\u010c\u0001\u0000"+ - "\u0000\u0000\u04bd\u04be\u0007\f\u0000\u0000\u04be\u04bf\u0007\u0002\u0000"+ - "\u0000\u04bf\u010e\u0001\u0000\u0000\u0000\u04c0\u04c1\u0003\u00f9t\u0000"+ - "\u04c1\u04c2\u0001\u0000\u0000\u0000\u04c2\u04c3\u0006\u007f\u001a\u0000"+ - "\u04c3\u0110\u0001\u0000\u0000\u0000\u04c4\u04c5\u0003C\u0019\u0000\u04c5"+ - "\u04c6\u0001\u0000\u0000\u0000\u04c6\u04c7\u0006\u0080\u000b\u0000\u04c7"+ - "\u0112\u0001\u0000\u0000\u0000\u04c8\u04c9\u0003E\u001a\u0000\u04c9\u04ca"+ - "\u0001\u0000\u0000\u0000\u04ca\u04cb\u0006\u0081\u000b\u0000\u04cb\u0114"+ - "\u0001\u0000\u0000\u0000\u04cc\u04cd\u0003G\u001b\u0000\u04cd\u04ce\u0001"+ - "\u0000\u0000\u0000\u04ce\u04cf\u0006\u0082\u000b\u0000\u04cf\u0116\u0001"+ - "\u0000\u0000\u0000\u04d0\u04d1\u0003I\u001c\u0000\u04d1\u04d2\u0001\u0000"+ - "\u0000\u0000\u04d2\u04d3\u0006\u0083\u0010\u0000\u04d3\u04d4\u0006\u0083"+ - "\f\u0000\u04d4\u0118\u0001\u0000\u0000\u0000\u04d5\u04d6\u0003\u00b5R"+ - "\u0000\u04d6\u04d7\u0001\u0000\u0000\u0000\u04d7\u04d8\u0006\u0084\u000e"+ - "\u0000\u04d8\u04d9\u0006\u0084\u001b\u0000\u04d9\u011a\u0001\u0000\u0000"+ - "\u0000\u04da\u04db\u0007\u0007\u0000\u0000\u04db\u04dc\u0007\t\u0000\u0000"+ - "\u04dc\u04dd\u0001\u0000\u0000\u0000\u04dd\u04de\u0006\u0085\u001c\u0000"+ - "\u04de\u011c\u0001\u0000\u0000\u0000\u04df\u04e0\u0007\u0013\u0000\u0000"+ - "\u04e0\u04e1\u0007\u0001\u0000\u0000\u04e1\u04e2\u0007\u0005\u0000\u0000"+ - "\u04e2\u04e3\u0007\n\u0000\u0000\u04e3\u04e4\u0001\u0000\u0000\u0000\u04e4"+ - "\u04e5\u0006\u0086\u001c\u0000\u04e5\u011e\u0001\u0000\u0000\u0000\u04e6"+ - "\u04e7\b\"\u0000\u0000\u04e7\u0120\u0001\u0000\u0000\u0000\u04e8\u04ea"+ - "\u0003\u011f\u0087\u0000\u04e9\u04e8\u0001\u0000\u0000\u0000\u04ea\u04eb"+ - "\u0001\u0000\u0000\u0000\u04eb\u04e9\u0001\u0000\u0000\u0000\u04eb\u04ec"+ - "\u0001\u0000\u0000\u0000\u04ec\u04ed\u0001\u0000\u0000\u0000\u04ed\u04ee"+ - "\u0003o/\u0000\u04ee\u04f0\u0001\u0000\u0000\u0000\u04ef\u04e9\u0001\u0000"+ - "\u0000\u0000\u04ef\u04f0\u0001\u0000\u0000\u0000\u04f0\u04f2\u0001\u0000"+ - "\u0000\u0000\u04f1\u04f3\u0003\u011f\u0087\u0000\u04f2\u04f1\u0001\u0000"+ - "\u0000\u0000\u04f3\u04f4\u0001\u0000\u0000\u0000\u04f4\u04f2\u0001\u0000"+ - "\u0000\u0000\u04f4\u04f5\u0001\u0000\u0000\u0000\u04f5\u0122\u0001\u0000"+ - "\u0000\u0000\u04f6\u04f7\u0003\u0121\u0088\u0000\u04f7\u04f8\u0001\u0000"+ - "\u0000\u0000\u04f8\u04f9\u0006\u0089\u001d\u0000\u04f9\u0124\u0001\u0000"+ - "\u0000\u0000\u04fa\u04fb\u0003C\u0019\u0000\u04fb\u04fc\u0001\u0000\u0000"+ - "\u0000\u04fc\u04fd\u0006\u008a\u000b\u0000\u04fd\u0126\u0001\u0000\u0000"+ - "\u0000\u04fe\u04ff\u0003E\u001a\u0000\u04ff\u0500\u0001\u0000\u0000\u0000"+ - "\u0500\u0501\u0006\u008b\u000b\u0000\u0501\u0128\u0001\u0000\u0000\u0000"+ - "\u0502\u0503\u0003G\u001b\u0000\u0503\u0504\u0001\u0000\u0000\u0000\u0504"+ - "\u0505\u0006\u008c\u000b\u0000\u0505\u012a\u0001\u0000\u0000\u0000\u0506"+ - "\u0507\u0003I\u001c\u0000\u0507\u0508\u0001\u0000\u0000\u0000\u0508\u0509"+ - "\u0006\u008d\u0010\u0000\u0509\u050a\u0006\u008d\f\u0000\u050a\u050b\u0006"+ - "\u008d\f\u0000\u050b\u012c\u0001\u0000\u0000\u0000\u050c\u050d\u0003k"+ - "-\u0000\u050d\u050e\u0001\u0000\u0000\u0000\u050e\u050f\u0006\u008e\u0014"+ - "\u0000\u050f\u012e\u0001\u0000\u0000\u0000\u0510\u0511\u0003q0\u0000\u0511"+ - "\u0512\u0001\u0000\u0000\u0000\u0512\u0513\u0006\u008f\u0013\u0000\u0513"+ - "\u0130\u0001\u0000\u0000\u0000\u0514\u0515\u0003u2\u0000\u0515\u0516\u0001"+ - "\u0000\u0000\u0000\u0516\u0517\u0006\u0090\u0017\u0000\u0517\u0132\u0001"+ - "\u0000\u0000\u0000\u0518\u0519\u0003\u011d\u0086\u0000\u0519\u051a\u0001"+ - "\u0000\u0000\u0000\u051a\u051b\u0006\u0091\u001e\u0000\u051b\u0134\u0001"+ - "\u0000\u0000\u0000\u051c\u051d\u0003\u00f9t\u0000\u051d\u051e\u0001\u0000"+ - "\u0000\u0000\u051e\u051f\u0006\u0092\u001a\u0000\u051f\u0136\u0001\u0000"+ - "\u0000\u0000\u0520\u0521\u0003\u00bdV\u0000\u0521\u0522\u0001\u0000\u0000"+ - "\u0000\u0522\u0523\u0006\u0093\u001f\u0000\u0523\u0138\u0001\u0000\u0000"+ - "\u0000\u0524\u0525\u0003\u008d>\u0000\u0525\u0526\u0001\u0000\u0000\u0000"+ - "\u0526\u0527\u0006\u0094\u0018\u0000\u0527\u013a\u0001\u0000\u0000\u0000"+ - "\u0528\u0529\u0003\u00b3Q\u0000\u0529\u052a\u0001\u0000\u0000\u0000\u052a"+ - "\u052b\u0006\u0095\u0019\u0000\u052b\u013c\u0001\u0000\u0000\u0000\u052c"+ - "\u052d\u0003C\u0019\u0000\u052d\u052e\u0001\u0000\u0000\u0000\u052e\u052f"+ - "\u0006\u0096\u000b\u0000\u052f\u013e\u0001\u0000\u0000\u0000\u0530\u0531"+ - "\u0003E\u001a\u0000\u0531\u0532\u0001\u0000\u0000\u0000\u0532\u0533\u0006"+ - "\u0097\u000b\u0000\u0533\u0140\u0001\u0000\u0000\u0000\u0534\u0535\u0003"+ - "G\u001b\u0000\u0535\u0536\u0001\u0000\u0000\u0000\u0536\u0537\u0006\u0098"+ - "\u000b\u0000\u0537\u0142\u0001\u0000\u0000\u0000\u0538\u0539\u0003I\u001c"+ - "\u0000\u0539\u053a\u0001\u0000\u0000\u0000\u053a\u053b\u0006\u0099\u0010"+ - "\u0000\u053b\u053c\u0006\u0099\f\u0000\u053c\u0144\u0001\u0000\u0000\u0000"+ - "\u053d\u053e\u0003u2\u0000\u053e\u053f\u0001\u0000\u0000\u0000\u053f\u0540"+ - "\u0006\u009a\u0017\u0000\u0540\u0146\u0001\u0000\u0000\u0000\u0541\u0542"+ - "\u0003\u008d>\u0000\u0542\u0543\u0001\u0000\u0000\u0000\u0543\u0544\u0006"+ - "\u009b\u0018\u0000\u0544\u0148\u0001\u0000\u0000\u0000\u0545\u0546\u0003"+ - "\u00b3Q\u0000\u0546\u0547\u0001\u0000\u0000\u0000\u0547\u0548\u0006\u009c"+ - "\u0019\u0000\u0548\u014a\u0001\u0000\u0000\u0000\u0549\u054a\u0003\u00bd"+ - "V\u0000\u054a\u054b\u0001\u0000\u0000\u0000\u054b\u054c\u0006\u009d\u001f"+ - "\u0000\u054c\u014c\u0001\u0000\u0000\u0000\u054d\u054e\u0003\u00b9T\u0000"+ - "\u054e\u054f\u0001\u0000\u0000\u0000\u054f\u0550\u0006\u009e \u0000\u0550"+ - "\u014e\u0001\u0000\u0000\u0000\u0551\u0552\u0003C\u0019\u0000\u0552\u0553"+ - "\u0001\u0000\u0000\u0000\u0553\u0554\u0006\u009f\u000b\u0000\u0554\u0150"+ - "\u0001\u0000\u0000\u0000\u0555\u0556\u0003E\u001a\u0000\u0556\u0557\u0001"+ - "\u0000\u0000\u0000\u0557\u0558\u0006\u00a0\u000b\u0000\u0558\u0152\u0001"+ - "\u0000\u0000\u0000\u0559\u055a\u0003G\u001b\u0000\u055a\u055b\u0001\u0000"+ - "\u0000\u0000\u055b\u055c\u0006\u00a1\u000b\u0000\u055c\u0154\u0001\u0000"+ - "\u0000\u0000\u055d\u055e\u0003I\u001c\u0000\u055e\u055f\u0001\u0000\u0000"+ - "\u0000\u055f\u0560\u0006\u00a2\u0010\u0000\u0560\u0561\u0006\u00a2\f\u0000"+ - "\u0561\u0156\u0001\u0000\u0000\u0000\u0562\u0563\u0007\u0001\u0000\u0000"+ - "\u0563\u0564\u0007\t\u0000\u0000\u0564\u0565\u0007\u000f\u0000\u0000\u0565"+ - "\u0566\u0007\u0007\u0000\u0000\u0566\u0158\u0001\u0000\u0000\u0000\u0567"+ - "\u0568\u0003C\u0019\u0000\u0568\u0569\u0001\u0000\u0000\u0000\u0569\u056a"+ - "\u0006\u00a4\u000b\u0000\u056a\u015a\u0001\u0000\u0000\u0000\u056b\u056c"+ - "\u0003E\u001a\u0000\u056c\u056d\u0001\u0000\u0000\u0000\u056d\u056e\u0006"+ - "\u00a5\u000b\u0000\u056e\u015c\u0001\u0000\u0000\u0000\u056f\u0570\u0003"+ - "G\u001b\u0000\u0570\u0571\u0001\u0000\u0000\u0000\u0571\u0572\u0006\u00a6"+ - "\u000b\u0000\u0572\u015e\u0001\u0000\u0000\u0000\u0573\u0574\u0003\u00b7"+ - "S\u0000\u0574\u0575\u0001\u0000\u0000\u0000\u0575\u0576\u0006\u00a7\u0011"+ - "\u0000\u0576\u0577\u0006\u00a7\f\u0000\u0577\u0160\u0001\u0000\u0000\u0000"+ - "\u0578\u0579\u0003o/\u0000\u0579\u057a\u0001\u0000\u0000\u0000\u057a\u057b"+ - "\u0006\u00a8\u0012\u0000\u057b\u0162\u0001\u0000\u0000\u0000\u057c\u0582"+ - "\u0003U\"\u0000\u057d\u0582\u0003K\u001d\u0000\u057e\u0582\u0003u2\u0000"+ - "\u057f\u0582\u0003M\u001e\u0000\u0580\u0582\u0003[%\u0000\u0581\u057c"+ - "\u0001\u0000\u0000\u0000\u0581\u057d\u0001\u0000\u0000\u0000\u0581\u057e"+ - "\u0001\u0000\u0000\u0000\u0581\u057f\u0001\u0000\u0000\u0000\u0581\u0580"+ - "\u0001\u0000\u0000\u0000\u0582\u0583\u0001\u0000\u0000\u0000\u0583\u0581"+ - "\u0001\u0000\u0000\u0000\u0583\u0584\u0001\u0000\u0000\u0000\u0584\u0164"+ - "\u0001\u0000\u0000\u0000\u0585\u0586\u0003C\u0019\u0000\u0586\u0587\u0001"+ - "\u0000\u0000\u0000\u0587\u0588\u0006\u00aa\u000b\u0000\u0588\u0166\u0001"+ - "\u0000\u0000\u0000\u0589\u058a\u0003E\u001a\u0000\u058a\u058b\u0001\u0000"+ - "\u0000\u0000\u058b\u058c\u0006\u00ab\u000b\u0000\u058c\u0168\u0001\u0000"+ - "\u0000\u0000\u058d\u058e\u0003G\u001b\u0000\u058e\u058f\u0001\u0000\u0000"+ - "\u0000\u058f\u0590\u0006\u00ac\u000b\u0000\u0590\u016a\u0001\u0000\u0000"+ - "\u0000\u0591\u0592\u0003I\u001c\u0000\u0592\u0593\u0001\u0000\u0000\u0000"+ - "\u0593\u0594\u0006\u00ad\u0010\u0000\u0594\u0595\u0006\u00ad\f\u0000\u0595"+ - "\u016c\u0001\u0000\u0000\u0000\u0596\u0597\u0003o/\u0000\u0597\u0598\u0001"+ - "\u0000\u0000\u0000\u0598\u0599\u0006\u00ae\u0012\u0000\u0599\u016e\u0001"+ - "\u0000\u0000\u0000\u059a\u059b\u0003q0\u0000\u059b\u059c\u0001\u0000\u0000"+ - "\u0000\u059c\u059d\u0006\u00af\u0013\u0000\u059d\u0170\u0001\u0000\u0000"+ - "\u0000\u059e\u059f\u0003u2\u0000\u059f\u05a0\u0001\u0000\u0000\u0000\u05a0"+ - "\u05a1\u0006\u00b0\u0017\u0000\u05a1\u0172\u0001\u0000\u0000\u0000\u05a2"+ - "\u05a3\u0003\u011b\u0085\u0000\u05a3\u05a4\u0001\u0000\u0000\u0000\u05a4"+ - "\u05a5\u0006\u00b1!\u0000\u05a5\u05a6\u0006\u00b1\"\u0000\u05a6\u0174"+ - "\u0001\u0000\u0000\u0000\u05a7\u05a8\u0003\u00dfg\u0000\u05a8\u05a9\u0001"+ - "\u0000\u0000\u0000\u05a9\u05aa\u0006\u00b2\u0015\u0000\u05aa\u0176\u0001"+ - "\u0000\u0000\u0000\u05ab\u05ac\u0003_\'\u0000\u05ac\u05ad\u0001\u0000"+ - "\u0000\u0000\u05ad\u05ae\u0006\u00b3\u0016\u0000\u05ae\u0178\u0001\u0000"+ - "\u0000\u0000\u05af\u05b0\u0003C\u0019\u0000\u05b0\u05b1\u0001\u0000\u0000"+ - "\u0000\u05b1\u05b2\u0006\u00b4\u000b\u0000\u05b2\u017a\u0001\u0000\u0000"+ - "\u0000\u05b3\u05b4\u0003E\u001a\u0000\u05b4\u05b5\u0001\u0000\u0000\u0000"+ - "\u05b5\u05b6\u0006\u00b5\u000b\u0000\u05b6\u017c\u0001\u0000\u0000\u0000"+ - "\u05b7\u05b8\u0003G\u001b\u0000\u05b8\u05b9\u0001\u0000\u0000\u0000\u05b9"+ - "\u05ba\u0006\u00b6\u000b\u0000\u05ba\u017e\u0001\u0000\u0000\u0000\u05bb"+ - "\u05bc\u0003I\u001c\u0000\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be"+ - "\u0006\u00b7\u0010\u0000\u05be\u05bf\u0006\u00b7\f\u0000\u05bf\u05c0\u0006"+ - "\u00b7\f\u0000\u05c0\u0180\u0001\u0000\u0000\u0000\u05c1\u05c2\u0003q"+ - "0\u0000\u05c2\u05c3\u0001\u0000\u0000\u0000\u05c3\u05c4\u0006\u00b8\u0013"+ - "\u0000\u05c4\u0182\u0001\u0000\u0000\u0000\u05c5\u05c6\u0003u2\u0000\u05c6"+ - "\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006\u00b9\u0017\u0000\u05c8"+ - "\u0184\u0001\u0000\u0000\u0000\u05c9\u05ca\u0003\u00f9t\u0000\u05ca\u05cb"+ - "\u0001\u0000\u0000\u0000\u05cb\u05cc\u0006\u00ba\u001a\u0000\u05cc\u0186"+ - "\u0001\u0000\u0000\u0000\u05cd\u05ce\u0003C\u0019\u0000\u05ce\u05cf\u0001"+ - "\u0000\u0000\u0000\u05cf\u05d0\u0006\u00bb\u000b\u0000\u05d0\u0188\u0001"+ - "\u0000\u0000\u0000\u05d1\u05d2\u0003E\u001a\u0000\u05d2\u05d3\u0001\u0000"+ - "\u0000\u0000\u05d3\u05d4\u0006\u00bc\u000b\u0000\u05d4\u018a\u0001\u0000"+ - "\u0000\u0000\u05d5\u05d6\u0003G\u001b\u0000\u05d6\u05d7\u0001\u0000\u0000"+ - "\u0000\u05d7\u05d8\u0006\u00bd\u000b\u0000\u05d8\u018c\u0001\u0000\u0000"+ - "\u0000\u05d9\u05da\u0003I\u001c\u0000\u05da\u05db\u0001\u0000\u0000\u0000"+ - "\u05db\u05dc\u0006\u00be\u0010\u0000\u05dc\u05dd\u0006\u00be\f\u0000\u05dd"+ - "\u018e\u0001\u0000\u0000\u0000\u05de\u05df\u0007#\u0000\u0000\u05df\u05e0"+ - "\u0007\u0007\u0000\u0000\u05e0\u05e1\u0007\u0001\u0000\u0000\u05e1\u05e2"+ - "\u0007\t\u0000\u0000\u05e2\u0190\u0001\u0000\u0000\u0000\u05e3\u05e4\u0003"+ - "\u010d~\u0000\u05e4\u05e5\u0001\u0000\u0000\u0000\u05e5\u05e6\u0006\u00c0"+ - "#\u0000\u05e6\u0192\u0001\u0000\u0000\u0000\u05e7\u05e8\u0003\u011b\u0085"+ - "\u0000\u05e8\u05e9\u0001\u0000\u0000\u0000\u05e9\u05ea\u0006\u00c1!\u0000"+ - "\u05ea\u05eb\u0006\u00c1\f\u0000\u05eb\u05ec\u0006\u00c1\u0000\u0000\u05ec"+ - "\u0194\u0001\u0000\u0000\u0000\u05ed\u05ee\u0007\u0014\u0000\u0000\u05ee"+ - "\u05ef\u0007\u0002\u0000\u0000\u05ef\u05f0\u0007\u0001\u0000\u0000\u05f0"+ - "\u05f1\u0007\t\u0000\u0000\u05f1\u05f2\u0007\u0011\u0000\u0000\u05f2\u05f3"+ - "\u0001\u0000\u0000\u0000\u05f3\u05f4\u0006\u00c2\f\u0000\u05f4\u05f5\u0006"+ - "\u00c2\u0000\u0000\u05f5\u0196\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003"+ - "\u00dfg\u0000\u05f7\u05f8\u0001\u0000\u0000\u0000\u05f8\u05f9\u0006\u00c3"+ - "\u0015\u0000\u05f9\u0198\u0001\u0000\u0000\u0000\u05fa\u05fb\u0003_\'"+ - "\u0000\u05fb\u05fc\u0001\u0000\u0000\u0000\u05fc\u05fd\u0006\u00c4\u0016"+ - "\u0000\u05fd\u019a\u0001\u0000\u0000\u0000\u05fe\u05ff\u0003o/\u0000\u05ff"+ - "\u0600\u0001\u0000\u0000\u0000\u0600\u0601\u0006\u00c5\u0012\u0000\u0601"+ - "\u019c\u0001\u0000\u0000\u0000\u0602\u0603\u0003\u00b9T\u0000\u0603\u0604"+ - "\u0001\u0000\u0000\u0000\u0604\u0605\u0006\u00c6 \u0000\u0605\u019e\u0001"+ - "\u0000\u0000\u0000\u0606\u0607\u0003\u00bdV\u0000\u0607\u0608\u0001\u0000"+ - "\u0000\u0000\u0608\u0609\u0006\u00c7\u001f\u0000\u0609\u01a0\u0001\u0000"+ - "\u0000\u0000\u060a\u060b\u0003C\u0019\u0000\u060b\u060c\u0001\u0000\u0000"+ - "\u0000\u060c\u060d\u0006\u00c8\u000b\u0000\u060d\u01a2\u0001\u0000\u0000"+ - "\u0000\u060e\u060f\u0003E\u001a\u0000\u060f\u0610\u0001\u0000\u0000\u0000"+ - "\u0610\u0611\u0006\u00c9\u000b\u0000\u0611\u01a4\u0001\u0000\u0000\u0000"+ - "\u0612\u0613\u0003G\u001b\u0000\u0613\u0614\u0001\u0000\u0000\u0000\u0614"+ - "\u0615\u0006\u00ca\u000b\u0000\u0615\u01a6\u0001\u0000\u0000\u0000\u0616"+ - "\u0617\u0003I\u001c\u0000\u0617\u0618\u0001\u0000\u0000\u0000\u0618\u0619"+ - "\u0006\u00cb\u0010\u0000\u0619\u061a\u0006\u00cb\f\u0000\u061a\u01a8\u0001"+ - "\u0000\u0000\u0000\u061b\u061c\u0003\u00dfg\u0000\u061c\u061d\u0001\u0000"+ - "\u0000\u0000\u061d\u061e\u0006\u00cc\u0015\u0000\u061e\u061f\u0006\u00cc"+ - "\f\u0000\u061f\u0620\u0006\u00cc$\u0000\u0620\u01aa\u0001\u0000\u0000"+ - "\u0000\u0621\u0622\u0003_\'\u0000\u0622\u0623\u0001\u0000\u0000\u0000"+ - "\u0623\u0624\u0006\u00cd\u0016\u0000\u0624\u0625\u0006\u00cd\f\u0000\u0625"+ - "\u0626\u0006\u00cd$\u0000\u0626\u01ac\u0001\u0000\u0000\u0000\u0627\u0628"+ - "\u0003C\u0019\u0000\u0628\u0629\u0001\u0000\u0000\u0000\u0629\u062a\u0006"+ - "\u00ce\u000b\u0000\u062a\u01ae\u0001\u0000\u0000\u0000\u062b\u062c\u0003"+ - "E\u001a\u0000\u062c\u062d\u0001\u0000\u0000\u0000\u062d\u062e\u0006\u00cf"+ - "\u000b\u0000\u062e\u01b0\u0001\u0000\u0000\u0000\u062f\u0630\u0003G\u001b"+ - "\u0000\u0630\u0631\u0001\u0000\u0000\u0000\u0631\u0632\u0006\u00d0\u000b"+ - "\u0000\u0632\u01b2\u0001\u0000\u0000\u0000\u0633\u0634\u0003o/\u0000\u0634"+ - "\u0635\u0001\u0000\u0000\u0000\u0635\u0636\u0006\u00d1\u0012\u0000\u0636"+ - "\u0637\u0006\u00d1\f\u0000\u0637\u0638\u0006\u00d1\n\u0000\u0638\u01b4"+ - "\u0001\u0000\u0000\u0000\u0639\u063a\u0003q0\u0000\u063a\u063b\u0001\u0000"+ - "\u0000\u0000\u063b\u063c\u0006\u00d2\u0013\u0000\u063c\u063d\u0006\u00d2"+ - "\f\u0000\u063d\u063e\u0006\u00d2\n\u0000\u063e\u01b6\u0001\u0000\u0000"+ - "\u0000\u063f\u0640\u0003C\u0019\u0000\u0640\u0641\u0001\u0000\u0000\u0000"+ - "\u0641\u0642\u0006\u00d3\u000b\u0000\u0642\u01b8\u0001\u0000\u0000\u0000"+ - "\u0643\u0644\u0003E\u001a\u0000\u0644\u0645\u0001\u0000\u0000\u0000\u0645"+ - "\u0646\u0006\u00d4\u000b\u0000\u0646\u01ba\u0001\u0000\u0000\u0000\u0647"+ - "\u0648\u0003G\u001b\u0000\u0648\u0649\u0001\u0000\u0000\u0000\u0649\u064a"+ - "\u0006\u00d5\u000b\u0000\u064a\u01bc\u0001\u0000\u0000\u0000\u064b\u064c"+ - "\u0003\u00bdV\u0000\u064c\u064d\u0001\u0000\u0000\u0000\u064d\u064e\u0006"+ - "\u00d6\f\u0000\u064e\u064f\u0006\u00d6\u0000\u0000\u064f\u0650\u0006\u00d6"+ - "\u001f\u0000\u0650\u01be\u0001\u0000\u0000\u0000\u0651\u0652\u0003\u00b9"+ - "T\u0000\u0652\u0653\u0001\u0000\u0000\u0000\u0653\u0654\u0006\u00d7\f"+ - "\u0000\u0654\u0655\u0006\u00d7\u0000\u0000\u0655\u0656\u0006\u00d7 \u0000"+ - "\u0656\u01c0\u0001\u0000\u0000\u0000\u0657\u0658\u0003e*\u0000\u0658\u0659"+ - "\u0001\u0000\u0000\u0000\u0659\u065a\u0006\u00d8\f\u0000\u065a\u065b\u0006"+ - "\u00d8\u0000\u0000\u065b\u065c\u0006\u00d8%\u0000\u065c\u01c2\u0001\u0000"+ - "\u0000\u0000\u065d\u065e\u0003I\u001c\u0000\u065e\u065f\u0001\u0000\u0000"+ - "\u0000\u065f\u0660\u0006\u00d9\u0010\u0000\u0660\u0661\u0006\u00d9\f\u0000"+ - "\u0661\u01c4\u0001\u0000\u0000\u0000\u0662\u0663\u0003I\u001c\u0000\u0663"+ - "\u0664\u0001\u0000\u0000\u0000\u0664\u0665\u0006\u00da\u0010\u0000\u0665"+ - "\u0666\u0006\u00da\f\u0000\u0666\u01c6\u0001\u0000\u0000\u0000\u0667\u0668"+ - "\u0003\u00b9T\u0000\u0668\u0669\u0001\u0000\u0000\u0000\u0669\u066a\u0006"+ - "\u00db \u0000\u066a\u01c8\u0001\u0000\u0000\u0000\u066b\u066c\u0003G\u001b"+ - "\u0000\u066c\u066d\u0001\u0000\u0000\u0000\u066d\u066e\u0006\u00dc\u000b"+ - "\u0000\u066e\u01ca\u0001\u0000\u0000\u0000\u066f\u0670\u0003C\u0019\u0000"+ - "\u0670\u0671\u0001\u0000\u0000\u0000\u0671\u0672\u0006\u00dd\u000b\u0000"+ - "\u0672\u01cc\u0001\u0000\u0000\u0000\u0673\u0674\u0003E\u001a\u0000\u0674"+ - "\u0675\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00de\u000b\u0000\u0676"+ - "\u01ce\u0001\u0000\u0000\u0000C\u0000\u0001\u0002\u0003\u0004\u0005\u0006"+ - "\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010\u02a7\u02b1\u02b5\u02b8\u02c1"+ - "\u02c3\u02ce\u02e1\u02e6\u02ef\u02f6\u02fb\u02fd\u0308\u0310\u0313\u0315"+ - "\u031a\u031f\u0325\u032c\u0331\u0337\u033a\u0342\u0346\u03ca\u03cf\u03d6"+ - "\u03d8\u03e8\u03ed\u03f2\u03f4\u03fa\u0447\u044c\u047b\u047f\u0484\u0489"+ - "\u048e\u0490\u0494\u0496\u04eb\u04ef\u04f4\u0581\u0583&\u0005\u0001\u0000"+ - "\u0005\u0004\u0000\u0005\u0006\u0000\u0005\u0002\u0000\u0005\u0003\u0000"+ - "\u0005\b\u0000\u0005\u0005\u0000\u0005\t\u0000\u0005\r\u0000\u0005\u000b"+ - "\u0000\u0005\u000e\u0000\u0000\u0001\u0000\u0004\u0000\u0000\u0007\u0010"+ - "\u0000\u0007H\u0000\u0005\u0000\u0000\u0007\u001d\u0000\u0007I\u0000\u0007"+ - "&\u0000\u0007\'\u0000\u0007$\u0000\u0007S\u0000\u0007\u001e\u0000\u0007"+ - ")\u0000\u00075\u0000\u0007G\u0000\u0007W\u0000\u0005\n\u0000\u0005\u0007"+ - "\u0000\u0007a\u0000\u0007`\u0000\u0007K\u0000\u0007J\u0000\u0007_\u0000"+ - "\u0005\f\u0000\u0007[\u0000\u0005\u000f\u0000\u0007!\u0000"; + "\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u0002\u0000JJjj\u06c7"+ + "\u0000\u0011\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000"+ + "\u0000\u0015\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000"+ + "\u0000\u0019\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000"+ + "\u0000\u001d\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000"+ + "\u0000!\u0001\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%"+ + "\u0001\u0000\u0000\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001"+ + "\u0000\u0000\u0000\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000"+ + "\u0000\u0000/\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u0000"+ + "3\u0001\u0000\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001"+ + "\u0000\u0000\u0000\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000"+ + "\u0000\u0000=\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000"+ + "A\u0001\u0000\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001"+ + "\u0000\u0000\u0000\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000"+ + "\u0000\u0001K\u0001\u0000\u0000\u0000\u0001M\u0001\u0000\u0000\u0000\u0001"+ + "O\u0001\u0000\u0000\u0000\u0001Q\u0001\u0000\u0000\u0000\u0001S\u0001"+ + "\u0000\u0000\u0000\u0001U\u0001\u0000\u0000\u0000\u0001W\u0001\u0000\u0000"+ + "\u0000\u0001Y\u0001\u0000\u0000\u0000\u0001[\u0001\u0000\u0000\u0000\u0001"+ + "]\u0001\u0000\u0000\u0000\u0002_\u0001\u0000\u0000\u0000\u0002a\u0001"+ + "\u0000\u0000\u0000\u0002c\u0001\u0000\u0000\u0000\u0002e\u0001\u0000\u0000"+ + "\u0000\u0002i\u0001\u0000\u0000\u0000\u0002k\u0001\u0000\u0000\u0000\u0002"+ + "m\u0001\u0000\u0000\u0000\u0002o\u0001\u0000\u0000\u0000\u0002q\u0001"+ + "\u0000\u0000\u0000\u0003s\u0001\u0000\u0000\u0000\u0003u\u0001\u0000\u0000"+ + "\u0000\u0003w\u0001\u0000\u0000\u0000\u0003y\u0001\u0000\u0000\u0000\u0003"+ + "{\u0001\u0000\u0000\u0000\u0003}\u0001\u0000\u0000\u0000\u0003\u007f\u0001"+ + "\u0000\u0000\u0000\u0003\u0081\u0001\u0000\u0000\u0000\u0003\u0083\u0001"+ + "\u0000\u0000\u0000\u0003\u0085\u0001\u0000\u0000\u0000\u0003\u0087\u0001"+ + "\u0000\u0000\u0000\u0003\u0089\u0001\u0000\u0000\u0000\u0004\u008b\u0001"+ + "\u0000\u0000\u0000\u0004\u008d\u0001\u0000\u0000\u0000\u0004\u008f\u0001"+ + "\u0000\u0000\u0000\u0004\u0091\u0001\u0000\u0000\u0000\u0004\u0093\u0001"+ + "\u0000\u0000\u0000\u0004\u0095\u0001\u0000\u0000\u0000\u0005\u0097\u0001"+ + "\u0000\u0000\u0000\u0005\u0099\u0001\u0000\u0000\u0000\u0005\u009b\u0001"+ + "\u0000\u0000\u0000\u0005\u009d\u0001\u0000\u0000\u0000\u0005\u009f\u0001"+ + "\u0000\u0000\u0000\u0006\u00a1\u0001\u0000\u0000\u0000\u0006\u00b7\u0001"+ + "\u0000\u0000\u0000\u0006\u00b9\u0001\u0000\u0000\u0000\u0006\u00bb\u0001"+ + "\u0000\u0000\u0000\u0006\u00bd\u0001\u0000\u0000\u0000\u0006\u00bf\u0001"+ + "\u0000\u0000\u0000\u0006\u00c1\u0001\u0000\u0000\u0000\u0006\u00c3\u0001"+ + "\u0000\u0000\u0000\u0006\u00c5\u0001\u0000\u0000\u0000\u0006\u00c7\u0001"+ + "\u0000\u0000\u0000\u0006\u00c9\u0001\u0000\u0000\u0000\u0006\u00cb\u0001"+ + "\u0000\u0000\u0000\u0006\u00cd\u0001\u0000\u0000\u0000\u0006\u00cf\u0001"+ + "\u0000\u0000\u0000\u0006\u00d1\u0001\u0000\u0000\u0000\u0006\u00d3\u0001"+ + "\u0000\u0000\u0000\u0006\u00d5\u0001\u0000\u0000\u0000\u0006\u00d7\u0001"+ + "\u0000\u0000\u0000\u0006\u00d9\u0001\u0000\u0000\u0000\u0006\u00db\u0001"+ + "\u0000\u0000\u0000\u0006\u00dd\u0001\u0000\u0000\u0000\u0006\u00df\u0001"+ + "\u0000\u0000\u0000\u0006\u00e1\u0001\u0000\u0000\u0000\u0006\u00e3\u0001"+ + "\u0000\u0000\u0000\u0006\u00e5\u0001\u0000\u0000\u0000\u0006\u00e7\u0001"+ + "\u0000\u0000\u0000\u0006\u00e9\u0001\u0000\u0000\u0000\u0006\u00eb\u0001"+ + "\u0000\u0000\u0000\u0006\u00ed\u0001\u0000\u0000\u0000\u0006\u00ef\u0001"+ + "\u0000\u0000\u0000\u0006\u00f1\u0001\u0000\u0000\u0000\u0006\u00f3\u0001"+ + "\u0000\u0000\u0000\u0006\u00f5\u0001\u0000\u0000\u0000\u0006\u00f7\u0001"+ + "\u0000\u0000\u0000\u0006\u00f9\u0001\u0000\u0000\u0000\u0006\u00fb\u0001"+ + "\u0000\u0000\u0000\u0006\u00fd\u0001\u0000\u0000\u0000\u0006\u00ff\u0001"+ + "\u0000\u0000\u0000\u0006\u0101\u0001\u0000\u0000\u0000\u0006\u0103\u0001"+ + "\u0000\u0000\u0000\u0006\u0105\u0001\u0000\u0000\u0000\u0006\u0107\u0001"+ + "\u0000\u0000\u0000\u0006\u0109\u0001\u0000\u0000\u0000\u0006\u010b\u0001"+ + "\u0000\u0000\u0000\u0006\u010d\u0001\u0000\u0000\u0000\u0006\u010f\u0001"+ + "\u0000\u0000\u0000\u0006\u0111\u0001\u0000\u0000\u0000\u0006\u0115\u0001"+ + "\u0000\u0000\u0000\u0006\u0117\u0001\u0000\u0000\u0000\u0006\u0119\u0001"+ + "\u0000\u0000\u0000\u0006\u011b\u0001\u0000\u0000\u0000\u0007\u011d\u0001"+ + "\u0000\u0000\u0000\u0007\u011f\u0001\u0000\u0000\u0000\u0007\u0121\u0001"+ + "\u0000\u0000\u0000\u0007\u0123\u0001\u0000\u0000\u0000\u0007\u0125\u0001"+ + "\u0000\u0000\u0000\u0007\u0127\u0001\u0000\u0000\u0000\u0007\u0129\u0001"+ + "\u0000\u0000\u0000\u0007\u012d\u0001\u0000\u0000\u0000\u0007\u012f\u0001"+ + "\u0000\u0000\u0000\u0007\u0131\u0001\u0000\u0000\u0000\u0007\u0133\u0001"+ + "\u0000\u0000\u0000\u0007\u0135\u0001\u0000\u0000\u0000\u0007\u0137\u0001"+ + "\u0000\u0000\u0000\b\u0139\u0001\u0000\u0000\u0000\b\u013b\u0001\u0000"+ + "\u0000\u0000\b\u013d\u0001\u0000\u0000\u0000\b\u013f\u0001\u0000\u0000"+ + "\u0000\b\u0141\u0001\u0000\u0000\u0000\b\u0143\u0001\u0000\u0000\u0000"+ + "\b\u0145\u0001\u0000\u0000\u0000\b\u0147\u0001\u0000\u0000\u0000\b\u0149"+ + "\u0001\u0000\u0000\u0000\b\u014b\u0001\u0000\u0000\u0000\b\u014d\u0001"+ + "\u0000\u0000\u0000\b\u014f\u0001\u0000\u0000\u0000\b\u0151\u0001\u0000"+ + "\u0000\u0000\t\u0153\u0001\u0000\u0000\u0000\t\u0155\u0001\u0000\u0000"+ + "\u0000\t\u0157\u0001\u0000\u0000\u0000\t\u0159\u0001\u0000\u0000\u0000"+ + "\t\u015b\u0001\u0000\u0000\u0000\t\u015d\u0001\u0000\u0000\u0000\t\u015f"+ + "\u0001\u0000\u0000\u0000\t\u0161\u0001\u0000\u0000\u0000\t\u0163\u0001"+ + "\u0000\u0000\u0000\t\u0165\u0001\u0000\u0000\u0000\n\u0167\u0001\u0000"+ + "\u0000\u0000\n\u0169\u0001\u0000\u0000\u0000\n\u016b\u0001\u0000\u0000"+ + "\u0000\n\u016d\u0001\u0000\u0000\u0000\n\u016f\u0001\u0000\u0000\u0000"+ + "\n\u0171\u0001\u0000\u0000\u0000\n\u0173\u0001\u0000\u0000\u0000\u000b"+ + "\u0175\u0001\u0000\u0000\u0000\u000b\u0177\u0001\u0000\u0000\u0000\u000b"+ + "\u0179\u0001\u0000\u0000\u0000\u000b\u017b\u0001\u0000\u0000\u0000\u000b"+ + "\u017d\u0001\u0000\u0000\u0000\u000b\u017f\u0001\u0000\u0000\u0000\f\u0181"+ + "\u0001\u0000\u0000\u0000\f\u0183\u0001\u0000\u0000\u0000\f\u0185\u0001"+ + "\u0000\u0000\u0000\f\u0187\u0001\u0000\u0000\u0000\f\u0189\u0001\u0000"+ + "\u0000\u0000\f\u018b\u0001\u0000\u0000\u0000\f\u018d\u0001\u0000\u0000"+ + "\u0000\f\u018f\u0001\u0000\u0000\u0000\f\u0191\u0001\u0000\u0000\u0000"+ + "\r\u0193\u0001\u0000\u0000\u0000\r\u0195\u0001\u0000\u0000\u0000\r\u0197"+ + "\u0001\u0000\u0000\u0000\r\u0199\u0001\u0000\u0000\u0000\r\u019b\u0001"+ + "\u0000\u0000\u0000\r\u019d\u0001\u0000\u0000\u0000\r\u019f\u0001\u0000"+ + "\u0000\u0000\r\u01a1\u0001\u0000\u0000\u0000\r\u01a3\u0001\u0000\u0000"+ + "\u0000\u000e\u01a5\u0001\u0000\u0000\u0000\u000e\u01a7\u0001\u0000\u0000"+ + "\u0000\u000e\u01a9\u0001\u0000\u0000\u0000\u000e\u01ab\u0001\u0000\u0000"+ + "\u0000\u000e\u01ad\u0001\u0000\u0000\u0000\u000e\u01b3\u0001\u0000\u0000"+ + "\u0000\u000e\u01b5\u0001\u0000\u0000\u0000\u000e\u01b7\u0001\u0000\u0000"+ + "\u0000\u000e\u01b9\u0001\u0000\u0000\u0000\u000f\u01bb\u0001\u0000\u0000"+ + "\u0000\u000f\u01bd\u0001\u0000\u0000\u0000\u000f\u01bf\u0001\u0000\u0000"+ + "\u0000\u000f\u01c1\u0001\u0000\u0000\u0000\u000f\u01c3\u0001\u0000\u0000"+ + "\u0000\u000f\u01c5\u0001\u0000\u0000\u0000\u000f\u01c7\u0001\u0000\u0000"+ + "\u0000\u000f\u01c9\u0001\u0000\u0000\u0000\u000f\u01cb\u0001\u0000\u0000"+ + "\u0000\u000f\u01cd\u0001\u0000\u0000\u0000\u000f\u01cf\u0001\u0000\u0000"+ + "\u0000\u0010\u01d1\u0001\u0000\u0000\u0000\u0010\u01d3\u0001\u0000\u0000"+ + "\u0000\u0010\u01d5\u0001\u0000\u0000\u0000\u0010\u01d7\u0001\u0000\u0000"+ + "\u0000\u0010\u01d9\u0001\u0000\u0000\u0000\u0011\u01db\u0001\u0000\u0000"+ + "\u0000\u0013\u01ec\u0001\u0000\u0000\u0000\u0015\u01fc\u0001\u0000\u0000"+ + "\u0000\u0017\u0202\u0001\u0000\u0000\u0000\u0019\u0212\u0001\u0000\u0000"+ + "\u0000\u001b\u021b\u0001\u0000\u0000\u0000\u001d\u0225\u0001\u0000\u0000"+ + "\u0000\u001f\u022f\u0001\u0000\u0000\u0000!\u0236\u0001\u0000\u0000\u0000"+ + "#\u023d\u0001\u0000\u0000\u0000%\u0245\u0001\u0000\u0000\u0000\'\u024b"+ + "\u0001\u0000\u0000\u0000)\u0252\u0001\u0000\u0000\u0000+\u025a\u0001\u0000"+ + "\u0000\u0000-\u0262\u0001\u0000\u0000\u0000/\u0271\u0001\u0000\u0000\u0000"+ + "1\u0278\u0001\u0000\u0000\u00003\u0281\u0001\u0000\u0000\u00005\u0289"+ + "\u0001\u0000\u0000\u00007\u0291\u0001\u0000\u0000\u00009\u029a\u0001\u0000"+ + "\u0000\u0000;\u02a6\u0001\u0000\u0000\u0000=\u02b1\u0001\u0000\u0000\u0000"+ + "?\u02bd\u0001\u0000\u0000\u0000A\u02c4\u0001\u0000\u0000\u0000C\u02cb"+ + "\u0001\u0000\u0000\u0000E\u02d7\u0001\u0000\u0000\u0000G\u02e0\u0001\u0000"+ + "\u0000\u0000I\u02e8\u0001\u0000\u0000\u0000K\u02ee\u0001\u0000\u0000\u0000"+ + "M\u02f3\u0001\u0000\u0000\u0000O\u02f7\u0001\u0000\u0000\u0000Q\u02fb"+ + "\u0001\u0000\u0000\u0000S\u02ff\u0001\u0000\u0000\u0000U\u0303\u0001\u0000"+ + "\u0000\u0000W\u0307\u0001\u0000\u0000\u0000Y\u030b\u0001\u0000\u0000\u0000"+ + "[\u030f\u0001\u0000\u0000\u0000]\u0313\u0001\u0000\u0000\u0000_\u0317"+ + "\u0001\u0000\u0000\u0000a\u031c\u0001\u0000\u0000\u0000c\u0321\u0001\u0000"+ + "\u0000\u0000e\u0326\u0001\u0000\u0000\u0000g\u032d\u0001\u0000\u0000\u0000"+ + "i\u0336\u0001\u0000\u0000\u0000k\u033d\u0001\u0000\u0000\u0000m\u0341"+ + "\u0001\u0000\u0000\u0000o\u0345\u0001\u0000\u0000\u0000q\u0349\u0001\u0000"+ + "\u0000\u0000s\u034d\u0001\u0000\u0000\u0000u\u0353\u0001\u0000\u0000\u0000"+ + "w\u0357\u0001\u0000\u0000\u0000y\u035b\u0001\u0000\u0000\u0000{\u035f"+ + "\u0001\u0000\u0000\u0000}\u0363\u0001\u0000\u0000\u0000\u007f\u0367\u0001"+ + "\u0000\u0000\u0000\u0081\u036b\u0001\u0000\u0000\u0000\u0083\u036f\u0001"+ + "\u0000\u0000\u0000\u0085\u0373\u0001\u0000\u0000\u0000\u0087\u0377\u0001"+ + "\u0000\u0000\u0000\u0089\u037b\u0001\u0000\u0000\u0000\u008b\u037f\u0001"+ + "\u0000\u0000\u0000\u008d\u0384\u0001\u0000\u0000\u0000\u008f\u038d\u0001"+ + "\u0000\u0000\u0000\u0091\u0391\u0001\u0000\u0000\u0000\u0093\u0395\u0001"+ + "\u0000\u0000\u0000\u0095\u0399\u0001\u0000\u0000\u0000\u0097\u039d\u0001"+ + "\u0000\u0000\u0000\u0099\u03a2\u0001\u0000\u0000\u0000\u009b\u03a7\u0001"+ + "\u0000\u0000\u0000\u009d\u03ab\u0001\u0000\u0000\u0000\u009f\u03af\u0001"+ + "\u0000\u0000\u0000\u00a1\u03b3\u0001\u0000\u0000\u0000\u00a3\u03b7\u0001"+ + "\u0000\u0000\u0000\u00a5\u03b9\u0001\u0000\u0000\u0000\u00a7\u03bb\u0001"+ + "\u0000\u0000\u0000\u00a9\u03be\u0001\u0000\u0000\u0000\u00ab\u03c0\u0001"+ + "\u0000\u0000\u0000\u00ad\u03c9\u0001\u0000\u0000\u0000\u00af\u03cb\u0001"+ + "\u0000\u0000\u0000\u00b1\u03d0\u0001\u0000\u0000\u0000\u00b3\u03d2\u0001"+ + "\u0000\u0000\u0000\u00b5\u03d7\u0001\u0000\u0000\u0000\u00b7\u03f6\u0001"+ + "\u0000\u0000\u0000\u00b9\u03f9\u0001\u0000\u0000\u0000\u00bb\u0427\u0001"+ + "\u0000\u0000\u0000\u00bd\u0429\u0001\u0000\u0000\u0000\u00bf\u042c\u0001"+ + "\u0000\u0000\u0000\u00c1\u0430\u0001\u0000\u0000\u0000\u00c3\u0434\u0001"+ + "\u0000\u0000\u0000\u00c5\u0436\u0001\u0000\u0000\u0000\u00c7\u0439\u0001"+ + "\u0000\u0000\u0000\u00c9\u043b\u0001\u0000\u0000\u0000\u00cb\u043d\u0001"+ + "\u0000\u0000\u0000\u00cd\u0442\u0001\u0000\u0000\u0000\u00cf\u0444\u0001"+ + "\u0000\u0000\u0000\u00d1\u044a\u0001\u0000\u0000\u0000\u00d3\u0450\u0001"+ + "\u0000\u0000\u0000\u00d5\u0453\u0001\u0000\u0000\u0000\u00d7\u0456\u0001"+ + "\u0000\u0000\u0000\u00d9\u045b\u0001\u0000\u0000\u0000\u00db\u0460\u0001"+ + "\u0000\u0000\u0000\u00dd\u0464\u0001\u0000\u0000\u0000\u00df\u0469\u0001"+ + "\u0000\u0000\u0000\u00e1\u046f\u0001\u0000\u0000\u0000\u00e3\u0472\u0001"+ + "\u0000\u0000\u0000\u00e5\u0474\u0001\u0000\u0000\u0000\u00e7\u047a\u0001"+ + "\u0000\u0000\u0000\u00e9\u047f\u0001\u0000\u0000\u0000\u00eb\u0482\u0001"+ + "\u0000\u0000\u0000\u00ed\u0485\u0001\u0000\u0000\u0000\u00ef\u0488\u0001"+ + "\u0000\u0000\u0000\u00f1\u048a\u0001\u0000\u0000\u0000\u00f3\u048d\u0001"+ + "\u0000\u0000\u0000\u00f5\u048f\u0001\u0000\u0000\u0000\u00f7\u0492\u0001"+ + "\u0000\u0000\u0000\u00f9\u0494\u0001\u0000\u0000\u0000\u00fb\u0496\u0001"+ + "\u0000\u0000\u0000\u00fd\u0498\u0001\u0000\u0000\u0000\u00ff\u049a\u0001"+ + "\u0000\u0000\u0000\u0101\u049c\u0001\u0000\u0000\u0000\u0103\u049e\u0001"+ + "\u0000\u0000\u0000\u0105\u04a0\u0001\u0000\u0000\u0000\u0107\u04b5\u0001"+ + "\u0000\u0000\u0000\u0109\u04b7\u0001\u0000\u0000\u0000\u010b\u04bc\u0001"+ + "\u0000\u0000\u0000\u010d\u04c1\u0001\u0000\u0000\u0000\u010f\u04c6\u0001"+ + "\u0000\u0000\u0000\u0111\u04db\u0001\u0000\u0000\u0000\u0113\u04dd\u0001"+ + "\u0000\u0000\u0000\u0115\u04e5\u0001\u0000\u0000\u0000\u0117\u04e7\u0001"+ + "\u0000\u0000\u0000\u0119\u04eb\u0001\u0000\u0000\u0000\u011b\u04ef\u0001"+ + "\u0000\u0000\u0000\u011d\u04f3\u0001\u0000\u0000\u0000\u011f\u04f8\u0001"+ + "\u0000\u0000\u0000\u0121\u04fc\u0001\u0000\u0000\u0000\u0123\u0500\u0001"+ + "\u0000\u0000\u0000\u0125\u0504\u0001\u0000\u0000\u0000\u0127\u0508\u0001"+ + "\u0000\u0000\u0000\u0129\u050c\u0001\u0000\u0000\u0000\u012b\u0518\u0001"+ + "\u0000\u0000\u0000\u012d\u051b\u0001\u0000\u0000\u0000\u012f\u051f\u0001"+ + "\u0000\u0000\u0000\u0131\u0523\u0001\u0000\u0000\u0000\u0133\u0527\u0001"+ + "\u0000\u0000\u0000\u0135\u052b\u0001\u0000\u0000\u0000\u0137\u052f\u0001"+ + "\u0000\u0000\u0000\u0139\u0533\u0001\u0000\u0000\u0000\u013b\u0538\u0001"+ + "\u0000\u0000\u0000\u013d\u053d\u0001\u0000\u0000\u0000\u013f\u0541\u0001"+ + "\u0000\u0000\u0000\u0141\u0547\u0001\u0000\u0000\u0000\u0143\u0550\u0001"+ + "\u0000\u0000\u0000\u0145\u0554\u0001\u0000\u0000\u0000\u0147\u0558\u0001"+ + "\u0000\u0000\u0000\u0149\u055c\u0001\u0000\u0000\u0000\u014b\u0560\u0001"+ + "\u0000\u0000\u0000\u014d\u0564\u0001\u0000\u0000\u0000\u014f\u0568\u0001"+ + "\u0000\u0000\u0000\u0151\u056c\u0001\u0000\u0000\u0000\u0153\u0570\u0001"+ + "\u0000\u0000\u0000\u0155\u0575\u0001\u0000\u0000\u0000\u0157\u0579\u0001"+ + "\u0000\u0000\u0000\u0159\u057d\u0001\u0000\u0000\u0000\u015b\u0581\u0001"+ + "\u0000\u0000\u0000\u015d\u0586\u0001\u0000\u0000\u0000\u015f\u058a\u0001"+ + "\u0000\u0000\u0000\u0161\u058e\u0001\u0000\u0000\u0000\u0163\u0592\u0001"+ + "\u0000\u0000\u0000\u0165\u0596\u0001\u0000\u0000\u0000\u0167\u059a\u0001"+ + "\u0000\u0000\u0000\u0169\u05a0\u0001\u0000\u0000\u0000\u016b\u05a4\u0001"+ + "\u0000\u0000\u0000\u016d\u05a8\u0001\u0000\u0000\u0000\u016f\u05ac\u0001"+ + "\u0000\u0000\u0000\u0171\u05b0\u0001\u0000\u0000\u0000\u0173\u05b4\u0001"+ + "\u0000\u0000\u0000\u0175\u05b8\u0001\u0000\u0000\u0000\u0177\u05bd\u0001"+ + "\u0000\u0000\u0000\u0179\u05c3\u0001\u0000\u0000\u0000\u017b\u05c9\u0001"+ + "\u0000\u0000\u0000\u017d\u05cd\u0001\u0000\u0000\u0000\u017f\u05d1\u0001"+ + "\u0000\u0000\u0000\u0181\u05d5\u0001\u0000\u0000\u0000\u0183\u05db\u0001"+ + "\u0000\u0000\u0000\u0185\u05e1\u0001\u0000\u0000\u0000\u0187\u05e5\u0001"+ + "\u0000\u0000\u0000\u0189\u05e9\u0001\u0000\u0000\u0000\u018b\u05ed\u0001"+ + "\u0000\u0000\u0000\u018d\u05f3\u0001\u0000\u0000\u0000\u018f\u05f9\u0001"+ + "\u0000\u0000\u0000\u0191\u05ff\u0001\u0000\u0000\u0000\u0193\u0604\u0001"+ + "\u0000\u0000\u0000\u0195\u0609\u0001\u0000\u0000\u0000\u0197\u060d\u0001"+ + "\u0000\u0000\u0000\u0199\u0611\u0001\u0000\u0000\u0000\u019b\u0615\u0001"+ + "\u0000\u0000\u0000\u019d\u0619\u0001\u0000\u0000\u0000\u019f\u061d\u0001"+ + "\u0000\u0000\u0000\u01a1\u0621\u0001\u0000\u0000\u0000\u01a3\u0625\u0001"+ + "\u0000\u0000\u0000\u01a5\u0629\u0001\u0000\u0000\u0000\u01a7\u062e\u0001"+ + "\u0000\u0000\u0000\u01a9\u0632\u0001\u0000\u0000\u0000\u01ab\u0636\u0001"+ + "\u0000\u0000\u0000\u01ad\u063a\u0001\u0000\u0000\u0000\u01af\u0642\u0001"+ + "\u0000\u0000\u0000\u01b1\u0657\u0001\u0000\u0000\u0000\u01b3\u065b\u0001"+ + "\u0000\u0000\u0000\u01b5\u065f\u0001\u0000\u0000\u0000\u01b7\u0663\u0001"+ + "\u0000\u0000\u0000\u01b9\u0667\u0001\u0000\u0000\u0000\u01bb\u066b\u0001"+ + "\u0000\u0000\u0000\u01bd\u0670\u0001\u0000\u0000\u0000\u01bf\u0674\u0001"+ + "\u0000\u0000\u0000\u01c1\u0678\u0001\u0000\u0000\u0000\u01c3\u067c\u0001"+ + "\u0000\u0000\u0000\u01c5\u0680\u0001\u0000\u0000\u0000\u01c7\u0684\u0001"+ + "\u0000\u0000\u0000\u01c9\u0687\u0001\u0000\u0000\u0000\u01cb\u068b\u0001"+ + "\u0000\u0000\u0000\u01cd\u068f\u0001\u0000\u0000\u0000\u01cf\u0693\u0001"+ + "\u0000\u0000\u0000\u01d1\u0697\u0001\u0000\u0000\u0000\u01d3\u069c\u0001"+ + "\u0000\u0000\u0000\u01d5\u06a1\u0001\u0000\u0000\u0000\u01d7\u06a5\u0001"+ + "\u0000\u0000\u0000\u01d9\u06a9\u0001\u0000\u0000\u0000\u01db\u01dc\u0005"+ + "/\u0000\u0000\u01dc\u01dd\u0005/\u0000\u0000\u01dd\u01e1\u0001\u0000\u0000"+ + "\u0000\u01de\u01e0\b\u0000\u0000\u0000\u01df\u01de\u0001\u0000\u0000\u0000"+ + "\u01e0\u01e3\u0001\u0000\u0000\u0000\u01e1\u01df\u0001\u0000\u0000\u0000"+ + "\u01e1\u01e2\u0001\u0000\u0000\u0000\u01e2\u01e5\u0001\u0000\u0000\u0000"+ + "\u01e3\u01e1\u0001\u0000\u0000\u0000\u01e4\u01e6\u0005\r\u0000\u0000\u01e5"+ + "\u01e4\u0001\u0000\u0000\u0000\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6"+ + "\u01e8\u0001\u0000\u0000\u0000\u01e7\u01e9\u0005\n\u0000\u0000\u01e8\u01e7"+ + "\u0001\u0000\u0000\u0000\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9\u01ea"+ + "\u0001\u0000\u0000\u0000\u01ea\u01eb\u0006\u0000\u0000\u0000\u01eb\u0012"+ + "\u0001\u0000\u0000\u0000\u01ec\u01ed\u0005/\u0000\u0000\u01ed\u01ee\u0005"+ + "*\u0000\u0000\u01ee\u01f3\u0001\u0000\u0000\u0000\u01ef\u01f2\u0003\u0013"+ + "\u0001\u0000\u01f0\u01f2\t\u0000\u0000\u0000\u01f1\u01ef\u0001\u0000\u0000"+ + "\u0000\u01f1\u01f0\u0001\u0000\u0000\u0000\u01f2\u01f5\u0001\u0000\u0000"+ + "\u0000\u01f3\u01f4\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000"+ + "\u0000\u01f4\u01f6\u0001\u0000\u0000\u0000\u01f5\u01f3\u0001\u0000\u0000"+ + "\u0000\u01f6\u01f7\u0005*\u0000\u0000\u01f7\u01f8\u0005/\u0000\u0000\u01f8"+ + "\u01f9\u0001\u0000\u0000\u0000\u01f9\u01fa\u0006\u0001\u0000\u0000\u01fa"+ + "\u0014\u0001\u0000\u0000\u0000\u01fb\u01fd\u0007\u0001\u0000\u0000\u01fc"+ + "\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000\u0000\u0000\u01fe"+ + "\u01fc\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000\u0000\u0000\u01ff"+ + "\u0200\u0001\u0000\u0000\u0000\u0200\u0201\u0006\u0002\u0000\u0000\u0201"+ + "\u0016\u0001\u0000\u0000\u0000\u0202\u0203\u0004\u0003\u0000\u0000\u0203"+ + "\u0204\u0007\u0002\u0000\u0000\u0204\u0205\u0007\u0003\u0000\u0000\u0205"+ + "\u0206\u0007\u0004\u0000\u0000\u0206\u0207\u0007\u0005\u0000\u0000\u0207"+ + "\u0208\u0007\u0006\u0000\u0000\u0208\u0209\u0007\u0007\u0000\u0000\u0209"+ + "\u020a\u0005_\u0000\u0000\u020a\u020b\u0007\b\u0000\u0000\u020b\u020c"+ + "\u0007\t\u0000\u0000\u020c\u020d\u0007\n\u0000\u0000\u020d\u020e\u0007"+ + "\u0005\u0000\u0000\u020e\u020f\u0007\u000b\u0000\u0000\u020f\u0210\u0001"+ + "\u0000\u0000\u0000\u0210\u0211\u0006\u0003\u0001\u0000\u0211\u0018\u0001"+ + "\u0000\u0000\u0000\u0212\u0213\u0007\u0007\u0000\u0000\u0213\u0214\u0007"+ + "\u0005\u0000\u0000\u0214\u0215\u0007\f\u0000\u0000\u0215\u0216\u0007\n"+ + "\u0000\u0000\u0216\u0217\u0007\u0002\u0000\u0000\u0217\u0218\u0007\u0003"+ + "\u0000\u0000\u0218\u0219\u0001\u0000\u0000\u0000\u0219\u021a\u0006\u0004"+ + "\u0002\u0000\u021a\u001a\u0001\u0000\u0000\u0000\u021b\u021c\u0007\u0007"+ + "\u0000\u0000\u021c\u021d\u0007\r\u0000\u0000\u021d\u021e\u0007\b\u0000"+ + "\u0000\u021e\u021f\u0007\u000e\u0000\u0000\u021f\u0220\u0007\u0004\u0000"+ + "\u0000\u0220\u0221\u0007\n\u0000\u0000\u0221\u0222\u0007\u0005\u0000\u0000"+ + "\u0222\u0223\u0001\u0000\u0000\u0000\u0223\u0224\u0006\u0005\u0003\u0000"+ + "\u0224\u001c\u0001\u0000\u0000\u0000\u0225\u0226\u0007\u000f\u0000\u0000"+ + "\u0226\u0227\u0007\n\u0000\u0000\u0227\u0228\u0007\u0010\u0000\u0000\u0228"+ + "\u0229\u0007\u0010\u0000\u0000\u0229\u022a\u0007\u0007\u0000\u0000\u022a"+ + "\u022b\u0007\u0002\u0000\u0000\u022b\u022c\u0007\u000b\u0000\u0000\u022c"+ + "\u022d\u0001\u0000\u0000\u0000\u022d\u022e\u0006\u0006\u0004\u0000\u022e"+ + "\u001e\u0001\u0000\u0000\u0000\u022f\u0230\u0007\u0007\u0000\u0000\u0230"+ + "\u0231\u0007\u0011\u0000\u0000\u0231\u0232\u0007\u0004\u0000\u0000\u0232"+ + "\u0233\u0007\u000e\u0000\u0000\u0233\u0234\u0001\u0000\u0000\u0000\u0234"+ + "\u0235\u0006\u0007\u0004\u0000\u0235 \u0001\u0000\u0000\u0000\u0236\u0237"+ + "\u0007\u0006\u0000\u0000\u0237\u0238\u0007\f\u0000\u0000\u0238\u0239\u0007"+ + "\t\u0000\u0000\u0239\u023a\u0007\u0012\u0000\u0000\u023a\u023b\u0001\u0000"+ + "\u0000\u0000\u023b\u023c\u0006\b\u0004\u0000\u023c\"\u0001\u0000\u0000"+ + "\u0000\u023d\u023e\u0007\u000e\u0000\u0000\u023e\u023f\u0007\n\u0000\u0000"+ + "\u023f\u0240\u0007\u0013\u0000\u0000\u0240\u0241\u0007\n\u0000\u0000\u0241"+ + "\u0242\u0007\u000b\u0000\u0000\u0242\u0243\u0001\u0000\u0000\u0000\u0243"+ + "\u0244\u0006\t\u0004\u0000\u0244$\u0001\u0000\u0000\u0000\u0245\u0246"+ + "\u0007\f\u0000\u0000\u0246\u0247\u0007\t\u0000\u0000\u0247\u0248\u0007"+ + "\u0014\u0000\u0000\u0248\u0249\u0001\u0000\u0000\u0000\u0249\u024a\u0006"+ + "\n\u0004\u0000\u024a&\u0001\u0000\u0000\u0000\u024b\u024c\u0007\u0010"+ + "\u0000\u0000\u024c\u024d\u0007\t\u0000\u0000\u024d\u024e\u0007\f\u0000"+ + "\u0000\u024e\u024f\u0007\u000b\u0000\u0000\u024f\u0250\u0001\u0000\u0000"+ + "\u0000\u0250\u0251\u0006\u000b\u0004\u0000\u0251(\u0001\u0000\u0000\u0000"+ + "\u0252\u0253\u0007\u0010\u0000\u0000\u0253\u0254\u0007\u000b\u0000\u0000"+ + "\u0254\u0255\u0007\u0004\u0000\u0000\u0255\u0256\u0007\u000b\u0000\u0000"+ + "\u0256\u0257\u0007\u0010\u0000\u0000\u0257\u0258\u0001\u0000\u0000\u0000"+ + "\u0258\u0259\u0006\f\u0004\u0000\u0259*\u0001\u0000\u0000\u0000\u025a"+ + "\u025b\u0007\u0014\u0000\u0000\u025b\u025c\u0007\u0003\u0000\u0000\u025c"+ + "\u025d\u0007\u0007\u0000\u0000\u025d\u025e\u0007\f\u0000\u0000\u025e\u025f"+ + "\u0007\u0007\u0000\u0000\u025f\u0260\u0001\u0000\u0000\u0000\u0260\u0261"+ + "\u0006\r\u0004\u0000\u0261,\u0001\u0000\u0000\u0000\u0262\u0263\u0004"+ + "\u000e\u0001\u0000\u0263\u0264\u0007\n\u0000\u0000\u0264\u0265\u0007\u0005"+ + "\u0000\u0000\u0265\u0266\u0007\u000e\u0000\u0000\u0266\u0267\u0007\n\u0000"+ + "\u0000\u0267\u0268\u0007\u0005\u0000\u0000\u0268\u0269\u0007\u0007\u0000"+ + "\u0000\u0269\u026a\u0007\u0010\u0000\u0000\u026a\u026b\u0007\u000b\u0000"+ + "\u0000\u026b\u026c\u0007\u0004\u0000\u0000\u026c\u026d\u0007\u000b\u0000"+ + "\u0000\u026d\u026e\u0007\u0010\u0000\u0000\u026e\u026f\u0001\u0000\u0000"+ + "\u0000\u026f\u0270\u0006\u000e\u0004\u0000\u0270.\u0001\u0000\u0000\u0000"+ + "\u0271\u0272\u0007\u0015\u0000\u0000\u0272\u0273\u0007\f\u0000\u0000\u0273"+ + "\u0274\u0007\t\u0000\u0000\u0274\u0275\u0007\u0013\u0000\u0000\u0275\u0276"+ + "\u0001\u0000\u0000\u0000\u0276\u0277\u0006\u000f\u0005\u0000\u02770\u0001"+ + "\u0000\u0000\u0000\u0278\u0279\u0007\u000e\u0000\u0000\u0279\u027a\u0007"+ + "\t\u0000\u0000\u027a\u027b\u0007\t\u0000\u0000\u027b\u027c\u0007\u0012"+ + "\u0000\u0000\u027c\u027d\u0007\u0016\u0000\u0000\u027d\u027e\u0007\b\u0000"+ + "\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0006\u0010\u0006"+ + "\u0000\u02802\u0001\u0000\u0000\u0000\u0281\u0282\u0004\u0011\u0002\u0000"+ + "\u0282\u0283\u0007\u0015\u0000\u0000\u0283\u0284\u0007\u0016\u0000\u0000"+ + "\u0284\u0285\u0007\u000e\u0000\u0000\u0285\u0286\u0007\u000e\u0000\u0000"+ + "\u0286\u0287\u0001\u0000\u0000\u0000\u0287\u0288\u0006\u0011\u0006\u0000"+ + "\u02884\u0001\u0000\u0000\u0000\u0289\u028a\u0004\u0012\u0003\u0000\u028a"+ + "\u028b\u0007\u000e\u0000\u0000\u028b\u028c\u0007\u0007\u0000\u0000\u028c"+ + "\u028d\u0007\u0015\u0000\u0000\u028d\u028e\u0007\u000b\u0000\u0000\u028e"+ + "\u028f\u0001\u0000\u0000\u0000\u028f\u0290\u0006\u0012\u0006\u0000\u0290"+ + "6\u0001\u0000\u0000\u0000\u0291\u0292\u0004\u0013\u0004\u0000\u0292\u0293"+ + "\u0007\f\u0000\u0000\u0293\u0294\u0007\n\u0000\u0000\u0294\u0295\u0007"+ + "\u0006\u0000\u0000\u0295\u0296\u0007\u0003\u0000\u0000\u0296\u0297\u0007"+ + "\u000b\u0000\u0000\u0297\u0298\u0001\u0000\u0000\u0000\u0298\u0299\u0006"+ + "\u0013\u0006\u0000\u02998\u0001\u0000\u0000\u0000\u029a\u029b\u0004\u0014"+ + "\u0005\u0000\u029b\u029c\u0007\u000e\u0000\u0000\u029c\u029d\u0007\t\u0000"+ + "\u0000\u029d\u029e\u0007\t\u0000\u0000\u029e\u029f\u0007\u0012\u0000\u0000"+ + "\u029f\u02a0\u0007\u0016\u0000\u0000\u02a0\u02a1\u0007\b\u0000\u0000\u02a1"+ + "\u02a2\u0005_\u0000\u0000\u02a2\u02a3\u0005\u8001\uf414\u0000\u0000\u02a3"+ + "\u02a4\u0001\u0000\u0000\u0000\u02a4\u02a5\u0006\u0014\u0007\u0000\u02a5"+ + ":\u0001\u0000\u0000\u0000\u02a6\u02a7\u0004\u0015\u0006\u0000\u02a7\u02a8"+ + "\u0007\u0013\u0000\u0000\u02a8\u02a9\u0007\u0007\u0000\u0000\u02a9\u02aa"+ + "\u0007\u000b\u0000\u0000\u02aa\u02ab\u0007\f\u0000\u0000\u02ab\u02ac\u0007"+ + "\n\u0000\u0000\u02ac\u02ad\u0007\u0002\u0000\u0000\u02ad\u02ae\u0007\u0010"+ + "\u0000\u0000\u02ae\u02af\u0001\u0000\u0000\u0000\u02af\u02b0\u0006\u0015"+ + "\b\u0000\u02b0<\u0001\u0000\u0000\u0000\u02b1\u02b2\u0007\u0013\u0000"+ + "\u0000\u02b2\u02b3\u0007\u0011\u0000\u0000\u02b3\u02b4\u0005_\u0000\u0000"+ + "\u02b4\u02b5\u0007\u0007\u0000\u0000\u02b5\u02b6\u0007\r\u0000\u0000\u02b6"+ + "\u02b7\u0007\b\u0000\u0000\u02b7\u02b8\u0007\u0004\u0000\u0000\u02b8\u02b9"+ + "\u0007\u0005\u0000\u0000\u02b9\u02ba\u0007\u000f\u0000\u0000\u02ba\u02bb"+ + "\u0001\u0000\u0000\u0000\u02bb\u02bc\u0006\u0016\t\u0000\u02bc>\u0001"+ + "\u0000\u0000\u0000\u02bd\u02be\u0007\u000f\u0000\u0000\u02be\u02bf\u0007"+ + "\f\u0000\u0000\u02bf\u02c0\u0007\t\u0000\u0000\u02c0\u02c1\u0007\b\u0000"+ + "\u0000\u02c1\u02c2\u0001\u0000\u0000\u0000\u02c2\u02c3\u0006\u0017\n\u0000"+ + "\u02c3@\u0001\u0000\u0000\u0000\u02c4\u02c5\u0007\u0012\u0000\u0000\u02c5"+ + "\u02c6\u0007\u0007\u0000\u0000\u02c6\u02c7\u0007\u0007\u0000\u0000\u02c7"+ + "\u02c8\u0007\b\u0000\u0000\u02c8\u02c9\u0001\u0000\u0000\u0000\u02c9\u02ca"+ + "\u0006\u0018\n\u0000\u02caB\u0001\u0000\u0000\u0000\u02cb\u02cc\u0004"+ + "\u0019\u0007\u0000\u02cc\u02cd\u0007\n\u0000\u0000\u02cd\u02ce\u0007\u0005"+ + "\u0000\u0000\u02ce\u02cf\u0007\u0010\u0000\u0000\u02cf\u02d0\u0007\n\u0000"+ + "\u0000\u02d0\u02d1\u0007\u0010\u0000\u0000\u02d1\u02d2\u0007\u000b\u0000"+ + "\u0000\u02d2\u02d3\u0005_\u0000\u0000\u02d3\u02d4\u0005\u8001\uf414\u0000"+ + "\u0000\u02d4\u02d5\u0001\u0000\u0000\u0000\u02d5\u02d6\u0006\u0019\n\u0000"+ + "\u02d6D\u0001\u0000\u0000\u0000\u02d7\u02d8\u0007\f\u0000\u0000\u02d8"+ + "\u02d9\u0007\u0007\u0000\u0000\u02d9\u02da\u0007\u0005\u0000\u0000\u02da"+ + "\u02db\u0007\u0004\u0000\u0000\u02db\u02dc\u0007\u0013\u0000\u0000\u02dc"+ + "\u02dd\u0007\u0007\u0000\u0000\u02dd\u02de\u0001\u0000\u0000\u0000\u02de"+ + "\u02df\u0006\u001a\u000b\u0000\u02dfF\u0001\u0000\u0000\u0000\u02e0\u02e1"+ + "\u0007\u0010\u0000\u0000\u02e1\u02e2\u0007\u0003\u0000\u0000\u02e2\u02e3"+ + "\u0007\t\u0000\u0000\u02e3\u02e4\u0007\u0014\u0000\u0000\u02e4\u02e5\u0001"+ + "\u0000\u0000\u0000\u02e5\u02e6\u0006\u001b\f\u0000\u02e6H\u0001\u0000"+ + "\u0000\u0000\u02e7\u02e9\b\u0017\u0000\u0000\u02e8\u02e7\u0001\u0000\u0000"+ + "\u0000\u02e9\u02ea\u0001\u0000\u0000\u0000\u02ea\u02e8\u0001\u0000\u0000"+ + "\u0000\u02ea\u02eb\u0001\u0000\u0000\u0000\u02eb\u02ec\u0001\u0000\u0000"+ + "\u0000\u02ec\u02ed\u0006\u001c\u0004\u0000\u02edJ\u0001\u0000\u0000\u0000"+ + "\u02ee\u02ef\u0003\u00a1H\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000\u02f0"+ + "\u02f1\u0006\u001d\r\u0000\u02f1\u02f2\u0006\u001d\u000e\u0000\u02f2L"+ + "\u0001\u0000\u0000\u0000\u02f3\u02f4\u0003c)\u0000\u02f4\u02f5\u0001\u0000"+ + "\u0000\u0000\u02f5\u02f6\u0006\u001e\u000f\u0000\u02f6N\u0001\u0000\u0000"+ + "\u0000\u02f7\u02f8\u0003\u01c7\u00db\u0000\u02f8\u02f9\u0001\u0000\u0000"+ + "\u0000\u02f9\u02fa\u0006\u001f\u0010\u0000\u02faP\u0001\u0000\u0000\u0000"+ + "\u02fb\u02fc\u0003\u00cd^\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000\u02fd"+ + "\u02fe\u0006 \u0011\u0000\u02feR\u0001\u0000\u0000\u0000\u02ff\u0300\u0003"+ + "\u00c9\\\u0000\u0300\u0301\u0001\u0000\u0000\u0000\u0301\u0302\u0006!"+ + "\u0012\u0000\u0302T\u0001\u0000\u0000\u0000\u0303\u0304\u0003\u0115\u0082"+ + "\u0000\u0304\u0305\u0001\u0000\u0000\u0000\u0305\u0306\u0006\"\u0013\u0000"+ + "\u0306V\u0001\u0000\u0000\u0000\u0307\u0308\u0003\u0111\u0080\u0000\u0308"+ + "\u0309\u0001\u0000\u0000\u0000\u0309\u030a\u0006#\u0014\u0000\u030aX\u0001"+ + "\u0000\u0000\u0000\u030b\u030c\u0003\u0011\u0000\u0000\u030c\u030d\u0001"+ + "\u0000\u0000\u0000\u030d\u030e\u0006$\u0000\u0000\u030eZ\u0001\u0000\u0000"+ + "\u0000\u030f\u0310\u0003\u0013\u0001\u0000\u0310\u0311\u0001\u0000\u0000"+ + "\u0000\u0311\u0312\u0006%\u0000\u0000\u0312\\\u0001\u0000\u0000\u0000"+ + "\u0313\u0314\u0003\u0015\u0002\u0000\u0314\u0315\u0001\u0000\u0000\u0000"+ + "\u0315\u0316\u0006&\u0000\u0000\u0316^\u0001\u0000\u0000\u0000\u0317\u0318"+ + "\u0003\u00a1H\u0000\u0318\u0319\u0001\u0000\u0000\u0000\u0319\u031a\u0006"+ + "\'\r\u0000\u031a\u031b\u0006\'\u000e\u0000\u031b`\u0001\u0000\u0000\u0000"+ + "\u031c\u031d\u0003\u0109|\u0000\u031d\u031e\u0001\u0000\u0000\u0000\u031e"+ + "\u031f\u0006(\u0015\u0000\u031f\u0320\u0006(\u0016\u0000\u0320b\u0001"+ + "\u0000\u0000\u0000\u0321\u0322\u0007\t\u0000\u0000\u0322\u0323\u0007\u0005"+ + "\u0000\u0000\u0323\u0324\u0001\u0000\u0000\u0000\u0324\u0325\u0006)\u0017"+ + "\u0000\u0325d\u0001\u0000\u0000\u0000\u0326\u0327\u0007\u0014\u0000\u0000"+ + "\u0327\u0328\u0007\n\u0000\u0000\u0328\u0329\u0007\u000b\u0000\u0000\u0329"+ + "\u032a\u0007\u0003\u0000\u0000\u032a\u032b\u0001\u0000\u0000\u0000\u032b"+ + "\u032c\u0006*\u0017\u0000\u032cf\u0001\u0000\u0000\u0000\u032d\u032e\b"+ + "\u0018\u0000\u0000\u032eh\u0001\u0000\u0000\u0000\u032f\u0331\u0003g+"+ + "\u0000\u0330\u032f\u0001\u0000\u0000\u0000\u0331\u0332\u0001\u0000\u0000"+ + "\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0332\u0333\u0001\u0000\u0000"+ + "\u0000\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335\u0003\u00c7[\u0000"+ + "\u0335\u0337\u0001\u0000\u0000\u0000\u0336\u0330\u0001\u0000\u0000\u0000"+ + "\u0336\u0337\u0001\u0000\u0000\u0000\u0337\u0339\u0001\u0000\u0000\u0000"+ + "\u0338\u033a\u0003g+\u0000\u0339\u0338\u0001\u0000\u0000\u0000\u033a\u033b"+ + "\u0001\u0000\u0000\u0000\u033b\u0339\u0001\u0000\u0000\u0000\u033b\u033c"+ + "\u0001\u0000\u0000\u0000\u033cj\u0001\u0000\u0000\u0000\u033d\u033e\u0003"+ + "i,\u0000\u033e\u033f\u0001\u0000\u0000\u0000\u033f\u0340\u0006-\u0018"+ + "\u0000\u0340l\u0001\u0000\u0000\u0000\u0341\u0342\u0003\u0011\u0000\u0000"+ + "\u0342\u0343\u0001\u0000\u0000\u0000\u0343\u0344\u0006.\u0000\u0000\u0344"+ + "n\u0001\u0000\u0000\u0000\u0345\u0346\u0003\u0013\u0001\u0000\u0346\u0347"+ + "\u0001\u0000\u0000\u0000\u0347\u0348\u0006/\u0000\u0000\u0348p\u0001\u0000"+ + "\u0000\u0000\u0349\u034a\u0003\u0015\u0002\u0000\u034a\u034b\u0001\u0000"+ + "\u0000\u0000\u034b\u034c\u00060\u0000\u0000\u034cr\u0001\u0000\u0000\u0000"+ + "\u034d\u034e\u0003\u00a1H\u0000\u034e\u034f\u0001\u0000\u0000\u0000\u034f"+ + "\u0350\u00061\r\u0000\u0350\u0351\u00061\u000e\u0000\u0351\u0352\u0006"+ + "1\u000e\u0000\u0352t\u0001\u0000\u0000\u0000\u0353\u0354\u0003\u00c3Y"+ + "\u0000\u0354\u0355\u0001\u0000\u0000\u0000\u0355\u0356\u00062\u0019\u0000"+ + "\u0356v\u0001\u0000\u0000\u0000\u0357\u0358\u0003\u00c9\\\u0000\u0358"+ + "\u0359\u0001\u0000\u0000\u0000\u0359\u035a\u00063\u0012\u0000\u035ax\u0001"+ + "\u0000\u0000\u0000\u035b\u035c\u0003\u00cd^\u0000\u035c\u035d\u0001\u0000"+ + "\u0000\u0000\u035d\u035e\u00064\u0011\u0000\u035ez\u0001\u0000\u0000\u0000"+ + "\u035f\u0360\u0003e*\u0000\u0360\u0361\u0001\u0000\u0000\u0000\u0361\u0362"+ + "\u00065\u001a\u0000\u0362|\u0001\u0000\u0000\u0000\u0363\u0364\u0003\u01b3"+ + "\u00d1\u0000\u0364\u0365\u0001\u0000\u0000\u0000\u0365\u0366\u00066\u001b"+ + "\u0000\u0366~\u0001\u0000\u0000\u0000\u0367\u0368\u0003\u0115\u0082\u0000"+ + "\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u036a\u00067\u0013\u0000\u036a"+ + "\u0080\u0001\u0000\u0000\u0000\u036b\u036c\u0003\u00e3i\u0000\u036c\u036d"+ + "\u0001\u0000\u0000\u0000\u036d\u036e\u00068\u001c\u0000\u036e\u0082\u0001"+ + "\u0000\u0000\u0000\u036f\u0370\u0003\u0107{\u0000\u0370\u0371\u0001\u0000"+ + "\u0000\u0000\u0371\u0372\u00069\u001d\u0000\u0372\u0084\u0001\u0000\u0000"+ + "\u0000\u0373\u0374\u0003\u0011\u0000\u0000\u0374\u0375\u0001\u0000\u0000"+ + "\u0000\u0375\u0376\u0006:\u0000\u0000\u0376\u0086\u0001\u0000\u0000\u0000"+ + "\u0377\u0378\u0003\u0013\u0001\u0000\u0378\u0379\u0001\u0000\u0000\u0000"+ + "\u0379\u037a\u0006;\u0000\u0000\u037a\u0088\u0001\u0000\u0000\u0000\u037b"+ + "\u037c\u0003\u0015\u0002\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d"+ + "\u037e\u0006<\u0000\u0000\u037e\u008a\u0001\u0000\u0000\u0000\u037f\u0380"+ + "\u0003\u010b}\u0000\u0380\u0381\u0001\u0000\u0000\u0000\u0381\u0382\u0006"+ + "=\u001e\u0000\u0382\u0383\u0006=\u000e\u0000\u0383\u008c\u0001\u0000\u0000"+ + "\u0000\u0384\u0385\u0003\u00c7[\u0000\u0385\u0386\u0001\u0000\u0000\u0000"+ + "\u0386\u0387\u0006>\u001f\u0000\u0387\u008e\u0001\u0000\u0000\u0000\u0388"+ + "\u038e\u0003\u00adN\u0000\u0389\u038e\u0003\u00a3I\u0000\u038a\u038e\u0003"+ + "\u00cd^\u0000\u038b\u038e\u0003\u00a5J\u0000\u038c\u038e\u0003\u00b3Q"+ + "\u0000\u038d\u0388\u0001\u0000\u0000\u0000\u038d\u0389\u0001\u0000\u0000"+ + "\u0000\u038d\u038a\u0001\u0000\u0000\u0000\u038d\u038b\u0001\u0000\u0000"+ + "\u0000\u038d\u038c\u0001\u0000\u0000\u0000\u038e\u038f\u0001\u0000\u0000"+ + "\u0000\u038f\u038d\u0001\u0000\u0000\u0000\u038f\u0390\u0001\u0000\u0000"+ + "\u0000\u0390\u0090\u0001\u0000\u0000\u0000\u0391\u0392\u0003\u0011\u0000"+ + "\u0000\u0392\u0393\u0001\u0000\u0000\u0000\u0393\u0394\u0006@\u0000\u0000"+ + "\u0394\u0092\u0001\u0000\u0000\u0000\u0395\u0396\u0003\u0013\u0001\u0000"+ + "\u0396\u0397\u0001\u0000\u0000\u0000\u0397\u0398\u0006A\u0000\u0000\u0398"+ + "\u0094\u0001\u0000\u0000\u0000\u0399\u039a\u0003\u0015\u0002\u0000\u039a"+ + "\u039b\u0001\u0000\u0000\u0000\u039b\u039c\u0006B\u0000\u0000\u039c\u0096"+ + "\u0001\u0000\u0000\u0000\u039d\u039e\u0003\u0109|\u0000\u039e\u039f\u0001"+ + "\u0000\u0000\u0000\u039f\u03a0\u0006C\u0015\u0000\u03a0\u03a1\u0006C "+ + "\u0000\u03a1\u0098\u0001\u0000\u0000\u0000\u03a2\u03a3\u0003\u00a1H\u0000"+ + "\u03a3\u03a4\u0001\u0000\u0000\u0000\u03a4\u03a5\u0006D\r\u0000\u03a5"+ + "\u03a6\u0006D\u000e\u0000\u03a6\u009a\u0001\u0000\u0000\u0000\u03a7\u03a8"+ + "\u0003\u0015\u0002\u0000\u03a8\u03a9\u0001\u0000\u0000\u0000\u03a9\u03aa"+ + "\u0006E\u0000\u0000\u03aa\u009c\u0001\u0000\u0000\u0000\u03ab\u03ac\u0003"+ + "\u0011\u0000\u0000\u03ac\u03ad\u0001\u0000\u0000\u0000\u03ad\u03ae\u0006"+ + "F\u0000\u0000\u03ae\u009e\u0001\u0000\u0000\u0000\u03af\u03b0\u0003\u0013"+ + "\u0001\u0000\u03b0\u03b1\u0001\u0000\u0000\u0000\u03b1\u03b2\u0006G\u0000"+ + "\u0000\u03b2\u00a0\u0001\u0000\u0000\u0000\u03b3\u03b4\u0005|\u0000\u0000"+ + "\u03b4\u03b5\u0001\u0000\u0000\u0000\u03b5\u03b6\u0006H\u000e\u0000\u03b6"+ + "\u00a2\u0001\u0000\u0000\u0000\u03b7\u03b8\u0007\u0019\u0000\u0000\u03b8"+ + "\u00a4\u0001\u0000\u0000\u0000\u03b9\u03ba\u0007\u001a\u0000\u0000\u03ba"+ + "\u00a6\u0001\u0000\u0000\u0000\u03bb\u03bc\u0005\\\u0000\u0000\u03bc\u03bd"+ + "\u0007\u001b\u0000\u0000\u03bd\u00a8\u0001\u0000\u0000\u0000\u03be\u03bf"+ + "\b\u001c\u0000\u0000\u03bf\u00aa\u0001\u0000\u0000\u0000\u03c0\u03c2\u0007"+ + "\u0007\u0000\u0000\u03c1\u03c3\u0007\u001d\u0000\u0000\u03c2\u03c1\u0001"+ + "\u0000\u0000\u0000\u03c2\u03c3\u0001\u0000\u0000\u0000\u03c3\u03c5\u0001"+ + "\u0000\u0000\u0000\u03c4\u03c6\u0003\u00a3I\u0000\u03c5\u03c4\u0001\u0000"+ + "\u0000\u0000\u03c6\u03c7\u0001\u0000\u0000\u0000\u03c7\u03c5\u0001\u0000"+ + "\u0000\u0000\u03c7\u03c8\u0001\u0000\u0000\u0000\u03c8\u00ac\u0001\u0000"+ + "\u0000\u0000\u03c9\u03ca\u0005@\u0000\u0000\u03ca\u00ae\u0001\u0000\u0000"+ + "\u0000\u03cb\u03cc\u0005`\u0000\u0000\u03cc\u00b0\u0001\u0000\u0000\u0000"+ + "\u03cd\u03d1\b\u001e\u0000\u0000\u03ce\u03cf\u0005`\u0000\u0000\u03cf"+ + "\u03d1\u0005`\u0000\u0000\u03d0\u03cd\u0001\u0000\u0000\u0000\u03d0\u03ce"+ + "\u0001\u0000\u0000\u0000\u03d1\u00b2\u0001\u0000\u0000\u0000\u03d2\u03d3"+ + "\u0005_\u0000\u0000\u03d3\u00b4\u0001\u0000\u0000\u0000\u03d4\u03d8\u0003"+ + "\u00a5J\u0000\u03d5\u03d8\u0003\u00a3I\u0000\u03d6\u03d8\u0003\u00b3Q"+ + "\u0000\u03d7\u03d4\u0001\u0000\u0000\u0000\u03d7\u03d5\u0001\u0000\u0000"+ + "\u0000\u03d7\u03d6\u0001\u0000\u0000\u0000\u03d8\u00b6\u0001\u0000\u0000"+ + "\u0000\u03d9\u03de\u0005\"\u0000\u0000\u03da\u03dd\u0003\u00a7K\u0000"+ + "\u03db\u03dd\u0003\u00a9L\u0000\u03dc\u03da\u0001\u0000\u0000\u0000\u03dc"+ + "\u03db\u0001\u0000\u0000\u0000\u03dd\u03e0\u0001\u0000\u0000\u0000\u03de"+ + "\u03dc\u0001\u0000\u0000\u0000\u03de\u03df\u0001\u0000\u0000\u0000\u03df"+ + "\u03e1\u0001\u0000\u0000\u0000\u03e0\u03de\u0001\u0000\u0000\u0000\u03e1"+ + "\u03f7\u0005\"\u0000\u0000\u03e2\u03e3\u0005\"\u0000\u0000\u03e3\u03e4"+ + "\u0005\"\u0000\u0000\u03e4\u03e5\u0005\"\u0000\u0000\u03e5\u03e9\u0001"+ + "\u0000\u0000\u0000\u03e6\u03e8\b\u0000\u0000\u0000\u03e7\u03e6\u0001\u0000"+ + "\u0000\u0000\u03e8\u03eb\u0001\u0000\u0000\u0000\u03e9\u03ea\u0001\u0000"+ + "\u0000\u0000\u03e9\u03e7\u0001\u0000\u0000\u0000\u03ea\u03ec\u0001\u0000"+ + "\u0000\u0000\u03eb\u03e9\u0001\u0000\u0000\u0000\u03ec\u03ed\u0005\"\u0000"+ + "\u0000\u03ed\u03ee\u0005\"\u0000\u0000\u03ee\u03ef\u0005\"\u0000\u0000"+ + "\u03ef\u03f1\u0001\u0000\u0000\u0000\u03f0\u03f2\u0005\"\u0000\u0000\u03f1"+ + "\u03f0\u0001\u0000\u0000\u0000\u03f1\u03f2\u0001\u0000\u0000\u0000\u03f2"+ + "\u03f4\u0001\u0000\u0000\u0000\u03f3\u03f5\u0005\"\u0000\u0000\u03f4\u03f3"+ + "\u0001\u0000\u0000\u0000\u03f4\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f7"+ + "\u0001\u0000\u0000\u0000\u03f6\u03d9\u0001\u0000\u0000\u0000\u03f6\u03e2"+ + "\u0001\u0000\u0000\u0000\u03f7\u00b8\u0001\u0000\u0000\u0000\u03f8\u03fa"+ + "\u0003\u00a3I\u0000\u03f9\u03f8\u0001\u0000\u0000\u0000\u03fa\u03fb\u0001"+ + "\u0000\u0000\u0000\u03fb\u03f9\u0001\u0000\u0000\u0000\u03fb\u03fc\u0001"+ + "\u0000\u0000\u0000\u03fc\u00ba\u0001\u0000\u0000\u0000\u03fd\u03ff\u0003"+ + "\u00a3I\u0000\u03fe\u03fd\u0001\u0000\u0000\u0000\u03ff\u0400\u0001\u0000"+ + "\u0000\u0000\u0400\u03fe\u0001\u0000\u0000\u0000\u0400\u0401\u0001\u0000"+ + "\u0000\u0000\u0401\u0402\u0001\u0000\u0000\u0000\u0402\u0406\u0003\u00cd"+ + "^\u0000\u0403\u0405\u0003\u00a3I\u0000\u0404\u0403\u0001\u0000\u0000\u0000"+ + "\u0405\u0408\u0001\u0000\u0000\u0000\u0406\u0404\u0001\u0000\u0000\u0000"+ + "\u0406\u0407\u0001\u0000\u0000\u0000\u0407\u0428\u0001\u0000\u0000\u0000"+ + "\u0408\u0406\u0001\u0000\u0000\u0000\u0409\u040b\u0003\u00cd^\u0000\u040a"+ + "\u040c\u0003\u00a3I\u0000\u040b\u040a\u0001\u0000\u0000\u0000\u040c\u040d"+ + "\u0001\u0000\u0000\u0000\u040d\u040b\u0001\u0000\u0000\u0000\u040d\u040e"+ + "\u0001\u0000\u0000\u0000\u040e\u0428\u0001\u0000\u0000\u0000\u040f\u0411"+ + "\u0003\u00a3I\u0000\u0410\u040f\u0001\u0000\u0000\u0000\u0411\u0412\u0001"+ + "\u0000\u0000\u0000\u0412\u0410\u0001\u0000\u0000\u0000\u0412\u0413\u0001"+ + "\u0000\u0000\u0000\u0413\u041b\u0001\u0000\u0000\u0000\u0414\u0418\u0003"+ + "\u00cd^\u0000\u0415\u0417\u0003\u00a3I\u0000\u0416\u0415\u0001\u0000\u0000"+ + "\u0000\u0417\u041a\u0001\u0000\u0000\u0000\u0418\u0416\u0001\u0000\u0000"+ + "\u0000\u0418\u0419\u0001\u0000\u0000\u0000\u0419\u041c\u0001\u0000\u0000"+ + "\u0000\u041a\u0418\u0001\u0000\u0000\u0000\u041b\u0414\u0001\u0000\u0000"+ + "\u0000\u041b\u041c\u0001\u0000\u0000\u0000\u041c\u041d\u0001\u0000\u0000"+ + "\u0000\u041d\u041e\u0003\u00abM\u0000\u041e\u0428\u0001\u0000\u0000\u0000"+ + "\u041f\u0421\u0003\u00cd^\u0000\u0420\u0422\u0003\u00a3I\u0000\u0421\u0420"+ + "\u0001\u0000\u0000\u0000\u0422\u0423\u0001\u0000\u0000\u0000\u0423\u0421"+ + "\u0001\u0000\u0000\u0000\u0423\u0424\u0001\u0000\u0000\u0000\u0424\u0425"+ + "\u0001\u0000\u0000\u0000\u0425\u0426\u0003\u00abM\u0000\u0426\u0428\u0001"+ + "\u0000\u0000\u0000\u0427\u03fe\u0001\u0000\u0000\u0000\u0427\u0409\u0001"+ + "\u0000\u0000\u0000\u0427\u0410\u0001\u0000\u0000\u0000\u0427\u041f\u0001"+ + "\u0000\u0000\u0000\u0428\u00bc\u0001\u0000\u0000\u0000\u0429\u042a\u0007"+ + "\u001f\u0000\u0000\u042a\u042b\u0007 \u0000\u0000\u042b\u00be\u0001\u0000"+ + "\u0000\u0000\u042c\u042d\u0007\u0004\u0000\u0000\u042d\u042e\u0007\u0005"+ + "\u0000\u0000\u042e\u042f\u0007\u000f\u0000\u0000\u042f\u00c0\u0001\u0000"+ + "\u0000\u0000\u0430\u0431\u0007\u0004\u0000\u0000\u0431\u0432\u0007\u0010"+ + "\u0000\u0000\u0432\u0433\u0007\u0002\u0000\u0000\u0433\u00c2\u0001\u0000"+ + "\u0000\u0000\u0434\u0435\u0005=\u0000\u0000\u0435\u00c4\u0001\u0000\u0000"+ + "\u0000\u0436\u0437\u0005:\u0000\u0000\u0437\u0438\u0005:\u0000\u0000\u0438"+ + "\u00c6\u0001\u0000\u0000\u0000\u0439\u043a\u0005:\u0000\u0000\u043a\u00c8"+ + "\u0001\u0000\u0000\u0000\u043b\u043c\u0005,\u0000\u0000\u043c\u00ca\u0001"+ + "\u0000\u0000\u0000\u043d\u043e\u0007\u000f\u0000\u0000\u043e\u043f\u0007"+ + "\u0007\u0000\u0000\u043f\u0440\u0007\u0010\u0000\u0000\u0440\u0441\u0007"+ + "\u0002\u0000\u0000\u0441\u00cc\u0001\u0000\u0000\u0000\u0442\u0443\u0005"+ + ".\u0000\u0000\u0443\u00ce\u0001\u0000\u0000\u0000\u0444\u0445\u0007\u0015"+ + "\u0000\u0000\u0445\u0446\u0007\u0004\u0000\u0000\u0446\u0447\u0007\u000e"+ + "\u0000\u0000\u0447\u0448\u0007\u0010\u0000\u0000\u0448\u0449\u0007\u0007"+ + "\u0000\u0000\u0449\u00d0\u0001\u0000\u0000\u0000\u044a\u044b\u0007\u0015"+ + "\u0000\u0000\u044b\u044c\u0007\n\u0000\u0000\u044c\u044d\u0007\f\u0000"+ + "\u0000\u044d\u044e\u0007\u0010\u0000\u0000\u044e\u044f\u0007\u000b\u0000"+ + "\u0000\u044f\u00d2\u0001\u0000\u0000\u0000\u0450\u0451\u0007\n\u0000\u0000"+ + "\u0451\u0452\u0007\u0005\u0000\u0000\u0452\u00d4\u0001\u0000\u0000\u0000"+ + "\u0453\u0454\u0007\n\u0000\u0000\u0454\u0455\u0007\u0010\u0000\u0000\u0455"+ + "\u00d6\u0001\u0000\u0000\u0000\u0456\u0457\u0007\u000e\u0000\u0000\u0457"+ + "\u0458\u0007\u0004\u0000\u0000\u0458\u0459\u0007\u0010\u0000\u0000\u0459"+ + "\u045a\u0007\u000b\u0000\u0000\u045a\u00d8\u0001\u0000\u0000\u0000\u045b"+ + "\u045c\u0007\u000e\u0000\u0000\u045c\u045d\u0007\n\u0000\u0000\u045d\u045e"+ + "\u0007\u0012\u0000\u0000\u045e\u045f\u0007\u0007\u0000\u0000\u045f\u00da"+ + "\u0001\u0000\u0000\u0000\u0460\u0461\u0007\u0005\u0000\u0000\u0461\u0462"+ + "\u0007\t\u0000\u0000\u0462\u0463\u0007\u000b\u0000\u0000\u0463\u00dc\u0001"+ + "\u0000\u0000\u0000\u0464\u0465\u0007\u0005\u0000\u0000\u0465\u0466\u0007"+ + "\u0016\u0000\u0000\u0466\u0467\u0007\u000e\u0000\u0000\u0467\u0468\u0007"+ + "\u000e\u0000\u0000\u0468\u00de\u0001\u0000\u0000\u0000\u0469\u046a\u0007"+ + "\u0005\u0000\u0000\u046a\u046b\u0007\u0016\u0000\u0000\u046b\u046c\u0007"+ + "\u000e\u0000\u0000\u046c\u046d\u0007\u000e\u0000\u0000\u046d\u046e\u0007"+ + "\u0010\u0000\u0000\u046e\u00e0\u0001\u0000\u0000\u0000\u046f\u0470\u0007"+ + "\t\u0000\u0000\u0470\u0471\u0007\f\u0000\u0000\u0471\u00e2\u0001\u0000"+ + "\u0000\u0000\u0472\u0473\u0005?\u0000\u0000\u0473\u00e4\u0001\u0000\u0000"+ + "\u0000\u0474\u0475\u0007\f\u0000\u0000\u0475\u0476\u0007\u000e\u0000\u0000"+ + "\u0476\u0477\u0007\n\u0000\u0000\u0477\u0478\u0007\u0012\u0000\u0000\u0478"+ + "\u0479\u0007\u0007\u0000\u0000\u0479\u00e6\u0001\u0000\u0000\u0000\u047a"+ + "\u047b\u0007\u000b\u0000\u0000\u047b\u047c\u0007\f\u0000\u0000\u047c\u047d"+ + "\u0007\u0016\u0000\u0000\u047d\u047e\u0007\u0007\u0000\u0000\u047e\u00e8"+ + "\u0001\u0000\u0000\u0000\u047f\u0480\u0005=\u0000\u0000\u0480\u0481\u0005"+ + "=\u0000\u0000\u0481\u00ea\u0001\u0000\u0000\u0000\u0482\u0483\u0005=\u0000"+ + "\u0000\u0483\u0484\u0005~\u0000\u0000\u0484\u00ec\u0001\u0000\u0000\u0000"+ + "\u0485\u0486\u0005!\u0000\u0000\u0486\u0487\u0005=\u0000\u0000\u0487\u00ee"+ + "\u0001\u0000\u0000\u0000\u0488\u0489\u0005<\u0000\u0000\u0489\u00f0\u0001"+ + "\u0000\u0000\u0000\u048a\u048b\u0005<\u0000\u0000\u048b\u048c\u0005=\u0000"+ + "\u0000\u048c\u00f2\u0001\u0000\u0000\u0000\u048d\u048e\u0005>\u0000\u0000"+ + "\u048e\u00f4\u0001\u0000\u0000\u0000\u048f\u0490\u0005>\u0000\u0000\u0490"+ + "\u0491\u0005=\u0000\u0000\u0491\u00f6\u0001\u0000\u0000\u0000\u0492\u0493"+ + "\u0005+\u0000\u0000\u0493\u00f8\u0001\u0000\u0000\u0000\u0494\u0495\u0005"+ + "-\u0000\u0000\u0495\u00fa\u0001\u0000\u0000\u0000\u0496\u0497\u0005*\u0000"+ + "\u0000\u0497\u00fc\u0001\u0000\u0000\u0000\u0498\u0499\u0005/\u0000\u0000"+ + "\u0499\u00fe\u0001\u0000\u0000\u0000\u049a\u049b\u0005%\u0000\u0000\u049b"+ + "\u0100\u0001\u0000\u0000\u0000\u049c\u049d\u0005{\u0000\u0000\u049d\u0102"+ + "\u0001\u0000\u0000\u0000\u049e\u049f\u0005}\u0000\u0000\u049f\u0104\u0001"+ + "\u0000\u0000\u0000\u04a0\u04a1\u0003+\r\u0000\u04a1\u04a2\u0001\u0000"+ + "\u0000\u0000\u04a2\u04a3\u0006z!\u0000\u04a3\u0106\u0001\u0000\u0000\u0000"+ + "\u04a4\u04a7\u0003\u00e3i\u0000\u04a5\u04a8\u0003\u00a5J\u0000\u04a6\u04a8"+ + "\u0003\u00b3Q\u0000\u04a7\u04a5\u0001\u0000\u0000\u0000\u04a7\u04a6\u0001"+ + "\u0000\u0000\u0000\u04a8\u04ac\u0001\u0000\u0000\u0000\u04a9\u04ab\u0003"+ + "\u00b5R\u0000\u04aa\u04a9\u0001\u0000\u0000\u0000\u04ab\u04ae\u0001\u0000"+ + "\u0000\u0000\u04ac\u04aa\u0001\u0000\u0000\u0000\u04ac\u04ad\u0001\u0000"+ + "\u0000\u0000\u04ad\u04b6\u0001\u0000\u0000\u0000\u04ae\u04ac\u0001\u0000"+ + "\u0000\u0000\u04af\u04b1\u0003\u00e3i\u0000\u04b0\u04b2\u0003\u00a3I\u0000"+ + "\u04b1\u04b0\u0001\u0000\u0000\u0000\u04b2\u04b3\u0001\u0000\u0000\u0000"+ + "\u04b3\u04b1\u0001\u0000\u0000\u0000\u04b3\u04b4\u0001\u0000\u0000\u0000"+ + "\u04b4\u04b6\u0001\u0000\u0000\u0000\u04b5\u04a4\u0001\u0000\u0000\u0000"+ + "\u04b5\u04af\u0001\u0000\u0000\u0000\u04b6\u0108\u0001\u0000\u0000\u0000"+ + "\u04b7\u04b8\u0005[\u0000\u0000\u04b8\u04b9\u0001\u0000\u0000\u0000\u04b9"+ + "\u04ba\u0006|\u0004\u0000\u04ba\u04bb\u0006|\u0004\u0000\u04bb\u010a\u0001"+ + "\u0000\u0000\u0000\u04bc\u04bd\u0005]\u0000\u0000\u04bd\u04be\u0001\u0000"+ + "\u0000\u0000\u04be\u04bf\u0006}\u000e\u0000\u04bf\u04c0\u0006}\u000e\u0000"+ + "\u04c0\u010c\u0001\u0000\u0000\u0000\u04c1\u04c2\u0005(\u0000\u0000\u04c2"+ + "\u04c3\u0001\u0000\u0000\u0000\u04c3\u04c4\u0006~\u0004\u0000\u04c4\u04c5"+ + "\u0006~\u0004\u0000\u04c5\u010e\u0001\u0000\u0000\u0000\u04c6\u04c7\u0005"+ + ")\u0000\u0000\u04c7\u04c8\u0001\u0000\u0000\u0000\u04c8\u04c9\u0006\u007f"+ + "\u000e\u0000\u04c9\u04ca\u0006\u007f\u000e\u0000\u04ca\u0110\u0001\u0000"+ + "\u0000\u0000\u04cb\u04cf\u0003\u00a5J\u0000\u04cc\u04ce\u0003\u00b5R\u0000"+ + "\u04cd\u04cc\u0001\u0000\u0000\u0000\u04ce\u04d1\u0001\u0000\u0000\u0000"+ + "\u04cf\u04cd\u0001\u0000\u0000\u0000\u04cf\u04d0\u0001\u0000\u0000\u0000"+ + "\u04d0\u04dc\u0001\u0000\u0000\u0000\u04d1\u04cf\u0001\u0000\u0000\u0000"+ + "\u04d2\u04d5\u0003\u00b3Q\u0000\u04d3\u04d5\u0003\u00adN\u0000\u04d4\u04d2"+ + "\u0001\u0000\u0000\u0000\u04d4\u04d3\u0001\u0000\u0000\u0000\u04d5\u04d7"+ + "\u0001\u0000\u0000\u0000\u04d6\u04d8\u0003\u00b5R\u0000\u04d7\u04d6\u0001"+ + "\u0000\u0000\u0000\u04d8\u04d9\u0001\u0000\u0000\u0000\u04d9\u04d7\u0001"+ + "\u0000\u0000\u0000\u04d9\u04da\u0001\u0000\u0000\u0000\u04da\u04dc\u0001"+ + "\u0000\u0000\u0000\u04db\u04cb\u0001\u0000\u0000\u0000\u04db\u04d4\u0001"+ + "\u0000\u0000\u0000\u04dc\u0112\u0001\u0000\u0000\u0000\u04dd\u04df\u0003"+ + "\u00afO\u0000\u04de\u04e0\u0003\u00b1P\u0000\u04df\u04de\u0001\u0000\u0000"+ + "\u0000\u04e0\u04e1\u0001\u0000\u0000\u0000\u04e1\u04df\u0001\u0000\u0000"+ + "\u0000\u04e1\u04e2\u0001\u0000\u0000\u0000\u04e2\u04e3\u0001\u0000\u0000"+ + "\u0000\u04e3\u04e4\u0003\u00afO\u0000\u04e4\u0114\u0001\u0000\u0000\u0000"+ + "\u04e5\u04e6\u0003\u0113\u0081\u0000\u04e6\u0116\u0001\u0000\u0000\u0000"+ + "\u04e7\u04e8\u0003\u0011\u0000\u0000\u04e8\u04e9\u0001\u0000\u0000\u0000"+ + "\u04e9\u04ea\u0006\u0083\u0000\u0000\u04ea\u0118\u0001\u0000\u0000\u0000"+ + "\u04eb\u04ec\u0003\u0013\u0001\u0000\u04ec\u04ed\u0001\u0000\u0000\u0000"+ + "\u04ed\u04ee\u0006\u0084\u0000\u0000\u04ee\u011a\u0001\u0000\u0000\u0000"+ + "\u04ef\u04f0\u0003\u0015\u0002\u0000\u04f0\u04f1\u0001\u0000\u0000\u0000"+ + "\u04f1\u04f2\u0006\u0085\u0000\u0000\u04f2\u011c\u0001\u0000\u0000\u0000"+ + "\u04f3\u04f4\u0003\u00a1H\u0000\u04f4\u04f5\u0001\u0000\u0000\u0000\u04f5"+ + "\u04f6\u0006\u0086\r\u0000\u04f6\u04f7\u0006\u0086\u000e\u0000\u04f7\u011e"+ + "\u0001\u0000\u0000\u0000\u04f8\u04f9\u0003\u0109|\u0000\u04f9\u04fa\u0001"+ + "\u0000\u0000\u0000\u04fa\u04fb\u0006\u0087\u0015\u0000\u04fb\u0120\u0001"+ + "\u0000\u0000\u0000\u04fc\u04fd\u0003\u010b}\u0000\u04fd\u04fe\u0001\u0000"+ + "\u0000\u0000\u04fe\u04ff\u0006\u0088\u001e\u0000\u04ff\u0122\u0001\u0000"+ + "\u0000\u0000\u0500\u0501\u0003\u00c7[\u0000\u0501\u0502\u0001\u0000\u0000"+ + "\u0000\u0502\u0503\u0006\u0089\u001f\u0000\u0503\u0124\u0001\u0000\u0000"+ + "\u0000\u0504\u0505\u0003\u00c9\\\u0000\u0505\u0506\u0001\u0000\u0000\u0000"+ + "\u0506\u0507\u0006\u008a\u0012\u0000\u0507\u0126\u0001\u0000\u0000\u0000"+ + "\u0508\u0509\u0003\u00c3Y\u0000\u0509\u050a\u0001\u0000\u0000\u0000\u050a"+ + "\u050b\u0006\u008b\u0019\u0000\u050b\u0128\u0001\u0000\u0000\u0000\u050c"+ + "\u050d\u0007\u0013\u0000\u0000\u050d\u050e\u0007\u0007\u0000\u0000\u050e"+ + "\u050f\u0007\u000b\u0000\u0000\u050f\u0510\u0007\u0004\u0000\u0000\u0510"+ + "\u0511\u0007\u000f\u0000\u0000\u0511\u0512\u0007\u0004\u0000\u0000\u0512"+ + "\u0513\u0007\u000b\u0000\u0000\u0513\u0514\u0007\u0004\u0000\u0000\u0514"+ + "\u012a\u0001\u0000\u0000\u0000\u0515\u0519\b!\u0000\u0000\u0516\u0517"+ + "\u0005/\u0000\u0000\u0517\u0519\b\"\u0000\u0000\u0518\u0515\u0001\u0000"+ + "\u0000\u0000\u0518\u0516\u0001\u0000\u0000\u0000\u0519\u012c\u0001\u0000"+ + "\u0000\u0000\u051a\u051c\u0003\u012b\u008d\u0000\u051b\u051a\u0001\u0000"+ + "\u0000\u0000\u051c\u051d\u0001\u0000\u0000\u0000\u051d\u051b\u0001\u0000"+ + "\u0000\u0000\u051d\u051e\u0001\u0000\u0000\u0000\u051e\u012e\u0001\u0000"+ + "\u0000\u0000\u051f\u0520\u0003\u012d\u008e\u0000\u0520\u0521\u0001\u0000"+ + "\u0000\u0000\u0521\u0522\u0006\u008f\"\u0000\u0522\u0130\u0001\u0000\u0000"+ + "\u0000\u0523\u0524\u0003\u00b7S\u0000\u0524\u0525\u0001\u0000\u0000\u0000"+ + "\u0525\u0526\u0006\u0090#\u0000\u0526\u0132\u0001\u0000\u0000\u0000\u0527"+ + "\u0528\u0003\u0011\u0000\u0000\u0528\u0529\u0001\u0000\u0000\u0000\u0529"+ + "\u052a\u0006\u0091\u0000\u0000\u052a\u0134\u0001\u0000\u0000\u0000\u052b"+ + "\u052c\u0003\u0013\u0001\u0000\u052c\u052d\u0001\u0000\u0000\u0000\u052d"+ + "\u052e\u0006\u0092\u0000\u0000\u052e\u0136\u0001\u0000\u0000\u0000\u052f"+ + "\u0530\u0003\u0015\u0002\u0000\u0530\u0531\u0001\u0000\u0000\u0000\u0531"+ + "\u0532\u0006\u0093\u0000\u0000\u0532\u0138\u0001\u0000\u0000\u0000\u0533"+ + "\u0534\u0003\u00a1H\u0000\u0534\u0535\u0001\u0000\u0000\u0000\u0535\u0536"+ + "\u0006\u0094\r\u0000\u0536\u0537\u0006\u0094\u000e\u0000\u0537\u013a\u0001"+ + "\u0000\u0000\u0000\u0538\u0539\u0007#\u0000\u0000\u0539\u053a\u0007\t"+ + "\u0000\u0000\u053a\u053b\u0007\n\u0000\u0000\u053b\u053c\u0007\u0005\u0000"+ + "\u0000\u053c\u013c\u0001\u0000\u0000\u0000\u053d\u053e\u0003\u01c7\u00db"+ + "\u0000\u053e\u053f\u0001\u0000\u0000\u0000\u053f\u0540\u0006\u0096\u0010"+ + "\u0000\u0540\u013e\u0001\u0000\u0000\u0000\u0541\u0542\u0003c)\u0000\u0542"+ + "\u0543\u0001\u0000\u0000\u0000\u0543\u0544\u0006\u0097\u000f\u0000\u0544"+ + "\u0545\u0006\u0097\u000e\u0000\u0545\u0546\u0006\u0097\u0004\u0000\u0546"+ + "\u0140\u0001\u0000\u0000\u0000\u0547\u0548\u0007\u0016\u0000\u0000\u0548"+ + "\u0549\u0007\u0010\u0000\u0000\u0549\u054a\u0007\n\u0000\u0000\u054a\u054b"+ + "\u0007\u0005\u0000\u0000\u054b\u054c\u0007\u0006\u0000\u0000\u054c\u054d"+ + "\u0001\u0000\u0000\u0000\u054d\u054e\u0006\u0098\u000e\u0000\u054e\u054f"+ + "\u0006\u0098\u0004\u0000\u054f\u0142\u0001\u0000\u0000\u0000\u0550\u0551"+ + "\u0003\u012d\u008e\u0000\u0551\u0552\u0001\u0000\u0000\u0000\u0552\u0553"+ + "\u0006\u0099\"\u0000\u0553\u0144\u0001\u0000\u0000\u0000\u0554\u0555\u0003"+ + "\u00b7S\u0000\u0555\u0556\u0001\u0000\u0000\u0000\u0556\u0557\u0006\u009a"+ + "#\u0000\u0557\u0146\u0001\u0000\u0000\u0000\u0558\u0559\u0003\u00c7[\u0000"+ + "\u0559\u055a\u0001\u0000\u0000\u0000\u055a\u055b\u0006\u009b\u001f\u0000"+ + "\u055b\u0148\u0001\u0000\u0000\u0000\u055c\u055d\u0003\u0111\u0080\u0000"+ + "\u055d\u055e\u0001\u0000\u0000\u0000\u055e\u055f\u0006\u009c\u0014\u0000"+ + "\u055f\u014a\u0001\u0000\u0000\u0000\u0560\u0561\u0003\u0115\u0082\u0000"+ + "\u0561\u0562\u0001\u0000\u0000\u0000\u0562\u0563\u0006\u009d\u0013\u0000"+ + "\u0563\u014c\u0001\u0000\u0000\u0000\u0564\u0565\u0003\u0011\u0000\u0000"+ + "\u0565\u0566\u0001\u0000\u0000\u0000\u0566\u0567\u0006\u009e\u0000\u0000"+ + "\u0567\u014e\u0001\u0000\u0000\u0000\u0568\u0569\u0003\u0013\u0001\u0000"+ + "\u0569\u056a\u0001\u0000\u0000\u0000\u056a\u056b\u0006\u009f\u0000\u0000"+ + "\u056b\u0150\u0001\u0000\u0000\u0000\u056c\u056d\u0003\u0015\u0002\u0000"+ + "\u056d\u056e\u0001\u0000\u0000\u0000\u056e\u056f\u0006\u00a0\u0000\u0000"+ + "\u056f\u0152\u0001\u0000\u0000\u0000\u0570\u0571\u0003\u00a1H\u0000\u0571"+ + "\u0572\u0001\u0000\u0000\u0000\u0572\u0573\u0006\u00a1\r\u0000\u0573\u0574"+ + "\u0006\u00a1\u000e\u0000\u0574\u0154\u0001\u0000\u0000\u0000\u0575\u0576"+ + "\u0003\u00c7[\u0000\u0576\u0577\u0001\u0000\u0000\u0000\u0577\u0578\u0006"+ + "\u00a2\u001f\u0000\u0578\u0156\u0001\u0000\u0000\u0000\u0579\u057a\u0003"+ + "\u00c9\\\u0000\u057a\u057b\u0001\u0000\u0000\u0000\u057b\u057c\u0006\u00a3"+ + "\u0012\u0000\u057c\u0158\u0001\u0000\u0000\u0000\u057d\u057e\u0003\u00cd"+ + "^\u0000\u057e\u057f\u0001\u0000\u0000\u0000\u057f\u0580\u0006\u00a4\u0011"+ + "\u0000\u0580\u015a\u0001\u0000\u0000\u0000\u0581\u0582\u0003c)\u0000\u0582"+ + "\u0583\u0001\u0000\u0000\u0000\u0583\u0584\u0006\u00a5\u000f\u0000\u0584"+ + "\u0585\u0006\u00a5$\u0000\u0585\u015c\u0001\u0000\u0000\u0000\u0586\u0587"+ + "\u0003\u012d\u008e\u0000\u0587\u0588\u0001\u0000\u0000\u0000\u0588\u0589"+ + "\u0006\u00a6\"\u0000\u0589\u015e\u0001\u0000\u0000\u0000\u058a\u058b\u0003"+ + "\u00b7S\u0000\u058b\u058c\u0001\u0000\u0000\u0000\u058c\u058d\u0006\u00a7"+ + "#\u0000\u058d\u0160\u0001\u0000\u0000\u0000\u058e\u058f\u0003\u0011\u0000"+ + "\u0000\u058f\u0590\u0001\u0000\u0000\u0000\u0590\u0591\u0006\u00a8\u0000"+ + "\u0000\u0591\u0162\u0001\u0000\u0000\u0000\u0592\u0593\u0003\u0013\u0001"+ + "\u0000\u0593\u0594\u0001\u0000\u0000\u0000\u0594\u0595\u0006\u00a9\u0000"+ + "\u0000\u0595\u0164\u0001\u0000\u0000\u0000\u0596\u0597\u0003\u0015\u0002"+ + "\u0000\u0597\u0598\u0001\u0000\u0000\u0000\u0598\u0599\u0006\u00aa\u0000"+ + "\u0000\u0599\u0166\u0001\u0000\u0000\u0000\u059a\u059b\u0003\u00a1H\u0000"+ + "\u059b\u059c\u0001\u0000\u0000\u0000\u059c\u059d\u0006\u00ab\r\u0000\u059d"+ + "\u059e\u0006\u00ab\u000e\u0000\u059e\u059f\u0006\u00ab\u000e\u0000\u059f"+ + "\u0168\u0001\u0000\u0000\u0000\u05a0\u05a1\u0003\u00c9\\\u0000\u05a1\u05a2"+ + "\u0001\u0000\u0000\u0000\u05a2\u05a3\u0006\u00ac\u0012\u0000\u05a3\u016a"+ + "\u0001\u0000\u0000\u0000\u05a4\u05a5\u0003\u00cd^\u0000\u05a5\u05a6\u0001"+ + "\u0000\u0000\u0000\u05a6\u05a7\u0006\u00ad\u0011\u0000\u05a7\u016c\u0001"+ + "\u0000\u0000\u0000\u05a8\u05a9\u0003\u01b3\u00d1\u0000\u05a9\u05aa\u0001"+ + "\u0000\u0000\u0000\u05aa\u05ab\u0006\u00ae\u001b\u0000\u05ab\u016e\u0001"+ + "\u0000\u0000\u0000\u05ac\u05ad\u0003\u0011\u0000\u0000\u05ad\u05ae\u0001"+ + "\u0000\u0000\u0000\u05ae\u05af\u0006\u00af\u0000\u0000\u05af\u0170\u0001"+ + "\u0000\u0000\u0000\u05b0\u05b1\u0003\u0013\u0001\u0000\u05b1\u05b2\u0001"+ + "\u0000\u0000\u0000\u05b2\u05b3\u0006\u00b0\u0000\u0000\u05b3\u0172\u0001"+ + "\u0000\u0000\u0000\u05b4\u05b5\u0003\u0015\u0002\u0000\u05b5\u05b6\u0001"+ + "\u0000\u0000\u0000\u05b6\u05b7\u0006\u00b1\u0000\u0000\u05b7\u0174\u0001"+ + "\u0000\u0000\u0000\u05b8\u05b9\u0003\u00a1H\u0000\u05b9\u05ba\u0001\u0000"+ + "\u0000\u0000\u05ba\u05bb\u0006\u00b2\r\u0000\u05bb\u05bc\u0006\u00b2\u000e"+ + "\u0000\u05bc\u0176\u0001\u0000\u0000\u0000\u05bd\u05be\u0003\u012d\u008e"+ + "\u0000\u05be\u05bf\u0001\u0000\u0000\u0000\u05bf\u05c0\u0006\u00b3\"\u0000"+ + "\u05c0\u05c1\u0006\u00b3\u000e\u0000\u05c1\u05c2\u0006\u00b3%\u0000\u05c2"+ + "\u0178\u0001\u0000\u0000\u0000\u05c3\u05c4\u0003\u00b7S\u0000\u05c4\u05c5"+ + "\u0001\u0000\u0000\u0000\u05c5\u05c6\u0006\u00b4#\u0000\u05c6\u05c7\u0006"+ + "\u00b4\u000e\u0000\u05c7\u05c8\u0006\u00b4%\u0000\u05c8\u017a\u0001\u0000"+ + "\u0000\u0000\u05c9\u05ca\u0003\u0011\u0000\u0000\u05ca\u05cb\u0001\u0000"+ + "\u0000\u0000\u05cb\u05cc\u0006\u00b5\u0000\u0000\u05cc\u017c\u0001\u0000"+ + "\u0000\u0000\u05cd\u05ce\u0003\u0013\u0001\u0000\u05ce\u05cf\u0001\u0000"+ + "\u0000\u0000\u05cf\u05d0\u0006\u00b6\u0000\u0000\u05d0\u017e\u0001\u0000"+ + "\u0000\u0000\u05d1\u05d2\u0003\u0015\u0002\u0000\u05d2\u05d3\u0001\u0000"+ + "\u0000\u0000\u05d3\u05d4\u0006\u00b7\u0000\u0000\u05d4\u0180\u0001\u0000"+ + "\u0000\u0000\u05d5\u05d6\u0003\u00c7[\u0000\u05d6\u05d7\u0001\u0000\u0000"+ + "\u0000\u05d7\u05d8\u0006\u00b8\u001f\u0000\u05d8\u05d9\u0006\u00b8\u000e"+ + "\u0000\u05d9\u05da\u0006\u00b8\b\u0000\u05da\u0182\u0001\u0000\u0000\u0000"+ + "\u05db\u05dc\u0003\u00c9\\\u0000\u05dc\u05dd\u0001\u0000\u0000\u0000\u05dd"+ + "\u05de\u0006\u00b9\u0012\u0000\u05de\u05df\u0006\u00b9\u000e\u0000\u05df"+ + "\u05e0\u0006\u00b9\b\u0000\u05e0\u0184\u0001\u0000\u0000\u0000\u05e1\u05e2"+ + "\u0003\u0011\u0000\u0000\u05e2\u05e3\u0001\u0000\u0000\u0000\u05e3\u05e4"+ + "\u0006\u00ba\u0000\u0000\u05e4\u0186\u0001\u0000\u0000\u0000\u05e5\u05e6"+ + "\u0003\u0013\u0001\u0000\u05e6\u05e7\u0001\u0000\u0000\u0000\u05e7\u05e8"+ + "\u0006\u00bb\u0000\u0000\u05e8\u0188\u0001\u0000\u0000\u0000\u05e9\u05ea"+ + "\u0003\u0015\u0002\u0000\u05ea\u05eb\u0001\u0000\u0000\u0000\u05eb\u05ec"+ + "\u0006\u00bc\u0000\u0000\u05ec\u018a\u0001\u0000\u0000\u0000\u05ed\u05ee"+ + "\u0003\u0115\u0082\u0000\u05ee\u05ef\u0001\u0000\u0000\u0000\u05ef\u05f0"+ + "\u0006\u00bd\u000e\u0000\u05f0\u05f1\u0006\u00bd\u0004\u0000\u05f1\u05f2"+ + "\u0006\u00bd\u0013\u0000\u05f2\u018c\u0001\u0000\u0000\u0000\u05f3\u05f4"+ + "\u0003\u0111\u0080\u0000\u05f4\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f6"+ + "\u0006\u00be\u000e\u0000\u05f6\u05f7\u0006\u00be\u0004\u0000\u05f7\u05f8"+ + "\u0006\u00be\u0014\u0000\u05f8\u018e\u0001\u0000\u0000\u0000\u05f9\u05fa"+ + "\u0003\u00bdV\u0000\u05fa\u05fb\u0001\u0000\u0000\u0000\u05fb\u05fc\u0006"+ + "\u00bf\u000e\u0000\u05fc\u05fd\u0006\u00bf\u0004\u0000\u05fd\u05fe\u0006"+ + "\u00bf&\u0000\u05fe\u0190\u0001\u0000\u0000\u0000\u05ff\u0600\u0003\u00a1"+ + "H\u0000\u0600\u0601\u0001\u0000\u0000\u0000\u0601\u0602\u0006\u00c0\r"+ + "\u0000\u0602\u0603\u0006\u00c0\u000e\u0000\u0603\u0192\u0001\u0000\u0000"+ + "\u0000\u0604\u0605\u0003\u00a1H\u0000\u0605\u0606\u0001\u0000\u0000\u0000"+ + "\u0606\u0607\u0006\u00c1\r\u0000\u0607\u0608\u0006\u00c1\u000e\u0000\u0608"+ + "\u0194\u0001\u0000\u0000\u0000\u0609\u060a\u0003\u00cd^\u0000\u060a\u060b"+ + "\u0001\u0000\u0000\u0000\u060b\u060c\u0006\u00c2\u0011\u0000\u060c\u0196"+ + "\u0001\u0000\u0000\u0000\u060d\u060e\u0003\u00e3i\u0000\u060e\u060f\u0001"+ + "\u0000\u0000\u0000\u060f\u0610\u0006\u00c3\u001c\u0000\u0610\u0198\u0001"+ + "\u0000\u0000\u0000\u0611\u0612\u0003\u0107{\u0000\u0612\u0613\u0001\u0000"+ + "\u0000\u0000\u0613\u0614\u0006\u00c4\u001d\u0000\u0614\u019a\u0001\u0000"+ + "\u0000\u0000\u0615\u0616\u0003\u0115\u0082\u0000\u0616\u0617\u0001\u0000"+ + "\u0000\u0000\u0617\u0618\u0006\u00c5\u0013\u0000\u0618\u019c\u0001\u0000"+ + "\u0000\u0000\u0619\u061a\u0003\u0111\u0080\u0000\u061a\u061b\u0001\u0000"+ + "\u0000\u0000\u061b\u061c\u0006\u00c6\u0014\u0000\u061c\u019e\u0001\u0000"+ + "\u0000\u0000\u061d\u061e\u0003\u0011\u0000\u0000\u061e\u061f\u0001\u0000"+ + "\u0000\u0000\u061f\u0620\u0006\u00c7\u0000\u0000\u0620\u01a0\u0001\u0000"+ + "\u0000\u0000\u0621\u0622\u0003\u0013\u0001\u0000\u0622\u0623\u0001\u0000"+ + "\u0000\u0000\u0623\u0624\u0006\u00c8\u0000\u0000\u0624\u01a2\u0001\u0000"+ + "\u0000\u0000\u0625\u0626\u0003\u0015\u0002\u0000\u0626\u0627\u0001\u0000"+ + "\u0000\u0000\u0627\u0628\u0006\u00c9\u0000\u0000\u0628\u01a4\u0001\u0000"+ + "\u0000\u0000\u0629\u062a\u0003\u00a1H\u0000\u062a\u062b\u0001\u0000\u0000"+ + "\u0000\u062b\u062c\u0006\u00ca\r\u0000\u062c\u062d\u0006\u00ca\u000e\u0000"+ + "\u062d\u01a6\u0001\u0000\u0000\u0000\u062e\u062f\u0003\u00cd^\u0000\u062f"+ + "\u0630\u0001\u0000\u0000\u0000\u0630\u0631\u0006\u00cb\u0011\u0000\u0631"+ + "\u01a8\u0001\u0000\u0000\u0000\u0632\u0633\u0003\u00c9\\\u0000\u0633\u0634"+ + "\u0001\u0000\u0000\u0000\u0634\u0635\u0006\u00cc\u0012\u0000\u0635\u01aa"+ + "\u0001\u0000\u0000\u0000\u0636\u0637\u0003\u00e3i\u0000\u0637\u0638\u0001"+ + "\u0000\u0000\u0000\u0638\u0639\u0006\u00cd\u001c\u0000\u0639\u01ac\u0001"+ + "\u0000\u0000\u0000\u063a\u063b\u0003\u0107{\u0000\u063b\u063c\u0001\u0000"+ + "\u0000\u0000\u063c\u063d\u0006\u00ce\u001d\u0000\u063d\u01ae\u0001\u0000"+ + "\u0000\u0000\u063e\u0643\u0003\u00a5J\u0000\u063f\u0643\u0003\u00a3I\u0000"+ + "\u0640\u0643\u0003\u00b3Q\u0000\u0641\u0643\u0003\u00fbu\u0000\u0642\u063e"+ + "\u0001\u0000\u0000\u0000\u0642\u063f\u0001\u0000\u0000\u0000\u0642\u0640"+ + "\u0001\u0000\u0000\u0000\u0642\u0641\u0001\u0000\u0000\u0000\u0643\u01b0"+ + "\u0001\u0000\u0000\u0000\u0644\u0647\u0003\u00a5J\u0000\u0645\u0647\u0003"+ + "\u00fbu\u0000\u0646\u0644\u0001\u0000\u0000\u0000\u0646\u0645\u0001\u0000"+ + "\u0000\u0000\u0647\u064b\u0001\u0000\u0000\u0000\u0648\u064a\u0003\u01af"+ + "\u00cf\u0000\u0649\u0648\u0001\u0000\u0000\u0000\u064a\u064d\u0001\u0000"+ + "\u0000\u0000\u064b\u0649\u0001\u0000\u0000\u0000\u064b\u064c\u0001\u0000"+ + "\u0000\u0000\u064c\u0658\u0001\u0000\u0000\u0000\u064d\u064b\u0001\u0000"+ + "\u0000\u0000\u064e\u0651\u0003\u00b3Q\u0000\u064f\u0651\u0003\u00adN\u0000"+ + "\u0650\u064e\u0001\u0000\u0000\u0000\u0650\u064f\u0001\u0000\u0000\u0000"+ + "\u0651\u0653\u0001\u0000\u0000\u0000\u0652\u0654\u0003\u01af\u00cf\u0000"+ + "\u0653\u0652\u0001\u0000\u0000\u0000\u0654\u0655\u0001\u0000\u0000\u0000"+ + "\u0655\u0653\u0001\u0000\u0000\u0000\u0655\u0656\u0001\u0000\u0000\u0000"+ + "\u0656\u0658\u0001\u0000\u0000\u0000\u0657\u0646\u0001\u0000\u0000\u0000"+ + "\u0657\u0650\u0001\u0000\u0000\u0000\u0658\u01b2\u0001\u0000\u0000\u0000"+ + "\u0659\u065c\u0003\u01b1\u00d0\u0000\u065a\u065c\u0003\u0113\u0081\u0000"+ + "\u065b\u0659\u0001\u0000\u0000\u0000\u065b\u065a\u0001\u0000\u0000\u0000"+ + "\u065c\u065d\u0001\u0000\u0000\u0000\u065d\u065b\u0001\u0000\u0000\u0000"+ + "\u065d\u065e\u0001\u0000\u0000\u0000\u065e\u01b4\u0001\u0000\u0000\u0000"+ + "\u065f\u0660\u0003\u0011\u0000\u0000\u0660\u0661\u0001\u0000\u0000\u0000"+ + "\u0661\u0662\u0006\u00d2\u0000\u0000\u0662\u01b6\u0001\u0000\u0000\u0000"+ + "\u0663\u0664\u0003\u0013\u0001\u0000\u0664\u0665\u0001\u0000\u0000\u0000"+ + "\u0665\u0666\u0006\u00d3\u0000\u0000\u0666\u01b8\u0001\u0000\u0000\u0000"+ + "\u0667\u0668\u0003\u0015\u0002\u0000\u0668\u0669\u0001\u0000\u0000\u0000"+ + "\u0669\u066a\u0006\u00d4\u0000\u0000\u066a\u01ba\u0001\u0000\u0000\u0000"+ + "\u066b\u066c\u0003\u00a1H\u0000\u066c\u066d\u0001\u0000\u0000\u0000\u066d"+ + "\u066e\u0006\u00d5\r\u0000\u066e\u066f\u0006\u00d5\u000e\u0000\u066f\u01bc"+ + "\u0001\u0000\u0000\u0000\u0670\u0671\u0003\u00c3Y\u0000\u0671\u0672\u0001"+ + "\u0000\u0000\u0000\u0672\u0673\u0006\u00d6\u0019\u0000\u0673\u01be\u0001"+ + "\u0000\u0000\u0000\u0674\u0675\u0003\u00c9\\\u0000\u0675\u0676\u0001\u0000"+ + "\u0000\u0000\u0676\u0677\u0006\u00d7\u0012\u0000\u0677\u01c0\u0001\u0000"+ + "\u0000\u0000\u0678\u0679\u0003\u00cd^\u0000\u0679\u067a\u0001\u0000\u0000"+ + "\u0000\u067a\u067b\u0006\u00d8\u0011\u0000\u067b\u01c2\u0001\u0000\u0000"+ + "\u0000\u067c\u067d\u0003\u00e3i\u0000\u067d\u067e\u0001\u0000\u0000\u0000"+ + "\u067e\u067f\u0006\u00d9\u001c\u0000\u067f\u01c4\u0001\u0000\u0000\u0000"+ + "\u0680\u0681\u0003\u0107{\u0000\u0681\u0682\u0001\u0000\u0000\u0000\u0682"+ + "\u0683\u0006\u00da\u001d\u0000\u0683\u01c6\u0001\u0000\u0000\u0000\u0684"+ + "\u0685\u0007\u0004\u0000\u0000\u0685\u0686\u0007\u0010\u0000\u0000\u0686"+ + "\u01c8\u0001\u0000\u0000\u0000\u0687\u0688\u0003\u01b3\u00d1\u0000\u0688"+ + "\u0689\u0001\u0000\u0000\u0000\u0689\u068a\u0006\u00dc\u001b\u0000\u068a"+ + "\u01ca\u0001\u0000\u0000\u0000\u068b\u068c\u0003\u0011\u0000\u0000\u068c"+ + "\u068d\u0001\u0000\u0000\u0000\u068d\u068e\u0006\u00dd\u0000\u0000\u068e"+ + "\u01cc\u0001\u0000\u0000\u0000\u068f\u0690\u0003\u0013\u0001\u0000\u0690"+ + "\u0691\u0001\u0000\u0000\u0000\u0691\u0692\u0006\u00de\u0000\u0000\u0692"+ + "\u01ce\u0001\u0000\u0000\u0000\u0693\u0694\u0003\u0015\u0002\u0000\u0694"+ + "\u0695\u0001\u0000\u0000\u0000\u0695\u0696\u0006\u00df\u0000\u0000\u0696"+ + "\u01d0\u0001\u0000\u0000\u0000\u0697\u0698\u0003\u00a1H\u0000\u0698\u0699"+ + "\u0001\u0000\u0000\u0000\u0699\u069a\u0006\u00e0\r\u0000\u069a\u069b\u0006"+ + "\u00e0\u000e\u0000\u069b\u01d2\u0001\u0000\u0000\u0000\u069c\u069d\u0007"+ + "\n\u0000\u0000\u069d\u069e\u0007\u0005\u0000\u0000\u069e\u069f\u0007\u0015"+ + "\u0000\u0000\u069f\u06a0\u0007\t\u0000\u0000\u06a0\u01d4\u0001\u0000\u0000"+ + "\u0000\u06a1\u06a2\u0003\u0011\u0000\u0000\u06a2\u06a3\u0001\u0000\u0000"+ + "\u0000\u06a3\u06a4\u0006\u00e2\u0000\u0000\u06a4\u01d6\u0001\u0000\u0000"+ + "\u0000\u06a5\u06a6\u0003\u0013\u0001\u0000\u06a6\u06a7\u0001\u0000\u0000"+ + "\u0000\u06a7\u06a8\u0006\u00e3\u0000\u0000\u06a8\u01d8\u0001\u0000\u0000"+ + "\u0000\u06a9\u06aa\u0003\u0015\u0002\u0000\u06aa\u06ab\u0001\u0000\u0000"+ + "\u0000\u06ab\u06ac\u0006\u00e4\u0000\u0000\u06ac\u01da\u0001\u0000\u0000"+ + "\u0000C\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f"+ + "\r\u000e\u000f\u0010\u01e1\u01e5\u01e8\u01f1\u01f3\u01fe\u02ea\u0332\u0336"+ + "\u033b\u038d\u038f\u03c2\u03c7\u03d0\u03d7\u03dc\u03de\u03e9\u03f1\u03f4"+ + "\u03f6\u03fb\u0400\u0406\u040d\u0412\u0418\u041b\u0423\u0427\u04a7\u04ac"+ + "\u04b3\u04b5\u04cf\u04d4\u04d9\u04db\u04e1\u0518\u051d\u0642\u0646\u064b"+ + "\u0650\u0655\u0657\u065b\u065d\'\u0000\u0001\u0000\u0005\u0001\u0000\u0005"+ + "\u0002\u0000\u0005\u0005\u0000\u0005\u0006\u0000\u0005\u0007\u0000\u0005"+ + "\b\u0000\u0005\t\u0000\u0005\u000b\u0000\u0005\r\u0000\u0005\u000e\u0000"+ + "\u0005\u000f\u0000\u0005\u0010\u0000\u00071\u0000\u0004\u0000\u0000\u0007"+ + "!\u0000\u0007\u0080\u0000\u0007=\u0000\u0007;\u0000\u0007_\u0000\u0007"+ + "^\u0000\u0007Z\u0000\u0005\u0004\u0000\u0005\u0003\u0000\u0007#\u0000"+ + "\u00078\u0000\u0007\"\u0000\u0007|\u0000\u0007H\u0000\u0007Y\u0000\u0007"+ + "[\u0000\u0007:\u0000\u0005\u0000\u0000\u0007\u000e\u0000\u0007d\u0000"+ + "\u00072\u0000\u0005\n\u0000\u0005\f\u0000\u00075\u0000"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp index 69fc4c9139d8c..7ed1c70487350 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.interp @@ -1,27 +1,47 @@ token literal names: null -'dissect' -'drop' +null +null +null +null 'enrich' -'eval' 'explain' -'from' +'dissect' +'eval' 'grok' -'keep' 'limit' -'mv_expand' -'rename' 'row' -'show' 'sort' 'stats' 'where' +null +'from' 'lookup' null null null null null +'mv_expand' +'drop' +'keep' +null +'rename' +'show' +null +null +null +null +'on' +'with' +null +null +null +null +null +null +null +null null null null @@ -47,14 +67,12 @@ null 'is' 'last' 'like' -'(' 'not' 'null' 'nulls' 'or' '?' 'rlike' -')' 'true' '==' '=~' @@ -74,8 +92,7 @@ null null ']' null -null -null +')' null null null @@ -86,28 +103,12 @@ null null null null +'join' +'USING' null null null null -'as' -null -null -null -'on' -'with' -null -null -null -null -null -null -null -null -null -null -'info' -null null null null @@ -120,51 +121,71 @@ null null null null -'join' -'USING' null null null null null null +'as' null null null +'info' null null null token symbolic names: null -DISSECT -DROP +LINE_COMMENT +MULTILINE_COMMENT +WS +DEV_CHANGE_POINT ENRICH -EVAL EXPLAIN -FROM +DISSECT +EVAL GROK -KEEP LIMIT -MV_EXPAND -RENAME ROW -SHOW SORT STATS WHERE -JOIN_LOOKUP DEV_INLINESTATS -DEV_INSIST -DEV_LOOKUP -DEV_METRICS +FROM +JOIN_LOOKUP DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT +DEV_LOOKUP +DEV_METRICS +MV_EXPAND +DROP +KEEP +DEV_INSIST +RENAME +SHOW UNKNOWN_CMD -LINE_COMMENT -MULTILINE_COMMENT -WS +CHANGE_POINT_LINE_COMMENT +CHANGE_POINT_MULTILINE_COMMENT +CHANGE_POINT_WS +ON +WITH +ENRICH_POLICY_NAME +ENRICH_LINE_COMMENT +ENRICH_MULTILINE_COMMENT +ENRICH_WS +ENRICH_FIELD_LINE_COMMENT +ENRICH_FIELD_MULTILINE_COMMENT +ENRICH_FIELD_WS +SETTING +SETTING_LINE_COMMENT +SETTTING_MULTILINE_COMMENT +SETTING_WS +EXPLAIN_WS +EXPLAIN_LINE_COMMENT +EXPLAIN_MULTILINE_COMMENT PIPE QUOTED_STRING INTEGER_LITERAL @@ -184,14 +205,12 @@ IN IS LAST LIKE -LP NOT NULL NULLS OR PARAM RLIKE -RP TRUE EQ CIEQ @@ -210,67 +229,50 @@ RIGHT_BRACES NAMED_OR_POSITIONAL_PARAM OPENING_BRACKET CLOSING_BRACKET +LP +RP UNQUOTED_IDENTIFIER QUOTED_IDENTIFIER EXPR_LINE_COMMENT EXPR_MULTILINE_COMMENT EXPR_WS -EXPLAIN_WS -EXPLAIN_LINE_COMMENT -EXPLAIN_MULTILINE_COMMENT METADATA UNQUOTED_SOURCE FROM_LINE_COMMENT FROM_MULTILINE_COMMENT FROM_WS -ID_PATTERN -PROJECT_LINE_COMMENT -PROJECT_MULTILINE_COMMENT -PROJECT_WS -AS -RENAME_LINE_COMMENT -RENAME_MULTILINE_COMMENT -RENAME_WS -ON -WITH -ENRICH_POLICY_NAME -ENRICH_LINE_COMMENT -ENRICH_MULTILINE_COMMENT -ENRICH_WS -ENRICH_FIELD_LINE_COMMENT -ENRICH_FIELD_MULTILINE_COMMENT -ENRICH_FIELD_WS -MVEXPAND_LINE_COMMENT -MVEXPAND_MULTILINE_COMMENT -MVEXPAND_WS -INFO -SHOW_LINE_COMMENT -SHOW_MULTILINE_COMMENT -SHOW_WS -SETTING -SETTING_LINE_COMMENT -SETTTING_MULTILINE_COMMENT -SETTING_WS +JOIN +USING +JOIN_LINE_COMMENT +JOIN_MULTILINE_COMMENT +JOIN_WS LOOKUP_LINE_COMMENT LOOKUP_MULTILINE_COMMENT LOOKUP_WS LOOKUP_FIELD_LINE_COMMENT LOOKUP_FIELD_MULTILINE_COMMENT LOOKUP_FIELD_WS -JOIN -USING -JOIN_LINE_COMMENT -JOIN_MULTILINE_COMMENT -JOIN_WS METRICS_LINE_COMMENT METRICS_MULTILINE_COMMENT METRICS_WS CLOSING_METRICS_LINE_COMMENT CLOSING_METRICS_MULTILINE_COMMENT CLOSING_METRICS_WS -INSIST_WS -INSIST_LINE_COMMENT -INSIST_MULTILINE_COMMENT +MVEXPAND_LINE_COMMENT +MVEXPAND_MULTILINE_COMMENT +MVEXPAND_WS +ID_PATTERN +PROJECT_LINE_COMMENT +PROJECT_MULTILINE_COMMENT +PROJECT_WS +AS +RENAME_LINE_COMMENT +RENAME_MULTILINE_COMMENT +RENAME_WS +INFO +SHOW_LINE_COMMENT +SHOW_MULTILINE_COMMENT +SHOW_WS rule names: singleStatement @@ -278,16 +280,6 @@ query sourceCommand processingCommand whereCommand -booleanExpression -regexBooleanExpression -matchBooleanExpression -valueExpression -operatorExpression -primaryExpression -functionExpression -functionName -mapExpression -entryExpression dataType rowCommand fields @@ -307,7 +299,6 @@ qualifiedNamePattern qualifiedNamePatterns identifier identifierPattern -constant parameter identifierOrParameter limitCommand @@ -322,12 +313,6 @@ grokCommand mvExpandCommand commandOptions commandOption -booleanValue -numericValue -decimalValue -integerValue -string -comparisonOperator explainCommand subqueryExpression showCommand @@ -340,7 +325,24 @@ joinTarget joinCondition joinPredicate insistCommand +booleanExpression +regexBooleanExpression +matchBooleanExpression +valueExpression +operatorExpression +primaryExpression +functionExpression +functionName +mapExpression +entryExpression +constant +booleanValue +numericValue +decimalValue +integerValue +string +comparisonOperator atn: -[4, 1, 134, 649, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 144, 8, 1, 10, 1, 12, 1, 147, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 155, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 176, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 188, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 195, 8, 5, 10, 5, 12, 5, 198, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 205, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 210, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 218, 8, 5, 10, 5, 12, 5, 221, 9, 5, 1, 6, 1, 6, 3, 6, 225, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 232, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 237, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 242, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 252, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 258, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 266, 8, 9, 10, 9, 12, 9, 269, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 279, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 284, 8, 10, 10, 10, 12, 10, 287, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 295, 8, 11, 10, 11, 12, 11, 298, 9, 11, 1, 11, 1, 11, 3, 11, 302, 8, 11, 3, 11, 304, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 314, 8, 13, 10, 13, 12, 13, 317, 9, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 333, 8, 17, 10, 17, 12, 17, 336, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 341, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 349, 8, 19, 10, 19, 12, 19, 352, 9, 19, 1, 19, 3, 19, 355, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 360, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 372, 8, 23, 10, 23, 12, 23, 375, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 381, 8, 24, 10, 24, 12, 24, 384, 9, 24, 1, 24, 3, 24, 387, 8, 24, 1, 24, 1, 24, 3, 24, 391, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 398, 8, 26, 1, 26, 1, 26, 3, 26, 402, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 407, 8, 27, 10, 27, 12, 27, 410, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 415, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 420, 8, 29, 10, 29, 12, 29, 423, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 428, 8, 30, 10, 30, 12, 30, 431, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 436, 8, 31, 10, 31, 12, 31, 439, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 445, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 460, 8, 34, 10, 34, 12, 34, 463, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 471, 8, 34, 10, 34, 12, 34, 474, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 482, 8, 34, 10, 34, 12, 34, 485, 9, 34, 1, 34, 1, 34, 3, 34, 489, 8, 34, 1, 35, 1, 35, 3, 35, 493, 8, 35, 1, 36, 1, 36, 3, 36, 497, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 506, 8, 38, 10, 38, 12, 38, 509, 9, 38, 1, 39, 1, 39, 3, 39, 513, 8, 39, 1, 39, 1, 39, 3, 39, 517, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 529, 8, 42, 10, 42, 12, 42, 532, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 542, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 5, 47, 554, 8, 47, 10, 47, 12, 47, 557, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 3, 50, 567, 8, 50, 1, 51, 3, 51, 570, 8, 51, 1, 51, 1, 51, 1, 52, 3, 52, 575, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 597, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 603, 8, 58, 10, 58, 12, 58, 606, 9, 58, 3, 58, 608, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 613, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 626, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 639, 8, 64, 10, 64, 12, 64, 642, 9, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 0, 4, 2, 10, 18, 20, 67, 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, 0, 9, 1, 0, 64, 65, 1, 0, 66, 68, 2, 0, 30, 30, 83, 83, 1, 0, 74, 75, 2, 0, 35, 35, 40, 40, 2, 0, 43, 43, 46, 46, 2, 0, 42, 42, 56, 56, 2, 0, 57, 57, 59, 63, 2, 0, 17, 17, 23, 24, 674, 0, 134, 1, 0, 0, 0, 2, 137, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 6, 175, 1, 0, 0, 0, 8, 177, 1, 0, 0, 0, 10, 209, 1, 0, 0, 0, 12, 236, 1, 0, 0, 0, 14, 238, 1, 0, 0, 0, 16, 251, 1, 0, 0, 0, 18, 257, 1, 0, 0, 0, 20, 278, 1, 0, 0, 0, 22, 288, 1, 0, 0, 0, 24, 307, 1, 0, 0, 0, 26, 309, 1, 0, 0, 0, 28, 320, 1, 0, 0, 0, 30, 324, 1, 0, 0, 0, 32, 326, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 340, 1, 0, 0, 0, 38, 344, 1, 0, 0, 0, 40, 359, 1, 0, 0, 0, 42, 363, 1, 0, 0, 0, 44, 365, 1, 0, 0, 0, 46, 367, 1, 0, 0, 0, 48, 376, 1, 0, 0, 0, 50, 392, 1, 0, 0, 0, 52, 395, 1, 0, 0, 0, 54, 403, 1, 0, 0, 0, 56, 411, 1, 0, 0, 0, 58, 416, 1, 0, 0, 0, 60, 424, 1, 0, 0, 0, 62, 432, 1, 0, 0, 0, 64, 440, 1, 0, 0, 0, 66, 444, 1, 0, 0, 0, 68, 488, 1, 0, 0, 0, 70, 492, 1, 0, 0, 0, 72, 496, 1, 0, 0, 0, 74, 498, 1, 0, 0, 0, 76, 501, 1, 0, 0, 0, 78, 510, 1, 0, 0, 0, 80, 518, 1, 0, 0, 0, 82, 521, 1, 0, 0, 0, 84, 524, 1, 0, 0, 0, 86, 533, 1, 0, 0, 0, 88, 537, 1, 0, 0, 0, 90, 543, 1, 0, 0, 0, 92, 547, 1, 0, 0, 0, 94, 550, 1, 0, 0, 0, 96, 558, 1, 0, 0, 0, 98, 562, 1, 0, 0, 0, 100, 566, 1, 0, 0, 0, 102, 569, 1, 0, 0, 0, 104, 574, 1, 0, 0, 0, 106, 578, 1, 0, 0, 0, 108, 580, 1, 0, 0, 0, 110, 582, 1, 0, 0, 0, 112, 585, 1, 0, 0, 0, 114, 589, 1, 0, 0, 0, 116, 592, 1, 0, 0, 0, 118, 612, 1, 0, 0, 0, 120, 616, 1, 0, 0, 0, 122, 621, 1, 0, 0, 0, 124, 627, 1, 0, 0, 0, 126, 632, 1, 0, 0, 0, 128, 634, 1, 0, 0, 0, 130, 643, 1, 0, 0, 0, 132, 645, 1, 0, 0, 0, 134, 135, 3, 2, 1, 0, 135, 136, 5, 0, 0, 1, 136, 1, 1, 0, 0, 0, 137, 138, 6, 1, -1, 0, 138, 139, 3, 4, 2, 0, 139, 145, 1, 0, 0, 0, 140, 141, 10, 1, 0, 0, 141, 142, 5, 29, 0, 0, 142, 144, 3, 6, 3, 0, 143, 140, 1, 0, 0, 0, 144, 147, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 145, 146, 1, 0, 0, 0, 146, 3, 1, 0, 0, 0, 147, 145, 1, 0, 0, 0, 148, 155, 3, 110, 55, 0, 149, 155, 3, 38, 19, 0, 150, 155, 3, 32, 16, 0, 151, 155, 3, 114, 57, 0, 152, 153, 4, 2, 1, 0, 153, 155, 3, 48, 24, 0, 154, 148, 1, 0, 0, 0, 154, 149, 1, 0, 0, 0, 154, 150, 1, 0, 0, 0, 154, 151, 1, 0, 0, 0, 154, 152, 1, 0, 0, 0, 155, 5, 1, 0, 0, 0, 156, 176, 3, 50, 25, 0, 157, 176, 3, 8, 4, 0, 158, 176, 3, 80, 40, 0, 159, 176, 3, 74, 37, 0, 160, 176, 3, 52, 26, 0, 161, 176, 3, 76, 38, 0, 162, 176, 3, 82, 41, 0, 163, 176, 3, 84, 42, 0, 164, 176, 3, 88, 44, 0, 165, 176, 3, 90, 45, 0, 166, 176, 3, 116, 58, 0, 167, 176, 3, 92, 46, 0, 168, 176, 3, 124, 62, 0, 169, 170, 4, 3, 2, 0, 170, 176, 3, 122, 61, 0, 171, 172, 4, 3, 3, 0, 172, 176, 3, 120, 60, 0, 173, 174, 4, 3, 4, 0, 174, 176, 3, 132, 66, 0, 175, 156, 1, 0, 0, 0, 175, 157, 1, 0, 0, 0, 175, 158, 1, 0, 0, 0, 175, 159, 1, 0, 0, 0, 175, 160, 1, 0, 0, 0, 175, 161, 1, 0, 0, 0, 175, 162, 1, 0, 0, 0, 175, 163, 1, 0, 0, 0, 175, 164, 1, 0, 0, 0, 175, 165, 1, 0, 0, 0, 175, 166, 1, 0, 0, 0, 175, 167, 1, 0, 0, 0, 175, 168, 1, 0, 0, 0, 175, 169, 1, 0, 0, 0, 175, 171, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 7, 1, 0, 0, 0, 177, 178, 5, 16, 0, 0, 178, 179, 3, 10, 5, 0, 179, 9, 1, 0, 0, 0, 180, 181, 6, 5, -1, 0, 181, 182, 5, 49, 0, 0, 182, 210, 3, 10, 5, 8, 183, 210, 3, 16, 8, 0, 184, 210, 3, 12, 6, 0, 185, 187, 3, 16, 8, 0, 186, 188, 5, 49, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 189, 1, 0, 0, 0, 189, 190, 5, 44, 0, 0, 190, 191, 5, 48, 0, 0, 191, 196, 3, 16, 8, 0, 192, 193, 5, 39, 0, 0, 193, 195, 3, 16, 8, 0, 194, 192, 1, 0, 0, 0, 195, 198, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 199, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 199, 200, 5, 55, 0, 0, 200, 210, 1, 0, 0, 0, 201, 202, 3, 16, 8, 0, 202, 204, 5, 45, 0, 0, 203, 205, 5, 49, 0, 0, 204, 203, 1, 0, 0, 0, 204, 205, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 5, 50, 0, 0, 207, 210, 1, 0, 0, 0, 208, 210, 3, 14, 7, 0, 209, 180, 1, 0, 0, 0, 209, 183, 1, 0, 0, 0, 209, 184, 1, 0, 0, 0, 209, 185, 1, 0, 0, 0, 209, 201, 1, 0, 0, 0, 209, 208, 1, 0, 0, 0, 210, 219, 1, 0, 0, 0, 211, 212, 10, 5, 0, 0, 212, 213, 5, 34, 0, 0, 213, 218, 3, 10, 5, 6, 214, 215, 10, 4, 0, 0, 215, 216, 5, 52, 0, 0, 216, 218, 3, 10, 5, 5, 217, 211, 1, 0, 0, 0, 217, 214, 1, 0, 0, 0, 218, 221, 1, 0, 0, 0, 219, 217, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 11, 1, 0, 0, 0, 221, 219, 1, 0, 0, 0, 222, 224, 3, 16, 8, 0, 223, 225, 5, 49, 0, 0, 224, 223, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 227, 5, 47, 0, 0, 227, 228, 3, 106, 53, 0, 228, 237, 1, 0, 0, 0, 229, 231, 3, 16, 8, 0, 230, 232, 5, 49, 0, 0, 231, 230, 1, 0, 0, 0, 231, 232, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 234, 5, 54, 0, 0, 234, 235, 3, 106, 53, 0, 235, 237, 1, 0, 0, 0, 236, 222, 1, 0, 0, 0, 236, 229, 1, 0, 0, 0, 237, 13, 1, 0, 0, 0, 238, 241, 3, 58, 29, 0, 239, 240, 5, 37, 0, 0, 240, 242, 3, 30, 15, 0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 5, 38, 0, 0, 244, 245, 3, 68, 34, 0, 245, 15, 1, 0, 0, 0, 246, 252, 3, 18, 9, 0, 247, 248, 3, 18, 9, 0, 248, 249, 3, 108, 54, 0, 249, 250, 3, 18, 9, 0, 250, 252, 1, 0, 0, 0, 251, 246, 1, 0, 0, 0, 251, 247, 1, 0, 0, 0, 252, 17, 1, 0, 0, 0, 253, 254, 6, 9, -1, 0, 254, 258, 3, 20, 10, 0, 255, 256, 7, 0, 0, 0, 256, 258, 3, 18, 9, 3, 257, 253, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 258, 267, 1, 0, 0, 0, 259, 260, 10, 2, 0, 0, 260, 261, 7, 1, 0, 0, 261, 266, 3, 18, 9, 3, 262, 263, 10, 1, 0, 0, 263, 264, 7, 0, 0, 0, 264, 266, 3, 18, 9, 2, 265, 259, 1, 0, 0, 0, 265, 262, 1, 0, 0, 0, 266, 269, 1, 0, 0, 0, 267, 265, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 19, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 270, 271, 6, 10, -1, 0, 271, 279, 3, 68, 34, 0, 272, 279, 3, 58, 29, 0, 273, 279, 3, 22, 11, 0, 274, 275, 5, 48, 0, 0, 275, 276, 3, 10, 5, 0, 276, 277, 5, 55, 0, 0, 277, 279, 1, 0, 0, 0, 278, 270, 1, 0, 0, 0, 278, 272, 1, 0, 0, 0, 278, 273, 1, 0, 0, 0, 278, 274, 1, 0, 0, 0, 279, 285, 1, 0, 0, 0, 280, 281, 10, 1, 0, 0, 281, 282, 5, 37, 0, 0, 282, 284, 3, 30, 15, 0, 283, 280, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 21, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 288, 289, 3, 24, 12, 0, 289, 303, 5, 48, 0, 0, 290, 304, 5, 66, 0, 0, 291, 296, 3, 10, 5, 0, 292, 293, 5, 39, 0, 0, 293, 295, 3, 10, 5, 0, 294, 292, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 301, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 300, 5, 39, 0, 0, 300, 302, 3, 26, 13, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 304, 1, 0, 0, 0, 303, 290, 1, 0, 0, 0, 303, 291, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 306, 5, 55, 0, 0, 306, 23, 1, 0, 0, 0, 307, 308, 3, 72, 36, 0, 308, 25, 1, 0, 0, 0, 309, 310, 5, 69, 0, 0, 310, 315, 3, 28, 14, 0, 311, 312, 5, 39, 0, 0, 312, 314, 3, 28, 14, 0, 313, 311, 1, 0, 0, 0, 314, 317, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 318, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 319, 5, 70, 0, 0, 319, 27, 1, 0, 0, 0, 320, 321, 3, 106, 53, 0, 321, 322, 5, 38, 0, 0, 322, 323, 3, 68, 34, 0, 323, 29, 1, 0, 0, 0, 324, 325, 3, 64, 32, 0, 325, 31, 1, 0, 0, 0, 326, 327, 5, 12, 0, 0, 327, 328, 3, 34, 17, 0, 328, 33, 1, 0, 0, 0, 329, 334, 3, 36, 18, 0, 330, 331, 5, 39, 0, 0, 331, 333, 3, 36, 18, 0, 332, 330, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 35, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 337, 338, 3, 58, 29, 0, 338, 339, 5, 36, 0, 0, 339, 341, 1, 0, 0, 0, 340, 337, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 343, 3, 10, 5, 0, 343, 37, 1, 0, 0, 0, 344, 345, 5, 6, 0, 0, 345, 350, 3, 40, 20, 0, 346, 347, 5, 39, 0, 0, 347, 349, 3, 40, 20, 0, 348, 346, 1, 0, 0, 0, 349, 352, 1, 0, 0, 0, 350, 348, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 353, 355, 3, 46, 23, 0, 354, 353, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 39, 1, 0, 0, 0, 356, 357, 3, 42, 21, 0, 357, 358, 5, 38, 0, 0, 358, 360, 1, 0, 0, 0, 359, 356, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 362, 3, 44, 22, 0, 362, 41, 1, 0, 0, 0, 363, 364, 7, 2, 0, 0, 364, 43, 1, 0, 0, 0, 365, 366, 7, 2, 0, 0, 366, 45, 1, 0, 0, 0, 367, 368, 5, 82, 0, 0, 368, 373, 5, 83, 0, 0, 369, 370, 5, 39, 0, 0, 370, 372, 5, 83, 0, 0, 371, 369, 1, 0, 0, 0, 372, 375, 1, 0, 0, 0, 373, 371, 1, 0, 0, 0, 373, 374, 1, 0, 0, 0, 374, 47, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 376, 377, 5, 21, 0, 0, 377, 382, 3, 40, 20, 0, 378, 379, 5, 39, 0, 0, 379, 381, 3, 40, 20, 0, 380, 378, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 385, 387, 3, 54, 27, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 390, 1, 0, 0, 0, 388, 389, 5, 33, 0, 0, 389, 391, 3, 34, 17, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 49, 1, 0, 0, 0, 392, 393, 5, 4, 0, 0, 393, 394, 3, 34, 17, 0, 394, 51, 1, 0, 0, 0, 395, 397, 5, 15, 0, 0, 396, 398, 3, 54, 27, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 400, 5, 33, 0, 0, 400, 402, 3, 34, 17, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 53, 1, 0, 0, 0, 403, 408, 3, 56, 28, 0, 404, 405, 5, 39, 0, 0, 405, 407, 3, 56, 28, 0, 406, 404, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 406, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 55, 1, 0, 0, 0, 410, 408, 1, 0, 0, 0, 411, 414, 3, 36, 18, 0, 412, 413, 5, 16, 0, 0, 413, 415, 3, 10, 5, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 57, 1, 0, 0, 0, 416, 421, 3, 72, 36, 0, 417, 418, 5, 41, 0, 0, 418, 420, 3, 72, 36, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 59, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 429, 3, 66, 33, 0, 425, 426, 5, 41, 0, 0, 426, 428, 3, 66, 33, 0, 427, 425, 1, 0, 0, 0, 428, 431, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 61, 1, 0, 0, 0, 431, 429, 1, 0, 0, 0, 432, 437, 3, 60, 30, 0, 433, 434, 5, 39, 0, 0, 434, 436, 3, 60, 30, 0, 435, 433, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 63, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 441, 7, 3, 0, 0, 441, 65, 1, 0, 0, 0, 442, 445, 5, 87, 0, 0, 443, 445, 3, 70, 35, 0, 444, 442, 1, 0, 0, 0, 444, 443, 1, 0, 0, 0, 445, 67, 1, 0, 0, 0, 446, 489, 5, 50, 0, 0, 447, 448, 3, 104, 52, 0, 448, 449, 5, 74, 0, 0, 449, 489, 1, 0, 0, 0, 450, 489, 3, 102, 51, 0, 451, 489, 3, 104, 52, 0, 452, 489, 3, 98, 49, 0, 453, 489, 3, 70, 35, 0, 454, 489, 3, 106, 53, 0, 455, 456, 5, 72, 0, 0, 456, 461, 3, 100, 50, 0, 457, 458, 5, 39, 0, 0, 458, 460, 3, 100, 50, 0, 459, 457, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 464, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 465, 5, 73, 0, 0, 465, 489, 1, 0, 0, 0, 466, 467, 5, 72, 0, 0, 467, 472, 3, 98, 49, 0, 468, 469, 5, 39, 0, 0, 469, 471, 3, 98, 49, 0, 470, 468, 1, 0, 0, 0, 471, 474, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 475, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 475, 476, 5, 73, 0, 0, 476, 489, 1, 0, 0, 0, 477, 478, 5, 72, 0, 0, 478, 483, 3, 106, 53, 0, 479, 480, 5, 39, 0, 0, 480, 482, 3, 106, 53, 0, 481, 479, 1, 0, 0, 0, 482, 485, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 486, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 486, 487, 5, 73, 0, 0, 487, 489, 1, 0, 0, 0, 488, 446, 1, 0, 0, 0, 488, 447, 1, 0, 0, 0, 488, 450, 1, 0, 0, 0, 488, 451, 1, 0, 0, 0, 488, 452, 1, 0, 0, 0, 488, 453, 1, 0, 0, 0, 488, 454, 1, 0, 0, 0, 488, 455, 1, 0, 0, 0, 488, 466, 1, 0, 0, 0, 488, 477, 1, 0, 0, 0, 489, 69, 1, 0, 0, 0, 490, 493, 5, 53, 0, 0, 491, 493, 5, 71, 0, 0, 492, 490, 1, 0, 0, 0, 492, 491, 1, 0, 0, 0, 493, 71, 1, 0, 0, 0, 494, 497, 3, 64, 32, 0, 495, 497, 3, 70, 35, 0, 496, 494, 1, 0, 0, 0, 496, 495, 1, 0, 0, 0, 497, 73, 1, 0, 0, 0, 498, 499, 5, 9, 0, 0, 499, 500, 5, 31, 0, 0, 500, 75, 1, 0, 0, 0, 501, 502, 5, 14, 0, 0, 502, 507, 3, 78, 39, 0, 503, 504, 5, 39, 0, 0, 504, 506, 3, 78, 39, 0, 505, 503, 1, 0, 0, 0, 506, 509, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 77, 1, 0, 0, 0, 509, 507, 1, 0, 0, 0, 510, 512, 3, 10, 5, 0, 511, 513, 7, 4, 0, 0, 512, 511, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 515, 5, 51, 0, 0, 515, 517, 7, 5, 0, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 79, 1, 0, 0, 0, 518, 519, 5, 8, 0, 0, 519, 520, 3, 62, 31, 0, 520, 81, 1, 0, 0, 0, 521, 522, 5, 2, 0, 0, 522, 523, 3, 62, 31, 0, 523, 83, 1, 0, 0, 0, 524, 525, 5, 11, 0, 0, 525, 530, 3, 86, 43, 0, 526, 527, 5, 39, 0, 0, 527, 529, 3, 86, 43, 0, 528, 526, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 85, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 3, 60, 30, 0, 534, 535, 5, 91, 0, 0, 535, 536, 3, 60, 30, 0, 536, 87, 1, 0, 0, 0, 537, 538, 5, 1, 0, 0, 538, 539, 3, 20, 10, 0, 539, 541, 3, 106, 53, 0, 540, 542, 3, 94, 47, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 89, 1, 0, 0, 0, 543, 544, 5, 7, 0, 0, 544, 545, 3, 20, 10, 0, 545, 546, 3, 106, 53, 0, 546, 91, 1, 0, 0, 0, 547, 548, 5, 10, 0, 0, 548, 549, 3, 58, 29, 0, 549, 93, 1, 0, 0, 0, 550, 555, 3, 96, 48, 0, 551, 552, 5, 39, 0, 0, 552, 554, 3, 96, 48, 0, 553, 551, 1, 0, 0, 0, 554, 557, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 95, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 558, 559, 3, 64, 32, 0, 559, 560, 5, 36, 0, 0, 560, 561, 3, 68, 34, 0, 561, 97, 1, 0, 0, 0, 562, 563, 7, 6, 0, 0, 563, 99, 1, 0, 0, 0, 564, 567, 3, 102, 51, 0, 565, 567, 3, 104, 52, 0, 566, 564, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 101, 1, 0, 0, 0, 568, 570, 7, 0, 0, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 5, 32, 0, 0, 572, 103, 1, 0, 0, 0, 573, 575, 7, 0, 0, 0, 574, 573, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 5, 31, 0, 0, 577, 105, 1, 0, 0, 0, 578, 579, 5, 30, 0, 0, 579, 107, 1, 0, 0, 0, 580, 581, 7, 7, 0, 0, 581, 109, 1, 0, 0, 0, 582, 583, 5, 5, 0, 0, 583, 584, 3, 112, 56, 0, 584, 111, 1, 0, 0, 0, 585, 586, 5, 72, 0, 0, 586, 587, 3, 2, 1, 0, 587, 588, 5, 73, 0, 0, 588, 113, 1, 0, 0, 0, 589, 590, 5, 13, 0, 0, 590, 591, 5, 107, 0, 0, 591, 115, 1, 0, 0, 0, 592, 593, 5, 3, 0, 0, 593, 596, 5, 97, 0, 0, 594, 595, 5, 95, 0, 0, 595, 597, 3, 60, 30, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 607, 1, 0, 0, 0, 598, 599, 5, 96, 0, 0, 599, 604, 3, 118, 59, 0, 600, 601, 5, 39, 0, 0, 601, 603, 3, 118, 59, 0, 602, 600, 1, 0, 0, 0, 603, 606, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 608, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 607, 598, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 117, 1, 0, 0, 0, 609, 610, 3, 60, 30, 0, 610, 611, 5, 36, 0, 0, 611, 613, 1, 0, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 3, 60, 30, 0, 615, 119, 1, 0, 0, 0, 616, 617, 5, 20, 0, 0, 617, 618, 3, 40, 20, 0, 618, 619, 5, 95, 0, 0, 619, 620, 3, 62, 31, 0, 620, 121, 1, 0, 0, 0, 621, 622, 5, 18, 0, 0, 622, 625, 3, 54, 27, 0, 623, 624, 5, 33, 0, 0, 624, 626, 3, 34, 17, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 123, 1, 0, 0, 0, 627, 628, 7, 8, 0, 0, 628, 629, 5, 121, 0, 0, 629, 630, 3, 126, 63, 0, 630, 631, 3, 128, 64, 0, 631, 125, 1, 0, 0, 0, 632, 633, 3, 40, 20, 0, 633, 127, 1, 0, 0, 0, 634, 635, 5, 95, 0, 0, 635, 640, 3, 130, 65, 0, 636, 637, 5, 39, 0, 0, 637, 639, 3, 130, 65, 0, 638, 636, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 129, 1, 0, 0, 0, 642, 640, 1, 0, 0, 0, 643, 644, 3, 16, 8, 0, 644, 131, 1, 0, 0, 0, 645, 646, 5, 19, 0, 0, 646, 647, 3, 62, 31, 0, 647, 133, 1, 0, 0, 0, 61, 145, 154, 175, 187, 196, 204, 209, 217, 219, 224, 231, 236, 241, 251, 257, 265, 267, 278, 285, 296, 301, 303, 315, 334, 340, 350, 354, 359, 373, 382, 386, 390, 397, 401, 408, 414, 421, 429, 437, 444, 461, 472, 483, 488, 492, 496, 507, 512, 516, 530, 541, 555, 566, 569, 574, 596, 604, 607, 612, 625, 640] \ No newline at end of file +[4, 1, 135, 649, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 144, 8, 1, 10, 1, 12, 1, 147, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 155, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 176, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 5, 7, 189, 8, 7, 10, 7, 12, 7, 192, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 197, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 205, 8, 9, 10, 9, 12, 9, 208, 9, 9, 1, 9, 3, 9, 211, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 216, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 228, 8, 13, 10, 13, 12, 13, 231, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 237, 8, 14, 10, 14, 12, 14, 240, 9, 14, 1, 14, 3, 14, 243, 8, 14, 1, 14, 1, 14, 3, 14, 247, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 254, 8, 16, 1, 16, 1, 16, 3, 16, 258, 8, 16, 1, 17, 1, 17, 1, 17, 5, 17, 263, 8, 17, 10, 17, 12, 17, 266, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 271, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 276, 8, 19, 10, 19, 12, 19, 279, 9, 19, 1, 20, 1, 20, 1, 20, 5, 20, 284, 8, 20, 10, 20, 12, 20, 287, 9, 20, 1, 21, 1, 21, 1, 21, 5, 21, 292, 8, 21, 10, 21, 12, 21, 295, 9, 21, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 301, 8, 23, 1, 24, 1, 24, 3, 24, 305, 8, 24, 1, 25, 1, 25, 3, 25, 309, 8, 25, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 318, 8, 27, 10, 27, 12, 27, 321, 9, 27, 1, 28, 1, 28, 3, 28, 325, 8, 28, 1, 28, 1, 28, 3, 28, 329, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 341, 8, 31, 10, 31, 12, 31, 344, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 354, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 5, 36, 366, 8, 36, 10, 36, 12, 36, 369, 9, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 389, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 395, 8, 41, 10, 41, 12, 41, 398, 9, 41, 3, 41, 400, 8, 41, 1, 42, 1, 42, 1, 42, 3, 42, 405, 8, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 418, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 431, 8, 47, 10, 47, 12, 47, 434, 9, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 448, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 455, 8, 50, 10, 50, 12, 50, 458, 9, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 465, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 470, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 478, 8, 50, 10, 50, 12, 50, 481, 9, 50, 1, 51, 1, 51, 3, 51, 485, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 492, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 497, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 502, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 512, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 518, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 526, 8, 54, 10, 54, 12, 54, 529, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 539, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 544, 8, 55, 10, 55, 12, 55, 547, 9, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 555, 8, 56, 10, 56, 12, 56, 558, 9, 56, 1, 56, 1, 56, 3, 56, 562, 8, 56, 3, 56, 564, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 574, 8, 58, 10, 58, 12, 58, 577, 9, 58, 1, 58, 1, 58, 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, 60, 1, 60, 1, 60, 1, 60, 5, 60, 598, 8, 60, 10, 60, 12, 60, 601, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 609, 8, 60, 10, 60, 12, 60, 612, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 620, 8, 60, 10, 60, 12, 60, 623, 9, 60, 1, 60, 1, 60, 3, 60, 627, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 3, 62, 633, 8, 62, 1, 63, 3, 63, 636, 8, 63, 1, 63, 1, 63, 1, 64, 3, 64, 641, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 0, 4, 2, 100, 108, 110, 67, 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, 0, 9, 2, 0, 50, 50, 100, 100, 1, 0, 94, 95, 2, 0, 55, 55, 60, 60, 2, 0, 63, 63, 66, 66, 2, 0, 17, 17, 19, 20, 1, 0, 82, 83, 1, 0, 84, 86, 2, 0, 62, 62, 74, 74, 2, 0, 75, 75, 77, 81, 674, 0, 134, 1, 0, 0, 0, 2, 137, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 6, 175, 1, 0, 0, 0, 8, 177, 1, 0, 0, 0, 10, 180, 1, 0, 0, 0, 12, 182, 1, 0, 0, 0, 14, 185, 1, 0, 0, 0, 16, 196, 1, 0, 0, 0, 18, 200, 1, 0, 0, 0, 20, 215, 1, 0, 0, 0, 22, 219, 1, 0, 0, 0, 24, 221, 1, 0, 0, 0, 26, 223, 1, 0, 0, 0, 28, 232, 1, 0, 0, 0, 30, 248, 1, 0, 0, 0, 32, 251, 1, 0, 0, 0, 34, 259, 1, 0, 0, 0, 36, 267, 1, 0, 0, 0, 38, 272, 1, 0, 0, 0, 40, 280, 1, 0, 0, 0, 42, 288, 1, 0, 0, 0, 44, 296, 1, 0, 0, 0, 46, 300, 1, 0, 0, 0, 48, 304, 1, 0, 0, 0, 50, 308, 1, 0, 0, 0, 52, 310, 1, 0, 0, 0, 54, 313, 1, 0, 0, 0, 56, 322, 1, 0, 0, 0, 58, 330, 1, 0, 0, 0, 60, 333, 1, 0, 0, 0, 62, 336, 1, 0, 0, 0, 64, 345, 1, 0, 0, 0, 66, 349, 1, 0, 0, 0, 68, 355, 1, 0, 0, 0, 70, 359, 1, 0, 0, 0, 72, 362, 1, 0, 0, 0, 74, 370, 1, 0, 0, 0, 76, 374, 1, 0, 0, 0, 78, 377, 1, 0, 0, 0, 80, 381, 1, 0, 0, 0, 82, 384, 1, 0, 0, 0, 84, 404, 1, 0, 0, 0, 86, 408, 1, 0, 0, 0, 88, 413, 1, 0, 0, 0, 90, 419, 1, 0, 0, 0, 92, 424, 1, 0, 0, 0, 94, 426, 1, 0, 0, 0, 96, 435, 1, 0, 0, 0, 98, 437, 1, 0, 0, 0, 100, 469, 1, 0, 0, 0, 102, 496, 1, 0, 0, 0, 104, 498, 1, 0, 0, 0, 106, 511, 1, 0, 0, 0, 108, 517, 1, 0, 0, 0, 110, 538, 1, 0, 0, 0, 112, 548, 1, 0, 0, 0, 114, 567, 1, 0, 0, 0, 116, 569, 1, 0, 0, 0, 118, 580, 1, 0, 0, 0, 120, 626, 1, 0, 0, 0, 122, 628, 1, 0, 0, 0, 124, 632, 1, 0, 0, 0, 126, 635, 1, 0, 0, 0, 128, 640, 1, 0, 0, 0, 130, 644, 1, 0, 0, 0, 132, 646, 1, 0, 0, 0, 134, 135, 3, 2, 1, 0, 135, 136, 5, 0, 0, 1, 136, 1, 1, 0, 0, 0, 137, 138, 6, 1, -1, 0, 138, 139, 3, 4, 2, 0, 139, 145, 1, 0, 0, 0, 140, 141, 10, 1, 0, 0, 141, 142, 5, 49, 0, 0, 142, 144, 3, 6, 3, 0, 143, 140, 1, 0, 0, 0, 144, 147, 1, 0, 0, 0, 145, 143, 1, 0, 0, 0, 145, 146, 1, 0, 0, 0, 146, 3, 1, 0, 0, 0, 147, 145, 1, 0, 0, 0, 148, 155, 3, 76, 38, 0, 149, 155, 3, 18, 9, 0, 150, 155, 3, 12, 6, 0, 151, 155, 3, 80, 40, 0, 152, 153, 4, 2, 1, 0, 153, 155, 3, 28, 14, 0, 154, 148, 1, 0, 0, 0, 154, 149, 1, 0, 0, 0, 154, 150, 1, 0, 0, 0, 154, 151, 1, 0, 0, 0, 154, 152, 1, 0, 0, 0, 155, 5, 1, 0, 0, 0, 156, 176, 3, 30, 15, 0, 157, 176, 3, 8, 4, 0, 158, 176, 3, 58, 29, 0, 159, 176, 3, 52, 26, 0, 160, 176, 3, 32, 16, 0, 161, 176, 3, 54, 27, 0, 162, 176, 3, 60, 30, 0, 163, 176, 3, 62, 31, 0, 164, 176, 3, 66, 33, 0, 165, 176, 3, 68, 34, 0, 166, 176, 3, 82, 41, 0, 167, 176, 3, 70, 35, 0, 168, 176, 3, 90, 45, 0, 169, 170, 4, 3, 2, 0, 170, 176, 3, 88, 44, 0, 171, 172, 4, 3, 3, 0, 172, 176, 3, 86, 43, 0, 173, 174, 4, 3, 4, 0, 174, 176, 3, 98, 49, 0, 175, 156, 1, 0, 0, 0, 175, 157, 1, 0, 0, 0, 175, 158, 1, 0, 0, 0, 175, 159, 1, 0, 0, 0, 175, 160, 1, 0, 0, 0, 175, 161, 1, 0, 0, 0, 175, 162, 1, 0, 0, 0, 175, 163, 1, 0, 0, 0, 175, 164, 1, 0, 0, 0, 175, 165, 1, 0, 0, 0, 175, 166, 1, 0, 0, 0, 175, 167, 1, 0, 0, 0, 175, 168, 1, 0, 0, 0, 175, 169, 1, 0, 0, 0, 175, 171, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 7, 1, 0, 0, 0, 177, 178, 5, 14, 0, 0, 178, 179, 3, 100, 50, 0, 179, 9, 1, 0, 0, 0, 180, 181, 3, 44, 22, 0, 181, 11, 1, 0, 0, 0, 182, 183, 5, 11, 0, 0, 183, 184, 3, 14, 7, 0, 184, 13, 1, 0, 0, 0, 185, 190, 3, 16, 8, 0, 186, 187, 5, 59, 0, 0, 187, 189, 3, 16, 8, 0, 188, 186, 1, 0, 0, 0, 189, 192, 1, 0, 0, 0, 190, 188, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 15, 1, 0, 0, 0, 192, 190, 1, 0, 0, 0, 193, 194, 3, 38, 19, 0, 194, 195, 5, 56, 0, 0, 195, 197, 1, 0, 0, 0, 196, 193, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 198, 1, 0, 0, 0, 198, 199, 3, 100, 50, 0, 199, 17, 1, 0, 0, 0, 200, 201, 5, 16, 0, 0, 201, 206, 3, 20, 10, 0, 202, 203, 5, 59, 0, 0, 203, 205, 3, 20, 10, 0, 204, 202, 1, 0, 0, 0, 205, 208, 1, 0, 0, 0, 206, 204, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 210, 1, 0, 0, 0, 208, 206, 1, 0, 0, 0, 209, 211, 3, 26, 13, 0, 210, 209, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 19, 1, 0, 0, 0, 212, 213, 3, 22, 11, 0, 213, 214, 5, 58, 0, 0, 214, 216, 1, 0, 0, 0, 215, 212, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 218, 3, 24, 12, 0, 218, 21, 1, 0, 0, 0, 219, 220, 7, 0, 0, 0, 220, 23, 1, 0, 0, 0, 221, 222, 7, 0, 0, 0, 222, 25, 1, 0, 0, 0, 223, 224, 5, 99, 0, 0, 224, 229, 5, 100, 0, 0, 225, 226, 5, 59, 0, 0, 226, 228, 5, 100, 0, 0, 227, 225, 1, 0, 0, 0, 228, 231, 1, 0, 0, 0, 229, 227, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 27, 1, 0, 0, 0, 231, 229, 1, 0, 0, 0, 232, 233, 5, 22, 0, 0, 233, 238, 3, 20, 10, 0, 234, 235, 5, 59, 0, 0, 235, 237, 3, 20, 10, 0, 236, 234, 1, 0, 0, 0, 237, 240, 1, 0, 0, 0, 238, 236, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 242, 1, 0, 0, 0, 240, 238, 1, 0, 0, 0, 241, 243, 3, 34, 17, 0, 242, 241, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 246, 1, 0, 0, 0, 244, 245, 5, 53, 0, 0, 245, 247, 3, 14, 7, 0, 246, 244, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 29, 1, 0, 0, 0, 248, 249, 5, 8, 0, 0, 249, 250, 3, 14, 7, 0, 250, 31, 1, 0, 0, 0, 251, 253, 5, 13, 0, 0, 252, 254, 3, 34, 17, 0, 253, 252, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 257, 1, 0, 0, 0, 255, 256, 5, 53, 0, 0, 256, 258, 3, 14, 7, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 33, 1, 0, 0, 0, 259, 264, 3, 36, 18, 0, 260, 261, 5, 59, 0, 0, 261, 263, 3, 36, 18, 0, 262, 260, 1, 0, 0, 0, 263, 266, 1, 0, 0, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 35, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 267, 270, 3, 16, 8, 0, 268, 269, 5, 14, 0, 0, 269, 271, 3, 100, 50, 0, 270, 268, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 37, 1, 0, 0, 0, 272, 277, 3, 50, 25, 0, 273, 274, 5, 61, 0, 0, 274, 276, 3, 50, 25, 0, 275, 273, 1, 0, 0, 0, 276, 279, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 39, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 280, 285, 3, 46, 23, 0, 281, 282, 5, 61, 0, 0, 282, 284, 3, 46, 23, 0, 283, 281, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 41, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 288, 293, 3, 40, 20, 0, 289, 290, 5, 59, 0, 0, 290, 292, 3, 40, 20, 0, 291, 289, 1, 0, 0, 0, 292, 295, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 293, 294, 1, 0, 0, 0, 294, 43, 1, 0, 0, 0, 295, 293, 1, 0, 0, 0, 296, 297, 7, 1, 0, 0, 297, 45, 1, 0, 0, 0, 298, 301, 5, 124, 0, 0, 299, 301, 3, 48, 24, 0, 300, 298, 1, 0, 0, 0, 300, 299, 1, 0, 0, 0, 301, 47, 1, 0, 0, 0, 302, 305, 5, 72, 0, 0, 303, 305, 5, 89, 0, 0, 304, 302, 1, 0, 0, 0, 304, 303, 1, 0, 0, 0, 305, 49, 1, 0, 0, 0, 306, 309, 3, 44, 22, 0, 307, 309, 3, 48, 24, 0, 308, 306, 1, 0, 0, 0, 308, 307, 1, 0, 0, 0, 309, 51, 1, 0, 0, 0, 310, 311, 5, 10, 0, 0, 311, 312, 5, 51, 0, 0, 312, 53, 1, 0, 0, 0, 313, 314, 5, 12, 0, 0, 314, 319, 3, 56, 28, 0, 315, 316, 5, 59, 0, 0, 316, 318, 3, 56, 28, 0, 317, 315, 1, 0, 0, 0, 318, 321, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 55, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 322, 324, 3, 100, 50, 0, 323, 325, 7, 2, 0, 0, 324, 323, 1, 0, 0, 0, 324, 325, 1, 0, 0, 0, 325, 328, 1, 0, 0, 0, 326, 327, 5, 70, 0, 0, 327, 329, 7, 3, 0, 0, 328, 326, 1, 0, 0, 0, 328, 329, 1, 0, 0, 0, 329, 57, 1, 0, 0, 0, 330, 331, 5, 25, 0, 0, 331, 332, 3, 42, 21, 0, 332, 59, 1, 0, 0, 0, 333, 334, 5, 24, 0, 0, 334, 335, 3, 42, 21, 0, 335, 61, 1, 0, 0, 0, 336, 337, 5, 27, 0, 0, 337, 342, 3, 64, 32, 0, 338, 339, 5, 59, 0, 0, 339, 341, 3, 64, 32, 0, 340, 338, 1, 0, 0, 0, 341, 344, 1, 0, 0, 0, 342, 340, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 63, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 345, 346, 3, 40, 20, 0, 346, 347, 5, 128, 0, 0, 347, 348, 3, 40, 20, 0, 348, 65, 1, 0, 0, 0, 349, 350, 5, 7, 0, 0, 350, 351, 3, 110, 55, 0, 351, 353, 3, 130, 65, 0, 352, 354, 3, 72, 36, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 67, 1, 0, 0, 0, 355, 356, 5, 9, 0, 0, 356, 357, 3, 110, 55, 0, 357, 358, 3, 130, 65, 0, 358, 69, 1, 0, 0, 0, 359, 360, 5, 23, 0, 0, 360, 361, 3, 38, 19, 0, 361, 71, 1, 0, 0, 0, 362, 367, 3, 74, 37, 0, 363, 364, 5, 59, 0, 0, 364, 366, 3, 74, 37, 0, 365, 363, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 73, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 371, 3, 44, 22, 0, 371, 372, 5, 56, 0, 0, 372, 373, 3, 120, 60, 0, 373, 75, 1, 0, 0, 0, 374, 375, 5, 6, 0, 0, 375, 376, 3, 78, 39, 0, 376, 77, 1, 0, 0, 0, 377, 378, 5, 90, 0, 0, 378, 379, 3, 2, 1, 0, 379, 380, 5, 91, 0, 0, 380, 79, 1, 0, 0, 0, 381, 382, 5, 28, 0, 0, 382, 383, 5, 132, 0, 0, 383, 81, 1, 0, 0, 0, 384, 385, 5, 5, 0, 0, 385, 388, 5, 35, 0, 0, 386, 387, 5, 33, 0, 0, 387, 389, 3, 40, 20, 0, 388, 386, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 399, 1, 0, 0, 0, 390, 391, 5, 34, 0, 0, 391, 396, 3, 84, 42, 0, 392, 393, 5, 59, 0, 0, 393, 395, 3, 84, 42, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 390, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 83, 1, 0, 0, 0, 401, 402, 3, 40, 20, 0, 402, 403, 5, 56, 0, 0, 403, 405, 1, 0, 0, 0, 404, 401, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 407, 3, 40, 20, 0, 407, 85, 1, 0, 0, 0, 408, 409, 5, 21, 0, 0, 409, 410, 3, 20, 10, 0, 410, 411, 5, 33, 0, 0, 411, 412, 3, 42, 21, 0, 412, 87, 1, 0, 0, 0, 413, 414, 5, 15, 0, 0, 414, 417, 3, 34, 17, 0, 415, 416, 5, 53, 0, 0, 416, 418, 3, 14, 7, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 89, 1, 0, 0, 0, 419, 420, 7, 4, 0, 0, 420, 421, 5, 104, 0, 0, 421, 422, 3, 92, 46, 0, 422, 423, 3, 94, 47, 0, 423, 91, 1, 0, 0, 0, 424, 425, 3, 20, 10, 0, 425, 93, 1, 0, 0, 0, 426, 427, 5, 33, 0, 0, 427, 432, 3, 96, 48, 0, 428, 429, 5, 59, 0, 0, 429, 431, 3, 96, 48, 0, 430, 428, 1, 0, 0, 0, 431, 434, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 95, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 435, 436, 3, 106, 53, 0, 436, 97, 1, 0, 0, 0, 437, 438, 5, 26, 0, 0, 438, 439, 3, 42, 21, 0, 439, 99, 1, 0, 0, 0, 440, 441, 6, 50, -1, 0, 441, 442, 5, 68, 0, 0, 442, 470, 3, 100, 50, 8, 443, 470, 3, 106, 53, 0, 444, 470, 3, 102, 51, 0, 445, 447, 3, 106, 53, 0, 446, 448, 5, 68, 0, 0, 447, 446, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 5, 64, 0, 0, 450, 451, 5, 92, 0, 0, 451, 456, 3, 106, 53, 0, 452, 453, 5, 59, 0, 0, 453, 455, 3, 106, 53, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 459, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 460, 5, 93, 0, 0, 460, 470, 1, 0, 0, 0, 461, 462, 3, 106, 53, 0, 462, 464, 5, 65, 0, 0, 463, 465, 5, 68, 0, 0, 464, 463, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 467, 5, 69, 0, 0, 467, 470, 1, 0, 0, 0, 468, 470, 3, 104, 52, 0, 469, 440, 1, 0, 0, 0, 469, 443, 1, 0, 0, 0, 469, 444, 1, 0, 0, 0, 469, 445, 1, 0, 0, 0, 469, 461, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 479, 1, 0, 0, 0, 471, 472, 10, 5, 0, 0, 472, 473, 5, 54, 0, 0, 473, 478, 3, 100, 50, 6, 474, 475, 10, 4, 0, 0, 475, 476, 5, 71, 0, 0, 476, 478, 3, 100, 50, 5, 477, 471, 1, 0, 0, 0, 477, 474, 1, 0, 0, 0, 478, 481, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 101, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 482, 484, 3, 106, 53, 0, 483, 485, 5, 68, 0, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 5, 67, 0, 0, 487, 488, 3, 130, 65, 0, 488, 497, 1, 0, 0, 0, 489, 491, 3, 106, 53, 0, 490, 492, 5, 68, 0, 0, 491, 490, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 5, 73, 0, 0, 494, 495, 3, 130, 65, 0, 495, 497, 1, 0, 0, 0, 496, 482, 1, 0, 0, 0, 496, 489, 1, 0, 0, 0, 497, 103, 1, 0, 0, 0, 498, 501, 3, 38, 19, 0, 499, 500, 5, 57, 0, 0, 500, 502, 3, 10, 5, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 5, 58, 0, 0, 504, 505, 3, 120, 60, 0, 505, 105, 1, 0, 0, 0, 506, 512, 3, 108, 54, 0, 507, 508, 3, 108, 54, 0, 508, 509, 3, 132, 66, 0, 509, 510, 3, 108, 54, 0, 510, 512, 1, 0, 0, 0, 511, 506, 1, 0, 0, 0, 511, 507, 1, 0, 0, 0, 512, 107, 1, 0, 0, 0, 513, 514, 6, 54, -1, 0, 514, 518, 3, 110, 55, 0, 515, 516, 7, 5, 0, 0, 516, 518, 3, 108, 54, 3, 517, 513, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 518, 527, 1, 0, 0, 0, 519, 520, 10, 2, 0, 0, 520, 521, 7, 6, 0, 0, 521, 526, 3, 108, 54, 3, 522, 523, 10, 1, 0, 0, 523, 524, 7, 5, 0, 0, 524, 526, 3, 108, 54, 2, 525, 519, 1, 0, 0, 0, 525, 522, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 109, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 55, -1, 0, 531, 539, 3, 120, 60, 0, 532, 539, 3, 38, 19, 0, 533, 539, 3, 112, 56, 0, 534, 535, 5, 92, 0, 0, 535, 536, 3, 100, 50, 0, 536, 537, 5, 93, 0, 0, 537, 539, 1, 0, 0, 0, 538, 530, 1, 0, 0, 0, 538, 532, 1, 0, 0, 0, 538, 533, 1, 0, 0, 0, 538, 534, 1, 0, 0, 0, 539, 545, 1, 0, 0, 0, 540, 541, 10, 1, 0, 0, 541, 542, 5, 57, 0, 0, 542, 544, 3, 10, 5, 0, 543, 540, 1, 0, 0, 0, 544, 547, 1, 0, 0, 0, 545, 543, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 111, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 548, 549, 3, 114, 57, 0, 549, 563, 5, 92, 0, 0, 550, 564, 5, 84, 0, 0, 551, 556, 3, 100, 50, 0, 552, 553, 5, 59, 0, 0, 553, 555, 3, 100, 50, 0, 554, 552, 1, 0, 0, 0, 555, 558, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 561, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 560, 5, 59, 0, 0, 560, 562, 3, 116, 58, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 564, 1, 0, 0, 0, 563, 550, 1, 0, 0, 0, 563, 551, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 5, 93, 0, 0, 566, 113, 1, 0, 0, 0, 567, 568, 3, 50, 25, 0, 568, 115, 1, 0, 0, 0, 569, 570, 5, 87, 0, 0, 570, 575, 3, 118, 59, 0, 571, 572, 5, 59, 0, 0, 572, 574, 3, 118, 59, 0, 573, 571, 1, 0, 0, 0, 574, 577, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 578, 1, 0, 0, 0, 577, 575, 1, 0, 0, 0, 578, 579, 5, 88, 0, 0, 579, 117, 1, 0, 0, 0, 580, 581, 3, 130, 65, 0, 581, 582, 5, 58, 0, 0, 582, 583, 3, 120, 60, 0, 583, 119, 1, 0, 0, 0, 584, 627, 5, 69, 0, 0, 585, 586, 3, 128, 64, 0, 586, 587, 5, 94, 0, 0, 587, 627, 1, 0, 0, 0, 588, 627, 3, 126, 63, 0, 589, 627, 3, 128, 64, 0, 590, 627, 3, 122, 61, 0, 591, 627, 3, 48, 24, 0, 592, 627, 3, 130, 65, 0, 593, 594, 5, 90, 0, 0, 594, 599, 3, 124, 62, 0, 595, 596, 5, 59, 0, 0, 596, 598, 3, 124, 62, 0, 597, 595, 1, 0, 0, 0, 598, 601, 1, 0, 0, 0, 599, 597, 1, 0, 0, 0, 599, 600, 1, 0, 0, 0, 600, 602, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 602, 603, 5, 91, 0, 0, 603, 627, 1, 0, 0, 0, 604, 605, 5, 90, 0, 0, 605, 610, 3, 122, 61, 0, 606, 607, 5, 59, 0, 0, 607, 609, 3, 122, 61, 0, 608, 606, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 613, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 5, 91, 0, 0, 614, 627, 1, 0, 0, 0, 615, 616, 5, 90, 0, 0, 616, 621, 3, 130, 65, 0, 617, 618, 5, 59, 0, 0, 618, 620, 3, 130, 65, 0, 619, 617, 1, 0, 0, 0, 620, 623, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 624, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 624, 625, 5, 91, 0, 0, 625, 627, 1, 0, 0, 0, 626, 584, 1, 0, 0, 0, 626, 585, 1, 0, 0, 0, 626, 588, 1, 0, 0, 0, 626, 589, 1, 0, 0, 0, 626, 590, 1, 0, 0, 0, 626, 591, 1, 0, 0, 0, 626, 592, 1, 0, 0, 0, 626, 593, 1, 0, 0, 0, 626, 604, 1, 0, 0, 0, 626, 615, 1, 0, 0, 0, 627, 121, 1, 0, 0, 0, 628, 629, 7, 7, 0, 0, 629, 123, 1, 0, 0, 0, 630, 633, 3, 126, 63, 0, 631, 633, 3, 128, 64, 0, 632, 630, 1, 0, 0, 0, 632, 631, 1, 0, 0, 0, 633, 125, 1, 0, 0, 0, 634, 636, 7, 5, 0, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 5, 52, 0, 0, 638, 127, 1, 0, 0, 0, 639, 641, 7, 5, 0, 0, 640, 639, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 5, 51, 0, 0, 643, 129, 1, 0, 0, 0, 644, 645, 5, 50, 0, 0, 645, 131, 1, 0, 0, 0, 646, 647, 7, 8, 0, 0, 647, 133, 1, 0, 0, 0, 61, 145, 154, 175, 190, 196, 206, 210, 215, 229, 238, 242, 246, 253, 257, 264, 270, 277, 285, 293, 300, 304, 308, 319, 324, 328, 342, 353, 367, 388, 396, 399, 404, 417, 432, 447, 456, 464, 469, 477, 479, 484, 491, 496, 501, 511, 517, 525, 527, 538, 545, 556, 561, 563, 575, 599, 610, 621, 626, 632, 635, 640] \ No newline at end of file diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java index 294a76abada75..fc4b2ea654975 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java @@ -25,124 +25,126 @@ public class EsqlBaseParser extends ParserConfig { protected static final PredictionContextCache _sharedContextCache = new PredictionContextCache(); public static final int - DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8, - LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15, - WHERE=16, JOIN_LOOKUP=17, DEV_INLINESTATS=18, DEV_INSIST=19, DEV_LOOKUP=20, - DEV_METRICS=21, DEV_JOIN_FULL=22, DEV_JOIN_LEFT=23, DEV_JOIN_RIGHT=24, - UNKNOWN_CMD=25, LINE_COMMENT=26, MULTILINE_COMMENT=27, WS=28, PIPE=29, - QUOTED_STRING=30, INTEGER_LITERAL=31, DECIMAL_LITERAL=32, BY=33, AND=34, - ASC=35, ASSIGN=36, CAST_OP=37, COLON=38, COMMA=39, DESC=40, DOT=41, FALSE=42, - FIRST=43, IN=44, IS=45, LAST=46, LIKE=47, LP=48, NOT=49, NULL=50, NULLS=51, - OR=52, PARAM=53, RLIKE=54, RP=55, TRUE=56, EQ=57, CIEQ=58, NEQ=59, LT=60, - LTE=61, GT=62, GTE=63, PLUS=64, MINUS=65, ASTERISK=66, SLASH=67, PERCENT=68, - LEFT_BRACES=69, RIGHT_BRACES=70, NAMED_OR_POSITIONAL_PARAM=71, OPENING_BRACKET=72, - CLOSING_BRACKET=73, UNQUOTED_IDENTIFIER=74, QUOTED_IDENTIFIER=75, EXPR_LINE_COMMENT=76, - EXPR_MULTILINE_COMMENT=77, EXPR_WS=78, EXPLAIN_WS=79, EXPLAIN_LINE_COMMENT=80, - EXPLAIN_MULTILINE_COMMENT=81, METADATA=82, UNQUOTED_SOURCE=83, FROM_LINE_COMMENT=84, - FROM_MULTILINE_COMMENT=85, FROM_WS=86, ID_PATTERN=87, PROJECT_LINE_COMMENT=88, - PROJECT_MULTILINE_COMMENT=89, PROJECT_WS=90, AS=91, RENAME_LINE_COMMENT=92, - RENAME_MULTILINE_COMMENT=93, RENAME_WS=94, ON=95, WITH=96, ENRICH_POLICY_NAME=97, - ENRICH_LINE_COMMENT=98, ENRICH_MULTILINE_COMMENT=99, ENRICH_WS=100, ENRICH_FIELD_LINE_COMMENT=101, - ENRICH_FIELD_MULTILINE_COMMENT=102, ENRICH_FIELD_WS=103, MVEXPAND_LINE_COMMENT=104, - MVEXPAND_MULTILINE_COMMENT=105, MVEXPAND_WS=106, INFO=107, SHOW_LINE_COMMENT=108, - SHOW_MULTILINE_COMMENT=109, SHOW_WS=110, SETTING=111, SETTING_LINE_COMMENT=112, - SETTTING_MULTILINE_COMMENT=113, SETTING_WS=114, LOOKUP_LINE_COMMENT=115, - LOOKUP_MULTILINE_COMMENT=116, LOOKUP_WS=117, LOOKUP_FIELD_LINE_COMMENT=118, - LOOKUP_FIELD_MULTILINE_COMMENT=119, LOOKUP_FIELD_WS=120, JOIN=121, USING=122, - JOIN_LINE_COMMENT=123, JOIN_MULTILINE_COMMENT=124, JOIN_WS=125, METRICS_LINE_COMMENT=126, - METRICS_MULTILINE_COMMENT=127, METRICS_WS=128, CLOSING_METRICS_LINE_COMMENT=129, - CLOSING_METRICS_MULTILINE_COMMENT=130, CLOSING_METRICS_WS=131, INSIST_WS=132, - INSIST_LINE_COMMENT=133, INSIST_MULTILINE_COMMENT=134; + LINE_COMMENT=1, MULTILINE_COMMENT=2, WS=3, DEV_CHANGE_POINT=4, ENRICH=5, + EXPLAIN=6, DISSECT=7, EVAL=8, GROK=9, LIMIT=10, ROW=11, SORT=12, STATS=13, + WHERE=14, DEV_INLINESTATS=15, FROM=16, JOIN_LOOKUP=17, DEV_JOIN_FULL=18, + DEV_JOIN_LEFT=19, DEV_JOIN_RIGHT=20, DEV_LOOKUP=21, DEV_METRICS=22, MV_EXPAND=23, + DROP=24, KEEP=25, DEV_INSIST=26, RENAME=27, SHOW=28, UNKNOWN_CMD=29, CHANGE_POINT_LINE_COMMENT=30, + CHANGE_POINT_MULTILINE_COMMENT=31, CHANGE_POINT_WS=32, ON=33, WITH=34, + ENRICH_POLICY_NAME=35, ENRICH_LINE_COMMENT=36, ENRICH_MULTILINE_COMMENT=37, + ENRICH_WS=38, ENRICH_FIELD_LINE_COMMENT=39, ENRICH_FIELD_MULTILINE_COMMENT=40, + ENRICH_FIELD_WS=41, SETTING=42, SETTING_LINE_COMMENT=43, SETTTING_MULTILINE_COMMENT=44, + SETTING_WS=45, EXPLAIN_WS=46, EXPLAIN_LINE_COMMENT=47, EXPLAIN_MULTILINE_COMMENT=48, + PIPE=49, QUOTED_STRING=50, INTEGER_LITERAL=51, DECIMAL_LITERAL=52, BY=53, + AND=54, ASC=55, ASSIGN=56, CAST_OP=57, COLON=58, COMMA=59, DESC=60, DOT=61, + FALSE=62, FIRST=63, IN=64, IS=65, LAST=66, LIKE=67, NOT=68, NULL=69, NULLS=70, + OR=71, PARAM=72, RLIKE=73, TRUE=74, EQ=75, CIEQ=76, NEQ=77, LT=78, LTE=79, + GT=80, GTE=81, PLUS=82, MINUS=83, ASTERISK=84, SLASH=85, PERCENT=86, LEFT_BRACES=87, + RIGHT_BRACES=88, NAMED_OR_POSITIONAL_PARAM=89, OPENING_BRACKET=90, CLOSING_BRACKET=91, + LP=92, RP=93, UNQUOTED_IDENTIFIER=94, QUOTED_IDENTIFIER=95, EXPR_LINE_COMMENT=96, + EXPR_MULTILINE_COMMENT=97, EXPR_WS=98, METADATA=99, UNQUOTED_SOURCE=100, + FROM_LINE_COMMENT=101, FROM_MULTILINE_COMMENT=102, FROM_WS=103, JOIN=104, + USING=105, JOIN_LINE_COMMENT=106, JOIN_MULTILINE_COMMENT=107, JOIN_WS=108, + LOOKUP_LINE_COMMENT=109, LOOKUP_MULTILINE_COMMENT=110, LOOKUP_WS=111, + LOOKUP_FIELD_LINE_COMMENT=112, LOOKUP_FIELD_MULTILINE_COMMENT=113, LOOKUP_FIELD_WS=114, + METRICS_LINE_COMMENT=115, METRICS_MULTILINE_COMMENT=116, METRICS_WS=117, + CLOSING_METRICS_LINE_COMMENT=118, CLOSING_METRICS_MULTILINE_COMMENT=119, + CLOSING_METRICS_WS=120, MVEXPAND_LINE_COMMENT=121, MVEXPAND_MULTILINE_COMMENT=122, + MVEXPAND_WS=123, ID_PATTERN=124, PROJECT_LINE_COMMENT=125, PROJECT_MULTILINE_COMMENT=126, + PROJECT_WS=127, AS=128, RENAME_LINE_COMMENT=129, RENAME_MULTILINE_COMMENT=130, + RENAME_WS=131, INFO=132, SHOW_LINE_COMMENT=133, SHOW_MULTILINE_COMMENT=134, + SHOW_WS=135; public static final int RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, - RULE_whereCommand = 4, RULE_booleanExpression = 5, RULE_regexBooleanExpression = 6, - RULE_matchBooleanExpression = 7, RULE_valueExpression = 8, RULE_operatorExpression = 9, - RULE_primaryExpression = 10, RULE_functionExpression = 11, RULE_functionName = 12, - RULE_mapExpression = 13, RULE_entryExpression = 14, RULE_dataType = 15, - RULE_rowCommand = 16, RULE_fields = 17, RULE_field = 18, RULE_fromCommand = 19, - RULE_indexPattern = 20, RULE_clusterString = 21, RULE_indexString = 22, - RULE_metadata = 23, RULE_metricsCommand = 24, RULE_evalCommand = 25, RULE_statsCommand = 26, - RULE_aggFields = 27, RULE_aggField = 28, RULE_qualifiedName = 29, RULE_qualifiedNamePattern = 30, - RULE_qualifiedNamePatterns = 31, RULE_identifier = 32, RULE_identifierPattern = 33, - RULE_constant = 34, RULE_parameter = 35, RULE_identifierOrParameter = 36, - RULE_limitCommand = 37, RULE_sortCommand = 38, RULE_orderExpression = 39, - RULE_keepCommand = 40, RULE_dropCommand = 41, RULE_renameCommand = 42, - RULE_renameClause = 43, RULE_dissectCommand = 44, RULE_grokCommand = 45, - RULE_mvExpandCommand = 46, RULE_commandOptions = 47, RULE_commandOption = 48, - RULE_booleanValue = 49, RULE_numericValue = 50, RULE_decimalValue = 51, - RULE_integerValue = 52, RULE_string = 53, RULE_comparisonOperator = 54, - RULE_explainCommand = 55, RULE_subqueryExpression = 56, RULE_showCommand = 57, - RULE_enrichCommand = 58, RULE_enrichWithClause = 59, RULE_lookupCommand = 60, - RULE_inlinestatsCommand = 61, RULE_joinCommand = 62, RULE_joinTarget = 63, - RULE_joinCondition = 64, RULE_joinPredicate = 65, RULE_insistCommand = 66; + RULE_whereCommand = 4, RULE_dataType = 5, RULE_rowCommand = 6, RULE_fields = 7, + RULE_field = 8, RULE_fromCommand = 9, RULE_indexPattern = 10, RULE_clusterString = 11, + RULE_indexString = 12, RULE_metadata = 13, RULE_metricsCommand = 14, RULE_evalCommand = 15, + RULE_statsCommand = 16, RULE_aggFields = 17, RULE_aggField = 18, RULE_qualifiedName = 19, + RULE_qualifiedNamePattern = 20, RULE_qualifiedNamePatterns = 21, RULE_identifier = 22, + RULE_identifierPattern = 23, RULE_parameter = 24, RULE_identifierOrParameter = 25, + RULE_limitCommand = 26, RULE_sortCommand = 27, RULE_orderExpression = 28, + RULE_keepCommand = 29, RULE_dropCommand = 30, RULE_renameCommand = 31, + RULE_renameClause = 32, RULE_dissectCommand = 33, RULE_grokCommand = 34, + RULE_mvExpandCommand = 35, RULE_commandOptions = 36, RULE_commandOption = 37, + RULE_explainCommand = 38, RULE_subqueryExpression = 39, RULE_showCommand = 40, + RULE_enrichCommand = 41, RULE_enrichWithClause = 42, RULE_lookupCommand = 43, + RULE_inlinestatsCommand = 44, RULE_joinCommand = 45, RULE_joinTarget = 46, + RULE_joinCondition = 47, RULE_joinPredicate = 48, RULE_insistCommand = 49, + RULE_booleanExpression = 50, RULE_regexBooleanExpression = 51, RULE_matchBooleanExpression = 52, + RULE_valueExpression = 53, RULE_operatorExpression = 54, RULE_primaryExpression = 55, + RULE_functionExpression = 56, RULE_functionName = 57, RULE_mapExpression = 58, + RULE_entryExpression = 59, RULE_constant = 60, RULE_booleanValue = 61, + RULE_numericValue = 62, RULE_decimalValue = 63, RULE_integerValue = 64, + RULE_string = 65, RULE_comparisonOperator = 66; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", - "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", - "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", - "functionName", "mapExpression", "entryExpression", "dataType", "rowCommand", - "fields", "field", "fromCommand", "indexPattern", "clusterString", "indexString", - "metadata", "metricsCommand", "evalCommand", "statsCommand", "aggFields", - "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", - "identifier", "identifierPattern", "constant", "parameter", "identifierOrParameter", - "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", - "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", - "commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue", - "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression", - "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand", - "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition", "joinPredicate", - "insistCommand" + "dataType", "rowCommand", "fields", "field", "fromCommand", "indexPattern", + "clusterString", "indexString", "metadata", "metricsCommand", "evalCommand", + "statsCommand", "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", + "qualifiedNamePatterns", "identifier", "identifierPattern", "parameter", + "identifierOrParameter", "limitCommand", "sortCommand", "orderExpression", + "keepCommand", "dropCommand", "renameCommand", "renameClause", "dissectCommand", + "grokCommand", "mvExpandCommand", "commandOptions", "commandOption", + "explainCommand", "subqueryExpression", "showCommand", "enrichCommand", + "enrichWithClause", "lookupCommand", "inlinestatsCommand", "joinCommand", + "joinTarget", "joinCondition", "joinPredicate", "insistCommand", "booleanExpression", + "regexBooleanExpression", "matchBooleanExpression", "valueExpression", + "operatorExpression", "primaryExpression", "functionExpression", "functionName", + "mapExpression", "entryExpression", "constant", "booleanValue", "numericValue", + "decimalValue", "integerValue", "string", "comparisonOperator" }; } public static final String[] ruleNames = makeRuleNames(); private static String[] makeLiteralNames() { return new String[] { - null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'", - "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'", - "'sort'", "'stats'", "'where'", "'lookup'", null, null, null, null, null, - null, null, null, null, null, null, "'|'", null, null, null, "'by'", - "'and'", "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", "'false'", - "'first'", "'in'", "'is'", "'last'", "'like'", "'('", "'not'", "'null'", - "'nulls'", "'or'", "'?'", "'rlike'", "')'", "'true'", "'=='", "'=~'", - "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", - "'{'", "'}'", null, null, "']'", null, null, null, null, null, null, - null, null, "'metadata'", null, null, null, null, null, null, null, null, - "'as'", null, null, null, "'on'", "'with'", null, null, null, null, null, - null, null, null, null, null, "'info'", null, null, null, null, null, - null, null, null, null, null, null, null, null, "'join'", "'USING'" + null, null, null, null, null, "'enrich'", "'explain'", "'dissect'", "'eval'", + "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, "'from'", + "'lookup'", null, null, null, null, null, "'mv_expand'", "'drop'", "'keep'", + null, "'rename'", "'show'", null, null, null, null, "'on'", "'with'", + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, "'|'", null, null, null, "'by'", "'and'", "'asc'", "'='", + "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", "'in'", + "'is'", "'last'", "'like'", "'not'", "'null'", "'nulls'", "'or'", "'?'", + "'rlike'", "'true'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", + "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", null, null, "']'", null, + "')'", null, null, null, null, null, "'metadata'", null, null, null, + null, "'join'", "'USING'", null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, null, "'as'", null, null, null, "'info'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { - null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", - "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", - "WHERE", "JOIN_LOOKUP", "DEV_INLINESTATS", "DEV_INSIST", "DEV_LOOKUP", - "DEV_METRICS", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "UNKNOWN_CMD", - "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", + null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", + "ENRICH", "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", + "STATS", "WHERE", "DEV_INLINESTATS", "FROM", "JOIN_LOOKUP", "DEV_JOIN_FULL", + "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", "DEV_METRICS", "MV_EXPAND", + "DROP", "KEEP", "DEV_INSIST", "RENAME", "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT", + "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS", "ON", "WITH", "ENRICH_POLICY_NAME", + "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", + "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "SETTING", "SETTING_LINE_COMMENT", + "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "EXPLAIN_WS", "EXPLAIN_LINE_COMMENT", + "EXPLAIN_MULTILINE_COMMENT", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", "BY", "AND", "ASC", "ASSIGN", "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", - "LP", "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "RP", "TRUE", "EQ", - "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", - "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NAMED_OR_POSITIONAL_PARAM", - "OPENING_BRACKET", "CLOSING_BRACKET", "UNQUOTED_IDENTIFIER", "QUOTED_IDENTIFIER", - "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", "EXPLAIN_WS", - "EXPLAIN_LINE_COMMENT", "EXPLAIN_MULTILINE_COMMENT", "METADATA", "UNQUOTED_SOURCE", - "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", "FROM_WS", "ID_PATTERN", - "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", - "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "ON", - "WITH", "ENRICH_POLICY_NAME", "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", - "ENRICH_WS", "ENRICH_FIELD_LINE_COMMENT", "ENRICH_FIELD_MULTILINE_COMMENT", - "ENRICH_FIELD_WS", "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", - "MVEXPAND_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", - "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", - "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", + "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "TRUE", "EQ", "CIEQ", + "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", + "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NAMED_OR_POSITIONAL_PARAM", + "OPENING_BRACKET", "CLOSING_BRACKET", "LP", "RP", "UNQUOTED_IDENTIFIER", + "QUOTED_IDENTIFIER", "EXPR_LINE_COMMENT", "EXPR_MULTILINE_COMMENT", "EXPR_WS", + "METADATA", "UNQUOTED_SOURCE", "FROM_LINE_COMMENT", "FROM_MULTILINE_COMMENT", + "FROM_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", + "JOIN_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", - "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT", - "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "INSIST_WS", - "INSIST_LINE_COMMENT", "INSIST_MULTILINE_COMMENT" + "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "MVEXPAND_LINE_COMMENT", + "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", + "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "AS", "RENAME_LINE_COMMENT", + "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", + "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -720,360 +722,233 @@ public final WhereCommandContext whereCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class BooleanExpressionContext extends ParserRuleContext { + public static class DataTypeContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { + public DataTypeContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_booleanExpression; } + @Override public int getRuleIndex() { return RULE_dataType; } @SuppressWarnings("this-escape") - public BooleanExpressionContext() { } - public void copyFrom(BooleanExpressionContext ctx) { + public DataTypeContext() { } + public void copyFrom(DataTypeContext ctx) { super.copyFrom(ctx); } } @SuppressWarnings("CheckReturnValue") - public static class MatchExpressionContext extends BooleanExpressionContext { - public MatchBooleanExpressionContext matchBooleanExpression() { - return getRuleContext(MatchBooleanExpressionContext.class,0); + public static class ToDataTypeContext extends DataTypeContext { + public IdentifierContext identifier() { + return getRuleContext(IdentifierContext.class,0); } @SuppressWarnings("this-escape") - public MatchExpressionContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + public ToDataTypeContext(DataTypeContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMatchExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterToDataType(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMatchExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitToDataType(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMatchExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitToDataType(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class LogicalNotContext extends BooleanExpressionContext { - public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); - } - @SuppressWarnings("this-escape") - public LogicalNotContext(BooleanExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalNot(this); + + public final DataTypeContext dataType() throws RecognitionException { + DataTypeContext _localctx = new DataTypeContext(_ctx, getState()); + enterRule(_localctx, 10, RULE_dataType); + try { + _localctx = new ToDataTypeContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(180); + identifier(); + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalNot(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalNot(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class BooleanDefaultContext extends BooleanExpressionContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); + public static class RowCommandContext extends ParserRuleContext { + public TerminalNode ROW() { return getToken(EsqlBaseParser.ROW, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); } @SuppressWarnings("this-escape") - public BooleanDefaultContext(BooleanExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanDefault(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanDefault(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanDefault(this); - else return visitor.visitChildren(this); - } - } - @SuppressWarnings("CheckReturnValue") - public static class IsNullContext extends BooleanExpressionContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); + public RowCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); } - public TerminalNode IS() { return getToken(EsqlBaseParser.IS, 0); } - public TerminalNode NULL() { return getToken(EsqlBaseParser.NULL, 0); } - public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } - @SuppressWarnings("this-escape") - public IsNullContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + @Override public int getRuleIndex() { return RULE_rowCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIsNull(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRowCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIsNull(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRowCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIsNull(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRowCommand(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class RegexExpressionContext extends BooleanExpressionContext { - public RegexBooleanExpressionContext regexBooleanExpression() { - return getRuleContext(RegexBooleanExpressionContext.class,0); - } - @SuppressWarnings("this-escape") - public RegexExpressionContext(BooleanExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRegexExpression(this); + + public final RowCommandContext rowCommand() throws RecognitionException { + RowCommandContext _localctx = new RowCommandContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_rowCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(182); + match(ROW); + setState(183); + fields(); + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRegexExpression(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRegexExpression(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class LogicalInContext extends BooleanExpressionContext { - public List valueExpression() { - return getRuleContexts(ValueExpressionContext.class); + public static class FieldsContext extends ParserRuleContext { + public List field() { + return getRuleContexts(FieldContext.class); } - public ValueExpressionContext valueExpression(int i) { - return getRuleContext(ValueExpressionContext.class,i); + public FieldContext field(int i) { + return getRuleContext(FieldContext.class,i); } - public TerminalNode IN() { return getToken(EsqlBaseParser.IN, 0); } - public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } - public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } - public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } public TerminalNode COMMA(int i) { return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public LogicalInContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + public FieldsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fields; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalIn(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFields(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalIn(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFields(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalIn(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFields(this); else return visitor.visitChildren(this); } } + + public final FieldsContext fields() throws RecognitionException { + FieldsContext _localctx = new FieldsContext(_ctx, getState()); + enterRule(_localctx, 14, RULE_fields); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(185); + field(); + setState(190); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,3,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(186); + match(COMMA); + setState(187); + field(); + } + } + } + setState(192); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,3,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class LogicalBinaryContext extends BooleanExpressionContext { - public BooleanExpressionContext left; - public Token operator; - public BooleanExpressionContext right; - public List booleanExpression() { - return getRuleContexts(BooleanExpressionContext.class); + public static class FieldContext extends ParserRuleContext { + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); } - public BooleanExpressionContext booleanExpression(int i) { - return getRuleContext(BooleanExpressionContext.class,i); + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); } - public TerminalNode AND() { return getToken(EsqlBaseParser.AND, 0); } - public TerminalNode OR() { return getToken(EsqlBaseParser.OR, 0); } + public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } @SuppressWarnings("this-escape") - public LogicalBinaryContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + public FieldContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_field; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalBinary(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterField(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalBinary(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitField(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalBinary(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitField(this); else return visitor.visitChildren(this); } } - public final BooleanExpressionContext booleanExpression() throws RecognitionException { - return booleanExpression(0); - } - - private BooleanExpressionContext booleanExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState); - BooleanExpressionContext _prevctx = _localctx; - int _startState = 10; - enterRecursionRule(_localctx, 10, RULE_booleanExpression, _p); - int _la; + public final FieldContext field() throws RecognitionException { + FieldContext _localctx = new FieldContext(_ctx, getState()); + enterRule(_localctx, 16, RULE_field); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(209); + setState(196); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) { case 1: { - _localctx = new LogicalNotContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(181); - match(NOT); - setState(182); - booleanExpression(8); - } - break; - case 2: - { - _localctx = new BooleanDefaultContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(183); - valueExpression(); + setState(193); + qualifiedName(); + setState(194); + match(ASSIGN); } break; - case 3: - { - _localctx = new RegexExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(184); - regexBooleanExpression(); - } - break; - case 4: - { - _localctx = new LogicalInContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(185); - valueExpression(); - setState(187); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==NOT) { - { - setState(186); - match(NOT); - } - } - - setState(189); - match(IN); - setState(190); - match(LP); - setState(191); - valueExpression(); - setState(196); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(192); - match(COMMA); - setState(193); - valueExpression(); - } - } - setState(198); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(199); - match(RP); - } - break; - case 5: - { - _localctx = new IsNullContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(201); - valueExpression(); - setState(202); - match(IS); - setState(204); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==NOT) { - { - setState(203); - match(NOT); - } - } - - setState(206); - match(NULL); - } - break; - case 6: - { - _localctx = new MatchExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(208); - matchBooleanExpression(); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(219); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,8,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - setState(217); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { - case 1: - { - _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); - ((LogicalBinaryContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(211); - if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(212); - ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(213); - ((LogicalBinaryContext)_localctx).right = booleanExpression(6); - } - break; - case 2: - { - _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); - ((LogicalBinaryContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(214); - if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(215); - ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(216); - ((LogicalBinaryContext)_localctx).right = booleanExpression(5); - } - break; - } - } - } - setState(221); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,8,_ctx); } + setState(198); + booleanExpression(0); } } catch (RecognitionException re) { @@ -1082,95 +957,87 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _errHandler.recover(this, re); } finally { - unrollRecursionContexts(_parentctx); + exitRule(); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class RegexBooleanExpressionContext extends ParserRuleContext { - public Token kind; - public StringContext pattern; - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); + public static class FromCommandContext extends ParserRuleContext { + public TerminalNode FROM() { return getToken(EsqlBaseParser.FROM, 0); } + public List indexPattern() { + return getRuleContexts(IndexPatternContext.class); } - public TerminalNode LIKE() { return getToken(EsqlBaseParser.LIKE, 0); } - public StringContext string() { - return getRuleContext(StringContext.class,0); + public IndexPatternContext indexPattern(int i) { + return getRuleContext(IndexPatternContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); + } + public MetadataContext metadata() { + return getRuleContext(MetadataContext.class,0); } - public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } - public TerminalNode RLIKE() { return getToken(EsqlBaseParser.RLIKE, 0); } @SuppressWarnings("this-escape") - public RegexBooleanExpressionContext(ParserRuleContext parent, int invokingState) { + public FromCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_regexBooleanExpression; } + @Override public int getRuleIndex() { return RULE_fromCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRegexBooleanExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFromCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRegexBooleanExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFromCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRegexBooleanExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFromCommand(this); else return visitor.visitChildren(this); } } - public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException { - RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 12, RULE_regexBooleanExpression); - int _la; + public final FromCommandContext fromCommand() throws RecognitionException { + FromCommandContext _localctx = new FromCommandContext(_ctx, getState()); + enterRule(_localctx, 18, RULE_fromCommand); try { - setState(236); + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(200); + match(FROM); + setState(201); + indexPattern(); + setState(206); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); - { - setState(222); - valueExpression(); - setState(224); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==NOT) { + _alt = getInterpreter().adaptivePredict(_input,5,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { { - setState(223); - match(NOT); - } - } - - setState(226); - ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(227); - ((RegexBooleanExpressionContext)_localctx).pattern = string(); - } - break; - case 2: - enterOuterAlt(_localctx, 2); - { - setState(229); - valueExpression(); - setState(231); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==NOT) { { - setState(230); - match(NOT); + setState(202); + match(COMMA); + setState(203); + indexPattern(); } + } } - - setState(233); - ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(234); - ((RegexBooleanExpressionContext)_localctx).pattern = string(); + setState(208); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,5,_ctx); + } + setState(210); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + case 1: + { + setState(209); + metadata(); } break; } + } } catch (RecognitionException re) { _localctx.exception = re; @@ -1184,66 +1051,54 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog } @SuppressWarnings("CheckReturnValue") - public static class MatchBooleanExpressionContext extends ParserRuleContext { - public QualifiedNameContext fieldExp; - public DataTypeContext fieldType; - public ConstantContext matchQuery; - public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); - } - public ConstantContext constant() { - return getRuleContext(ConstantContext.class,0); + public static class IndexPatternContext extends ParserRuleContext { + public IndexStringContext indexString() { + return getRuleContext(IndexStringContext.class,0); } - public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } - public DataTypeContext dataType() { - return getRuleContext(DataTypeContext.class,0); + public ClusterStringContext clusterString() { + return getRuleContext(ClusterStringContext.class,0); } + public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } @SuppressWarnings("this-escape") - public MatchBooleanExpressionContext(ParserRuleContext parent, int invokingState) { + public IndexPatternContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_matchBooleanExpression; } + @Override public int getRuleIndex() { return RULE_indexPattern; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMatchBooleanExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIndexPattern(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMatchBooleanExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIndexPattern(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMatchBooleanExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIndexPattern(this); else return visitor.visitChildren(this); } } - public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { - MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 14, RULE_matchBooleanExpression); - int _la; + public final IndexPatternContext indexPattern() throws RecognitionException { + IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_indexPattern); try { enterOuterAlt(_localctx, 1); { - setState(238); - ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(241); + setState(215); _errHandler.sync(this); - _la = _input.LA(1); - if (_la==CAST_OP) { + switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { + case 1: { - setState(239); - match(CAST_OP); - setState(240); - ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); + setState(212); + clusterString(); + setState(213); + match(COLON); } + break; } - - setState(243); - match(COLON); - setState(244); - ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); + setState(217); + indexString(); } } catch (RecognitionException re) { @@ -1258,97 +1113,100 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog } @SuppressWarnings("CheckReturnValue") - public static class ValueExpressionContext extends ParserRuleContext { + public static class ClusterStringContext extends ParserRuleContext { + public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } + public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } @SuppressWarnings("this-escape") - public ValueExpressionContext(ParserRuleContext parent, int invokingState) { + public ClusterStringContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_valueExpression; } - - @SuppressWarnings("this-escape") - public ValueExpressionContext() { } - public void copyFrom(ValueExpressionContext ctx) { - super.copyFrom(ctx); - } - } - @SuppressWarnings("CheckReturnValue") - public static class ValueExpressionDefaultContext extends ValueExpressionContext { - public OperatorExpressionContext operatorExpression() { - return getRuleContext(OperatorExpressionContext.class,0); - } - @SuppressWarnings("this-escape") - public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterValueExpressionDefault(this); + @Override public int getRuleIndex() { return RULE_clusterString; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterClusterString(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitValueExpressionDefault(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitClusterString(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitValueExpressionDefault(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitClusterString(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class ComparisonContext extends ValueExpressionContext { - public OperatorExpressionContext left; - public OperatorExpressionContext right; - public ComparisonOperatorContext comparisonOperator() { - return getRuleContext(ComparisonOperatorContext.class,0); + + public final ClusterStringContext clusterString() throws RecognitionException { + ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState()); + enterRule(_localctx, 22, RULE_clusterString); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(219); + _la = _input.LA(1); + if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } } - public List operatorExpression() { - return getRuleContexts(OperatorExpressionContext.class); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - public OperatorExpressionContext operatorExpression(int i) { - return getRuleContext(OperatorExpressionContext.class,i); + finally { + exitRule(); } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class IndexStringContext extends ParserRuleContext { + public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } + public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } @SuppressWarnings("this-escape") - public ComparisonContext(ValueExpressionContext ctx) { copyFrom(ctx); } + public IndexStringContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_indexString; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterComparison(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIndexString(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitComparison(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIndexString(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitComparison(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIndexString(this); else return visitor.visitChildren(this); } } - public final ValueExpressionContext valueExpression() throws RecognitionException { - ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); - enterRule(_localctx, 16, RULE_valueExpression); + public final IndexStringContext indexString() throws RecognitionException { + IndexStringContext _localctx = new IndexStringContext(_ctx, getState()); + enterRule(_localctx, 24, RULE_indexString); + int _la; try { - setState(251); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { - case 1: - _localctx = new ValueExpressionDefaultContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(246); - operatorExpression(0); - } - break; - case 2: - _localctx = new ComparisonContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(247); - ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(248); - comparisonOperator(); - setState(249); - ((ComparisonContext)_localctx).right = operatorExpression(0); - } - break; + enterOuterAlt(_localctx, 1); + { + setState(221); + _la = _input.LA(1); + if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } } catch (RecognitionException re) { @@ -1363,209 +1221,170 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio } @SuppressWarnings("CheckReturnValue") - public static class OperatorExpressionContext extends ParserRuleContext { - @SuppressWarnings("this-escape") - public OperatorExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_operatorExpression; } - - @SuppressWarnings("this-escape") - public OperatorExpressionContext() { } - public void copyFrom(OperatorExpressionContext ctx) { - super.copyFrom(ctx); + public static class MetadataContext extends ParserRuleContext { + public TerminalNode METADATA() { return getToken(EsqlBaseParser.METADATA, 0); } + public List UNQUOTED_SOURCE() { return getTokens(EsqlBaseParser.UNQUOTED_SOURCE); } + public TerminalNode UNQUOTED_SOURCE(int i) { + return getToken(EsqlBaseParser.UNQUOTED_SOURCE, i); } - } - @SuppressWarnings("CheckReturnValue") - public static class OperatorExpressionDefaultContext extends OperatorExpressionContext { - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public OperatorExpressionDefaultContext(OperatorExpressionContext ctx) { copyFrom(ctx); } + public MetadataContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_metadata; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterOperatorExpressionDefault(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMetadata(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitOperatorExpressionDefault(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMetadata(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitOperatorExpressionDefault(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMetadata(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class ArithmeticBinaryContext extends OperatorExpressionContext { - public OperatorExpressionContext left; - public Token operator; - public OperatorExpressionContext right; - public List operatorExpression() { - return getRuleContexts(OperatorExpressionContext.class); - } - public OperatorExpressionContext operatorExpression(int i) { - return getRuleContext(OperatorExpressionContext.class,i); - } - public TerminalNode ASTERISK() { return getToken(EsqlBaseParser.ASTERISK, 0); } - public TerminalNode SLASH() { return getToken(EsqlBaseParser.SLASH, 0); } - public TerminalNode PERCENT() { return getToken(EsqlBaseParser.PERCENT, 0); } - public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } - @SuppressWarnings("this-escape") - public ArithmeticBinaryContext(OperatorExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterArithmeticBinary(this); + + public final MetadataContext metadata() throws RecognitionException { + MetadataContext _localctx = new MetadataContext(_ctx, getState()); + enterRule(_localctx, 26, RULE_metadata); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(223); + match(METADATA); + setState(224); + match(UNQUOTED_SOURCE); + setState(229); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,8,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(225); + match(COMMA); + setState(226); + match(UNQUOTED_SOURCE); + } + } + } + setState(231); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,8,_ctx); + } + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitArithmeticBinary(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitArithmeticBinary(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class ArithmeticUnaryContext extends OperatorExpressionContext { - public Token operator; - public OperatorExpressionContext operatorExpression() { - return getRuleContext(OperatorExpressionContext.class,0); + public static class MetricsCommandContext extends ParserRuleContext { + public AggFieldsContext aggregates; + public FieldsContext grouping; + public TerminalNode DEV_METRICS() { return getToken(EsqlBaseParser.DEV_METRICS, 0); } + public List indexPattern() { + return getRuleContexts(IndexPatternContext.class); + } + public IndexPatternContext indexPattern(int i) { + return getRuleContext(IndexPatternContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); + } + public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } + public AggFieldsContext aggFields() { + return getRuleContext(AggFieldsContext.class,0); + } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); } - public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } - public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } @SuppressWarnings("this-escape") - public ArithmeticUnaryContext(OperatorExpressionContext ctx) { copyFrom(ctx); } + public MetricsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_metricsCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterArithmeticUnary(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMetricsCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitArithmeticUnary(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMetricsCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitArithmeticUnary(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMetricsCommand(this); else return visitor.visitChildren(this); } } - public final OperatorExpressionContext operatorExpression() throws RecognitionException { - return operatorExpression(0); - } - - private OperatorExpressionContext operatorExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState); - OperatorExpressionContext _prevctx = _localctx; - int _startState = 18; - enterRecursionRule(_localctx, 18, RULE_operatorExpression, _p); - int _la; + public final MetricsCommandContext metricsCommand() throws RecognitionException { + MetricsCommandContext _localctx = new MetricsCommandContext(_ctx, getState()); + enterRule(_localctx, 28, RULE_metricsCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(257); + setState(232); + match(DEV_METRICS); + setState(233); + indexPattern(); + setState(238); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { - case 1: - { - _localctx = new OperatorExpressionDefaultContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(254); - primaryExpression(0); - } - break; - case 2: - { - _localctx = new ArithmeticUnaryContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(255); - ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - ((ArithmeticUnaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(256); - operatorExpression(3); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(267); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + _alt = getInterpreter().adaptivePredict(_input,9,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; { - setState(265); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { - case 1: - { - _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); - ((ArithmeticBinaryContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(259); - if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(260); - ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); - _la = _input.LA(1); - if ( !(((((_la - 66)) & ~0x3f) == 0 && ((1L << (_la - 66)) & 7L) != 0)) ) { - ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(261); - ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); - } - break; - case 2: - { - _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); - ((ArithmeticBinaryContext)_localctx).left = _prevctx; - pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(262); - if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(263); - ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(264); - ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); - } - break; + { + setState(234); + match(COMMA); + setState(235); + indexPattern(); } } } - setState(269); + setState(240); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + _alt = getInterpreter().adaptivePredict(_input,9,_ctx); + } + setState(242); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { + case 1: + { + setState(241); + ((MetricsCommandContext)_localctx).aggregates = aggFields(); + } + break; + } + setState(246); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { + case 1: + { + setState(244); + match(BY); + setState(245); + ((MetricsCommandContext)_localctx).grouping = fields(); + } + break; } } } @@ -1575,221 +1394,193 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.recover(this, re); } finally { - unrollRecursionContexts(_parentctx); + exitRule(); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class PrimaryExpressionContext extends ParserRuleContext { - @SuppressWarnings("this-escape") - public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); + public static class EvalCommandContext extends ParserRuleContext { + public TerminalNode EVAL() { return getToken(EsqlBaseParser.EVAL, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); } - @Override public int getRuleIndex() { return RULE_primaryExpression; } - @SuppressWarnings("this-escape") - public PrimaryExpressionContext() { } - public void copyFrom(PrimaryExpressionContext ctx) { - super.copyFrom(ctx); - } - } - @SuppressWarnings("CheckReturnValue") - public static class DereferenceContext extends PrimaryExpressionContext { - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); + public EvalCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); } - @SuppressWarnings("this-escape") - public DereferenceContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } + @Override public int getRuleIndex() { return RULE_evalCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDereference(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEvalCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDereference(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEvalCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDereference(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEvalCommand(this); else return visitor.visitChildren(this); } } + + public final EvalCommandContext evalCommand() throws RecognitionException { + EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); + enterRule(_localctx, 30, RULE_evalCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(248); + match(EVAL); + setState(249); + fields(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class InlineCastContext extends PrimaryExpressionContext { - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); + public static class StatsCommandContext extends ParserRuleContext { + public AggFieldsContext stats; + public FieldsContext grouping; + public TerminalNode STATS() { return getToken(EsqlBaseParser.STATS, 0); } + public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } + public AggFieldsContext aggFields() { + return getRuleContext(AggFieldsContext.class,0); } - public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } - public DataTypeContext dataType() { - return getRuleContext(DataTypeContext.class,0); + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); } @SuppressWarnings("this-escape") - public InlineCastContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } + public StatsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_statsCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInlineCast(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStatsCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInlineCast(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStatsCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInlineCast(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStatsCommand(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class ConstantDefaultContext extends PrimaryExpressionContext { - public ConstantContext constant() { - return getRuleContext(ConstantContext.class,0); - } - @SuppressWarnings("this-escape") - public ConstantDefaultContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterConstantDefault(this); + + public final StatsCommandContext statsCommand() throws RecognitionException { + StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); + enterRule(_localctx, 32, RULE_statsCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(251); + match(STATS); + setState(253); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { + case 1: + { + setState(252); + ((StatsCommandContext)_localctx).stats = aggFields(); + } + break; + } + setState(257); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { + case 1: + { + setState(255); + match(BY); + setState(256); + ((StatsCommandContext)_localctx).grouping = fields(); + } + break; + } + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitConstantDefault(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitConstantDefault(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class ParenthesizedExpressionContext extends PrimaryExpressionContext { - public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); + public static class AggFieldsContext extends ParserRuleContext { + public List aggField() { + return getRuleContexts(AggFieldContext.class); + } + public AggFieldContext aggField(int i) { + return getRuleContext(AggFieldContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } - public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } @SuppressWarnings("this-escape") - public ParenthesizedExpressionContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } + public AggFieldsContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_aggFields; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterParenthesizedExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterAggFields(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitParenthesizedExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitAggFields(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitParenthesizedExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitAggFields(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class FunctionContext extends PrimaryExpressionContext { - public FunctionExpressionContext functionExpression() { - return getRuleContext(FunctionExpressionContext.class,0); - } - @SuppressWarnings("this-escape") - public FunctionContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunction(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunction(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunction(this); - else return visitor.visitChildren(this); - } - } - - public final PrimaryExpressionContext primaryExpression() throws RecognitionException { - return primaryExpression(0); - } - private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState); - PrimaryExpressionContext _prevctx = _localctx; - int _startState = 20; - enterRecursionRule(_localctx, 20, RULE_primaryExpression, _p); + public final AggFieldsContext aggFields() throws RecognitionException { + AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState()); + enterRule(_localctx, 34, RULE_aggFields); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(278); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { - case 1: - { - _localctx = new ConstantDefaultContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(271); - constant(); - } - break; - case 2: - { - _localctx = new DereferenceContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(272); - qualifiedName(); - } - break; - case 3: - { - _localctx = new FunctionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(273); - functionExpression(); - } - break; - case 4: - { - _localctx = new ParenthesizedExpressionContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(274); - match(LP); - setState(275); - booleanExpression(0); - setState(276); - match(RP); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(285); + setState(259); + aggField(); + setState(264); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + _alt = getInterpreter().adaptivePredict(_input,14,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; { { - _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(280); - if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(281); - match(CAST_OP); - setState(282); - dataType(); + setState(260); + match(COMMA); + setState(261); + aggField(); } } } - setState(287); + setState(266); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + _alt = getInterpreter().adaptivePredict(_input,14,_ctx); } } } @@ -1799,132 +1590,60 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _errHandler.recover(this, re); } finally { - unrollRecursionContexts(_parentctx); + exitRule(); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class FunctionExpressionContext extends ParserRuleContext { - public FunctionNameContext functionName() { - return getRuleContext(FunctionNameContext.class,0); - } - public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } - public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } - public TerminalNode ASTERISK() { return getToken(EsqlBaseParser.ASTERISK, 0); } - public List booleanExpression() { - return getRuleContexts(BooleanExpressionContext.class); - } - public BooleanExpressionContext booleanExpression(int i) { - return getRuleContext(BooleanExpressionContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public static class AggFieldContext extends ParserRuleContext { + public FieldContext field() { + return getRuleContext(FieldContext.class,0); } - public MapExpressionContext mapExpression() { - return getRuleContext(MapExpressionContext.class,0); + public TerminalNode WHERE() { return getToken(EsqlBaseParser.WHERE, 0); } + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); } @SuppressWarnings("this-escape") - public FunctionExpressionContext(ParserRuleContext parent, int invokingState) { + public AggFieldContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_functionExpression; } + @Override public int getRuleIndex() { return RULE_aggField; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunctionExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterAggField(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunctionExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitAggField(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunctionExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitAggField(this); else return visitor.visitChildren(this); } } - public final FunctionExpressionContext functionExpression() throws RecognitionException { - FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState()); - enterRule(_localctx, 22, RULE_functionExpression); - int _la; + public final AggFieldContext aggField() throws RecognitionException { + AggFieldContext _localctx = new AggFieldContext(_ctx, getState()); + enterRule(_localctx, 36, RULE_aggField); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(288); - functionName(); - setState(289); - match(LP); - setState(303); + setState(267); + field(); + setState(270); _errHandler.sync(this); - switch (_input.LA(1)) { - case ASTERISK: - { - setState(290); - match(ASTERISK); - } - break; - case QUOTED_STRING: - case INTEGER_LITERAL: - case DECIMAL_LITERAL: - case FALSE: - case LP: - case NOT: - case NULL: - case PARAM: - case TRUE: - case PLUS: - case MINUS: - case NAMED_OR_POSITIONAL_PARAM: - case OPENING_BRACKET: - case UNQUOTED_IDENTIFIER: - case QUOTED_IDENTIFIER: - { + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + case 1: { - setState(291); + setState(268); + match(WHERE); + setState(269); booleanExpression(0); - setState(296); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,19,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(292); - match(COMMA); - setState(293); - booleanExpression(0); - } - } - } - setState(298); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,19,_ctx); - } - setState(301); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==COMMA) { - { - setState(299); - match(COMMA); - setState(300); - mapExpression(); - } - } - - } } break; - case RP: - break; - default: - break; } - setState(305); - match(RP); } } catch (RecognitionException re) { @@ -1939,38 +1658,64 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } @SuppressWarnings("CheckReturnValue") - public static class FunctionNameContext extends ParserRuleContext { - public IdentifierOrParameterContext identifierOrParameter() { - return getRuleContext(IdentifierOrParameterContext.class,0); + public static class QualifiedNameContext extends ParserRuleContext { + public List identifierOrParameter() { + return getRuleContexts(IdentifierOrParameterContext.class); + } + public IdentifierOrParameterContext identifierOrParameter(int i) { + return getRuleContext(IdentifierOrParameterContext.class,i); + } + public List DOT() { return getTokens(EsqlBaseParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(EsqlBaseParser.DOT, i); } @SuppressWarnings("this-escape") - public FunctionNameContext(ParserRuleContext parent, int invokingState) { + public QualifiedNameContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_functionName; } + @Override public int getRuleIndex() { return RULE_qualifiedName; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunctionName(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedName(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunctionName(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedName(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunctionName(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedName(this); else return visitor.visitChildren(this); } } - public final FunctionNameContext functionName() throws RecognitionException { - FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); - enterRule(_localctx, 24, RULE_functionName); + public final QualifiedNameContext qualifiedName() throws RecognitionException { + QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); + enterRule(_localctx, 38, RULE_qualifiedName); try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(307); + setState(272); identifierOrParameter(); + setState(277); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(273); + match(DOT); + setState(274); + identifierOrParameter(); + } + } + } + setState(279); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + } } } catch (RecognitionException re) { @@ -1985,68 +1730,64 @@ public final FunctionNameContext functionName() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class MapExpressionContext extends ParserRuleContext { - public TerminalNode LEFT_BRACES() { return getToken(EsqlBaseParser.LEFT_BRACES, 0); } - public List entryExpression() { - return getRuleContexts(EntryExpressionContext.class); + public static class QualifiedNamePatternContext extends ParserRuleContext { + public List identifierPattern() { + return getRuleContexts(IdentifierPatternContext.class); } - public EntryExpressionContext entryExpression(int i) { - return getRuleContext(EntryExpressionContext.class,i); + public IdentifierPatternContext identifierPattern(int i) { + return getRuleContext(IdentifierPatternContext.class,i); } - public TerminalNode RIGHT_BRACES() { return getToken(EsqlBaseParser.RIGHT_BRACES, 0); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public List DOT() { return getTokens(EsqlBaseParser.DOT); } + public TerminalNode DOT(int i) { + return getToken(EsqlBaseParser.DOT, i); } @SuppressWarnings("this-escape") - public MapExpressionContext(ParserRuleContext parent, int invokingState) { + public QualifiedNamePatternContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_mapExpression; } + @Override public int getRuleIndex() { return RULE_qualifiedNamePattern; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMapExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedNamePattern(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMapExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedNamePattern(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMapExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedNamePattern(this); else return visitor.visitChildren(this); } } - public final MapExpressionContext mapExpression() throws RecognitionException { - MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState()); - enterRule(_localctx, 26, RULE_mapExpression); - int _la; + public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException { + QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState()); + enterRule(_localctx, 40, RULE_qualifiedNamePattern); try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(309); - match(LEFT_BRACES); - setState(310); - entryExpression(); - setState(315); + setState(280); + identifierPattern(); + setState(285); _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(311); - match(COMMA); - setState(312); - entryExpression(); - } + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(281); + match(DOT); + setState(282); + identifierPattern(); + } + } } - setState(317); + setState(287); _errHandler.sync(this); - _la = _input.LA(1); + _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } - setState(318); - match(RIGHT_BRACES); } } catch (RecognitionException re) { @@ -2061,48 +1802,64 @@ public final MapExpressionContext mapExpression() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class EntryExpressionContext extends ParserRuleContext { - public StringContext key; - public ConstantContext value; - public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } - public StringContext string() { - return getRuleContext(StringContext.class,0); + public static class QualifiedNamePatternsContext extends ParserRuleContext { + public List qualifiedNamePattern() { + return getRuleContexts(QualifiedNamePatternContext.class); } - public ConstantContext constant() { - return getRuleContext(ConstantContext.class,0); + public QualifiedNamePatternContext qualifiedNamePattern(int i) { + return getRuleContext(QualifiedNamePatternContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public EntryExpressionContext(ParserRuleContext parent, int invokingState) { + public QualifiedNamePatternsContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_entryExpression; } + @Override public int getRuleIndex() { return RULE_qualifiedNamePatterns; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEntryExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedNamePatterns(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEntryExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedNamePatterns(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEntryExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedNamePatterns(this); else return visitor.visitChildren(this); } } - public final EntryExpressionContext entryExpression() throws RecognitionException { - EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState()); - enterRule(_localctx, 28, RULE_entryExpression); + public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException { + QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState()); + enterRule(_localctx, 42, RULE_qualifiedNamePatterns); try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(320); - ((EntryExpressionContext)_localctx).key = string(); - setState(321); - match(COLON); - setState(322); - ((EntryExpressionContext)_localctx).value = constant(); + setState(288); + qualifiedNamePattern(); + setState(293); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(289); + match(COMMA); + setState(290); + qualifiedNamePattern(); + } + } + } + setState(295); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,18,_ctx); + } } } catch (RecognitionException re) { @@ -2117,50 +1874,46 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio } @SuppressWarnings("CheckReturnValue") - public static class DataTypeContext extends ParserRuleContext { + public static class IdentifierContext extends ParserRuleContext { + public TerminalNode UNQUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.UNQUOTED_IDENTIFIER, 0); } + public TerminalNode QUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.QUOTED_IDENTIFIER, 0); } @SuppressWarnings("this-escape") - public DataTypeContext(ParserRuleContext parent, int invokingState) { + public IdentifierContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_dataType; } - - @SuppressWarnings("this-escape") - public DataTypeContext() { } - public void copyFrom(DataTypeContext ctx) { - super.copyFrom(ctx); - } - } - @SuppressWarnings("CheckReturnValue") - public static class ToDataTypeContext extends DataTypeContext { - public IdentifierContext identifier() { - return getRuleContext(IdentifierContext.class,0); - } - @SuppressWarnings("this-escape") - public ToDataTypeContext(DataTypeContext ctx) { copyFrom(ctx); } + @Override public int getRuleIndex() { return RULE_identifier; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterToDataType(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifier(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitToDataType(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifier(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitToDataType(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifier(this); else return visitor.visitChildren(this); } } - public final DataTypeContext dataType() throws RecognitionException { - DataTypeContext _localctx = new DataTypeContext(_ctx, getState()); - enterRule(_localctx, 30, RULE_dataType); + public final IdentifierContext identifier() throws RecognitionException { + IdentifierContext _localctx = new IdentifierContext(_ctx, getState()); + enterRule(_localctx, 44, RULE_identifier); + int _la; try { - _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(324); - identifier(); + setState(296); + _la = _input.LA(1); + if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } } catch (RecognitionException re) { @@ -2175,41 +1928,55 @@ public final DataTypeContext dataType() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class RowCommandContext extends ParserRuleContext { - public TerminalNode ROW() { return getToken(EsqlBaseParser.ROW, 0); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); + public static class IdentifierPatternContext extends ParserRuleContext { + public TerminalNode ID_PATTERN() { return getToken(EsqlBaseParser.ID_PATTERN, 0); } + public ParameterContext parameter() { + return getRuleContext(ParameterContext.class,0); } @SuppressWarnings("this-escape") - public RowCommandContext(ParserRuleContext parent, int invokingState) { + public IdentifierPatternContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_rowCommand; } + @Override public int getRuleIndex() { return RULE_identifierPattern; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRowCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifierPattern(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRowCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifierPattern(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRowCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifierPattern(this); else return visitor.visitChildren(this); } } - public final RowCommandContext rowCommand() throws RecognitionException { - RowCommandContext _localctx = new RowCommandContext(_ctx, getState()); - enterRule(_localctx, 32, RULE_rowCommand); + public final IdentifierPatternContext identifierPattern() throws RecognitionException { + IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); + enterRule(_localctx, 46, RULE_identifierPattern); try { - enterOuterAlt(_localctx, 1); - { - setState(326); - match(ROW); - setState(327); - fields(); + setState(300); + _errHandler.sync(this); + switch (_input.LA(1)) { + case ID_PATTERN: + enterOuterAlt(_localctx, 1); + { + setState(298); + match(ID_PATTERN); + } + break; + case PARAM: + case NAMED_OR_POSITIONAL_PARAM: + enterOuterAlt(_localctx, 2); + { + setState(299); + parameter(); + } + break; + default: + throw new NoViableAltException(this); } } catch (RecognitionException re) { @@ -2224,64 +1991,83 @@ public final RowCommandContext rowCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class FieldsContext extends ParserRuleContext { - public List field() { - return getRuleContexts(FieldContext.class); - } - public FieldContext field(int i) { - return getRuleContext(FieldContext.class,i); + public static class ParameterContext extends ParserRuleContext { + @SuppressWarnings("this-escape") + public ParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + @Override public int getRuleIndex() { return RULE_parameter; } + + @SuppressWarnings("this-escape") + public ParameterContext() { } + public void copyFrom(ParameterContext ctx) { + super.copyFrom(ctx); } + } + @SuppressWarnings("CheckReturnValue") + public static class InputNamedOrPositionalParamContext extends ParameterContext { + public TerminalNode NAMED_OR_POSITIONAL_PARAM() { return getToken(EsqlBaseParser.NAMED_OR_POSITIONAL_PARAM, 0); } @SuppressWarnings("this-escape") - public FieldsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); + public InputNamedOrPositionalParamContext(ParameterContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputNamedOrPositionalParam(this); } - @Override public int getRuleIndex() { return RULE_fields; } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputNamedOrPositionalParam(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputNamedOrPositionalParam(this); + else return visitor.visitChildren(this); + } + } + @SuppressWarnings("CheckReturnValue") + public static class InputParamContext extends ParameterContext { + public TerminalNode PARAM() { return getToken(EsqlBaseParser.PARAM, 0); } + @SuppressWarnings("this-escape") + public InputParamContext(ParameterContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFields(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputParam(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFields(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputParam(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFields(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputParam(this); else return visitor.visitChildren(this); } } - public final FieldsContext fields() throws RecognitionException { - FieldsContext _localctx = new FieldsContext(_ctx, getState()); - enterRule(_localctx, 34, RULE_fields); + public final ParameterContext parameter() throws RecognitionException { + ParameterContext _localctx = new ParameterContext(_ctx, getState()); + enterRule(_localctx, 48, RULE_parameter); try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(329); - field(); - setState(334); + setState(304); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(330); - match(COMMA); - setState(331); - field(); - } - } + switch (_input.LA(1)) { + case PARAM: + _localctx = new InputParamContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(302); + match(PARAM); } - setState(336); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); - } + break; + case NAMED_OR_POSITIONAL_PARAM: + _localctx = new InputNamedOrPositionalParamContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(303); + match(NAMED_OR_POSITIONAL_PARAM); + } + break; + default: + throw new NoViableAltException(this); } } catch (RecognitionException re) { @@ -2296,54 +2082,105 @@ public final FieldsContext fields() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class FieldContext extends ParserRuleContext { - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); + public static class IdentifierOrParameterContext extends ParserRuleContext { + public IdentifierContext identifier() { + return getRuleContext(IdentifierContext.class,0); } - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); + public ParameterContext parameter() { + return getRuleContext(ParameterContext.class,0); } - public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } @SuppressWarnings("this-escape") - public FieldContext(ParserRuleContext parent, int invokingState) { + public IdentifierOrParameterContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_field; } + @Override public int getRuleIndex() { return RULE_identifierOrParameter; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterField(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifierOrParameter(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitField(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifierOrParameter(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitField(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifierOrParameter(this); else return visitor.visitChildren(this); } } - public final FieldContext field() throws RecognitionException { - FieldContext _localctx = new FieldContext(_ctx, getState()); - enterRule(_localctx, 36, RULE_field); + public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException { + IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); + enterRule(_localctx, 50, RULE_identifierOrParameter); try { - enterOuterAlt(_localctx, 1); - { - setState(340); + setState(308); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { - case 1: + switch (_input.LA(1)) { + case UNQUOTED_IDENTIFIER: + case QUOTED_IDENTIFIER: + enterOuterAlt(_localctx, 1); { - setState(337); - qualifiedName(); - setState(338); - match(ASSIGN); + setState(306); + identifier(); + } + break; + case PARAM: + case NAMED_OR_POSITIONAL_PARAM: + enterOuterAlt(_localctx, 2); + { + setState(307); + parameter(); } break; + default: + throw new NoViableAltException(this); } - setState(342); - booleanExpression(0); + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class LimitCommandContext extends ParserRuleContext { + public TerminalNode LIMIT() { return getToken(EsqlBaseParser.LIMIT, 0); } + public TerminalNode INTEGER_LITERAL() { return getToken(EsqlBaseParser.INTEGER_LITERAL, 0); } + @SuppressWarnings("this-escape") + public LimitCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_limitCommand; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLimitCommand(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLimitCommand(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLimitCommand(this); + else return visitor.visitChildren(this); + } + } + + public final LimitCommandContext limitCommand() throws RecognitionException { + LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); + enterRule(_localctx, 52, RULE_limitCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(310); + match(LIMIT); + setState(311); + match(INTEGER_LITERAL); } } catch (RecognitionException re) { @@ -2358,79 +2195,66 @@ public final FieldContext field() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class FromCommandContext extends ParserRuleContext { - public TerminalNode FROM() { return getToken(EsqlBaseParser.FROM, 0); } - public List indexPattern() { - return getRuleContexts(IndexPatternContext.class); + public static class SortCommandContext extends ParserRuleContext { + public TerminalNode SORT() { return getToken(EsqlBaseParser.SORT, 0); } + public List orderExpression() { + return getRuleContexts(OrderExpressionContext.class); } - public IndexPatternContext indexPattern(int i) { - return getRuleContext(IndexPatternContext.class,i); + public OrderExpressionContext orderExpression(int i) { + return getRuleContext(OrderExpressionContext.class,i); } public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } public TerminalNode COMMA(int i) { return getToken(EsqlBaseParser.COMMA, i); } - public MetadataContext metadata() { - return getRuleContext(MetadataContext.class,0); - } @SuppressWarnings("this-escape") - public FromCommandContext(ParserRuleContext parent, int invokingState) { + public SortCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_fromCommand; } + @Override public int getRuleIndex() { return RULE_sortCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFromCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSortCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFromCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSortCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFromCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitSortCommand(this); else return visitor.visitChildren(this); } } - public final FromCommandContext fromCommand() throws RecognitionException { - FromCommandContext _localctx = new FromCommandContext(_ctx, getState()); - enterRule(_localctx, 38, RULE_fromCommand); + public final SortCommandContext sortCommand() throws RecognitionException { + SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); + enterRule(_localctx, 54, RULE_sortCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(344); - match(FROM); - setState(345); - indexPattern(); - setState(350); + setState(313); + match(SORT); + setState(314); + orderExpression(); + setState(319); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(346); + setState(315); match(COMMA); - setState(347); - indexPattern(); + setState(316); + orderExpression(); } } } - setState(352); + setState(321); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); - } - setState(354); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { - case 1: - { - setState(353); - metadata(); - } - break; + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); } } } @@ -2446,54 +2270,86 @@ public final FromCommandContext fromCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class IndexPatternContext extends ParserRuleContext { - public IndexStringContext indexString() { - return getRuleContext(IndexStringContext.class,0); - } - public ClusterStringContext clusterString() { - return getRuleContext(ClusterStringContext.class,0); + public static class OrderExpressionContext extends ParserRuleContext { + public Token ordering; + public Token nullOrdering; + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); } - public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } + public TerminalNode NULLS() { return getToken(EsqlBaseParser.NULLS, 0); } + public TerminalNode ASC() { return getToken(EsqlBaseParser.ASC, 0); } + public TerminalNode DESC() { return getToken(EsqlBaseParser.DESC, 0); } + public TerminalNode FIRST() { return getToken(EsqlBaseParser.FIRST, 0); } + public TerminalNode LAST() { return getToken(EsqlBaseParser.LAST, 0); } @SuppressWarnings("this-escape") - public IndexPatternContext(ParserRuleContext parent, int invokingState) { + public OrderExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_indexPattern; } + @Override public int getRuleIndex() { return RULE_orderExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIndexPattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterOrderExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIndexPattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitOrderExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIndexPattern(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitOrderExpression(this); else return visitor.visitChildren(this); } } - public final IndexPatternContext indexPattern() throws RecognitionException { - IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); - enterRule(_localctx, 40, RULE_indexPattern); + public final OrderExpressionContext orderExpression() throws RecognitionException { + OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); + enterRule(_localctx, 56, RULE_orderExpression); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(359); + setState(322); + booleanExpression(0); + setState(324); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: { - setState(356); - clusterString(); - setState(357); - match(COLON); + setState(323); + ((OrderExpressionContext)_localctx).ordering = _input.LT(1); + _la = _input.LA(1); + if ( !(_la==ASC || _la==DESC) ) { + ((OrderExpressionContext)_localctx).ordering = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + break; + } + setState(328); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { + case 1: + { + setState(326); + match(NULLS); + setState(327); + ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); + _la = _input.LA(1); + if ( !(_la==FIRST || _la==LAST) ) { + ((OrderExpressionContext)_localctx).nullOrdering = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } break; } - setState(361); - indexString(); } } catch (RecognitionException re) { @@ -2508,46 +2364,41 @@ public final IndexPatternContext indexPattern() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class ClusterStringContext extends ParserRuleContext { - public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } - public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } + public static class KeepCommandContext extends ParserRuleContext { + public TerminalNode KEEP() { return getToken(EsqlBaseParser.KEEP, 0); } + public QualifiedNamePatternsContext qualifiedNamePatterns() { + return getRuleContext(QualifiedNamePatternsContext.class,0); + } @SuppressWarnings("this-escape") - public ClusterStringContext(ParserRuleContext parent, int invokingState) { + public KeepCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_clusterString; } + @Override public int getRuleIndex() { return RULE_keepCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterClusterString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterKeepCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitClusterString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitKeepCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitClusterString(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitKeepCommand(this); else return visitor.visitChildren(this); } } - public final ClusterStringContext clusterString() throws RecognitionException { - ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState()); - enterRule(_localctx, 42, RULE_clusterString); - int _la; + public final KeepCommandContext keepCommand() throws RecognitionException { + KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); + enterRule(_localctx, 58, RULE_keepCommand); try { enterOuterAlt(_localctx, 1); { - setState(363); - _la = _input.LA(1); - if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } + setState(330); + match(KEEP); + setState(331); + qualifiedNamePatterns(); } } catch (RecognitionException re) { @@ -2562,46 +2413,41 @@ public final ClusterStringContext clusterString() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class IndexStringContext extends ParserRuleContext { - public TerminalNode UNQUOTED_SOURCE() { return getToken(EsqlBaseParser.UNQUOTED_SOURCE, 0); } - public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } + public static class DropCommandContext extends ParserRuleContext { + public TerminalNode DROP() { return getToken(EsqlBaseParser.DROP, 0); } + public QualifiedNamePatternsContext qualifiedNamePatterns() { + return getRuleContext(QualifiedNamePatternsContext.class,0); + } @SuppressWarnings("this-escape") - public IndexStringContext(ParserRuleContext parent, int invokingState) { + public DropCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_indexString; } + @Override public int getRuleIndex() { return RULE_dropCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIndexString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDropCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIndexString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDropCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIndexString(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDropCommand(this); else return visitor.visitChildren(this); } } - public final IndexStringContext indexString() throws RecognitionException { - IndexStringContext _localctx = new IndexStringContext(_ctx, getState()); - enterRule(_localctx, 44, RULE_indexString); - int _la; + public final DropCommandContext dropCommand() throws RecognitionException { + DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); + enterRule(_localctx, 60, RULE_dropCommand); try { enterOuterAlt(_localctx, 1); { - setState(365); - _la = _input.LA(1); - if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } + setState(333); + match(DROP); + setState(334); + qualifiedNamePatterns(); } } catch (RecognitionException re) { @@ -2616,64 +2462,66 @@ public final IndexStringContext indexString() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class MetadataContext extends ParserRuleContext { - public TerminalNode METADATA() { return getToken(EsqlBaseParser.METADATA, 0); } - public List UNQUOTED_SOURCE() { return getTokens(EsqlBaseParser.UNQUOTED_SOURCE); } - public TerminalNode UNQUOTED_SOURCE(int i) { - return getToken(EsqlBaseParser.UNQUOTED_SOURCE, i); + public static class RenameCommandContext extends ParserRuleContext { + public TerminalNode RENAME() { return getToken(EsqlBaseParser.RENAME, 0); } + public List renameClause() { + return getRuleContexts(RenameClauseContext.class); + } + public RenameClauseContext renameClause(int i) { + return getRuleContext(RenameClauseContext.class,i); } public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } public TerminalNode COMMA(int i) { return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public MetadataContext(ParserRuleContext parent, int invokingState) { + public RenameCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_metadata; } + @Override public int getRuleIndex() { return RULE_renameCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMetadata(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRenameCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMetadata(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRenameCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMetadata(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRenameCommand(this); else return visitor.visitChildren(this); } } - public final MetadataContext metadata() throws RecognitionException { - MetadataContext _localctx = new MetadataContext(_ctx, getState()); - enterRule(_localctx, 46, RULE_metadata); + public final RenameCommandContext renameCommand() throws RecognitionException { + RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); + enterRule(_localctx, 62, RULE_renameCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(367); - match(METADATA); - setState(368); - match(UNQUOTED_SOURCE); - setState(373); + setState(336); + match(RENAME); + setState(337); + renameClause(); + setState(342); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,25,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(369); + setState(338); match(COMMA); - setState(370); - match(UNQUOTED_SOURCE); + setState(339); + renameClause(); } } } - setState(375); + setState(344); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } } } @@ -2689,98 +2537,48 @@ public final MetadataContext metadata() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class MetricsCommandContext extends ParserRuleContext { - public AggFieldsContext aggregates; - public FieldsContext grouping; - public TerminalNode DEV_METRICS() { return getToken(EsqlBaseParser.DEV_METRICS, 0); } - public List indexPattern() { - return getRuleContexts(IndexPatternContext.class); - } - public IndexPatternContext indexPattern(int i) { - return getRuleContext(IndexPatternContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); - } - public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } - public AggFieldsContext aggFields() { - return getRuleContext(AggFieldsContext.class,0); + public static class RenameClauseContext extends ParserRuleContext { + public QualifiedNamePatternContext oldName; + public QualifiedNamePatternContext newName; + public TerminalNode AS() { return getToken(EsqlBaseParser.AS, 0); } + public List qualifiedNamePattern() { + return getRuleContexts(QualifiedNamePatternContext.class); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); + public QualifiedNamePatternContext qualifiedNamePattern(int i) { + return getRuleContext(QualifiedNamePatternContext.class,i); } @SuppressWarnings("this-escape") - public MetricsCommandContext(ParserRuleContext parent, int invokingState) { + public RenameClauseContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_metricsCommand; } + @Override public int getRuleIndex() { return RULE_renameClause; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMetricsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRenameClause(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMetricsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRenameClause(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMetricsCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRenameClause(this); else return visitor.visitChildren(this); } } - public final MetricsCommandContext metricsCommand() throws RecognitionException { - MetricsCommandContext _localctx = new MetricsCommandContext(_ctx, getState()); - enterRule(_localctx, 48, RULE_metricsCommand); + public final RenameClauseContext renameClause() throws RecognitionException { + RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); + enterRule(_localctx, 64, RULE_renameClause); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(376); - match(DEV_METRICS); - setState(377); - indexPattern(); - setState(382); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(378); - match(COMMA); - setState(379); - indexPattern(); - } - } - } - setState(384); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); - } - setState(386); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { - case 1: - { - setState(385); - ((MetricsCommandContext)_localctx).aggregates = aggFields(); - } - break; - } - setState(390); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { - case 1: - { - setState(388); - match(BY); - setState(389); - ((MetricsCommandContext)_localctx).grouping = fields(); - } - break; - } + setState(345); + ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); + setState(346); + match(AS); + setState(347); + ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } } catch (RecognitionException re) { @@ -2795,41 +2593,59 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException } @SuppressWarnings("CheckReturnValue") - public static class EvalCommandContext extends ParserRuleContext { - public TerminalNode EVAL() { return getToken(EsqlBaseParser.EVAL, 0); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); + public static class DissectCommandContext extends ParserRuleContext { + public TerminalNode DISSECT() { return getToken(EsqlBaseParser.DISSECT, 0); } + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); + } + public StringContext string() { + return getRuleContext(StringContext.class,0); + } + public CommandOptionsContext commandOptions() { + return getRuleContext(CommandOptionsContext.class,0); } @SuppressWarnings("this-escape") - public EvalCommandContext(ParserRuleContext parent, int invokingState) { + public DissectCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_evalCommand; } + @Override public int getRuleIndex() { return RULE_dissectCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEvalCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDissectCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEvalCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDissectCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEvalCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDissectCommand(this); else return visitor.visitChildren(this); } } - public final EvalCommandContext evalCommand() throws RecognitionException { - EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState()); - enterRule(_localctx, 50, RULE_evalCommand); + public final DissectCommandContext dissectCommand() throws RecognitionException { + DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); + enterRule(_localctx, 66, RULE_dissectCommand); try { enterOuterAlt(_localctx, 1); { - setState(392); - match(EVAL); - setState(393); - fields(); + setState(349); + match(DISSECT); + setState(350); + primaryExpression(0); + setState(351); + string(); + setState(353); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + case 1: + { + setState(352); + commandOptions(); + } + break; + } } } catch (RecognitionException re) { @@ -2844,67 +2660,46 @@ public final EvalCommandContext evalCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class StatsCommandContext extends ParserRuleContext { - public AggFieldsContext stats; - public FieldsContext grouping; - public TerminalNode STATS() { return getToken(EsqlBaseParser.STATS, 0); } - public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } - public AggFieldsContext aggFields() { - return getRuleContext(AggFieldsContext.class,0); + public static class GrokCommandContext extends ParserRuleContext { + public TerminalNode GROK() { return getToken(EsqlBaseParser.GROK, 0); } + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); + public StringContext string() { + return getRuleContext(StringContext.class,0); } @SuppressWarnings("this-escape") - public StatsCommandContext(ParserRuleContext parent, int invokingState) { + public GrokCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_statsCommand; } + @Override public int getRuleIndex() { return RULE_grokCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStatsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterGrokCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStatsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitGrokCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStatsCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitGrokCommand(this); else return visitor.visitChildren(this); } } - public final StatsCommandContext statsCommand() throws RecognitionException { - StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState()); - enterRule(_localctx, 52, RULE_statsCommand); + public final GrokCommandContext grokCommand() throws RecognitionException { + GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); + enterRule(_localctx, 68, RULE_grokCommand); try { enterOuterAlt(_localctx, 1); { - setState(395); - match(STATS); - setState(397); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { - case 1: - { - setState(396); - ((StatsCommandContext)_localctx).stats = aggFields(); - } - break; - } - setState(401); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { - case 1: - { - setState(399); - match(BY); - setState(400); - ((StatsCommandContext)_localctx).grouping = fields(); - } - break; - } + setState(355); + match(GROK); + setState(356); + primaryExpression(0); + setState(357); + string(); } } catch (RecognitionException re) { @@ -2919,64 +2714,41 @@ public final StatsCommandContext statsCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class AggFieldsContext extends ParserRuleContext { - public List aggField() { - return getRuleContexts(AggFieldContext.class); - } - public AggFieldContext aggField(int i) { - return getRuleContext(AggFieldContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public static class MvExpandCommandContext extends ParserRuleContext { + public TerminalNode MV_EXPAND() { return getToken(EsqlBaseParser.MV_EXPAND, 0); } + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); } @SuppressWarnings("this-escape") - public AggFieldsContext(ParserRuleContext parent, int invokingState) { + public MvExpandCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_aggFields; } + @Override public int getRuleIndex() { return RULE_mvExpandCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterAggFields(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMvExpandCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitAggFields(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMvExpandCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitAggFields(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMvExpandCommand(this); else return visitor.visitChildren(this); } } - public final AggFieldsContext aggFields() throws RecognitionException { - AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState()); - enterRule(_localctx, 54, RULE_aggFields); + public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { + MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); + enterRule(_localctx, 70, RULE_mvExpandCommand); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(403); - aggField(); - setState(408); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,34,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(404); - match(COMMA); - setState(405); - aggField(); - } - } - } - setState(410); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,34,_ctx); - } + setState(359); + match(MV_EXPAND); + setState(360); + qualifiedName(); } } catch (RecognitionException re) { @@ -2991,53 +2763,63 @@ public final AggFieldsContext aggFields() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class AggFieldContext extends ParserRuleContext { - public FieldContext field() { - return getRuleContext(FieldContext.class,0); + public static class CommandOptionsContext extends ParserRuleContext { + public List commandOption() { + return getRuleContexts(CommandOptionContext.class); } - public TerminalNode WHERE() { return getToken(EsqlBaseParser.WHERE, 0); } - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); + public CommandOptionContext commandOption(int i) { + return getRuleContext(CommandOptionContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public AggFieldContext(ParserRuleContext parent, int invokingState) { + public CommandOptionsContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_aggField; } + @Override public int getRuleIndex() { return RULE_commandOptions; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterAggField(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterCommandOptions(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitAggField(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitCommandOptions(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitAggField(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitCommandOptions(this); else return visitor.visitChildren(this); } } - public final AggFieldContext aggField() throws RecognitionException { - AggFieldContext _localctx = new AggFieldContext(_ctx, getState()); - enterRule(_localctx, 56, RULE_aggField); + public final CommandOptionsContext commandOptions() throws RecognitionException { + CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); + enterRule(_localctx, 72, RULE_commandOptions); try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(411); - field(); - setState(414); + setState(362); + commandOption(); + setState(367); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { - case 1: - { - setState(412); - match(WHERE); - setState(413); - booleanExpression(0); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(363); + match(COMMA); + setState(364); + commandOption(); + } + } } - break; + setState(369); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } } } @@ -3053,64 +2835,46 @@ public final AggFieldContext aggField() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class QualifiedNameContext extends ParserRuleContext { - public List identifierOrParameter() { - return getRuleContexts(IdentifierOrParameterContext.class); - } - public IdentifierOrParameterContext identifierOrParameter(int i) { - return getRuleContext(IdentifierOrParameterContext.class,i); + public static class CommandOptionContext extends ParserRuleContext { + public IdentifierContext identifier() { + return getRuleContext(IdentifierContext.class,0); } - public List DOT() { return getTokens(EsqlBaseParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(EsqlBaseParser.DOT, i); + public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); } @SuppressWarnings("this-escape") - public QualifiedNameContext(ParserRuleContext parent, int invokingState) { + public CommandOptionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_qualifiedName; } + @Override public int getRuleIndex() { return RULE_commandOption; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedName(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterCommandOption(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedName(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitCommandOption(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedName(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitCommandOption(this); else return visitor.visitChildren(this); } } - public final QualifiedNameContext qualifiedName() throws RecognitionException { - QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_qualifiedName); + public final CommandOptionContext commandOption() throws RecognitionException { + CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); + enterRule(_localctx, 74, RULE_commandOption); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(416); - identifierOrParameter(); - setState(421); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(417); - match(DOT); - setState(418); - identifierOrParameter(); - } - } - } - setState(423); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); - } + setState(370); + identifier(); + setState(371); + match(ASSIGN); + setState(372); + constant(); } } catch (RecognitionException re) { @@ -3125,64 +2889,41 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class QualifiedNamePatternContext extends ParserRuleContext { - public List identifierPattern() { - return getRuleContexts(IdentifierPatternContext.class); - } - public IdentifierPatternContext identifierPattern(int i) { - return getRuleContext(IdentifierPatternContext.class,i); - } - public List DOT() { return getTokens(EsqlBaseParser.DOT); } - public TerminalNode DOT(int i) { - return getToken(EsqlBaseParser.DOT, i); + public static class ExplainCommandContext extends ParserRuleContext { + public TerminalNode EXPLAIN() { return getToken(EsqlBaseParser.EXPLAIN, 0); } + public SubqueryExpressionContext subqueryExpression() { + return getRuleContext(SubqueryExpressionContext.class,0); } @SuppressWarnings("this-escape") - public QualifiedNamePatternContext(ParserRuleContext parent, int invokingState) { + public ExplainCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_qualifiedNamePattern; } + @Override public int getRuleIndex() { return RULE_explainCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedNamePattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterExplainCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedNamePattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitExplainCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedNamePattern(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitExplainCommand(this); else return visitor.visitChildren(this); } } - public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException { - QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_qualifiedNamePattern); + public final ExplainCommandContext explainCommand() throws RecognitionException { + ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); + enterRule(_localctx, 76, RULE_explainCommand); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(424); - identifierPattern(); - setState(429); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(425); - match(DOT); - setState(426); - identifierPattern(); - } - } - } - setState(431); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); - } + setState(374); + match(EXPLAIN); + setState(375); + subqueryExpression(); } } catch (RecognitionException re) { @@ -3197,64 +2938,44 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti } @SuppressWarnings("CheckReturnValue") - public static class QualifiedNamePatternsContext extends ParserRuleContext { - public List qualifiedNamePattern() { - return getRuleContexts(QualifiedNamePatternContext.class); - } - public QualifiedNamePatternContext qualifiedNamePattern(int i) { - return getRuleContext(QualifiedNamePatternContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public static class SubqueryExpressionContext extends ParserRuleContext { + public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } + public QueryContext query() { + return getRuleContext(QueryContext.class,0); } + public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } @SuppressWarnings("this-escape") - public QualifiedNamePatternsContext(ParserRuleContext parent, int invokingState) { + public SubqueryExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_qualifiedNamePatterns; } + @Override public int getRuleIndex() { return RULE_subqueryExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedNamePatterns(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSubqueryExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedNamePatterns(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSubqueryExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedNamePatterns(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitSubqueryExpression(this); else return visitor.visitChildren(this); } } - public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException { - QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_qualifiedNamePatterns); + public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { + SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); + enterRule(_localctx, 78, RULE_subqueryExpression); try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(432); - qualifiedNamePattern(); - setState(437); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,38,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(433); - match(COMMA); - setState(434); - qualifiedNamePattern(); - } - } - } - setState(439); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,38,_ctx); - } + setState(377); + match(OPENING_BRACKET); + setState(378); + query(0); + setState(379); + match(CLOSING_BRACKET); } } catch (RecognitionException re) { @@ -3269,46 +2990,51 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni } @SuppressWarnings("CheckReturnValue") - public static class IdentifierContext extends ParserRuleContext { - public TerminalNode UNQUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.UNQUOTED_IDENTIFIER, 0); } - public TerminalNode QUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.QUOTED_IDENTIFIER, 0); } + public static class ShowCommandContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public IdentifierContext(ParserRuleContext parent, int invokingState) { + public ShowCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_identifier; } + @Override public int getRuleIndex() { return RULE_showCommand; } + + @SuppressWarnings("this-escape") + public ShowCommandContext() { } + public void copyFrom(ShowCommandContext ctx) { + super.copyFrom(ctx); + } + } + @SuppressWarnings("CheckReturnValue") + public static class ShowInfoContext extends ShowCommandContext { + public TerminalNode SHOW() { return getToken(EsqlBaseParser.SHOW, 0); } + public TerminalNode INFO() { return getToken(EsqlBaseParser.INFO, 0); } + @SuppressWarnings("this-escape") + public ShowInfoContext(ShowCommandContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifier(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterShowInfo(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifier(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitShowInfo(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifier(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitShowInfo(this); else return visitor.visitChildren(this); } } - public final IdentifierContext identifier() throws RecognitionException { - IdentifierContext _localctx = new IdentifierContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_identifier); - int _la; + public final ShowCommandContext showCommand() throws RecognitionException { + ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); + enterRule(_localctx, 80, RULE_showCommand); try { + _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(440); - _la = _input.LA(1); - if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } + setState(381); + match(SHOW); + setState(382); + match(INFO); } } catch (RecognitionException re) { @@ -3323,55 +3049,99 @@ public final IdentifierContext identifier() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class IdentifierPatternContext extends ParserRuleContext { - public TerminalNode ID_PATTERN() { return getToken(EsqlBaseParser.ID_PATTERN, 0); } - public ParameterContext parameter() { - return getRuleContext(ParameterContext.class,0); + public static class EnrichCommandContext extends ParserRuleContext { + public Token policyName; + public QualifiedNamePatternContext matchField; + public TerminalNode ENRICH() { return getToken(EsqlBaseParser.ENRICH, 0); } + public TerminalNode ENRICH_POLICY_NAME() { return getToken(EsqlBaseParser.ENRICH_POLICY_NAME, 0); } + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } + public List enrichWithClause() { + return getRuleContexts(EnrichWithClauseContext.class); + } + public EnrichWithClauseContext enrichWithClause(int i) { + return getRuleContext(EnrichWithClauseContext.class,i); + } + public QualifiedNamePatternContext qualifiedNamePattern() { + return getRuleContext(QualifiedNamePatternContext.class,0); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public IdentifierPatternContext(ParserRuleContext parent, int invokingState) { + public EnrichCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_identifierPattern; } + @Override public int getRuleIndex() { return RULE_enrichCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifierPattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEnrichCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifierPattern(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEnrichCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifierPattern(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEnrichCommand(this); else return visitor.visitChildren(this); } } - public final IdentifierPatternContext identifierPattern() throws RecognitionException { - IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_identifierPattern); + public final EnrichCommandContext enrichCommand() throws RecognitionException { + EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); + enterRule(_localctx, 82, RULE_enrichCommand); try { - setState(444); + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(384); + match(ENRICH); + setState(385); + ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); + setState(388); _errHandler.sync(this); - switch (_input.LA(1)) { - case ID_PATTERN: - enterOuterAlt(_localctx, 1); + switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { + case 1: { - setState(442); - match(ID_PATTERN); + setState(386); + match(ON); + setState(387); + ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; - case PARAM: - case NAMED_OR_POSITIONAL_PARAM: - enterOuterAlt(_localctx, 2); + } + setState(399); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + case 1: { - setState(443); - parameter(); + setState(390); + match(WITH); + setState(391); + enrichWithClause(); + setState(396); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(392); + match(COMMA); + setState(393); + enrichWithClause(); + } + } + } + setState(398); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + } } break; - default: - throw new NoViableAltException(this); + } } } catch (RecognitionException re) { @@ -3386,406 +3156,469 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce } @SuppressWarnings("CheckReturnValue") - public static class ConstantContext extends ParserRuleContext { - @SuppressWarnings("this-escape") - public ConstantContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_constant; } - - @SuppressWarnings("this-escape") - public ConstantContext() { } - public void copyFrom(ConstantContext ctx) { - super.copyFrom(ctx); - } - } - @SuppressWarnings("CheckReturnValue") - public static class BooleanArrayLiteralContext extends ConstantContext { - public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } - public List booleanValue() { - return getRuleContexts(BooleanValueContext.class); - } - public BooleanValueContext booleanValue(int i) { - return getRuleContext(BooleanValueContext.class,i); + public static class EnrichWithClauseContext extends ParserRuleContext { + public QualifiedNamePatternContext newName; + public QualifiedNamePatternContext enrichField; + public List qualifiedNamePattern() { + return getRuleContexts(QualifiedNamePatternContext.class); } - public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public QualifiedNamePatternContext qualifiedNamePattern(int i) { + return getRuleContext(QualifiedNamePatternContext.class,i); } + public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } @SuppressWarnings("this-escape") - public BooleanArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public EnrichWithClauseContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_enrichWithClause; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEnrichWithClause(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEnrichWithClause(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanArrayLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEnrichWithClause(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class DecimalLiteralContext extends ConstantContext { - public DecimalValueContext decimalValue() { - return getRuleContext(DecimalValueContext.class,0); - } - @SuppressWarnings("this-escape") - public DecimalLiteralContext(ConstantContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDecimalLiteral(this); + + public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { + EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); + enterRule(_localctx, 84, RULE_enrichWithClause); + try { + enterOuterAlt(_localctx, 1); + { + setState(404); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + case 1: + { + setState(401); + ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); + setState(402); + match(ASSIGN); + } + break; + } + setState(406); + ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDecimalLiteral(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDecimalLiteral(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class NullLiteralContext extends ConstantContext { - public TerminalNode NULL() { return getToken(EsqlBaseParser.NULL, 0); } + public static class LookupCommandContext extends ParserRuleContext { + public IndexPatternContext tableName; + public QualifiedNamePatternsContext matchFields; + public TerminalNode DEV_LOOKUP() { return getToken(EsqlBaseParser.DEV_LOOKUP, 0); } + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public IndexPatternContext indexPattern() { + return getRuleContext(IndexPatternContext.class,0); + } + public QualifiedNamePatternsContext qualifiedNamePatterns() { + return getRuleContext(QualifiedNamePatternsContext.class,0); + } @SuppressWarnings("this-escape") - public NullLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public LookupCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_lookupCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNullLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLookupCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNullLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLookupCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNullLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLookupCommand(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class QualifiedIntegerLiteralContext extends ConstantContext { - public IntegerValueContext integerValue() { - return getRuleContext(IntegerValueContext.class,0); - } - public TerminalNode UNQUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.UNQUOTED_IDENTIFIER, 0); } - @SuppressWarnings("this-escape") - public QualifiedIntegerLiteralContext(ConstantContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedIntegerLiteral(this); + + public final LookupCommandContext lookupCommand() throws RecognitionException { + LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); + enterRule(_localctx, 86, RULE_lookupCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(408); + match(DEV_LOOKUP); + setState(409); + ((LookupCommandContext)_localctx).tableName = indexPattern(); + setState(410); + match(ON); + setState(411); + ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); + } } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedIntegerLiteral(this); + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedIntegerLiteral(this); - else return visitor.visitChildren(this); + finally { + exitRule(); } + return _localctx; } + @SuppressWarnings("CheckReturnValue") - public static class StringArrayLiteralContext extends ConstantContext { - public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } - public List string() { - return getRuleContexts(StringContext.class); - } - public StringContext string(int i) { - return getRuleContext(StringContext.class,i); + public static class InlinestatsCommandContext extends ParserRuleContext { + public AggFieldsContext stats; + public FieldsContext grouping; + public TerminalNode DEV_INLINESTATS() { return getToken(EsqlBaseParser.DEV_INLINESTATS, 0); } + public AggFieldsContext aggFields() { + return getRuleContext(AggFieldsContext.class,0); } - public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); } @SuppressWarnings("this-escape") - public StringArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public InlinestatsCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_inlinestatsCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInlinestatsCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInlinestatsCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringArrayLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInlinestatsCommand(this); else return visitor.visitChildren(this); } } - @SuppressWarnings("CheckReturnValue") - public static class InputParameterContext extends ConstantContext { - public ParameterContext parameter() { - return getRuleContext(ParameterContext.class,0); - } - @SuppressWarnings("this-escape") - public InputParameterContext(ConstantContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputParameter(this); - } + + public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { + InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); + enterRule(_localctx, 88, RULE_inlinestatsCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(413); + match(DEV_INLINESTATS); + setState(414); + ((InlinestatsCommandContext)_localctx).stats = aggFields(); + setState(417); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + case 1: + { + setState(415); + match(BY); + setState(416); + ((InlinestatsCommandContext)_localctx).grouping = fields(); + } + break; + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + @SuppressWarnings("CheckReturnValue") + public static class JoinCommandContext extends ParserRuleContext { + public Token type; + public TerminalNode JOIN() { return getToken(EsqlBaseParser.JOIN, 0); } + public JoinTargetContext joinTarget() { + return getRuleContext(JoinTargetContext.class,0); + } + public JoinConditionContext joinCondition() { + return getRuleContext(JoinConditionContext.class,0); + } + public TerminalNode JOIN_LOOKUP() { return getToken(EsqlBaseParser.JOIN_LOOKUP, 0); } + public TerminalNode DEV_JOIN_LEFT() { return getToken(EsqlBaseParser.DEV_JOIN_LEFT, 0); } + public TerminalNode DEV_JOIN_RIGHT() { return getToken(EsqlBaseParser.DEV_JOIN_RIGHT, 0); } + @SuppressWarnings("this-escape") + public JoinCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_joinCommand; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinCommand(this); + } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputParameter(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputParameter(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinCommand(this); else return visitor.visitChildren(this); } } + + public final JoinCommandContext joinCommand() throws RecognitionException { + JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); + enterRule(_localctx, 90, RULE_joinCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(419); + ((JoinCommandContext)_localctx).type = _input.LT(1); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 1703936L) != 0)) ) { + ((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(420); + match(JOIN); + setState(421); + joinTarget(); + setState(422); + joinCondition(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class StringLiteralContext extends ConstantContext { - public StringContext string() { - return getRuleContext(StringContext.class,0); + public static class JoinTargetContext extends ParserRuleContext { + public IndexPatternContext index; + public IndexPatternContext indexPattern() { + return getRuleContext(IndexPatternContext.class,0); } @SuppressWarnings("this-escape") - public StringLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public JoinTargetContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_joinTarget; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinTarget(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinTarget(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinTarget(this); else return visitor.visitChildren(this); } } + + public final JoinTargetContext joinTarget() throws RecognitionException { + JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); + enterRule(_localctx, 92, RULE_joinTarget); + try { + enterOuterAlt(_localctx, 1); + { + setState(424); + ((JoinTargetContext)_localctx).index = indexPattern(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class NumericArrayLiteralContext extends ConstantContext { - public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } - public List numericValue() { - return getRuleContexts(NumericValueContext.class); + public static class JoinConditionContext extends ParserRuleContext { + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public List joinPredicate() { + return getRuleContexts(JoinPredicateContext.class); } - public NumericValueContext numericValue(int i) { - return getRuleContext(NumericValueContext.class,i); + public JoinPredicateContext joinPredicate(int i) { + return getRuleContext(JoinPredicateContext.class,i); } - public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } public TerminalNode COMMA(int i) { return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public NumericArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public JoinConditionContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_joinCondition; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNumericArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinCondition(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNumericArrayLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinCondition(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNumericArrayLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinCondition(this); else return visitor.visitChildren(this); } } + + public final JoinConditionContext joinCondition() throws RecognitionException { + JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); + enterRule(_localctx, 94, RULE_joinCondition); + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(426); + match(ON); + setState(427); + joinPredicate(); + setState(432); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(428); + match(COMMA); + setState(429); + joinPredicate(); + } + } + } + setState(434); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,33,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class IntegerLiteralContext extends ConstantContext { - public IntegerValueContext integerValue() { - return getRuleContext(IntegerValueContext.class,0); + public static class JoinPredicateContext extends ParserRuleContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); } @SuppressWarnings("this-escape") - public IntegerLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public JoinPredicateContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_joinPredicate; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIntegerLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinPredicate(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIntegerLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinPredicate(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIntegerLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinPredicate(this); else return visitor.visitChildren(this); } } + + public final JoinPredicateContext joinPredicate() throws RecognitionException { + JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); + enterRule(_localctx, 96, RULE_joinPredicate); + try { + enterOuterAlt(_localctx, 1); + { + setState(435); + valueExpression(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") - public static class BooleanLiteralContext extends ConstantContext { - public BooleanValueContext booleanValue() { - return getRuleContext(BooleanValueContext.class,0); + public static class InsistCommandContext extends ParserRuleContext { + public TerminalNode DEV_INSIST() { return getToken(EsqlBaseParser.DEV_INSIST, 0); } + public QualifiedNamePatternsContext qualifiedNamePatterns() { + return getRuleContext(QualifiedNamePatternsContext.class,0); } @SuppressWarnings("this-escape") - public BooleanLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + public InsistCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_insistCommand; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInsistCommand(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanLiteral(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInsistCommand(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanLiteral(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInsistCommand(this); else return visitor.visitChildren(this); } } - public final ConstantContext constant() throws RecognitionException { - ConstantContext _localctx = new ConstantContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_constant); - int _la; + public final InsistCommandContext insistCommand() throws RecognitionException { + InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState()); + enterRule(_localctx, 98, RULE_insistCommand); try { - setState(488); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { - case 1: - _localctx = new NullLiteralContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(446); - match(NULL); - } - break; - case 2: - _localctx = new QualifiedIntegerLiteralContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(447); - integerValue(); - setState(448); - match(UNQUOTED_IDENTIFIER); - } - break; - case 3: - _localctx = new DecimalLiteralContext(_localctx); - enterOuterAlt(_localctx, 3); - { - setState(450); - decimalValue(); - } - break; - case 4: - _localctx = new IntegerLiteralContext(_localctx); - enterOuterAlt(_localctx, 4); - { - setState(451); - integerValue(); - } - break; - case 5: - _localctx = new BooleanLiteralContext(_localctx); - enterOuterAlt(_localctx, 5); - { - setState(452); - booleanValue(); - } - break; - case 6: - _localctx = new InputParameterContext(_localctx); - enterOuterAlt(_localctx, 6); - { - setState(453); - parameter(); - } - break; - case 7: - _localctx = new StringLiteralContext(_localctx); - enterOuterAlt(_localctx, 7); - { - setState(454); - string(); - } - break; - case 8: - _localctx = new NumericArrayLiteralContext(_localctx); - enterOuterAlt(_localctx, 8); - { - setState(455); - match(OPENING_BRACKET); - setState(456); - numericValue(); - setState(461); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(457); - match(COMMA); - setState(458); - numericValue(); - } - } - setState(463); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(464); - match(CLOSING_BRACKET); - } - break; - case 9: - _localctx = new BooleanArrayLiteralContext(_localctx); - enterOuterAlt(_localctx, 9); - { - setState(466); - match(OPENING_BRACKET); - setState(467); - booleanValue(); - setState(472); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(468); - match(COMMA); - setState(469); - booleanValue(); - } - } - setState(474); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(475); - match(CLOSING_BRACKET); - } - break; - case 10: - _localctx = new StringArrayLiteralContext(_localctx); - enterOuterAlt(_localctx, 10); - { - setState(477); - match(OPENING_BRACKET); - setState(478); - string(); - setState(483); - _errHandler.sync(this); - _la = _input.LA(1); - while (_la==COMMA) { - { - { - setState(479); - match(COMMA); - setState(480); - string(); - } - } - setState(485); - _errHandler.sync(this); - _la = _input.LA(1); - } - setState(486); - match(CLOSING_BRACKET); - } - break; + enterOuterAlt(_localctx, 1); + { + setState(437); + match(DEV_INSIST); + setState(438); + qualifiedNamePatterns(); } } catch (RecognitionException re) { @@ -3800,270 +3633,359 @@ public final ConstantContext constant() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class ParameterContext extends ParserRuleContext { + public static class BooleanExpressionContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public ParameterContext(ParserRuleContext parent, int invokingState) { + public BooleanExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_parameter; } + @Override public int getRuleIndex() { return RULE_booleanExpression; } @SuppressWarnings("this-escape") - public ParameterContext() { } - public void copyFrom(ParameterContext ctx) { + public BooleanExpressionContext() { } + public void copyFrom(BooleanExpressionContext ctx) { super.copyFrom(ctx); } } @SuppressWarnings("CheckReturnValue") - public static class InputNamedOrPositionalParamContext extends ParameterContext { - public TerminalNode NAMED_OR_POSITIONAL_PARAM() { return getToken(EsqlBaseParser.NAMED_OR_POSITIONAL_PARAM, 0); } + public static class MatchExpressionContext extends BooleanExpressionContext { + public MatchBooleanExpressionContext matchBooleanExpression() { + return getRuleContext(MatchBooleanExpressionContext.class,0); + } @SuppressWarnings("this-escape") - public InputNamedOrPositionalParamContext(ParameterContext ctx) { copyFrom(ctx); } + public MatchExpressionContext(BooleanExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputNamedOrPositionalParam(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMatchExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputNamedOrPositionalParam(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMatchExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputNamedOrPositionalParam(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMatchExpression(this); else return visitor.visitChildren(this); } } @SuppressWarnings("CheckReturnValue") - public static class InputParamContext extends ParameterContext { - public TerminalNode PARAM() { return getToken(EsqlBaseParser.PARAM, 0); } + public static class LogicalNotContext extends BooleanExpressionContext { + public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); + } @SuppressWarnings("this-escape") - public InputParamContext(ParameterContext ctx) { copyFrom(ctx); } + public LogicalNotContext(BooleanExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputParam(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalNot(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputParam(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalNot(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputParam(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalNot(this); else return visitor.visitChildren(this); } } - - public final ParameterContext parameter() throws RecognitionException { - ParameterContext _localctx = new ParameterContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_parameter); - try { - setState(492); - _errHandler.sync(this); - switch (_input.LA(1)) { - case PARAM: - _localctx = new InputParamContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(490); - match(PARAM); - } - break; - case NAMED_OR_POSITIONAL_PARAM: - _localctx = new InputNamedOrPositionalParamContext(_localctx); - enterOuterAlt(_localctx, 2); - { - setState(491); - match(NAMED_OR_POSITIONAL_PARAM); - } - break; - default: - throw new NoViableAltException(this); - } + @SuppressWarnings("CheckReturnValue") + public static class BooleanDefaultContext extends BooleanExpressionContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + @SuppressWarnings("this-escape") + public BooleanDefaultContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanDefault(this); } - finally { - exitRule(); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanDefault(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanDefault(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class IdentifierOrParameterContext extends ParserRuleContext { - public IdentifierContext identifier() { - return getRuleContext(IdentifierContext.class,0); - } - public ParameterContext parameter() { - return getRuleContext(ParameterContext.class,0); + public static class IsNullContext extends BooleanExpressionContext { + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); } + public TerminalNode IS() { return getToken(EsqlBaseParser.IS, 0); } + public TerminalNode NULL() { return getToken(EsqlBaseParser.NULL, 0); } + public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } @SuppressWarnings("this-escape") - public IdentifierOrParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); + public IsNullContext(BooleanExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIsNull(this); } - @Override public int getRuleIndex() { return RULE_identifierOrParameter; } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIsNull(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIsNull(this); + else return visitor.visitChildren(this); + } + } + @SuppressWarnings("CheckReturnValue") + public static class RegexExpressionContext extends BooleanExpressionContext { + public RegexBooleanExpressionContext regexBooleanExpression() { + return getRuleContext(RegexBooleanExpressionContext.class,0); + } + @SuppressWarnings("this-escape") + public RegexExpressionContext(BooleanExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIdentifierOrParameter(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRegexExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIdentifierOrParameter(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRegexExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIdentifierOrParameter(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRegexExpression(this); else return visitor.visitChildren(this); } } - - public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException { - IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_identifierOrParameter); - try { - setState(496); - _errHandler.sync(this); - switch (_input.LA(1)) { - case UNQUOTED_IDENTIFIER: - case QUOTED_IDENTIFIER: - enterOuterAlt(_localctx, 1); - { - setState(494); - identifier(); - } - break; - case PARAM: - case NAMED_OR_POSITIONAL_PARAM: - enterOuterAlt(_localctx, 2); - { - setState(495); - parameter(); - } - break; - default: - throw new NoViableAltException(this); - } + @SuppressWarnings("CheckReturnValue") + public static class LogicalInContext extends BooleanExpressionContext { + public List valueExpression() { + return getRuleContexts(ValueExpressionContext.class); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public ValueExpressionContext valueExpression(int i) { + return getRuleContext(ValueExpressionContext.class,i); } - finally { - exitRule(); + public TerminalNode IN() { return getToken(EsqlBaseParser.IN, 0); } + public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } + public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } + public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class LimitCommandContext extends ParserRuleContext { - public TerminalNode LIMIT() { return getToken(EsqlBaseParser.LIMIT, 0); } - public TerminalNode INTEGER_LITERAL() { return getToken(EsqlBaseParser.INTEGER_LITERAL, 0); } @SuppressWarnings("this-escape") - public LimitCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_limitCommand; } + public LogicalInContext(BooleanExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLimitCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalIn(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLimitCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalIn(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLimitCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalIn(this); else return visitor.visitChildren(this); } } - - public final LimitCommandContext limitCommand() throws RecognitionException { - LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_limitCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(498); - match(LIMIT); - setState(499); - match(INTEGER_LITERAL); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - @SuppressWarnings("CheckReturnValue") - public static class SortCommandContext extends ParserRuleContext { - public TerminalNode SORT() { return getToken(EsqlBaseParser.SORT, 0); } - public List orderExpression() { - return getRuleContexts(OrderExpressionContext.class); - } - public OrderExpressionContext orderExpression(int i) { - return getRuleContext(OrderExpressionContext.class,i); + public static class LogicalBinaryContext extends BooleanExpressionContext { + public BooleanExpressionContext left; + public Token operator; + public BooleanExpressionContext right; + public List booleanExpression() { + return getRuleContexts(BooleanExpressionContext.class); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public BooleanExpressionContext booleanExpression(int i) { + return getRuleContext(BooleanExpressionContext.class,i); } + public TerminalNode AND() { return getToken(EsqlBaseParser.AND, 0); } + public TerminalNode OR() { return getToken(EsqlBaseParser.OR, 0); } @SuppressWarnings("this-escape") - public SortCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_sortCommand; } + public LogicalBinaryContext(BooleanExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSortCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLogicalBinary(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSortCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLogicalBinary(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitSortCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLogicalBinary(this); else return visitor.visitChildren(this); } } - public final SortCommandContext sortCommand() throws RecognitionException { - SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_sortCommand); + public final BooleanExpressionContext booleanExpression() throws RecognitionException { + return booleanExpression(0); + } + + private BooleanExpressionContext booleanExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState); + BooleanExpressionContext _prevctx = _localctx; + int _startState = 100; + enterRecursionRule(_localctx, 100, RULE_booleanExpression, _p); + int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(501); - match(SORT); - setState(502); - orderExpression(); - setState(507); + setState(469); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { + case 1: + { + _localctx = new LogicalNotContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(441); + match(NOT); + setState(442); + booleanExpression(8); + } + break; + case 2: + { + _localctx = new BooleanDefaultContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(443); + valueExpression(); + } + break; + case 3: + { + _localctx = new RegexExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(444); + regexBooleanExpression(); + } + break; + case 4: + { + _localctx = new LogicalInContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(445); + valueExpression(); + setState(447); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==NOT) { + { + setState(446); + match(NOT); + } + } + + setState(449); + match(IN); + setState(450); + match(LP); + setState(451); + valueExpression(); + setState(456); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { { { - setState(503); + setState(452); match(COMMA); - setState(504); - orderExpression(); + setState(453); + valueExpression(); + } + } + setState(458); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(459); + match(RP); + } + break; + case 5: + { + _localctx = new IsNullContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(461); + valueExpression(); + setState(462); + match(IS); + setState(464); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==NOT) { + { + setState(463); + match(NOT); + } + } + + setState(466); + match(NULL); + } + break; + case 6: + { + _localctx = new MatchExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(468); + matchBooleanExpression(); + } + break; + } + _ctx.stop = _input.LT(-1); + setState(479); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(477); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + case 1: + { + _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); + ((LogicalBinaryContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); + setState(471); + if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); + setState(472); + ((LogicalBinaryContext)_localctx).operator = match(AND); + setState(473); + ((LogicalBinaryContext)_localctx).right = booleanExpression(6); + } + break; + case 2: + { + _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); + ((LogicalBinaryContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); + setState(474); + if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); + setState(475); + ((LogicalBinaryContext)_localctx).operator = match(OR); + setState(476); + ((LogicalBinaryContext)_localctx).right = booleanExpression(5); + } + break; } } } - setState(509); + setState(481); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,39,_ctx); } } } @@ -4073,93 +3995,95 @@ public final SortCommandContext sortCommand() throws RecognitionException { _errHandler.recover(this, re); } finally { - exitRule(); + unrollRecursionContexts(_parentctx); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class OrderExpressionContext extends ParserRuleContext { - public Token ordering; - public Token nullOrdering; - public BooleanExpressionContext booleanExpression() { - return getRuleContext(BooleanExpressionContext.class,0); + public static class RegexBooleanExpressionContext extends ParserRuleContext { + public Token kind; + public StringContext pattern; + public ValueExpressionContext valueExpression() { + return getRuleContext(ValueExpressionContext.class,0); } - public TerminalNode NULLS() { return getToken(EsqlBaseParser.NULLS, 0); } - public TerminalNode ASC() { return getToken(EsqlBaseParser.ASC, 0); } - public TerminalNode DESC() { return getToken(EsqlBaseParser.DESC, 0); } - public TerminalNode FIRST() { return getToken(EsqlBaseParser.FIRST, 0); } - public TerminalNode LAST() { return getToken(EsqlBaseParser.LAST, 0); } + public TerminalNode LIKE() { return getToken(EsqlBaseParser.LIKE, 0); } + public StringContext string() { + return getRuleContext(StringContext.class,0); + } + public TerminalNode NOT() { return getToken(EsqlBaseParser.NOT, 0); } + public TerminalNode RLIKE() { return getToken(EsqlBaseParser.RLIKE, 0); } @SuppressWarnings("this-escape") - public OrderExpressionContext(ParserRuleContext parent, int invokingState) { + public RegexBooleanExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_orderExpression; } + @Override public int getRuleIndex() { return RULE_regexBooleanExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterOrderExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRegexBooleanExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitOrderExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRegexBooleanExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitOrderExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRegexBooleanExpression(this); else return visitor.visitChildren(this); } } - public final OrderExpressionContext orderExpression() throws RecognitionException { - OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_orderExpression); + public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException { + RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState()); + enterRule(_localctx, 102, RULE_regexBooleanExpression); int _la; try { - enterOuterAlt(_localctx, 1); - { - setState(510); - booleanExpression(0); - setState(512); + setState(496); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: + enterOuterAlt(_localctx, 1); { - setState(511); - ((OrderExpressionContext)_localctx).ordering = _input.LT(1); + setState(482); + valueExpression(); + setState(484); + _errHandler.sync(this); _la = _input.LA(1); - if ( !(_la==ASC || _la==DESC) ) { - ((OrderExpressionContext)_localctx).ordering = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); + if (_la==NOT) { + { + setState(483); + match(NOT); + } } + + setState(486); + ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); + setState(487); + ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; - } - setState(516); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { - case 1: + case 2: + enterOuterAlt(_localctx, 2); { - setState(514); - match(NULLS); - setState(515); - ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); + setState(489); + valueExpression(); + setState(491); + _errHandler.sync(this); _la = _input.LA(1); - if ( !(_la==FIRST || _la==LAST) ) { - ((OrderExpressionContext)_localctx).nullOrdering = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); + if (_la==NOT) { + { + setState(490); + match(NOT); + } } + + setState(493); + ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); + setState(494); + ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; } - } } catch (RecognitionException re) { _localctx.exception = re; @@ -4173,41 +4097,66 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } @SuppressWarnings("CheckReturnValue") - public static class KeepCommandContext extends ParserRuleContext { - public TerminalNode KEEP() { return getToken(EsqlBaseParser.KEEP, 0); } - public QualifiedNamePatternsContext qualifiedNamePatterns() { - return getRuleContext(QualifiedNamePatternsContext.class,0); + public static class MatchBooleanExpressionContext extends ParserRuleContext { + public QualifiedNameContext fieldExp; + public DataTypeContext fieldType; + public ConstantContext matchQuery; + public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); + } + public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } + public DataTypeContext dataType() { + return getRuleContext(DataTypeContext.class,0); } @SuppressWarnings("this-escape") - public KeepCommandContext(ParserRuleContext parent, int invokingState) { + public MatchBooleanExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_keepCommand; } + @Override public int getRuleIndex() { return RULE_matchBooleanExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterKeepCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMatchBooleanExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitKeepCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMatchBooleanExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitKeepCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMatchBooleanExpression(this); else return visitor.visitChildren(this); } } - public final KeepCommandContext keepCommand() throws RecognitionException { - KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_keepCommand); + public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { + MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); + enterRule(_localctx, 104, RULE_matchBooleanExpression); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(518); - match(KEEP); - setState(519); - qualifiedNamePatterns(); + setState(498); + ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); + setState(501); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==CAST_OP) { + { + setState(499); + match(CAST_OP); + setState(500); + ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); + } + } + + setState(503); + match(COLON); + setState(504); + ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } catch (RecognitionException re) { @@ -4222,116 +4171,97 @@ public final KeepCommandContext keepCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class DropCommandContext extends ParserRuleContext { - public TerminalNode DROP() { return getToken(EsqlBaseParser.DROP, 0); } - public QualifiedNamePatternsContext qualifiedNamePatterns() { - return getRuleContext(QualifiedNamePatternsContext.class,0); - } + public static class ValueExpressionContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public DropCommandContext(ParserRuleContext parent, int invokingState) { + public ValueExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_dropCommand; } + @Override public int getRuleIndex() { return RULE_valueExpression; } + + @SuppressWarnings("this-escape") + public ValueExpressionContext() { } + public void copyFrom(ValueExpressionContext ctx) { + super.copyFrom(ctx); + } + } + @SuppressWarnings("CheckReturnValue") + public static class ValueExpressionDefaultContext extends ValueExpressionContext { + public OperatorExpressionContext operatorExpression() { + return getRuleContext(OperatorExpressionContext.class,0); + } + @SuppressWarnings("this-escape") + public ValueExpressionDefaultContext(ValueExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDropCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterValueExpressionDefault(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDropCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitValueExpressionDefault(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDropCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitValueExpressionDefault(this); else return visitor.visitChildren(this); } } - - public final DropCommandContext dropCommand() throws RecognitionException { - DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_dropCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(521); - match(DROP); - setState(522); - qualifiedNamePatterns(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - @SuppressWarnings("CheckReturnValue") - public static class RenameCommandContext extends ParserRuleContext { - public TerminalNode RENAME() { return getToken(EsqlBaseParser.RENAME, 0); } - public List renameClause() { - return getRuleContexts(RenameClauseContext.class); + public static class ComparisonContext extends ValueExpressionContext { + public OperatorExpressionContext left; + public OperatorExpressionContext right; + public ComparisonOperatorContext comparisonOperator() { + return getRuleContext(ComparisonOperatorContext.class,0); } - public RenameClauseContext renameClause(int i) { - return getRuleContext(RenameClauseContext.class,i); + public List operatorExpression() { + return getRuleContexts(OperatorExpressionContext.class); } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public OperatorExpressionContext operatorExpression(int i) { + return getRuleContext(OperatorExpressionContext.class,i); } @SuppressWarnings("this-escape") - public RenameCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_renameCommand; } + public ComparisonContext(ValueExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRenameCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterComparison(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRenameCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitComparison(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRenameCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitComparison(this); else return visitor.visitChildren(this); } } - public final RenameCommandContext renameCommand() throws RecognitionException { - RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_renameCommand); + public final ValueExpressionContext valueExpression() throws RecognitionException { + ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); + enterRule(_localctx, 106, RULE_valueExpression); try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(524); - match(RENAME); - setState(525); - renameClause(); - setState(530); + setState(511); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,49,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(526); - match(COMMA); - setState(527); - renameClause(); - } - } + switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + case 1: + _localctx = new ValueExpressionDefaultContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(506); + operatorExpression(0); } - setState(532); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,49,_ctx); - } + break; + case 2: + _localctx = new ComparisonContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(507); + ((ComparisonContext)_localctx).left = operatorExpression(0); + setState(508); + comparisonOperator(); + setState(509); + ((ComparisonContext)_localctx).right = operatorExpression(0); + } + break; } } catch (RecognitionException re) { @@ -4346,115 +4276,210 @@ public final RenameCommandContext renameCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class RenameClauseContext extends ParserRuleContext { - public QualifiedNamePatternContext oldName; - public QualifiedNamePatternContext newName; - public TerminalNode AS() { return getToken(EsqlBaseParser.AS, 0); } - public List qualifiedNamePattern() { - return getRuleContexts(QualifiedNamePatternContext.class); - } - public QualifiedNamePatternContext qualifiedNamePattern(int i) { - return getRuleContext(QualifiedNamePatternContext.class,i); - } + public static class OperatorExpressionContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public RenameClauseContext(ParserRuleContext parent, int invokingState) { + public OperatorExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_renameClause; } + @Override public int getRuleIndex() { return RULE_operatorExpression; } + + @SuppressWarnings("this-escape") + public OperatorExpressionContext() { } + public void copyFrom(OperatorExpressionContext ctx) { + super.copyFrom(ctx); + } + } + @SuppressWarnings("CheckReturnValue") + public static class OperatorExpressionDefaultContext extends OperatorExpressionContext { + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); + } + @SuppressWarnings("this-escape") + public OperatorExpressionDefaultContext(OperatorExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRenameClause(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterOperatorExpressionDefault(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRenameClause(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitOperatorExpressionDefault(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRenameClause(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitOperatorExpressionDefault(this); else return visitor.visitChildren(this); } } - - public final RenameClauseContext renameClause() throws RecognitionException { - RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_renameClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(533); - ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(534); - match(AS); - setState(535); - ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); - } + @SuppressWarnings("CheckReturnValue") + public static class ArithmeticBinaryContext extends OperatorExpressionContext { + public OperatorExpressionContext left; + public Token operator; + public OperatorExpressionContext right; + public List operatorExpression() { + return getRuleContexts(OperatorExpressionContext.class); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public OperatorExpressionContext operatorExpression(int i) { + return getRuleContext(OperatorExpressionContext.class,i); } - finally { - exitRule(); + public TerminalNode ASTERISK() { return getToken(EsqlBaseParser.ASTERISK, 0); } + public TerminalNode SLASH() { return getToken(EsqlBaseParser.SLASH, 0); } + public TerminalNode PERCENT() { return getToken(EsqlBaseParser.PERCENT, 0); } + public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } + @SuppressWarnings("this-escape") + public ArithmeticBinaryContext(OperatorExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterArithmeticBinary(this); } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class DissectCommandContext extends ParserRuleContext { - public TerminalNode DISSECT() { return getToken(EsqlBaseParser.DISSECT, 0); } - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitArithmeticBinary(this); } - public StringContext string() { - return getRuleContext(StringContext.class,0); + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitArithmeticBinary(this); + else return visitor.visitChildren(this); } - public CommandOptionsContext commandOptions() { - return getRuleContext(CommandOptionsContext.class,0); + } + @SuppressWarnings("CheckReturnValue") + public static class ArithmeticUnaryContext extends OperatorExpressionContext { + public Token operator; + public OperatorExpressionContext operatorExpression() { + return getRuleContext(OperatorExpressionContext.class,0); } + public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } + public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } @SuppressWarnings("this-escape") - public DissectCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_dissectCommand; } + public ArithmeticUnaryContext(OperatorExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDissectCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterArithmeticUnary(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDissectCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitArithmeticUnary(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDissectCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitArithmeticUnary(this); else return visitor.visitChildren(this); } } - public final DissectCommandContext dissectCommand() throws RecognitionException { - DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_dissectCommand); + public final OperatorExpressionContext operatorExpression() throws RecognitionException { + return operatorExpression(0); + } + + private OperatorExpressionContext operatorExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState); + OperatorExpressionContext _prevctx = _localctx; + int _startState = 108; + enterRecursionRule(_localctx, 108, RULE_operatorExpression, _p); + int _la; try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(537); - match(DISSECT); - setState(538); - primaryExpression(0); - setState(539); - string(); - setState(541); + setState(517); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { case 1: { - setState(540); - commandOptions(); + _localctx = new OperatorExpressionDefaultContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(514); + primaryExpression(0); + } + break; + case 2: + { + _localctx = new ArithmeticUnaryContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(515); + ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + ((ArithmeticUnaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(516); + operatorExpression(3); } break; } + _ctx.stop = _input.LT(-1); + setState(527); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(525); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + case 1: + { + _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); + ((ArithmeticBinaryContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); + setState(519); + if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); + setState(520); + ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); + _la = _input.LA(1); + if ( !(((((_la - 84)) & ~0x3f) == 0 && ((1L << (_la - 84)) & 7L) != 0)) ) { + ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(521); + ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); + } + break; + case 2: + { + _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); + ((ArithmeticBinaryContext)_localctx).left = _prevctx; + pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); + setState(522); + if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); + setState(523); + ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + setState(524); + ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); + } + break; + } + } + } + setState(529); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); + } } } catch (RecognitionException re) { @@ -4463,172 +4488,221 @@ public final DissectCommandContext dissectCommand() throws RecognitionException _errHandler.recover(this, re); } finally { - exitRule(); + unrollRecursionContexts(_parentctx); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class GrokCommandContext extends ParserRuleContext { - public TerminalNode GROK() { return getToken(EsqlBaseParser.GROK, 0); } - public PrimaryExpressionContext primaryExpression() { - return getRuleContext(PrimaryExpressionContext.class,0); - } - public StringContext string() { - return getRuleContext(StringContext.class,0); - } + public static class PrimaryExpressionContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public GrokCommandContext(ParserRuleContext parent, int invokingState) { + public PrimaryExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_grokCommand; } + @Override public int getRuleIndex() { return RULE_primaryExpression; } + + @SuppressWarnings("this-escape") + public PrimaryExpressionContext() { } + public void copyFrom(PrimaryExpressionContext ctx) { + super.copyFrom(ctx); + } + } + @SuppressWarnings("CheckReturnValue") + public static class DereferenceContext extends PrimaryExpressionContext { + public QualifiedNameContext qualifiedName() { + return getRuleContext(QualifiedNameContext.class,0); + } + @SuppressWarnings("this-escape") + public DereferenceContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterGrokCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDereference(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitGrokCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDereference(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitGrokCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDereference(this); else return visitor.visitChildren(this); } } - - public final GrokCommandContext grokCommand() throws RecognitionException { - GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_grokCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(543); - match(GROK); - setState(544); - primaryExpression(0); - setState(545); - string(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + @SuppressWarnings("CheckReturnValue") + public static class InlineCastContext extends PrimaryExpressionContext { + public PrimaryExpressionContext primaryExpression() { + return getRuleContext(PrimaryExpressionContext.class,0); } - finally { - exitRule(); + public TerminalNode CAST_OP() { return getToken(EsqlBaseParser.CAST_OP, 0); } + public DataTypeContext dataType() { + return getRuleContext(DataTypeContext.class,0); + } + @SuppressWarnings("this-escape") + public InlineCastContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInlineCast(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInlineCast(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInlineCast(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class MvExpandCommandContext extends ParserRuleContext { - public TerminalNode MV_EXPAND() { return getToken(EsqlBaseParser.MV_EXPAND, 0); } - public QualifiedNameContext qualifiedName() { - return getRuleContext(QualifiedNameContext.class,0); + public static class ConstantDefaultContext extends PrimaryExpressionContext { + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); } @SuppressWarnings("this-escape") - public MvExpandCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_mvExpandCommand; } + public ConstantDefaultContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMvExpandCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterConstantDefault(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMvExpandCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitConstantDefault(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMvExpandCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitConstantDefault(this); else return visitor.visitChildren(this); } } - - public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { - MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_mvExpandCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(547); - match(MV_EXPAND); - setState(548); - qualifiedName(); - } + @SuppressWarnings("CheckReturnValue") + public static class ParenthesizedExpressionContext extends PrimaryExpressionContext { + public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } + public BooleanExpressionContext booleanExpression() { + return getRuleContext(BooleanExpressionContext.class,0); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } + @SuppressWarnings("this-escape") + public ParenthesizedExpressionContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterParenthesizedExpression(this); } - finally { - exitRule(); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitParenthesizedExpression(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitParenthesizedExpression(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class CommandOptionsContext extends ParserRuleContext { - public List commandOption() { - return getRuleContexts(CommandOptionContext.class); - } - public CommandOptionContext commandOption(int i) { - return getRuleContext(CommandOptionContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); + public static class FunctionContext extends PrimaryExpressionContext { + public FunctionExpressionContext functionExpression() { + return getRuleContext(FunctionExpressionContext.class,0); } @SuppressWarnings("this-escape") - public CommandOptionsContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_commandOptions; } + public FunctionContext(PrimaryExpressionContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterCommandOptions(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunction(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitCommandOptions(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunction(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitCommandOptions(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunction(this); else return visitor.visitChildren(this); } } - public final CommandOptionsContext commandOptions() throws RecognitionException { - CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_commandOptions); + public final PrimaryExpressionContext primaryExpression() throws RecognitionException { + return primaryExpression(0); + } + + private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState); + PrimaryExpressionContext _prevctx = _localctx; + int _startState = 110; + enterRecursionRule(_localctx, 110, RULE_primaryExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(550); - commandOption(); - setState(555); + setState(538); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + case 1: + { + _localctx = new ConstantDefaultContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + + setState(531); + constant(); + } + break; + case 2: + { + _localctx = new DereferenceContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(532); + qualifiedName(); + } + break; + case 3: + { + _localctx = new FunctionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(533); + functionExpression(); + } + break; + case 4: + { + _localctx = new ParenthesizedExpressionContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(534); + match(LP); + setState(535); + booleanExpression(0); + setState(536); + match(RP); + } + break; + } + _ctx.stop = _input.LT(-1); + setState(545); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; { { - setState(551); - match(COMMA); - setState(552); - commandOption(); + _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); + pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); + setState(540); + if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); + setState(541); + match(CAST_OP); + setState(542); + dataType(); } } } - setState(557); + setState(547); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,49,_ctx); } } } @@ -4638,168 +4712,132 @@ public final CommandOptionsContext commandOptions() throws RecognitionException _errHandler.recover(this, re); } finally { - exitRule(); + unrollRecursionContexts(_parentctx); } return _localctx; } @SuppressWarnings("CheckReturnValue") - public static class CommandOptionContext extends ParserRuleContext { - public IdentifierContext identifier() { - return getRuleContext(IdentifierContext.class,0); - } - public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } - public ConstantContext constant() { - return getRuleContext(ConstantContext.class,0); - } - @SuppressWarnings("this-escape") - public CommandOptionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_commandOption; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterCommandOption(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitCommandOption(this); + public static class FunctionExpressionContext extends ParserRuleContext { + public FunctionNameContext functionName() { + return getRuleContext(FunctionNameContext.class,0); } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitCommandOption(this); - else return visitor.visitChildren(this); + public TerminalNode LP() { return getToken(EsqlBaseParser.LP, 0); } + public TerminalNode RP() { return getToken(EsqlBaseParser.RP, 0); } + public TerminalNode ASTERISK() { return getToken(EsqlBaseParser.ASTERISK, 0); } + public List booleanExpression() { + return getRuleContexts(BooleanExpressionContext.class); } - } - - public final CommandOptionContext commandOption() throws RecognitionException { - CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_commandOption); - try { - enterOuterAlt(_localctx, 1); - { - setState(558); - identifier(); - setState(559); - match(ASSIGN); - setState(560); - constant(); - } + public BooleanExpressionContext booleanExpression(int i) { + return getRuleContext(BooleanExpressionContext.class,i); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } - finally { - exitRule(); + public MapExpressionContext mapExpression() { + return getRuleContext(MapExpressionContext.class,0); } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class BooleanValueContext extends ParserRuleContext { - public TerminalNode TRUE() { return getToken(EsqlBaseParser.TRUE, 0); } - public TerminalNode FALSE() { return getToken(EsqlBaseParser.FALSE, 0); } @SuppressWarnings("this-escape") - public BooleanValueContext(ParserRuleContext parent, int invokingState) { + public FunctionExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_booleanValue; } + @Override public int getRuleIndex() { return RULE_functionExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunctionExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunctionExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanValue(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunctionExpression(this); else return visitor.visitChildren(this); } } - public final BooleanValueContext booleanValue() throws RecognitionException { - BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_booleanValue); + public final FunctionExpressionContext functionExpression() throws RecognitionException { + FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState()); + enterRule(_localctx, 112, RULE_functionExpression); int _la; try { + int _alt; enterOuterAlt(_localctx, 1); { - setState(562); - _la = _input.LA(1); - if ( !(_la==FALSE || _la==TRUE) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class NumericValueContext extends ParserRuleContext { - public DecimalValueContext decimalValue() { - return getRuleContext(DecimalValueContext.class,0); - } - public IntegerValueContext integerValue() { - return getRuleContext(IntegerValueContext.class,0); - } - @SuppressWarnings("this-escape") - public NumericValueContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_numericValue; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNumericValue(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNumericValue(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNumericValue(this); - else return visitor.visitChildren(this); - } - } - - public final NumericValueContext numericValue() throws RecognitionException { - NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_numericValue); - try { - setState(566); + setState(548); + functionName(); + setState(549); + match(LP); + setState(563); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { - case 1: - enterOuterAlt(_localctx, 1); + switch (_input.LA(1)) { + case ASTERISK: { - setState(564); - decimalValue(); + setState(550); + match(ASTERISK); } break; - case 2: - enterOuterAlt(_localctx, 2); + case QUOTED_STRING: + case INTEGER_LITERAL: + case DECIMAL_LITERAL: + case FALSE: + case NOT: + case NULL: + case PARAM: + case TRUE: + case PLUS: + case MINUS: + case NAMED_OR_POSITIONAL_PARAM: + case OPENING_BRACKET: + case LP: + case UNQUOTED_IDENTIFIER: + case QUOTED_IDENTIFIER: { - setState(565); - integerValue(); + { + setState(551); + booleanExpression(0); + setState(556); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(552); + match(COMMA); + setState(553); + booleanExpression(0); + } + } + } + setState(558); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + } + setState(561); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==COMMA) { + { + setState(559); + match(COMMA); + setState(560); + mapExpression(); + } + } + + } } break; + case RP: + break; + default: + break; + } + setState(565); + match(RP); } } catch (RecognitionException re) { @@ -4814,57 +4852,38 @@ public final NumericValueContext numericValue() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class DecimalValueContext extends ParserRuleContext { - public TerminalNode DECIMAL_LITERAL() { return getToken(EsqlBaseParser.DECIMAL_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } + public static class FunctionNameContext extends ParserRuleContext { + public IdentifierOrParameterContext identifierOrParameter() { + return getRuleContext(IdentifierOrParameterContext.class,0); + } @SuppressWarnings("this-escape") - public DecimalValueContext(ParserRuleContext parent, int invokingState) { + public FunctionNameContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_decimalValue; } + @Override public int getRuleIndex() { return RULE_functionName; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDecimalValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterFunctionName(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDecimalValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitFunctionName(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDecimalValue(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitFunctionName(this); else return visitor.visitChildren(this); } } - public final DecimalValueContext decimalValue() throws RecognitionException { - DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_decimalValue); - int _la; + public final FunctionNameContext functionName() throws RecognitionException { + FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); + enterRule(_localctx, 114, RULE_functionName); try { enterOuterAlt(_localctx, 1); { - setState(569); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { - { - setState(568); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } - } - - setState(571); - match(DECIMAL_LITERAL); + setState(567); + identifierOrParameter(); } } catch (RecognitionException re) { @@ -4879,57 +4898,68 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class IntegerValueContext extends ParserRuleContext { - public TerminalNode INTEGER_LITERAL() { return getToken(EsqlBaseParser.INTEGER_LITERAL, 0); } - public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } - public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } + public static class MapExpressionContext extends ParserRuleContext { + public TerminalNode LEFT_BRACES() { return getToken(EsqlBaseParser.LEFT_BRACES, 0); } + public List entryExpression() { + return getRuleContexts(EntryExpressionContext.class); + } + public EntryExpressionContext entryExpression(int i) { + return getRuleContext(EntryExpressionContext.class,i); + } + public TerminalNode RIGHT_BRACES() { return getToken(EsqlBaseParser.RIGHT_BRACES, 0); } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); + } @SuppressWarnings("this-escape") - public IntegerValueContext(ParserRuleContext parent, int invokingState) { + public MapExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_integerValue; } + @Override public int getRuleIndex() { return RULE_mapExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIntegerValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterMapExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIntegerValue(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitMapExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIntegerValue(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitMapExpression(this); else return visitor.visitChildren(this); } } - public final IntegerValueContext integerValue() throws RecognitionException { - IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_integerValue); + public final MapExpressionContext mapExpression() throws RecognitionException { + MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState()); + enterRule(_localctx, 116, RULE_mapExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(574); + setState(569); + match(LEFT_BRACES); + setState(570); + entryExpression(); + setState(575); _errHandler.sync(this); _la = _input.LA(1); - if (_la==PLUS || _la==MINUS) { + while (_la==COMMA) { { - setState(573); - _la = _input.LA(1); - if ( !(_la==PLUS || _la==MINUS) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); + { + setState(571); + match(COMMA); + setState(572); + entryExpression(); } } + setState(577); + _errHandler.sync(this); + _la = _input.LA(1); } - - setState(576); - match(INTEGER_LITERAL); + setState(578); + match(RIGHT_BRACES); } } catch (RecognitionException re) { @@ -4944,36 +4974,48 @@ public final IntegerValueContext integerValue() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class StringContext extends ParserRuleContext { - public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } + public static class EntryExpressionContext extends ParserRuleContext { + public StringContext key; + public ConstantContext value; + public TerminalNode COLON() { return getToken(EsqlBaseParser.COLON, 0); } + public StringContext string() { + return getRuleContext(StringContext.class,0); + } + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); + } @SuppressWarnings("this-escape") - public StringContext(ParserRuleContext parent, int invokingState) { + public EntryExpressionContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_string; } + @Override public int getRuleIndex() { return RULE_entryExpression; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEntryExpression(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitString(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEntryExpression(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitString(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEntryExpression(this); else return visitor.visitChildren(this); } } - public final StringContext string() throws RecognitionException { - StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_string); + public final EntryExpressionContext entryExpression() throws RecognitionException { + EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState()); + enterRule(_localctx, 118, RULE_entryExpression); try { enterOuterAlt(_localctx, 1); { - setState(578); - match(QUOTED_STRING); + setState(580); + ((EntryExpressionContext)_localctx).key = string(); + setState(581); + match(COLON); + setState(582); + ((EntryExpressionContext)_localctx).value = constant(); } } catch (RecognitionException re) { @@ -4988,440 +5030,406 @@ public final StringContext string() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class ComparisonOperatorContext extends ParserRuleContext { - public TerminalNode EQ() { return getToken(EsqlBaseParser.EQ, 0); } - public TerminalNode NEQ() { return getToken(EsqlBaseParser.NEQ, 0); } - public TerminalNode LT() { return getToken(EsqlBaseParser.LT, 0); } - public TerminalNode LTE() { return getToken(EsqlBaseParser.LTE, 0); } - public TerminalNode GT() { return getToken(EsqlBaseParser.GT, 0); } - public TerminalNode GTE() { return getToken(EsqlBaseParser.GTE, 0); } + public static class ConstantContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { + public ConstantContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_comparisonOperator; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterComparisonOperator(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitComparisonOperator(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitComparisonOperator(this); - else return visitor.visitChildren(this); + @Override public int getRuleIndex() { return RULE_constant; } + + @SuppressWarnings("this-escape") + public ConstantContext() { } + public void copyFrom(ConstantContext ctx) { + super.copyFrom(ctx); } } - - public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { - ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_comparisonOperator); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(580); - _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & -432345564227567616L) != 0)) ) { - _errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - } + @SuppressWarnings("CheckReturnValue") + public static class BooleanArrayLiteralContext extends ConstantContext { + public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } + public List booleanValue() { + return getRuleContexts(BooleanValueContext.class); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public BooleanValueContext booleanValue(int i) { + return getRuleContext(BooleanValueContext.class,i); } - finally { - exitRule(); + public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); + } + @SuppressWarnings("this-escape") + public BooleanArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanArrayLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanArrayLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanArrayLiteral(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class ExplainCommandContext extends ParserRuleContext { - public TerminalNode EXPLAIN() { return getToken(EsqlBaseParser.EXPLAIN, 0); } - public SubqueryExpressionContext subqueryExpression() { - return getRuleContext(SubqueryExpressionContext.class,0); + public static class DecimalLiteralContext extends ConstantContext { + public DecimalValueContext decimalValue() { + return getRuleContext(DecimalValueContext.class,0); } @SuppressWarnings("this-escape") - public ExplainCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_explainCommand; } + public DecimalLiteralContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterExplainCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDecimalLiteral(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitExplainCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDecimalLiteral(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitExplainCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDecimalLiteral(this); else return visitor.visitChildren(this); } } - - public final ExplainCommandContext explainCommand() throws RecognitionException { - ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_explainCommand); - try { - enterOuterAlt(_localctx, 1); - { - setState(582); - match(EXPLAIN); - setState(583); - subqueryExpression(); - } + @SuppressWarnings("CheckReturnValue") + public static class NullLiteralContext extends ConstantContext { + public TerminalNode NULL() { return getToken(EsqlBaseParser.NULL, 0); } + @SuppressWarnings("this-escape") + public NullLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNullLiteral(this); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNullLiteral(this); } - finally { - exitRule(); + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNullLiteral(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class SubqueryExpressionContext extends ParserRuleContext { - public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } - public QueryContext query() { - return getRuleContext(QueryContext.class,0); + public static class QualifiedIntegerLiteralContext extends ConstantContext { + public IntegerValueContext integerValue() { + return getRuleContext(IntegerValueContext.class,0); } - public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } + public TerminalNode UNQUOTED_IDENTIFIER() { return getToken(EsqlBaseParser.UNQUOTED_IDENTIFIER, 0); } @SuppressWarnings("this-escape") - public SubqueryExpressionContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_subqueryExpression; } + public QualifiedIntegerLiteralContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterSubqueryExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterQualifiedIntegerLiteral(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitSubqueryExpression(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitQualifiedIntegerLiteral(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitSubqueryExpression(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitQualifiedIntegerLiteral(this); else return visitor.visitChildren(this); } } - - public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { - SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_subqueryExpression); - try { - enterOuterAlt(_localctx, 1); - { - setState(585); - match(OPENING_BRACKET); - setState(586); - query(0); - setState(587); - match(CLOSING_BRACKET); - } + @SuppressWarnings("CheckReturnValue") + public static class StringArrayLiteralContext extends ConstantContext { + public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } + public List string() { + return getRuleContexts(StringContext.class); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + public StringContext string(int i) { + return getRuleContext(StringContext.class,i); } - finally { - exitRule(); + public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } - return _localctx; - } - - @SuppressWarnings("CheckReturnValue") - public static class ShowCommandContext extends ParserRuleContext { @SuppressWarnings("this-escape") - public ShowCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); + public StringArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringArrayLiteral(this); } - @Override public int getRuleIndex() { return RULE_showCommand; } - - @SuppressWarnings("this-escape") - public ShowCommandContext() { } - public void copyFrom(ShowCommandContext ctx) { - super.copyFrom(ctx); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringArrayLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringArrayLiteral(this); + else return visitor.visitChildren(this); } } @SuppressWarnings("CheckReturnValue") - public static class ShowInfoContext extends ShowCommandContext { - public TerminalNode SHOW() { return getToken(EsqlBaseParser.SHOW, 0); } - public TerminalNode INFO() { return getToken(EsqlBaseParser.INFO, 0); } + public static class InputParameterContext extends ConstantContext { + public ParameterContext parameter() { + return getRuleContext(ParameterContext.class,0); + } @SuppressWarnings("this-escape") - public ShowInfoContext(ShowCommandContext ctx) { copyFrom(ctx); } + public InputParameterContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterShowInfo(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInputParameter(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitShowInfo(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInputParameter(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitShowInfo(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInputParameter(this); else return visitor.visitChildren(this); } } - - public final ShowCommandContext showCommand() throws RecognitionException { - ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_showCommand); - try { - _localctx = new ShowInfoContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(589); - match(SHOW); - setState(590); - match(INFO); - } + @SuppressWarnings("CheckReturnValue") + public static class StringLiteralContext extends ConstantContext { + public StringContext string() { + return getRuleContext(StringContext.class,0); } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); + @SuppressWarnings("this-escape") + public StringLiteralContext(ConstantContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringLiteral(this); } - finally { - exitRule(); + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringLiteral(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringLiteral(this); + else return visitor.visitChildren(this); } - return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class EnrichCommandContext extends ParserRuleContext { - public Token policyName; - public QualifiedNamePatternContext matchField; - public TerminalNode ENRICH() { return getToken(EsqlBaseParser.ENRICH, 0); } - public TerminalNode ENRICH_POLICY_NAME() { return getToken(EsqlBaseParser.ENRICH_POLICY_NAME, 0); } - public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } - public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } - public List enrichWithClause() { - return getRuleContexts(EnrichWithClauseContext.class); - } - public EnrichWithClauseContext enrichWithClause(int i) { - return getRuleContext(EnrichWithClauseContext.class,i); + public static class NumericArrayLiteralContext extends ConstantContext { + public TerminalNode OPENING_BRACKET() { return getToken(EsqlBaseParser.OPENING_BRACKET, 0); } + public List numericValue() { + return getRuleContexts(NumericValueContext.class); } - public QualifiedNamePatternContext qualifiedNamePattern() { - return getRuleContext(QualifiedNamePatternContext.class,0); + public NumericValueContext numericValue(int i) { + return getRuleContext(NumericValueContext.class,i); } + public TerminalNode CLOSING_BRACKET() { return getToken(EsqlBaseParser.CLOSING_BRACKET, 0); } public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } public TerminalNode COMMA(int i) { return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") - public EnrichCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_enrichCommand; } + public NumericArrayLiteralContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEnrichCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNumericArrayLiteral(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEnrichCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNumericArrayLiteral(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEnrichCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNumericArrayLiteral(this); else return visitor.visitChildren(this); } } - - public final EnrichCommandContext enrichCommand() throws RecognitionException { - EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_enrichCommand); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(592); - match(ENRICH); - setState(593); - ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(596); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { - case 1: - { - setState(594); - match(ON); - setState(595); - ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); - } - break; - } - setState(607); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { - case 1: - { - setState(598); - match(WITH); - setState(599); - enrichWithClause(); - setState(604); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(600); - match(COMMA); - setState(601); - enrichWithClause(); - } - } - } - setState(606); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); - } - } - break; - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - @SuppressWarnings("CheckReturnValue") - public static class EnrichWithClauseContext extends ParserRuleContext { - public QualifiedNamePatternContext newName; - public QualifiedNamePatternContext enrichField; - public List qualifiedNamePattern() { - return getRuleContexts(QualifiedNamePatternContext.class); - } - public QualifiedNamePatternContext qualifiedNamePattern(int i) { - return getRuleContext(QualifiedNamePatternContext.class,i); + public static class IntegerLiteralContext extends ConstantContext { + public IntegerValueContext integerValue() { + return getRuleContext(IntegerValueContext.class,0); } - public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); } @SuppressWarnings("this-escape") - public EnrichWithClauseContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_enrichWithClause; } + public IntegerLiteralContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterEnrichWithClause(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIntegerLiteral(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitEnrichWithClause(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIntegerLiteral(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitEnrichWithClause(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIntegerLiteral(this); else return visitor.visitChildren(this); } } - - public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { - EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_enrichWithClause); - try { - enterOuterAlt(_localctx, 1); - { - setState(612); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { - case 1: - { - setState(609); - ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(610); - match(ASSIGN); - } - break; - } - setState(614); - ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - @SuppressWarnings("CheckReturnValue") - public static class LookupCommandContext extends ParserRuleContext { - public IndexPatternContext tableName; - public QualifiedNamePatternsContext matchFields; - public TerminalNode DEV_LOOKUP() { return getToken(EsqlBaseParser.DEV_LOOKUP, 0); } - public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } - public IndexPatternContext indexPattern() { - return getRuleContext(IndexPatternContext.class,0); - } - public QualifiedNamePatternsContext qualifiedNamePatterns() { - return getRuleContext(QualifiedNamePatternsContext.class,0); + public static class BooleanLiteralContext extends ConstantContext { + public BooleanValueContext booleanValue() { + return getRuleContext(BooleanValueContext.class,0); } @SuppressWarnings("this-escape") - public LookupCommandContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_lookupCommand; } + public BooleanLiteralContext(ConstantContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterLookupCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanLiteral(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitLookupCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanLiteral(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitLookupCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanLiteral(this); else return visitor.visitChildren(this); } } - public final LookupCommandContext lookupCommand() throws RecognitionException { - LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_lookupCommand); + public final ConstantContext constant() throws RecognitionException { + ConstantContext _localctx = new ConstantContext(_ctx, getState()); + enterRule(_localctx, 120, RULE_constant); + int _la; try { - enterOuterAlt(_localctx, 1); - { - setState(616); - match(DEV_LOOKUP); - setState(617); - ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(618); - match(ON); - setState(619); - ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); + setState(626); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + case 1: + _localctx = new NullLiteralContext(_localctx); + enterOuterAlt(_localctx, 1); + { + setState(584); + match(NULL); + } + break; + case 2: + _localctx = new QualifiedIntegerLiteralContext(_localctx); + enterOuterAlt(_localctx, 2); + { + setState(585); + integerValue(); + setState(586); + match(UNQUOTED_IDENTIFIER); + } + break; + case 3: + _localctx = new DecimalLiteralContext(_localctx); + enterOuterAlt(_localctx, 3); + { + setState(588); + decimalValue(); + } + break; + case 4: + _localctx = new IntegerLiteralContext(_localctx); + enterOuterAlt(_localctx, 4); + { + setState(589); + integerValue(); + } + break; + case 5: + _localctx = new BooleanLiteralContext(_localctx); + enterOuterAlt(_localctx, 5); + { + setState(590); + booleanValue(); + } + break; + case 6: + _localctx = new InputParameterContext(_localctx); + enterOuterAlt(_localctx, 6); + { + setState(591); + parameter(); + } + break; + case 7: + _localctx = new StringLiteralContext(_localctx); + enterOuterAlt(_localctx, 7); + { + setState(592); + string(); + } + break; + case 8: + _localctx = new NumericArrayLiteralContext(_localctx); + enterOuterAlt(_localctx, 8); + { + setState(593); + match(OPENING_BRACKET); + setState(594); + numericValue(); + setState(599); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(595); + match(COMMA); + setState(596); + numericValue(); + } + } + setState(601); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(602); + match(CLOSING_BRACKET); + } + break; + case 9: + _localctx = new BooleanArrayLiteralContext(_localctx); + enterOuterAlt(_localctx, 9); + { + setState(604); + match(OPENING_BRACKET); + setState(605); + booleanValue(); + setState(610); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(606); + match(COMMA); + setState(607); + booleanValue(); + } + } + setState(612); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(613); + match(CLOSING_BRACKET); + } + break; + case 10: + _localctx = new StringArrayLiteralContext(_localctx); + enterOuterAlt(_localctx, 10); + { + setState(615); + match(OPENING_BRACKET); + setState(616); + string(); + setState(621); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(617); + match(COMMA); + setState(618); + string(); + } + } + setState(623); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(624); + match(CLOSING_BRACKET); + } + break; } } catch (RecognitionException re) { @@ -5436,58 +5444,45 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class InlinestatsCommandContext extends ParserRuleContext { - public AggFieldsContext stats; - public FieldsContext grouping; - public TerminalNode DEV_INLINESTATS() { return getToken(EsqlBaseParser.DEV_INLINESTATS, 0); } - public AggFieldsContext aggFields() { - return getRuleContext(AggFieldsContext.class,0); - } - public TerminalNode BY() { return getToken(EsqlBaseParser.BY, 0); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); - } + public static class BooleanValueContext extends ParserRuleContext { + public TerminalNode TRUE() { return getToken(EsqlBaseParser.TRUE, 0); } + public TerminalNode FALSE() { return getToken(EsqlBaseParser.FALSE, 0); } @SuppressWarnings("this-escape") - public InlinestatsCommandContext(ParserRuleContext parent, int invokingState) { + public BooleanValueContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_inlinestatsCommand; } + @Override public int getRuleIndex() { return RULE_booleanValue; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInlinestatsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterBooleanValue(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInlinestatsCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitBooleanValue(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInlinestatsCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitBooleanValue(this); else return visitor.visitChildren(this); } } - public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { - InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_inlinestatsCommand); + public final BooleanValueContext booleanValue() throws RecognitionException { + BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); + enterRule(_localctx, 122, RULE_booleanValue); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(621); - match(DEV_INLINESTATS); - setState(622); - ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(625); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { - case 1: - { - setState(623); - match(BY); - setState(624); - ((InlinestatsCommandContext)_localctx).grouping = fields(); - } - break; + setState(628); + _la = _input.LA(1); + if ( !(_la==FALSE || _la==TRUE) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); } } } @@ -5503,62 +5498,54 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx } @SuppressWarnings("CheckReturnValue") - public static class JoinCommandContext extends ParserRuleContext { - public Token type; - public TerminalNode JOIN() { return getToken(EsqlBaseParser.JOIN, 0); } - public JoinTargetContext joinTarget() { - return getRuleContext(JoinTargetContext.class,0); + public static class NumericValueContext extends ParserRuleContext { + public DecimalValueContext decimalValue() { + return getRuleContext(DecimalValueContext.class,0); } - public JoinConditionContext joinCondition() { - return getRuleContext(JoinConditionContext.class,0); + public IntegerValueContext integerValue() { + return getRuleContext(IntegerValueContext.class,0); } - public TerminalNode JOIN_LOOKUP() { return getToken(EsqlBaseParser.JOIN_LOOKUP, 0); } - public TerminalNode DEV_JOIN_LEFT() { return getToken(EsqlBaseParser.DEV_JOIN_LEFT, 0); } - public TerminalNode DEV_JOIN_RIGHT() { return getToken(EsqlBaseParser.DEV_JOIN_RIGHT, 0); } @SuppressWarnings("this-escape") - public JoinCommandContext(ParserRuleContext parent, int invokingState) { + public NumericValueContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_joinCommand; } + @Override public int getRuleIndex() { return RULE_numericValue; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterNumericValue(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitNumericValue(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitNumericValue(this); else return visitor.visitChildren(this); } } - public final JoinCommandContext joinCommand() throws RecognitionException { - JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_joinCommand); - int _la; + public final NumericValueContext numericValue() throws RecognitionException { + NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); + enterRule(_localctx, 124, RULE_numericValue); try { - enterOuterAlt(_localctx, 1); - { - setState(627); - ((JoinCommandContext)_localctx).type = _input.LT(1); - _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 25296896L) != 0)) ) { - ((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this); - } - else { - if ( _input.LA(1)==Token.EOF ) matchedEOF = true; - _errHandler.reportMatch(this); - consume(); - } - setState(628); - match(JOIN); - setState(629); - joinTarget(); - setState(630); - joinCondition(); + setState(632); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(630); + decimalValue(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(631); + integerValue(); + } + break; } } catch (RecognitionException re) { @@ -5573,39 +5560,57 @@ public final JoinCommandContext joinCommand() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class JoinTargetContext extends ParserRuleContext { - public IndexPatternContext index; - public IndexPatternContext indexPattern() { - return getRuleContext(IndexPatternContext.class,0); - } + public static class DecimalValueContext extends ParserRuleContext { + public TerminalNode DECIMAL_LITERAL() { return getToken(EsqlBaseParser.DECIMAL_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } @SuppressWarnings("this-escape") - public JoinTargetContext(ParserRuleContext parent, int invokingState) { + public DecimalValueContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_joinTarget; } + @Override public int getRuleIndex() { return RULE_decimalValue; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinTarget(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterDecimalValue(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinTarget(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitDecimalValue(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinTarget(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitDecimalValue(this); else return visitor.visitChildren(this); } } - public final JoinTargetContext joinTarget() throws RecognitionException { - JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_joinTarget); + public final DecimalValueContext decimalValue() throws RecognitionException { + DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); + enterRule(_localctx, 126, RULE_decimalValue); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(632); - ((JoinTargetContext)_localctx).index = indexPattern(); + setState(635); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(634); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } + } + } + + setState(637); + match(DECIMAL_LITERAL); } } catch (RecognitionException re) { @@ -5620,67 +5625,57 @@ public final JoinTargetContext joinTarget() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class JoinConditionContext extends ParserRuleContext { - public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } - public List joinPredicate() { - return getRuleContexts(JoinPredicateContext.class); - } - public JoinPredicateContext joinPredicate(int i) { - return getRuleContext(JoinPredicateContext.class,i); - } - public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } - public TerminalNode COMMA(int i) { - return getToken(EsqlBaseParser.COMMA, i); - } + public static class IntegerValueContext extends ParserRuleContext { + public TerminalNode INTEGER_LITERAL() { return getToken(EsqlBaseParser.INTEGER_LITERAL, 0); } + public TerminalNode PLUS() { return getToken(EsqlBaseParser.PLUS, 0); } + public TerminalNode MINUS() { return getToken(EsqlBaseParser.MINUS, 0); } @SuppressWarnings("this-escape") - public JoinConditionContext(ParserRuleContext parent, int invokingState) { + public IntegerValueContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_joinCondition; } + @Override public int getRuleIndex() { return RULE_integerValue; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinCondition(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterIntegerValue(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinCondition(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitIntegerValue(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinCondition(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitIntegerValue(this); else return visitor.visitChildren(this); } } - public final JoinConditionContext joinCondition() throws RecognitionException { - JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_joinCondition); + public final IntegerValueContext integerValue() throws RecognitionException { + IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); + enterRule(_localctx, 128, RULE_integerValue); + int _la; try { - int _alt; enterOuterAlt(_localctx, 1); { - setState(634); - match(ON); - setState(635); - joinPredicate(); setState(640); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - { - { - setState(636); - match(COMMA); - setState(637); - joinPredicate(); - } - } + _la = _input.LA(1); + if (_la==PLUS || _la==MINUS) { + { + setState(639); + _la = _input.LA(1); + if ( !(_la==PLUS || _la==MINUS) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } - setState(642); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); } + + setState(642); + match(INTEGER_LITERAL); } } catch (RecognitionException re) { @@ -5695,38 +5690,36 @@ public final JoinConditionContext joinCondition() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class JoinPredicateContext extends ParserRuleContext { - public ValueExpressionContext valueExpression() { - return getRuleContext(ValueExpressionContext.class,0); - } + public static class StringContext extends ParserRuleContext { + public TerminalNode QUOTED_STRING() { return getToken(EsqlBaseParser.QUOTED_STRING, 0); } @SuppressWarnings("this-escape") - public JoinPredicateContext(ParserRuleContext parent, int invokingState) { + public StringContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_joinPredicate; } + @Override public int getRuleIndex() { return RULE_string; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterJoinPredicate(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterString(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitJoinPredicate(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitString(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitJoinPredicate(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitString(this); else return visitor.visitChildren(this); } } - public final JoinPredicateContext joinPredicate() throws RecognitionException { - JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_joinPredicate); + public final StringContext string() throws RecognitionException { + StringContext _localctx = new StringContext(_ctx, getState()); + enterRule(_localctx, 130, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(643); - valueExpression(); + setState(644); + match(QUOTED_STRING); } } catch (RecognitionException re) { @@ -5741,41 +5734,50 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { } @SuppressWarnings("CheckReturnValue") - public static class InsistCommandContext extends ParserRuleContext { - public TerminalNode DEV_INSIST() { return getToken(EsqlBaseParser.DEV_INSIST, 0); } - public QualifiedNamePatternsContext qualifiedNamePatterns() { - return getRuleContext(QualifiedNamePatternsContext.class,0); - } + public static class ComparisonOperatorContext extends ParserRuleContext { + public TerminalNode EQ() { return getToken(EsqlBaseParser.EQ, 0); } + public TerminalNode NEQ() { return getToken(EsqlBaseParser.NEQ, 0); } + public TerminalNode LT() { return getToken(EsqlBaseParser.LT, 0); } + public TerminalNode LTE() { return getToken(EsqlBaseParser.LTE, 0); } + public TerminalNode GT() { return getToken(EsqlBaseParser.GT, 0); } + public TerminalNode GTE() { return getToken(EsqlBaseParser.GTE, 0); } @SuppressWarnings("this-escape") - public InsistCommandContext(ParserRuleContext parent, int invokingState) { + public ComparisonOperatorContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); } - @Override public int getRuleIndex() { return RULE_insistCommand; } + @Override public int getRuleIndex() { return RULE_comparisonOperator; } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterInsistCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterComparisonOperator(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitInsistCommand(this); + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitComparisonOperator(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitInsistCommand(this); + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitComparisonOperator(this); else return visitor.visitChildren(this); } } - public final InsistCommandContext insistCommand() throws RecognitionException { - InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_insistCommand); + public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { + ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); + enterRule(_localctx, 132, RULE_comparisonOperator); + int _la; try { enterOuterAlt(_localctx, 1); { - setState(645); - match(DEV_INSIST); setState(646); - qualifiedNamePatterns(); + _la = _input.LA(1); + if ( !(((((_la - 75)) & ~0x3f) == 0 && ((1L << (_la - 75)) & 125L) != 0)) ) { + _errHandler.recoverInline(this); + } + else { + if ( _input.LA(1)==Token.EOF ) matchedEOF = true; + _errHandler.reportMatch(this); + consume(); + } } } catch (RecognitionException re) { @@ -5797,11 +5799,11 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return sourceCommand_sempred((SourceCommandContext)_localctx, predIndex); case 3: return processingCommand_sempred((ProcessingCommandContext)_localctx, predIndex); - case 5: + case 50: return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex); - case 9: + case 54: return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); - case 10: + case 55: return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex); } return true; @@ -5858,7 +5860,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u0086\u0289\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0087\u0289\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ "\u0002\u0002\u0007\u0002\u0002\u0003\u0007\u0003\u0002\u0004\u0007\u0004"+ "\u0002\u0005\u0007\u0005\u0002\u0006\u0007\u0006\u0002\u0007\u0007\u0007"+ "\u0002\b\u0007\b\u0002\t\u0007\t\u0002\n\u0007\n\u0002\u000b\u0007\u000b"+ @@ -5883,389 +5885,381 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ "\u0001\u0003\u0003\u0003\u00b0\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0003\u0005\u00bc\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0005\u0005\u00c3\b\u0005\n\u0005\f\u0005\u00c6"+ - "\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003"+ - "\u0005\u00cd\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00d2"+ - "\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001"+ - "\u0005\u0005\u0005\u00da\b\u0005\n\u0005\f\u0005\u00dd\t\u0005\u0001\u0006"+ - "\u0001\u0006\u0003\u0006\u00e1\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0001\u0006\u0003\u0006\u00e8\b\u0006\u0001\u0006\u0001\u0006"+ - "\u0001\u0006\u0003\u0006\u00ed\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007"+ - "\u0003\u0007\u00f2\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b"+ - "\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u00fc\b\b\u0001\t\u0001\t\u0001"+ - "\t\u0001\t\u0003\t\u0102\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0005\t\u010a\b\t\n\t\f\t\u010d\t\t\u0001\n\u0001\n\u0001\n\u0001\n"+ - "\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u0117\b\n\u0001\n\u0001\n\u0001"+ - "\n\u0005\n\u011c\b\n\n\n\f\n\u011f\t\n\u0001\u000b\u0001\u000b\u0001\u000b"+ - "\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u0127\b\u000b\n\u000b"+ - "\f\u000b\u012a\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u012e\b\u000b"+ - "\u0003\u000b\u0130\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001"+ - "\r\u0001\r\u0001\r\u0001\r\u0005\r\u013a\b\r\n\r\f\r\u013d\t\r\u0001\r"+ - "\u0001\r\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000e\u0001\u000f\u0001"+ - "\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\u0005\u0011\u014d\b\u0011\n\u0011\f\u0011\u0150\t\u0011\u0001\u0012"+ - "\u0001\u0012\u0001\u0012\u0003\u0012\u0155\b\u0012\u0001\u0012\u0001\u0012"+ - "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u015d\b\u0013"+ - "\n\u0013\f\u0013\u0160\t\u0013\u0001\u0013\u0003\u0013\u0163\b\u0013\u0001"+ - "\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0168\b\u0014\u0001\u0014\u0001"+ - "\u0014\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0001\u0017\u0005\u0017\u0174\b\u0017\n\u0017\f\u0017"+ - "\u0177\t\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018"+ - "\u017d\b\u0018\n\u0018\f\u0018\u0180\t\u0018\u0001\u0018\u0003\u0018\u0183"+ - "\b\u0018\u0001\u0018\u0001\u0018\u0003\u0018\u0187\b\u0018\u0001\u0019"+ - "\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u018e\b\u001a"+ - "\u0001\u001a\u0001\u001a\u0003\u001a\u0192\b\u001a\u0001\u001b\u0001\u001b"+ - "\u0001\u001b\u0005\u001b\u0197\b\u001b\n\u001b\f\u001b\u019a\t\u001b\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u019f\b\u001c\u0001\u001d\u0001"+ - "\u001d\u0001\u001d\u0005\u001d\u01a4\b\u001d\n\u001d\f\u001d\u01a7\t\u001d"+ - "\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01ac\b\u001e\n\u001e"+ - "\f\u001e\u01af\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f"+ - "\u01b4\b\u001f\n\u001f\f\u001f\u01b7\t\u001f\u0001 \u0001 \u0001!\u0001"+ - "!\u0003!\u01bd\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01cc\b\"\n"+ - "\"\f\"\u01cf\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005"+ - "\"\u01d7\b\"\n\"\f\"\u01da\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\""+ - "\u0001\"\u0005\"\u01e2\b\"\n\"\f\"\u01e5\t\"\u0001\"\u0001\"\u0003\"\u01e9"+ - "\b\"\u0001#\u0001#\u0003#\u01ed\b#\u0001$\u0001$\u0003$\u01f1\b$\u0001"+ - "%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0005&\u01fa\b&\n&\f&\u01fd"+ - "\t&\u0001\'\u0001\'\u0003\'\u0201\b\'\u0001\'\u0001\'\u0003\'\u0205\b"+ - "\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001"+ - "*\u0005*\u0211\b*\n*\f*\u0214\t*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001"+ - ",\u0001,\u0001,\u0003,\u021e\b,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+ - ".\u0001.\u0001/\u0001/\u0001/\u0005/\u022a\b/\n/\f/\u022d\t/\u00010\u0001"+ - "0\u00010\u00010\u00011\u00011\u00012\u00012\u00032\u0237\b2\u00013\u0003"+ - "3\u023a\b3\u00013\u00013\u00014\u00034\u023f\b4\u00014\u00014\u00015\u0001"+ - "5\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u00018\u0001"+ - "9\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0003:\u0255\b:\u0001:\u0001"+ - ":\u0001:\u0001:\u0005:\u025b\b:\n:\f:\u025e\t:\u0003:\u0260\b:\u0001;"+ - "\u0001;\u0001;\u0003;\u0265\b;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+ - "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u0272\b=\u0001>\u0001>\u0001"+ - ">\u0001>\u0001>\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u027f"+ - "\b@\n@\f@\u0282\t@\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0000\u0004"+ - "\u0002\n\u0012\u0014C\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012"+ - "\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\"+ - "^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0000\t\u0001\u0000@A\u0001\u0000"+ - "BD\u0002\u0000\u001e\u001eSS\u0001\u0000JK\u0002\u0000##((\u0002\u0000"+ - "++..\u0002\u0000**88\u0002\u000099;?\u0002\u0000\u0011\u0011\u0017\u0018"+ - "\u02a2\u0000\u0086\u0001\u0000\u0000\u0000\u0002\u0089\u0001\u0000\u0000"+ - "\u0000\u0004\u009a\u0001\u0000\u0000\u0000\u0006\u00af\u0001\u0000\u0000"+ - "\u0000\b\u00b1\u0001\u0000\u0000\u0000\n\u00d1\u0001\u0000\u0000\u0000"+ - "\f\u00ec\u0001\u0000\u0000\u0000\u000e\u00ee\u0001\u0000\u0000\u0000\u0010"+ - "\u00fb\u0001\u0000\u0000\u0000\u0012\u0101\u0001\u0000\u0000\u0000\u0014"+ - "\u0116\u0001\u0000\u0000\u0000\u0016\u0120\u0001\u0000\u0000\u0000\u0018"+ - "\u0133\u0001\u0000\u0000\u0000\u001a\u0135\u0001\u0000\u0000\u0000\u001c"+ - "\u0140\u0001\u0000\u0000\u0000\u001e\u0144\u0001\u0000\u0000\u0000 \u0146"+ - "\u0001\u0000\u0000\u0000\"\u0149\u0001\u0000\u0000\u0000$\u0154\u0001"+ - "\u0000\u0000\u0000&\u0158\u0001\u0000\u0000\u0000(\u0167\u0001\u0000\u0000"+ - "\u0000*\u016b\u0001\u0000\u0000\u0000,\u016d\u0001\u0000\u0000\u0000."+ - "\u016f\u0001\u0000\u0000\u00000\u0178\u0001\u0000\u0000\u00002\u0188\u0001"+ - "\u0000\u0000\u00004\u018b\u0001\u0000\u0000\u00006\u0193\u0001\u0000\u0000"+ - "\u00008\u019b\u0001\u0000\u0000\u0000:\u01a0\u0001\u0000\u0000\u0000<"+ - "\u01a8\u0001\u0000\u0000\u0000>\u01b0\u0001\u0000\u0000\u0000@\u01b8\u0001"+ - "\u0000\u0000\u0000B\u01bc\u0001\u0000\u0000\u0000D\u01e8\u0001\u0000\u0000"+ - "\u0000F\u01ec\u0001\u0000\u0000\u0000H\u01f0\u0001\u0000\u0000\u0000J"+ - "\u01f2\u0001\u0000\u0000\u0000L\u01f5\u0001\u0000\u0000\u0000N\u01fe\u0001"+ - "\u0000\u0000\u0000P\u0206\u0001\u0000\u0000\u0000R\u0209\u0001\u0000\u0000"+ - "\u0000T\u020c\u0001\u0000\u0000\u0000V\u0215\u0001\u0000\u0000\u0000X"+ - "\u0219\u0001\u0000\u0000\u0000Z\u021f\u0001\u0000\u0000\u0000\\\u0223"+ - "\u0001\u0000\u0000\u0000^\u0226\u0001\u0000\u0000\u0000`\u022e\u0001\u0000"+ - "\u0000\u0000b\u0232\u0001\u0000\u0000\u0000d\u0236\u0001\u0000\u0000\u0000"+ - "f\u0239\u0001\u0000\u0000\u0000h\u023e\u0001\u0000\u0000\u0000j\u0242"+ - "\u0001\u0000\u0000\u0000l\u0244\u0001\u0000\u0000\u0000n\u0246\u0001\u0000"+ - "\u0000\u0000p\u0249\u0001\u0000\u0000\u0000r\u024d\u0001\u0000\u0000\u0000"+ - "t\u0250\u0001\u0000\u0000\u0000v\u0264\u0001\u0000\u0000\u0000x\u0268"+ - "\u0001\u0000\u0000\u0000z\u026d\u0001\u0000\u0000\u0000|\u0273\u0001\u0000"+ - "\u0000\u0000~\u0278\u0001\u0000\u0000\u0000\u0080\u027a\u0001\u0000\u0000"+ - "\u0000\u0082\u0283\u0001\u0000\u0000\u0000\u0084\u0285\u0001\u0000\u0000"+ - "\u0000\u0086\u0087\u0003\u0002\u0001\u0000\u0087\u0088\u0005\u0000\u0000"+ - "\u0001\u0088\u0001\u0001\u0000\u0000\u0000\u0089\u008a\u0006\u0001\uffff"+ - "\uffff\u0000\u008a\u008b\u0003\u0004\u0002\u0000\u008b\u0091\u0001\u0000"+ - "\u0000\u0000\u008c\u008d\n\u0001\u0000\u0000\u008d\u008e\u0005\u001d\u0000"+ - "\u0000\u008e\u0090\u0003\u0006\u0003\u0000\u008f\u008c\u0001\u0000\u0000"+ - "\u0000\u0090\u0093\u0001\u0000\u0000\u0000\u0091\u008f\u0001\u0000\u0000"+ - "\u0000\u0091\u0092\u0001\u0000\u0000\u0000\u0092\u0003\u0001\u0000\u0000"+ - "\u0000\u0093\u0091\u0001\u0000\u0000\u0000\u0094\u009b\u0003n7\u0000\u0095"+ - "\u009b\u0003&\u0013\u0000\u0096\u009b\u0003 \u0010\u0000\u0097\u009b\u0003"+ - "r9\u0000\u0098\u0099\u0004\u0002\u0001\u0000\u0099\u009b\u00030\u0018"+ - "\u0000\u009a\u0094\u0001\u0000\u0000\u0000\u009a\u0095\u0001\u0000\u0000"+ - "\u0000\u009a\u0096\u0001\u0000\u0000\u0000\u009a\u0097\u0001\u0000\u0000"+ - "\u0000\u009a\u0098\u0001\u0000\u0000\u0000\u009b\u0005\u0001\u0000\u0000"+ - "\u0000\u009c\u00b0\u00032\u0019\u0000\u009d\u00b0\u0003\b\u0004\u0000"+ - "\u009e\u00b0\u0003P(\u0000\u009f\u00b0\u0003J%\u0000\u00a0\u00b0\u0003"+ - "4\u001a\u0000\u00a1\u00b0\u0003L&\u0000\u00a2\u00b0\u0003R)\u0000\u00a3"+ - "\u00b0\u0003T*\u0000\u00a4\u00b0\u0003X,\u0000\u00a5\u00b0\u0003Z-\u0000"+ - "\u00a6\u00b0\u0003t:\u0000\u00a7\u00b0\u0003\\.\u0000\u00a8\u00b0\u0003"+ - "|>\u0000\u00a9\u00aa\u0004\u0003\u0002\u0000\u00aa\u00b0\u0003z=\u0000"+ - "\u00ab\u00ac\u0004\u0003\u0003\u0000\u00ac\u00b0\u0003x<\u0000\u00ad\u00ae"+ - "\u0004\u0003\u0004\u0000\u00ae\u00b0\u0003\u0084B\u0000\u00af\u009c\u0001"+ - "\u0000\u0000\u0000\u00af\u009d\u0001\u0000\u0000\u0000\u00af\u009e\u0001"+ - "\u0000\u0000\u0000\u00af\u009f\u0001\u0000\u0000\u0000\u00af\u00a0\u0001"+ - "\u0000\u0000\u0000\u00af\u00a1\u0001\u0000\u0000\u0000\u00af\u00a2\u0001"+ - "\u0000\u0000\u0000\u00af\u00a3\u0001\u0000\u0000\u0000\u00af\u00a4\u0001"+ - "\u0000\u0000\u0000\u00af\u00a5\u0001\u0000\u0000\u0000\u00af\u00a6\u0001"+ - "\u0000\u0000\u0000\u00af\u00a7\u0001\u0000\u0000\u0000\u00af\u00a8\u0001"+ - "\u0000\u0000\u0000\u00af\u00a9\u0001\u0000\u0000\u0000\u00af\u00ab\u0001"+ - "\u0000\u0000\u0000\u00af\u00ad\u0001\u0000\u0000\u0000\u00b0\u0007\u0001"+ - "\u0000\u0000\u0000\u00b1\u00b2\u0005\u0010\u0000\u0000\u00b2\u00b3\u0003"+ - "\n\u0005\u0000\u00b3\t\u0001\u0000\u0000\u0000\u00b4\u00b5\u0006\u0005"+ - "\uffff\uffff\u0000\u00b5\u00b6\u00051\u0000\u0000\u00b6\u00d2\u0003\n"+ - "\u0005\b\u00b7\u00d2\u0003\u0010\b\u0000\u00b8\u00d2\u0003\f\u0006\u0000"+ - "\u00b9\u00bb\u0003\u0010\b\u0000\u00ba\u00bc\u00051\u0000\u0000\u00bb"+ - "\u00ba\u0001\u0000\u0000\u0000\u00bb\u00bc\u0001\u0000\u0000\u0000\u00bc"+ - "\u00bd\u0001\u0000\u0000\u0000\u00bd\u00be\u0005,\u0000\u0000\u00be\u00bf"+ - "\u00050\u0000\u0000\u00bf\u00c4\u0003\u0010\b\u0000\u00c0\u00c1\u0005"+ - "\'\u0000\u0000\u00c1\u00c3\u0003\u0010\b\u0000\u00c2\u00c0\u0001\u0000"+ - "\u0000\u0000\u00c3\u00c6\u0001\u0000\u0000\u0000\u00c4\u00c2\u0001\u0000"+ - "\u0000\u0000\u00c4\u00c5\u0001\u0000\u0000\u0000\u00c5\u00c7\u0001\u0000"+ - "\u0000\u0000\u00c6\u00c4\u0001\u0000\u0000\u0000\u00c7\u00c8\u00057\u0000"+ - "\u0000\u00c8\u00d2\u0001\u0000\u0000\u0000\u00c9\u00ca\u0003\u0010\b\u0000"+ - "\u00ca\u00cc\u0005-\u0000\u0000\u00cb\u00cd\u00051\u0000\u0000\u00cc\u00cb"+ - "\u0001\u0000\u0000\u0000\u00cc\u00cd\u0001\u0000\u0000\u0000\u00cd\u00ce"+ - "\u0001\u0000\u0000\u0000\u00ce\u00cf\u00052\u0000\u0000\u00cf\u00d2\u0001"+ - "\u0000\u0000\u0000\u00d0\u00d2\u0003\u000e\u0007\u0000\u00d1\u00b4\u0001"+ - "\u0000\u0000\u0000\u00d1\u00b7\u0001\u0000\u0000\u0000\u00d1\u00b8\u0001"+ - "\u0000\u0000\u0000\u00d1\u00b9\u0001\u0000\u0000\u0000\u00d1\u00c9\u0001"+ - "\u0000\u0000\u0000\u00d1\u00d0\u0001\u0000\u0000\u0000\u00d2\u00db\u0001"+ - "\u0000\u0000\u0000\u00d3\u00d4\n\u0005\u0000\u0000\u00d4\u00d5\u0005\""+ - "\u0000\u0000\u00d5\u00da\u0003\n\u0005\u0006\u00d6\u00d7\n\u0004\u0000"+ - "\u0000\u00d7\u00d8\u00054\u0000\u0000\u00d8\u00da\u0003\n\u0005\u0005"+ - "\u00d9\u00d3\u0001\u0000\u0000\u0000\u00d9\u00d6\u0001\u0000\u0000\u0000"+ - "\u00da\u00dd\u0001\u0000\u0000\u0000\u00db\u00d9\u0001\u0000\u0000\u0000"+ - "\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u000b\u0001\u0000\u0000\u0000"+ - "\u00dd\u00db\u0001\u0000\u0000\u0000\u00de\u00e0\u0003\u0010\b\u0000\u00df"+ - "\u00e1\u00051\u0000\u0000\u00e0\u00df\u0001\u0000\u0000\u0000\u00e0\u00e1"+ - "\u0001\u0000\u0000\u0000\u00e1\u00e2\u0001\u0000\u0000\u0000\u00e2\u00e3"+ - "\u0005/\u0000\u0000\u00e3\u00e4\u0003j5\u0000\u00e4\u00ed\u0001\u0000"+ - "\u0000\u0000\u00e5\u00e7\u0003\u0010\b\u0000\u00e6\u00e8\u00051\u0000"+ - "\u0000\u00e7\u00e6\u0001\u0000\u0000\u0000\u00e7\u00e8\u0001\u0000\u0000"+ - "\u0000\u00e8\u00e9\u0001\u0000\u0000\u0000\u00e9\u00ea\u00056\u0000\u0000"+ - "\u00ea\u00eb\u0003j5\u0000\u00eb\u00ed\u0001\u0000\u0000\u0000\u00ec\u00de"+ - "\u0001\u0000\u0000\u0000\u00ec\u00e5\u0001\u0000\u0000\u0000\u00ed\r\u0001"+ - "\u0000\u0000\u0000\u00ee\u00f1\u0003:\u001d\u0000\u00ef\u00f0\u0005%\u0000"+ - "\u0000\u00f0\u00f2\u0003\u001e\u000f\u0000\u00f1\u00ef\u0001\u0000\u0000"+ - "\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2\u00f3\u0001\u0000\u0000"+ - "\u0000\u00f3\u00f4\u0005&\u0000\u0000\u00f4\u00f5\u0003D\"\u0000\u00f5"+ - "\u000f\u0001\u0000\u0000\u0000\u00f6\u00fc\u0003\u0012\t\u0000\u00f7\u00f8"+ - "\u0003\u0012\t\u0000\u00f8\u00f9\u0003l6\u0000\u00f9\u00fa\u0003\u0012"+ - "\t\u0000\u00fa\u00fc\u0001\u0000\u0000\u0000\u00fb\u00f6\u0001\u0000\u0000"+ - "\u0000\u00fb\u00f7\u0001\u0000\u0000\u0000\u00fc\u0011\u0001\u0000\u0000"+ - "\u0000\u00fd\u00fe\u0006\t\uffff\uffff\u0000\u00fe\u0102\u0003\u0014\n"+ - "\u0000\u00ff\u0100\u0007\u0000\u0000\u0000\u0100\u0102\u0003\u0012\t\u0003"+ - "\u0101\u00fd\u0001\u0000\u0000\u0000\u0101\u00ff\u0001\u0000\u0000\u0000"+ - "\u0102\u010b\u0001\u0000\u0000\u0000\u0103\u0104\n\u0002\u0000\u0000\u0104"+ - "\u0105\u0007\u0001\u0000\u0000\u0105\u010a\u0003\u0012\t\u0003\u0106\u0107"+ - "\n\u0001\u0000\u0000\u0107\u0108\u0007\u0000\u0000\u0000\u0108\u010a\u0003"+ - "\u0012\t\u0002\u0109\u0103\u0001\u0000\u0000\u0000\u0109\u0106\u0001\u0000"+ - "\u0000\u0000\u010a\u010d\u0001\u0000\u0000\u0000\u010b\u0109\u0001\u0000"+ - "\u0000\u0000\u010b\u010c\u0001\u0000\u0000\u0000\u010c\u0013\u0001\u0000"+ - "\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010e\u010f\u0006\n\uffff"+ - "\uffff\u0000\u010f\u0117\u0003D\"\u0000\u0110\u0117\u0003:\u001d\u0000"+ - "\u0111\u0117\u0003\u0016\u000b\u0000\u0112\u0113\u00050\u0000\u0000\u0113"+ - "\u0114\u0003\n\u0005\u0000\u0114\u0115\u00057\u0000\u0000\u0115\u0117"+ - "\u0001\u0000\u0000\u0000\u0116\u010e\u0001\u0000\u0000\u0000\u0116\u0110"+ - "\u0001\u0000\u0000\u0000\u0116\u0111\u0001\u0000\u0000\u0000\u0116\u0112"+ - "\u0001\u0000\u0000\u0000\u0117\u011d\u0001\u0000\u0000\u0000\u0118\u0119"+ - "\n\u0001\u0000\u0000\u0119\u011a\u0005%\u0000\u0000\u011a\u011c\u0003"+ - "\u001e\u000f\u0000\u011b\u0118\u0001\u0000\u0000\u0000\u011c\u011f\u0001"+ - "\u0000\u0000\u0000\u011d\u011b\u0001\u0000\u0000\u0000\u011d\u011e\u0001"+ - "\u0000\u0000\u0000\u011e\u0015\u0001\u0000\u0000\u0000\u011f\u011d\u0001"+ - "\u0000\u0000\u0000\u0120\u0121\u0003\u0018\f\u0000\u0121\u012f\u00050"+ - "\u0000\u0000\u0122\u0130\u0005B\u0000\u0000\u0123\u0128\u0003\n\u0005"+ - "\u0000\u0124\u0125\u0005\'\u0000\u0000\u0125\u0127\u0003\n\u0005\u0000"+ - "\u0126\u0124\u0001\u0000\u0000\u0000\u0127\u012a\u0001\u0000\u0000\u0000"+ - "\u0128\u0126\u0001\u0000\u0000\u0000\u0128\u0129\u0001\u0000\u0000\u0000"+ - "\u0129\u012d\u0001\u0000\u0000\u0000\u012a\u0128\u0001\u0000\u0000\u0000"+ - "\u012b\u012c\u0005\'\u0000\u0000\u012c\u012e\u0003\u001a\r\u0000\u012d"+ - "\u012b\u0001\u0000\u0000\u0000\u012d\u012e\u0001\u0000\u0000\u0000\u012e"+ - "\u0130\u0001\u0000\u0000\u0000\u012f\u0122\u0001\u0000\u0000\u0000\u012f"+ - "\u0123\u0001\u0000\u0000\u0000\u012f\u0130\u0001\u0000\u0000\u0000\u0130"+ - "\u0131\u0001\u0000\u0000\u0000\u0131\u0132\u00057\u0000\u0000\u0132\u0017"+ - "\u0001\u0000\u0000\u0000\u0133\u0134\u0003H$\u0000\u0134\u0019\u0001\u0000"+ - "\u0000\u0000\u0135\u0136\u0005E\u0000\u0000\u0136\u013b\u0003\u001c\u000e"+ - "\u0000\u0137\u0138\u0005\'\u0000\u0000\u0138\u013a\u0003\u001c\u000e\u0000"+ - "\u0139\u0137\u0001\u0000\u0000\u0000\u013a\u013d\u0001\u0000\u0000\u0000"+ - "\u013b\u0139\u0001\u0000\u0000\u0000\u013b\u013c\u0001\u0000\u0000\u0000"+ - "\u013c\u013e\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000\u0000"+ - "\u013e\u013f\u0005F\u0000\u0000\u013f\u001b\u0001\u0000\u0000\u0000\u0140"+ - "\u0141\u0003j5\u0000\u0141\u0142\u0005&\u0000\u0000\u0142\u0143\u0003"+ - "D\"\u0000\u0143\u001d\u0001\u0000\u0000\u0000\u0144\u0145\u0003@ \u0000"+ - "\u0145\u001f\u0001\u0000\u0000\u0000\u0146\u0147\u0005\f\u0000\u0000\u0147"+ - "\u0148\u0003\"\u0011\u0000\u0148!\u0001\u0000\u0000\u0000\u0149\u014e"+ - "\u0003$\u0012\u0000\u014a\u014b\u0005\'\u0000\u0000\u014b\u014d\u0003"+ - "$\u0012\u0000\u014c\u014a\u0001\u0000\u0000\u0000\u014d\u0150\u0001\u0000"+ - "\u0000\u0000\u014e\u014c\u0001\u0000\u0000\u0000\u014e\u014f\u0001\u0000"+ - "\u0000\u0000\u014f#\u0001\u0000\u0000\u0000\u0150\u014e\u0001\u0000\u0000"+ - "\u0000\u0151\u0152\u0003:\u001d\u0000\u0152\u0153\u0005$\u0000\u0000\u0153"+ - "\u0155\u0001\u0000\u0000\u0000\u0154\u0151\u0001\u0000\u0000\u0000\u0154"+ - "\u0155\u0001\u0000\u0000\u0000\u0155\u0156\u0001\u0000\u0000\u0000\u0156"+ - "\u0157\u0003\n\u0005\u0000\u0157%\u0001\u0000\u0000\u0000\u0158\u0159"+ - "\u0005\u0006\u0000\u0000\u0159\u015e\u0003(\u0014\u0000\u015a\u015b\u0005"+ - "\'\u0000\u0000\u015b\u015d\u0003(\u0014\u0000\u015c\u015a\u0001\u0000"+ - "\u0000\u0000\u015d\u0160\u0001\u0000\u0000\u0000\u015e\u015c\u0001\u0000"+ - "\u0000\u0000\u015e\u015f\u0001\u0000\u0000\u0000\u015f\u0162\u0001\u0000"+ - "\u0000\u0000\u0160\u015e\u0001\u0000\u0000\u0000\u0161\u0163\u0003.\u0017"+ - "\u0000\u0162\u0161\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000"+ - "\u0000\u0163\'\u0001\u0000\u0000\u0000\u0164\u0165\u0003*\u0015\u0000"+ - "\u0165\u0166\u0005&\u0000\u0000\u0166\u0168\u0001\u0000\u0000\u0000\u0167"+ - "\u0164\u0001\u0000\u0000\u0000\u0167\u0168\u0001\u0000\u0000\u0000\u0168"+ - "\u0169\u0001\u0000\u0000\u0000\u0169\u016a\u0003,\u0016\u0000\u016a)\u0001"+ - "\u0000\u0000\u0000\u016b\u016c\u0007\u0002\u0000\u0000\u016c+\u0001\u0000"+ - "\u0000\u0000\u016d\u016e\u0007\u0002\u0000\u0000\u016e-\u0001\u0000\u0000"+ - "\u0000\u016f\u0170\u0005R\u0000\u0000\u0170\u0175\u0005S\u0000\u0000\u0171"+ - "\u0172\u0005\'\u0000\u0000\u0172\u0174\u0005S\u0000\u0000\u0173\u0171"+ - "\u0001\u0000\u0000\u0000\u0174\u0177\u0001\u0000\u0000\u0000\u0175\u0173"+ - "\u0001\u0000\u0000\u0000\u0175\u0176\u0001\u0000\u0000\u0000\u0176/\u0001"+ - "\u0000\u0000\u0000\u0177\u0175\u0001\u0000\u0000\u0000\u0178\u0179\u0005"+ - "\u0015\u0000\u0000\u0179\u017e\u0003(\u0014\u0000\u017a\u017b\u0005\'"+ - "\u0000\u0000\u017b\u017d\u0003(\u0014\u0000\u017c\u017a\u0001\u0000\u0000"+ - "\u0000\u017d\u0180\u0001\u0000\u0000\u0000\u017e\u017c\u0001\u0000\u0000"+ - "\u0000\u017e\u017f\u0001\u0000\u0000\u0000\u017f\u0182\u0001\u0000\u0000"+ - "\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0181\u0183\u00036\u001b\u0000"+ - "\u0182\u0181\u0001\u0000\u0000\u0000\u0182\u0183\u0001\u0000\u0000\u0000"+ - "\u0183\u0186\u0001\u0000\u0000\u0000\u0184\u0185\u0005!\u0000\u0000\u0185"+ - "\u0187\u0003\"\u0011\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187"+ - "\u0001\u0000\u0000\u0000\u01871\u0001\u0000\u0000\u0000\u0188\u0189\u0005"+ - "\u0004\u0000\u0000\u0189\u018a\u0003\"\u0011\u0000\u018a3\u0001\u0000"+ - "\u0000\u0000\u018b\u018d\u0005\u000f\u0000\u0000\u018c\u018e\u00036\u001b"+ - "\u0000\u018d\u018c\u0001\u0000\u0000\u0000\u018d\u018e\u0001\u0000\u0000"+ - "\u0000\u018e\u0191\u0001\u0000\u0000\u0000\u018f\u0190\u0005!\u0000\u0000"+ - "\u0190\u0192\u0003\"\u0011\u0000\u0191\u018f\u0001\u0000\u0000\u0000\u0191"+ - "\u0192\u0001\u0000\u0000\u0000\u01925\u0001\u0000\u0000\u0000\u0193\u0198"+ - "\u00038\u001c\u0000\u0194\u0195\u0005\'\u0000\u0000\u0195\u0197\u0003"+ - "8\u001c\u0000\u0196\u0194\u0001\u0000\u0000\u0000\u0197\u019a\u0001\u0000"+ - "\u0000\u0000\u0198\u0196\u0001\u0000\u0000\u0000\u0198\u0199\u0001\u0000"+ - "\u0000\u0000\u01997\u0001\u0000\u0000\u0000\u019a\u0198\u0001\u0000\u0000"+ - "\u0000\u019b\u019e\u0003$\u0012\u0000\u019c\u019d\u0005\u0010\u0000\u0000"+ - "\u019d\u019f\u0003\n\u0005\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019e"+ - "\u019f\u0001\u0000\u0000\u0000\u019f9\u0001\u0000\u0000\u0000\u01a0\u01a5"+ - "\u0003H$\u0000\u01a1\u01a2\u0005)\u0000\u0000\u01a2\u01a4\u0003H$\u0000"+ - "\u01a3\u01a1\u0001\u0000\u0000\u0000\u01a4\u01a7\u0001\u0000\u0000\u0000"+ - "\u01a5\u01a3\u0001\u0000\u0000\u0000\u01a5\u01a6\u0001\u0000\u0000\u0000"+ - "\u01a6;\u0001\u0000\u0000\u0000\u01a7\u01a5\u0001\u0000\u0000\u0000\u01a8"+ - "\u01ad\u0003B!\u0000\u01a9\u01aa\u0005)\u0000\u0000\u01aa\u01ac\u0003"+ - "B!\u0000\u01ab\u01a9\u0001\u0000\u0000\u0000\u01ac\u01af\u0001\u0000\u0000"+ - "\u0000\u01ad\u01ab\u0001\u0000\u0000\u0000\u01ad\u01ae\u0001\u0000\u0000"+ - "\u0000\u01ae=\u0001\u0000\u0000\u0000\u01af\u01ad\u0001\u0000\u0000\u0000"+ - "\u01b0\u01b5\u0003<\u001e\u0000\u01b1\u01b2\u0005\'\u0000\u0000\u01b2"+ - "\u01b4\u0003<\u001e\u0000\u01b3\u01b1\u0001\u0000\u0000\u0000\u01b4\u01b7"+ - "\u0001\u0000\u0000\u0000\u01b5\u01b3\u0001\u0000\u0000\u0000\u01b5\u01b6"+ - "\u0001\u0000\u0000\u0000\u01b6?\u0001\u0000\u0000\u0000\u01b7\u01b5\u0001"+ - "\u0000\u0000\u0000\u01b8\u01b9\u0007\u0003\u0000\u0000\u01b9A\u0001\u0000"+ - "\u0000\u0000\u01ba\u01bd\u0005W\u0000\u0000\u01bb\u01bd\u0003F#\u0000"+ - "\u01bc\u01ba\u0001\u0000\u0000\u0000\u01bc\u01bb\u0001\u0000\u0000\u0000"+ - "\u01bdC\u0001\u0000\u0000\u0000\u01be\u01e9\u00052\u0000\u0000\u01bf\u01c0"+ - "\u0003h4\u0000\u01c0\u01c1\u0005J\u0000\u0000\u01c1\u01e9\u0001\u0000"+ - "\u0000\u0000\u01c2\u01e9\u0003f3\u0000\u01c3\u01e9\u0003h4\u0000\u01c4"+ - "\u01e9\u0003b1\u0000\u01c5\u01e9\u0003F#\u0000\u01c6\u01e9\u0003j5\u0000"+ - "\u01c7\u01c8\u0005H\u0000\u0000\u01c8\u01cd\u0003d2\u0000\u01c9\u01ca"+ - "\u0005\'\u0000\u0000\u01ca\u01cc\u0003d2\u0000\u01cb\u01c9\u0001\u0000"+ - "\u0000\u0000\u01cc\u01cf\u0001\u0000\u0000\u0000\u01cd\u01cb\u0001\u0000"+ - "\u0000\u0000\u01cd\u01ce\u0001\u0000\u0000\u0000\u01ce\u01d0\u0001\u0000"+ - "\u0000\u0000\u01cf\u01cd\u0001\u0000\u0000\u0000\u01d0\u01d1\u0005I\u0000"+ - "\u0000\u01d1\u01e9\u0001\u0000\u0000\u0000\u01d2\u01d3\u0005H\u0000\u0000"+ - "\u01d3\u01d8\u0003b1\u0000\u01d4\u01d5\u0005\'\u0000\u0000\u01d5\u01d7"+ - "\u0003b1\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d7\u01da\u0001\u0000"+ - "\u0000\u0000\u01d8\u01d6\u0001\u0000\u0000\u0000\u01d8\u01d9\u0001\u0000"+ - "\u0000\u0000\u01d9\u01db\u0001\u0000\u0000\u0000\u01da\u01d8\u0001\u0000"+ - "\u0000\u0000\u01db\u01dc\u0005I\u0000\u0000\u01dc\u01e9\u0001\u0000\u0000"+ - "\u0000\u01dd\u01de\u0005H\u0000\u0000\u01de\u01e3\u0003j5\u0000\u01df"+ - "\u01e0\u0005\'\u0000\u0000\u01e0\u01e2\u0003j5\u0000\u01e1\u01df\u0001"+ - "\u0000\u0000\u0000\u01e2\u01e5\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001"+ - "\u0000\u0000\u0000\u01e3\u01e4\u0001\u0000\u0000\u0000\u01e4\u01e6\u0001"+ - "\u0000\u0000\u0000\u01e5\u01e3\u0001\u0000\u0000\u0000\u01e6\u01e7\u0005"+ - "I\u0000\u0000\u01e7\u01e9\u0001\u0000\u0000\u0000\u01e8\u01be\u0001\u0000"+ - "\u0000\u0000\u01e8\u01bf\u0001\u0000\u0000\u0000\u01e8\u01c2\u0001\u0000"+ - "\u0000\u0000\u01e8\u01c3\u0001\u0000\u0000\u0000\u01e8\u01c4\u0001\u0000"+ - "\u0000\u0000\u01e8\u01c5\u0001\u0000\u0000\u0000\u01e8\u01c6\u0001\u0000"+ - "\u0000\u0000\u01e8\u01c7\u0001\u0000\u0000\u0000\u01e8\u01d2\u0001\u0000"+ - "\u0000\u0000\u01e8\u01dd\u0001\u0000\u0000\u0000\u01e9E\u0001\u0000\u0000"+ - "\u0000\u01ea\u01ed\u00055\u0000\u0000\u01eb\u01ed\u0005G\u0000\u0000\u01ec"+ - "\u01ea\u0001\u0000\u0000\u0000\u01ec\u01eb\u0001\u0000\u0000\u0000\u01ed"+ - "G\u0001\u0000\u0000\u0000\u01ee\u01f1\u0003@ \u0000\u01ef\u01f1\u0003"+ - "F#\u0000\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f0\u01ef\u0001\u0000\u0000"+ - "\u0000\u01f1I\u0001\u0000\u0000\u0000\u01f2\u01f3\u0005\t\u0000\u0000"+ - "\u01f3\u01f4\u0005\u001f\u0000\u0000\u01f4K\u0001\u0000\u0000\u0000\u01f5"+ - "\u01f6\u0005\u000e\u0000\u0000\u01f6\u01fb\u0003N\'\u0000\u01f7\u01f8"+ - "\u0005\'\u0000\u0000\u01f8\u01fa\u0003N\'\u0000\u01f9\u01f7\u0001\u0000"+ - "\u0000\u0000\u01fa\u01fd\u0001\u0000\u0000\u0000\u01fb\u01f9\u0001\u0000"+ - "\u0000\u0000\u01fb\u01fc\u0001\u0000\u0000\u0000\u01fcM\u0001\u0000\u0000"+ - "\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fe\u0200\u0003\n\u0005\u0000"+ - "\u01ff\u0201\u0007\u0004\u0000\u0000\u0200\u01ff\u0001\u0000\u0000\u0000"+ - "\u0200\u0201\u0001\u0000\u0000\u0000\u0201\u0204\u0001\u0000\u0000\u0000"+ - "\u0202\u0203\u00053\u0000\u0000\u0203\u0205\u0007\u0005\u0000\u0000\u0204"+ - "\u0202\u0001\u0000\u0000\u0000\u0204\u0205\u0001\u0000\u0000\u0000\u0205"+ - "O\u0001\u0000\u0000\u0000\u0206\u0207\u0005\b\u0000\u0000\u0207\u0208"+ - "\u0003>\u001f\u0000\u0208Q\u0001\u0000\u0000\u0000\u0209\u020a\u0005\u0002"+ - "\u0000\u0000\u020a\u020b\u0003>\u001f\u0000\u020bS\u0001\u0000\u0000\u0000"+ - "\u020c\u020d\u0005\u000b\u0000\u0000\u020d\u0212\u0003V+\u0000\u020e\u020f"+ - "\u0005\'\u0000\u0000\u020f\u0211\u0003V+\u0000\u0210\u020e\u0001\u0000"+ - "\u0000\u0000\u0211\u0214\u0001\u0000\u0000\u0000\u0212\u0210\u0001\u0000"+ - "\u0000\u0000\u0212\u0213\u0001\u0000\u0000\u0000\u0213U\u0001\u0000\u0000"+ - "\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0215\u0216\u0003<\u001e\u0000"+ - "\u0216\u0217\u0005[\u0000\u0000\u0217\u0218\u0003<\u001e\u0000\u0218W"+ - "\u0001\u0000\u0000\u0000\u0219\u021a\u0005\u0001\u0000\u0000\u021a\u021b"+ - "\u0003\u0014\n\u0000\u021b\u021d\u0003j5\u0000\u021c\u021e\u0003^/\u0000"+ - "\u021d\u021c\u0001\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000"+ - "\u021eY\u0001\u0000\u0000\u0000\u021f\u0220\u0005\u0007\u0000\u0000\u0220"+ - "\u0221\u0003\u0014\n\u0000\u0221\u0222\u0003j5\u0000\u0222[\u0001\u0000"+ - "\u0000\u0000\u0223\u0224\u0005\n\u0000\u0000\u0224\u0225\u0003:\u001d"+ - "\u0000\u0225]\u0001\u0000\u0000\u0000\u0226\u022b\u0003`0\u0000\u0227"+ - "\u0228\u0005\'\u0000\u0000\u0228\u022a\u0003`0\u0000\u0229\u0227\u0001"+ - "\u0000\u0000\u0000\u022a\u022d\u0001\u0000\u0000\u0000\u022b\u0229\u0001"+ - "\u0000\u0000\u0000\u022b\u022c\u0001\u0000\u0000\u0000\u022c_\u0001\u0000"+ - "\u0000\u0000\u022d\u022b\u0001\u0000\u0000\u0000\u022e\u022f\u0003@ \u0000"+ - "\u022f\u0230\u0005$\u0000\u0000\u0230\u0231\u0003D\"\u0000\u0231a\u0001"+ - "\u0000\u0000\u0000\u0232\u0233\u0007\u0006\u0000\u0000\u0233c\u0001\u0000"+ - "\u0000\u0000\u0234\u0237\u0003f3\u0000\u0235\u0237\u0003h4\u0000\u0236"+ - "\u0234\u0001\u0000\u0000\u0000\u0236\u0235\u0001\u0000\u0000\u0000\u0237"+ - "e\u0001\u0000\u0000\u0000\u0238\u023a\u0007\u0000\u0000\u0000\u0239\u0238"+ - "\u0001\u0000\u0000\u0000\u0239\u023a\u0001\u0000\u0000\u0000\u023a\u023b"+ - "\u0001\u0000\u0000\u0000\u023b\u023c\u0005 \u0000\u0000\u023cg\u0001\u0000"+ - "\u0000\u0000\u023d\u023f\u0007\u0000\u0000\u0000\u023e\u023d\u0001\u0000"+ - "\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240\u0001\u0000"+ - "\u0000\u0000\u0240\u0241\u0005\u001f\u0000\u0000\u0241i\u0001\u0000\u0000"+ - "\u0000\u0242\u0243\u0005\u001e\u0000\u0000\u0243k\u0001\u0000\u0000\u0000"+ - "\u0244\u0245\u0007\u0007\u0000\u0000\u0245m\u0001\u0000\u0000\u0000\u0246"+ - "\u0247\u0005\u0005\u0000\u0000\u0247\u0248\u0003p8\u0000\u0248o\u0001"+ - "\u0000\u0000\u0000\u0249\u024a\u0005H\u0000\u0000\u024a\u024b\u0003\u0002"+ - "\u0001\u0000\u024b\u024c\u0005I\u0000\u0000\u024cq\u0001\u0000\u0000\u0000"+ - "\u024d\u024e\u0005\r\u0000\u0000\u024e\u024f\u0005k\u0000\u0000\u024f"+ - "s\u0001\u0000\u0000\u0000\u0250\u0251\u0005\u0003\u0000\u0000\u0251\u0254"+ - "\u0005a\u0000\u0000\u0252\u0253\u0005_\u0000\u0000\u0253\u0255\u0003<"+ - "\u001e\u0000\u0254\u0252\u0001\u0000\u0000\u0000\u0254\u0255\u0001\u0000"+ - "\u0000\u0000\u0255\u025f\u0001\u0000\u0000\u0000\u0256\u0257\u0005`\u0000"+ - "\u0000\u0257\u025c\u0003v;\u0000\u0258\u0259\u0005\'\u0000\u0000\u0259"+ - "\u025b\u0003v;\u0000\u025a\u0258\u0001\u0000\u0000\u0000\u025b\u025e\u0001"+ - "\u0000\u0000\u0000\u025c\u025a\u0001\u0000\u0000\u0000\u025c\u025d\u0001"+ - "\u0000\u0000\u0000\u025d\u0260\u0001\u0000\u0000\u0000\u025e\u025c\u0001"+ - "\u0000\u0000\u0000\u025f\u0256\u0001\u0000\u0000\u0000\u025f\u0260\u0001"+ - "\u0000\u0000\u0000\u0260u\u0001\u0000\u0000\u0000\u0261\u0262\u0003<\u001e"+ - "\u0000\u0262\u0263\u0005$\u0000\u0000\u0263\u0265\u0001\u0000\u0000\u0000"+ - "\u0264\u0261\u0001\u0000\u0000\u0000\u0264\u0265\u0001\u0000\u0000\u0000"+ - "\u0265\u0266\u0001\u0000\u0000\u0000\u0266\u0267\u0003<\u001e\u0000\u0267"+ - "w\u0001\u0000\u0000\u0000\u0268\u0269\u0005\u0014\u0000\u0000\u0269\u026a"+ - "\u0003(\u0014\u0000\u026a\u026b\u0005_\u0000\u0000\u026b\u026c\u0003>"+ - "\u001f\u0000\u026cy\u0001\u0000\u0000\u0000\u026d\u026e\u0005\u0012\u0000"+ - "\u0000\u026e\u0271\u00036\u001b\u0000\u026f\u0270\u0005!\u0000\u0000\u0270"+ - "\u0272\u0003\"\u0011\u0000\u0271\u026f\u0001\u0000\u0000\u0000\u0271\u0272"+ - "\u0001\u0000\u0000\u0000\u0272{\u0001\u0000\u0000\u0000\u0273\u0274\u0007"+ - "\b\u0000\u0000\u0274\u0275\u0005y\u0000\u0000\u0275\u0276\u0003~?\u0000"+ - "\u0276\u0277\u0003\u0080@\u0000\u0277}\u0001\u0000\u0000\u0000\u0278\u0279"+ - "\u0003(\u0014\u0000\u0279\u007f\u0001\u0000\u0000\u0000\u027a\u027b\u0005"+ - "_\u0000\u0000\u027b\u0280\u0003\u0082A\u0000\u027c\u027d\u0005\'\u0000"+ - "\u0000\u027d\u027f\u0003\u0082A\u0000\u027e\u027c\u0001\u0000\u0000\u0000"+ - "\u027f\u0282\u0001\u0000\u0000\u0000\u0280\u027e\u0001\u0000\u0000\u0000"+ - "\u0280\u0281\u0001\u0000\u0000\u0000\u0281\u0081\u0001\u0000\u0000\u0000"+ - "\u0282\u0280\u0001\u0000\u0000\u0000\u0283\u0284\u0003\u0010\b\u0000\u0284"+ - "\u0083\u0001\u0000\u0000\u0000\u0285\u0286\u0005\u0013\u0000\u0000\u0286"+ - "\u0287\u0003>\u001f\u0000\u0287\u0085\u0001\u0000\u0000\u0000=\u0091\u009a"+ - "\u00af\u00bb\u00c4\u00cc\u00d1\u00d9\u00db\u00e0\u00e7\u00ec\u00f1\u00fb"+ - "\u0101\u0109\u010b\u0116\u011d\u0128\u012d\u012f\u013b\u014e\u0154\u015e"+ - "\u0162\u0167\u0175\u017e\u0182\u0186\u018d\u0191\u0198\u019e\u01a5\u01ad"+ - "\u01b5\u01bc\u01cd\u01d8\u01e3\u01e8\u01ec\u01f0\u01fb\u0200\u0204\u0212"+ - "\u021d\u022b\u0236\u0239\u023e\u0254\u025c\u025f\u0264\u0271\u0280"; + "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007"+ + "\u0001\u0007\u0001\u0007\u0005\u0007\u00bd\b\u0007\n\u0007\f\u0007\u00c0"+ + "\t\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00c5\b\b\u0001\b\u0001\b\u0001"+ + "\t\u0001\t\u0001\t\u0001\t\u0005\t\u00cd\b\t\n\t\f\t\u00d0\t\t\u0001\t"+ + "\u0003\t\u00d3\b\t\u0001\n\u0001\n\u0001\n\u0003\n\u00d8\b\n\u0001\n\u0001"+ + "\n\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001"+ + "\r\u0005\r\u00e4\b\r\n\r\f\r\u00e7\t\r\u0001\u000e\u0001\u000e\u0001\u000e"+ + "\u0001\u000e\u0005\u000e\u00ed\b\u000e\n\u000e\f\u000e\u00f0\t\u000e\u0001"+ + "\u000e\u0003\u000e\u00f3\b\u000e\u0001\u000e\u0001\u000e\u0003\u000e\u00f7"+ + "\b\u000e\u0001\u000f\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0003"+ + "\u0010\u00fe\b\u0010\u0001\u0010\u0001\u0010\u0003\u0010\u0102\b\u0010"+ + "\u0001\u0011\u0001\u0011\u0001\u0011\u0005\u0011\u0107\b\u0011\n\u0011"+ + "\f\u0011\u010a\t\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012"+ + "\u010f\b\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0114\b"+ + "\u0013\n\u0013\f\u0013\u0117\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014"+ + "\u0005\u0014\u011c\b\u0014\n\u0014\f\u0014\u011f\t\u0014\u0001\u0015\u0001"+ + "\u0015\u0001\u0015\u0005\u0015\u0124\b\u0015\n\u0015\f\u0015\u0127\t\u0015"+ + "\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0003\u0017\u012d\b\u0017"+ + "\u0001\u0018\u0001\u0018\u0003\u0018\u0131\b\u0018\u0001\u0019\u0001\u0019"+ + "\u0003\u0019\u0135\b\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b"+ + "\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u013e\b\u001b\n\u001b"+ + "\f\u001b\u0141\t\u001b\u0001\u001c\u0001\u001c\u0003\u001c\u0145\b\u001c"+ + "\u0001\u001c\u0001\u001c\u0003\u001c\u0149\b\u001c\u0001\u001d\u0001\u001d"+ + "\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f"+ + "\u0001\u001f\u0001\u001f\u0005\u001f\u0155\b\u001f\n\u001f\f\u001f\u0158"+ + "\t\u001f\u0001 \u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001!\u0003"+ + "!\u0162\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001#\u0001"+ + "$\u0001$\u0001$\u0005$\u016e\b$\n$\f$\u0171\t$\u0001%\u0001%\u0001%\u0001"+ + "%\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001"+ + "(\u0001)\u0001)\u0001)\u0001)\u0003)\u0185\b)\u0001)\u0001)\u0001)\u0001"+ + ")\u0005)\u018b\b)\n)\f)\u018e\t)\u0003)\u0190\b)\u0001*\u0001*\u0001*"+ + "\u0003*\u0195\b*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001+\u0001+\u0001"+ + ",\u0001,\u0001,\u0001,\u0003,\u01a2\b,\u0001-\u0001-\u0001-\u0001-\u0001"+ + "-\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0005/\u01af\b/\n/\f/\u01b2"+ + "\t/\u00010\u00010\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u0001"+ + "2\u00012\u00012\u00032\u01c0\b2\u00012\u00012\u00012\u00012\u00012\u0005"+ + "2\u01c7\b2\n2\f2\u01ca\t2\u00012\u00012\u00012\u00012\u00012\u00032\u01d1"+ + "\b2\u00012\u00012\u00012\u00032\u01d6\b2\u00012\u00012\u00012\u00012\u0001"+ + "2\u00012\u00052\u01de\b2\n2\f2\u01e1\t2\u00013\u00013\u00033\u01e5\b3"+ + "\u00013\u00013\u00013\u00013\u00013\u00033\u01ec\b3\u00013\u00013\u0001"+ + "3\u00033\u01f1\b3\u00014\u00014\u00014\u00034\u01f6\b4\u00014\u00014\u0001"+ + "4\u00015\u00015\u00015\u00015\u00015\u00035\u0200\b5\u00016\u00016\u0001"+ + "6\u00016\u00036\u0206\b6\u00016\u00016\u00016\u00016\u00016\u00016\u0005"+ + "6\u020e\b6\n6\f6\u0211\t6\u00017\u00017\u00017\u00017\u00017\u00017\u0001"+ + "7\u00017\u00037\u021b\b7\u00017\u00017\u00017\u00057\u0220\b7\n7\f7\u0223"+ + "\t7\u00018\u00018\u00018\u00018\u00018\u00018\u00058\u022b\b8\n8\f8\u022e"+ + "\t8\u00018\u00018\u00038\u0232\b8\u00038\u0234\b8\u00018\u00018\u0001"+ + "9\u00019\u0001:\u0001:\u0001:\u0001:\u0005:\u023e\b:\n:\f:\u0241\t:\u0001"+ + ":\u0001:\u0001;\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001"+ + "<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u0256"+ + "\b<\n<\f<\u0259\t<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u0261"+ + "\b<\n<\f<\u0264\t<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u026c"+ + "\b<\n<\f<\u026f\t<\u0001<\u0001<\u0003<\u0273\b<\u0001=\u0001=\u0001>"+ + "\u0001>\u0003>\u0279\b>\u0001?\u0003?\u027c\b?\u0001?\u0001?\u0001@\u0003"+ + "@\u0281\b@\u0001@\u0001@\u0001A\u0001A\u0001B\u0001B\u0001B\u0000\u0004"+ + "\u0002dlnC\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016"+ + "\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprt"+ + "vxz|~\u0080\u0082\u0084\u0000\t\u0002\u000022dd\u0001\u0000^_\u0002\u0000"+ + "77<<\u0002\u0000??BB\u0002\u0000\u0011\u0011\u0013\u0014\u0001\u0000R"+ + "S\u0001\u0000TV\u0002\u0000>>JJ\u0002\u0000KKMQ\u02a2\u0000\u0086\u0001"+ + "\u0000\u0000\u0000\u0002\u0089\u0001\u0000\u0000\u0000\u0004\u009a\u0001"+ + "\u0000\u0000\u0000\u0006\u00af\u0001\u0000\u0000\u0000\b\u00b1\u0001\u0000"+ + "\u0000\u0000\n\u00b4\u0001\u0000\u0000\u0000\f\u00b6\u0001\u0000\u0000"+ + "\u0000\u000e\u00b9\u0001\u0000\u0000\u0000\u0010\u00c4\u0001\u0000\u0000"+ + "\u0000\u0012\u00c8\u0001\u0000\u0000\u0000\u0014\u00d7\u0001\u0000\u0000"+ + "\u0000\u0016\u00db\u0001\u0000\u0000\u0000\u0018\u00dd\u0001\u0000\u0000"+ + "\u0000\u001a\u00df\u0001\u0000\u0000\u0000\u001c\u00e8\u0001\u0000\u0000"+ + "\u0000\u001e\u00f8\u0001\u0000\u0000\u0000 \u00fb\u0001\u0000\u0000\u0000"+ + "\"\u0103\u0001\u0000\u0000\u0000$\u010b\u0001\u0000\u0000\u0000&\u0110"+ + "\u0001\u0000\u0000\u0000(\u0118\u0001\u0000\u0000\u0000*\u0120\u0001\u0000"+ + "\u0000\u0000,\u0128\u0001\u0000\u0000\u0000.\u012c\u0001\u0000\u0000\u0000"+ + "0\u0130\u0001\u0000\u0000\u00002\u0134\u0001\u0000\u0000\u00004\u0136"+ + "\u0001\u0000\u0000\u00006\u0139\u0001\u0000\u0000\u00008\u0142\u0001\u0000"+ + "\u0000\u0000:\u014a\u0001\u0000\u0000\u0000<\u014d\u0001\u0000\u0000\u0000"+ + ">\u0150\u0001\u0000\u0000\u0000@\u0159\u0001\u0000\u0000\u0000B\u015d"+ + "\u0001\u0000\u0000\u0000D\u0163\u0001\u0000\u0000\u0000F\u0167\u0001\u0000"+ + "\u0000\u0000H\u016a\u0001\u0000\u0000\u0000J\u0172\u0001\u0000\u0000\u0000"+ + "L\u0176\u0001\u0000\u0000\u0000N\u0179\u0001\u0000\u0000\u0000P\u017d"+ + "\u0001\u0000\u0000\u0000R\u0180\u0001\u0000\u0000\u0000T\u0194\u0001\u0000"+ + "\u0000\u0000V\u0198\u0001\u0000\u0000\u0000X\u019d\u0001\u0000\u0000\u0000"+ + "Z\u01a3\u0001\u0000\u0000\u0000\\\u01a8\u0001\u0000\u0000\u0000^\u01aa"+ + "\u0001\u0000\u0000\u0000`\u01b3\u0001\u0000\u0000\u0000b\u01b5\u0001\u0000"+ + "\u0000\u0000d\u01d5\u0001\u0000\u0000\u0000f\u01f0\u0001\u0000\u0000\u0000"+ + "h\u01f2\u0001\u0000\u0000\u0000j\u01ff\u0001\u0000\u0000\u0000l\u0205"+ + "\u0001\u0000\u0000\u0000n\u021a\u0001\u0000\u0000\u0000p\u0224\u0001\u0000"+ + "\u0000\u0000r\u0237\u0001\u0000\u0000\u0000t\u0239\u0001\u0000\u0000\u0000"+ + "v\u0244\u0001\u0000\u0000\u0000x\u0272\u0001\u0000\u0000\u0000z\u0274"+ + "\u0001\u0000\u0000\u0000|\u0278\u0001\u0000\u0000\u0000~\u027b\u0001\u0000"+ + "\u0000\u0000\u0080\u0280\u0001\u0000\u0000\u0000\u0082\u0284\u0001\u0000"+ + "\u0000\u0000\u0084\u0286\u0001\u0000\u0000\u0000\u0086\u0087\u0003\u0002"+ + "\u0001\u0000\u0087\u0088\u0005\u0000\u0000\u0001\u0088\u0001\u0001\u0000"+ + "\u0000\u0000\u0089\u008a\u0006\u0001\uffff\uffff\u0000\u008a\u008b\u0003"+ + "\u0004\u0002\u0000\u008b\u0091\u0001\u0000\u0000\u0000\u008c\u008d\n\u0001"+ + "\u0000\u0000\u008d\u008e\u00051\u0000\u0000\u008e\u0090\u0003\u0006\u0003"+ + "\u0000\u008f\u008c\u0001\u0000\u0000\u0000\u0090\u0093\u0001\u0000\u0000"+ + "\u0000\u0091\u008f\u0001\u0000\u0000\u0000\u0091\u0092\u0001\u0000\u0000"+ + "\u0000\u0092\u0003\u0001\u0000\u0000\u0000\u0093\u0091\u0001\u0000\u0000"+ + "\u0000\u0094\u009b\u0003L&\u0000\u0095\u009b\u0003\u0012\t\u0000\u0096"+ + "\u009b\u0003\f\u0006\u0000\u0097\u009b\u0003P(\u0000\u0098\u0099\u0004"+ + "\u0002\u0001\u0000\u0099\u009b\u0003\u001c\u000e\u0000\u009a\u0094\u0001"+ + "\u0000\u0000\u0000\u009a\u0095\u0001\u0000\u0000\u0000\u009a\u0096\u0001"+ + "\u0000\u0000\u0000\u009a\u0097\u0001\u0000\u0000\u0000\u009a\u0098\u0001"+ + "\u0000\u0000\u0000\u009b\u0005\u0001\u0000\u0000\u0000\u009c\u00b0\u0003"+ + "\u001e\u000f\u0000\u009d\u00b0\u0003\b\u0004\u0000\u009e\u00b0\u0003:"+ + "\u001d\u0000\u009f\u00b0\u00034\u001a\u0000\u00a0\u00b0\u0003 \u0010\u0000"+ + "\u00a1\u00b0\u00036\u001b\u0000\u00a2\u00b0\u0003<\u001e\u0000\u00a3\u00b0"+ + "\u0003>\u001f\u0000\u00a4\u00b0\u0003B!\u0000\u00a5\u00b0\u0003D\"\u0000"+ + "\u00a6\u00b0\u0003R)\u0000\u00a7\u00b0\u0003F#\u0000\u00a8\u00b0\u0003"+ + "Z-\u0000\u00a9\u00aa\u0004\u0003\u0002\u0000\u00aa\u00b0\u0003X,\u0000"+ + "\u00ab\u00ac\u0004\u0003\u0003\u0000\u00ac\u00b0\u0003V+\u0000\u00ad\u00ae"+ + "\u0004\u0003\u0004\u0000\u00ae\u00b0\u0003b1\u0000\u00af\u009c\u0001\u0000"+ + "\u0000\u0000\u00af\u009d\u0001\u0000\u0000\u0000\u00af\u009e\u0001\u0000"+ + "\u0000\u0000\u00af\u009f\u0001\u0000\u0000\u0000\u00af\u00a0\u0001\u0000"+ + "\u0000\u0000\u00af\u00a1\u0001\u0000\u0000\u0000\u00af\u00a2\u0001\u0000"+ + "\u0000\u0000\u00af\u00a3\u0001\u0000\u0000\u0000\u00af\u00a4\u0001\u0000"+ + "\u0000\u0000\u00af\u00a5\u0001\u0000\u0000\u0000\u00af\u00a6\u0001\u0000"+ + "\u0000\u0000\u00af\u00a7\u0001\u0000\u0000\u0000\u00af\u00a8\u0001\u0000"+ + "\u0000\u0000\u00af\u00a9\u0001\u0000\u0000\u0000\u00af\u00ab\u0001\u0000"+ + "\u0000\u0000\u00af\u00ad\u0001\u0000\u0000\u0000\u00b0\u0007\u0001\u0000"+ + "\u0000\u0000\u00b1\u00b2\u0005\u000e\u0000\u0000\u00b2\u00b3\u0003d2\u0000"+ + "\u00b3\t\u0001\u0000\u0000\u0000\u00b4\u00b5\u0003,\u0016\u0000\u00b5"+ + "\u000b\u0001\u0000\u0000\u0000\u00b6\u00b7\u0005\u000b\u0000\u0000\u00b7"+ + "\u00b8\u0003\u000e\u0007\u0000\u00b8\r\u0001\u0000\u0000\u0000\u00b9\u00be"+ + "\u0003\u0010\b\u0000\u00ba\u00bb\u0005;\u0000\u0000\u00bb\u00bd\u0003"+ + "\u0010\b\u0000\u00bc\u00ba\u0001\u0000\u0000\u0000\u00bd\u00c0\u0001\u0000"+ + "\u0000\u0000\u00be\u00bc\u0001\u0000\u0000\u0000\u00be\u00bf\u0001\u0000"+ + "\u0000\u0000\u00bf\u000f\u0001\u0000\u0000\u0000\u00c0\u00be\u0001\u0000"+ + "\u0000\u0000\u00c1\u00c2\u0003&\u0013\u0000\u00c2\u00c3\u00058\u0000\u0000"+ + "\u00c3\u00c5\u0001\u0000\u0000\u0000\u00c4\u00c1\u0001\u0000\u0000\u0000"+ + "\u00c4\u00c5\u0001\u0000\u0000\u0000\u00c5\u00c6\u0001\u0000\u0000\u0000"+ + "\u00c6\u00c7\u0003d2\u0000\u00c7\u0011\u0001\u0000\u0000\u0000\u00c8\u00c9"+ + "\u0005\u0010\u0000\u0000\u00c9\u00ce\u0003\u0014\n\u0000\u00ca\u00cb\u0005"+ + ";\u0000\u0000\u00cb\u00cd\u0003\u0014\n\u0000\u00cc\u00ca\u0001\u0000"+ + "\u0000\u0000\u00cd\u00d0\u0001\u0000\u0000\u0000\u00ce\u00cc\u0001\u0000"+ + "\u0000\u0000\u00ce\u00cf\u0001\u0000\u0000\u0000\u00cf\u00d2\u0001\u0000"+ + "\u0000\u0000\u00d0\u00ce\u0001\u0000\u0000\u0000\u00d1\u00d3\u0003\u001a"+ + "\r\u0000\u00d2\u00d1\u0001\u0000\u0000\u0000\u00d2\u00d3\u0001\u0000\u0000"+ + "\u0000\u00d3\u0013\u0001\u0000\u0000\u0000\u00d4\u00d5\u0003\u0016\u000b"+ + "\u0000\u00d5\u00d6\u0005:\u0000\u0000\u00d6\u00d8\u0001\u0000\u0000\u0000"+ + "\u00d7\u00d4\u0001\u0000\u0000\u0000\u00d7\u00d8\u0001\u0000\u0000\u0000"+ + "\u00d8\u00d9\u0001\u0000\u0000\u0000\u00d9\u00da\u0003\u0018\f\u0000\u00da"+ + "\u0015\u0001\u0000\u0000\u0000\u00db\u00dc\u0007\u0000\u0000\u0000\u00dc"+ + "\u0017\u0001\u0000\u0000\u0000\u00dd\u00de\u0007\u0000\u0000\u0000\u00de"+ + "\u0019\u0001\u0000\u0000\u0000\u00df\u00e0\u0005c\u0000\u0000\u00e0\u00e5"+ + "\u0005d\u0000\u0000\u00e1\u00e2\u0005;\u0000\u0000\u00e2\u00e4\u0005d"+ + "\u0000\u0000\u00e3\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e7\u0001\u0000"+ + "\u0000\u0000\u00e5\u00e3\u0001\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000"+ + "\u0000\u0000\u00e6\u001b\u0001\u0000\u0000\u0000\u00e7\u00e5\u0001\u0000"+ + "\u0000\u0000\u00e8\u00e9\u0005\u0016\u0000\u0000\u00e9\u00ee\u0003\u0014"+ + "\n\u0000\u00ea\u00eb\u0005;\u0000\u0000\u00eb\u00ed\u0003\u0014\n\u0000"+ + "\u00ec\u00ea\u0001\u0000\u0000\u0000\u00ed\u00f0\u0001\u0000\u0000\u0000"+ + "\u00ee\u00ec\u0001\u0000\u0000\u0000\u00ee\u00ef\u0001\u0000\u0000\u0000"+ + "\u00ef\u00f2\u0001\u0000\u0000\u0000\u00f0\u00ee\u0001\u0000\u0000\u0000"+ + "\u00f1\u00f3\u0003\"\u0011\u0000\u00f2\u00f1\u0001\u0000\u0000\u0000\u00f2"+ + "\u00f3\u0001\u0000\u0000\u0000\u00f3\u00f6\u0001\u0000\u0000\u0000\u00f4"+ + "\u00f5\u00055\u0000\u0000\u00f5\u00f7\u0003\u000e\u0007\u0000\u00f6\u00f4"+ + "\u0001\u0000\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u001d"+ + "\u0001\u0000\u0000\u0000\u00f8\u00f9\u0005\b\u0000\u0000\u00f9\u00fa\u0003"+ + "\u000e\u0007\u0000\u00fa\u001f\u0001\u0000\u0000\u0000\u00fb\u00fd\u0005"+ + "\r\u0000\u0000\u00fc\u00fe\u0003\"\u0011\u0000\u00fd\u00fc\u0001\u0000"+ + "\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0101\u0001\u0000"+ + "\u0000\u0000\u00ff\u0100\u00055\u0000\u0000\u0100\u0102\u0003\u000e\u0007"+ + "\u0000\u0101\u00ff\u0001\u0000\u0000\u0000\u0101\u0102\u0001\u0000\u0000"+ + "\u0000\u0102!\u0001\u0000\u0000\u0000\u0103\u0108\u0003$\u0012\u0000\u0104"+ + "\u0105\u0005;\u0000\u0000\u0105\u0107\u0003$\u0012\u0000\u0106\u0104\u0001"+ + "\u0000\u0000\u0000\u0107\u010a\u0001\u0000\u0000\u0000\u0108\u0106\u0001"+ + "\u0000\u0000\u0000\u0108\u0109\u0001\u0000\u0000\u0000\u0109#\u0001\u0000"+ + "\u0000\u0000\u010a\u0108\u0001\u0000\u0000\u0000\u010b\u010e\u0003\u0010"+ + "\b\u0000\u010c\u010d\u0005\u000e\u0000\u0000\u010d\u010f\u0003d2\u0000"+ + "\u010e\u010c\u0001\u0000\u0000\u0000\u010e\u010f\u0001\u0000\u0000\u0000"+ + "\u010f%\u0001\u0000\u0000\u0000\u0110\u0115\u00032\u0019\u0000\u0111\u0112"+ + "\u0005=\u0000\u0000\u0112\u0114\u00032\u0019\u0000\u0113\u0111\u0001\u0000"+ + "\u0000\u0000\u0114\u0117\u0001\u0000\u0000\u0000\u0115\u0113\u0001\u0000"+ + "\u0000\u0000\u0115\u0116\u0001\u0000\u0000\u0000\u0116\'\u0001\u0000\u0000"+ + "\u0000\u0117\u0115\u0001\u0000\u0000\u0000\u0118\u011d\u0003.\u0017\u0000"+ + "\u0119\u011a\u0005=\u0000\u0000\u011a\u011c\u0003.\u0017\u0000\u011b\u0119"+ + "\u0001\u0000\u0000\u0000\u011c\u011f\u0001\u0000\u0000\u0000\u011d\u011b"+ + "\u0001\u0000\u0000\u0000\u011d\u011e\u0001\u0000\u0000\u0000\u011e)\u0001"+ + "\u0000\u0000\u0000\u011f\u011d\u0001\u0000\u0000\u0000\u0120\u0125\u0003"+ + "(\u0014\u0000\u0121\u0122\u0005;\u0000\u0000\u0122\u0124\u0003(\u0014"+ + "\u0000\u0123\u0121\u0001\u0000\u0000\u0000\u0124\u0127\u0001\u0000\u0000"+ + "\u0000\u0125\u0123\u0001\u0000\u0000\u0000\u0125\u0126\u0001\u0000\u0000"+ + "\u0000\u0126+\u0001\u0000\u0000\u0000\u0127\u0125\u0001\u0000\u0000\u0000"+ + "\u0128\u0129\u0007\u0001\u0000\u0000\u0129-\u0001\u0000\u0000\u0000\u012a"+ + "\u012d\u0005|\u0000\u0000\u012b\u012d\u00030\u0018\u0000\u012c\u012a\u0001"+ + "\u0000\u0000\u0000\u012c\u012b\u0001\u0000\u0000\u0000\u012d/\u0001\u0000"+ + "\u0000\u0000\u012e\u0131\u0005H\u0000\u0000\u012f\u0131\u0005Y\u0000\u0000"+ + "\u0130\u012e\u0001\u0000\u0000\u0000\u0130\u012f\u0001\u0000\u0000\u0000"+ + "\u01311\u0001\u0000\u0000\u0000\u0132\u0135\u0003,\u0016\u0000\u0133\u0135"+ + "\u00030\u0018\u0000\u0134\u0132\u0001\u0000\u0000\u0000\u0134\u0133\u0001"+ + "\u0000\u0000\u0000\u01353\u0001\u0000\u0000\u0000\u0136\u0137\u0005\n"+ + "\u0000\u0000\u0137\u0138\u00053\u0000\u0000\u01385\u0001\u0000\u0000\u0000"+ + "\u0139\u013a\u0005\f\u0000\u0000\u013a\u013f\u00038\u001c\u0000\u013b"+ + "\u013c\u0005;\u0000\u0000\u013c\u013e\u00038\u001c\u0000\u013d\u013b\u0001"+ + "\u0000\u0000\u0000\u013e\u0141\u0001\u0000\u0000\u0000\u013f\u013d\u0001"+ + "\u0000\u0000\u0000\u013f\u0140\u0001\u0000\u0000\u0000\u01407\u0001\u0000"+ + "\u0000\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0142\u0144\u0003d2\u0000"+ + "\u0143\u0145\u0007\u0002\u0000\u0000\u0144\u0143\u0001\u0000\u0000\u0000"+ + "\u0144\u0145\u0001\u0000\u0000\u0000\u0145\u0148\u0001\u0000\u0000\u0000"+ + "\u0146\u0147\u0005F\u0000\u0000\u0147\u0149\u0007\u0003\u0000\u0000\u0148"+ + "\u0146\u0001\u0000\u0000\u0000\u0148\u0149\u0001\u0000\u0000\u0000\u0149"+ + "9\u0001\u0000\u0000\u0000\u014a\u014b\u0005\u0019\u0000\u0000\u014b\u014c"+ + "\u0003*\u0015\u0000\u014c;\u0001\u0000\u0000\u0000\u014d\u014e\u0005\u0018"+ + "\u0000\u0000\u014e\u014f\u0003*\u0015\u0000\u014f=\u0001\u0000\u0000\u0000"+ + "\u0150\u0151\u0005\u001b\u0000\u0000\u0151\u0156\u0003@ \u0000\u0152\u0153"+ + "\u0005;\u0000\u0000\u0153\u0155\u0003@ \u0000\u0154\u0152\u0001\u0000"+ + "\u0000\u0000\u0155\u0158\u0001\u0000\u0000\u0000\u0156\u0154\u0001\u0000"+ + "\u0000\u0000\u0156\u0157\u0001\u0000\u0000\u0000\u0157?\u0001\u0000\u0000"+ + "\u0000\u0158\u0156\u0001\u0000\u0000\u0000\u0159\u015a\u0003(\u0014\u0000"+ + "\u015a\u015b\u0005\u0080\u0000\u0000\u015b\u015c\u0003(\u0014\u0000\u015c"+ + "A\u0001\u0000\u0000\u0000\u015d\u015e\u0005\u0007\u0000\u0000\u015e\u015f"+ + "\u0003n7\u0000\u015f\u0161\u0003\u0082A\u0000\u0160\u0162\u0003H$\u0000"+ + "\u0161\u0160\u0001\u0000\u0000\u0000\u0161\u0162\u0001\u0000\u0000\u0000"+ + "\u0162C\u0001\u0000\u0000\u0000\u0163\u0164\u0005\t\u0000\u0000\u0164"+ + "\u0165\u0003n7\u0000\u0165\u0166\u0003\u0082A\u0000\u0166E\u0001\u0000"+ + "\u0000\u0000\u0167\u0168\u0005\u0017\u0000\u0000\u0168\u0169\u0003&\u0013"+ + "\u0000\u0169G\u0001\u0000\u0000\u0000\u016a\u016f\u0003J%\u0000\u016b"+ + "\u016c\u0005;\u0000\u0000\u016c\u016e\u0003J%\u0000\u016d\u016b\u0001"+ + "\u0000\u0000\u0000\u016e\u0171\u0001\u0000\u0000\u0000\u016f\u016d\u0001"+ + "\u0000\u0000\u0000\u016f\u0170\u0001\u0000\u0000\u0000\u0170I\u0001\u0000"+ + "\u0000\u0000\u0171\u016f\u0001\u0000\u0000\u0000\u0172\u0173\u0003,\u0016"+ + "\u0000\u0173\u0174\u00058\u0000\u0000\u0174\u0175\u0003x<\u0000\u0175"+ + "K\u0001\u0000\u0000\u0000\u0176\u0177\u0005\u0006\u0000\u0000\u0177\u0178"+ + "\u0003N\'\u0000\u0178M\u0001\u0000\u0000\u0000\u0179\u017a\u0005Z\u0000"+ + "\u0000\u017a\u017b\u0003\u0002\u0001\u0000\u017b\u017c\u0005[\u0000\u0000"+ + "\u017cO\u0001\u0000\u0000\u0000\u017d\u017e\u0005\u001c\u0000\u0000\u017e"+ + "\u017f\u0005\u0084\u0000\u0000\u017fQ\u0001\u0000\u0000\u0000\u0180\u0181"+ + "\u0005\u0005\u0000\u0000\u0181\u0184\u0005#\u0000\u0000\u0182\u0183\u0005"+ + "!\u0000\u0000\u0183\u0185\u0003(\u0014\u0000\u0184\u0182\u0001\u0000\u0000"+ + "\u0000\u0184\u0185\u0001\u0000\u0000\u0000\u0185\u018f\u0001\u0000\u0000"+ + "\u0000\u0186\u0187\u0005\"\u0000\u0000\u0187\u018c\u0003T*\u0000\u0188"+ + "\u0189\u0005;\u0000\u0000\u0189\u018b\u0003T*\u0000\u018a\u0188\u0001"+ + "\u0000\u0000\u0000\u018b\u018e\u0001\u0000\u0000\u0000\u018c\u018a\u0001"+ + "\u0000\u0000\u0000\u018c\u018d\u0001\u0000\u0000\u0000\u018d\u0190\u0001"+ + "\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018f\u0186\u0001"+ + "\u0000\u0000\u0000\u018f\u0190\u0001\u0000\u0000\u0000\u0190S\u0001\u0000"+ + "\u0000\u0000\u0191\u0192\u0003(\u0014\u0000\u0192\u0193\u00058\u0000\u0000"+ + "\u0193\u0195\u0001\u0000\u0000\u0000\u0194\u0191\u0001\u0000\u0000\u0000"+ + "\u0194\u0195\u0001\u0000\u0000\u0000\u0195\u0196\u0001\u0000\u0000\u0000"+ + "\u0196\u0197\u0003(\u0014\u0000\u0197U\u0001\u0000\u0000\u0000\u0198\u0199"+ + "\u0005\u0015\u0000\u0000\u0199\u019a\u0003\u0014\n\u0000\u019a\u019b\u0005"+ + "!\u0000\u0000\u019b\u019c\u0003*\u0015\u0000\u019cW\u0001\u0000\u0000"+ + "\u0000\u019d\u019e\u0005\u000f\u0000\u0000\u019e\u01a1\u0003\"\u0011\u0000"+ + "\u019f\u01a0\u00055\u0000\u0000\u01a0\u01a2\u0003\u000e\u0007\u0000\u01a1"+ + "\u019f\u0001\u0000\u0000\u0000\u01a1\u01a2\u0001\u0000\u0000\u0000\u01a2"+ + "Y\u0001\u0000\u0000\u0000\u01a3\u01a4\u0007\u0004\u0000\u0000\u01a4\u01a5"+ + "\u0005h\u0000\u0000\u01a5\u01a6\u0003\\.\u0000\u01a6\u01a7\u0003^/\u0000"+ + "\u01a7[\u0001\u0000\u0000\u0000\u01a8\u01a9\u0003\u0014\n\u0000\u01a9"+ + "]\u0001\u0000\u0000\u0000\u01aa\u01ab\u0005!\u0000\u0000\u01ab\u01b0\u0003"+ + "`0\u0000\u01ac\u01ad\u0005;\u0000\u0000\u01ad\u01af\u0003`0\u0000\u01ae"+ + "\u01ac\u0001\u0000\u0000\u0000\u01af\u01b2\u0001\u0000\u0000\u0000\u01b0"+ + "\u01ae\u0001\u0000\u0000\u0000\u01b0\u01b1\u0001\u0000\u0000\u0000\u01b1"+ + "_\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000\u0000\u01b3\u01b4"+ + "\u0003j5\u0000\u01b4a\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005\u001a"+ + "\u0000\u0000\u01b6\u01b7\u0003*\u0015\u0000\u01b7c\u0001\u0000\u0000\u0000"+ + "\u01b8\u01b9\u00062\uffff\uffff\u0000\u01b9\u01ba\u0005D\u0000\u0000\u01ba"+ + "\u01d6\u0003d2\b\u01bb\u01d6\u0003j5\u0000\u01bc\u01d6\u0003f3\u0000\u01bd"+ + "\u01bf\u0003j5\u0000\u01be\u01c0\u0005D\u0000\u0000\u01bf\u01be\u0001"+ + "\u0000\u0000\u0000\u01bf\u01c0\u0001\u0000\u0000\u0000\u01c0\u01c1\u0001"+ + "\u0000\u0000\u0000\u01c1\u01c2\u0005@\u0000\u0000\u01c2\u01c3\u0005\\"+ + "\u0000\u0000\u01c3\u01c8\u0003j5\u0000\u01c4\u01c5\u0005;\u0000\u0000"+ + "\u01c5\u01c7\u0003j5\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c7\u01ca"+ + "\u0001\u0000\u0000\u0000\u01c8\u01c6\u0001\u0000\u0000\u0000\u01c8\u01c9"+ + "\u0001\u0000\u0000\u0000\u01c9\u01cb\u0001\u0000\u0000\u0000\u01ca\u01c8"+ + "\u0001\u0000\u0000\u0000\u01cb\u01cc\u0005]\u0000\u0000\u01cc\u01d6\u0001"+ + "\u0000\u0000\u0000\u01cd\u01ce\u0003j5\u0000\u01ce\u01d0\u0005A\u0000"+ + "\u0000\u01cf\u01d1\u0005D\u0000\u0000\u01d0\u01cf\u0001\u0000\u0000\u0000"+ + "\u01d0\u01d1\u0001\u0000\u0000\u0000\u01d1\u01d2\u0001\u0000\u0000\u0000"+ + "\u01d2\u01d3\u0005E\u0000\u0000\u01d3\u01d6\u0001\u0000\u0000\u0000\u01d4"+ + "\u01d6\u0003h4\u0000\u01d5\u01b8\u0001\u0000\u0000\u0000\u01d5\u01bb\u0001"+ + "\u0000\u0000\u0000\u01d5\u01bc\u0001\u0000\u0000\u0000\u01d5\u01bd\u0001"+ + "\u0000\u0000\u0000\u01d5\u01cd\u0001\u0000\u0000\u0000\u01d5\u01d4\u0001"+ + "\u0000\u0000\u0000\u01d6\u01df\u0001\u0000\u0000\u0000\u01d7\u01d8\n\u0005"+ + "\u0000\u0000\u01d8\u01d9\u00056\u0000\u0000\u01d9\u01de\u0003d2\u0006"+ + "\u01da\u01db\n\u0004\u0000\u0000\u01db\u01dc\u0005G\u0000\u0000\u01dc"+ + "\u01de\u0003d2\u0005\u01dd\u01d7\u0001\u0000\u0000\u0000\u01dd\u01da\u0001"+ + "\u0000\u0000\u0000\u01de\u01e1\u0001\u0000\u0000\u0000\u01df\u01dd\u0001"+ + "\u0000\u0000\u0000\u01df\u01e0\u0001\u0000\u0000\u0000\u01e0e\u0001\u0000"+ + "\u0000\u0000\u01e1\u01df\u0001\u0000\u0000\u0000\u01e2\u01e4\u0003j5\u0000"+ + "\u01e3\u01e5\u0005D\u0000\u0000\u01e4\u01e3\u0001\u0000\u0000\u0000\u01e4"+ + "\u01e5\u0001\u0000\u0000\u0000\u01e5\u01e6\u0001\u0000\u0000\u0000\u01e6"+ + "\u01e7\u0005C\u0000\u0000\u01e7\u01e8\u0003\u0082A\u0000\u01e8\u01f1\u0001"+ + "\u0000\u0000\u0000\u01e9\u01eb\u0003j5\u0000\u01ea\u01ec\u0005D\u0000"+ + "\u0000\u01eb\u01ea\u0001\u0000\u0000\u0000\u01eb\u01ec\u0001\u0000\u0000"+ + "\u0000\u01ec\u01ed\u0001\u0000\u0000\u0000\u01ed\u01ee\u0005I\u0000\u0000"+ + "\u01ee\u01ef\u0003\u0082A\u0000\u01ef\u01f1\u0001\u0000\u0000\u0000\u01f0"+ + "\u01e2\u0001\u0000\u0000\u0000\u01f0\u01e9\u0001\u0000\u0000\u0000\u01f1"+ + "g\u0001\u0000\u0000\u0000\u01f2\u01f5\u0003&\u0013\u0000\u01f3\u01f4\u0005"+ + "9\u0000\u0000\u01f4\u01f6\u0003\n\u0005\u0000\u01f5\u01f3\u0001\u0000"+ + "\u0000\u0000\u01f5\u01f6\u0001\u0000\u0000\u0000\u01f6\u01f7\u0001\u0000"+ + "\u0000\u0000\u01f7\u01f8\u0005:\u0000\u0000\u01f8\u01f9\u0003x<\u0000"+ + "\u01f9i\u0001\u0000\u0000\u0000\u01fa\u0200\u0003l6\u0000\u01fb\u01fc"+ + "\u0003l6\u0000\u01fc\u01fd\u0003\u0084B\u0000\u01fd\u01fe\u0003l6\u0000"+ + "\u01fe\u0200\u0001\u0000\u0000\u0000\u01ff\u01fa\u0001\u0000\u0000\u0000"+ + "\u01ff\u01fb\u0001\u0000\u0000\u0000\u0200k\u0001\u0000\u0000\u0000\u0201"+ + "\u0202\u00066\uffff\uffff\u0000\u0202\u0206\u0003n7\u0000\u0203\u0204"+ + "\u0007\u0005\u0000\u0000\u0204\u0206\u0003l6\u0003\u0205\u0201\u0001\u0000"+ + "\u0000\u0000\u0205\u0203\u0001\u0000\u0000\u0000\u0206\u020f\u0001\u0000"+ + "\u0000\u0000\u0207\u0208\n\u0002\u0000\u0000\u0208\u0209\u0007\u0006\u0000"+ + "\u0000\u0209\u020e\u0003l6\u0003\u020a\u020b\n\u0001\u0000\u0000\u020b"+ + "\u020c\u0007\u0005\u0000\u0000\u020c\u020e\u0003l6\u0002\u020d\u0207\u0001"+ + "\u0000\u0000\u0000\u020d\u020a\u0001\u0000\u0000\u0000\u020e\u0211\u0001"+ + "\u0000\u0000\u0000\u020f\u020d\u0001\u0000\u0000\u0000\u020f\u0210\u0001"+ + "\u0000\u0000\u0000\u0210m\u0001\u0000\u0000\u0000\u0211\u020f\u0001\u0000"+ + "\u0000\u0000\u0212\u0213\u00067\uffff\uffff\u0000\u0213\u021b\u0003x<"+ + "\u0000\u0214\u021b\u0003&\u0013\u0000\u0215\u021b\u0003p8\u0000\u0216"+ + "\u0217\u0005\\\u0000\u0000\u0217\u0218\u0003d2\u0000\u0218\u0219\u0005"+ + "]\u0000\u0000\u0219\u021b\u0001\u0000\u0000\u0000\u021a\u0212\u0001\u0000"+ + "\u0000\u0000\u021a\u0214\u0001\u0000\u0000\u0000\u021a\u0215\u0001\u0000"+ + "\u0000\u0000\u021a\u0216\u0001\u0000\u0000\u0000\u021b\u0221\u0001\u0000"+ + "\u0000\u0000\u021c\u021d\n\u0001\u0000\u0000\u021d\u021e\u00059\u0000"+ + "\u0000\u021e\u0220\u0003\n\u0005\u0000\u021f\u021c\u0001\u0000\u0000\u0000"+ + "\u0220\u0223\u0001\u0000\u0000\u0000\u0221\u021f\u0001\u0000\u0000\u0000"+ + "\u0221\u0222\u0001\u0000\u0000\u0000\u0222o\u0001\u0000\u0000\u0000\u0223"+ + "\u0221\u0001\u0000\u0000\u0000\u0224\u0225\u0003r9\u0000\u0225\u0233\u0005"+ + "\\\u0000\u0000\u0226\u0234\u0005T\u0000\u0000\u0227\u022c\u0003d2\u0000"+ + "\u0228\u0229\u0005;\u0000\u0000\u0229\u022b\u0003d2\u0000\u022a\u0228"+ + "\u0001\u0000\u0000\u0000\u022b\u022e\u0001\u0000\u0000\u0000\u022c\u022a"+ + "\u0001\u0000\u0000\u0000\u022c\u022d\u0001\u0000\u0000\u0000\u022d\u0231"+ + "\u0001\u0000\u0000\u0000\u022e\u022c\u0001\u0000\u0000\u0000\u022f\u0230"+ + "\u0005;\u0000\u0000\u0230\u0232\u0003t:\u0000\u0231\u022f\u0001\u0000"+ + "\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000\u0232\u0234\u0001\u0000"+ + "\u0000\u0000\u0233\u0226\u0001\u0000\u0000\u0000\u0233\u0227\u0001\u0000"+ + "\u0000\u0000\u0233\u0234\u0001\u0000\u0000\u0000\u0234\u0235\u0001\u0000"+ + "\u0000\u0000\u0235\u0236\u0005]\u0000\u0000\u0236q\u0001\u0000\u0000\u0000"+ + "\u0237\u0238\u00032\u0019\u0000\u0238s\u0001\u0000\u0000\u0000\u0239\u023a"+ + "\u0005W\u0000\u0000\u023a\u023f\u0003v;\u0000\u023b\u023c\u0005;\u0000"+ + "\u0000\u023c\u023e\u0003v;\u0000\u023d\u023b\u0001\u0000\u0000\u0000\u023e"+ + "\u0241\u0001\u0000\u0000\u0000\u023f\u023d\u0001\u0000\u0000\u0000\u023f"+ + "\u0240\u0001\u0000\u0000\u0000\u0240\u0242\u0001\u0000\u0000\u0000\u0241"+ + "\u023f\u0001\u0000\u0000\u0000\u0242\u0243\u0005X\u0000\u0000\u0243u\u0001"+ + "\u0000\u0000\u0000\u0244\u0245\u0003\u0082A\u0000\u0245\u0246\u0005:\u0000"+ + "\u0000\u0246\u0247\u0003x<\u0000\u0247w\u0001\u0000\u0000\u0000\u0248"+ + "\u0273\u0005E\u0000\u0000\u0249\u024a\u0003\u0080@\u0000\u024a\u024b\u0005"+ + "^\u0000\u0000\u024b\u0273\u0001\u0000\u0000\u0000\u024c\u0273\u0003~?"+ + "\u0000\u024d\u0273\u0003\u0080@\u0000\u024e\u0273\u0003z=\u0000\u024f"+ + "\u0273\u00030\u0018\u0000\u0250\u0273\u0003\u0082A\u0000\u0251\u0252\u0005"+ + "Z\u0000\u0000\u0252\u0257\u0003|>\u0000\u0253\u0254\u0005;\u0000\u0000"+ + "\u0254\u0256\u0003|>\u0000\u0255\u0253\u0001\u0000\u0000\u0000\u0256\u0259"+ + "\u0001\u0000\u0000\u0000\u0257\u0255\u0001\u0000\u0000\u0000\u0257\u0258"+ + "\u0001\u0000\u0000\u0000\u0258\u025a\u0001\u0000\u0000\u0000\u0259\u0257"+ + "\u0001\u0000\u0000\u0000\u025a\u025b\u0005[\u0000\u0000\u025b\u0273\u0001"+ + "\u0000\u0000\u0000\u025c\u025d\u0005Z\u0000\u0000\u025d\u0262\u0003z="+ + "\u0000\u025e\u025f\u0005;\u0000\u0000\u025f\u0261\u0003z=\u0000\u0260"+ + "\u025e\u0001\u0000\u0000\u0000\u0261\u0264\u0001\u0000\u0000\u0000\u0262"+ + "\u0260\u0001\u0000\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263"+ + "\u0265\u0001\u0000\u0000\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0265"+ + "\u0266\u0005[\u0000\u0000\u0266\u0273\u0001\u0000\u0000\u0000\u0267\u0268"+ + "\u0005Z\u0000\u0000\u0268\u026d\u0003\u0082A\u0000\u0269\u026a\u0005;"+ + "\u0000\u0000\u026a\u026c\u0003\u0082A\u0000\u026b\u0269\u0001\u0000\u0000"+ + "\u0000\u026c\u026f\u0001\u0000\u0000\u0000\u026d\u026b\u0001\u0000\u0000"+ + "\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u0270\u0001\u0000\u0000"+ + "\u0000\u026f\u026d\u0001\u0000\u0000\u0000\u0270\u0271\u0005[\u0000\u0000"+ + "\u0271\u0273\u0001\u0000\u0000\u0000\u0272\u0248\u0001\u0000\u0000\u0000"+ + "\u0272\u0249\u0001\u0000\u0000\u0000\u0272\u024c\u0001\u0000\u0000\u0000"+ + "\u0272\u024d\u0001\u0000\u0000\u0000\u0272\u024e\u0001\u0000\u0000\u0000"+ + "\u0272\u024f\u0001\u0000\u0000\u0000\u0272\u0250\u0001\u0000\u0000\u0000"+ + "\u0272\u0251\u0001\u0000\u0000\u0000\u0272\u025c\u0001\u0000\u0000\u0000"+ + "\u0272\u0267\u0001\u0000\u0000\u0000\u0273y\u0001\u0000\u0000\u0000\u0274"+ + "\u0275\u0007\u0007\u0000\u0000\u0275{\u0001\u0000\u0000\u0000\u0276\u0279"+ + "\u0003~?\u0000\u0277\u0279\u0003\u0080@\u0000\u0278\u0276\u0001\u0000"+ + "\u0000\u0000\u0278\u0277\u0001\u0000\u0000\u0000\u0279}\u0001\u0000\u0000"+ + "\u0000\u027a\u027c\u0007\u0005\u0000\u0000\u027b\u027a\u0001\u0000\u0000"+ + "\u0000\u027b\u027c\u0001\u0000\u0000\u0000\u027c\u027d\u0001\u0000\u0000"+ + "\u0000\u027d\u027e\u00054\u0000\u0000\u027e\u007f\u0001\u0000\u0000\u0000"+ + "\u027f\u0281\u0007\u0005\u0000\u0000\u0280\u027f\u0001\u0000\u0000\u0000"+ + "\u0280\u0281\u0001\u0000\u0000\u0000\u0281\u0282\u0001\u0000\u0000\u0000"+ + "\u0282\u0283\u00053\u0000\u0000\u0283\u0081\u0001\u0000\u0000\u0000\u0284"+ + "\u0285\u00052\u0000\u0000\u0285\u0083\u0001\u0000\u0000\u0000\u0286\u0287"+ + "\u0007\b\u0000\u0000\u0287\u0085\u0001\u0000\u0000\u0000=\u0091\u009a"+ + "\u00af\u00be\u00c4\u00ce\u00d2\u00d7\u00e5\u00ee\u00f2\u00f6\u00fd\u0101"+ + "\u0108\u010e\u0115\u011d\u0125\u012c\u0130\u0134\u013f\u0144\u0148\u0156"+ + "\u0161\u016f\u0184\u018c\u018f\u0194\u01a1\u01b0\u01bf\u01c8\u01d0\u01d5"+ + "\u01dd\u01df\u01e4\u01eb\u01f0\u01f5\u01ff\u0205\u020d\u020f\u021a\u0221"+ + "\u022c\u0231\u0233\u023f\u0257\u0262\u026d\u0272\u0278\u027b\u0280"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java index 71dec06682b44..1d88f0973dfe7 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseListener.java @@ -97,1021 +97,1021 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { * *

The default implementation does nothing.

*/ - @Override public void enterMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { } + @Override public void enterToDataType(EsqlBaseParser.ToDataTypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { } + @Override public void exitToDataType(EsqlBaseParser.ToDataTypeContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { } + @Override public void enterRowCommand(EsqlBaseParser.RowCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { } + @Override public void exitRowCommand(EsqlBaseParser.RowCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { } + @Override public void enterFields(EsqlBaseParser.FieldsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { } + @Override public void exitFields(EsqlBaseParser.FieldsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIsNull(EsqlBaseParser.IsNullContext ctx) { } + @Override public void enterField(EsqlBaseParser.FieldContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIsNull(EsqlBaseParser.IsNullContext ctx) { } + @Override public void exitField(EsqlBaseParser.FieldContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { } + @Override public void enterFromCommand(EsqlBaseParser.FromCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { } + @Override public void exitFromCommand(EsqlBaseParser.FromCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterLogicalIn(EsqlBaseParser.LogicalInContext ctx) { } + @Override public void enterIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitLogicalIn(EsqlBaseParser.LogicalInContext ctx) { } + @Override public void exitIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { } + @Override public void enterClusterString(EsqlBaseParser.ClusterStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { } + @Override public void exitClusterString(EsqlBaseParser.ClusterStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { } + @Override public void enterIndexString(EsqlBaseParser.IndexStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { } + @Override public void exitIndexString(EsqlBaseParser.IndexStringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { } + @Override public void enterMetadata(EsqlBaseParser.MetadataContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { } + @Override public void exitMetadata(EsqlBaseParser.MetadataContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { } + @Override public void enterMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { } + @Override public void exitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterComparison(EsqlBaseParser.ComparisonContext ctx) { } + @Override public void enterEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitComparison(EsqlBaseParser.ComparisonContext ctx) { } + @Override public void exitEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { } + @Override public void enterStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { } + @Override public void exitStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { } + @Override public void enterAggFields(EsqlBaseParser.AggFieldsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { } + @Override public void exitAggFields(EsqlBaseParser.AggFieldsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { } + @Override public void enterAggField(EsqlBaseParser.AggFieldContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { } + @Override public void exitAggField(EsqlBaseParser.AggFieldContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterDereference(EsqlBaseParser.DereferenceContext ctx) { } + @Override public void enterQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDereference(EsqlBaseParser.DereferenceContext ctx) { } + @Override public void exitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInlineCast(EsqlBaseParser.InlineCastContext ctx) { } + @Override public void enterQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInlineCast(EsqlBaseParser.InlineCastContext ctx) { } + @Override public void exitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { } + @Override public void enterQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { } + @Override public void exitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { } + @Override public void enterIdentifier(EsqlBaseParser.IdentifierContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { } + @Override public void exitIdentifier(EsqlBaseParser.IdentifierContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterFunction(EsqlBaseParser.FunctionContext ctx) { } + @Override public void enterIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitFunction(EsqlBaseParser.FunctionContext ctx) { } + @Override public void exitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { } + @Override public void enterInputParam(EsqlBaseParser.InputParamContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { } + @Override public void exitInputParam(EsqlBaseParser.InputParamContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterFunctionName(EsqlBaseParser.FunctionNameContext ctx) { } + @Override public void enterInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitFunctionName(EsqlBaseParser.FunctionNameContext ctx) { } + @Override public void exitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterMapExpression(EsqlBaseParser.MapExpressionContext ctx) { } + @Override public void enterIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMapExpression(EsqlBaseParser.MapExpressionContext ctx) { } + @Override public void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { } + @Override public void enterLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { } + @Override public void exitLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterToDataType(EsqlBaseParser.ToDataTypeContext ctx) { } + @Override public void enterSortCommand(EsqlBaseParser.SortCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitToDataType(EsqlBaseParser.ToDataTypeContext ctx) { } + @Override public void exitSortCommand(EsqlBaseParser.SortCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterRowCommand(EsqlBaseParser.RowCommandContext ctx) { } + @Override public void enterOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitRowCommand(EsqlBaseParser.RowCommandContext ctx) { } + @Override public void exitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterFields(EsqlBaseParser.FieldsContext ctx) { } + @Override public void enterKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitFields(EsqlBaseParser.FieldsContext ctx) { } + @Override public void exitKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterField(EsqlBaseParser.FieldContext ctx) { } + @Override public void enterDropCommand(EsqlBaseParser.DropCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitField(EsqlBaseParser.FieldContext ctx) { } + @Override public void exitDropCommand(EsqlBaseParser.DropCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterFromCommand(EsqlBaseParser.FromCommandContext ctx) { } + @Override public void enterRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitFromCommand(EsqlBaseParser.FromCommandContext ctx) { } + @Override public void exitRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { } + @Override public void enterRenameClause(EsqlBaseParser.RenameClauseContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { } + @Override public void exitRenameClause(EsqlBaseParser.RenameClauseContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterClusterString(EsqlBaseParser.ClusterStringContext ctx) { } + @Override public void enterDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitClusterString(EsqlBaseParser.ClusterStringContext ctx) { } + @Override public void exitDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIndexString(EsqlBaseParser.IndexStringContext ctx) { } + @Override public void enterGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIndexString(EsqlBaseParser.IndexStringContext ctx) { } + @Override public void exitGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterMetadata(EsqlBaseParser.MetadataContext ctx) { } + @Override public void enterMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMetadata(EsqlBaseParser.MetadataContext ctx) { } + @Override public void exitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { } + @Override public void enterCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { } + @Override public void exitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { } + @Override public void enterCommandOption(EsqlBaseParser.CommandOptionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { } + @Override public void exitCommandOption(EsqlBaseParser.CommandOptionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { } + @Override public void enterExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { } + @Override public void exitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterAggFields(EsqlBaseParser.AggFieldsContext ctx) { } + @Override public void enterSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitAggFields(EsqlBaseParser.AggFieldsContext ctx) { } + @Override public void exitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterAggField(EsqlBaseParser.AggFieldContext ctx) { } + @Override public void enterShowInfo(EsqlBaseParser.ShowInfoContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitAggField(EsqlBaseParser.AggFieldContext ctx) { } + @Override public void exitShowInfo(EsqlBaseParser.ShowInfoContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { } + @Override public void enterEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { } + @Override public void exitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { } + @Override public void enterEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { } + @Override public void exitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { } + @Override public void enterLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { } + @Override public void exitLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIdentifier(EsqlBaseParser.IdentifierContext ctx) { } + @Override public void enterInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIdentifier(EsqlBaseParser.IdentifierContext ctx) { } + @Override public void exitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { } + @Override public void enterJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { } + @Override public void exitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { } + @Override public void enterJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { } + @Override public void exitJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { } + @Override public void enterJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { } + @Override public void exitJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { } + @Override public void enterJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { } + @Override public void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { } + @Override public void enterInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { } + @Override public void exitInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { } + @Override public void enterMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { } + @Override public void exitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInputParameter(EsqlBaseParser.InputParameterContext ctx) { } + @Override public void enterLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInputParameter(EsqlBaseParser.InputParameterContext ctx) { } + @Override public void exitLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { } + @Override public void enterBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { } + @Override public void exitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { } + @Override public void enterIsNull(EsqlBaseParser.IsNullContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { } + @Override public void exitIsNull(EsqlBaseParser.IsNullContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { } + @Override public void enterRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { } + @Override public void exitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { } + @Override public void enterLogicalIn(EsqlBaseParser.LogicalInContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { } + @Override public void exitLogicalIn(EsqlBaseParser.LogicalInContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInputParam(EsqlBaseParser.InputParamContext ctx) { } + @Override public void enterLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInputParam(EsqlBaseParser.InputParamContext ctx) { } + @Override public void exitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { } + @Override public void enterRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { } + @Override public void exitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { } + @Override public void enterMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { } + @Override public void exitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { } + @Override public void enterValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { } + @Override public void exitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterSortCommand(EsqlBaseParser.SortCommandContext ctx) { } + @Override public void enterComparison(EsqlBaseParser.ComparisonContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitSortCommand(EsqlBaseParser.SortCommandContext ctx) { } + @Override public void exitComparison(EsqlBaseParser.ComparisonContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { } + @Override public void enterOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { } + @Override public void exitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { } + @Override public void enterArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { } + @Override public void exitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterDropCommand(EsqlBaseParser.DropCommandContext ctx) { } + @Override public void enterArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDropCommand(EsqlBaseParser.DropCommandContext ctx) { } + @Override public void exitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { } + @Override public void enterDereference(EsqlBaseParser.DereferenceContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { } + @Override public void exitDereference(EsqlBaseParser.DereferenceContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterRenameClause(EsqlBaseParser.RenameClauseContext ctx) { } + @Override public void enterInlineCast(EsqlBaseParser.InlineCastContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitRenameClause(EsqlBaseParser.RenameClauseContext ctx) { } + @Override public void exitInlineCast(EsqlBaseParser.InlineCastContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { } + @Override public void enterConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { } + @Override public void exitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { } + @Override public void enterParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { } + @Override public void exitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { } + @Override public void enterFunction(EsqlBaseParser.FunctionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { } + @Override public void exitFunction(EsqlBaseParser.FunctionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { } + @Override public void enterFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { } + @Override public void exitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterCommandOption(EsqlBaseParser.CommandOptionContext ctx) { } + @Override public void enterFunctionName(EsqlBaseParser.FunctionNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitCommandOption(EsqlBaseParser.CommandOptionContext ctx) { } + @Override public void exitFunctionName(EsqlBaseParser.FunctionNameContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { } + @Override public void enterMapExpression(EsqlBaseParser.MapExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { } + @Override public void exitMapExpression(EsqlBaseParser.MapExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterNumericValue(EsqlBaseParser.NumericValueContext ctx) { } + @Override public void enterEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitNumericValue(EsqlBaseParser.NumericValueContext ctx) { } + @Override public void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { } + @Override public void enterNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { } + @Override public void exitNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { } + @Override public void enterQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { } + @Override public void exitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterString(EsqlBaseParser.StringContext ctx) { } + @Override public void enterDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitString(EsqlBaseParser.StringContext ctx) { } + @Override public void exitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { } + @Override public void enterIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { } + @Override public void exitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { } + @Override public void enterBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { } + @Override public void exitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { } + @Override public void enterInputParameter(EsqlBaseParser.InputParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { } + @Override public void exitInputParameter(EsqlBaseParser.InputParameterContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterShowInfo(EsqlBaseParser.ShowInfoContext ctx) { } + @Override public void enterStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitShowInfo(EsqlBaseParser.ShowInfoContext ctx) { } + @Override public void exitStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { } + @Override public void enterNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { } + @Override public void exitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { } + @Override public void enterBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { } + @Override public void exitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { } + @Override public void enterStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { } + @Override public void exitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { } + @Override public void enterBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { } + @Override public void exitBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { } + @Override public void enterNumericValue(EsqlBaseParser.NumericValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { } + @Override public void exitNumericValue(EsqlBaseParser.NumericValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { } + @Override public void enterDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { } + @Override public void exitDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { } + @Override public void enterIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { } + @Override public void exitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { } + @Override public void enterString(EsqlBaseParser.StringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { } + @Override public void exitString(EsqlBaseParser.StringContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void enterInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { } + @Override public void enterComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { } /** * {@inheritDoc} * *

The default implementation does nothing.

*/ - @Override public void exitInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { } + @Override public void exitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { } /** * {@inheritDoc} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java index 2b3d1f224c545..6dffcfab534c0 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserBaseVisitor.java @@ -68,593 +68,593 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitToDataType(EsqlBaseParser.ToDataTypeContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { return visitChildren(ctx); } + @Override public T visitRowCommand(EsqlBaseParser.RowCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { return visitChildren(ctx); } + @Override public T visitFields(EsqlBaseParser.FieldsContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIsNull(EsqlBaseParser.IsNullContext ctx) { return visitChildren(ctx); } + @Override public T visitField(EsqlBaseParser.FieldContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitFromCommand(EsqlBaseParser.FromCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitLogicalIn(EsqlBaseParser.LogicalInContext ctx) { return visitChildren(ctx); } + @Override public T visitIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { return visitChildren(ctx); } + @Override public T visitClusterString(EsqlBaseParser.ClusterStringContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitIndexString(EsqlBaseParser.IndexStringContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitMetadata(EsqlBaseParser.MetadataContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { return visitChildren(ctx); } + @Override public T visitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitComparison(EsqlBaseParser.ComparisonContext ctx) { return visitChildren(ctx); } + @Override public T visitEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { return visitChildren(ctx); } + @Override public T visitStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { return visitChildren(ctx); } + @Override public T visitAggFields(EsqlBaseParser.AggFieldsContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { return visitChildren(ctx); } + @Override public T visitAggField(EsqlBaseParser.AggFieldContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDereference(EsqlBaseParser.DereferenceContext ctx) { return visitChildren(ctx); } + @Override public T visitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInlineCast(EsqlBaseParser.InlineCastContext ctx) { return visitChildren(ctx); } + @Override public T visitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { return visitChildren(ctx); } + @Override public T visitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitIdentifier(EsqlBaseParser.IdentifierContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitFunction(EsqlBaseParser.FunctionContext ctx) { return visitChildren(ctx); } + @Override public T visitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitInputParam(EsqlBaseParser.InputParamContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitFunctionName(EsqlBaseParser.FunctionNameContext ctx) { return visitChildren(ctx); } + @Override public T visitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMapExpression(EsqlBaseParser.MapExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitToDataType(EsqlBaseParser.ToDataTypeContext ctx) { return visitChildren(ctx); } + @Override public T visitSortCommand(EsqlBaseParser.SortCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitRowCommand(EsqlBaseParser.RowCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitFields(EsqlBaseParser.FieldsContext ctx) { return visitChildren(ctx); } + @Override public T visitKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitField(EsqlBaseParser.FieldContext ctx) { return visitChildren(ctx); } + @Override public T visitDropCommand(EsqlBaseParser.DropCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitFromCommand(EsqlBaseParser.FromCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIndexPattern(EsqlBaseParser.IndexPatternContext ctx) { return visitChildren(ctx); } + @Override public T visitRenameClause(EsqlBaseParser.RenameClauseContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitClusterString(EsqlBaseParser.ClusterStringContext ctx) { return visitChildren(ctx); } + @Override public T visitDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIndexString(EsqlBaseParser.IndexStringContext ctx) { return visitChildren(ctx); } + @Override public T visitGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMetadata(EsqlBaseParser.MetadataContext ctx) { return visitChildren(ctx); } + @Override public T visitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitCommandOption(EsqlBaseParser.CommandOptionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitStatsCommand(EsqlBaseParser.StatsCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitAggFields(EsqlBaseParser.AggFieldsContext ctx) { return visitChildren(ctx); } + @Override public T visitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitAggField(EsqlBaseParser.AggFieldContext ctx) { return visitChildren(ctx); } + @Override public T visitShowInfo(EsqlBaseParser.ShowInfoContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx) { return visitChildren(ctx); } + @Override public T visitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx) { return visitChildren(ctx); } + @Override public T visitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx) { return visitChildren(ctx); } + @Override public T visitLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIdentifier(EsqlBaseParser.IdentifierContext ctx) { return visitChildren(ctx); } + @Override public T visitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx) { return visitChildren(ctx); } + @Override public T visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInputParameter(EsqlBaseParser.InputParameterContext ctx) { return visitChildren(ctx); } + @Override public T visitLogicalNot(EsqlBaseParser.LogicalNotContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitIsNull(EsqlBaseParser.IsNullContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { return visitChildren(ctx); } + @Override public T visitLogicalIn(EsqlBaseParser.LogicalInContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInputParam(EsqlBaseParser.InputParamContext ctx) { return visitChildren(ctx); } + @Override public T visitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx) { return visitChildren(ctx); } + @Override public T visitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx) { return visitChildren(ctx); } + @Override public T visitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitLimitCommand(EsqlBaseParser.LimitCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitSortCommand(EsqlBaseParser.SortCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitComparison(EsqlBaseParser.ComparisonContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitKeepCommand(EsqlBaseParser.KeepCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDropCommand(EsqlBaseParser.DropCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitRenameCommand(EsqlBaseParser.RenameCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitDereference(EsqlBaseParser.DereferenceContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitRenameClause(EsqlBaseParser.RenameClauseContext ctx) { return visitChildren(ctx); } + @Override public T visitInlineCast(EsqlBaseParser.InlineCastContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDissectCommand(EsqlBaseParser.DissectCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitFunction(EsqlBaseParser.FunctionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx) { return visitChildren(ctx); } + @Override public T visitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitCommandOption(EsqlBaseParser.CommandOptionContext ctx) { return visitChildren(ctx); } + @Override public T visitFunctionName(EsqlBaseParser.FunctionNameContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { return visitChildren(ctx); } + @Override public T visitMapExpression(EsqlBaseParser.MapExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitNumericValue(EsqlBaseParser.NumericValueContext ctx) { return visitChildren(ctx); } + @Override public T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { return visitChildren(ctx); } + @Override public T visitNullLiteral(EsqlBaseParser.NullLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { return visitChildren(ctx); } + @Override public T visitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitString(EsqlBaseParser.StringContext ctx) { return visitChildren(ctx); } + @Override public T visitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { return visitChildren(ctx); } + @Override public T visitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx) { return visitChildren(ctx); } + @Override public T visitInputParameter(EsqlBaseParser.InputParameterContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitShowInfo(EsqlBaseParser.ShowInfoContext ctx) { return visitChildren(ctx); } + @Override public T visitStringLiteral(EsqlBaseParser.StringLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx) { return visitChildren(ctx); } + @Override public T visitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitLookupCommand(EsqlBaseParser.LookupCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitBooleanValue(EsqlBaseParser.BooleanValueContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitNumericValue(EsqlBaseParser.NumericValueContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitJoinTarget(EsqlBaseParser.JoinTargetContext ctx) { return visitChildren(ctx); } + @Override public T visitDecimalValue(EsqlBaseParser.DecimalValueContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitJoinCondition(EsqlBaseParser.JoinConditionContext ctx) { return visitChildren(ctx); } + @Override public T visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { return visitChildren(ctx); } + @Override public T visitString(EsqlBaseParser.StringContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * *

The default implementation returns the result of calling * {@link #visitChildren} on {@code ctx}.

*/ - @Override public T visitInsistCommand(EsqlBaseParser.InsistCommandContext ctx) { return visitChildren(ctx); } + @Override public T visitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx) { return visitChildren(ctx); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java index 9790ee17ac5ec..382593437cff0 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java @@ -80,915 +80,915 @@ public interface EsqlBaseParserListener extends ParseTreeListener { */ void exitWhereCommand(EsqlBaseParser.WhereCommandContext ctx); /** - * Enter a parse tree produced by the {@code matchExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by the {@code toDataType} + * labeled alternative in {@link EsqlBaseParser#dataType}. * @param ctx the parse tree */ - void enterMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); + void enterToDataType(EsqlBaseParser.ToDataTypeContext ctx); /** - * Exit a parse tree produced by the {@code matchExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by the {@code toDataType} + * labeled alternative in {@link EsqlBaseParser#dataType}. * @param ctx the parse tree */ - void exitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); + void exitToDataType(EsqlBaseParser.ToDataTypeContext ctx); /** - * Enter a parse tree produced by the {@code logicalNot} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#rowCommand}. * @param ctx the parse tree */ - void enterLogicalNot(EsqlBaseParser.LogicalNotContext ctx); + void enterRowCommand(EsqlBaseParser.RowCommandContext ctx); /** - * Exit a parse tree produced by the {@code logicalNot} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#rowCommand}. * @param ctx the parse tree */ - void exitLogicalNot(EsqlBaseParser.LogicalNotContext ctx); + void exitRowCommand(EsqlBaseParser.RowCommandContext ctx); /** - * Enter a parse tree produced by the {@code booleanDefault} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#fields}. * @param ctx the parse tree */ - void enterBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); + void enterFields(EsqlBaseParser.FieldsContext ctx); /** - * Exit a parse tree produced by the {@code booleanDefault} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#fields}. * @param ctx the parse tree */ - void exitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); + void exitFields(EsqlBaseParser.FieldsContext ctx); /** - * Enter a parse tree produced by the {@code isNull} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#field}. * @param ctx the parse tree */ - void enterIsNull(EsqlBaseParser.IsNullContext ctx); + void enterField(EsqlBaseParser.FieldContext ctx); /** - * Exit a parse tree produced by the {@code isNull} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#field}. * @param ctx the parse tree */ - void exitIsNull(EsqlBaseParser.IsNullContext ctx); + void exitField(EsqlBaseParser.FieldContext ctx); /** - * Enter a parse tree produced by the {@code regexExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#fromCommand}. * @param ctx the parse tree */ - void enterRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); + void enterFromCommand(EsqlBaseParser.FromCommandContext ctx); /** - * Exit a parse tree produced by the {@code regexExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#fromCommand}. * @param ctx the parse tree */ - void exitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); + void exitFromCommand(EsqlBaseParser.FromCommandContext ctx); /** - * Enter a parse tree produced by the {@code logicalIn} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#indexPattern}. * @param ctx the parse tree */ - void enterLogicalIn(EsqlBaseParser.LogicalInContext ctx); + void enterIndexPattern(EsqlBaseParser.IndexPatternContext ctx); /** - * Exit a parse tree produced by the {@code logicalIn} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#indexPattern}. * @param ctx the parse tree */ - void exitLogicalIn(EsqlBaseParser.LogicalInContext ctx); + void exitIndexPattern(EsqlBaseParser.IndexPatternContext ctx); /** - * Enter a parse tree produced by the {@code logicalBinary} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#clusterString}. * @param ctx the parse tree */ - void enterLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); + void enterClusterString(EsqlBaseParser.ClusterStringContext ctx); /** - * Exit a parse tree produced by the {@code logicalBinary} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#clusterString}. * @param ctx the parse tree */ - void exitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); + void exitClusterString(EsqlBaseParser.ClusterStringContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#indexString}. * @param ctx the parse tree */ - void enterRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); + void enterIndexString(EsqlBaseParser.IndexStringContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#indexString}. * @param ctx the parse tree */ - void exitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); + void exitIndexString(EsqlBaseParser.IndexStringContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#metadata}. * @param ctx the parse tree */ - void enterMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); + void enterMetadata(EsqlBaseParser.MetadataContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#metadata}. * @param ctx the parse tree */ - void exitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); + void exitMetadata(EsqlBaseParser.MetadataContext ctx); /** - * Enter a parse tree produced by the {@code valueExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#metricsCommand}. * @param ctx the parse tree */ - void enterValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); + void enterMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); /** - * Exit a parse tree produced by the {@code valueExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#metricsCommand}. * @param ctx the parse tree */ - void exitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); + void exitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); /** - * Enter a parse tree produced by the {@code comparison} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#evalCommand}. * @param ctx the parse tree */ - void enterComparison(EsqlBaseParser.ComparisonContext ctx); + void enterEvalCommand(EsqlBaseParser.EvalCommandContext ctx); /** - * Exit a parse tree produced by the {@code comparison} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#evalCommand}. * @param ctx the parse tree */ - void exitComparison(EsqlBaseParser.ComparisonContext ctx); + void exitEvalCommand(EsqlBaseParser.EvalCommandContext ctx); /** - * Enter a parse tree produced by the {@code operatorExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#statsCommand}. * @param ctx the parse tree */ - void enterOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); + void enterStatsCommand(EsqlBaseParser.StatsCommandContext ctx); /** - * Exit a parse tree produced by the {@code operatorExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#statsCommand}. * @param ctx the parse tree */ - void exitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); + void exitStatsCommand(EsqlBaseParser.StatsCommandContext ctx); /** - * Enter a parse tree produced by the {@code arithmeticBinary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#aggFields}. * @param ctx the parse tree */ - void enterArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); + void enterAggFields(EsqlBaseParser.AggFieldsContext ctx); /** - * Exit a parse tree produced by the {@code arithmeticBinary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#aggFields}. * @param ctx the parse tree */ - void exitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); + void exitAggFields(EsqlBaseParser.AggFieldsContext ctx); /** - * Enter a parse tree produced by the {@code arithmeticUnary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#aggField}. * @param ctx the parse tree */ - void enterArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); + void enterAggField(EsqlBaseParser.AggFieldContext ctx); /** - * Exit a parse tree produced by the {@code arithmeticUnary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#aggField}. * @param ctx the parse tree */ - void exitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); + void exitAggField(EsqlBaseParser.AggFieldContext ctx); /** - * Enter a parse tree produced by the {@code dereference} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedName}. * @param ctx the parse tree */ - void enterDereference(EsqlBaseParser.DereferenceContext ctx); + void enterQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); /** - * Exit a parse tree produced by the {@code dereference} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedName}. * @param ctx the parse tree */ - void exitDereference(EsqlBaseParser.DereferenceContext ctx); + void exitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); /** - * Enter a parse tree produced by the {@code inlineCast} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. * @param ctx the parse tree */ - void enterInlineCast(EsqlBaseParser.InlineCastContext ctx); + void enterQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); /** - * Exit a parse tree produced by the {@code inlineCast} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. * @param ctx the parse tree */ - void exitInlineCast(EsqlBaseParser.InlineCastContext ctx); + void exitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); /** - * Enter a parse tree produced by the {@code constantDefault} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. * @param ctx the parse tree */ - void enterConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); + void enterQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); /** - * Exit a parse tree produced by the {@code constantDefault} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. * @param ctx the parse tree */ - void exitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); + void exitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); /** - * Enter a parse tree produced by the {@code parenthesizedExpression} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#identifier}. * @param ctx the parse tree */ - void enterParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); + void enterIdentifier(EsqlBaseParser.IdentifierContext ctx); /** - * Exit a parse tree produced by the {@code parenthesizedExpression} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#identifier}. * @param ctx the parse tree */ - void exitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); + void exitIdentifier(EsqlBaseParser.IdentifierContext ctx); /** - * Enter a parse tree produced by the {@code function} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#identifierPattern}. * @param ctx the parse tree */ - void enterFunction(EsqlBaseParser.FunctionContext ctx); + void enterIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); /** - * Exit a parse tree produced by the {@code function} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#identifierPattern}. * @param ctx the parse tree */ - void exitFunction(EsqlBaseParser.FunctionContext ctx); + void exitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#functionExpression}. + * Enter a parse tree produced by the {@code inputParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree */ - void enterFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); + void enterInputParam(EsqlBaseParser.InputParamContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#functionExpression}. + * Exit a parse tree produced by the {@code inputParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree */ - void exitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); + void exitInputParam(EsqlBaseParser.InputParamContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#functionName}. + * Enter a parse tree produced by the {@code inputNamedOrPositionalParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree */ - void enterFunctionName(EsqlBaseParser.FunctionNameContext ctx); + void enterInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#functionName}. + * Exit a parse tree produced by the {@code inputNamedOrPositionalParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree */ - void exitFunctionName(EsqlBaseParser.FunctionNameContext ctx); + void exitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#mapExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. * @param ctx the parse tree */ - void enterMapExpression(EsqlBaseParser.MapExpressionContext ctx); + void enterIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#mapExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. * @param ctx the parse tree */ - void exitMapExpression(EsqlBaseParser.MapExpressionContext ctx); + void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#entryExpression}. + * Enter a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree */ - void enterEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); + void enterLimitCommand(EsqlBaseParser.LimitCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#entryExpression}. + * Exit a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree */ - void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); + void exitLimitCommand(EsqlBaseParser.LimitCommandContext ctx); /** - * Enter a parse tree produced by the {@code toDataType} - * labeled alternative in {@link EsqlBaseParser#dataType}. + * Enter a parse tree produced by {@link EsqlBaseParser#sortCommand}. * @param ctx the parse tree */ - void enterToDataType(EsqlBaseParser.ToDataTypeContext ctx); + void enterSortCommand(EsqlBaseParser.SortCommandContext ctx); /** - * Exit a parse tree produced by the {@code toDataType} - * labeled alternative in {@link EsqlBaseParser#dataType}. + * Exit a parse tree produced by {@link EsqlBaseParser#sortCommand}. * @param ctx the parse tree */ - void exitToDataType(EsqlBaseParser.ToDataTypeContext ctx); + void exitSortCommand(EsqlBaseParser.SortCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#rowCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#orderExpression}. * @param ctx the parse tree */ - void enterRowCommand(EsqlBaseParser.RowCommandContext ctx); + void enterOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#rowCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#orderExpression}. * @param ctx the parse tree */ - void exitRowCommand(EsqlBaseParser.RowCommandContext ctx); + void exitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#fields}. + * Enter a parse tree produced by {@link EsqlBaseParser#keepCommand}. * @param ctx the parse tree */ - void enterFields(EsqlBaseParser.FieldsContext ctx); + void enterKeepCommand(EsqlBaseParser.KeepCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#fields}. + * Exit a parse tree produced by {@link EsqlBaseParser#keepCommand}. * @param ctx the parse tree */ - void exitFields(EsqlBaseParser.FieldsContext ctx); + void exitKeepCommand(EsqlBaseParser.KeepCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#field}. + * Enter a parse tree produced by {@link EsqlBaseParser#dropCommand}. * @param ctx the parse tree */ - void enterField(EsqlBaseParser.FieldContext ctx); + void enterDropCommand(EsqlBaseParser.DropCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#field}. + * Exit a parse tree produced by {@link EsqlBaseParser#dropCommand}. * @param ctx the parse tree */ - void exitField(EsqlBaseParser.FieldContext ctx); + void exitDropCommand(EsqlBaseParser.DropCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#fromCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#renameCommand}. * @param ctx the parse tree */ - void enterFromCommand(EsqlBaseParser.FromCommandContext ctx); + void enterRenameCommand(EsqlBaseParser.RenameCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#fromCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#renameCommand}. * @param ctx the parse tree */ - void exitFromCommand(EsqlBaseParser.FromCommandContext ctx); + void exitRenameCommand(EsqlBaseParser.RenameCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#indexPattern}. + * Enter a parse tree produced by {@link EsqlBaseParser#renameClause}. * @param ctx the parse tree */ - void enterIndexPattern(EsqlBaseParser.IndexPatternContext ctx); + void enterRenameClause(EsqlBaseParser.RenameClauseContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#indexPattern}. + * Exit a parse tree produced by {@link EsqlBaseParser#renameClause}. * @param ctx the parse tree */ - void exitIndexPattern(EsqlBaseParser.IndexPatternContext ctx); + void exitRenameClause(EsqlBaseParser.RenameClauseContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#clusterString}. + * Enter a parse tree produced by {@link EsqlBaseParser#dissectCommand}. * @param ctx the parse tree */ - void enterClusterString(EsqlBaseParser.ClusterStringContext ctx); + void enterDissectCommand(EsqlBaseParser.DissectCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#clusterString}. + * Exit a parse tree produced by {@link EsqlBaseParser#dissectCommand}. * @param ctx the parse tree */ - void exitClusterString(EsqlBaseParser.ClusterStringContext ctx); + void exitDissectCommand(EsqlBaseParser.DissectCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#indexString}. + * Enter a parse tree produced by {@link EsqlBaseParser#grokCommand}. * @param ctx the parse tree */ - void enterIndexString(EsqlBaseParser.IndexStringContext ctx); + void enterGrokCommand(EsqlBaseParser.GrokCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#indexString}. + * Exit a parse tree produced by {@link EsqlBaseParser#grokCommand}. * @param ctx the parse tree */ - void exitIndexString(EsqlBaseParser.IndexStringContext ctx); + void exitGrokCommand(EsqlBaseParser.GrokCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#metadata}. + * Enter a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. * @param ctx the parse tree */ - void enterMetadata(EsqlBaseParser.MetadataContext ctx); + void enterMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#metadata}. + * Exit a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. * @param ctx the parse tree */ - void exitMetadata(EsqlBaseParser.MetadataContext ctx); + void exitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#metricsCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#commandOptions}. * @param ctx the parse tree */ - void enterMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); + void enterCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#metricsCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#commandOptions}. * @param ctx the parse tree */ - void exitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); + void exitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#evalCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#commandOption}. * @param ctx the parse tree */ - void enterEvalCommand(EsqlBaseParser.EvalCommandContext ctx); + void enterCommandOption(EsqlBaseParser.CommandOptionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#evalCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#commandOption}. * @param ctx the parse tree */ - void exitEvalCommand(EsqlBaseParser.EvalCommandContext ctx); + void exitCommandOption(EsqlBaseParser.CommandOptionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#statsCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#explainCommand}. * @param ctx the parse tree */ - void enterStatsCommand(EsqlBaseParser.StatsCommandContext ctx); + void enterExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#statsCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#explainCommand}. * @param ctx the parse tree */ - void exitStatsCommand(EsqlBaseParser.StatsCommandContext ctx); + void exitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#aggFields}. + * Enter a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. * @param ctx the parse tree */ - void enterAggFields(EsqlBaseParser.AggFieldsContext ctx); + void enterSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#aggFields}. + * Exit a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. * @param ctx the parse tree */ - void exitAggFields(EsqlBaseParser.AggFieldsContext ctx); + void exitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#aggField}. + * Enter a parse tree produced by the {@code showInfo} + * labeled alternative in {@link EsqlBaseParser#showCommand}. * @param ctx the parse tree */ - void enterAggField(EsqlBaseParser.AggFieldContext ctx); + void enterShowInfo(EsqlBaseParser.ShowInfoContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#aggField}. + * Exit a parse tree produced by the {@code showInfo} + * labeled alternative in {@link EsqlBaseParser#showCommand}. * @param ctx the parse tree */ - void exitAggField(EsqlBaseParser.AggFieldContext ctx); + void exitShowInfo(EsqlBaseParser.ShowInfoContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedName}. + * Enter a parse tree produced by {@link EsqlBaseParser#enrichCommand}. * @param ctx the parse tree */ - void enterQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); + void enterEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedName}. + * Exit a parse tree produced by {@link EsqlBaseParser#enrichCommand}. * @param ctx the parse tree */ - void exitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); + void exitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. + * Enter a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. * @param ctx the parse tree */ - void enterQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); + void enterEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. + * Exit a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. * @param ctx the parse tree */ - void exitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); + void exitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. + * Enter a parse tree produced by {@link EsqlBaseParser#lookupCommand}. * @param ctx the parse tree */ - void enterQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); + void enterLookupCommand(EsqlBaseParser.LookupCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. + * Exit a parse tree produced by {@link EsqlBaseParser#lookupCommand}. * @param ctx the parse tree */ - void exitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); + void exitLookupCommand(EsqlBaseParser.LookupCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#identifier}. + * Enter a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. * @param ctx the parse tree */ - void enterIdentifier(EsqlBaseParser.IdentifierContext ctx); + void enterInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#identifier}. + * Exit a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. * @param ctx the parse tree */ - void exitIdentifier(EsqlBaseParser.IdentifierContext ctx); + void exitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#identifierPattern}. + * Enter a parse tree produced by {@link EsqlBaseParser#joinCommand}. * @param ctx the parse tree */ - void enterIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); + void enterJoinCommand(EsqlBaseParser.JoinCommandContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#identifierPattern}. + * Exit a parse tree produced by {@link EsqlBaseParser#joinCommand}. * @param ctx the parse tree */ - void exitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); + void exitJoinCommand(EsqlBaseParser.JoinCommandContext ctx); /** - * Enter a parse tree produced by the {@code nullLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by {@link EsqlBaseParser#joinTarget}. * @param ctx the parse tree */ - void enterNullLiteral(EsqlBaseParser.NullLiteralContext ctx); + void enterJoinTarget(EsqlBaseParser.JoinTargetContext ctx); /** - * Exit a parse tree produced by the {@code nullLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by {@link EsqlBaseParser#joinTarget}. * @param ctx the parse tree */ - void exitNullLiteral(EsqlBaseParser.NullLiteralContext ctx); + void exitJoinTarget(EsqlBaseParser.JoinTargetContext ctx); /** - * Enter a parse tree produced by the {@code qualifiedIntegerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by {@link EsqlBaseParser#joinCondition}. * @param ctx the parse tree */ - void enterQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); + void enterJoinCondition(EsqlBaseParser.JoinConditionContext ctx); /** - * Exit a parse tree produced by the {@code qualifiedIntegerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by {@link EsqlBaseParser#joinCondition}. * @param ctx the parse tree */ - void exitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); + void exitJoinCondition(EsqlBaseParser.JoinConditionContext ctx); /** - * Enter a parse tree produced by the {@code decimalLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by {@link EsqlBaseParser#joinPredicate}. * @param ctx the parse tree */ - void enterDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); + void enterJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); /** - * Exit a parse tree produced by the {@code decimalLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by {@link EsqlBaseParser#joinPredicate}. * @param ctx the parse tree */ - void exitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); + void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); /** - * Enter a parse tree produced by the {@code integerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by {@link EsqlBaseParser#insistCommand}. * @param ctx the parse tree */ - void enterIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); + void enterInsistCommand(EsqlBaseParser.InsistCommandContext ctx); /** - * Exit a parse tree produced by the {@code integerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by {@link EsqlBaseParser#insistCommand}. * @param ctx the parse tree */ - void exitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); + void exitInsistCommand(EsqlBaseParser.InsistCommandContext ctx); /** - * Enter a parse tree produced by the {@code booleanLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code matchExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); + void enterMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); /** - * Exit a parse tree produced by the {@code booleanLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code matchExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); + void exitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); /** - * Enter a parse tree produced by the {@code inputParameter} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code logicalNot} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterInputParameter(EsqlBaseParser.InputParameterContext ctx); + void enterLogicalNot(EsqlBaseParser.LogicalNotContext ctx); /** - * Exit a parse tree produced by the {@code inputParameter} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code logicalNot} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitInputParameter(EsqlBaseParser.InputParameterContext ctx); + void exitLogicalNot(EsqlBaseParser.LogicalNotContext ctx); /** - * Enter a parse tree produced by the {@code stringLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code booleanDefault} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterStringLiteral(EsqlBaseParser.StringLiteralContext ctx); + void enterBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); /** - * Exit a parse tree produced by the {@code stringLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code booleanDefault} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitStringLiteral(EsqlBaseParser.StringLiteralContext ctx); + void exitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); /** - * Enter a parse tree produced by the {@code numericArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code isNull} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); + void enterIsNull(EsqlBaseParser.IsNullContext ctx); /** - * Exit a parse tree produced by the {@code numericArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code isNull} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); + void exitIsNull(EsqlBaseParser.IsNullContext ctx); /** - * Enter a parse tree produced by the {@code booleanArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code regexExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); + void enterRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); /** - * Exit a parse tree produced by the {@code booleanArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code regexExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); + void exitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); /** - * Enter a parse tree produced by the {@code stringArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Enter a parse tree produced by the {@code logicalIn} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); + void enterLogicalIn(EsqlBaseParser.LogicalInContext ctx); /** - * Exit a parse tree produced by the {@code stringArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Exit a parse tree produced by the {@code logicalIn} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); + void exitLogicalIn(EsqlBaseParser.LogicalInContext ctx); /** - * Enter a parse tree produced by the {@code inputParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Enter a parse tree produced by the {@code logicalBinary} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void enterInputParam(EsqlBaseParser.InputParamContext ctx); + void enterLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); /** - * Exit a parse tree produced by the {@code inputParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Exit a parse tree produced by the {@code logicalBinary} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree */ - void exitInputParam(EsqlBaseParser.InputParamContext ctx); + void exitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); /** - * Enter a parse tree produced by the {@code inputNamedOrPositionalParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Enter a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. * @param ctx the parse tree */ - void enterInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); + void enterRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); /** - * Exit a parse tree produced by the {@code inputNamedOrPositionalParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Exit a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. * @param ctx the parse tree */ - void exitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); + void exitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. + * Enter a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. * @param ctx the parse tree */ - void enterIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); + void enterMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. + * Exit a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. * @param ctx the parse tree */ - void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); + void exitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#limitCommand}. + * Enter a parse tree produced by the {@code valueExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree */ - void enterLimitCommand(EsqlBaseParser.LimitCommandContext ctx); + void enterValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#limitCommand}. + * Exit a parse tree produced by the {@code valueExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree */ - void exitLimitCommand(EsqlBaseParser.LimitCommandContext ctx); + void exitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#sortCommand}. + * Enter a parse tree produced by the {@code comparison} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree */ - void enterSortCommand(EsqlBaseParser.SortCommandContext ctx); + void enterComparison(EsqlBaseParser.ComparisonContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#sortCommand}. + * Exit a parse tree produced by the {@code comparison} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree */ - void exitSortCommand(EsqlBaseParser.SortCommandContext ctx); + void exitComparison(EsqlBaseParser.ComparisonContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#orderExpression}. + * Enter a parse tree produced by the {@code operatorExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void enterOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); + void enterOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#orderExpression}. + * Exit a parse tree produced by the {@code operatorExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void exitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); + void exitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#keepCommand}. + * Enter a parse tree produced by the {@code arithmeticBinary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void enterKeepCommand(EsqlBaseParser.KeepCommandContext ctx); + void enterArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#keepCommand}. + * Exit a parse tree produced by the {@code arithmeticBinary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void exitKeepCommand(EsqlBaseParser.KeepCommandContext ctx); + void exitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#dropCommand}. + * Enter a parse tree produced by the {@code arithmeticUnary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void enterDropCommand(EsqlBaseParser.DropCommandContext ctx); + void enterArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#dropCommand}. + * Exit a parse tree produced by the {@code arithmeticUnary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree */ - void exitDropCommand(EsqlBaseParser.DropCommandContext ctx); + void exitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#renameCommand}. + * Enter a parse tree produced by the {@code dereference} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void enterRenameCommand(EsqlBaseParser.RenameCommandContext ctx); + void enterDereference(EsqlBaseParser.DereferenceContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#renameCommand}. + * Exit a parse tree produced by the {@code dereference} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void exitRenameCommand(EsqlBaseParser.RenameCommandContext ctx); + void exitDereference(EsqlBaseParser.DereferenceContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#renameClause}. + * Enter a parse tree produced by the {@code inlineCast} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void enterRenameClause(EsqlBaseParser.RenameClauseContext ctx); + void enterInlineCast(EsqlBaseParser.InlineCastContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#renameClause}. + * Exit a parse tree produced by the {@code inlineCast} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void exitRenameClause(EsqlBaseParser.RenameClauseContext ctx); + void exitInlineCast(EsqlBaseParser.InlineCastContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#dissectCommand}. + * Enter a parse tree produced by the {@code constantDefault} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void enterDissectCommand(EsqlBaseParser.DissectCommandContext ctx); + void enterConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#dissectCommand}. + * Exit a parse tree produced by the {@code constantDefault} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void exitDissectCommand(EsqlBaseParser.DissectCommandContext ctx); + void exitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#grokCommand}. + * Enter a parse tree produced by the {@code parenthesizedExpression} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void enterGrokCommand(EsqlBaseParser.GrokCommandContext ctx); + void enterParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#grokCommand}. + * Exit a parse tree produced by the {@code parenthesizedExpression} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void exitGrokCommand(EsqlBaseParser.GrokCommandContext ctx); + void exitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. + * Enter a parse tree produced by the {@code function} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void enterMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); + void enterFunction(EsqlBaseParser.FunctionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. + * Exit a parse tree produced by the {@code function} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree */ - void exitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); + void exitFunction(EsqlBaseParser.FunctionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#commandOptions}. + * Enter a parse tree produced by {@link EsqlBaseParser#functionExpression}. * @param ctx the parse tree */ - void enterCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); + void enterFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#commandOptions}. + * Exit a parse tree produced by {@link EsqlBaseParser#functionExpression}. * @param ctx the parse tree */ - void exitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); + void exitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#commandOption}. + * Enter a parse tree produced by {@link EsqlBaseParser#functionName}. * @param ctx the parse tree */ - void enterCommandOption(EsqlBaseParser.CommandOptionContext ctx); + void enterFunctionName(EsqlBaseParser.FunctionNameContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#commandOption}. + * Exit a parse tree produced by {@link EsqlBaseParser#functionName}. * @param ctx the parse tree */ - void exitCommandOption(EsqlBaseParser.CommandOptionContext ctx); + void exitFunctionName(EsqlBaseParser.FunctionNameContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#booleanValue}. + * Enter a parse tree produced by {@link EsqlBaseParser#mapExpression}. * @param ctx the parse tree */ - void enterBooleanValue(EsqlBaseParser.BooleanValueContext ctx); + void enterMapExpression(EsqlBaseParser.MapExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#booleanValue}. + * Exit a parse tree produced by {@link EsqlBaseParser#mapExpression}. * @param ctx the parse tree */ - void exitBooleanValue(EsqlBaseParser.BooleanValueContext ctx); + void exitMapExpression(EsqlBaseParser.MapExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#numericValue}. + * Enter a parse tree produced by {@link EsqlBaseParser#entryExpression}. * @param ctx the parse tree */ - void enterNumericValue(EsqlBaseParser.NumericValueContext ctx); + void enterEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#numericValue}. + * Exit a parse tree produced by {@link EsqlBaseParser#entryExpression}. * @param ctx the parse tree */ - void exitNumericValue(EsqlBaseParser.NumericValueContext ctx); + void exitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#decimalValue}. + * Enter a parse tree produced by the {@code nullLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterDecimalValue(EsqlBaseParser.DecimalValueContext ctx); + void enterNullLiteral(EsqlBaseParser.NullLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#decimalValue}. + * Exit a parse tree produced by the {@code nullLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitDecimalValue(EsqlBaseParser.DecimalValueContext ctx); + void exitNullLiteral(EsqlBaseParser.NullLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#integerValue}. + * Enter a parse tree produced by the {@code qualifiedIntegerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterIntegerValue(EsqlBaseParser.IntegerValueContext ctx); + void enterQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#integerValue}. + * Exit a parse tree produced by the {@code qualifiedIntegerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitIntegerValue(EsqlBaseParser.IntegerValueContext ctx); + void exitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#string}. + * Enter a parse tree produced by the {@code decimalLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterString(EsqlBaseParser.StringContext ctx); + void enterDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#string}. + * Exit a parse tree produced by the {@code decimalLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitString(EsqlBaseParser.StringContext ctx); + void exitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. + * Enter a parse tree produced by the {@code integerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); + void enterIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. + * Exit a parse tree produced by the {@code integerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); + void exitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#explainCommand}. + * Enter a parse tree produced by the {@code booleanLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); + void enterBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#explainCommand}. + * Exit a parse tree produced by the {@code booleanLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); + void exitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. + * Enter a parse tree produced by the {@code inputParameter} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); + void enterInputParameter(EsqlBaseParser.InputParameterContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. + * Exit a parse tree produced by the {@code inputParameter} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); + void exitInputParameter(EsqlBaseParser.InputParameterContext ctx); /** - * Enter a parse tree produced by the {@code showInfo} - * labeled alternative in {@link EsqlBaseParser#showCommand}. + * Enter a parse tree produced by the {@code stringLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterShowInfo(EsqlBaseParser.ShowInfoContext ctx); + void enterStringLiteral(EsqlBaseParser.StringLiteralContext ctx); /** - * Exit a parse tree produced by the {@code showInfo} - * labeled alternative in {@link EsqlBaseParser#showCommand}. + * Exit a parse tree produced by the {@code stringLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitShowInfo(EsqlBaseParser.ShowInfoContext ctx); + void exitStringLiteral(EsqlBaseParser.StringLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#enrichCommand}. + * Enter a parse tree produced by the {@code numericArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); + void enterNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#enrichCommand}. + * Exit a parse tree produced by the {@code numericArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); + void exitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. + * Enter a parse tree produced by the {@code booleanArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); + void enterBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. + * Exit a parse tree produced by the {@code booleanArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); + void exitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#lookupCommand}. + * Enter a parse tree produced by the {@code stringArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void enterLookupCommand(EsqlBaseParser.LookupCommandContext ctx); + void enterStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#lookupCommand}. + * Exit a parse tree produced by the {@code stringArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree */ - void exitLookupCommand(EsqlBaseParser.LookupCommandContext ctx); + void exitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#booleanValue}. * @param ctx the parse tree */ - void enterInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); + void enterBooleanValue(EsqlBaseParser.BooleanValueContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#booleanValue}. * @param ctx the parse tree */ - void exitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); + void exitBooleanValue(EsqlBaseParser.BooleanValueContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#joinCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#numericValue}. * @param ctx the parse tree */ - void enterJoinCommand(EsqlBaseParser.JoinCommandContext ctx); + void enterNumericValue(EsqlBaseParser.NumericValueContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#joinCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#numericValue}. * @param ctx the parse tree */ - void exitJoinCommand(EsqlBaseParser.JoinCommandContext ctx); + void exitNumericValue(EsqlBaseParser.NumericValueContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#joinTarget}. + * Enter a parse tree produced by {@link EsqlBaseParser#decimalValue}. * @param ctx the parse tree */ - void enterJoinTarget(EsqlBaseParser.JoinTargetContext ctx); + void enterDecimalValue(EsqlBaseParser.DecimalValueContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#joinTarget}. + * Exit a parse tree produced by {@link EsqlBaseParser#decimalValue}. * @param ctx the parse tree */ - void exitJoinTarget(EsqlBaseParser.JoinTargetContext ctx); + void exitDecimalValue(EsqlBaseParser.DecimalValueContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#joinCondition}. + * Enter a parse tree produced by {@link EsqlBaseParser#integerValue}. * @param ctx the parse tree */ - void enterJoinCondition(EsqlBaseParser.JoinConditionContext ctx); + void enterIntegerValue(EsqlBaseParser.IntegerValueContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#joinCondition}. + * Exit a parse tree produced by {@link EsqlBaseParser#integerValue}. * @param ctx the parse tree */ - void exitJoinCondition(EsqlBaseParser.JoinConditionContext ctx); + void exitIntegerValue(EsqlBaseParser.IntegerValueContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#joinPredicate}. + * Enter a parse tree produced by {@link EsqlBaseParser#string}. * @param ctx the parse tree */ - void enterJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); + void enterString(EsqlBaseParser.StringContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#joinPredicate}. + * Exit a parse tree produced by {@link EsqlBaseParser#string}. * @param ctx the parse tree */ - void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); + void exitString(EsqlBaseParser.StringContext ctx); /** - * Enter a parse tree produced by {@link EsqlBaseParser#insistCommand}. + * Enter a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. * @param ctx the parse tree */ - void enterInsistCommand(EsqlBaseParser.InsistCommandContext ctx); + void enterComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); /** - * Exit a parse tree produced by {@link EsqlBaseParser#insistCommand}. + * Exit a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. * @param ctx the parse tree */ - void exitInsistCommand(EsqlBaseParser.InsistCommandContext ctx); + void exitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java index a0097b039edbb..416abe6e0b9c9 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java @@ -57,544 +57,544 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { */ T visitWhereCommand(EsqlBaseParser.WhereCommandContext ctx); /** - * Visit a parse tree produced by the {@code matchExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by the {@code toDataType} + * labeled alternative in {@link EsqlBaseParser#dataType}. * @param ctx the parse tree * @return the visitor result */ - T visitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); + T visitToDataType(EsqlBaseParser.ToDataTypeContext ctx); /** - * Visit a parse tree produced by the {@code logicalNot} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#rowCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitLogicalNot(EsqlBaseParser.LogicalNotContext ctx); + T visitRowCommand(EsqlBaseParser.RowCommandContext ctx); /** - * Visit a parse tree produced by the {@code booleanDefault} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#fields}. * @param ctx the parse tree * @return the visitor result */ - T visitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); + T visitFields(EsqlBaseParser.FieldsContext ctx); /** - * Visit a parse tree produced by the {@code isNull} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#field}. * @param ctx the parse tree * @return the visitor result */ - T visitIsNull(EsqlBaseParser.IsNullContext ctx); + T visitField(EsqlBaseParser.FieldContext ctx); /** - * Visit a parse tree produced by the {@code regexExpression} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#fromCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); + T visitFromCommand(EsqlBaseParser.FromCommandContext ctx); /** - * Visit a parse tree produced by the {@code logicalIn} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#indexPattern}. * @param ctx the parse tree * @return the visitor result */ - T visitLogicalIn(EsqlBaseParser.LogicalInContext ctx); + T visitIndexPattern(EsqlBaseParser.IndexPatternContext ctx); /** - * Visit a parse tree produced by the {@code logicalBinary} - * labeled alternative in {@link EsqlBaseParser#booleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#clusterString}. * @param ctx the parse tree * @return the visitor result */ - T visitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); + T visitClusterString(EsqlBaseParser.ClusterStringContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#indexString}. * @param ctx the parse tree * @return the visitor result */ - T visitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); + T visitIndexString(EsqlBaseParser.IndexStringContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#metadata}. * @param ctx the parse tree * @return the visitor result */ - T visitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); + T visitMetadata(EsqlBaseParser.MetadataContext ctx); /** - * Visit a parse tree produced by the {@code valueExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#metricsCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); + T visitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); /** - * Visit a parse tree produced by the {@code comparison} - * labeled alternative in {@link EsqlBaseParser#valueExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#evalCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitComparison(EsqlBaseParser.ComparisonContext ctx); + T visitEvalCommand(EsqlBaseParser.EvalCommandContext ctx); /** - * Visit a parse tree produced by the {@code operatorExpressionDefault} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#statsCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); + T visitStatsCommand(EsqlBaseParser.StatsCommandContext ctx); /** - * Visit a parse tree produced by the {@code arithmeticBinary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#aggFields}. * @param ctx the parse tree * @return the visitor result */ - T visitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); + T visitAggFields(EsqlBaseParser.AggFieldsContext ctx); /** - * Visit a parse tree produced by the {@code arithmeticUnary} - * labeled alternative in {@link EsqlBaseParser#operatorExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#aggField}. * @param ctx the parse tree * @return the visitor result */ - T visitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); + T visitAggField(EsqlBaseParser.AggFieldContext ctx); /** - * Visit a parse tree produced by the {@code dereference} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedName}. * @param ctx the parse tree * @return the visitor result */ - T visitDereference(EsqlBaseParser.DereferenceContext ctx); + T visitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); /** - * Visit a parse tree produced by the {@code inlineCast} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. * @param ctx the parse tree * @return the visitor result */ - T visitInlineCast(EsqlBaseParser.InlineCastContext ctx); + T visitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); /** - * Visit a parse tree produced by the {@code constantDefault} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. * @param ctx the parse tree * @return the visitor result */ - T visitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); + T visitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); /** - * Visit a parse tree produced by the {@code parenthesizedExpression} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#identifier}. * @param ctx the parse tree * @return the visitor result */ - T visitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); + T visitIdentifier(EsqlBaseParser.IdentifierContext ctx); /** - * Visit a parse tree produced by the {@code function} - * labeled alternative in {@link EsqlBaseParser#primaryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#identifierPattern}. * @param ctx the parse tree * @return the visitor result */ - T visitFunction(EsqlBaseParser.FunctionContext ctx); + T visitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#functionExpression}. + * Visit a parse tree produced by the {@code inputParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree * @return the visitor result */ - T visitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); + T visitInputParam(EsqlBaseParser.InputParamContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#functionName}. + * Visit a parse tree produced by the {@code inputNamedOrPositionalParam} + * labeled alternative in {@link EsqlBaseParser#parameter}. * @param ctx the parse tree * @return the visitor result */ - T visitFunctionName(EsqlBaseParser.FunctionNameContext ctx); + T visitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#mapExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. * @param ctx the parse tree * @return the visitor result */ - T visitMapExpression(EsqlBaseParser.MapExpressionContext ctx); + T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#entryExpression}. + * Visit a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); + T visitLimitCommand(EsqlBaseParser.LimitCommandContext ctx); /** - * Visit a parse tree produced by the {@code toDataType} - * labeled alternative in {@link EsqlBaseParser#dataType}. + * Visit a parse tree produced by {@link EsqlBaseParser#sortCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitToDataType(EsqlBaseParser.ToDataTypeContext ctx); + T visitSortCommand(EsqlBaseParser.SortCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#rowCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#orderExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitRowCommand(EsqlBaseParser.RowCommandContext ctx); + T visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#fields}. + * Visit a parse tree produced by {@link EsqlBaseParser#keepCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitFields(EsqlBaseParser.FieldsContext ctx); + T visitKeepCommand(EsqlBaseParser.KeepCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#field}. + * Visit a parse tree produced by {@link EsqlBaseParser#dropCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitField(EsqlBaseParser.FieldContext ctx); + T visitDropCommand(EsqlBaseParser.DropCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#fromCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#renameCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitFromCommand(EsqlBaseParser.FromCommandContext ctx); + T visitRenameCommand(EsqlBaseParser.RenameCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#indexPattern}. + * Visit a parse tree produced by {@link EsqlBaseParser#renameClause}. * @param ctx the parse tree * @return the visitor result */ - T visitIndexPattern(EsqlBaseParser.IndexPatternContext ctx); + T visitRenameClause(EsqlBaseParser.RenameClauseContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#clusterString}. + * Visit a parse tree produced by {@link EsqlBaseParser#dissectCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitClusterString(EsqlBaseParser.ClusterStringContext ctx); + T visitDissectCommand(EsqlBaseParser.DissectCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#indexString}. + * Visit a parse tree produced by {@link EsqlBaseParser#grokCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitIndexString(EsqlBaseParser.IndexStringContext ctx); + T visitGrokCommand(EsqlBaseParser.GrokCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#metadata}. + * Visit a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitMetadata(EsqlBaseParser.MetadataContext ctx); + T visitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#metricsCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#commandOptions}. * @param ctx the parse tree * @return the visitor result */ - T visitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx); + T visitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#evalCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#commandOption}. * @param ctx the parse tree * @return the visitor result */ - T visitEvalCommand(EsqlBaseParser.EvalCommandContext ctx); + T visitCommandOption(EsqlBaseParser.CommandOptionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#statsCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#explainCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitStatsCommand(EsqlBaseParser.StatsCommandContext ctx); + T visitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#aggFields}. + * Visit a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitAggFields(EsqlBaseParser.AggFieldsContext ctx); + T visitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#aggField}. + * Visit a parse tree produced by the {@code showInfo} + * labeled alternative in {@link EsqlBaseParser#showCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitAggField(EsqlBaseParser.AggFieldContext ctx); + T visitShowInfo(EsqlBaseParser.ShowInfoContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedName}. + * Visit a parse tree produced by {@link EsqlBaseParser#enrichCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitQualifiedName(EsqlBaseParser.QualifiedNameContext ctx); + T visitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePattern}. + * Visit a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. * @param ctx the parse tree * @return the visitor result */ - T visitQualifiedNamePattern(EsqlBaseParser.QualifiedNamePatternContext ctx); + T visitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#qualifiedNamePatterns}. + * Visit a parse tree produced by {@link EsqlBaseParser#lookupCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitQualifiedNamePatterns(EsqlBaseParser.QualifiedNamePatternsContext ctx); + T visitLookupCommand(EsqlBaseParser.LookupCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#identifier}. + * Visit a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitIdentifier(EsqlBaseParser.IdentifierContext ctx); + T visitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#identifierPattern}. + * Visit a parse tree produced by {@link EsqlBaseParser#joinCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitIdentifierPattern(EsqlBaseParser.IdentifierPatternContext ctx); + T visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx); /** - * Visit a parse tree produced by the {@code nullLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by {@link EsqlBaseParser#joinTarget}. * @param ctx the parse tree * @return the visitor result */ - T visitNullLiteral(EsqlBaseParser.NullLiteralContext ctx); + T visitJoinTarget(EsqlBaseParser.JoinTargetContext ctx); /** - * Visit a parse tree produced by the {@code qualifiedIntegerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by {@link EsqlBaseParser#joinCondition}. * @param ctx the parse tree * @return the visitor result */ - T visitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); + T visitJoinCondition(EsqlBaseParser.JoinConditionContext ctx); /** - * Visit a parse tree produced by the {@code decimalLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by {@link EsqlBaseParser#joinPredicate}. * @param ctx the parse tree * @return the visitor result */ - T visitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); + T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); /** - * Visit a parse tree produced by the {@code integerLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by {@link EsqlBaseParser#insistCommand}. * @param ctx the parse tree * @return the visitor result */ - T visitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); + T visitInsistCommand(EsqlBaseParser.InsistCommandContext ctx); /** - * Visit a parse tree produced by the {@code booleanLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code matchExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); + T visitMatchExpression(EsqlBaseParser.MatchExpressionContext ctx); /** - * Visit a parse tree produced by the {@code inputParameter} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code logicalNot} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitInputParameter(EsqlBaseParser.InputParameterContext ctx); + T visitLogicalNot(EsqlBaseParser.LogicalNotContext ctx); /** - * Visit a parse tree produced by the {@code stringLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code booleanDefault} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitStringLiteral(EsqlBaseParser.StringLiteralContext ctx); + T visitBooleanDefault(EsqlBaseParser.BooleanDefaultContext ctx); /** - * Visit a parse tree produced by the {@code numericArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code isNull} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); + T visitIsNull(EsqlBaseParser.IsNullContext ctx); /** - * Visit a parse tree produced by the {@code booleanArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code regexExpression} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); + T visitRegexExpression(EsqlBaseParser.RegexExpressionContext ctx); /** - * Visit a parse tree produced by the {@code stringArrayLiteral} - * labeled alternative in {@link EsqlBaseParser#constant}. + * Visit a parse tree produced by the {@code logicalIn} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); + T visitLogicalIn(EsqlBaseParser.LogicalInContext ctx); /** - * Visit a parse tree produced by the {@code inputParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Visit a parse tree produced by the {@code logicalBinary} + * labeled alternative in {@link EsqlBaseParser#booleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitInputParam(EsqlBaseParser.InputParamContext ctx); + T visitLogicalBinary(EsqlBaseParser.LogicalBinaryContext ctx); /** - * Visit a parse tree produced by the {@code inputNamedOrPositionalParam} - * labeled alternative in {@link EsqlBaseParser#parameter}. + * Visit a parse tree produced by {@link EsqlBaseParser#regexBooleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitInputNamedOrPositionalParam(EsqlBaseParser.InputNamedOrPositionalParamContext ctx); + T visitRegexBooleanExpression(EsqlBaseParser.RegexBooleanExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#identifierOrParameter}. + * Visit a parse tree produced by {@link EsqlBaseParser#matchBooleanExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); + T visitMatchBooleanExpression(EsqlBaseParser.MatchBooleanExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#limitCommand}. + * Visit a parse tree produced by the {@code valueExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitLimitCommand(EsqlBaseParser.LimitCommandContext ctx); + T visitValueExpressionDefault(EsqlBaseParser.ValueExpressionDefaultContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#sortCommand}. + * Visit a parse tree produced by the {@code comparison} + * labeled alternative in {@link EsqlBaseParser#valueExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitSortCommand(EsqlBaseParser.SortCommandContext ctx); + T visitComparison(EsqlBaseParser.ComparisonContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#orderExpression}. + * Visit a parse tree produced by the {@code operatorExpressionDefault} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitOrderExpression(EsqlBaseParser.OrderExpressionContext ctx); + T visitOperatorExpressionDefault(EsqlBaseParser.OperatorExpressionDefaultContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#keepCommand}. + * Visit a parse tree produced by the {@code arithmeticBinary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitKeepCommand(EsqlBaseParser.KeepCommandContext ctx); + T visitArithmeticBinary(EsqlBaseParser.ArithmeticBinaryContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#dropCommand}. + * Visit a parse tree produced by the {@code arithmeticUnary} + * labeled alternative in {@link EsqlBaseParser#operatorExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitDropCommand(EsqlBaseParser.DropCommandContext ctx); + T visitArithmeticUnary(EsqlBaseParser.ArithmeticUnaryContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#renameCommand}. + * Visit a parse tree produced by the {@code dereference} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitRenameCommand(EsqlBaseParser.RenameCommandContext ctx); + T visitDereference(EsqlBaseParser.DereferenceContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#renameClause}. + * Visit a parse tree produced by the {@code inlineCast} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitRenameClause(EsqlBaseParser.RenameClauseContext ctx); + T visitInlineCast(EsqlBaseParser.InlineCastContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#dissectCommand}. + * Visit a parse tree produced by the {@code constantDefault} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitDissectCommand(EsqlBaseParser.DissectCommandContext ctx); + T visitConstantDefault(EsqlBaseParser.ConstantDefaultContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#grokCommand}. + * Visit a parse tree produced by the {@code parenthesizedExpression} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitGrokCommand(EsqlBaseParser.GrokCommandContext ctx); + T visitParenthesizedExpression(EsqlBaseParser.ParenthesizedExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#mvExpandCommand}. + * Visit a parse tree produced by the {@code function} + * labeled alternative in {@link EsqlBaseParser#primaryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitMvExpandCommand(EsqlBaseParser.MvExpandCommandContext ctx); + T visitFunction(EsqlBaseParser.FunctionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#commandOptions}. + * Visit a parse tree produced by {@link EsqlBaseParser#functionExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitCommandOptions(EsqlBaseParser.CommandOptionsContext ctx); + T visitFunctionExpression(EsqlBaseParser.FunctionExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#commandOption}. + * Visit a parse tree produced by {@link EsqlBaseParser#functionName}. * @param ctx the parse tree * @return the visitor result */ - T visitCommandOption(EsqlBaseParser.CommandOptionContext ctx); + T visitFunctionName(EsqlBaseParser.FunctionNameContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#booleanValue}. + * Visit a parse tree produced by {@link EsqlBaseParser#mapExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitBooleanValue(EsqlBaseParser.BooleanValueContext ctx); + T visitMapExpression(EsqlBaseParser.MapExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#numericValue}. + * Visit a parse tree produced by {@link EsqlBaseParser#entryExpression}. * @param ctx the parse tree * @return the visitor result */ - T visitNumericValue(EsqlBaseParser.NumericValueContext ctx); + T visitEntryExpression(EsqlBaseParser.EntryExpressionContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#decimalValue}. + * Visit a parse tree produced by the {@code nullLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitDecimalValue(EsqlBaseParser.DecimalValueContext ctx); + T visitNullLiteral(EsqlBaseParser.NullLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#integerValue}. + * Visit a parse tree produced by the {@code qualifiedIntegerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx); + T visitQualifiedIntegerLiteral(EsqlBaseParser.QualifiedIntegerLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#string}. + * Visit a parse tree produced by the {@code decimalLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitString(EsqlBaseParser.StringContext ctx); + T visitDecimalLiteral(EsqlBaseParser.DecimalLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. + * Visit a parse tree produced by the {@code integerLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); + T visitIntegerLiteral(EsqlBaseParser.IntegerLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#explainCommand}. + * Visit a parse tree produced by the {@code booleanLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitExplainCommand(EsqlBaseParser.ExplainCommandContext ctx); + T visitBooleanLiteral(EsqlBaseParser.BooleanLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#subqueryExpression}. + * Visit a parse tree produced by the {@code inputParameter} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitSubqueryExpression(EsqlBaseParser.SubqueryExpressionContext ctx); + T visitInputParameter(EsqlBaseParser.InputParameterContext ctx); /** - * Visit a parse tree produced by the {@code showInfo} - * labeled alternative in {@link EsqlBaseParser#showCommand}. + * Visit a parse tree produced by the {@code stringLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitShowInfo(EsqlBaseParser.ShowInfoContext ctx); + T visitStringLiteral(EsqlBaseParser.StringLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#enrichCommand}. + * Visit a parse tree produced by the {@code numericArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx); + T visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#enrichWithClause}. + * Visit a parse tree produced by the {@code booleanArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitEnrichWithClause(EsqlBaseParser.EnrichWithClauseContext ctx); + T visitBooleanArrayLiteral(EsqlBaseParser.BooleanArrayLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#lookupCommand}. + * Visit a parse tree produced by the {@code stringArrayLiteral} + * labeled alternative in {@link EsqlBaseParser#constant}. * @param ctx the parse tree * @return the visitor result */ - T visitLookupCommand(EsqlBaseParser.LookupCommandContext ctx); + T visitStringArrayLiteral(EsqlBaseParser.StringArrayLiteralContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#inlinestatsCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#booleanValue}. * @param ctx the parse tree * @return the visitor result */ - T visitInlinestatsCommand(EsqlBaseParser.InlinestatsCommandContext ctx); + T visitBooleanValue(EsqlBaseParser.BooleanValueContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#joinCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#numericValue}. * @param ctx the parse tree * @return the visitor result */ - T visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx); + T visitNumericValue(EsqlBaseParser.NumericValueContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#joinTarget}. + * Visit a parse tree produced by {@link EsqlBaseParser#decimalValue}. * @param ctx the parse tree * @return the visitor result */ - T visitJoinTarget(EsqlBaseParser.JoinTargetContext ctx); + T visitDecimalValue(EsqlBaseParser.DecimalValueContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#joinCondition}. + * Visit a parse tree produced by {@link EsqlBaseParser#integerValue}. * @param ctx the parse tree * @return the visitor result */ - T visitJoinCondition(EsqlBaseParser.JoinConditionContext ctx); + T visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#joinPredicate}. + * Visit a parse tree produced by {@link EsqlBaseParser#string}. * @param ctx the parse tree * @return the visitor result */ - T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx); + T visitString(EsqlBaseParser.StringContext ctx); /** - * Visit a parse tree produced by {@link EsqlBaseParser#insistCommand}. + * Visit a parse tree produced by {@link EsqlBaseParser#comparisonOperator}. * @param ctx the parse tree * @return the visitor result */ - T visitInsistCommand(EsqlBaseParser.InsistCommandContext ctx); + T visitComparisonOperator(EsqlBaseParser.ComparisonOperatorContext ctx); }