From 612dbcce9c31606e28cc8207f0c56a3ae12e17de Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Feb 2025 16:42:30 +0100 Subject: [PATCH 01/75] Reranker grammar. --- .../esql/src/main/antlr/EsqlBaseLexer.g4 | 10 +- .../esql/src/main/antlr/EsqlBaseLexer.tokens | 335 +-- .../esql/src/main/antlr/EsqlBaseParser.g4 | 10 + .../esql/src/main/antlr/EsqlBaseParser.tokens | 335 +-- .../xpack/esql/parser/EsqlBaseLexer.interp | 26 +- .../xpack/esql/parser/EsqlBaseLexer.java | 2383 +++++++++-------- .../xpack/esql/parser/EsqlBaseParser.interp | 18 +- .../xpack/esql/parser/EsqlBaseParser.java | 2082 +++++++------- .../parser/EsqlBaseParserBaseListener.java | 24 + .../parser/EsqlBaseParserBaseVisitor.java | 14 + .../esql/parser/EsqlBaseParserListener.java | 20 + .../esql/parser/EsqlBaseParserVisitor.java | 12 + 12 files changed, 2786 insertions(+), 2483 deletions(-) diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 index 6556cbba5c5f9..85db59162a83e 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 @@ -90,6 +90,7 @@ DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION DEV_INSIST : {this.isDevVersion()}? 'insist_🐔' -> pushMode(PROJECT_MODE); DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE); DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE); +DEV_RERANK : {this.isDevVersion()}? 'rerank' -> pushMode(EXPRESSION_MODE); // list of all JOIN commands DEV_JOIN_FULL : {this.isDevVersion()}? 'full' -> pushMode(JOIN_MODE); DEV_JOIN_LEFT : {this.isDevVersion()}? 'left' -> pushMode(JOIN_MODE); @@ -180,6 +181,9 @@ DECIMAL_LITERAL ; BY : 'by'; +ON: 'on'; +WITH: 'with'; +AS: 'as'; AND : 'and'; ASC : 'asc'; @@ -359,7 +363,7 @@ 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_AS : AS -> type(AS); RENAME_ID_PATTERN : ID_PATTERN -> type(ID_PATTERN) @@ -382,8 +386,8 @@ 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); +ENRICH_ON : ON -> type(ON), pushMode(ENRICH_FIELD_MODE); +ENRICH_WITH : WITH -> type(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 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens index 7756d406adee8..768ec79366d3b 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens @@ -20,126 +20,127 @@ DEV_INLINESTATS=19 DEV_INSIST=20 DEV_LOOKUP=21 DEV_METRICS=22 -DEV_JOIN_FULL=23 -DEV_JOIN_LEFT=24 -DEV_JOIN_RIGHT=25 -DEV_FORK=26 -UNKNOWN_CMD=27 -LINE_COMMENT=28 -MULTILINE_COMMENT=29 -WS=30 -PIPE=31 -QUOTED_STRING=32 -INTEGER_LITERAL=33 -DECIMAL_LITERAL=34 -BY=35 -AND=36 -ASC=37 -ASSIGN=38 -CAST_OP=39 -COLON=40 -COMMA=41 -DESC=42 -DOT=43 -FALSE=44 -FIRST=45 -IN=46 -IS=47 -LAST=48 -LIKE=49 -LP=50 -NOT=51 -NULL=52 -NULLS=53 -OR=54 -PARAM=55 -RLIKE=56 -RP=57 -TRUE=58 -EQ=59 -CIEQ=60 -NEQ=61 -LT=62 -LTE=63 -GT=64 -GTE=65 -PLUS=66 -MINUS=67 -ASTERISK=68 -SLASH=69 -PERCENT=70 -LEFT_BRACES=71 -RIGHT_BRACES=72 -NAMED_OR_POSITIONAL_PARAM=73 -OPENING_BRACKET=74 -CLOSING_BRACKET=75 -UNQUOTED_IDENTIFIER=76 -QUOTED_IDENTIFIER=77 -EXPR_LINE_COMMENT=78 -EXPR_MULTILINE_COMMENT=79 -EXPR_WS=80 -EXPLAIN_WS=81 -EXPLAIN_LINE_COMMENT=82 -EXPLAIN_MULTILINE_COMMENT=83 -METADATA=84 -UNQUOTED_SOURCE=85 -FROM_LINE_COMMENT=86 -FROM_MULTILINE_COMMENT=87 -FROM_WS=88 -ID_PATTERN=89 -PROJECT_LINE_COMMENT=90 -PROJECT_MULTILINE_COMMENT=91 -PROJECT_WS=92 -AS=93 -RENAME_LINE_COMMENT=94 -RENAME_MULTILINE_COMMENT=95 -RENAME_WS=96 -ON=97 -WITH=98 -ENRICH_POLICY_NAME=99 -ENRICH_LINE_COMMENT=100 -ENRICH_MULTILINE_COMMENT=101 -ENRICH_WS=102 -ENRICH_FIELD_LINE_COMMENT=103 -ENRICH_FIELD_MULTILINE_COMMENT=104 -ENRICH_FIELD_WS=105 -MVEXPAND_LINE_COMMENT=106 -MVEXPAND_MULTILINE_COMMENT=107 -MVEXPAND_WS=108 -INFO=109 -SHOW_LINE_COMMENT=110 -SHOW_MULTILINE_COMMENT=111 -SHOW_WS=112 -SETTING=113 -SETTING_LINE_COMMENT=114 -SETTTING_MULTILINE_COMMENT=115 -SETTING_WS=116 -LOOKUP_LINE_COMMENT=117 -LOOKUP_MULTILINE_COMMENT=118 -LOOKUP_WS=119 -LOOKUP_FIELD_LINE_COMMENT=120 -LOOKUP_FIELD_MULTILINE_COMMENT=121 -LOOKUP_FIELD_WS=122 -JOIN=123 -USING=124 -JOIN_LINE_COMMENT=125 -JOIN_MULTILINE_COMMENT=126 -JOIN_WS=127 -METRICS_LINE_COMMENT=128 -METRICS_MULTILINE_COMMENT=129 -METRICS_WS=130 -CLOSING_METRICS_LINE_COMMENT=131 -CLOSING_METRICS_MULTILINE_COMMENT=132 -CLOSING_METRICS_WS=133 -CHANGE_POINT_LINE_COMMENT=134 -CHANGE_POINT_MULTILINE_COMMENT=135 -CHANGE_POINT_WS=136 -INSIST_WS=137 -INSIST_LINE_COMMENT=138 -INSIST_MULTILINE_COMMENT=139 -FORK_WS=140 -FORK_LINE_COMMENT=141 -FORK_MULTILINE_COMMENT=142 +DEV_RERANK=23 +DEV_JOIN_FULL=24 +DEV_JOIN_LEFT=25 +DEV_JOIN_RIGHT=26 +DEV_FORK=27 +UNKNOWN_CMD=28 +LINE_COMMENT=29 +MULTILINE_COMMENT=30 +WS=31 +PIPE=32 +QUOTED_STRING=33 +INTEGER_LITERAL=34 +DECIMAL_LITERAL=35 +BY=36 +ON=37 +WITH=38 +AS=39 +AND=40 +ASC=41 +ASSIGN=42 +CAST_OP=43 +COLON=44 +COMMA=45 +DESC=46 +DOT=47 +FALSE=48 +FIRST=49 +IN=50 +IS=51 +LAST=52 +LIKE=53 +LP=54 +NOT=55 +NULL=56 +NULLS=57 +OR=58 +PARAM=59 +RLIKE=60 +RP=61 +TRUE=62 +EQ=63 +CIEQ=64 +NEQ=65 +LT=66 +LTE=67 +GT=68 +GTE=69 +PLUS=70 +MINUS=71 +ASTERISK=72 +SLASH=73 +PERCENT=74 +LEFT_BRACES=75 +RIGHT_BRACES=76 +NAMED_OR_POSITIONAL_PARAM=77 +OPENING_BRACKET=78 +CLOSING_BRACKET=79 +UNQUOTED_IDENTIFIER=80 +QUOTED_IDENTIFIER=81 +EXPR_LINE_COMMENT=82 +EXPR_MULTILINE_COMMENT=83 +EXPR_WS=84 +EXPLAIN_WS=85 +EXPLAIN_LINE_COMMENT=86 +EXPLAIN_MULTILINE_COMMENT=87 +METADATA=88 +UNQUOTED_SOURCE=89 +FROM_LINE_COMMENT=90 +FROM_MULTILINE_COMMENT=91 +FROM_WS=92 +ID_PATTERN=93 +PROJECT_LINE_COMMENT=94 +PROJECT_MULTILINE_COMMENT=95 +PROJECT_WS=96 +RENAME_LINE_COMMENT=97 +RENAME_MULTILINE_COMMENT=98 +RENAME_WS=99 +ENRICH_POLICY_NAME=100 +ENRICH_LINE_COMMENT=101 +ENRICH_MULTILINE_COMMENT=102 +ENRICH_WS=103 +ENRICH_FIELD_LINE_COMMENT=104 +ENRICH_FIELD_MULTILINE_COMMENT=105 +ENRICH_FIELD_WS=106 +MVEXPAND_LINE_COMMENT=107 +MVEXPAND_MULTILINE_COMMENT=108 +MVEXPAND_WS=109 +INFO=110 +SHOW_LINE_COMMENT=111 +SHOW_MULTILINE_COMMENT=112 +SHOW_WS=113 +SETTING=114 +SETTING_LINE_COMMENT=115 +SETTTING_MULTILINE_COMMENT=116 +SETTING_WS=117 +LOOKUP_LINE_COMMENT=118 +LOOKUP_MULTILINE_COMMENT=119 +LOOKUP_WS=120 +LOOKUP_FIELD_LINE_COMMENT=121 +LOOKUP_FIELD_MULTILINE_COMMENT=122 +LOOKUP_FIELD_WS=123 +JOIN=124 +USING=125 +JOIN_LINE_COMMENT=126 +JOIN_MULTILINE_COMMENT=127 +JOIN_WS=128 +METRICS_LINE_COMMENT=129 +METRICS_MULTILINE_COMMENT=130 +METRICS_WS=131 +CLOSING_METRICS_LINE_COMMENT=132 +CLOSING_METRICS_MULTILINE_COMMENT=133 +CLOSING_METRICS_WS=134 +CHANGE_POINT_LINE_COMMENT=135 +CHANGE_POINT_MULTILINE_COMMENT=136 +CHANGE_POINT_WS=137 +INSIST_WS=138 +INSIST_LINE_COMMENT=139 +INSIST_MULTILINE_COMMENT=140 +FORK_WS=141 +FORK_LINE_COMMENT=142 +FORK_MULTILINE_COMMENT=143 'dissect'=1 'drop'=2 'enrich'=3 @@ -157,50 +158,50 @@ FORK_MULTILINE_COMMENT=142 'stats'=15 'where'=16 'lookup'=17 -'|'=31 -'by'=35 -'and'=36 -'asc'=37 -'='=38 -'::'=39 -':'=40 -','=41 -'desc'=42 -'.'=43 -'false'=44 -'first'=45 -'in'=46 -'is'=47 -'last'=48 -'like'=49 -'('=50 -'not'=51 -'null'=52 -'nulls'=53 -'or'=54 -'?'=55 -'rlike'=56 -')'=57 -'true'=58 -'=='=59 -'=~'=60 -'!='=61 -'<'=62 -'<='=63 -'>'=64 -'>='=65 -'+'=66 -'-'=67 -'*'=68 -'/'=69 -'%'=70 -'{'=71 -'}'=72 -']'=75 -'metadata'=84 -'as'=93 -'on'=97 -'with'=98 -'info'=109 -'join'=123 -'USING'=124 +'|'=32 +'by'=36 +'on'=37 +'with'=38 +'as'=39 +'and'=40 +'asc'=41 +'='=42 +'::'=43 +':'=44 +','=45 +'desc'=46 +'.'=47 +'false'=48 +'first'=49 +'in'=50 +'is'=51 +'last'=52 +'like'=53 +'('=54 +'not'=55 +'null'=56 +'nulls'=57 +'or'=58 +'?'=59 +'rlike'=60 +')'=61 +'true'=62 +'=='=63 +'=~'=64 +'!='=65 +'<'=66 +'<='=67 +'>'=68 +'>='=69 +'+'=70 +'-'=71 +'*'=72 +'/'=73 +'%'=74 +'{'=75 +'}'=76 +']'=79 +'metadata'=88 +'info'=110 +'join'=124 +'USING'=125 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 004c0cd2e7479..440a62935391a 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -58,6 +58,7 @@ processingCommand | {this.isDevVersion()}? changePointCommand | {this.isDevVersion()}? insistCommand | {this.isDevVersion()}? forkCommand + | {this.isDevVersion()}? rerankCommand ; whereCommand @@ -223,6 +224,11 @@ identifierOrParameter | parameter ; +stringOrParameter + : string + | {this.isDevVersion()}? parameter + ; + limitCommand : LIMIT INTEGER_LITERAL ; @@ -373,3 +379,7 @@ forkSubQueryProcessingCommand | sortCommand | limitCommand ; + +rerankCommand + : DEV_RERANK queryText=stringOrParameter (ON fields)? WITH inferenceId=stringOrParameter + ; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens index 7756d406adee8..768ec79366d3b 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens @@ -20,126 +20,127 @@ DEV_INLINESTATS=19 DEV_INSIST=20 DEV_LOOKUP=21 DEV_METRICS=22 -DEV_JOIN_FULL=23 -DEV_JOIN_LEFT=24 -DEV_JOIN_RIGHT=25 -DEV_FORK=26 -UNKNOWN_CMD=27 -LINE_COMMENT=28 -MULTILINE_COMMENT=29 -WS=30 -PIPE=31 -QUOTED_STRING=32 -INTEGER_LITERAL=33 -DECIMAL_LITERAL=34 -BY=35 -AND=36 -ASC=37 -ASSIGN=38 -CAST_OP=39 -COLON=40 -COMMA=41 -DESC=42 -DOT=43 -FALSE=44 -FIRST=45 -IN=46 -IS=47 -LAST=48 -LIKE=49 -LP=50 -NOT=51 -NULL=52 -NULLS=53 -OR=54 -PARAM=55 -RLIKE=56 -RP=57 -TRUE=58 -EQ=59 -CIEQ=60 -NEQ=61 -LT=62 -LTE=63 -GT=64 -GTE=65 -PLUS=66 -MINUS=67 -ASTERISK=68 -SLASH=69 -PERCENT=70 -LEFT_BRACES=71 -RIGHT_BRACES=72 -NAMED_OR_POSITIONAL_PARAM=73 -OPENING_BRACKET=74 -CLOSING_BRACKET=75 -UNQUOTED_IDENTIFIER=76 -QUOTED_IDENTIFIER=77 -EXPR_LINE_COMMENT=78 -EXPR_MULTILINE_COMMENT=79 -EXPR_WS=80 -EXPLAIN_WS=81 -EXPLAIN_LINE_COMMENT=82 -EXPLAIN_MULTILINE_COMMENT=83 -METADATA=84 -UNQUOTED_SOURCE=85 -FROM_LINE_COMMENT=86 -FROM_MULTILINE_COMMENT=87 -FROM_WS=88 -ID_PATTERN=89 -PROJECT_LINE_COMMENT=90 -PROJECT_MULTILINE_COMMENT=91 -PROJECT_WS=92 -AS=93 -RENAME_LINE_COMMENT=94 -RENAME_MULTILINE_COMMENT=95 -RENAME_WS=96 -ON=97 -WITH=98 -ENRICH_POLICY_NAME=99 -ENRICH_LINE_COMMENT=100 -ENRICH_MULTILINE_COMMENT=101 -ENRICH_WS=102 -ENRICH_FIELD_LINE_COMMENT=103 -ENRICH_FIELD_MULTILINE_COMMENT=104 -ENRICH_FIELD_WS=105 -MVEXPAND_LINE_COMMENT=106 -MVEXPAND_MULTILINE_COMMENT=107 -MVEXPAND_WS=108 -INFO=109 -SHOW_LINE_COMMENT=110 -SHOW_MULTILINE_COMMENT=111 -SHOW_WS=112 -SETTING=113 -SETTING_LINE_COMMENT=114 -SETTTING_MULTILINE_COMMENT=115 -SETTING_WS=116 -LOOKUP_LINE_COMMENT=117 -LOOKUP_MULTILINE_COMMENT=118 -LOOKUP_WS=119 -LOOKUP_FIELD_LINE_COMMENT=120 -LOOKUP_FIELD_MULTILINE_COMMENT=121 -LOOKUP_FIELD_WS=122 -JOIN=123 -USING=124 -JOIN_LINE_COMMENT=125 -JOIN_MULTILINE_COMMENT=126 -JOIN_WS=127 -METRICS_LINE_COMMENT=128 -METRICS_MULTILINE_COMMENT=129 -METRICS_WS=130 -CLOSING_METRICS_LINE_COMMENT=131 -CLOSING_METRICS_MULTILINE_COMMENT=132 -CLOSING_METRICS_WS=133 -CHANGE_POINT_LINE_COMMENT=134 -CHANGE_POINT_MULTILINE_COMMENT=135 -CHANGE_POINT_WS=136 -INSIST_WS=137 -INSIST_LINE_COMMENT=138 -INSIST_MULTILINE_COMMENT=139 -FORK_WS=140 -FORK_LINE_COMMENT=141 -FORK_MULTILINE_COMMENT=142 +DEV_RERANK=23 +DEV_JOIN_FULL=24 +DEV_JOIN_LEFT=25 +DEV_JOIN_RIGHT=26 +DEV_FORK=27 +UNKNOWN_CMD=28 +LINE_COMMENT=29 +MULTILINE_COMMENT=30 +WS=31 +PIPE=32 +QUOTED_STRING=33 +INTEGER_LITERAL=34 +DECIMAL_LITERAL=35 +BY=36 +ON=37 +WITH=38 +AS=39 +AND=40 +ASC=41 +ASSIGN=42 +CAST_OP=43 +COLON=44 +COMMA=45 +DESC=46 +DOT=47 +FALSE=48 +FIRST=49 +IN=50 +IS=51 +LAST=52 +LIKE=53 +LP=54 +NOT=55 +NULL=56 +NULLS=57 +OR=58 +PARAM=59 +RLIKE=60 +RP=61 +TRUE=62 +EQ=63 +CIEQ=64 +NEQ=65 +LT=66 +LTE=67 +GT=68 +GTE=69 +PLUS=70 +MINUS=71 +ASTERISK=72 +SLASH=73 +PERCENT=74 +LEFT_BRACES=75 +RIGHT_BRACES=76 +NAMED_OR_POSITIONAL_PARAM=77 +OPENING_BRACKET=78 +CLOSING_BRACKET=79 +UNQUOTED_IDENTIFIER=80 +QUOTED_IDENTIFIER=81 +EXPR_LINE_COMMENT=82 +EXPR_MULTILINE_COMMENT=83 +EXPR_WS=84 +EXPLAIN_WS=85 +EXPLAIN_LINE_COMMENT=86 +EXPLAIN_MULTILINE_COMMENT=87 +METADATA=88 +UNQUOTED_SOURCE=89 +FROM_LINE_COMMENT=90 +FROM_MULTILINE_COMMENT=91 +FROM_WS=92 +ID_PATTERN=93 +PROJECT_LINE_COMMENT=94 +PROJECT_MULTILINE_COMMENT=95 +PROJECT_WS=96 +RENAME_LINE_COMMENT=97 +RENAME_MULTILINE_COMMENT=98 +RENAME_WS=99 +ENRICH_POLICY_NAME=100 +ENRICH_LINE_COMMENT=101 +ENRICH_MULTILINE_COMMENT=102 +ENRICH_WS=103 +ENRICH_FIELD_LINE_COMMENT=104 +ENRICH_FIELD_MULTILINE_COMMENT=105 +ENRICH_FIELD_WS=106 +MVEXPAND_LINE_COMMENT=107 +MVEXPAND_MULTILINE_COMMENT=108 +MVEXPAND_WS=109 +INFO=110 +SHOW_LINE_COMMENT=111 +SHOW_MULTILINE_COMMENT=112 +SHOW_WS=113 +SETTING=114 +SETTING_LINE_COMMENT=115 +SETTTING_MULTILINE_COMMENT=116 +SETTING_WS=117 +LOOKUP_LINE_COMMENT=118 +LOOKUP_MULTILINE_COMMENT=119 +LOOKUP_WS=120 +LOOKUP_FIELD_LINE_COMMENT=121 +LOOKUP_FIELD_MULTILINE_COMMENT=122 +LOOKUP_FIELD_WS=123 +JOIN=124 +USING=125 +JOIN_LINE_COMMENT=126 +JOIN_MULTILINE_COMMENT=127 +JOIN_WS=128 +METRICS_LINE_COMMENT=129 +METRICS_MULTILINE_COMMENT=130 +METRICS_WS=131 +CLOSING_METRICS_LINE_COMMENT=132 +CLOSING_METRICS_MULTILINE_COMMENT=133 +CLOSING_METRICS_WS=134 +CHANGE_POINT_LINE_COMMENT=135 +CHANGE_POINT_MULTILINE_COMMENT=136 +CHANGE_POINT_WS=137 +INSIST_WS=138 +INSIST_LINE_COMMENT=139 +INSIST_MULTILINE_COMMENT=140 +FORK_WS=141 +FORK_LINE_COMMENT=142 +FORK_MULTILINE_COMMENT=143 'dissect'=1 'drop'=2 'enrich'=3 @@ -157,50 +158,50 @@ FORK_MULTILINE_COMMENT=142 'stats'=15 'where'=16 'lookup'=17 -'|'=31 -'by'=35 -'and'=36 -'asc'=37 -'='=38 -'::'=39 -':'=40 -','=41 -'desc'=42 -'.'=43 -'false'=44 -'first'=45 -'in'=46 -'is'=47 -'last'=48 -'like'=49 -'('=50 -'not'=51 -'null'=52 -'nulls'=53 -'or'=54 -'?'=55 -'rlike'=56 -')'=57 -'true'=58 -'=='=59 -'=~'=60 -'!='=61 -'<'=62 -'<='=63 -'>'=64 -'>='=65 -'+'=66 -'-'=67 -'*'=68 -'/'=69 -'%'=70 -'{'=71 -'}'=72 -']'=75 -'metadata'=84 -'as'=93 -'on'=97 -'with'=98 -'info'=109 -'join'=123 -'USING'=124 +'|'=32 +'by'=36 +'on'=37 +'with'=38 +'as'=39 +'and'=40 +'asc'=41 +'='=42 +'::'=43 +':'=44 +','=45 +'desc'=46 +'.'=47 +'false'=48 +'first'=49 +'in'=50 +'is'=51 +'last'=52 +'like'=53 +'('=54 +'not'=55 +'null'=56 +'nulls'=57 +'or'=58 +'?'=59 +'rlike'=60 +')'=61 +'true'=62 +'=='=63 +'=~'=64 +'!='=65 +'<'=66 +'<='=67 +'>'=68 +'>='=69 +'+'=70 +'-'=71 +'*'=72 +'/'=73 +'%'=74 +'{'=75 +'}'=76 +']'=79 +'metadata'=88 +'info'=110 +'join'=124 +'USING'=125 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 3f1b0baf6808b..a9ecdb38d01b1 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 @@ -30,11 +30,15 @@ null null null null +null '|' null null null 'by' +'on' +'with' +'as' 'and' 'asc' '=' @@ -92,12 +96,9 @@ null null null null -'as' null null null -'on' -'with' null null null @@ -167,6 +168,7 @@ DEV_INLINESTATS DEV_INSIST DEV_LOOKUP DEV_METRICS +DEV_RERANK DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT @@ -180,6 +182,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -237,12 +242,9 @@ 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 @@ -311,6 +313,7 @@ DEV_INLINESTATS DEV_INSIST DEV_LOOKUP DEV_METRICS +DEV_RERANK DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT @@ -334,6 +337,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -419,15 +425,15 @@ RENAME_COMMA RENAME_DOT RENAME_PARAM RENAME_NAMED_OR_POSITIONAL_PARAM -AS +RENAME_AS RENAME_ID_PATTERN RENAME_LINE_COMMENT RENAME_MULTILINE_COMMENT RENAME_WS ENRICH_PIPE ENRICH_OPENING_BRACKET -ON -WITH +ENRICH_ON +ENRICH_WITH ENRICH_POLICY_NAME_BODY ENRICH_POLICY_NAME ENRICH_MODE_UNQUOTED_VALUE @@ -559,4 +565,4 @@ INSIST_MODE FORK_MODE atn: -[4, 0, 142, 1799, 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, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 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, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 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, 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, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 4, 26, 744, 8, 26, 11, 26, 12, 26, 745, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 754, 8, 27, 10, 27, 12, 27, 757, 9, 27, 1, 27, 3, 27, 760, 8, 27, 1, 27, 3, 27, 763, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 772, 8, 28, 10, 28, 12, 28, 775, 9, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 4, 29, 783, 8, 29, 11, 29, 12, 29, 784, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 3, 35, 804, 8, 35, 1, 35, 4, 35, 807, 8, 35, 11, 35, 12, 35, 808, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 818, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 825, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 830, 8, 41, 10, 41, 12, 41, 833, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 841, 8, 41, 10, 41, 12, 41, 844, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 851, 8, 41, 1, 41, 3, 41, 854, 8, 41, 3, 41, 856, 8, 41, 1, 42, 4, 42, 859, 8, 42, 11, 42, 12, 42, 860, 1, 43, 4, 43, 864, 8, 43, 11, 43, 12, 43, 865, 1, 43, 1, 43, 5, 43, 870, 8, 43, 10, 43, 12, 43, 873, 9, 43, 1, 43, 1, 43, 4, 43, 877, 8, 43, 11, 43, 12, 43, 878, 1, 43, 4, 43, 882, 8, 43, 11, 43, 12, 43, 883, 1, 43, 1, 43, 5, 43, 888, 8, 43, 10, 43, 12, 43, 891, 9, 43, 3, 43, 893, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 4, 43, 899, 8, 43, 11, 43, 12, 43, 900, 1, 43, 1, 43, 3, 43, 905, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 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, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 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, 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, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1047, 8, 85, 1, 85, 5, 85, 1050, 8, 85, 10, 85, 12, 85, 1053, 9, 85, 1, 85, 1, 85, 4, 85, 1057, 8, 85, 11, 85, 12, 85, 1058, 3, 85, 1061, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 5, 88, 1075, 8, 88, 10, 88, 12, 88, 1078, 9, 88, 1, 88, 1, 88, 3, 88, 1082, 8, 88, 1, 88, 4, 88, 1085, 8, 88, 11, 88, 12, 88, 1086, 3, 88, 1089, 8, 88, 1, 89, 1, 89, 4, 89, 1093, 8, 89, 11, 89, 12, 89, 1094, 1, 89, 1, 89, 1, 90, 1, 90, 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, 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, 99, 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, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 3, 106, 1172, 8, 106, 1, 107, 4, 107, 1175, 8, 107, 11, 107, 12, 107, 1176, 1, 108, 1, 108, 1, 108, 1, 108, 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, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1224, 8, 118, 1, 119, 1, 119, 3, 119, 1228, 8, 119, 1, 119, 5, 119, 1231, 8, 119, 10, 119, 12, 119, 1234, 9, 119, 1, 119, 1, 119, 3, 119, 1238, 8, 119, 1, 119, 4, 119, 1241, 8, 119, 11, 119, 12, 119, 1242, 3, 119, 1245, 8, 119, 1, 120, 1, 120, 4, 120, 1249, 8, 120, 11, 120, 12, 120, 1250, 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, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 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, 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, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 4, 140, 1334, 8, 140, 11, 140, 12, 140, 1335, 1, 140, 1, 140, 3, 140, 1340, 8, 140, 1, 140, 4, 140, 1343, 8, 140, 11, 140, 12, 140, 1344, 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, 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, 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, 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, 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, 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, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 4, 173, 1486, 8, 173, 11, 173, 12, 173, 1487, 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, 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, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 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, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 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, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 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, 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, 1, 207, 1, 208, 1, 208, 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, 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, 213, 1, 214, 1, 214, 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, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 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, 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, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 2, 773, 842, 0, 243, 19, 1, 21, 2, 23, 3, 25, 4, 27, 5, 29, 6, 31, 7, 33, 8, 35, 9, 37, 10, 39, 11, 41, 12, 43, 13, 45, 14, 47, 15, 49, 16, 51, 17, 53, 18, 55, 19, 57, 20, 59, 21, 61, 22, 63, 23, 65, 24, 67, 25, 69, 26, 71, 27, 73, 28, 75, 29, 77, 30, 79, 31, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 32, 103, 33, 105, 34, 107, 35, 109, 36, 111, 37, 113, 38, 115, 39, 117, 40, 119, 41, 121, 42, 123, 43, 125, 44, 127, 45, 129, 46, 131, 47, 133, 48, 135, 49, 137, 50, 139, 51, 141, 52, 143, 53, 145, 54, 147, 55, 149, 56, 151, 57, 153, 58, 155, 59, 157, 60, 159, 61, 161, 62, 163, 63, 165, 64, 167, 65, 169, 66, 171, 67, 173, 68, 175, 69, 177, 70, 179, 71, 181, 72, 183, 0, 185, 0, 187, 0, 189, 73, 191, 74, 193, 75, 195, 76, 197, 0, 199, 77, 201, 78, 203, 79, 205, 80, 207, 0, 209, 0, 211, 81, 213, 82, 215, 83, 217, 0, 219, 0, 221, 0, 223, 0, 225, 0, 227, 0, 229, 84, 231, 0, 233, 85, 235, 0, 237, 0, 239, 86, 241, 87, 243, 88, 245, 0, 247, 0, 249, 0, 251, 0, 253, 0, 255, 0, 257, 0, 259, 89, 261, 90, 263, 91, 265, 92, 267, 0, 269, 0, 271, 0, 273, 0, 275, 0, 277, 0, 279, 93, 281, 0, 283, 94, 285, 95, 287, 96, 289, 0, 291, 0, 293, 97, 295, 98, 297, 0, 299, 99, 301, 0, 303, 100, 305, 101, 307, 102, 309, 0, 311, 0, 313, 0, 315, 0, 317, 0, 319, 0, 321, 0, 323, 0, 325, 0, 327, 103, 329, 104, 331, 105, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 0, 345, 106, 347, 107, 349, 108, 351, 0, 353, 109, 355, 110, 357, 111, 359, 112, 361, 0, 363, 0, 365, 113, 367, 114, 369, 115, 371, 116, 373, 0, 375, 0, 377, 0, 379, 0, 381, 0, 383, 0, 385, 0, 387, 117, 389, 118, 391, 119, 393, 0, 395, 0, 397, 0, 399, 0, 401, 120, 403, 121, 405, 122, 407, 0, 409, 123, 411, 0, 413, 0, 415, 124, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 125, 429, 126, 431, 127, 433, 0, 435, 0, 437, 0, 439, 128, 441, 129, 443, 130, 445, 0, 447, 0, 449, 131, 451, 132, 453, 133, 455, 0, 457, 0, 459, 0, 461, 0, 463, 0, 465, 0, 467, 0, 469, 0, 471, 0, 473, 0, 475, 0, 477, 134, 479, 135, 481, 136, 483, 0, 485, 0, 487, 137, 489, 138, 491, 139, 493, 0, 495, 0, 497, 0, 499, 140, 501, 141, 503, 142, 19, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 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, 1823, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 1, 79, 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, 187, 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, 1, 199, 1, 0, 0, 0, 1, 201, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 2, 207, 1, 0, 0, 0, 2, 209, 1, 0, 0, 0, 2, 211, 1, 0, 0, 0, 2, 213, 1, 0, 0, 0, 2, 215, 1, 0, 0, 0, 3, 217, 1, 0, 0, 0, 3, 219, 1, 0, 0, 0, 3, 221, 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, 233, 1, 0, 0, 0, 3, 235, 1, 0, 0, 0, 3, 237, 1, 0, 0, 0, 3, 239, 1, 0, 0, 0, 3, 241, 1, 0, 0, 0, 3, 243, 1, 0, 0, 0, 4, 245, 1, 0, 0, 0, 4, 247, 1, 0, 0, 0, 4, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 259, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 4, 263, 1, 0, 0, 0, 4, 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, 5, 279, 1, 0, 0, 0, 5, 281, 1, 0, 0, 0, 5, 283, 1, 0, 0, 0, 5, 285, 1, 0, 0, 0, 5, 287, 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, 299, 1, 0, 0, 0, 6, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 305, 1, 0, 0, 0, 6, 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, 7, 323, 1, 0, 0, 0, 7, 325, 1, 0, 0, 0, 7, 327, 1, 0, 0, 0, 7, 329, 1, 0, 0, 0, 7, 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, 8, 341, 1, 0, 0, 0, 8, 343, 1, 0, 0, 0, 8, 345, 1, 0, 0, 0, 8, 347, 1, 0, 0, 0, 8, 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, 9, 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, 11, 385, 1, 0, 0, 0, 11, 387, 1, 0, 0, 0, 11, 389, 1, 0, 0, 0, 11, 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, 12, 403, 1, 0, 0, 0, 12, 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, 13, 423, 1, 0, 0, 0, 13, 425, 1, 0, 0, 0, 13, 427, 1, 0, 0, 0, 13, 429, 1, 0, 0, 0, 13, 431, 1, 0, 0, 0, 14, 433, 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, 14, 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, 16, 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, 16, 475, 1, 0, 0, 0, 16, 477, 1, 0, 0, 0, 16, 479, 1, 0, 0, 0, 16, 481, 1, 0, 0, 0, 17, 483, 1, 0, 0, 0, 17, 485, 1, 0, 0, 0, 17, 487, 1, 0, 0, 0, 17, 489, 1, 0, 0, 0, 17, 491, 1, 0, 0, 0, 18, 493, 1, 0, 0, 0, 18, 495, 1, 0, 0, 0, 18, 497, 1, 0, 0, 0, 18, 499, 1, 0, 0, 0, 18, 501, 1, 0, 0, 0, 18, 503, 1, 0, 0, 0, 19, 505, 1, 0, 0, 0, 21, 515, 1, 0, 0, 0, 23, 522, 1, 0, 0, 0, 25, 531, 1, 0, 0, 0, 27, 538, 1, 0, 0, 0, 29, 548, 1, 0, 0, 0, 31, 555, 1, 0, 0, 0, 33, 562, 1, 0, 0, 0, 35, 569, 1, 0, 0, 0, 37, 577, 1, 0, 0, 0, 39, 589, 1, 0, 0, 0, 41, 598, 1, 0, 0, 0, 43, 604, 1, 0, 0, 0, 45, 611, 1, 0, 0, 0, 47, 618, 1, 0, 0, 0, 49, 626, 1, 0, 0, 0, 51, 634, 1, 0, 0, 0, 53, 643, 1, 0, 0, 0, 55, 659, 1, 0, 0, 0, 57, 674, 1, 0, 0, 0, 59, 686, 1, 0, 0, 0, 61, 698, 1, 0, 0, 0, 63, 709, 1, 0, 0, 0, 65, 717, 1, 0, 0, 0, 67, 725, 1, 0, 0, 0, 69, 734, 1, 0, 0, 0, 71, 743, 1, 0, 0, 0, 73, 749, 1, 0, 0, 0, 75, 766, 1, 0, 0, 0, 77, 782, 1, 0, 0, 0, 79, 788, 1, 0, 0, 0, 81, 792, 1, 0, 0, 0, 83, 794, 1, 0, 0, 0, 85, 796, 1, 0, 0, 0, 87, 799, 1, 0, 0, 0, 89, 801, 1, 0, 0, 0, 91, 810, 1, 0, 0, 0, 93, 812, 1, 0, 0, 0, 95, 817, 1, 0, 0, 0, 97, 819, 1, 0, 0, 0, 99, 824, 1, 0, 0, 0, 101, 855, 1, 0, 0, 0, 103, 858, 1, 0, 0, 0, 105, 904, 1, 0, 0, 0, 107, 906, 1, 0, 0, 0, 109, 909, 1, 0, 0, 0, 111, 913, 1, 0, 0, 0, 113, 917, 1, 0, 0, 0, 115, 919, 1, 0, 0, 0, 117, 922, 1, 0, 0, 0, 119, 924, 1, 0, 0, 0, 121, 926, 1, 0, 0, 0, 123, 931, 1, 0, 0, 0, 125, 933, 1, 0, 0, 0, 127, 939, 1, 0, 0, 0, 129, 945, 1, 0, 0, 0, 131, 948, 1, 0, 0, 0, 133, 951, 1, 0, 0, 0, 135, 956, 1, 0, 0, 0, 137, 961, 1, 0, 0, 0, 139, 963, 1, 0, 0, 0, 141, 967, 1, 0, 0, 0, 143, 972, 1, 0, 0, 0, 145, 978, 1, 0, 0, 0, 147, 981, 1, 0, 0, 0, 149, 983, 1, 0, 0, 0, 151, 989, 1, 0, 0, 0, 153, 991, 1, 0, 0, 0, 155, 996, 1, 0, 0, 0, 157, 999, 1, 0, 0, 0, 159, 1002, 1, 0, 0, 0, 161, 1005, 1, 0, 0, 0, 163, 1007, 1, 0, 0, 0, 165, 1010, 1, 0, 0, 0, 167, 1012, 1, 0, 0, 0, 169, 1015, 1, 0, 0, 0, 171, 1017, 1, 0, 0, 0, 173, 1019, 1, 0, 0, 0, 175, 1021, 1, 0, 0, 0, 177, 1023, 1, 0, 0, 0, 179, 1025, 1, 0, 0, 0, 181, 1027, 1, 0, 0, 0, 183, 1029, 1, 0, 0, 0, 185, 1033, 1, 0, 0, 0, 187, 1038, 1, 0, 0, 0, 189, 1060, 1, 0, 0, 0, 191, 1062, 1, 0, 0, 0, 193, 1067, 1, 0, 0, 0, 195, 1088, 1, 0, 0, 0, 197, 1090, 1, 0, 0, 0, 199, 1098, 1, 0, 0, 0, 201, 1100, 1, 0, 0, 0, 203, 1104, 1, 0, 0, 0, 205, 1108, 1, 0, 0, 0, 207, 1112, 1, 0, 0, 0, 209, 1117, 1, 0, 0, 0, 211, 1122, 1, 0, 0, 0, 213, 1126, 1, 0, 0, 0, 215, 1130, 1, 0, 0, 0, 217, 1134, 1, 0, 0, 0, 219, 1139, 1, 0, 0, 0, 221, 1143, 1, 0, 0, 0, 223, 1147, 1, 0, 0, 0, 225, 1151, 1, 0, 0, 0, 227, 1155, 1, 0, 0, 0, 229, 1159, 1, 0, 0, 0, 231, 1171, 1, 0, 0, 0, 233, 1174, 1, 0, 0, 0, 235, 1178, 1, 0, 0, 0, 237, 1182, 1, 0, 0, 0, 239, 1186, 1, 0, 0, 0, 241, 1190, 1, 0, 0, 0, 243, 1194, 1, 0, 0, 0, 245, 1198, 1, 0, 0, 0, 247, 1203, 1, 0, 0, 0, 249, 1207, 1, 0, 0, 0, 251, 1211, 1, 0, 0, 0, 253, 1215, 1, 0, 0, 0, 255, 1223, 1, 0, 0, 0, 257, 1244, 1, 0, 0, 0, 259, 1248, 1, 0, 0, 0, 261, 1252, 1, 0, 0, 0, 263, 1256, 1, 0, 0, 0, 265, 1260, 1, 0, 0, 0, 267, 1264, 1, 0, 0, 0, 269, 1269, 1, 0, 0, 0, 271, 1273, 1, 0, 0, 0, 273, 1277, 1, 0, 0, 0, 275, 1281, 1, 0, 0, 0, 277, 1285, 1, 0, 0, 0, 279, 1289, 1, 0, 0, 0, 281, 1292, 1, 0, 0, 0, 283, 1296, 1, 0, 0, 0, 285, 1300, 1, 0, 0, 0, 287, 1304, 1, 0, 0, 0, 289, 1308, 1, 0, 0, 0, 291, 1313, 1, 0, 0, 0, 293, 1318, 1, 0, 0, 0, 295, 1323, 1, 0, 0, 0, 297, 1330, 1, 0, 0, 0, 299, 1339, 1, 0, 0, 0, 301, 1346, 1, 0, 0, 0, 303, 1350, 1, 0, 0, 0, 305, 1354, 1, 0, 0, 0, 307, 1358, 1, 0, 0, 0, 309, 1362, 1, 0, 0, 0, 311, 1368, 1, 0, 0, 0, 313, 1372, 1, 0, 0, 0, 315, 1376, 1, 0, 0, 0, 317, 1380, 1, 0, 0, 0, 319, 1384, 1, 0, 0, 0, 321, 1388, 1, 0, 0, 0, 323, 1392, 1, 0, 0, 0, 325, 1396, 1, 0, 0, 0, 327, 1400, 1, 0, 0, 0, 329, 1404, 1, 0, 0, 0, 331, 1408, 1, 0, 0, 0, 333, 1412, 1, 0, 0, 0, 335, 1417, 1, 0, 0, 0, 337, 1421, 1, 0, 0, 0, 339, 1425, 1, 0, 0, 0, 341, 1429, 1, 0, 0, 0, 343, 1433, 1, 0, 0, 0, 345, 1437, 1, 0, 0, 0, 347, 1441, 1, 0, 0, 0, 349, 1445, 1, 0, 0, 0, 351, 1449, 1, 0, 0, 0, 353, 1454, 1, 0, 0, 0, 355, 1459, 1, 0, 0, 0, 357, 1463, 1, 0, 0, 0, 359, 1467, 1, 0, 0, 0, 361, 1471, 1, 0, 0, 0, 363, 1476, 1, 0, 0, 0, 365, 1485, 1, 0, 0, 0, 367, 1489, 1, 0, 0, 0, 369, 1493, 1, 0, 0, 0, 371, 1497, 1, 0, 0, 0, 373, 1501, 1, 0, 0, 0, 375, 1506, 1, 0, 0, 0, 377, 1510, 1, 0, 0, 0, 379, 1514, 1, 0, 0, 0, 381, 1518, 1, 0, 0, 0, 383, 1523, 1, 0, 0, 0, 385, 1527, 1, 0, 0, 0, 387, 1531, 1, 0, 0, 0, 389, 1535, 1, 0, 0, 0, 391, 1539, 1, 0, 0, 0, 393, 1543, 1, 0, 0, 0, 395, 1549, 1, 0, 0, 0, 397, 1553, 1, 0, 0, 0, 399, 1557, 1, 0, 0, 0, 401, 1561, 1, 0, 0, 0, 403, 1565, 1, 0, 0, 0, 405, 1569, 1, 0, 0, 0, 407, 1573, 1, 0, 0, 0, 409, 1578, 1, 0, 0, 0, 411, 1583, 1, 0, 0, 0, 413, 1587, 1, 0, 0, 0, 415, 1593, 1, 0, 0, 0, 417, 1602, 1, 0, 0, 0, 419, 1606, 1, 0, 0, 0, 421, 1610, 1, 0, 0, 0, 423, 1614, 1, 0, 0, 0, 425, 1618, 1, 0, 0, 0, 427, 1622, 1, 0, 0, 0, 429, 1626, 1, 0, 0, 0, 431, 1630, 1, 0, 0, 0, 433, 1634, 1, 0, 0, 0, 435, 1639, 1, 0, 0, 0, 437, 1645, 1, 0, 0, 0, 439, 1651, 1, 0, 0, 0, 441, 1655, 1, 0, 0, 0, 443, 1659, 1, 0, 0, 0, 445, 1663, 1, 0, 0, 0, 447, 1669, 1, 0, 0, 0, 449, 1675, 1, 0, 0, 0, 451, 1679, 1, 0, 0, 0, 453, 1683, 1, 0, 0, 0, 455, 1687, 1, 0, 0, 0, 457, 1693, 1, 0, 0, 0, 459, 1699, 1, 0, 0, 0, 461, 1705, 1, 0, 0, 0, 463, 1710, 1, 0, 0, 0, 465, 1715, 1, 0, 0, 0, 467, 1719, 1, 0, 0, 0, 469, 1723, 1, 0, 0, 0, 471, 1727, 1, 0, 0, 0, 473, 1731, 1, 0, 0, 0, 475, 1735, 1, 0, 0, 0, 477, 1739, 1, 0, 0, 0, 479, 1743, 1, 0, 0, 0, 481, 1747, 1, 0, 0, 0, 483, 1751, 1, 0, 0, 0, 485, 1756, 1, 0, 0, 0, 487, 1760, 1, 0, 0, 0, 489, 1764, 1, 0, 0, 0, 491, 1768, 1, 0, 0, 0, 493, 1772, 1, 0, 0, 0, 495, 1777, 1, 0, 0, 0, 497, 1782, 1, 0, 0, 0, 499, 1787, 1, 0, 0, 0, 501, 1791, 1, 0, 0, 0, 503, 1795, 1, 0, 0, 0, 505, 506, 7, 0, 0, 0, 506, 507, 7, 1, 0, 0, 507, 508, 7, 2, 0, 0, 508, 509, 7, 2, 0, 0, 509, 510, 7, 3, 0, 0, 510, 511, 7, 4, 0, 0, 511, 512, 7, 5, 0, 0, 512, 513, 1, 0, 0, 0, 513, 514, 6, 0, 0, 0, 514, 20, 1, 0, 0, 0, 515, 516, 7, 0, 0, 0, 516, 517, 7, 6, 0, 0, 517, 518, 7, 7, 0, 0, 518, 519, 7, 8, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 6, 1, 1, 0, 521, 22, 1, 0, 0, 0, 522, 523, 7, 3, 0, 0, 523, 524, 7, 9, 0, 0, 524, 525, 7, 6, 0, 0, 525, 526, 7, 1, 0, 0, 526, 527, 7, 4, 0, 0, 527, 528, 7, 10, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 6, 2, 2, 0, 530, 24, 1, 0, 0, 0, 531, 532, 7, 3, 0, 0, 532, 533, 7, 11, 0, 0, 533, 534, 7, 12, 0, 0, 534, 535, 7, 13, 0, 0, 535, 536, 1, 0, 0, 0, 536, 537, 6, 3, 0, 0, 537, 26, 1, 0, 0, 0, 538, 539, 7, 3, 0, 0, 539, 540, 7, 14, 0, 0, 540, 541, 7, 8, 0, 0, 541, 542, 7, 13, 0, 0, 542, 543, 7, 12, 0, 0, 543, 544, 7, 1, 0, 0, 544, 545, 7, 9, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 6, 4, 3, 0, 547, 28, 1, 0, 0, 0, 548, 549, 7, 15, 0, 0, 549, 550, 7, 6, 0, 0, 550, 551, 7, 7, 0, 0, 551, 552, 7, 16, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 6, 5, 4, 0, 554, 30, 1, 0, 0, 0, 555, 556, 7, 17, 0, 0, 556, 557, 7, 6, 0, 0, 557, 558, 7, 7, 0, 0, 558, 559, 7, 18, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 6, 6, 0, 0, 561, 32, 1, 0, 0, 0, 562, 563, 7, 18, 0, 0, 563, 564, 7, 3, 0, 0, 564, 565, 7, 3, 0, 0, 565, 566, 7, 8, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 6, 7, 1, 0, 568, 34, 1, 0, 0, 0, 569, 570, 7, 13, 0, 0, 570, 571, 7, 1, 0, 0, 571, 572, 7, 16, 0, 0, 572, 573, 7, 1, 0, 0, 573, 574, 7, 5, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 6, 8, 0, 0, 576, 36, 1, 0, 0, 0, 577, 578, 7, 16, 0, 0, 578, 579, 7, 11, 0, 0, 579, 580, 5, 95, 0, 0, 580, 581, 7, 3, 0, 0, 581, 582, 7, 14, 0, 0, 582, 583, 7, 8, 0, 0, 583, 584, 7, 12, 0, 0, 584, 585, 7, 9, 0, 0, 585, 586, 7, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 6, 9, 5, 0, 588, 38, 1, 0, 0, 0, 589, 590, 7, 6, 0, 0, 590, 591, 7, 3, 0, 0, 591, 592, 7, 9, 0, 0, 592, 593, 7, 12, 0, 0, 593, 594, 7, 16, 0, 0, 594, 595, 7, 3, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 6, 10, 6, 0, 597, 40, 1, 0, 0, 0, 598, 599, 7, 6, 0, 0, 599, 600, 7, 7, 0, 0, 600, 601, 7, 19, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 6, 11, 0, 0, 603, 42, 1, 0, 0, 0, 604, 605, 7, 2, 0, 0, 605, 606, 7, 10, 0, 0, 606, 607, 7, 7, 0, 0, 607, 608, 7, 19, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 6, 12, 7, 0, 610, 44, 1, 0, 0, 0, 611, 612, 7, 2, 0, 0, 612, 613, 7, 7, 0, 0, 613, 614, 7, 6, 0, 0, 614, 615, 7, 5, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 6, 13, 0, 0, 617, 46, 1, 0, 0, 0, 618, 619, 7, 2, 0, 0, 619, 620, 7, 5, 0, 0, 620, 621, 7, 12, 0, 0, 621, 622, 7, 5, 0, 0, 622, 623, 7, 2, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 6, 14, 0, 0, 625, 48, 1, 0, 0, 0, 626, 627, 7, 19, 0, 0, 627, 628, 7, 10, 0, 0, 628, 629, 7, 3, 0, 0, 629, 630, 7, 6, 0, 0, 630, 631, 7, 3, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 6, 15, 0, 0, 633, 50, 1, 0, 0, 0, 634, 635, 7, 13, 0, 0, 635, 636, 7, 7, 0, 0, 636, 637, 7, 7, 0, 0, 637, 638, 7, 18, 0, 0, 638, 639, 7, 20, 0, 0, 639, 640, 7, 8, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 6, 16, 8, 0, 642, 52, 1, 0, 0, 0, 643, 644, 4, 17, 0, 0, 644, 645, 7, 4, 0, 0, 645, 646, 7, 10, 0, 0, 646, 647, 7, 12, 0, 0, 647, 648, 7, 9, 0, 0, 648, 649, 7, 17, 0, 0, 649, 650, 7, 3, 0, 0, 650, 651, 5, 95, 0, 0, 651, 652, 7, 8, 0, 0, 652, 653, 7, 7, 0, 0, 653, 654, 7, 1, 0, 0, 654, 655, 7, 9, 0, 0, 655, 656, 7, 5, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 6, 17, 9, 0, 658, 54, 1, 0, 0, 0, 659, 660, 4, 18, 1, 0, 660, 661, 7, 1, 0, 0, 661, 662, 7, 9, 0, 0, 662, 663, 7, 13, 0, 0, 663, 664, 7, 1, 0, 0, 664, 665, 7, 9, 0, 0, 665, 666, 7, 3, 0, 0, 666, 667, 7, 2, 0, 0, 667, 668, 7, 5, 0, 0, 668, 669, 7, 12, 0, 0, 669, 670, 7, 5, 0, 0, 670, 671, 7, 2, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 6, 18, 0, 0, 673, 56, 1, 0, 0, 0, 674, 675, 4, 19, 2, 0, 675, 676, 7, 1, 0, 0, 676, 677, 7, 9, 0, 0, 677, 678, 7, 2, 0, 0, 678, 679, 7, 1, 0, 0, 679, 680, 7, 2, 0, 0, 680, 681, 7, 5, 0, 0, 681, 682, 5, 95, 0, 0, 682, 683, 5, 128020, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 6, 19, 1, 0, 685, 58, 1, 0, 0, 0, 686, 687, 4, 20, 3, 0, 687, 688, 7, 13, 0, 0, 688, 689, 7, 7, 0, 0, 689, 690, 7, 7, 0, 0, 690, 691, 7, 18, 0, 0, 691, 692, 7, 20, 0, 0, 692, 693, 7, 8, 0, 0, 693, 694, 5, 95, 0, 0, 694, 695, 5, 128020, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 6, 20, 10, 0, 697, 60, 1, 0, 0, 0, 698, 699, 4, 21, 4, 0, 699, 700, 7, 16, 0, 0, 700, 701, 7, 3, 0, 0, 701, 702, 7, 5, 0, 0, 702, 703, 7, 6, 0, 0, 703, 704, 7, 1, 0, 0, 704, 705, 7, 4, 0, 0, 705, 706, 7, 2, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 6, 21, 11, 0, 708, 62, 1, 0, 0, 0, 709, 710, 4, 22, 5, 0, 710, 711, 7, 15, 0, 0, 711, 712, 7, 20, 0, 0, 712, 713, 7, 13, 0, 0, 713, 714, 7, 13, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 6, 22, 8, 0, 716, 64, 1, 0, 0, 0, 717, 718, 4, 23, 6, 0, 718, 719, 7, 13, 0, 0, 719, 720, 7, 3, 0, 0, 720, 721, 7, 15, 0, 0, 721, 722, 7, 5, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 6, 23, 8, 0, 724, 66, 1, 0, 0, 0, 725, 726, 4, 24, 7, 0, 726, 727, 7, 6, 0, 0, 727, 728, 7, 1, 0, 0, 728, 729, 7, 17, 0, 0, 729, 730, 7, 10, 0, 0, 730, 731, 7, 5, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 6, 24, 8, 0, 733, 68, 1, 0, 0, 0, 734, 735, 4, 25, 8, 0, 735, 736, 7, 15, 0, 0, 736, 737, 7, 7, 0, 0, 737, 738, 7, 6, 0, 0, 738, 739, 7, 18, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 6, 25, 12, 0, 741, 70, 1, 0, 0, 0, 742, 744, 8, 21, 0, 0, 743, 742, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 6, 26, 0, 0, 748, 72, 1, 0, 0, 0, 749, 750, 5, 47, 0, 0, 750, 751, 5, 47, 0, 0, 751, 755, 1, 0, 0, 0, 752, 754, 8, 22, 0, 0, 753, 752, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 759, 1, 0, 0, 0, 757, 755, 1, 0, 0, 0, 758, 760, 5, 13, 0, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 762, 1, 0, 0, 0, 761, 763, 5, 10, 0, 0, 762, 761, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 6, 27, 13, 0, 765, 74, 1, 0, 0, 0, 766, 767, 5, 47, 0, 0, 767, 768, 5, 42, 0, 0, 768, 773, 1, 0, 0, 0, 769, 772, 3, 75, 28, 0, 770, 772, 9, 0, 0, 0, 771, 769, 1, 0, 0, 0, 771, 770, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 776, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 777, 5, 42, 0, 0, 777, 778, 5, 47, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 28, 13, 0, 780, 76, 1, 0, 0, 0, 781, 783, 7, 23, 0, 0, 782, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 6, 29, 13, 0, 787, 78, 1, 0, 0, 0, 788, 789, 5, 124, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 6, 30, 14, 0, 791, 80, 1, 0, 0, 0, 792, 793, 7, 24, 0, 0, 793, 82, 1, 0, 0, 0, 794, 795, 7, 25, 0, 0, 795, 84, 1, 0, 0, 0, 796, 797, 5, 92, 0, 0, 797, 798, 7, 26, 0, 0, 798, 86, 1, 0, 0, 0, 799, 800, 8, 27, 0, 0, 800, 88, 1, 0, 0, 0, 801, 803, 7, 3, 0, 0, 802, 804, 7, 28, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 807, 3, 81, 31, 0, 806, 805, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 90, 1, 0, 0, 0, 810, 811, 5, 64, 0, 0, 811, 92, 1, 0, 0, 0, 812, 813, 5, 96, 0, 0, 813, 94, 1, 0, 0, 0, 814, 818, 8, 29, 0, 0, 815, 816, 5, 96, 0, 0, 816, 818, 5, 96, 0, 0, 817, 814, 1, 0, 0, 0, 817, 815, 1, 0, 0, 0, 818, 96, 1, 0, 0, 0, 819, 820, 5, 95, 0, 0, 820, 98, 1, 0, 0, 0, 821, 825, 3, 83, 32, 0, 822, 825, 3, 81, 31, 0, 823, 825, 3, 97, 39, 0, 824, 821, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 823, 1, 0, 0, 0, 825, 100, 1, 0, 0, 0, 826, 831, 5, 34, 0, 0, 827, 830, 3, 85, 33, 0, 828, 830, 3, 87, 34, 0, 829, 827, 1, 0, 0, 0, 829, 828, 1, 0, 0, 0, 830, 833, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 856, 5, 34, 0, 0, 835, 836, 5, 34, 0, 0, 836, 837, 5, 34, 0, 0, 837, 838, 5, 34, 0, 0, 838, 842, 1, 0, 0, 0, 839, 841, 8, 22, 0, 0, 840, 839, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 34, 0, 0, 846, 847, 5, 34, 0, 0, 847, 848, 5, 34, 0, 0, 848, 850, 1, 0, 0, 0, 849, 851, 5, 34, 0, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 853, 1, 0, 0, 0, 852, 854, 5, 34, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 826, 1, 0, 0, 0, 855, 835, 1, 0, 0, 0, 856, 102, 1, 0, 0, 0, 857, 859, 3, 81, 31, 0, 858, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 104, 1, 0, 0, 0, 862, 864, 3, 81, 31, 0, 863, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 871, 3, 123, 52, 0, 868, 870, 3, 81, 31, 0, 869, 868, 1, 0, 0, 0, 870, 873, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 905, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 876, 3, 123, 52, 0, 875, 877, 3, 81, 31, 0, 876, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 905, 1, 0, 0, 0, 880, 882, 3, 81, 31, 0, 881, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 892, 1, 0, 0, 0, 885, 889, 3, 123, 52, 0, 886, 888, 3, 81, 31, 0, 887, 886, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 885, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 3, 89, 35, 0, 895, 905, 1, 0, 0, 0, 896, 898, 3, 123, 52, 0, 897, 899, 3, 81, 31, 0, 898, 897, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 3, 89, 35, 0, 903, 905, 1, 0, 0, 0, 904, 863, 1, 0, 0, 0, 904, 874, 1, 0, 0, 0, 904, 881, 1, 0, 0, 0, 904, 896, 1, 0, 0, 0, 905, 106, 1, 0, 0, 0, 906, 907, 7, 30, 0, 0, 907, 908, 7, 31, 0, 0, 908, 108, 1, 0, 0, 0, 909, 910, 7, 12, 0, 0, 910, 911, 7, 9, 0, 0, 911, 912, 7, 0, 0, 0, 912, 110, 1, 0, 0, 0, 913, 914, 7, 12, 0, 0, 914, 915, 7, 2, 0, 0, 915, 916, 7, 4, 0, 0, 916, 112, 1, 0, 0, 0, 917, 918, 5, 61, 0, 0, 918, 114, 1, 0, 0, 0, 919, 920, 5, 58, 0, 0, 920, 921, 5, 58, 0, 0, 921, 116, 1, 0, 0, 0, 922, 923, 5, 58, 0, 0, 923, 118, 1, 0, 0, 0, 924, 925, 5, 44, 0, 0, 925, 120, 1, 0, 0, 0, 926, 927, 7, 0, 0, 0, 927, 928, 7, 3, 0, 0, 928, 929, 7, 2, 0, 0, 929, 930, 7, 4, 0, 0, 930, 122, 1, 0, 0, 0, 931, 932, 5, 46, 0, 0, 932, 124, 1, 0, 0, 0, 933, 934, 7, 15, 0, 0, 934, 935, 7, 12, 0, 0, 935, 936, 7, 13, 0, 0, 936, 937, 7, 2, 0, 0, 937, 938, 7, 3, 0, 0, 938, 126, 1, 0, 0, 0, 939, 940, 7, 15, 0, 0, 940, 941, 7, 1, 0, 0, 941, 942, 7, 6, 0, 0, 942, 943, 7, 2, 0, 0, 943, 944, 7, 5, 0, 0, 944, 128, 1, 0, 0, 0, 945, 946, 7, 1, 0, 0, 946, 947, 7, 9, 0, 0, 947, 130, 1, 0, 0, 0, 948, 949, 7, 1, 0, 0, 949, 950, 7, 2, 0, 0, 950, 132, 1, 0, 0, 0, 951, 952, 7, 13, 0, 0, 952, 953, 7, 12, 0, 0, 953, 954, 7, 2, 0, 0, 954, 955, 7, 5, 0, 0, 955, 134, 1, 0, 0, 0, 956, 957, 7, 13, 0, 0, 957, 958, 7, 1, 0, 0, 958, 959, 7, 18, 0, 0, 959, 960, 7, 3, 0, 0, 960, 136, 1, 0, 0, 0, 961, 962, 5, 40, 0, 0, 962, 138, 1, 0, 0, 0, 963, 964, 7, 9, 0, 0, 964, 965, 7, 7, 0, 0, 965, 966, 7, 5, 0, 0, 966, 140, 1, 0, 0, 0, 967, 968, 7, 9, 0, 0, 968, 969, 7, 20, 0, 0, 969, 970, 7, 13, 0, 0, 970, 971, 7, 13, 0, 0, 971, 142, 1, 0, 0, 0, 972, 973, 7, 9, 0, 0, 973, 974, 7, 20, 0, 0, 974, 975, 7, 13, 0, 0, 975, 976, 7, 13, 0, 0, 976, 977, 7, 2, 0, 0, 977, 144, 1, 0, 0, 0, 978, 979, 7, 7, 0, 0, 979, 980, 7, 6, 0, 0, 980, 146, 1, 0, 0, 0, 981, 982, 5, 63, 0, 0, 982, 148, 1, 0, 0, 0, 983, 984, 7, 6, 0, 0, 984, 985, 7, 13, 0, 0, 985, 986, 7, 1, 0, 0, 986, 987, 7, 18, 0, 0, 987, 988, 7, 3, 0, 0, 988, 150, 1, 0, 0, 0, 989, 990, 5, 41, 0, 0, 990, 152, 1, 0, 0, 0, 991, 992, 7, 5, 0, 0, 992, 993, 7, 6, 0, 0, 993, 994, 7, 20, 0, 0, 994, 995, 7, 3, 0, 0, 995, 154, 1, 0, 0, 0, 996, 997, 5, 61, 0, 0, 997, 998, 5, 61, 0, 0, 998, 156, 1, 0, 0, 0, 999, 1000, 5, 61, 0, 0, 1000, 1001, 5, 126, 0, 0, 1001, 158, 1, 0, 0, 0, 1002, 1003, 5, 33, 0, 0, 1003, 1004, 5, 61, 0, 0, 1004, 160, 1, 0, 0, 0, 1005, 1006, 5, 60, 0, 0, 1006, 162, 1, 0, 0, 0, 1007, 1008, 5, 60, 0, 0, 1008, 1009, 5, 61, 0, 0, 1009, 164, 1, 0, 0, 0, 1010, 1011, 5, 62, 0, 0, 1011, 166, 1, 0, 0, 0, 1012, 1013, 5, 62, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 168, 1, 0, 0, 0, 1015, 1016, 5, 43, 0, 0, 1016, 170, 1, 0, 0, 0, 1017, 1018, 5, 45, 0, 0, 1018, 172, 1, 0, 0, 0, 1019, 1020, 5, 42, 0, 0, 1020, 174, 1, 0, 0, 0, 1021, 1022, 5, 47, 0, 0, 1022, 176, 1, 0, 0, 0, 1023, 1024, 5, 37, 0, 0, 1024, 178, 1, 0, 0, 0, 1025, 1026, 5, 123, 0, 0, 1026, 180, 1, 0, 0, 0, 1027, 1028, 5, 125, 0, 0, 1028, 182, 1, 0, 0, 0, 1029, 1030, 3, 49, 15, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1032, 6, 82, 15, 0, 1032, 184, 1, 0, 0, 0, 1033, 1034, 4, 83, 9, 0, 1034, 1035, 3, 45, 13, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 6, 83, 16, 0, 1037, 186, 1, 0, 0, 0, 1038, 1039, 4, 84, 10, 0, 1039, 1040, 3, 35, 8, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 6, 84, 17, 0, 1042, 188, 1, 0, 0, 0, 1043, 1046, 3, 147, 64, 0, 1044, 1047, 3, 83, 32, 0, 1045, 1047, 3, 97, 39, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1045, 1, 0, 0, 0, 1047, 1051, 1, 0, 0, 0, 1048, 1050, 3, 99, 40, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1053, 1, 0, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1061, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1054, 1056, 3, 147, 64, 0, 1055, 1057, 3, 81, 31, 0, 1056, 1055, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1043, 1, 0, 0, 0, 1060, 1054, 1, 0, 0, 0, 1061, 190, 1, 0, 0, 0, 1062, 1063, 5, 91, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1065, 6, 86, 0, 0, 1065, 1066, 6, 86, 0, 0, 1066, 192, 1, 0, 0, 0, 1067, 1068, 5, 93, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 6, 87, 14, 0, 1070, 1071, 6, 87, 14, 0, 1071, 194, 1, 0, 0, 0, 1072, 1076, 3, 83, 32, 0, 1073, 1075, 3, 99, 40, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1089, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1082, 3, 97, 39, 0, 1080, 1082, 3, 91, 36, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1080, 1, 0, 0, 0, 1082, 1084, 1, 0, 0, 0, 1083, 1085, 3, 99, 40, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1072, 1, 0, 0, 0, 1088, 1081, 1, 0, 0, 0, 1089, 196, 1, 0, 0, 0, 1090, 1092, 3, 93, 37, 0, 1091, 1093, 3, 95, 38, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 93, 37, 0, 1097, 198, 1, 0, 0, 0, 1098, 1099, 3, 197, 89, 0, 1099, 200, 1, 0, 0, 0, 1100, 1101, 3, 73, 27, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 6, 91, 13, 0, 1103, 202, 1, 0, 0, 0, 1104, 1105, 3, 75, 28, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 6, 92, 13, 0, 1107, 204, 1, 0, 0, 0, 1108, 1109, 3, 77, 29, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 6, 93, 13, 0, 1111, 206, 1, 0, 0, 0, 1112, 1113, 3, 191, 86, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, 6, 94, 18, 0, 1115, 1116, 6, 94, 19, 0, 1116, 208, 1, 0, 0, 0, 1117, 1118, 3, 79, 30, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 6, 95, 20, 0, 1120, 1121, 6, 95, 14, 0, 1121, 210, 1, 0, 0, 0, 1122, 1123, 3, 77, 29, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 6, 96, 13, 0, 1125, 212, 1, 0, 0, 0, 1126, 1127, 3, 73, 27, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 6, 97, 13, 0, 1129, 214, 1, 0, 0, 0, 1130, 1131, 3, 75, 28, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 6, 98, 13, 0, 1133, 216, 1, 0, 0, 0, 1134, 1135, 3, 79, 30, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 6, 99, 20, 0, 1137, 1138, 6, 99, 14, 0, 1138, 218, 1, 0, 0, 0, 1139, 1140, 3, 191, 86, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 6, 100, 18, 0, 1142, 220, 1, 0, 0, 0, 1143, 1144, 3, 193, 87, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 6, 101, 21, 0, 1146, 222, 1, 0, 0, 0, 1147, 1148, 3, 117, 49, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 6, 102, 22, 0, 1150, 224, 1, 0, 0, 0, 1151, 1152, 3, 119, 50, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 6, 103, 23, 0, 1154, 226, 1, 0, 0, 0, 1155, 1156, 3, 113, 47, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 104, 24, 0, 1158, 228, 1, 0, 0, 0, 1159, 1160, 7, 16, 0, 0, 1160, 1161, 7, 3, 0, 0, 1161, 1162, 7, 5, 0, 0, 1162, 1163, 7, 12, 0, 0, 1163, 1164, 7, 0, 0, 0, 1164, 1165, 7, 12, 0, 0, 1165, 1166, 7, 5, 0, 0, 1166, 1167, 7, 12, 0, 0, 1167, 230, 1, 0, 0, 0, 1168, 1172, 8, 32, 0, 0, 1169, 1170, 5, 47, 0, 0, 1170, 1172, 8, 33, 0, 0, 1171, 1168, 1, 0, 0, 0, 1171, 1169, 1, 0, 0, 0, 1172, 232, 1, 0, 0, 0, 1173, 1175, 3, 231, 106, 0, 1174, 1173, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 234, 1, 0, 0, 0, 1178, 1179, 3, 233, 107, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 6, 108, 25, 0, 1181, 236, 1, 0, 0, 0, 1182, 1183, 3, 101, 41, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1185, 6, 109, 26, 0, 1185, 238, 1, 0, 0, 0, 1186, 1187, 3, 73, 27, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 6, 110, 13, 0, 1189, 240, 1, 0, 0, 0, 1190, 1191, 3, 75, 28, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 6, 111, 13, 0, 1193, 242, 1, 0, 0, 0, 1194, 1195, 3, 77, 29, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 6, 112, 13, 0, 1197, 244, 1, 0, 0, 0, 1198, 1199, 3, 79, 30, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 6, 113, 20, 0, 1201, 1202, 6, 113, 14, 0, 1202, 246, 1, 0, 0, 0, 1203, 1204, 3, 123, 52, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 6, 114, 27, 0, 1206, 248, 1, 0, 0, 0, 1207, 1208, 3, 119, 50, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 6, 115, 23, 0, 1210, 250, 1, 0, 0, 0, 1211, 1212, 3, 147, 64, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 6, 116, 28, 0, 1214, 252, 1, 0, 0, 0, 1215, 1216, 3, 189, 85, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 6, 117, 29, 0, 1218, 254, 1, 0, 0, 0, 1219, 1224, 3, 83, 32, 0, 1220, 1224, 3, 81, 31, 0, 1221, 1224, 3, 97, 39, 0, 1222, 1224, 3, 173, 77, 0, 1223, 1219, 1, 0, 0, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1224, 256, 1, 0, 0, 0, 1225, 1228, 3, 83, 32, 0, 1226, 1228, 3, 173, 77, 0, 1227, 1225, 1, 0, 0, 0, 1227, 1226, 1, 0, 0, 0, 1228, 1232, 1, 0, 0, 0, 1229, 1231, 3, 255, 118, 0, 1230, 1229, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1245, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1238, 3, 97, 39, 0, 1236, 1238, 3, 91, 36, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1241, 3, 255, 118, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1245, 1, 0, 0, 0, 1244, 1227, 1, 0, 0, 0, 1244, 1237, 1, 0, 0, 0, 1245, 258, 1, 0, 0, 0, 1246, 1249, 3, 257, 119, 0, 1247, 1249, 3, 197, 89, 0, 1248, 1246, 1, 0, 0, 0, 1248, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1248, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 260, 1, 0, 0, 0, 1252, 1253, 3, 73, 27, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 6, 121, 13, 0, 1255, 262, 1, 0, 0, 0, 1256, 1257, 3, 75, 28, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 6, 122, 13, 0, 1259, 264, 1, 0, 0, 0, 1260, 1261, 3, 77, 29, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 6, 123, 13, 0, 1263, 266, 1, 0, 0, 0, 1264, 1265, 3, 79, 30, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 6, 124, 20, 0, 1267, 1268, 6, 124, 14, 0, 1268, 268, 1, 0, 0, 0, 1269, 1270, 3, 113, 47, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 6, 125, 24, 0, 1272, 270, 1, 0, 0, 0, 1273, 1274, 3, 119, 50, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 6, 126, 23, 0, 1276, 272, 1, 0, 0, 0, 1277, 1278, 3, 123, 52, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 6, 127, 27, 0, 1280, 274, 1, 0, 0, 0, 1281, 1282, 3, 147, 64, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 6, 128, 28, 0, 1284, 276, 1, 0, 0, 0, 1285, 1286, 3, 189, 85, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 6, 129, 29, 0, 1288, 278, 1, 0, 0, 0, 1289, 1290, 7, 12, 0, 0, 1290, 1291, 7, 2, 0, 0, 1291, 280, 1, 0, 0, 0, 1292, 1293, 3, 259, 120, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 131, 30, 0, 1295, 282, 1, 0, 0, 0, 1296, 1297, 3, 73, 27, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 6, 132, 13, 0, 1299, 284, 1, 0, 0, 0, 1300, 1301, 3, 75, 28, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 6, 133, 13, 0, 1303, 286, 1, 0, 0, 0, 1304, 1305, 3, 77, 29, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 6, 134, 13, 0, 1307, 288, 1, 0, 0, 0, 1308, 1309, 3, 79, 30, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 6, 135, 20, 0, 1311, 1312, 6, 135, 14, 0, 1312, 290, 1, 0, 0, 0, 1313, 1314, 3, 191, 86, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 6, 136, 18, 0, 1316, 1317, 6, 136, 31, 0, 1317, 292, 1, 0, 0, 0, 1318, 1319, 7, 7, 0, 0, 1319, 1320, 7, 9, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1322, 6, 137, 32, 0, 1322, 294, 1, 0, 0, 0, 1323, 1324, 7, 19, 0, 0, 1324, 1325, 7, 1, 0, 0, 1325, 1326, 7, 5, 0, 0, 1326, 1327, 7, 10, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 6, 138, 32, 0, 1329, 296, 1, 0, 0, 0, 1330, 1331, 8, 34, 0, 0, 1331, 298, 1, 0, 0, 0, 1332, 1334, 3, 297, 139, 0, 1333, 1332, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 3, 117, 49, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1333, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 3, 297, 139, 0, 1342, 1341, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 300, 1, 0, 0, 0, 1346, 1347, 3, 299, 140, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 141, 33, 0, 1349, 302, 1, 0, 0, 0, 1350, 1351, 3, 73, 27, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 6, 142, 13, 0, 1353, 304, 1, 0, 0, 0, 1354, 1355, 3, 75, 28, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1357, 6, 143, 13, 0, 1357, 306, 1, 0, 0, 0, 1358, 1359, 3, 77, 29, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 6, 144, 13, 0, 1361, 308, 1, 0, 0, 0, 1362, 1363, 3, 79, 30, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 6, 145, 20, 0, 1365, 1366, 6, 145, 14, 0, 1366, 1367, 6, 145, 14, 0, 1367, 310, 1, 0, 0, 0, 1368, 1369, 3, 113, 47, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 6, 146, 24, 0, 1371, 312, 1, 0, 0, 0, 1372, 1373, 3, 119, 50, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1375, 6, 147, 23, 0, 1375, 314, 1, 0, 0, 0, 1376, 1377, 3, 123, 52, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1379, 6, 148, 27, 0, 1379, 316, 1, 0, 0, 0, 1380, 1381, 3, 295, 138, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1383, 6, 149, 34, 0, 1383, 318, 1, 0, 0, 0, 1384, 1385, 3, 259, 120, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 6, 150, 30, 0, 1387, 320, 1, 0, 0, 0, 1388, 1389, 3, 199, 90, 0, 1389, 1390, 1, 0, 0, 0, 1390, 1391, 6, 151, 35, 0, 1391, 322, 1, 0, 0, 0, 1392, 1393, 3, 147, 64, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1395, 6, 152, 28, 0, 1395, 324, 1, 0, 0, 0, 1396, 1397, 3, 189, 85, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 153, 29, 0, 1399, 326, 1, 0, 0, 0, 1400, 1401, 3, 73, 27, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 154, 13, 0, 1403, 328, 1, 0, 0, 0, 1404, 1405, 3, 75, 28, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 155, 13, 0, 1407, 330, 1, 0, 0, 0, 1408, 1409, 3, 77, 29, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 156, 13, 0, 1411, 332, 1, 0, 0, 0, 1412, 1413, 3, 79, 30, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 157, 20, 0, 1415, 1416, 6, 157, 14, 0, 1416, 334, 1, 0, 0, 0, 1417, 1418, 3, 123, 52, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1420, 6, 158, 27, 0, 1420, 336, 1, 0, 0, 0, 1421, 1422, 3, 147, 64, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 159, 28, 0, 1424, 338, 1, 0, 0, 0, 1425, 1426, 3, 189, 85, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 6, 160, 29, 0, 1428, 340, 1, 0, 0, 0, 1429, 1430, 3, 199, 90, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 6, 161, 35, 0, 1432, 342, 1, 0, 0, 0, 1433, 1434, 3, 195, 88, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 6, 162, 36, 0, 1436, 344, 1, 0, 0, 0, 1437, 1438, 3, 73, 27, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1440, 6, 163, 13, 0, 1440, 346, 1, 0, 0, 0, 1441, 1442, 3, 75, 28, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 6, 164, 13, 0, 1444, 348, 1, 0, 0, 0, 1445, 1446, 3, 77, 29, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 6, 165, 13, 0, 1448, 350, 1, 0, 0, 0, 1449, 1450, 3, 79, 30, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 6, 166, 20, 0, 1452, 1453, 6, 166, 14, 0, 1453, 352, 1, 0, 0, 0, 1454, 1455, 7, 1, 0, 0, 1455, 1456, 7, 9, 0, 0, 1456, 1457, 7, 15, 0, 0, 1457, 1458, 7, 7, 0, 0, 1458, 354, 1, 0, 0, 0, 1459, 1460, 3, 73, 27, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 6, 168, 13, 0, 1462, 356, 1, 0, 0, 0, 1463, 1464, 3, 75, 28, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 6, 169, 13, 0, 1466, 358, 1, 0, 0, 0, 1467, 1468, 3, 77, 29, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 170, 13, 0, 1470, 360, 1, 0, 0, 0, 1471, 1472, 3, 193, 87, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 171, 21, 0, 1474, 1475, 6, 171, 14, 0, 1475, 362, 1, 0, 0, 0, 1476, 1477, 3, 117, 49, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 6, 172, 22, 0, 1479, 364, 1, 0, 0, 0, 1480, 1486, 3, 91, 36, 0, 1481, 1486, 3, 81, 31, 0, 1482, 1486, 3, 123, 52, 0, 1483, 1486, 3, 83, 32, 0, 1484, 1486, 3, 97, 39, 0, 1485, 1480, 1, 0, 0, 0, 1485, 1481, 1, 0, 0, 0, 1485, 1482, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1484, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 366, 1, 0, 0, 0, 1489, 1490, 3, 73, 27, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 174, 13, 0, 1492, 368, 1, 0, 0, 0, 1493, 1494, 3, 75, 28, 0, 1494, 1495, 1, 0, 0, 0, 1495, 1496, 6, 175, 13, 0, 1496, 370, 1, 0, 0, 0, 1497, 1498, 3, 77, 29, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 6, 176, 13, 0, 1500, 372, 1, 0, 0, 0, 1501, 1502, 3, 79, 30, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1504, 6, 177, 20, 0, 1504, 1505, 6, 177, 14, 0, 1505, 374, 1, 0, 0, 0, 1506, 1507, 3, 117, 49, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 178, 22, 0, 1509, 376, 1, 0, 0, 0, 1510, 1511, 3, 119, 50, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 6, 179, 23, 0, 1513, 378, 1, 0, 0, 0, 1514, 1515, 3, 123, 52, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 6, 180, 27, 0, 1517, 380, 1, 0, 0, 0, 1518, 1519, 3, 293, 137, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 6, 181, 37, 0, 1521, 1522, 6, 181, 38, 0, 1522, 382, 1, 0, 0, 0, 1523, 1524, 3, 233, 107, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 182, 25, 0, 1526, 384, 1, 0, 0, 0, 1527, 1528, 3, 101, 41, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 6, 183, 26, 0, 1530, 386, 1, 0, 0, 0, 1531, 1532, 3, 73, 27, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1534, 6, 184, 13, 0, 1534, 388, 1, 0, 0, 0, 1535, 1536, 3, 75, 28, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 6, 185, 13, 0, 1538, 390, 1, 0, 0, 0, 1539, 1540, 3, 77, 29, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 6, 186, 13, 0, 1542, 392, 1, 0, 0, 0, 1543, 1544, 3, 79, 30, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 6, 187, 20, 0, 1546, 1547, 6, 187, 14, 0, 1547, 1548, 6, 187, 14, 0, 1548, 394, 1, 0, 0, 0, 1549, 1550, 3, 119, 50, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1552, 6, 188, 23, 0, 1552, 396, 1, 0, 0, 0, 1553, 1554, 3, 123, 52, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 189, 27, 0, 1556, 398, 1, 0, 0, 0, 1557, 1558, 3, 259, 120, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 190, 30, 0, 1560, 400, 1, 0, 0, 0, 1561, 1562, 3, 73, 27, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 6, 191, 13, 0, 1564, 402, 1, 0, 0, 0, 1565, 1566, 3, 75, 28, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 6, 192, 13, 0, 1568, 404, 1, 0, 0, 0, 1569, 1570, 3, 77, 29, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 193, 13, 0, 1572, 406, 1, 0, 0, 0, 1573, 1574, 3, 79, 30, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 6, 194, 20, 0, 1576, 1577, 6, 194, 14, 0, 1577, 408, 1, 0, 0, 0, 1578, 1579, 7, 35, 0, 0, 1579, 1580, 7, 7, 0, 0, 1580, 1581, 7, 1, 0, 0, 1581, 1582, 7, 9, 0, 0, 1582, 410, 1, 0, 0, 0, 1583, 1584, 3, 279, 130, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 6, 196, 39, 0, 1586, 412, 1, 0, 0, 0, 1587, 1588, 3, 293, 137, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1590, 6, 197, 37, 0, 1590, 1591, 6, 197, 14, 0, 1591, 1592, 6, 197, 0, 0, 1592, 414, 1, 0, 0, 0, 1593, 1594, 7, 20, 0, 0, 1594, 1595, 7, 2, 0, 0, 1595, 1596, 7, 1, 0, 0, 1596, 1597, 7, 9, 0, 0, 1597, 1598, 7, 17, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 6, 198, 14, 0, 1600, 1601, 6, 198, 0, 0, 1601, 416, 1, 0, 0, 0, 1602, 1603, 3, 233, 107, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 199, 25, 0, 1605, 418, 1, 0, 0, 0, 1606, 1607, 3, 101, 41, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 200, 26, 0, 1609, 420, 1, 0, 0, 0, 1610, 1611, 3, 117, 49, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 201, 22, 0, 1613, 422, 1, 0, 0, 0, 1614, 1615, 3, 195, 88, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 6, 202, 36, 0, 1617, 424, 1, 0, 0, 0, 1618, 1619, 3, 199, 90, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 6, 203, 35, 0, 1621, 426, 1, 0, 0, 0, 1622, 1623, 3, 73, 27, 0, 1623, 1624, 1, 0, 0, 0, 1624, 1625, 6, 204, 13, 0, 1625, 428, 1, 0, 0, 0, 1626, 1627, 3, 75, 28, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 6, 205, 13, 0, 1629, 430, 1, 0, 0, 0, 1630, 1631, 3, 77, 29, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 6, 206, 13, 0, 1633, 432, 1, 0, 0, 0, 1634, 1635, 3, 79, 30, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 6, 207, 20, 0, 1637, 1638, 6, 207, 14, 0, 1638, 434, 1, 0, 0, 0, 1639, 1640, 3, 233, 107, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 6, 208, 25, 0, 1642, 1643, 6, 208, 14, 0, 1643, 1644, 6, 208, 40, 0, 1644, 436, 1, 0, 0, 0, 1645, 1646, 3, 101, 41, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 6, 209, 26, 0, 1648, 1649, 6, 209, 14, 0, 1649, 1650, 6, 209, 40, 0, 1650, 438, 1, 0, 0, 0, 1651, 1652, 3, 73, 27, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 6, 210, 13, 0, 1654, 440, 1, 0, 0, 0, 1655, 1656, 3, 75, 28, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 211, 13, 0, 1658, 442, 1, 0, 0, 0, 1659, 1660, 3, 77, 29, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 6, 212, 13, 0, 1662, 444, 1, 0, 0, 0, 1663, 1664, 3, 117, 49, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 6, 213, 22, 0, 1666, 1667, 6, 213, 14, 0, 1667, 1668, 6, 213, 11, 0, 1668, 446, 1, 0, 0, 0, 1669, 1670, 3, 119, 50, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 6, 214, 23, 0, 1672, 1673, 6, 214, 14, 0, 1673, 1674, 6, 214, 11, 0, 1674, 448, 1, 0, 0, 0, 1675, 1676, 3, 73, 27, 0, 1676, 1677, 1, 0, 0, 0, 1677, 1678, 6, 215, 13, 0, 1678, 450, 1, 0, 0, 0, 1679, 1680, 3, 75, 28, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 6, 216, 13, 0, 1682, 452, 1, 0, 0, 0, 1683, 1684, 3, 77, 29, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 6, 217, 13, 0, 1686, 454, 1, 0, 0, 0, 1687, 1688, 3, 199, 90, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 6, 218, 14, 0, 1690, 1691, 6, 218, 0, 0, 1691, 1692, 6, 218, 35, 0, 1692, 456, 1, 0, 0, 0, 1693, 1694, 3, 195, 88, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 6, 219, 14, 0, 1696, 1697, 6, 219, 0, 0, 1697, 1698, 6, 219, 36, 0, 1698, 458, 1, 0, 0, 0, 1699, 1700, 3, 107, 44, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 6, 220, 14, 0, 1702, 1703, 6, 220, 0, 0, 1703, 1704, 6, 220, 41, 0, 1704, 460, 1, 0, 0, 0, 1705, 1706, 3, 79, 30, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1708, 6, 221, 20, 0, 1708, 1709, 6, 221, 14, 0, 1709, 462, 1, 0, 0, 0, 1710, 1711, 3, 79, 30, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 6, 222, 20, 0, 1713, 1714, 6, 222, 14, 0, 1714, 464, 1, 0, 0, 0, 1715, 1716, 3, 293, 137, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 223, 37, 0, 1718, 466, 1, 0, 0, 0, 1719, 1720, 3, 279, 130, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 6, 224, 39, 0, 1722, 468, 1, 0, 0, 0, 1723, 1724, 3, 123, 52, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1726, 6, 225, 27, 0, 1726, 470, 1, 0, 0, 0, 1727, 1728, 3, 119, 50, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 6, 226, 23, 0, 1730, 472, 1, 0, 0, 0, 1731, 1732, 3, 199, 90, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 6, 227, 35, 0, 1734, 474, 1, 0, 0, 0, 1735, 1736, 3, 195, 88, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 6, 228, 36, 0, 1738, 476, 1, 0, 0, 0, 1739, 1740, 3, 73, 27, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 6, 229, 13, 0, 1742, 478, 1, 0, 0, 0, 1743, 1744, 3, 75, 28, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 6, 230, 13, 0, 1746, 480, 1, 0, 0, 0, 1747, 1748, 3, 77, 29, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 6, 231, 13, 0, 1750, 482, 1, 0, 0, 0, 1751, 1752, 3, 79, 30, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 6, 232, 20, 0, 1754, 1755, 6, 232, 14, 0, 1755, 484, 1, 0, 0, 0, 1756, 1757, 3, 195, 88, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 6, 233, 36, 0, 1759, 486, 1, 0, 0, 0, 1760, 1761, 3, 77, 29, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1763, 6, 234, 13, 0, 1763, 488, 1, 0, 0, 0, 1764, 1765, 3, 73, 27, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 6, 235, 13, 0, 1767, 490, 1, 0, 0, 0, 1768, 1769, 3, 75, 28, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 6, 236, 13, 0, 1771, 492, 1, 0, 0, 0, 1772, 1773, 3, 137, 59, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 237, 42, 0, 1775, 1776, 6, 237, 19, 0, 1776, 494, 1, 0, 0, 0, 1777, 1778, 3, 151, 66, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 6, 238, 43, 0, 1780, 1781, 6, 238, 14, 0, 1781, 496, 1, 0, 0, 0, 1782, 1783, 3, 79, 30, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 6, 239, 20, 0, 1785, 1786, 6, 239, 14, 0, 1786, 498, 1, 0, 0, 0, 1787, 1788, 3, 77, 29, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1790, 6, 240, 13, 0, 1790, 500, 1, 0, 0, 0, 1791, 1792, 3, 73, 27, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 6, 241, 13, 0, 1794, 502, 1, 0, 0, 0, 1795, 1796, 3, 75, 28, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 6, 242, 13, 0, 1798, 504, 1, 0, 0, 0, 69, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 745, 755, 759, 762, 771, 773, 784, 803, 808, 817, 824, 829, 831, 842, 850, 853, 855, 860, 865, 871, 878, 883, 889, 892, 900, 904, 1046, 1051, 1058, 1060, 1076, 1081, 1086, 1088, 1094, 1171, 1176, 1223, 1227, 1232, 1237, 1242, 1244, 1248, 1250, 1335, 1339, 1344, 1485, 1487, 44, 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, 16, 0, 5, 11, 0, 5, 14, 0, 5, 18, 0, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 14, 0, 7, 9, 0, 7, 74, 0, 5, 0, 0, 7, 31, 0, 7, 75, 0, 7, 40, 0, 7, 41, 0, 7, 38, 0, 7, 85, 0, 7, 32, 0, 7, 43, 0, 7, 55, 0, 7, 73, 0, 7, 89, 0, 5, 10, 0, 5, 7, 0, 7, 99, 0, 7, 98, 0, 7, 77, 0, 7, 76, 0, 7, 97, 0, 5, 12, 0, 7, 93, 0, 5, 15, 0, 7, 35, 0, 7, 50, 0, 7, 57, 0] \ No newline at end of file +[4, 0, 143, 1827, 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, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 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, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 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, 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, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 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, 27, 4, 27, 762, 8, 27, 11, 27, 12, 27, 763, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 772, 8, 28, 10, 28, 12, 28, 775, 9, 28, 1, 28, 3, 28, 778, 8, 28, 1, 28, 3, 28, 781, 8, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 790, 8, 29, 10, 29, 12, 29, 793, 9, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 4, 30, 801, 8, 30, 11, 30, 12, 30, 802, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 3, 36, 822, 8, 36, 1, 36, 4, 36, 825, 8, 36, 11, 36, 12, 36, 826, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 836, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 3, 41, 843, 8, 41, 1, 42, 1, 42, 1, 42, 5, 42, 848, 8, 42, 10, 42, 12, 42, 851, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 859, 8, 42, 10, 42, 12, 42, 862, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 869, 8, 42, 1, 42, 3, 42, 872, 8, 42, 3, 42, 874, 8, 42, 1, 43, 4, 43, 877, 8, 43, 11, 43, 12, 43, 878, 1, 44, 4, 44, 882, 8, 44, 11, 44, 12, 44, 883, 1, 44, 1, 44, 5, 44, 888, 8, 44, 10, 44, 12, 44, 891, 9, 44, 1, 44, 1, 44, 4, 44, 895, 8, 44, 11, 44, 12, 44, 896, 1, 44, 4, 44, 900, 8, 44, 11, 44, 12, 44, 901, 1, 44, 1, 44, 5, 44, 906, 8, 44, 10, 44, 12, 44, 909, 9, 44, 3, 44, 911, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 4, 44, 917, 8, 44, 11, 44, 12, 44, 918, 1, 44, 1, 44, 3, 44, 923, 8, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 1076, 8, 89, 1, 89, 5, 89, 1079, 8, 89, 10, 89, 12, 89, 1082, 9, 89, 1, 89, 1, 89, 4, 89, 1086, 8, 89, 11, 89, 12, 89, 1087, 3, 89, 1090, 8, 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, 5, 92, 1104, 8, 92, 10, 92, 12, 92, 1107, 9, 92, 1, 92, 1, 92, 3, 92, 1111, 8, 92, 1, 92, 4, 92, 1114, 8, 92, 11, 92, 12, 92, 1115, 3, 92, 1118, 8, 92, 1, 93, 1, 93, 4, 93, 1122, 8, 93, 11, 93, 12, 93, 1123, 1, 93, 1, 93, 1, 94, 1, 94, 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, 98, 1, 99, 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, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 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, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 3, 110, 1201, 8, 110, 1, 111, 4, 111, 1204, 8, 111, 11, 111, 12, 111, 1205, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 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, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1253, 8, 122, 1, 123, 1, 123, 3, 123, 1257, 8, 123, 1, 123, 5, 123, 1260, 8, 123, 10, 123, 12, 123, 1263, 9, 123, 1, 123, 1, 123, 3, 123, 1267, 8, 123, 1, 123, 4, 123, 1270, 8, 123, 11, 123, 12, 123, 1271, 3, 123, 1274, 8, 123, 1, 124, 1, 124, 4, 124, 1278, 8, 124, 11, 124, 12, 124, 1279, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 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, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 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, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 4, 144, 1362, 8, 144, 11, 144, 12, 144, 1363, 1, 144, 1, 144, 3, 144, 1368, 8, 144, 1, 144, 4, 144, 1371, 8, 144, 11, 144, 12, 144, 1372, 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, 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, 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, 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, 170, 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, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 4, 177, 1514, 8, 177, 11, 177, 12, 177, 1515, 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, 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, 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, 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, 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, 198, 1, 199, 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, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 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, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 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, 217, 1, 217, 1, 218, 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, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 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, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 2, 791, 860, 0, 247, 19, 1, 21, 2, 23, 3, 25, 4, 27, 5, 29, 6, 31, 7, 33, 8, 35, 9, 37, 10, 39, 11, 41, 12, 43, 13, 45, 14, 47, 15, 49, 16, 51, 17, 53, 18, 55, 19, 57, 20, 59, 21, 61, 22, 63, 23, 65, 24, 67, 25, 69, 26, 71, 27, 73, 28, 75, 29, 77, 30, 79, 31, 81, 32, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 0, 101, 0, 103, 33, 105, 34, 107, 35, 109, 36, 111, 37, 113, 38, 115, 39, 117, 40, 119, 41, 121, 42, 123, 43, 125, 44, 127, 45, 129, 46, 131, 47, 133, 48, 135, 49, 137, 50, 139, 51, 141, 52, 143, 53, 145, 54, 147, 55, 149, 56, 151, 57, 153, 58, 155, 59, 157, 60, 159, 61, 161, 62, 163, 63, 165, 64, 167, 65, 169, 66, 171, 67, 173, 68, 175, 69, 177, 70, 179, 71, 181, 72, 183, 73, 185, 74, 187, 75, 189, 76, 191, 0, 193, 0, 195, 0, 197, 77, 199, 78, 201, 79, 203, 80, 205, 0, 207, 81, 209, 82, 211, 83, 213, 84, 215, 0, 217, 0, 219, 85, 221, 86, 223, 87, 225, 0, 227, 0, 229, 0, 231, 0, 233, 0, 235, 0, 237, 88, 239, 0, 241, 89, 243, 0, 245, 0, 247, 90, 249, 91, 251, 92, 253, 0, 255, 0, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 93, 269, 94, 271, 95, 273, 96, 275, 0, 277, 0, 279, 0, 281, 0, 283, 0, 285, 0, 287, 0, 289, 0, 291, 97, 293, 98, 295, 99, 297, 0, 299, 0, 301, 0, 303, 0, 305, 0, 307, 100, 309, 0, 311, 101, 313, 102, 315, 103, 317, 0, 319, 0, 321, 0, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 104, 337, 105, 339, 106, 341, 0, 343, 0, 345, 0, 347, 0, 349, 0, 351, 0, 353, 107, 355, 108, 357, 109, 359, 0, 361, 110, 363, 111, 365, 112, 367, 113, 369, 0, 371, 0, 373, 114, 375, 115, 377, 116, 379, 117, 381, 0, 383, 0, 385, 0, 387, 0, 389, 0, 391, 0, 393, 0, 395, 118, 397, 119, 399, 120, 401, 0, 403, 0, 405, 0, 407, 0, 409, 121, 411, 122, 413, 123, 415, 0, 417, 124, 419, 0, 421, 0, 423, 125, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 126, 437, 127, 439, 128, 441, 0, 443, 0, 445, 0, 447, 129, 449, 130, 451, 131, 453, 0, 455, 0, 457, 132, 459, 133, 461, 134, 463, 0, 465, 0, 467, 0, 469, 0, 471, 0, 473, 0, 475, 0, 477, 0, 479, 0, 481, 0, 483, 0, 485, 135, 487, 136, 489, 137, 491, 0, 493, 0, 495, 138, 497, 139, 499, 140, 501, 0, 503, 0, 505, 0, 507, 141, 509, 142, 511, 143, 19, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 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, 1851, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 1, 81, 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, 187, 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, 1, 197, 1, 0, 0, 0, 1, 199, 1, 0, 0, 0, 1, 201, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 207, 1, 0, 0, 0, 1, 209, 1, 0, 0, 0, 1, 211, 1, 0, 0, 0, 1, 213, 1, 0, 0, 0, 2, 215, 1, 0, 0, 0, 2, 217, 1, 0, 0, 0, 2, 219, 1, 0, 0, 0, 2, 221, 1, 0, 0, 0, 2, 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, 3, 235, 1, 0, 0, 0, 3, 237, 1, 0, 0, 0, 3, 241, 1, 0, 0, 0, 3, 243, 1, 0, 0, 0, 3, 245, 1, 0, 0, 0, 3, 247, 1, 0, 0, 0, 3, 249, 1, 0, 0, 0, 3, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 4, 257, 1, 0, 0, 0, 4, 259, 1, 0, 0, 0, 4, 261, 1, 0, 0, 0, 4, 267, 1, 0, 0, 0, 4, 269, 1, 0, 0, 0, 4, 271, 1, 0, 0, 0, 4, 273, 1, 0, 0, 0, 5, 275, 1, 0, 0, 0, 5, 277, 1, 0, 0, 0, 5, 279, 1, 0, 0, 0, 5, 281, 1, 0, 0, 0, 5, 283, 1, 0, 0, 0, 5, 285, 1, 0, 0, 0, 5, 287, 1, 0, 0, 0, 5, 289, 1, 0, 0, 0, 5, 291, 1, 0, 0, 0, 5, 293, 1, 0, 0, 0, 5, 295, 1, 0, 0, 0, 6, 297, 1, 0, 0, 0, 6, 299, 1, 0, 0, 0, 6, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 309, 1, 0, 0, 0, 6, 311, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 7, 317, 1, 0, 0, 0, 7, 319, 1, 0, 0, 0, 7, 321, 1, 0, 0, 0, 7, 323, 1, 0, 0, 0, 7, 325, 1, 0, 0, 0, 7, 327, 1, 0, 0, 0, 7, 329, 1, 0, 0, 0, 7, 331, 1, 0, 0, 0, 7, 333, 1, 0, 0, 0, 7, 335, 1, 0, 0, 0, 7, 337, 1, 0, 0, 0, 7, 339, 1, 0, 0, 0, 8, 341, 1, 0, 0, 0, 8, 343, 1, 0, 0, 0, 8, 345, 1, 0, 0, 0, 8, 347, 1, 0, 0, 0, 8, 349, 1, 0, 0, 0, 8, 351, 1, 0, 0, 0, 8, 353, 1, 0, 0, 0, 8, 355, 1, 0, 0, 0, 8, 357, 1, 0, 0, 0, 9, 359, 1, 0, 0, 0, 9, 361, 1, 0, 0, 0, 9, 363, 1, 0, 0, 0, 9, 365, 1, 0, 0, 0, 9, 367, 1, 0, 0, 0, 10, 369, 1, 0, 0, 0, 10, 371, 1, 0, 0, 0, 10, 373, 1, 0, 0, 0, 10, 375, 1, 0, 0, 0, 10, 377, 1, 0, 0, 0, 10, 379, 1, 0, 0, 0, 11, 381, 1, 0, 0, 0, 11, 383, 1, 0, 0, 0, 11, 385, 1, 0, 0, 0, 11, 387, 1, 0, 0, 0, 11, 389, 1, 0, 0, 0, 11, 391, 1, 0, 0, 0, 11, 393, 1, 0, 0, 0, 11, 395, 1, 0, 0, 0, 11, 397, 1, 0, 0, 0, 11, 399, 1, 0, 0, 0, 12, 401, 1, 0, 0, 0, 12, 403, 1, 0, 0, 0, 12, 405, 1, 0, 0, 0, 12, 407, 1, 0, 0, 0, 12, 409, 1, 0, 0, 0, 12, 411, 1, 0, 0, 0, 12, 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, 13, 423, 1, 0, 0, 0, 13, 425, 1, 0, 0, 0, 13, 427, 1, 0, 0, 0, 13, 429, 1, 0, 0, 0, 13, 431, 1, 0, 0, 0, 13, 433, 1, 0, 0, 0, 13, 435, 1, 0, 0, 0, 13, 437, 1, 0, 0, 0, 13, 439, 1, 0, 0, 0, 14, 441, 1, 0, 0, 0, 14, 443, 1, 0, 0, 0, 14, 445, 1, 0, 0, 0, 14, 447, 1, 0, 0, 0, 14, 449, 1, 0, 0, 0, 14, 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, 15, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 16, 471, 1, 0, 0, 0, 16, 473, 1, 0, 0, 0, 16, 475, 1, 0, 0, 0, 16, 477, 1, 0, 0, 0, 16, 479, 1, 0, 0, 0, 16, 481, 1, 0, 0, 0, 16, 483, 1, 0, 0, 0, 16, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 17, 491, 1, 0, 0, 0, 17, 493, 1, 0, 0, 0, 17, 495, 1, 0, 0, 0, 17, 497, 1, 0, 0, 0, 17, 499, 1, 0, 0, 0, 18, 501, 1, 0, 0, 0, 18, 503, 1, 0, 0, 0, 18, 505, 1, 0, 0, 0, 18, 507, 1, 0, 0, 0, 18, 509, 1, 0, 0, 0, 18, 511, 1, 0, 0, 0, 19, 513, 1, 0, 0, 0, 21, 523, 1, 0, 0, 0, 23, 530, 1, 0, 0, 0, 25, 539, 1, 0, 0, 0, 27, 546, 1, 0, 0, 0, 29, 556, 1, 0, 0, 0, 31, 563, 1, 0, 0, 0, 33, 570, 1, 0, 0, 0, 35, 577, 1, 0, 0, 0, 37, 585, 1, 0, 0, 0, 39, 597, 1, 0, 0, 0, 41, 606, 1, 0, 0, 0, 43, 612, 1, 0, 0, 0, 45, 619, 1, 0, 0, 0, 47, 626, 1, 0, 0, 0, 49, 634, 1, 0, 0, 0, 51, 642, 1, 0, 0, 0, 53, 651, 1, 0, 0, 0, 55, 667, 1, 0, 0, 0, 57, 682, 1, 0, 0, 0, 59, 694, 1, 0, 0, 0, 61, 706, 1, 0, 0, 0, 63, 717, 1, 0, 0, 0, 65, 727, 1, 0, 0, 0, 67, 735, 1, 0, 0, 0, 69, 743, 1, 0, 0, 0, 71, 752, 1, 0, 0, 0, 73, 761, 1, 0, 0, 0, 75, 767, 1, 0, 0, 0, 77, 784, 1, 0, 0, 0, 79, 800, 1, 0, 0, 0, 81, 806, 1, 0, 0, 0, 83, 810, 1, 0, 0, 0, 85, 812, 1, 0, 0, 0, 87, 814, 1, 0, 0, 0, 89, 817, 1, 0, 0, 0, 91, 819, 1, 0, 0, 0, 93, 828, 1, 0, 0, 0, 95, 830, 1, 0, 0, 0, 97, 835, 1, 0, 0, 0, 99, 837, 1, 0, 0, 0, 101, 842, 1, 0, 0, 0, 103, 873, 1, 0, 0, 0, 105, 876, 1, 0, 0, 0, 107, 922, 1, 0, 0, 0, 109, 924, 1, 0, 0, 0, 111, 927, 1, 0, 0, 0, 113, 930, 1, 0, 0, 0, 115, 935, 1, 0, 0, 0, 117, 938, 1, 0, 0, 0, 119, 942, 1, 0, 0, 0, 121, 946, 1, 0, 0, 0, 123, 948, 1, 0, 0, 0, 125, 951, 1, 0, 0, 0, 127, 953, 1, 0, 0, 0, 129, 955, 1, 0, 0, 0, 131, 960, 1, 0, 0, 0, 133, 962, 1, 0, 0, 0, 135, 968, 1, 0, 0, 0, 137, 974, 1, 0, 0, 0, 139, 977, 1, 0, 0, 0, 141, 980, 1, 0, 0, 0, 143, 985, 1, 0, 0, 0, 145, 990, 1, 0, 0, 0, 147, 992, 1, 0, 0, 0, 149, 996, 1, 0, 0, 0, 151, 1001, 1, 0, 0, 0, 153, 1007, 1, 0, 0, 0, 155, 1010, 1, 0, 0, 0, 157, 1012, 1, 0, 0, 0, 159, 1018, 1, 0, 0, 0, 161, 1020, 1, 0, 0, 0, 163, 1025, 1, 0, 0, 0, 165, 1028, 1, 0, 0, 0, 167, 1031, 1, 0, 0, 0, 169, 1034, 1, 0, 0, 0, 171, 1036, 1, 0, 0, 0, 173, 1039, 1, 0, 0, 0, 175, 1041, 1, 0, 0, 0, 177, 1044, 1, 0, 0, 0, 179, 1046, 1, 0, 0, 0, 181, 1048, 1, 0, 0, 0, 183, 1050, 1, 0, 0, 0, 185, 1052, 1, 0, 0, 0, 187, 1054, 1, 0, 0, 0, 189, 1056, 1, 0, 0, 0, 191, 1058, 1, 0, 0, 0, 193, 1062, 1, 0, 0, 0, 195, 1067, 1, 0, 0, 0, 197, 1089, 1, 0, 0, 0, 199, 1091, 1, 0, 0, 0, 201, 1096, 1, 0, 0, 0, 203, 1117, 1, 0, 0, 0, 205, 1119, 1, 0, 0, 0, 207, 1127, 1, 0, 0, 0, 209, 1129, 1, 0, 0, 0, 211, 1133, 1, 0, 0, 0, 213, 1137, 1, 0, 0, 0, 215, 1141, 1, 0, 0, 0, 217, 1146, 1, 0, 0, 0, 219, 1151, 1, 0, 0, 0, 221, 1155, 1, 0, 0, 0, 223, 1159, 1, 0, 0, 0, 225, 1163, 1, 0, 0, 0, 227, 1168, 1, 0, 0, 0, 229, 1172, 1, 0, 0, 0, 231, 1176, 1, 0, 0, 0, 233, 1180, 1, 0, 0, 0, 235, 1184, 1, 0, 0, 0, 237, 1188, 1, 0, 0, 0, 239, 1200, 1, 0, 0, 0, 241, 1203, 1, 0, 0, 0, 243, 1207, 1, 0, 0, 0, 245, 1211, 1, 0, 0, 0, 247, 1215, 1, 0, 0, 0, 249, 1219, 1, 0, 0, 0, 251, 1223, 1, 0, 0, 0, 253, 1227, 1, 0, 0, 0, 255, 1232, 1, 0, 0, 0, 257, 1236, 1, 0, 0, 0, 259, 1240, 1, 0, 0, 0, 261, 1244, 1, 0, 0, 0, 263, 1252, 1, 0, 0, 0, 265, 1273, 1, 0, 0, 0, 267, 1277, 1, 0, 0, 0, 269, 1281, 1, 0, 0, 0, 271, 1285, 1, 0, 0, 0, 273, 1289, 1, 0, 0, 0, 275, 1293, 1, 0, 0, 0, 277, 1298, 1, 0, 0, 0, 279, 1302, 1, 0, 0, 0, 281, 1306, 1, 0, 0, 0, 283, 1310, 1, 0, 0, 0, 285, 1314, 1, 0, 0, 0, 287, 1318, 1, 0, 0, 0, 289, 1322, 1, 0, 0, 0, 291, 1326, 1, 0, 0, 0, 293, 1330, 1, 0, 0, 0, 295, 1334, 1, 0, 0, 0, 297, 1338, 1, 0, 0, 0, 299, 1343, 1, 0, 0, 0, 301, 1348, 1, 0, 0, 0, 303, 1353, 1, 0, 0, 0, 305, 1358, 1, 0, 0, 0, 307, 1367, 1, 0, 0, 0, 309, 1374, 1, 0, 0, 0, 311, 1378, 1, 0, 0, 0, 313, 1382, 1, 0, 0, 0, 315, 1386, 1, 0, 0, 0, 317, 1390, 1, 0, 0, 0, 319, 1396, 1, 0, 0, 0, 321, 1400, 1, 0, 0, 0, 323, 1404, 1, 0, 0, 0, 325, 1408, 1, 0, 0, 0, 327, 1412, 1, 0, 0, 0, 329, 1416, 1, 0, 0, 0, 331, 1420, 1, 0, 0, 0, 333, 1424, 1, 0, 0, 0, 335, 1428, 1, 0, 0, 0, 337, 1432, 1, 0, 0, 0, 339, 1436, 1, 0, 0, 0, 341, 1440, 1, 0, 0, 0, 343, 1445, 1, 0, 0, 0, 345, 1449, 1, 0, 0, 0, 347, 1453, 1, 0, 0, 0, 349, 1457, 1, 0, 0, 0, 351, 1461, 1, 0, 0, 0, 353, 1465, 1, 0, 0, 0, 355, 1469, 1, 0, 0, 0, 357, 1473, 1, 0, 0, 0, 359, 1477, 1, 0, 0, 0, 361, 1482, 1, 0, 0, 0, 363, 1487, 1, 0, 0, 0, 365, 1491, 1, 0, 0, 0, 367, 1495, 1, 0, 0, 0, 369, 1499, 1, 0, 0, 0, 371, 1504, 1, 0, 0, 0, 373, 1513, 1, 0, 0, 0, 375, 1517, 1, 0, 0, 0, 377, 1521, 1, 0, 0, 0, 379, 1525, 1, 0, 0, 0, 381, 1529, 1, 0, 0, 0, 383, 1534, 1, 0, 0, 0, 385, 1538, 1, 0, 0, 0, 387, 1542, 1, 0, 0, 0, 389, 1546, 1, 0, 0, 0, 391, 1551, 1, 0, 0, 0, 393, 1555, 1, 0, 0, 0, 395, 1559, 1, 0, 0, 0, 397, 1563, 1, 0, 0, 0, 399, 1567, 1, 0, 0, 0, 401, 1571, 1, 0, 0, 0, 403, 1577, 1, 0, 0, 0, 405, 1581, 1, 0, 0, 0, 407, 1585, 1, 0, 0, 0, 409, 1589, 1, 0, 0, 0, 411, 1593, 1, 0, 0, 0, 413, 1597, 1, 0, 0, 0, 415, 1601, 1, 0, 0, 0, 417, 1606, 1, 0, 0, 0, 419, 1611, 1, 0, 0, 0, 421, 1615, 1, 0, 0, 0, 423, 1621, 1, 0, 0, 0, 425, 1630, 1, 0, 0, 0, 427, 1634, 1, 0, 0, 0, 429, 1638, 1, 0, 0, 0, 431, 1642, 1, 0, 0, 0, 433, 1646, 1, 0, 0, 0, 435, 1650, 1, 0, 0, 0, 437, 1654, 1, 0, 0, 0, 439, 1658, 1, 0, 0, 0, 441, 1662, 1, 0, 0, 0, 443, 1667, 1, 0, 0, 0, 445, 1673, 1, 0, 0, 0, 447, 1679, 1, 0, 0, 0, 449, 1683, 1, 0, 0, 0, 451, 1687, 1, 0, 0, 0, 453, 1691, 1, 0, 0, 0, 455, 1697, 1, 0, 0, 0, 457, 1703, 1, 0, 0, 0, 459, 1707, 1, 0, 0, 0, 461, 1711, 1, 0, 0, 0, 463, 1715, 1, 0, 0, 0, 465, 1721, 1, 0, 0, 0, 467, 1727, 1, 0, 0, 0, 469, 1733, 1, 0, 0, 0, 471, 1738, 1, 0, 0, 0, 473, 1743, 1, 0, 0, 0, 475, 1747, 1, 0, 0, 0, 477, 1751, 1, 0, 0, 0, 479, 1755, 1, 0, 0, 0, 481, 1759, 1, 0, 0, 0, 483, 1763, 1, 0, 0, 0, 485, 1767, 1, 0, 0, 0, 487, 1771, 1, 0, 0, 0, 489, 1775, 1, 0, 0, 0, 491, 1779, 1, 0, 0, 0, 493, 1784, 1, 0, 0, 0, 495, 1788, 1, 0, 0, 0, 497, 1792, 1, 0, 0, 0, 499, 1796, 1, 0, 0, 0, 501, 1800, 1, 0, 0, 0, 503, 1805, 1, 0, 0, 0, 505, 1810, 1, 0, 0, 0, 507, 1815, 1, 0, 0, 0, 509, 1819, 1, 0, 0, 0, 511, 1823, 1, 0, 0, 0, 513, 514, 7, 0, 0, 0, 514, 515, 7, 1, 0, 0, 515, 516, 7, 2, 0, 0, 516, 517, 7, 2, 0, 0, 517, 518, 7, 3, 0, 0, 518, 519, 7, 4, 0, 0, 519, 520, 7, 5, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 6, 0, 0, 0, 522, 20, 1, 0, 0, 0, 523, 524, 7, 0, 0, 0, 524, 525, 7, 6, 0, 0, 525, 526, 7, 7, 0, 0, 526, 527, 7, 8, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 6, 1, 1, 0, 529, 22, 1, 0, 0, 0, 530, 531, 7, 3, 0, 0, 531, 532, 7, 9, 0, 0, 532, 533, 7, 6, 0, 0, 533, 534, 7, 1, 0, 0, 534, 535, 7, 4, 0, 0, 535, 536, 7, 10, 0, 0, 536, 537, 1, 0, 0, 0, 537, 538, 6, 2, 2, 0, 538, 24, 1, 0, 0, 0, 539, 540, 7, 3, 0, 0, 540, 541, 7, 11, 0, 0, 541, 542, 7, 12, 0, 0, 542, 543, 7, 13, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 6, 3, 0, 0, 545, 26, 1, 0, 0, 0, 546, 547, 7, 3, 0, 0, 547, 548, 7, 14, 0, 0, 548, 549, 7, 8, 0, 0, 549, 550, 7, 13, 0, 0, 550, 551, 7, 12, 0, 0, 551, 552, 7, 1, 0, 0, 552, 553, 7, 9, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 6, 4, 3, 0, 555, 28, 1, 0, 0, 0, 556, 557, 7, 15, 0, 0, 557, 558, 7, 6, 0, 0, 558, 559, 7, 7, 0, 0, 559, 560, 7, 16, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 6, 5, 4, 0, 562, 30, 1, 0, 0, 0, 563, 564, 7, 17, 0, 0, 564, 565, 7, 6, 0, 0, 565, 566, 7, 7, 0, 0, 566, 567, 7, 18, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 6, 6, 0, 0, 569, 32, 1, 0, 0, 0, 570, 571, 7, 18, 0, 0, 571, 572, 7, 3, 0, 0, 572, 573, 7, 3, 0, 0, 573, 574, 7, 8, 0, 0, 574, 575, 1, 0, 0, 0, 575, 576, 6, 7, 1, 0, 576, 34, 1, 0, 0, 0, 577, 578, 7, 13, 0, 0, 578, 579, 7, 1, 0, 0, 579, 580, 7, 16, 0, 0, 580, 581, 7, 1, 0, 0, 581, 582, 7, 5, 0, 0, 582, 583, 1, 0, 0, 0, 583, 584, 6, 8, 0, 0, 584, 36, 1, 0, 0, 0, 585, 586, 7, 16, 0, 0, 586, 587, 7, 11, 0, 0, 587, 588, 5, 95, 0, 0, 588, 589, 7, 3, 0, 0, 589, 590, 7, 14, 0, 0, 590, 591, 7, 8, 0, 0, 591, 592, 7, 12, 0, 0, 592, 593, 7, 9, 0, 0, 593, 594, 7, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 6, 9, 5, 0, 596, 38, 1, 0, 0, 0, 597, 598, 7, 6, 0, 0, 598, 599, 7, 3, 0, 0, 599, 600, 7, 9, 0, 0, 600, 601, 7, 12, 0, 0, 601, 602, 7, 16, 0, 0, 602, 603, 7, 3, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 6, 10, 6, 0, 605, 40, 1, 0, 0, 0, 606, 607, 7, 6, 0, 0, 607, 608, 7, 7, 0, 0, 608, 609, 7, 19, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 6, 11, 0, 0, 611, 42, 1, 0, 0, 0, 612, 613, 7, 2, 0, 0, 613, 614, 7, 10, 0, 0, 614, 615, 7, 7, 0, 0, 615, 616, 7, 19, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 6, 12, 7, 0, 618, 44, 1, 0, 0, 0, 619, 620, 7, 2, 0, 0, 620, 621, 7, 7, 0, 0, 621, 622, 7, 6, 0, 0, 622, 623, 7, 5, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 6, 13, 0, 0, 625, 46, 1, 0, 0, 0, 626, 627, 7, 2, 0, 0, 627, 628, 7, 5, 0, 0, 628, 629, 7, 12, 0, 0, 629, 630, 7, 5, 0, 0, 630, 631, 7, 2, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 6, 14, 0, 0, 633, 48, 1, 0, 0, 0, 634, 635, 7, 19, 0, 0, 635, 636, 7, 10, 0, 0, 636, 637, 7, 3, 0, 0, 637, 638, 7, 6, 0, 0, 638, 639, 7, 3, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 6, 15, 0, 0, 641, 50, 1, 0, 0, 0, 642, 643, 7, 13, 0, 0, 643, 644, 7, 7, 0, 0, 644, 645, 7, 7, 0, 0, 645, 646, 7, 18, 0, 0, 646, 647, 7, 20, 0, 0, 647, 648, 7, 8, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 6, 16, 8, 0, 650, 52, 1, 0, 0, 0, 651, 652, 4, 17, 0, 0, 652, 653, 7, 4, 0, 0, 653, 654, 7, 10, 0, 0, 654, 655, 7, 12, 0, 0, 655, 656, 7, 9, 0, 0, 656, 657, 7, 17, 0, 0, 657, 658, 7, 3, 0, 0, 658, 659, 5, 95, 0, 0, 659, 660, 7, 8, 0, 0, 660, 661, 7, 7, 0, 0, 661, 662, 7, 1, 0, 0, 662, 663, 7, 9, 0, 0, 663, 664, 7, 5, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 6, 17, 9, 0, 666, 54, 1, 0, 0, 0, 667, 668, 4, 18, 1, 0, 668, 669, 7, 1, 0, 0, 669, 670, 7, 9, 0, 0, 670, 671, 7, 13, 0, 0, 671, 672, 7, 1, 0, 0, 672, 673, 7, 9, 0, 0, 673, 674, 7, 3, 0, 0, 674, 675, 7, 2, 0, 0, 675, 676, 7, 5, 0, 0, 676, 677, 7, 12, 0, 0, 677, 678, 7, 5, 0, 0, 678, 679, 7, 2, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 6, 18, 0, 0, 681, 56, 1, 0, 0, 0, 682, 683, 4, 19, 2, 0, 683, 684, 7, 1, 0, 0, 684, 685, 7, 9, 0, 0, 685, 686, 7, 2, 0, 0, 686, 687, 7, 1, 0, 0, 687, 688, 7, 2, 0, 0, 688, 689, 7, 5, 0, 0, 689, 690, 5, 95, 0, 0, 690, 691, 5, 128020, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 6, 19, 1, 0, 693, 58, 1, 0, 0, 0, 694, 695, 4, 20, 3, 0, 695, 696, 7, 13, 0, 0, 696, 697, 7, 7, 0, 0, 697, 698, 7, 7, 0, 0, 698, 699, 7, 18, 0, 0, 699, 700, 7, 20, 0, 0, 700, 701, 7, 8, 0, 0, 701, 702, 5, 95, 0, 0, 702, 703, 5, 128020, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 6, 20, 10, 0, 705, 60, 1, 0, 0, 0, 706, 707, 4, 21, 4, 0, 707, 708, 7, 16, 0, 0, 708, 709, 7, 3, 0, 0, 709, 710, 7, 5, 0, 0, 710, 711, 7, 6, 0, 0, 711, 712, 7, 1, 0, 0, 712, 713, 7, 4, 0, 0, 713, 714, 7, 2, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 6, 21, 11, 0, 716, 62, 1, 0, 0, 0, 717, 718, 4, 22, 5, 0, 718, 719, 7, 6, 0, 0, 719, 720, 7, 3, 0, 0, 720, 721, 7, 6, 0, 0, 721, 722, 7, 12, 0, 0, 722, 723, 7, 9, 0, 0, 723, 724, 7, 18, 0, 0, 724, 725, 1, 0, 0, 0, 725, 726, 6, 22, 0, 0, 726, 64, 1, 0, 0, 0, 727, 728, 4, 23, 6, 0, 728, 729, 7, 15, 0, 0, 729, 730, 7, 20, 0, 0, 730, 731, 7, 13, 0, 0, 731, 732, 7, 13, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 6, 23, 8, 0, 734, 66, 1, 0, 0, 0, 735, 736, 4, 24, 7, 0, 736, 737, 7, 13, 0, 0, 737, 738, 7, 3, 0, 0, 738, 739, 7, 15, 0, 0, 739, 740, 7, 5, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 6, 24, 8, 0, 742, 68, 1, 0, 0, 0, 743, 744, 4, 25, 8, 0, 744, 745, 7, 6, 0, 0, 745, 746, 7, 1, 0, 0, 746, 747, 7, 17, 0, 0, 747, 748, 7, 10, 0, 0, 748, 749, 7, 5, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 6, 25, 8, 0, 751, 70, 1, 0, 0, 0, 752, 753, 4, 26, 9, 0, 753, 754, 7, 15, 0, 0, 754, 755, 7, 7, 0, 0, 755, 756, 7, 6, 0, 0, 756, 757, 7, 18, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 6, 26, 12, 0, 759, 72, 1, 0, 0, 0, 760, 762, 8, 21, 0, 0, 761, 760, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 6, 27, 0, 0, 766, 74, 1, 0, 0, 0, 767, 768, 5, 47, 0, 0, 768, 769, 5, 47, 0, 0, 769, 773, 1, 0, 0, 0, 770, 772, 8, 22, 0, 0, 771, 770, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 778, 5, 13, 0, 0, 777, 776, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 781, 5, 10, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 6, 28, 13, 0, 783, 76, 1, 0, 0, 0, 784, 785, 5, 47, 0, 0, 785, 786, 5, 42, 0, 0, 786, 791, 1, 0, 0, 0, 787, 790, 3, 77, 29, 0, 788, 790, 9, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 788, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 794, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 795, 5, 42, 0, 0, 795, 796, 5, 47, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 6, 29, 13, 0, 798, 78, 1, 0, 0, 0, 799, 801, 7, 23, 0, 0, 800, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 6, 30, 13, 0, 805, 80, 1, 0, 0, 0, 806, 807, 5, 124, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 6, 31, 14, 0, 809, 82, 1, 0, 0, 0, 810, 811, 7, 24, 0, 0, 811, 84, 1, 0, 0, 0, 812, 813, 7, 25, 0, 0, 813, 86, 1, 0, 0, 0, 814, 815, 5, 92, 0, 0, 815, 816, 7, 26, 0, 0, 816, 88, 1, 0, 0, 0, 817, 818, 8, 27, 0, 0, 818, 90, 1, 0, 0, 0, 819, 821, 7, 3, 0, 0, 820, 822, 7, 28, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 825, 3, 83, 32, 0, 824, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 92, 1, 0, 0, 0, 828, 829, 5, 64, 0, 0, 829, 94, 1, 0, 0, 0, 830, 831, 5, 96, 0, 0, 831, 96, 1, 0, 0, 0, 832, 836, 8, 29, 0, 0, 833, 834, 5, 96, 0, 0, 834, 836, 5, 96, 0, 0, 835, 832, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 98, 1, 0, 0, 0, 837, 838, 5, 95, 0, 0, 838, 100, 1, 0, 0, 0, 839, 843, 3, 85, 33, 0, 840, 843, 3, 83, 32, 0, 841, 843, 3, 99, 40, 0, 842, 839, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 841, 1, 0, 0, 0, 843, 102, 1, 0, 0, 0, 844, 849, 5, 34, 0, 0, 845, 848, 3, 87, 34, 0, 846, 848, 3, 89, 35, 0, 847, 845, 1, 0, 0, 0, 847, 846, 1, 0, 0, 0, 848, 851, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 852, 874, 5, 34, 0, 0, 853, 854, 5, 34, 0, 0, 854, 855, 5, 34, 0, 0, 855, 856, 5, 34, 0, 0, 856, 860, 1, 0, 0, 0, 857, 859, 8, 22, 0, 0, 858, 857, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 861, 863, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 864, 5, 34, 0, 0, 864, 865, 5, 34, 0, 0, 865, 866, 5, 34, 0, 0, 866, 868, 1, 0, 0, 0, 867, 869, 5, 34, 0, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 872, 5, 34, 0, 0, 871, 870, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 1, 0, 0, 0, 873, 844, 1, 0, 0, 0, 873, 853, 1, 0, 0, 0, 874, 104, 1, 0, 0, 0, 875, 877, 3, 83, 32, 0, 876, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 106, 1, 0, 0, 0, 880, 882, 3, 83, 32, 0, 881, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 889, 3, 131, 56, 0, 886, 888, 3, 83, 32, 0, 887, 886, 1, 0, 0, 0, 888, 891, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 923, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 892, 894, 3, 131, 56, 0, 893, 895, 3, 83, 32, 0, 894, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 923, 1, 0, 0, 0, 898, 900, 3, 83, 32, 0, 899, 898, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 910, 1, 0, 0, 0, 903, 907, 3, 131, 56, 0, 904, 906, 3, 83, 32, 0, 905, 904, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 911, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 910, 903, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 3, 91, 36, 0, 913, 923, 1, 0, 0, 0, 914, 916, 3, 131, 56, 0, 915, 917, 3, 83, 32, 0, 916, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 3, 91, 36, 0, 921, 923, 1, 0, 0, 0, 922, 881, 1, 0, 0, 0, 922, 892, 1, 0, 0, 0, 922, 899, 1, 0, 0, 0, 922, 914, 1, 0, 0, 0, 923, 108, 1, 0, 0, 0, 924, 925, 7, 30, 0, 0, 925, 926, 7, 31, 0, 0, 926, 110, 1, 0, 0, 0, 927, 928, 7, 7, 0, 0, 928, 929, 7, 9, 0, 0, 929, 112, 1, 0, 0, 0, 930, 931, 7, 19, 0, 0, 931, 932, 7, 1, 0, 0, 932, 933, 7, 5, 0, 0, 933, 934, 7, 10, 0, 0, 934, 114, 1, 0, 0, 0, 935, 936, 7, 12, 0, 0, 936, 937, 7, 2, 0, 0, 937, 116, 1, 0, 0, 0, 938, 939, 7, 12, 0, 0, 939, 940, 7, 9, 0, 0, 940, 941, 7, 0, 0, 0, 941, 118, 1, 0, 0, 0, 942, 943, 7, 12, 0, 0, 943, 944, 7, 2, 0, 0, 944, 945, 7, 4, 0, 0, 945, 120, 1, 0, 0, 0, 946, 947, 5, 61, 0, 0, 947, 122, 1, 0, 0, 0, 948, 949, 5, 58, 0, 0, 949, 950, 5, 58, 0, 0, 950, 124, 1, 0, 0, 0, 951, 952, 5, 58, 0, 0, 952, 126, 1, 0, 0, 0, 953, 954, 5, 44, 0, 0, 954, 128, 1, 0, 0, 0, 955, 956, 7, 0, 0, 0, 956, 957, 7, 3, 0, 0, 957, 958, 7, 2, 0, 0, 958, 959, 7, 4, 0, 0, 959, 130, 1, 0, 0, 0, 960, 961, 5, 46, 0, 0, 961, 132, 1, 0, 0, 0, 962, 963, 7, 15, 0, 0, 963, 964, 7, 12, 0, 0, 964, 965, 7, 13, 0, 0, 965, 966, 7, 2, 0, 0, 966, 967, 7, 3, 0, 0, 967, 134, 1, 0, 0, 0, 968, 969, 7, 15, 0, 0, 969, 970, 7, 1, 0, 0, 970, 971, 7, 6, 0, 0, 971, 972, 7, 2, 0, 0, 972, 973, 7, 5, 0, 0, 973, 136, 1, 0, 0, 0, 974, 975, 7, 1, 0, 0, 975, 976, 7, 9, 0, 0, 976, 138, 1, 0, 0, 0, 977, 978, 7, 1, 0, 0, 978, 979, 7, 2, 0, 0, 979, 140, 1, 0, 0, 0, 980, 981, 7, 13, 0, 0, 981, 982, 7, 12, 0, 0, 982, 983, 7, 2, 0, 0, 983, 984, 7, 5, 0, 0, 984, 142, 1, 0, 0, 0, 985, 986, 7, 13, 0, 0, 986, 987, 7, 1, 0, 0, 987, 988, 7, 18, 0, 0, 988, 989, 7, 3, 0, 0, 989, 144, 1, 0, 0, 0, 990, 991, 5, 40, 0, 0, 991, 146, 1, 0, 0, 0, 992, 993, 7, 9, 0, 0, 993, 994, 7, 7, 0, 0, 994, 995, 7, 5, 0, 0, 995, 148, 1, 0, 0, 0, 996, 997, 7, 9, 0, 0, 997, 998, 7, 20, 0, 0, 998, 999, 7, 13, 0, 0, 999, 1000, 7, 13, 0, 0, 1000, 150, 1, 0, 0, 0, 1001, 1002, 7, 9, 0, 0, 1002, 1003, 7, 20, 0, 0, 1003, 1004, 7, 13, 0, 0, 1004, 1005, 7, 13, 0, 0, 1005, 1006, 7, 2, 0, 0, 1006, 152, 1, 0, 0, 0, 1007, 1008, 7, 7, 0, 0, 1008, 1009, 7, 6, 0, 0, 1009, 154, 1, 0, 0, 0, 1010, 1011, 5, 63, 0, 0, 1011, 156, 1, 0, 0, 0, 1012, 1013, 7, 6, 0, 0, 1013, 1014, 7, 13, 0, 0, 1014, 1015, 7, 1, 0, 0, 1015, 1016, 7, 18, 0, 0, 1016, 1017, 7, 3, 0, 0, 1017, 158, 1, 0, 0, 0, 1018, 1019, 5, 41, 0, 0, 1019, 160, 1, 0, 0, 0, 1020, 1021, 7, 5, 0, 0, 1021, 1022, 7, 6, 0, 0, 1022, 1023, 7, 20, 0, 0, 1023, 1024, 7, 3, 0, 0, 1024, 162, 1, 0, 0, 0, 1025, 1026, 5, 61, 0, 0, 1026, 1027, 5, 61, 0, 0, 1027, 164, 1, 0, 0, 0, 1028, 1029, 5, 61, 0, 0, 1029, 1030, 5, 126, 0, 0, 1030, 166, 1, 0, 0, 0, 1031, 1032, 5, 33, 0, 0, 1032, 1033, 5, 61, 0, 0, 1033, 168, 1, 0, 0, 0, 1034, 1035, 5, 60, 0, 0, 1035, 170, 1, 0, 0, 0, 1036, 1037, 5, 60, 0, 0, 1037, 1038, 5, 61, 0, 0, 1038, 172, 1, 0, 0, 0, 1039, 1040, 5, 62, 0, 0, 1040, 174, 1, 0, 0, 0, 1041, 1042, 5, 62, 0, 0, 1042, 1043, 5, 61, 0, 0, 1043, 176, 1, 0, 0, 0, 1044, 1045, 5, 43, 0, 0, 1045, 178, 1, 0, 0, 0, 1046, 1047, 5, 45, 0, 0, 1047, 180, 1, 0, 0, 0, 1048, 1049, 5, 42, 0, 0, 1049, 182, 1, 0, 0, 0, 1050, 1051, 5, 47, 0, 0, 1051, 184, 1, 0, 0, 0, 1052, 1053, 5, 37, 0, 0, 1053, 186, 1, 0, 0, 0, 1054, 1055, 5, 123, 0, 0, 1055, 188, 1, 0, 0, 0, 1056, 1057, 5, 125, 0, 0, 1057, 190, 1, 0, 0, 0, 1058, 1059, 3, 49, 15, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 6, 86, 15, 0, 1061, 192, 1, 0, 0, 0, 1062, 1063, 4, 87, 10, 0, 1063, 1064, 3, 45, 13, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 6, 87, 16, 0, 1066, 194, 1, 0, 0, 0, 1067, 1068, 4, 88, 11, 0, 1068, 1069, 3, 35, 8, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 6, 88, 17, 0, 1071, 196, 1, 0, 0, 0, 1072, 1075, 3, 155, 68, 0, 1073, 1076, 3, 85, 33, 0, 1074, 1076, 3, 99, 40, 0, 1075, 1073, 1, 0, 0, 0, 1075, 1074, 1, 0, 0, 0, 1076, 1080, 1, 0, 0, 0, 1077, 1079, 3, 101, 41, 0, 1078, 1077, 1, 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1090, 1, 0, 0, 0, 1082, 1080, 1, 0, 0, 0, 1083, 1085, 3, 155, 68, 0, 1084, 1086, 3, 83, 32, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 1, 0, 0, 0, 1089, 1072, 1, 0, 0, 0, 1089, 1083, 1, 0, 0, 0, 1090, 198, 1, 0, 0, 0, 1091, 1092, 5, 91, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 6, 90, 0, 0, 1094, 1095, 6, 90, 0, 0, 1095, 200, 1, 0, 0, 0, 1096, 1097, 5, 93, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 6, 91, 14, 0, 1099, 1100, 6, 91, 14, 0, 1100, 202, 1, 0, 0, 0, 1101, 1105, 3, 85, 33, 0, 1102, 1104, 3, 101, 41, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1107, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1118, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1108, 1111, 3, 99, 40, 0, 1109, 1111, 3, 93, 37, 0, 1110, 1108, 1, 0, 0, 0, 1110, 1109, 1, 0, 0, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1114, 3, 101, 41, 0, 1113, 1112, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1118, 1, 0, 0, 0, 1117, 1101, 1, 0, 0, 0, 1117, 1110, 1, 0, 0, 0, 1118, 204, 1, 0, 0, 0, 1119, 1121, 3, 95, 38, 0, 1120, 1122, 3, 97, 39, 0, 1121, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 3, 95, 38, 0, 1126, 206, 1, 0, 0, 0, 1127, 1128, 3, 205, 93, 0, 1128, 208, 1, 0, 0, 0, 1129, 1130, 3, 75, 28, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 6, 95, 13, 0, 1132, 210, 1, 0, 0, 0, 1133, 1134, 3, 77, 29, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 6, 96, 13, 0, 1136, 212, 1, 0, 0, 0, 1137, 1138, 3, 79, 30, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 6, 97, 13, 0, 1140, 214, 1, 0, 0, 0, 1141, 1142, 3, 199, 90, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1144, 6, 98, 18, 0, 1144, 1145, 6, 98, 19, 0, 1145, 216, 1, 0, 0, 0, 1146, 1147, 3, 81, 31, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 6, 99, 20, 0, 1149, 1150, 6, 99, 14, 0, 1150, 218, 1, 0, 0, 0, 1151, 1152, 3, 79, 30, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 6, 100, 13, 0, 1154, 220, 1, 0, 0, 0, 1155, 1156, 3, 75, 28, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 101, 13, 0, 1158, 222, 1, 0, 0, 0, 1159, 1160, 3, 77, 29, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 6, 102, 13, 0, 1162, 224, 1, 0, 0, 0, 1163, 1164, 3, 81, 31, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 6, 103, 20, 0, 1166, 1167, 6, 103, 14, 0, 1167, 226, 1, 0, 0, 0, 1168, 1169, 3, 199, 90, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 6, 104, 18, 0, 1171, 228, 1, 0, 0, 0, 1172, 1173, 3, 201, 91, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1175, 6, 105, 21, 0, 1175, 230, 1, 0, 0, 0, 1176, 1177, 3, 125, 53, 0, 1177, 1178, 1, 0, 0, 0, 1178, 1179, 6, 106, 22, 0, 1179, 232, 1, 0, 0, 0, 1180, 1181, 3, 127, 54, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 6, 107, 23, 0, 1183, 234, 1, 0, 0, 0, 1184, 1185, 3, 121, 51, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1187, 6, 108, 24, 0, 1187, 236, 1, 0, 0, 0, 1188, 1189, 7, 16, 0, 0, 1189, 1190, 7, 3, 0, 0, 1190, 1191, 7, 5, 0, 0, 1191, 1192, 7, 12, 0, 0, 1192, 1193, 7, 0, 0, 0, 1193, 1194, 7, 12, 0, 0, 1194, 1195, 7, 5, 0, 0, 1195, 1196, 7, 12, 0, 0, 1196, 238, 1, 0, 0, 0, 1197, 1201, 8, 32, 0, 0, 1198, 1199, 5, 47, 0, 0, 1199, 1201, 8, 33, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1201, 240, 1, 0, 0, 0, 1202, 1204, 3, 239, 110, 0, 1203, 1202, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 242, 1, 0, 0, 0, 1207, 1208, 3, 241, 111, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 6, 112, 25, 0, 1210, 244, 1, 0, 0, 0, 1211, 1212, 3, 103, 42, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 6, 113, 26, 0, 1214, 246, 1, 0, 0, 0, 1215, 1216, 3, 75, 28, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 6, 114, 13, 0, 1218, 248, 1, 0, 0, 0, 1219, 1220, 3, 77, 29, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 6, 115, 13, 0, 1222, 250, 1, 0, 0, 0, 1223, 1224, 3, 79, 30, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 6, 116, 13, 0, 1226, 252, 1, 0, 0, 0, 1227, 1228, 3, 81, 31, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 6, 117, 20, 0, 1230, 1231, 6, 117, 14, 0, 1231, 254, 1, 0, 0, 0, 1232, 1233, 3, 131, 56, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 6, 118, 27, 0, 1235, 256, 1, 0, 0, 0, 1236, 1237, 3, 127, 54, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 6, 119, 23, 0, 1239, 258, 1, 0, 0, 0, 1240, 1241, 3, 155, 68, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 6, 120, 28, 0, 1243, 260, 1, 0, 0, 0, 1244, 1245, 3, 197, 89, 0, 1245, 1246, 1, 0, 0, 0, 1246, 1247, 6, 121, 29, 0, 1247, 262, 1, 0, 0, 0, 1248, 1253, 3, 85, 33, 0, 1249, 1253, 3, 83, 32, 0, 1250, 1253, 3, 99, 40, 0, 1251, 1253, 3, 181, 81, 0, 1252, 1248, 1, 0, 0, 0, 1252, 1249, 1, 0, 0, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 264, 1, 0, 0, 0, 1254, 1257, 3, 85, 33, 0, 1255, 1257, 3, 181, 81, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 1261, 1, 0, 0, 0, 1258, 1260, 3, 263, 122, 0, 1259, 1258, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1274, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1267, 3, 99, 40, 0, 1265, 1267, 3, 93, 37, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1265, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 263, 122, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1256, 1, 0, 0, 0, 1273, 1266, 1, 0, 0, 0, 1274, 266, 1, 0, 0, 0, 1275, 1278, 3, 265, 123, 0, 1276, 1278, 3, 205, 93, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 268, 1, 0, 0, 0, 1281, 1282, 3, 75, 28, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 6, 125, 13, 0, 1284, 270, 1, 0, 0, 0, 1285, 1286, 3, 77, 29, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1288, 6, 126, 13, 0, 1288, 272, 1, 0, 0, 0, 1289, 1290, 3, 79, 30, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 6, 127, 13, 0, 1292, 274, 1, 0, 0, 0, 1293, 1294, 3, 81, 31, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 6, 128, 20, 0, 1296, 1297, 6, 128, 14, 0, 1297, 276, 1, 0, 0, 0, 1298, 1299, 3, 121, 51, 0, 1299, 1300, 1, 0, 0, 0, 1300, 1301, 6, 129, 24, 0, 1301, 278, 1, 0, 0, 0, 1302, 1303, 3, 127, 54, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 130, 23, 0, 1305, 280, 1, 0, 0, 0, 1306, 1307, 3, 131, 56, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 6, 131, 27, 0, 1309, 282, 1, 0, 0, 0, 1310, 1311, 3, 155, 68, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 6, 132, 28, 0, 1313, 284, 1, 0, 0, 0, 1314, 1315, 3, 197, 89, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 6, 133, 29, 0, 1317, 286, 1, 0, 0, 0, 1318, 1319, 3, 115, 48, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 6, 134, 30, 0, 1321, 288, 1, 0, 0, 0, 1322, 1323, 3, 267, 124, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 6, 135, 31, 0, 1325, 290, 1, 0, 0, 0, 1326, 1327, 3, 75, 28, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 6, 136, 13, 0, 1329, 292, 1, 0, 0, 0, 1330, 1331, 3, 77, 29, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 6, 137, 13, 0, 1333, 294, 1, 0, 0, 0, 1334, 1335, 3, 79, 30, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 6, 138, 13, 0, 1337, 296, 1, 0, 0, 0, 1338, 1339, 3, 81, 31, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 6, 139, 20, 0, 1341, 1342, 6, 139, 14, 0, 1342, 298, 1, 0, 0, 0, 1343, 1344, 3, 199, 90, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1346, 6, 140, 18, 0, 1346, 1347, 6, 140, 32, 0, 1347, 300, 1, 0, 0, 0, 1348, 1349, 3, 111, 46, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1351, 6, 141, 33, 0, 1351, 1352, 6, 141, 34, 0, 1352, 302, 1, 0, 0, 0, 1353, 1354, 3, 113, 47, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 6, 142, 35, 0, 1356, 1357, 6, 142, 34, 0, 1357, 304, 1, 0, 0, 0, 1358, 1359, 8, 34, 0, 0, 1359, 306, 1, 0, 0, 0, 1360, 1362, 3, 305, 143, 0, 1361, 1360, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1361, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1366, 3, 125, 53, 0, 1366, 1368, 1, 0, 0, 0, 1367, 1361, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1370, 1, 0, 0, 0, 1369, 1371, 3, 305, 143, 0, 1370, 1369, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 308, 1, 0, 0, 0, 1374, 1375, 3, 307, 144, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 6, 145, 36, 0, 1377, 310, 1, 0, 0, 0, 1378, 1379, 3, 75, 28, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1381, 6, 146, 13, 0, 1381, 312, 1, 0, 0, 0, 1382, 1383, 3, 77, 29, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 6, 147, 13, 0, 1385, 314, 1, 0, 0, 0, 1386, 1387, 3, 79, 30, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 6, 148, 13, 0, 1389, 316, 1, 0, 0, 0, 1390, 1391, 3, 81, 31, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 6, 149, 20, 0, 1393, 1394, 6, 149, 14, 0, 1394, 1395, 6, 149, 14, 0, 1395, 318, 1, 0, 0, 0, 1396, 1397, 3, 121, 51, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 150, 24, 0, 1399, 320, 1, 0, 0, 0, 1400, 1401, 3, 127, 54, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 151, 23, 0, 1403, 322, 1, 0, 0, 0, 1404, 1405, 3, 131, 56, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 152, 27, 0, 1407, 324, 1, 0, 0, 0, 1408, 1409, 3, 113, 47, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 153, 35, 0, 1411, 326, 1, 0, 0, 0, 1412, 1413, 3, 267, 124, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 154, 31, 0, 1415, 328, 1, 0, 0, 0, 1416, 1417, 3, 207, 94, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 6, 155, 37, 0, 1419, 330, 1, 0, 0, 0, 1420, 1421, 3, 155, 68, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 6, 156, 28, 0, 1423, 332, 1, 0, 0, 0, 1424, 1425, 3, 197, 89, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 6, 157, 29, 0, 1427, 334, 1, 0, 0, 0, 1428, 1429, 3, 75, 28, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1431, 6, 158, 13, 0, 1431, 336, 1, 0, 0, 0, 1432, 1433, 3, 77, 29, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 6, 159, 13, 0, 1435, 338, 1, 0, 0, 0, 1436, 1437, 3, 79, 30, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 6, 160, 13, 0, 1439, 340, 1, 0, 0, 0, 1440, 1441, 3, 81, 31, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 161, 20, 0, 1443, 1444, 6, 161, 14, 0, 1444, 342, 1, 0, 0, 0, 1445, 1446, 3, 131, 56, 0, 1446, 1447, 1, 0, 0, 0, 1447, 1448, 6, 162, 27, 0, 1448, 344, 1, 0, 0, 0, 1449, 1450, 3, 155, 68, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 6, 163, 28, 0, 1452, 346, 1, 0, 0, 0, 1453, 1454, 3, 197, 89, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 6, 164, 29, 0, 1456, 348, 1, 0, 0, 0, 1457, 1458, 3, 207, 94, 0, 1458, 1459, 1, 0, 0, 0, 1459, 1460, 6, 165, 37, 0, 1460, 350, 1, 0, 0, 0, 1461, 1462, 3, 203, 92, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1464, 6, 166, 38, 0, 1464, 352, 1, 0, 0, 0, 1465, 1466, 3, 75, 28, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 6, 167, 13, 0, 1468, 354, 1, 0, 0, 0, 1469, 1470, 3, 77, 29, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 6, 168, 13, 0, 1472, 356, 1, 0, 0, 0, 1473, 1474, 3, 79, 30, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 6, 169, 13, 0, 1476, 358, 1, 0, 0, 0, 1477, 1478, 3, 81, 31, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 170, 20, 0, 1480, 1481, 6, 170, 14, 0, 1481, 360, 1, 0, 0, 0, 1482, 1483, 7, 1, 0, 0, 1483, 1484, 7, 9, 0, 0, 1484, 1485, 7, 15, 0, 0, 1485, 1486, 7, 7, 0, 0, 1486, 362, 1, 0, 0, 0, 1487, 1488, 3, 75, 28, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 6, 172, 13, 0, 1490, 364, 1, 0, 0, 0, 1491, 1492, 3, 77, 29, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 6, 173, 13, 0, 1494, 366, 1, 0, 0, 0, 1495, 1496, 3, 79, 30, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 6, 174, 13, 0, 1498, 368, 1, 0, 0, 0, 1499, 1500, 3, 201, 91, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 6, 175, 21, 0, 1502, 1503, 6, 175, 14, 0, 1503, 370, 1, 0, 0, 0, 1504, 1505, 3, 125, 53, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 176, 22, 0, 1507, 372, 1, 0, 0, 0, 1508, 1514, 3, 93, 37, 0, 1509, 1514, 3, 83, 32, 0, 1510, 1514, 3, 131, 56, 0, 1511, 1514, 3, 85, 33, 0, 1512, 1514, 3, 99, 40, 0, 1513, 1508, 1, 0, 0, 0, 1513, 1509, 1, 0, 0, 0, 1513, 1510, 1, 0, 0, 0, 1513, 1511, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 374, 1, 0, 0, 0, 1517, 1518, 3, 75, 28, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 6, 178, 13, 0, 1520, 376, 1, 0, 0, 0, 1521, 1522, 3, 77, 29, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 6, 179, 13, 0, 1524, 378, 1, 0, 0, 0, 1525, 1526, 3, 79, 30, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 6, 180, 13, 0, 1528, 380, 1, 0, 0, 0, 1529, 1530, 3, 81, 31, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 181, 20, 0, 1532, 1533, 6, 181, 14, 0, 1533, 382, 1, 0, 0, 0, 1534, 1535, 3, 125, 53, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 182, 22, 0, 1537, 384, 1, 0, 0, 0, 1538, 1539, 3, 127, 54, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 6, 183, 23, 0, 1541, 386, 1, 0, 0, 0, 1542, 1543, 3, 131, 56, 0, 1543, 1544, 1, 0, 0, 0, 1544, 1545, 6, 184, 27, 0, 1545, 388, 1, 0, 0, 0, 1546, 1547, 3, 111, 46, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 6, 185, 33, 0, 1549, 1550, 6, 185, 39, 0, 1550, 390, 1, 0, 0, 0, 1551, 1552, 3, 241, 111, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 6, 186, 25, 0, 1554, 392, 1, 0, 0, 0, 1555, 1556, 3, 103, 42, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 6, 187, 26, 0, 1558, 394, 1, 0, 0, 0, 1559, 1560, 3, 75, 28, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 6, 188, 13, 0, 1562, 396, 1, 0, 0, 0, 1563, 1564, 3, 77, 29, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 189, 13, 0, 1566, 398, 1, 0, 0, 0, 1567, 1568, 3, 79, 30, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 6, 190, 13, 0, 1570, 400, 1, 0, 0, 0, 1571, 1572, 3, 81, 31, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 191, 20, 0, 1574, 1575, 6, 191, 14, 0, 1575, 1576, 6, 191, 14, 0, 1576, 402, 1, 0, 0, 0, 1577, 1578, 3, 127, 54, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 192, 23, 0, 1580, 404, 1, 0, 0, 0, 1581, 1582, 3, 131, 56, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 6, 193, 27, 0, 1584, 406, 1, 0, 0, 0, 1585, 1586, 3, 267, 124, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 6, 194, 31, 0, 1588, 408, 1, 0, 0, 0, 1589, 1590, 3, 75, 28, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 6, 195, 13, 0, 1592, 410, 1, 0, 0, 0, 1593, 1594, 3, 77, 29, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1596, 6, 196, 13, 0, 1596, 412, 1, 0, 0, 0, 1597, 1598, 3, 79, 30, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 6, 197, 13, 0, 1600, 414, 1, 0, 0, 0, 1601, 1602, 3, 81, 31, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 6, 198, 20, 0, 1604, 1605, 6, 198, 14, 0, 1605, 416, 1, 0, 0, 0, 1606, 1607, 7, 35, 0, 0, 1607, 1608, 7, 7, 0, 0, 1608, 1609, 7, 1, 0, 0, 1609, 1610, 7, 9, 0, 0, 1610, 418, 1, 0, 0, 0, 1611, 1612, 3, 115, 48, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 6, 200, 30, 0, 1614, 420, 1, 0, 0, 0, 1615, 1616, 3, 111, 46, 0, 1616, 1617, 1, 0, 0, 0, 1617, 1618, 6, 201, 33, 0, 1618, 1619, 6, 201, 14, 0, 1619, 1620, 6, 201, 0, 0, 1620, 422, 1, 0, 0, 0, 1621, 1622, 7, 20, 0, 0, 1622, 1623, 7, 2, 0, 0, 1623, 1624, 7, 1, 0, 0, 1624, 1625, 7, 9, 0, 0, 1625, 1626, 7, 17, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1628, 6, 202, 14, 0, 1628, 1629, 6, 202, 0, 0, 1629, 424, 1, 0, 0, 0, 1630, 1631, 3, 241, 111, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 6, 203, 25, 0, 1633, 426, 1, 0, 0, 0, 1634, 1635, 3, 103, 42, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 6, 204, 26, 0, 1637, 428, 1, 0, 0, 0, 1638, 1639, 3, 125, 53, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 6, 205, 22, 0, 1641, 430, 1, 0, 0, 0, 1642, 1643, 3, 203, 92, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1645, 6, 206, 38, 0, 1645, 432, 1, 0, 0, 0, 1646, 1647, 3, 207, 94, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1649, 6, 207, 37, 0, 1649, 434, 1, 0, 0, 0, 1650, 1651, 3, 75, 28, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 6, 208, 13, 0, 1653, 436, 1, 0, 0, 0, 1654, 1655, 3, 77, 29, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1657, 6, 209, 13, 0, 1657, 438, 1, 0, 0, 0, 1658, 1659, 3, 79, 30, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1661, 6, 210, 13, 0, 1661, 440, 1, 0, 0, 0, 1662, 1663, 3, 81, 31, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 6, 211, 20, 0, 1665, 1666, 6, 211, 14, 0, 1666, 442, 1, 0, 0, 0, 1667, 1668, 3, 241, 111, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1670, 6, 212, 25, 0, 1670, 1671, 6, 212, 14, 0, 1671, 1672, 6, 212, 40, 0, 1672, 444, 1, 0, 0, 0, 1673, 1674, 3, 103, 42, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 6, 213, 26, 0, 1676, 1677, 6, 213, 14, 0, 1677, 1678, 6, 213, 40, 0, 1678, 446, 1, 0, 0, 0, 1679, 1680, 3, 75, 28, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1682, 6, 214, 13, 0, 1682, 448, 1, 0, 0, 0, 1683, 1684, 3, 77, 29, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 6, 215, 13, 0, 1686, 450, 1, 0, 0, 0, 1687, 1688, 3, 79, 30, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 6, 216, 13, 0, 1690, 452, 1, 0, 0, 0, 1691, 1692, 3, 125, 53, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 6, 217, 22, 0, 1694, 1695, 6, 217, 14, 0, 1695, 1696, 6, 217, 11, 0, 1696, 454, 1, 0, 0, 0, 1697, 1698, 3, 127, 54, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 6, 218, 23, 0, 1700, 1701, 6, 218, 14, 0, 1701, 1702, 6, 218, 11, 0, 1702, 456, 1, 0, 0, 0, 1703, 1704, 3, 75, 28, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1706, 6, 219, 13, 0, 1706, 458, 1, 0, 0, 0, 1707, 1708, 3, 77, 29, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 220, 13, 0, 1710, 460, 1, 0, 0, 0, 1711, 1712, 3, 79, 30, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 221, 13, 0, 1714, 462, 1, 0, 0, 0, 1715, 1716, 3, 207, 94, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 222, 14, 0, 1718, 1719, 6, 222, 0, 0, 1719, 1720, 6, 222, 37, 0, 1720, 464, 1, 0, 0, 0, 1721, 1722, 3, 203, 92, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 6, 223, 14, 0, 1724, 1725, 6, 223, 0, 0, 1725, 1726, 6, 223, 38, 0, 1726, 466, 1, 0, 0, 0, 1727, 1728, 3, 109, 45, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 6, 224, 14, 0, 1730, 1731, 6, 224, 0, 0, 1731, 1732, 6, 224, 41, 0, 1732, 468, 1, 0, 0, 0, 1733, 1734, 3, 81, 31, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 225, 20, 0, 1736, 1737, 6, 225, 14, 0, 1737, 470, 1, 0, 0, 0, 1738, 1739, 3, 81, 31, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 6, 226, 20, 0, 1741, 1742, 6, 226, 14, 0, 1742, 472, 1, 0, 0, 0, 1743, 1744, 3, 111, 46, 0, 1744, 1745, 1, 0, 0, 0, 1745, 1746, 6, 227, 33, 0, 1746, 474, 1, 0, 0, 0, 1747, 1748, 3, 115, 48, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 6, 228, 30, 0, 1750, 476, 1, 0, 0, 0, 1751, 1752, 3, 131, 56, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1754, 6, 229, 27, 0, 1754, 478, 1, 0, 0, 0, 1755, 1756, 3, 127, 54, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 6, 230, 23, 0, 1758, 480, 1, 0, 0, 0, 1759, 1760, 3, 207, 94, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 6, 231, 37, 0, 1762, 482, 1, 0, 0, 0, 1763, 1764, 3, 203, 92, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 232, 38, 0, 1766, 484, 1, 0, 0, 0, 1767, 1768, 3, 75, 28, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 233, 13, 0, 1770, 486, 1, 0, 0, 0, 1771, 1772, 3, 77, 29, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 6, 234, 13, 0, 1774, 488, 1, 0, 0, 0, 1775, 1776, 3, 79, 30, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1778, 6, 235, 13, 0, 1778, 490, 1, 0, 0, 0, 1779, 1780, 3, 81, 31, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 6, 236, 20, 0, 1782, 1783, 6, 236, 14, 0, 1783, 492, 1, 0, 0, 0, 1784, 1785, 3, 203, 92, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 6, 237, 38, 0, 1787, 494, 1, 0, 0, 0, 1788, 1789, 3, 79, 30, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 6, 238, 13, 0, 1791, 496, 1, 0, 0, 0, 1792, 1793, 3, 75, 28, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 6, 239, 13, 0, 1795, 498, 1, 0, 0, 0, 1796, 1797, 3, 77, 29, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 6, 240, 13, 0, 1799, 500, 1, 0, 0, 0, 1800, 1801, 3, 145, 63, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 6, 241, 42, 0, 1803, 1804, 6, 241, 19, 0, 1804, 502, 1, 0, 0, 0, 1805, 1806, 3, 159, 70, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 6, 242, 43, 0, 1808, 1809, 6, 242, 14, 0, 1809, 504, 1, 0, 0, 0, 1810, 1811, 3, 81, 31, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 6, 243, 20, 0, 1813, 1814, 6, 243, 14, 0, 1814, 506, 1, 0, 0, 0, 1815, 1816, 3, 79, 30, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 6, 244, 13, 0, 1818, 508, 1, 0, 0, 0, 1819, 1820, 3, 75, 28, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 6, 245, 13, 0, 1822, 510, 1, 0, 0, 0, 1823, 1824, 3, 77, 29, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 6, 246, 13, 0, 1826, 512, 1, 0, 0, 0, 69, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 763, 773, 777, 780, 789, 791, 802, 821, 826, 835, 842, 847, 849, 860, 868, 871, 873, 878, 883, 889, 896, 901, 907, 910, 918, 922, 1075, 1080, 1087, 1089, 1105, 1110, 1115, 1117, 1123, 1200, 1205, 1252, 1256, 1261, 1266, 1271, 1273, 1277, 1279, 1363, 1367, 1372, 1513, 1515, 44, 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, 16, 0, 5, 11, 0, 5, 14, 0, 5, 18, 0, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 14, 0, 7, 9, 0, 7, 78, 0, 5, 0, 0, 7, 32, 0, 7, 79, 0, 7, 44, 0, 7, 45, 0, 7, 42, 0, 7, 89, 0, 7, 33, 0, 7, 47, 0, 7, 59, 0, 7, 77, 0, 7, 39, 0, 7, 93, 0, 5, 10, 0, 7, 37, 0, 5, 7, 0, 7, 38, 0, 7, 100, 0, 7, 81, 0, 7, 80, 0, 5, 12, 0, 5, 15, 0, 7, 36, 0, 7, 54, 0, 7, 61, 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 08c17791963c2..6227486b1c2e0 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 @@ -28,33 +28,33 @@ public class EsqlBaseLexer extends LexerConfig { 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_CHANGE_POINT=18, DEV_INLINESTATS=19, DEV_INSIST=20, - DEV_LOOKUP=21, DEV_METRICS=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24, DEV_JOIN_RIGHT=25, - DEV_FORK=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29, WS=30, - PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34, BY=35, - AND=36, ASC=37, ASSIGN=38, CAST_OP=39, COLON=40, COMMA=41, DESC=42, DOT=43, - FALSE=44, FIRST=45, IN=46, IS=47, LAST=48, LIKE=49, LP=50, NOT=51, NULL=52, - NULLS=53, OR=54, PARAM=55, RLIKE=56, RP=57, TRUE=58, EQ=59, CIEQ=60, NEQ=61, - LT=62, LTE=63, GT=64, GTE=65, PLUS=66, MINUS=67, ASTERISK=68, SLASH=69, - PERCENT=70, LEFT_BRACES=71, RIGHT_BRACES=72, NAMED_OR_POSITIONAL_PARAM=73, - OPENING_BRACKET=74, CLOSING_BRACKET=75, UNQUOTED_IDENTIFIER=76, QUOTED_IDENTIFIER=77, - EXPR_LINE_COMMENT=78, EXPR_MULTILINE_COMMENT=79, EXPR_WS=80, EXPLAIN_WS=81, - EXPLAIN_LINE_COMMENT=82, EXPLAIN_MULTILINE_COMMENT=83, METADATA=84, UNQUOTED_SOURCE=85, - FROM_LINE_COMMENT=86, FROM_MULTILINE_COMMENT=87, FROM_WS=88, ID_PATTERN=89, - PROJECT_LINE_COMMENT=90, PROJECT_MULTILINE_COMMENT=91, PROJECT_WS=92, - AS=93, RENAME_LINE_COMMENT=94, RENAME_MULTILINE_COMMENT=95, RENAME_WS=96, - ON=97, WITH=98, ENRICH_POLICY_NAME=99, ENRICH_LINE_COMMENT=100, ENRICH_MULTILINE_COMMENT=101, - ENRICH_WS=102, ENRICH_FIELD_LINE_COMMENT=103, ENRICH_FIELD_MULTILINE_COMMENT=104, - ENRICH_FIELD_WS=105, MVEXPAND_LINE_COMMENT=106, MVEXPAND_MULTILINE_COMMENT=107, - MVEXPAND_WS=108, INFO=109, SHOW_LINE_COMMENT=110, SHOW_MULTILINE_COMMENT=111, - SHOW_WS=112, SETTING=113, SETTING_LINE_COMMENT=114, SETTTING_MULTILINE_COMMENT=115, - SETTING_WS=116, LOOKUP_LINE_COMMENT=117, LOOKUP_MULTILINE_COMMENT=118, - LOOKUP_WS=119, LOOKUP_FIELD_LINE_COMMENT=120, LOOKUP_FIELD_MULTILINE_COMMENT=121, - LOOKUP_FIELD_WS=122, JOIN=123, USING=124, JOIN_LINE_COMMENT=125, JOIN_MULTILINE_COMMENT=126, - JOIN_WS=127, METRICS_LINE_COMMENT=128, METRICS_MULTILINE_COMMENT=129, - METRICS_WS=130, CLOSING_METRICS_LINE_COMMENT=131, CLOSING_METRICS_MULTILINE_COMMENT=132, - CLOSING_METRICS_WS=133, CHANGE_POINT_LINE_COMMENT=134, CHANGE_POINT_MULTILINE_COMMENT=135, - CHANGE_POINT_WS=136, INSIST_WS=137, INSIST_LINE_COMMENT=138, INSIST_MULTILINE_COMMENT=139, - FORK_WS=140, FORK_LINE_COMMENT=141, FORK_MULTILINE_COMMENT=142; + DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_JOIN_FULL=24, DEV_JOIN_LEFT=25, + DEV_JOIN_RIGHT=26, DEV_FORK=27, UNKNOWN_CMD=28, LINE_COMMENT=29, MULTILINE_COMMENT=30, + WS=31, PIPE=32, QUOTED_STRING=33, INTEGER_LITERAL=34, DECIMAL_LITERAL=35, + BY=36, ON=37, WITH=38, AS=39, AND=40, ASC=41, ASSIGN=42, CAST_OP=43, COLON=44, + COMMA=45, DESC=46, DOT=47, FALSE=48, FIRST=49, IN=50, IS=51, LAST=52, + LIKE=53, LP=54, NOT=55, NULL=56, NULLS=57, OR=58, PARAM=59, RLIKE=60, + RP=61, TRUE=62, EQ=63, CIEQ=64, NEQ=65, LT=66, LTE=67, GT=68, GTE=69, + PLUS=70, MINUS=71, ASTERISK=72, SLASH=73, PERCENT=74, LEFT_BRACES=75, + RIGHT_BRACES=76, NAMED_OR_POSITIONAL_PARAM=77, OPENING_BRACKET=78, CLOSING_BRACKET=79, + UNQUOTED_IDENTIFIER=80, QUOTED_IDENTIFIER=81, EXPR_LINE_COMMENT=82, EXPR_MULTILINE_COMMENT=83, + EXPR_WS=84, EXPLAIN_WS=85, EXPLAIN_LINE_COMMENT=86, EXPLAIN_MULTILINE_COMMENT=87, + METADATA=88, UNQUOTED_SOURCE=89, FROM_LINE_COMMENT=90, FROM_MULTILINE_COMMENT=91, + FROM_WS=92, ID_PATTERN=93, PROJECT_LINE_COMMENT=94, PROJECT_MULTILINE_COMMENT=95, + PROJECT_WS=96, RENAME_LINE_COMMENT=97, RENAME_MULTILINE_COMMENT=98, RENAME_WS=99, + ENRICH_POLICY_NAME=100, ENRICH_LINE_COMMENT=101, ENRICH_MULTILINE_COMMENT=102, + ENRICH_WS=103, ENRICH_FIELD_LINE_COMMENT=104, ENRICH_FIELD_MULTILINE_COMMENT=105, + ENRICH_FIELD_WS=106, MVEXPAND_LINE_COMMENT=107, MVEXPAND_MULTILINE_COMMENT=108, + MVEXPAND_WS=109, INFO=110, SHOW_LINE_COMMENT=111, SHOW_MULTILINE_COMMENT=112, + SHOW_WS=113, SETTING=114, SETTING_LINE_COMMENT=115, SETTTING_MULTILINE_COMMENT=116, + SETTING_WS=117, LOOKUP_LINE_COMMENT=118, LOOKUP_MULTILINE_COMMENT=119, + LOOKUP_WS=120, LOOKUP_FIELD_LINE_COMMENT=121, LOOKUP_FIELD_MULTILINE_COMMENT=122, + LOOKUP_FIELD_WS=123, JOIN=124, USING=125, JOIN_LINE_COMMENT=126, JOIN_MULTILINE_COMMENT=127, + JOIN_WS=128, METRICS_LINE_COMMENT=129, METRICS_MULTILINE_COMMENT=130, + METRICS_WS=131, CLOSING_METRICS_LINE_COMMENT=132, CLOSING_METRICS_MULTILINE_COMMENT=133, + CLOSING_METRICS_WS=134, CHANGE_POINT_LINE_COMMENT=135, CHANGE_POINT_MULTILINE_COMMENT=136, + CHANGE_POINT_WS=137, INSIST_WS=138, INSIST_LINE_COMMENT=139, INSIST_MULTILINE_COMMENT=140, + FORK_WS=141, FORK_LINE_COMMENT=142, FORK_MULTILINE_COMMENT=143; 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, @@ -76,35 +76,35 @@ private static String[] makeRuleNames() { "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "DEV_CHANGE_POINT", "DEV_INLINESTATS", "DEV_INSIST", "DEV_LOOKUP", - "DEV_METRICS", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_FORK", - "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", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", - "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "NESTED_WHERE", "NESTED_SORT", - "NESTED_LIMIT", "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", "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", + "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", + "DEV_FORK", "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", "ON", "WITH", + "AS", "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", "NESTED_WHERE", "NESTED_SORT", "NESTED_LIMIT", "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", + "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", "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_PARAM", "RENAME_NAMED_OR_POSITIONAL_PARAM", "RENAME_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", + "ENRICH_OPENING_BRACKET", "ENRICH_ON", "ENRICH_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", @@ -136,16 +136,17 @@ private static String[] makeLiteralNames() { 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, 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, null, null, null, null, "'|'", null, null, + null, "'by'", "'on'", "'with'", "'as'", "'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, null, null, null, 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'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -154,20 +155,20 @@ private static String[] makeSymbolicNames() { null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "DEV_CHANGE_POINT", "DEV_INLINESTATS", "DEV_INSIST", - "DEV_LOOKUP", "DEV_METRICS", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", - "DEV_FORK", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", - "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", + "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", + "DEV_JOIN_RIGHT", "DEV_FORK", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", + "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "BY", "ON", "WITH", "AS", "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", "RENAME_LINE_COMMENT", + "RENAME_MULTILINE_COMMENT", "RENAME_WS", "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", @@ -255,16 +256,18 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { case 21: return DEV_METRICS_sempred((RuleContext)_localctx, predIndex); case 22: - return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); + return DEV_RERANK_sempred((RuleContext)_localctx, predIndex); case 23: - return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); case 24: - return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); case 25: + return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); + case 26: return DEV_FORK_sempred((RuleContext)_localctx, predIndex); - case 83: + case 87: return NESTED_SORT_sempred((RuleContext)_localctx, predIndex); - case 84: + case 88: return NESTED_LIMIT_sempred((RuleContext)_localctx, predIndex); } return true; @@ -304,51 +307,58 @@ private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) { } return true; } - private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 5: return this.isDevVersion(); } return true; } - private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 6: return this.isDevVersion(); } return true; } - private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 7: return this.isDevVersion(); } return true; } - private boolean DEV_FORK_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 8: return this.isDevVersion(); } return true; } - private boolean NESTED_SORT_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_FORK_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 9: return this.isDevVersion(); } return true; } - private boolean NESTED_LIMIT_sempred(RuleContext _localctx, int predIndex) { + private boolean NESTED_SORT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 10: return this.isDevVersion(); } return true; } + private boolean NESTED_LIMIT_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 11: + return this.isDevVersion(); + } + return true; + } public static final String _serializedATN = - "\u0004\u0000\u008e\u0707\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ + "\u0004\u0000\u008f\u0723\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"+ @@ -421,1108 +431,1127 @@ private boolean NESTED_LIMIT_sempred(RuleContext _localctx, int predIndex) { "\u0002\u00ea\u0007\u00ea\u0002\u00eb\u0007\u00eb\u0002\u00ec\u0007\u00ec"+ "\u0002\u00ed\u0007\u00ed\u0002\u00ee\u0007\u00ee\u0002\u00ef\u0007\u00ef"+ "\u0002\u00f0\u0007\u00f0\u0002\u00f1\u0007\u00f1\u0002\u00f2\u0007\u00f2"+ + "\u0002\u00f3\u0007\u00f3\u0002\u00f4\u0007\u00f4\u0002\u00f5\u0007\u00f5"+ + "\u0002\u00f6\u0007\u00f6\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0000"+ "\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\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ + "\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\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\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"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\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"+ - "\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\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\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"+ + "\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\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\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\u0012\u0001\u0012\u0001\u0012\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\u0012"+ - "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013"+ + "\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\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014"+ + "\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\u0014\u0001\u0014\u0001\u0014\u0001\u0015"+ + "\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\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\u0017\u0001\u0018\u0001\u0018\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\u001a\u0004\u001a\u02e8\b\u001a\u000b\u001a\f\u001a"+ - "\u02e9\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+ - "\u001b\u0005\u001b\u02f2\b\u001b\n\u001b\f\u001b\u02f5\t\u001b\u0001\u001b"+ - "\u0003\u001b\u02f8\b\u001b\u0001\u001b\u0003\u001b\u02fb\b\u001b\u0001"+ - "\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+ + "\u0001\u0018\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\u001a"+ + "\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a"+ + "\u0001\u001a\u0001\u001b\u0004\u001b\u02fa\b\u001b\u000b\u001b\f\u001b"+ + "\u02fb\u0001\u001b\u0001\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+ "\u001c\u0005\u001c\u0304\b\u001c\n\u001c\f\u001c\u0307\t\u001c\u0001\u001c"+ - "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0004\u001d"+ - "\u030f\b\u001d\u000b\u001d\f\u001d\u0310\u0001\u001d\u0001\u001d\u0001"+ - "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0001"+ - " \u0001 \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001#\u0001#\u0003#\u0324"+ - "\b#\u0001#\u0004#\u0327\b#\u000b#\f#\u0328\u0001$\u0001$\u0001%\u0001"+ - "%\u0001&\u0001&\u0001&\u0003&\u0332\b&\u0001\'\u0001\'\u0001(\u0001(\u0001"+ - "(\u0003(\u0339\b(\u0001)\u0001)\u0001)\u0005)\u033e\b)\n)\f)\u0341\t)"+ - "\u0001)\u0001)\u0001)\u0001)\u0001)\u0001)\u0005)\u0349\b)\n)\f)\u034c"+ - "\t)\u0001)\u0001)\u0001)\u0001)\u0001)\u0003)\u0353\b)\u0001)\u0003)\u0356"+ - "\b)\u0003)\u0358\b)\u0001*\u0004*\u035b\b*\u000b*\f*\u035c\u0001+\u0004"+ - "+\u0360\b+\u000b+\f+\u0361\u0001+\u0001+\u0005+\u0366\b+\n+\f+\u0369\t"+ - "+\u0001+\u0001+\u0004+\u036d\b+\u000b+\f+\u036e\u0001+\u0004+\u0372\b"+ - "+\u000b+\f+\u0373\u0001+\u0001+\u0005+\u0378\b+\n+\f+\u037b\t+\u0003+"+ - "\u037d\b+\u0001+\u0001+\u0001+\u0001+\u0004+\u0383\b+\u000b+\f+\u0384"+ - "\u0001+\u0001+\u0003+\u0389\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001"+ - "-\u0001-\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u00010\u00010\u0001"+ - "0\u00011\u00011\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u0001"+ - "4\u00014\u00015\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u0001"+ - "9\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"+ - "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001"+ - "C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001E\u0001E\u0001"+ - "E\u0001F\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001"+ - "I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001"+ - "N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001R\u0001"+ - "R\u0001R\u0001S\u0001S\u0001S\u0001S\u0001S\u0001T\u0001T\u0001T\u0001"+ - "T\u0001T\u0001U\u0001U\u0001U\u0003U\u0417\bU\u0001U\u0005U\u041a\bU\n"+ - "U\fU\u041d\tU\u0001U\u0001U\u0004U\u0421\bU\u000bU\fU\u0422\u0003U\u0425"+ - "\bU\u0001V\u0001V\u0001V\u0001V\u0001V\u0001W\u0001W\u0001W\u0001W\u0001"+ - "W\u0001X\u0001X\u0005X\u0433\bX\nX\fX\u0436\tX\u0001X\u0001X\u0003X\u043a"+ - "\bX\u0001X\u0004X\u043d\bX\u000bX\fX\u043e\u0003X\u0441\bX\u0001Y\u0001"+ - "Y\u0004Y\u0445\bY\u000bY\fY\u0446\u0001Y\u0001Y\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`\u0001`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001b\u0001"+ - "b\u0001b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001"+ - "d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001"+ - "g\u0001g\u0001g\u0001g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001"+ - "i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001i\u0001j\u0001j\u0001j\u0003"+ - "j\u0494\bj\u0001k\u0004k\u0497\bk\u000bk\fk\u0498\u0001l\u0001l\u0001"+ - "l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001"+ - "o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001"+ - "q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001"+ - "s\u0001t\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001v\u0001"+ - "v\u0001v\u0001v\u0003v\u04c8\bv\u0001w\u0001w\u0003w\u04cc\bw\u0001w\u0005"+ - "w\u04cf\bw\nw\fw\u04d2\tw\u0001w\u0001w\u0003w\u04d6\bw\u0001w\u0004w"+ - "\u04d9\bw\u000bw\fw\u04da\u0003w\u04dd\bw\u0001x\u0001x\u0004x\u04e1\b"+ - "x\u000bx\fx\u04e2\u0001y\u0001y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001"+ - "z\u0001{\u0001{\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\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\u0087"+ - "\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001\u0088"+ - "\u0001\u0088\u0001\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089"+ - "\u0001\u0089\u0001\u0089\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008a"+ - "\u0001\u008a\u0001\u008a\u0001\u008a\u0001\u008b\u0001\u008b\u0001\u008c"+ - "\u0004\u008c\u0536\b\u008c\u000b\u008c\f\u008c\u0537\u0001\u008c\u0001"+ - "\u008c\u0003\u008c\u053c\b\u008c\u0001\u008c\u0004\u008c\u053f\b\u008c"+ - "\u000b\u008c\f\u008c\u0540\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\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\u0096"+ - "\u0001\u0096\u0001\u0096\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097"+ - "\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\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\u00a3\u0001\u00a3\u0001\u00a3"+ - "\u0001\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a5"+ - "\u0001\u00a5\u0001\u00a5\u0001\u00a5\u0001\u00a6\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\u00aa\u0001\u00aa\u0001\u00aa"+ - "\u0001\u00aa\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\u00ad\u0004\u00ad\u05ce\b\u00ad\u000b\u00ad"+ - "\f\u00ad\u05cf\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\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\u00b9"+ - "\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00ba\u0001\u00ba\u0001\u00ba"+ - "\u0001\u00ba\u0001\u00bb\u0001\u00bb\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\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00c0"+ - "\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c1\u0001\u00c1\u0001\u00c1"+ - "\u0001\u00c1\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2"+ - "\u0001\u00c3\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\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6"+ - "\u0001\u00c6\u0001\u00c6\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\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"+ - "\u0001\u00cf\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0"+ - "\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d1"+ + "\u0003\u001c\u030a\b\u001c\u0001\u001c\u0003\u001c\u030d\b\u001c\u0001"+ + "\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ + "\u001d\u0005\u001d\u0316\b\u001d\n\u001d\f\u001d\u0319\t\u001d\u0001\u001d"+ + "\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0004\u001e"+ + "\u0321\b\u001e\u000b\u001e\f\u001e\u0322\u0001\u001e\u0001\u001e\u0001"+ + "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0001 \u0001 \u0001!\u0001"+ + "!\u0001\"\u0001\"\u0001\"\u0001#\u0001#\u0001$\u0001$\u0003$\u0336\b$"+ + "\u0001$\u0004$\u0339\b$\u000b$\f$\u033a\u0001%\u0001%\u0001&\u0001&\u0001"+ + "\'\u0001\'\u0001\'\u0003\'\u0344\b\'\u0001(\u0001(\u0001)\u0001)\u0001"+ + ")\u0003)\u034b\b)\u0001*\u0001*\u0001*\u0005*\u0350\b*\n*\f*\u0353\t*"+ + "\u0001*\u0001*\u0001*\u0001*\u0001*\u0001*\u0005*\u035b\b*\n*\f*\u035e"+ + "\t*\u0001*\u0001*\u0001*\u0001*\u0001*\u0003*\u0365\b*\u0001*\u0003*\u0368"+ + "\b*\u0003*\u036a\b*\u0001+\u0004+\u036d\b+\u000b+\f+\u036e\u0001,\u0004"+ + ",\u0372\b,\u000b,\f,\u0373\u0001,\u0001,\u0005,\u0378\b,\n,\f,\u037b\t"+ + ",\u0001,\u0001,\u0004,\u037f\b,\u000b,\f,\u0380\u0001,\u0004,\u0384\b"+ + ",\u000b,\f,\u0385\u0001,\u0001,\u0005,\u038a\b,\n,\f,\u038d\t,\u0003,"+ + "\u038f\b,\u0001,\u0001,\u0001,\u0001,\u0004,\u0395\b,\u000b,\f,\u0396"+ + "\u0001,\u0001,\u0003,\u039b\b,\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+ + ".\u0001/\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u0001"+ + "1\u00011\u00011\u00012\u00012\u00012\u00012\u00013\u00013\u00014\u0001"+ + "4\u00014\u00015\u00015\u00016\u00016\u00017\u00017\u00017\u00017\u0001"+ + "7\u00018\u00018\u00019\u00019\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@\u0001@\u0001@\u0001A\u0001A\u0001A\u0001"+ + "A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001"+ + "C\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001"+ + "F\u0001G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001"+ + "I\u0001I\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001L\u0001"+ + "M\u0001M\u0001N\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001"+ + "Q\u0001R\u0001R\u0001S\u0001S\u0001T\u0001T\u0001U\u0001U\u0001V\u0001"+ + "V\u0001V\u0001V\u0001W\u0001W\u0001W\u0001W\u0001W\u0001X\u0001X\u0001"+ + "X\u0001X\u0001X\u0001Y\u0001Y\u0001Y\u0003Y\u0434\bY\u0001Y\u0005Y\u0437"+ + "\bY\nY\fY\u043a\tY\u0001Y\u0001Y\u0004Y\u043e\bY\u000bY\fY\u043f\u0003"+ + "Y\u0442\bY\u0001Z\u0001Z\u0001Z\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001"+ + "[\u0001[\u0001\\\u0001\\\u0005\\\u0450\b\\\n\\\f\\\u0453\t\\\u0001\\\u0001"+ + "\\\u0003\\\u0457\b\\\u0001\\\u0004\\\u045a\b\\\u000b\\\f\\\u045b\u0003"+ + "\\\u045e\b\\\u0001]\u0001]\u0004]\u0462\b]\u000b]\f]\u0463\u0001]\u0001"+ + "]\u0001^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001"+ + "`\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001b\u0001"+ + "c\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001"+ + "e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001"+ + "g\u0001g\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\u0001m\u0001m\u0001m\u0001"+ + "m\u0001n\u0001n\u0001n\u0003n\u04b1\bn\u0001o\u0004o\u04b4\bo\u000bo\f"+ + "o\u04b5\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001"+ + "r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001"+ + "t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001"+ + "v\u0001w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001"+ + "y\u0001y\u0001y\u0001z\u0001z\u0001z\u0001z\u0003z\u04e5\bz\u0001{\u0001"+ + "{\u0003{\u04e9\b{\u0001{\u0005{\u04ec\b{\n{\f{\u04ef\t{\u0001{\u0001{"+ + "\u0003{\u04f3\b{\u0001{\u0004{\u04f6\b{\u000b{\f{\u04f7\u0003{\u04fa\b"+ + "{\u0001|\u0001|\u0004|\u04fe\b|\u000b|\f|\u04ff\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\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"+ + "\u0084\u0001\u0084\u0001\u0084\u0001\u0084\u0001\u0085\u0001\u0085\u0001"+ + "\u0085\u0001\u0085\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\u008b\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+ + "\u008c\u0001\u008c\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001"+ + "\u008d\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001\u008e\u0001"+ + "\u008f\u0001\u008f\u0001\u0090\u0004\u0090\u0552\b\u0090\u000b\u0090\f"+ + "\u0090\u0553\u0001\u0090\u0001\u0090\u0003\u0090\u0558\b\u0090\u0001\u0090"+ + "\u0004\u0090\u055b\b\u0090\u000b\u0090\f\u0090\u055c\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\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\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\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\u00a6\u0001\u00a6\u0001\u00a6\u0001\u00a6\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"+ + "\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\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\u00af\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001"+ + "\u00b0\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b1\u0004"+ + "\u00b1\u05ea\b\u00b1\u000b\u00b1\f\u00b1\u05eb\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\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\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\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\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\u00c6\u0001\u00c7\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\u00c9\u0001\u00c9"+ + "\u0001\u00ca\u0001\u00ca\u0001\u00ca\u0001\u00ca\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\u0001\u00d0"+ + "\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1"+ "\u0001\u00d1\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\u00d5\u0001\u00d6\u0001\u00d6\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\u00da"+ - "\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db"+ - "\u0001\u00db\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc"+ - "\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd"+ - "\u0001\u00de\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\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\u0001\u00e5"+ - "\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6"+ - "\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8"+ - "\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e9\u0001\u00e9"+ - "\u0001\u00e9\u0001\u00e9\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea"+ - "\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00ec\u0001\u00ec"+ - "\u0001\u00ec\u0001\u00ec\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed"+ - "\u0001\u00ed\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ee"+ - "\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00ef\u0001\u00f0"+ - "\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f1\u0001\u00f1\u0001\u00f1"+ - "\u0001\u00f1\u0001\u00f2\u0001\u00f2\u0001\u00f2\u0001\u00f2\u0002\u0305"+ - "\u034a\u0000\u00f3\u0013\u0001\u0015\u0002\u0017\u0003\u0019\u0004\u001b"+ - "\u0005\u001d\u0006\u001f\u0007!\b#\t%\n\'\u000b)\f+\r-\u000e/\u000f1\u0010"+ - "3\u00115\u00127\u00139\u0014;\u0015=\u0016?\u0017A\u0018C\u0019E\u001a"+ - "G\u001bI\u001cK\u001dM\u001eO\u001fQ\u0000S\u0000U\u0000W\u0000Y\u0000"+ - "[\u0000]\u0000_\u0000a\u0000c\u0000e g!i\"k#m$o%q&s\'u(w)y*{+},\u007f"+ - "-\u0081.\u0083/\u00850\u00871\u00892\u008b3\u008d4\u008f5\u00916\u0093"+ - "7\u00958\u00979\u0099:\u009b;\u009d<\u009f=\u00a1>\u00a3?\u00a5@\u00a7"+ - "A\u00a9B\u00abC\u00adD\u00afE\u00b1F\u00b3G\u00b5H\u00b7\u0000\u00b9\u0000"+ - "\u00bb\u0000\u00bdI\u00bfJ\u00c1K\u00c3L\u00c5\u0000\u00c7M\u00c9N\u00cb"+ - "O\u00cdP\u00cf\u0000\u00d1\u0000\u00d3Q\u00d5R\u00d7S\u00d9\u0000\u00db"+ - "\u0000\u00dd\u0000\u00df\u0000\u00e1\u0000\u00e3\u0000\u00e5T\u00e7\u0000"+ - "\u00e9U\u00eb\u0000\u00ed\u0000\u00efV\u00f1W\u00f3X\u00f5\u0000\u00f7"+ - "\u0000\u00f9\u0000\u00fb\u0000\u00fd\u0000\u00ff\u0000\u0101\u0000\u0103"+ - "Y\u0105Z\u0107[\u0109\\\u010b\u0000\u010d\u0000\u010f\u0000\u0111\u0000"+ - "\u0113\u0000\u0115\u0000\u0117]\u0119\u0000\u011b^\u011d_\u011f`\u0121"+ - "\u0000\u0123\u0000\u0125a\u0127b\u0129\u0000\u012bc\u012d\u0000\u012f"+ - "d\u0131e\u0133f\u0135\u0000\u0137\u0000\u0139\u0000\u013b\u0000\u013d"+ - "\u0000\u013f\u0000\u0141\u0000\u0143\u0000\u0145\u0000\u0147g\u0149h\u014b"+ - "i\u014d\u0000\u014f\u0000\u0151\u0000\u0153\u0000\u0155\u0000\u0157\u0000"+ - "\u0159j\u015bk\u015dl\u015f\u0000\u0161m\u0163n\u0165o\u0167p\u0169\u0000"+ - "\u016b\u0000\u016dq\u016fr\u0171s\u0173t\u0175\u0000\u0177\u0000\u0179"+ - "\u0000\u017b\u0000\u017d\u0000\u017f\u0000\u0181\u0000\u0183u\u0185v\u0187"+ - "w\u0189\u0000\u018b\u0000\u018d\u0000\u018f\u0000\u0191x\u0193y\u0195"+ - "z\u0197\u0000\u0199{\u019b\u0000\u019d\u0000\u019f|\u01a1\u0000\u01a3"+ - "\u0000\u01a5\u0000\u01a7\u0000\u01a9\u0000\u01ab}\u01ad~\u01af\u007f\u01b1"+ - "\u0000\u01b3\u0000\u01b5\u0000\u01b7\u0080\u01b9\u0081\u01bb\u0082\u01bd"+ - "\u0000\u01bf\u0000\u01c1\u0083\u01c3\u0084\u01c5\u0085\u01c7\u0000\u01c9"+ - "\u0000\u01cb\u0000\u01cd\u0000\u01cf\u0000\u01d1\u0000\u01d3\u0000\u01d5"+ - "\u0000\u01d7\u0000\u01d9\u0000\u01db\u0000\u01dd\u0086\u01df\u0087\u01e1"+ - "\u0088\u01e3\u0000\u01e5\u0000\u01e7\u0089\u01e9\u008a\u01eb\u008b\u01ed"+ - "\u0000\u01ef\u0000\u01f1\u0000\u01f3\u008c\u01f5\u008d\u01f7\u008e\u0013"+ + "\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4"+ + "\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d5\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\u00d9\u0001\u00d9\u0001\u00da\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\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df"+ + "\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\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\u00e2\u0001\u00e3\u0001\u00e3\u0001\u00e3\u0001\u00e3"+ + "\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5\u0001\u00e5"+ + "\u0001\u00e5\u0001\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e6"+ + "\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8"+ + "\u0001\u00e8\u0001\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9"+ + "\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00ea\u0001\u00eb\u0001\u00eb"+ + "\u0001\u00eb\u0001\u00eb\u0001\u00ec\u0001\u00ec\u0001\u00ec\u0001\u00ec"+ + "\u0001\u00ec\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ed\u0001\u00ee"+ + "\u0001\u00ee\u0001\u00ee\u0001\u00ee\u0001\u00ef\u0001\u00ef\u0001\u00ef"+ + "\u0001\u00ef\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f0\u0001\u00f1"+ + "\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f1\u0001\u00f2\u0001\u00f2"+ + "\u0001\u00f2\u0001\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3"+ + "\u0001\u00f3\u0001\u00f3\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4"+ + "\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f5\u0001\u00f6\u0001\u00f6"+ + "\u0001\u00f6\u0001\u00f6\u0002\u0317\u035c\u0000\u00f7\u0013\u0001\u0015"+ + "\u0002\u0017\u0003\u0019\u0004\u001b\u0005\u001d\u0006\u001f\u0007!\b"+ + "#\t%\n\'\u000b)\f+\r-\u000e/\u000f1\u00103\u00115\u00127\u00139\u0014"+ + ";\u0015=\u0016?\u0017A\u0018C\u0019E\u001aG\u001bI\u001cK\u001dM\u001e"+ + "O\u001fQ S\u0000U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000a\u0000c\u0000"+ + "e\u0000g!i\"k#m$o%q&s\'u(w)y*{+},\u007f-\u0081.\u0083/\u00850\u00871\u0089"+ + "2\u008b3\u008d4\u008f5\u00916\u00937\u00958\u00979\u0099:\u009b;\u009d"+ + "<\u009f=\u00a1>\u00a3?\u00a5@\u00a7A\u00a9B\u00abC\u00adD\u00afE\u00b1"+ + "F\u00b3G\u00b5H\u00b7I\u00b9J\u00bbK\u00bdL\u00bf\u0000\u00c1\u0000\u00c3"+ + "\u0000\u00c5M\u00c7N\u00c9O\u00cbP\u00cd\u0000\u00cfQ\u00d1R\u00d3S\u00d5"+ + "T\u00d7\u0000\u00d9\u0000\u00dbU\u00ddV\u00dfW\u00e1\u0000\u00e3\u0000"+ + "\u00e5\u0000\u00e7\u0000\u00e9\u0000\u00eb\u0000\u00edX\u00ef\u0000\u00f1"+ + "Y\u00f3\u0000\u00f5\u0000\u00f7Z\u00f9[\u00fb\\\u00fd\u0000\u00ff\u0000"+ + "\u0101\u0000\u0103\u0000\u0105\u0000\u0107\u0000\u0109\u0000\u010b]\u010d"+ + "^\u010f_\u0111`\u0113\u0000\u0115\u0000\u0117\u0000\u0119\u0000\u011b"+ + "\u0000\u011d\u0000\u011f\u0000\u0121\u0000\u0123a\u0125b\u0127c\u0129"+ + "\u0000\u012b\u0000\u012d\u0000\u012f\u0000\u0131\u0000\u0133d\u0135\u0000"+ + "\u0137e\u0139f\u013bg\u013d\u0000\u013f\u0000\u0141\u0000\u0143\u0000"+ + "\u0145\u0000\u0147\u0000\u0149\u0000\u014b\u0000\u014d\u0000\u014fh\u0151"+ + "i\u0153j\u0155\u0000\u0157\u0000\u0159\u0000\u015b\u0000\u015d\u0000\u015f"+ + "\u0000\u0161k\u0163l\u0165m\u0167\u0000\u0169n\u016bo\u016dp\u016fq\u0171"+ + "\u0000\u0173\u0000\u0175r\u0177s\u0179t\u017bu\u017d\u0000\u017f\u0000"+ + "\u0181\u0000\u0183\u0000\u0185\u0000\u0187\u0000\u0189\u0000\u018bv\u018d"+ + "w\u018fx\u0191\u0000\u0193\u0000\u0195\u0000\u0197\u0000\u0199y\u019b"+ + "z\u019d{\u019f\u0000\u01a1|\u01a3\u0000\u01a5\u0000\u01a7}\u01a9\u0000"+ + "\u01ab\u0000\u01ad\u0000\u01af\u0000\u01b1\u0000\u01b3~\u01b5\u007f\u01b7"+ + "\u0080\u01b9\u0000\u01bb\u0000\u01bd\u0000\u01bf\u0081\u01c1\u0082\u01c3"+ + "\u0083\u01c5\u0000\u01c7\u0000\u01c9\u0084\u01cb\u0085\u01cd\u0086\u01cf"+ + "\u0000\u01d1\u0000\u01d3\u0000\u01d5\u0000\u01d7\u0000\u01d9\u0000\u01db"+ + "\u0000\u01dd\u0000\u01df\u0000\u01e1\u0000\u01e3\u0000\u01e5\u0087\u01e7"+ + "\u0088\u01e9\u0089\u01eb\u0000\u01ed\u0000\u01ef\u008a\u01f1\u008b\u01f3"+ + "\u008c\u01f5\u0000\u01f7\u0000\u01f9\u0000\u01fb\u008d\u01fd\u008e\u01ff"+ + "\u008f\u0013\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b"+ + "\f\r\u000e\u000f\u0010\u0011\u0012$\u0002\u0000DDdd\u0002\u0000IIii\u0002"+ + "\u0000SSss\u0002\u0000EEee\u0002\u0000CCcc\u0002\u0000TTtt\u0002\u0000"+ + "RRrr\u0002\u0000OOoo\u0002\u0000PPpp\u0002\u0000NNnn\u0002\u0000HHhh\u0002"+ + "\u0000VVvv\u0002\u0000AAaa\u0002\u0000LLll\u0002\u0000XXxx\u0002\u0000"+ + "FFff\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\u000009\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\u073b\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\u0000"+ + "I\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001"+ + "\u0000\u0000\u0000\u0000O\u0001\u0000\u0000\u0000\u0001Q\u0001\u0000\u0000"+ + "\u0000\u0001g\u0001\u0000\u0000\u0000\u0001i\u0001\u0000\u0000\u0000\u0001"+ + "k\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\u0001"+ + "y\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\u00bb\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\u0001\u00c5\u0001"+ + "\u0000\u0000\u0000\u0001\u00c7\u0001\u0000\u0000\u0000\u0001\u00c9\u0001"+ + "\u0000\u0000\u0000\u0001\u00cb\u0001\u0000\u0000\u0000\u0001\u00cf\u0001"+ + "\u0000\u0000\u0000\u0001\u00d1\u0001\u0000\u0000\u0000\u0001\u00d3\u0001"+ + "\u0000\u0000\u0000\u0001\u00d5\u0001\u0000\u0000\u0000\u0002\u00d7\u0001"+ + "\u0000\u0000\u0000\u0002\u00d9\u0001\u0000\u0000\u0000\u0002\u00db\u0001"+ + "\u0000\u0000\u0000\u0002\u00dd\u0001\u0000\u0000\u0000\u0002\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\u0003\u00eb\u0001"+ + "\u0000\u0000\u0000\u0003\u00ed\u0001\u0000\u0000\u0000\u0003\u00f1\u0001"+ + "\u0000\u0000\u0000\u0003\u00f3\u0001\u0000\u0000\u0000\u0003\u00f5\u0001"+ + "\u0000\u0000\u0000\u0003\u00f7\u0001\u0000\u0000\u0000\u0003\u00f9\u0001"+ + "\u0000\u0000\u0000\u0003\u00fb\u0001\u0000\u0000\u0000\u0004\u00fd\u0001"+ + "\u0000\u0000\u0000\u0004\u00ff\u0001\u0000\u0000\u0000\u0004\u0101\u0001"+ + "\u0000\u0000\u0000\u0004\u0103\u0001\u0000\u0000\u0000\u0004\u0105\u0001"+ + "\u0000\u0000\u0000\u0004\u010b\u0001\u0000\u0000\u0000\u0004\u010d\u0001"+ + "\u0000\u0000\u0000\u0004\u010f\u0001\u0000\u0000\u0000\u0004\u0111\u0001"+ + "\u0000\u0000\u0000\u0005\u0113\u0001\u0000\u0000\u0000\u0005\u0115\u0001"+ + "\u0000\u0000\u0000\u0005\u0117\u0001\u0000\u0000\u0000\u0005\u0119\u0001"+ + "\u0000\u0000\u0000\u0005\u011b\u0001\u0000\u0000\u0000\u0005\u011d\u0001"+ + "\u0000\u0000\u0000\u0005\u011f\u0001\u0000\u0000\u0000\u0005\u0121\u0001"+ + "\u0000\u0000\u0000\u0005\u0123\u0001\u0000\u0000\u0000\u0005\u0125\u0001"+ + "\u0000\u0000\u0000\u0005\u0127\u0001\u0000\u0000\u0000\u0006\u0129\u0001"+ + "\u0000\u0000\u0000\u0006\u012b\u0001\u0000\u0000\u0000\u0006\u012d\u0001"+ + "\u0000\u0000\u0000\u0006\u012f\u0001\u0000\u0000\u0000\u0006\u0133\u0001"+ + "\u0000\u0000\u0000\u0006\u0135\u0001\u0000\u0000\u0000\u0006\u0137\u0001"+ + "\u0000\u0000\u0000\u0006\u0139\u0001\u0000\u0000\u0000\u0006\u013b\u0001"+ + "\u0000\u0000\u0000\u0007\u013d\u0001\u0000\u0000\u0000\u0007\u013f\u0001"+ + "\u0000\u0000\u0000\u0007\u0141\u0001\u0000\u0000\u0000\u0007\u0143\u0001"+ + "\u0000\u0000\u0000\u0007\u0145\u0001\u0000\u0000\u0000\u0007\u0147\u0001"+ + "\u0000\u0000\u0000\u0007\u0149\u0001\u0000\u0000\u0000\u0007\u014b\u0001"+ + "\u0000\u0000\u0000\u0007\u014d\u0001\u0000\u0000\u0000\u0007\u014f\u0001"+ + "\u0000\u0000\u0000\u0007\u0151\u0001\u0000\u0000\u0000\u0007\u0153\u0001"+ + "\u0000\u0000\u0000\b\u0155\u0001\u0000\u0000\u0000\b\u0157\u0001\u0000"+ + "\u0000\u0000\b\u0159\u0001\u0000\u0000\u0000\b\u015b\u0001\u0000\u0000"+ + "\u0000\b\u015d\u0001\u0000\u0000\u0000\b\u015f\u0001\u0000\u0000\u0000"+ + "\b\u0161\u0001\u0000\u0000\u0000\b\u0163\u0001\u0000\u0000\u0000\b\u0165"+ + "\u0001\u0000\u0000\u0000\t\u0167\u0001\u0000\u0000\u0000\t\u0169\u0001"+ + "\u0000\u0000\u0000\t\u016b\u0001\u0000\u0000\u0000\t\u016d\u0001\u0000"+ + "\u0000\u0000\t\u016f\u0001\u0000\u0000\u0000\n\u0171\u0001\u0000\u0000"+ + "\u0000\n\u0173\u0001\u0000\u0000\u0000\n\u0175\u0001\u0000\u0000\u0000"+ + "\n\u0177\u0001\u0000\u0000\u0000\n\u0179\u0001\u0000\u0000\u0000\n\u017b"+ + "\u0001\u0000\u0000\u0000\u000b\u017d\u0001\u0000\u0000\u0000\u000b\u017f"+ + "\u0001\u0000\u0000\u0000\u000b\u0181\u0001\u0000\u0000\u0000\u000b\u0183"+ + "\u0001\u0000\u0000\u0000\u000b\u0185\u0001\u0000\u0000\u0000\u000b\u0187"+ + "\u0001\u0000\u0000\u0000\u000b\u0189\u0001\u0000\u0000\u0000\u000b\u018b"+ + "\u0001\u0000\u0000\u0000\u000b\u018d\u0001\u0000\u0000\u0000\u000b\u018f"+ + "\u0001\u0000\u0000\u0000\f\u0191\u0001\u0000\u0000\u0000\f\u0193\u0001"+ + "\u0000\u0000\u0000\f\u0195\u0001\u0000\u0000\u0000\f\u0197\u0001\u0000"+ + "\u0000\u0000\f\u0199\u0001\u0000\u0000\u0000\f\u019b\u0001\u0000\u0000"+ + "\u0000\f\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\r\u01a7\u0001\u0000\u0000\u0000\r\u01a9\u0001"+ + "\u0000\u0000\u0000\r\u01ab\u0001\u0000\u0000\u0000\r\u01ad\u0001\u0000"+ + "\u0000\u0000\r\u01af\u0001\u0000\u0000\u0000\r\u01b1\u0001\u0000\u0000"+ + "\u0000\r\u01b3\u0001\u0000\u0000\u0000\r\u01b5\u0001\u0000\u0000\u0000"+ + "\r\u01b7\u0001\u0000\u0000\u0000\u000e\u01b9\u0001\u0000\u0000\u0000\u000e"+ + "\u01bb\u0001\u0000\u0000\u0000\u000e\u01bd\u0001\u0000\u0000\u0000\u000e"+ + "\u01bf\u0001\u0000\u0000\u0000\u000e\u01c1\u0001\u0000\u0000\u0000\u000e"+ + "\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\u000f\u01d1\u0001\u0000\u0000\u0000\u000f"+ + "\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5\u0001\u0000\u0000\u0000\u0010"+ + "\u01d7\u0001\u0000\u0000\u0000\u0010\u01d9\u0001\u0000\u0000\u0000\u0010"+ + "\u01db\u0001\u0000\u0000\u0000\u0010\u01dd\u0001\u0000\u0000\u0000\u0010"+ + "\u01df\u0001\u0000\u0000\u0000\u0010\u01e1\u0001\u0000\u0000\u0000\u0010"+ + "\u01e3\u0001\u0000\u0000\u0000\u0010\u01e5\u0001\u0000\u0000\u0000\u0010"+ + "\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9\u0001\u0000\u0000\u0000\u0011"+ + "\u01eb\u0001\u0000\u0000\u0000\u0011\u01ed\u0001\u0000\u0000\u0000\u0011"+ + "\u01ef\u0001\u0000\u0000\u0000\u0011\u01f1\u0001\u0000\u0000\u0000\u0011"+ + "\u01f3\u0001\u0000\u0000\u0000\u0012\u01f5\u0001\u0000\u0000\u0000\u0012"+ + "\u01f7\u0001\u0000\u0000\u0000\u0012\u01f9\u0001\u0000\u0000\u0000\u0012"+ + "\u01fb\u0001\u0000\u0000\u0000\u0012\u01fd\u0001\u0000\u0000\u0000\u0012"+ + "\u01ff\u0001\u0000\u0000\u0000\u0013\u0201\u0001\u0000\u0000\u0000\u0015"+ + "\u020b\u0001\u0000\u0000\u0000\u0017\u0212\u0001\u0000\u0000\u0000\u0019"+ + "\u021b\u0001\u0000\u0000\u0000\u001b\u0222\u0001\u0000\u0000\u0000\u001d"+ + "\u022c\u0001\u0000\u0000\u0000\u001f\u0233\u0001\u0000\u0000\u0000!\u023a"+ + "\u0001\u0000\u0000\u0000#\u0241\u0001\u0000\u0000\u0000%\u0249\u0001\u0000"+ + "\u0000\u0000\'\u0255\u0001\u0000\u0000\u0000)\u025e\u0001\u0000\u0000"+ + "\u0000+\u0264\u0001\u0000\u0000\u0000-\u026b\u0001\u0000\u0000\u0000/"+ + "\u0272\u0001\u0000\u0000\u00001\u027a\u0001\u0000\u0000\u00003\u0282\u0001"+ + "\u0000\u0000\u00005\u028b\u0001\u0000\u0000\u00007\u029b\u0001\u0000\u0000"+ + "\u00009\u02aa\u0001\u0000\u0000\u0000;\u02b6\u0001\u0000\u0000\u0000="+ + "\u02c2\u0001\u0000\u0000\u0000?\u02cd\u0001\u0000\u0000\u0000A\u02d7\u0001"+ + "\u0000\u0000\u0000C\u02df\u0001\u0000\u0000\u0000E\u02e7\u0001\u0000\u0000"+ + "\u0000G\u02f0\u0001\u0000\u0000\u0000I\u02f9\u0001\u0000\u0000\u0000K"+ + "\u02ff\u0001\u0000\u0000\u0000M\u0310\u0001\u0000\u0000\u0000O\u0320\u0001"+ + "\u0000\u0000\u0000Q\u0326\u0001\u0000\u0000\u0000S\u032a\u0001\u0000\u0000"+ + "\u0000U\u032c\u0001\u0000\u0000\u0000W\u032e\u0001\u0000\u0000\u0000Y"+ + "\u0331\u0001\u0000\u0000\u0000[\u0333\u0001\u0000\u0000\u0000]\u033c\u0001"+ + "\u0000\u0000\u0000_\u033e\u0001\u0000\u0000\u0000a\u0343\u0001\u0000\u0000"+ + "\u0000c\u0345\u0001\u0000\u0000\u0000e\u034a\u0001\u0000\u0000\u0000g"+ + "\u0369\u0001\u0000\u0000\u0000i\u036c\u0001\u0000\u0000\u0000k\u039a\u0001"+ + "\u0000\u0000\u0000m\u039c\u0001\u0000\u0000\u0000o\u039f\u0001\u0000\u0000"+ + "\u0000q\u03a2\u0001\u0000\u0000\u0000s\u03a7\u0001\u0000\u0000\u0000u"+ + "\u03aa\u0001\u0000\u0000\u0000w\u03ae\u0001\u0000\u0000\u0000y\u03b2\u0001"+ + "\u0000\u0000\u0000{\u03b4\u0001\u0000\u0000\u0000}\u03b7\u0001\u0000\u0000"+ + "\u0000\u007f\u03b9\u0001\u0000\u0000\u0000\u0081\u03bb\u0001\u0000\u0000"+ + "\u0000\u0083\u03c0\u0001\u0000\u0000\u0000\u0085\u03c2\u0001\u0000\u0000"+ + "\u0000\u0087\u03c8\u0001\u0000\u0000\u0000\u0089\u03ce\u0001\u0000\u0000"+ + "\u0000\u008b\u03d1\u0001\u0000\u0000\u0000\u008d\u03d4\u0001\u0000\u0000"+ + "\u0000\u008f\u03d9\u0001\u0000\u0000\u0000\u0091\u03de\u0001\u0000\u0000"+ + "\u0000\u0093\u03e0\u0001\u0000\u0000\u0000\u0095\u03e4\u0001\u0000\u0000"+ + "\u0000\u0097\u03e9\u0001\u0000\u0000\u0000\u0099\u03ef\u0001\u0000\u0000"+ + "\u0000\u009b\u03f2\u0001\u0000\u0000\u0000\u009d\u03f4\u0001\u0000\u0000"+ + "\u0000\u009f\u03fa\u0001\u0000\u0000\u0000\u00a1\u03fc\u0001\u0000\u0000"+ + "\u0000\u00a3\u0401\u0001\u0000\u0000\u0000\u00a5\u0404\u0001\u0000\u0000"+ + "\u0000\u00a7\u0407\u0001\u0000\u0000\u0000\u00a9\u040a\u0001\u0000\u0000"+ + "\u0000\u00ab\u040c\u0001\u0000\u0000\u0000\u00ad\u040f\u0001\u0000\u0000"+ + "\u0000\u00af\u0411\u0001\u0000\u0000\u0000\u00b1\u0414\u0001\u0000\u0000"+ + "\u0000\u00b3\u0416\u0001\u0000\u0000\u0000\u00b5\u0418\u0001\u0000\u0000"+ + "\u0000\u00b7\u041a\u0001\u0000\u0000\u0000\u00b9\u041c\u0001\u0000\u0000"+ + "\u0000\u00bb\u041e\u0001\u0000\u0000\u0000\u00bd\u0420\u0001\u0000\u0000"+ + "\u0000\u00bf\u0422\u0001\u0000\u0000\u0000\u00c1\u0426\u0001\u0000\u0000"+ + "\u0000\u00c3\u042b\u0001\u0000\u0000\u0000\u00c5\u0441\u0001\u0000\u0000"+ + "\u0000\u00c7\u0443\u0001\u0000\u0000\u0000\u00c9\u0448\u0001\u0000\u0000"+ + "\u0000\u00cb\u045d\u0001\u0000\u0000\u0000\u00cd\u045f\u0001\u0000\u0000"+ + "\u0000\u00cf\u0467\u0001\u0000\u0000\u0000\u00d1\u0469\u0001\u0000\u0000"+ + "\u0000\u00d3\u046d\u0001\u0000\u0000\u0000\u00d5\u0471\u0001\u0000\u0000"+ + "\u0000\u00d7\u0475\u0001\u0000\u0000\u0000\u00d9\u047a\u0001\u0000\u0000"+ + "\u0000\u00db\u047f\u0001\u0000\u0000\u0000\u00dd\u0483\u0001\u0000\u0000"+ + "\u0000\u00df\u0487\u0001\u0000\u0000\u0000\u00e1\u048b\u0001\u0000\u0000"+ + "\u0000\u00e3\u0490\u0001\u0000\u0000\u0000\u00e5\u0494\u0001\u0000\u0000"+ + "\u0000\u00e7\u0498\u0001\u0000\u0000\u0000\u00e9\u049c\u0001\u0000\u0000"+ + "\u0000\u00eb\u04a0\u0001\u0000\u0000\u0000\u00ed\u04a4\u0001\u0000\u0000"+ + "\u0000\u00ef\u04b0\u0001\u0000\u0000\u0000\u00f1\u04b3\u0001\u0000\u0000"+ + "\u0000\u00f3\u04b7\u0001\u0000\u0000\u0000\u00f5\u04bb\u0001\u0000\u0000"+ + "\u0000\u00f7\u04bf\u0001\u0000\u0000\u0000\u00f9\u04c3\u0001\u0000\u0000"+ + "\u0000\u00fb\u04c7\u0001\u0000\u0000\u0000\u00fd\u04cb\u0001\u0000\u0000"+ + "\u0000\u00ff\u04d0\u0001\u0000\u0000\u0000\u0101\u04d4\u0001\u0000\u0000"+ + "\u0000\u0103\u04d8\u0001\u0000\u0000\u0000\u0105\u04dc\u0001\u0000\u0000"+ + "\u0000\u0107\u04e4\u0001\u0000\u0000\u0000\u0109\u04f9\u0001\u0000\u0000"+ + "\u0000\u010b\u04fd\u0001\u0000\u0000\u0000\u010d\u0501\u0001\u0000\u0000"+ + "\u0000\u010f\u0505\u0001\u0000\u0000\u0000\u0111\u0509\u0001\u0000\u0000"+ + "\u0000\u0113\u050d\u0001\u0000\u0000\u0000\u0115\u0512\u0001\u0000\u0000"+ + "\u0000\u0117\u0516\u0001\u0000\u0000\u0000\u0119\u051a\u0001\u0000\u0000"+ + "\u0000\u011b\u051e\u0001\u0000\u0000\u0000\u011d\u0522\u0001\u0000\u0000"+ + "\u0000\u011f\u0526\u0001\u0000\u0000\u0000\u0121\u052a\u0001\u0000\u0000"+ + "\u0000\u0123\u052e\u0001\u0000\u0000\u0000\u0125\u0532\u0001\u0000\u0000"+ + "\u0000\u0127\u0536\u0001\u0000\u0000\u0000\u0129\u053a\u0001\u0000\u0000"+ + "\u0000\u012b\u053f\u0001\u0000\u0000\u0000\u012d\u0544\u0001\u0000\u0000"+ + "\u0000\u012f\u0549\u0001\u0000\u0000\u0000\u0131\u054e\u0001\u0000\u0000"+ + "\u0000\u0133\u0557\u0001\u0000\u0000\u0000\u0135\u055e\u0001\u0000\u0000"+ + "\u0000\u0137\u0562\u0001\u0000\u0000\u0000\u0139\u0566\u0001\u0000\u0000"+ + "\u0000\u013b\u056a\u0001\u0000\u0000\u0000\u013d\u056e\u0001\u0000\u0000"+ + "\u0000\u013f\u0574\u0001\u0000\u0000\u0000\u0141\u0578\u0001\u0000\u0000"+ + "\u0000\u0143\u057c\u0001\u0000\u0000\u0000\u0145\u0580\u0001\u0000\u0000"+ + "\u0000\u0147\u0584\u0001\u0000\u0000\u0000\u0149\u0588\u0001\u0000\u0000"+ + "\u0000\u014b\u058c\u0001\u0000\u0000\u0000\u014d\u0590\u0001\u0000\u0000"+ + "\u0000\u014f\u0594\u0001\u0000\u0000\u0000\u0151\u0598\u0001\u0000\u0000"+ + "\u0000\u0153\u059c\u0001\u0000\u0000\u0000\u0155\u05a0\u0001\u0000\u0000"+ + "\u0000\u0157\u05a5\u0001\u0000\u0000\u0000\u0159\u05a9\u0001\u0000\u0000"+ + "\u0000\u015b\u05ad\u0001\u0000\u0000\u0000\u015d\u05b1\u0001\u0000\u0000"+ + "\u0000\u015f\u05b5\u0001\u0000\u0000\u0000\u0161\u05b9\u0001\u0000\u0000"+ + "\u0000\u0163\u05bd\u0001\u0000\u0000\u0000\u0165\u05c1\u0001\u0000\u0000"+ + "\u0000\u0167\u05c5\u0001\u0000\u0000\u0000\u0169\u05ca\u0001\u0000\u0000"+ + "\u0000\u016b\u05cf\u0001\u0000\u0000\u0000\u016d\u05d3\u0001\u0000\u0000"+ + "\u0000\u016f\u05d7\u0001\u0000\u0000\u0000\u0171\u05db\u0001\u0000\u0000"+ + "\u0000\u0173\u05e0\u0001\u0000\u0000\u0000\u0175\u05e9\u0001\u0000\u0000"+ + "\u0000\u0177\u05ed\u0001\u0000\u0000\u0000\u0179\u05f1\u0001\u0000\u0000"+ + "\u0000\u017b\u05f5\u0001\u0000\u0000\u0000\u017d\u05f9\u0001\u0000\u0000"+ + "\u0000\u017f\u05fe\u0001\u0000\u0000\u0000\u0181\u0602\u0001\u0000\u0000"+ + "\u0000\u0183\u0606\u0001\u0000\u0000\u0000\u0185\u060a\u0001\u0000\u0000"+ + "\u0000\u0187\u060f\u0001\u0000\u0000\u0000\u0189\u0613\u0001\u0000\u0000"+ + "\u0000\u018b\u0617\u0001\u0000\u0000\u0000\u018d\u061b\u0001\u0000\u0000"+ + "\u0000\u018f\u061f\u0001\u0000\u0000\u0000\u0191\u0623\u0001\u0000\u0000"+ + "\u0000\u0193\u0629\u0001\u0000\u0000\u0000\u0195\u062d\u0001\u0000\u0000"+ + "\u0000\u0197\u0631\u0001\u0000\u0000\u0000\u0199\u0635\u0001\u0000\u0000"+ + "\u0000\u019b\u0639\u0001\u0000\u0000\u0000\u019d\u063d\u0001\u0000\u0000"+ + "\u0000\u019f\u0641\u0001\u0000\u0000\u0000\u01a1\u0646\u0001\u0000\u0000"+ + "\u0000\u01a3\u064b\u0001\u0000\u0000\u0000\u01a5\u064f\u0001\u0000\u0000"+ + "\u0000\u01a7\u0655\u0001\u0000\u0000\u0000\u01a9\u065e\u0001\u0000\u0000"+ + "\u0000\u01ab\u0662\u0001\u0000\u0000\u0000\u01ad\u0666\u0001\u0000\u0000"+ + "\u0000\u01af\u066a\u0001\u0000\u0000\u0000\u01b1\u066e\u0001\u0000\u0000"+ + "\u0000\u01b3\u0672\u0001\u0000\u0000\u0000\u01b5\u0676\u0001\u0000\u0000"+ + "\u0000\u01b7\u067a\u0001\u0000\u0000\u0000\u01b9\u067e\u0001\u0000\u0000"+ + "\u0000\u01bb\u0683\u0001\u0000\u0000\u0000\u01bd\u0689\u0001\u0000\u0000"+ + "\u0000\u01bf\u068f\u0001\u0000\u0000\u0000\u01c1\u0693\u0001\u0000\u0000"+ + "\u0000\u01c3\u0697\u0001\u0000\u0000\u0000\u01c5\u069b\u0001\u0000\u0000"+ + "\u0000\u01c7\u06a1\u0001\u0000\u0000\u0000\u01c9\u06a7\u0001\u0000\u0000"+ + "\u0000\u01cb\u06ab\u0001\u0000\u0000\u0000\u01cd\u06af\u0001\u0000\u0000"+ + "\u0000\u01cf\u06b3\u0001\u0000\u0000\u0000\u01d1\u06b9\u0001\u0000\u0000"+ + "\u0000\u01d3\u06bf\u0001\u0000\u0000\u0000\u01d5\u06c5\u0001\u0000\u0000"+ + "\u0000\u01d7\u06ca\u0001\u0000\u0000\u0000\u01d9\u06cf\u0001\u0000\u0000"+ + "\u0000\u01db\u06d3\u0001\u0000\u0000\u0000\u01dd\u06d7\u0001\u0000\u0000"+ + "\u0000\u01df\u06db\u0001\u0000\u0000\u0000\u01e1\u06df\u0001\u0000\u0000"+ + "\u0000\u01e3\u06e3\u0001\u0000\u0000\u0000\u01e5\u06e7\u0001\u0000\u0000"+ + "\u0000\u01e7\u06eb\u0001\u0000\u0000\u0000\u01e9\u06ef\u0001\u0000\u0000"+ + "\u0000\u01eb\u06f3\u0001\u0000\u0000\u0000\u01ed\u06f8\u0001\u0000\u0000"+ + "\u0000\u01ef\u06fc\u0001\u0000\u0000\u0000\u01f1\u0700\u0001\u0000\u0000"+ + "\u0000\u01f3\u0704\u0001\u0000\u0000\u0000\u01f5\u0708\u0001\u0000\u0000"+ + "\u0000\u01f7\u070d\u0001\u0000\u0000\u0000\u01f9\u0712\u0001\u0000\u0000"+ + "\u0000\u01fb\u0717\u0001\u0000\u0000\u0000\u01fd\u071b\u0001\u0000\u0000"+ + "\u0000\u01ff\u071f\u0001\u0000\u0000\u0000\u0201\u0202\u0007\u0000\u0000"+ + "\u0000\u0202\u0203\u0007\u0001\u0000\u0000\u0203\u0204\u0007\u0002\u0000"+ + "\u0000\u0204\u0205\u0007\u0002\u0000\u0000\u0205\u0206\u0007\u0003\u0000"+ + "\u0000\u0206\u0207\u0007\u0004\u0000\u0000\u0207\u0208\u0007\u0005\u0000"+ + "\u0000\u0208\u0209\u0001\u0000\u0000\u0000\u0209\u020a\u0006\u0000\u0000"+ + "\u0000\u020a\u0014\u0001\u0000\u0000\u0000\u020b\u020c\u0007\u0000\u0000"+ + "\u0000\u020c\u020d\u0007\u0006\u0000\u0000\u020d\u020e\u0007\u0007\u0000"+ + "\u0000\u020e\u020f\u0007\b\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000"+ + "\u0210\u0211\u0006\u0001\u0001\u0000\u0211\u0016\u0001\u0000\u0000\u0000"+ + "\u0212\u0213\u0007\u0003\u0000\u0000\u0213\u0214\u0007\t\u0000\u0000\u0214"+ + "\u0215\u0007\u0006\u0000\u0000\u0215\u0216\u0007\u0001\u0000\u0000\u0216"+ + "\u0217\u0007\u0004\u0000\u0000\u0217\u0218\u0007\n\u0000\u0000\u0218\u0219"+ + "\u0001\u0000\u0000\u0000\u0219\u021a\u0006\u0002\u0002\u0000\u021a\u0018"+ + "\u0001\u0000\u0000\u0000\u021b\u021c\u0007\u0003\u0000\u0000\u021c\u021d"+ + "\u0007\u000b\u0000\u0000\u021d\u021e\u0007\f\u0000\u0000\u021e\u021f\u0007"+ + "\r\u0000\u0000\u021f\u0220\u0001\u0000\u0000\u0000\u0220\u0221\u0006\u0003"+ + "\u0000\u0000\u0221\u001a\u0001\u0000\u0000\u0000\u0222\u0223\u0007\u0003"+ + "\u0000\u0000\u0223\u0224\u0007\u000e\u0000\u0000\u0224\u0225\u0007\b\u0000"+ + "\u0000\u0225\u0226\u0007\r\u0000\u0000\u0226\u0227\u0007\f\u0000\u0000"+ + "\u0227\u0228\u0007\u0001\u0000\u0000\u0228\u0229\u0007\t\u0000\u0000\u0229"+ + "\u022a\u0001\u0000\u0000\u0000\u022a\u022b\u0006\u0004\u0003\u0000\u022b"+ + "\u001c\u0001\u0000\u0000\u0000\u022c\u022d\u0007\u000f\u0000\u0000\u022d"+ + "\u022e\u0007\u0006\u0000\u0000\u022e\u022f\u0007\u0007\u0000\u0000\u022f"+ + "\u0230\u0007\u0010\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231"+ + "\u0232\u0006\u0005\u0004\u0000\u0232\u001e\u0001\u0000\u0000\u0000\u0233"+ + "\u0234\u0007\u0011\u0000\u0000\u0234\u0235\u0007\u0006\u0000\u0000\u0235"+ + "\u0236\u0007\u0007\u0000\u0000\u0236\u0237\u0007\u0012\u0000\u0000\u0237"+ + "\u0238\u0001\u0000\u0000\u0000\u0238\u0239\u0006\u0006\u0000\u0000\u0239"+ + " \u0001\u0000\u0000\u0000\u023a\u023b\u0007\u0012\u0000\u0000\u023b\u023c"+ + "\u0007\u0003\u0000\u0000\u023c\u023d\u0007\u0003\u0000\u0000\u023d\u023e"+ + "\u0007\b\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240\u0006"+ + "\u0007\u0001\u0000\u0240\"\u0001\u0000\u0000\u0000\u0241\u0242\u0007\r"+ + "\u0000\u0000\u0242\u0243\u0007\u0001\u0000\u0000\u0243\u0244\u0007\u0010"+ + "\u0000\u0000\u0244\u0245\u0007\u0001\u0000\u0000\u0245\u0246\u0007\u0005"+ + "\u0000\u0000\u0246\u0247\u0001\u0000\u0000\u0000\u0247\u0248\u0006\b\u0000"+ + "\u0000\u0248$\u0001\u0000\u0000\u0000\u0249\u024a\u0007\u0010\u0000\u0000"+ + "\u024a\u024b\u0007\u000b\u0000\u0000\u024b\u024c\u0005_\u0000\u0000\u024c"+ + "\u024d\u0007\u0003\u0000\u0000\u024d\u024e\u0007\u000e\u0000\u0000\u024e"+ + "\u024f\u0007\b\u0000\u0000\u024f\u0250\u0007\f\u0000\u0000\u0250\u0251"+ + "\u0007\t\u0000\u0000\u0251\u0252\u0007\u0000\u0000\u0000\u0252\u0253\u0001"+ + "\u0000\u0000\u0000\u0253\u0254\u0006\t\u0005\u0000\u0254&\u0001\u0000"+ + "\u0000\u0000\u0255\u0256\u0007\u0006\u0000\u0000\u0256\u0257\u0007\u0003"+ + "\u0000\u0000\u0257\u0258\u0007\t\u0000\u0000\u0258\u0259\u0007\f\u0000"+ + "\u0000\u0259\u025a\u0007\u0010\u0000\u0000\u025a\u025b\u0007\u0003\u0000"+ + "\u0000\u025b\u025c\u0001\u0000\u0000\u0000\u025c\u025d\u0006\n\u0006\u0000"+ + "\u025d(\u0001\u0000\u0000\u0000\u025e\u025f\u0007\u0006\u0000\u0000\u025f"+ + "\u0260\u0007\u0007\u0000\u0000\u0260\u0261\u0007\u0013\u0000\u0000\u0261"+ + "\u0262\u0001\u0000\u0000\u0000\u0262\u0263\u0006\u000b\u0000\u0000\u0263"+ + "*\u0001\u0000\u0000\u0000\u0264\u0265\u0007\u0002\u0000\u0000\u0265\u0266"+ + "\u0007\n\u0000\u0000\u0266\u0267\u0007\u0007\u0000\u0000\u0267\u0268\u0007"+ + "\u0013\u0000\u0000\u0268\u0269\u0001\u0000\u0000\u0000\u0269\u026a\u0006"+ + "\f\u0007\u0000\u026a,\u0001\u0000\u0000\u0000\u026b\u026c\u0007\u0002"+ + "\u0000\u0000\u026c\u026d\u0007\u0007\u0000\u0000\u026d\u026e\u0007\u0006"+ + "\u0000\u0000\u026e\u026f\u0007\u0005\u0000\u0000\u026f\u0270\u0001\u0000"+ + "\u0000\u0000\u0270\u0271\u0006\r\u0000\u0000\u0271.\u0001\u0000\u0000"+ + "\u0000\u0272\u0273\u0007\u0002\u0000\u0000\u0273\u0274\u0007\u0005\u0000"+ + "\u0000\u0274\u0275\u0007\f\u0000\u0000\u0275\u0276\u0007\u0005\u0000\u0000"+ + "\u0276\u0277\u0007\u0002\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000"+ + "\u0278\u0279\u0006\u000e\u0000\u0000\u02790\u0001\u0000\u0000\u0000\u027a"+ + "\u027b\u0007\u0013\u0000\u0000\u027b\u027c\u0007\n\u0000\u0000\u027c\u027d"+ + "\u0007\u0003\u0000\u0000\u027d\u027e\u0007\u0006\u0000\u0000\u027e\u027f"+ + "\u0007\u0003\u0000\u0000\u027f\u0280\u0001\u0000\u0000\u0000\u0280\u0281"+ + "\u0006\u000f\u0000\u0000\u02812\u0001\u0000\u0000\u0000\u0282\u0283\u0007"+ + "\r\u0000\u0000\u0283\u0284\u0007\u0007\u0000\u0000\u0284\u0285\u0007\u0007"+ + "\u0000\u0000\u0285\u0286\u0007\u0012\u0000\u0000\u0286\u0287\u0007\u0014"+ + "\u0000\u0000\u0287\u0288\u0007\b\u0000\u0000\u0288\u0289\u0001\u0000\u0000"+ + "\u0000\u0289\u028a\u0006\u0010\b\u0000\u028a4\u0001\u0000\u0000\u0000"+ + "\u028b\u028c\u0004\u0011\u0000\u0000\u028c\u028d\u0007\u0004\u0000\u0000"+ + "\u028d\u028e\u0007\n\u0000\u0000\u028e\u028f\u0007\f\u0000\u0000\u028f"+ + "\u0290\u0007\t\u0000\u0000\u0290\u0291\u0007\u0011\u0000\u0000\u0291\u0292"+ + "\u0007\u0003\u0000\u0000\u0292\u0293\u0005_\u0000\u0000\u0293\u0294\u0007"+ + "\b\u0000\u0000\u0294\u0295\u0007\u0007\u0000\u0000\u0295\u0296\u0007\u0001"+ + "\u0000\u0000\u0296\u0297\u0007\t\u0000\u0000\u0297\u0298\u0007\u0005\u0000"+ + "\u0000\u0298\u0299\u0001\u0000\u0000\u0000\u0299\u029a\u0006\u0011\t\u0000"+ + "\u029a6\u0001\u0000\u0000\u0000\u029b\u029c\u0004\u0012\u0001\u0000\u029c"+ + "\u029d\u0007\u0001\u0000\u0000\u029d\u029e\u0007\t\u0000\u0000\u029e\u029f"+ + "\u0007\r\u0000\u0000\u029f\u02a0\u0007\u0001\u0000\u0000\u02a0\u02a1\u0007"+ + "\t\u0000\u0000\u02a1\u02a2\u0007\u0003\u0000\u0000\u02a2\u02a3\u0007\u0002"+ + "\u0000\u0000\u02a3\u02a4\u0007\u0005\u0000\u0000\u02a4\u02a5\u0007\f\u0000"+ + "\u0000\u02a5\u02a6\u0007\u0005\u0000\u0000\u02a6\u02a7\u0007\u0002\u0000"+ + "\u0000\u02a7\u02a8\u0001\u0000\u0000\u0000\u02a8\u02a9\u0006\u0012\u0000"+ + "\u0000\u02a98\u0001\u0000\u0000\u0000\u02aa\u02ab\u0004\u0013\u0002\u0000"+ + "\u02ab\u02ac\u0007\u0001\u0000\u0000\u02ac\u02ad\u0007\t\u0000\u0000\u02ad"+ + "\u02ae\u0007\u0002\u0000\u0000\u02ae\u02af\u0007\u0001\u0000\u0000\u02af"+ + "\u02b0\u0007\u0002\u0000\u0000\u02b0\u02b1\u0007\u0005\u0000\u0000\u02b1"+ + "\u02b2\u0005_\u0000\u0000\u02b2\u02b3\u0005\u8001\uf414\u0000\u0000\u02b3"+ + "\u02b4\u0001\u0000\u0000\u0000\u02b4\u02b5\u0006\u0013\u0001\u0000\u02b5"+ + ":\u0001\u0000\u0000\u0000\u02b6\u02b7\u0004\u0014\u0003\u0000\u02b7\u02b8"+ + "\u0007\r\u0000\u0000\u02b8\u02b9\u0007\u0007\u0000\u0000\u02b9\u02ba\u0007"+ + "\u0007\u0000\u0000\u02ba\u02bb\u0007\u0012\u0000\u0000\u02bb\u02bc\u0007"+ + "\u0014\u0000\u0000\u02bc\u02bd\u0007\b\u0000\u0000\u02bd\u02be\u0005_"+ + "\u0000\u0000\u02be\u02bf\u0005\u8001\uf414\u0000\u0000\u02bf\u02c0\u0001"+ + "\u0000\u0000\u0000\u02c0\u02c1\u0006\u0014\n\u0000\u02c1<\u0001\u0000"+ + "\u0000\u0000\u02c2\u02c3\u0004\u0015\u0004\u0000\u02c3\u02c4\u0007\u0010"+ + "\u0000\u0000\u02c4\u02c5\u0007\u0003\u0000\u0000\u02c5\u02c6\u0007\u0005"+ + "\u0000\u0000\u02c6\u02c7\u0007\u0006\u0000\u0000\u02c7\u02c8\u0007\u0001"+ + "\u0000\u0000\u02c8\u02c9\u0007\u0004\u0000\u0000\u02c9\u02ca\u0007\u0002"+ + "\u0000\u0000\u02ca\u02cb\u0001\u0000\u0000\u0000\u02cb\u02cc\u0006\u0015"+ + "\u000b\u0000\u02cc>\u0001\u0000\u0000\u0000\u02cd\u02ce\u0004\u0016\u0005"+ + "\u0000\u02ce\u02cf\u0007\u0006\u0000\u0000\u02cf\u02d0\u0007\u0003\u0000"+ + "\u0000\u02d0\u02d1\u0007\u0006\u0000\u0000\u02d1\u02d2\u0007\f\u0000\u0000"+ + "\u02d2\u02d3\u0007\t\u0000\u0000\u02d3\u02d4\u0007\u0012\u0000\u0000\u02d4"+ + "\u02d5\u0001\u0000\u0000\u0000\u02d5\u02d6\u0006\u0016\u0000\u0000\u02d6"+ + "@\u0001\u0000\u0000\u0000\u02d7\u02d8\u0004\u0017\u0006\u0000\u02d8\u02d9"+ + "\u0007\u000f\u0000\u0000\u02d9\u02da\u0007\u0014\u0000\u0000\u02da\u02db"+ + "\u0007\r\u0000\u0000\u02db\u02dc\u0007\r\u0000\u0000\u02dc\u02dd\u0001"+ + "\u0000\u0000\u0000\u02dd\u02de\u0006\u0017\b\u0000\u02deB\u0001\u0000"+ + "\u0000\u0000\u02df\u02e0\u0004\u0018\u0007\u0000\u02e0\u02e1\u0007\r\u0000"+ + "\u0000\u02e1\u02e2\u0007\u0003\u0000\u0000\u02e2\u02e3\u0007\u000f\u0000"+ + "\u0000\u02e3\u02e4\u0007\u0005\u0000\u0000\u02e4\u02e5\u0001\u0000\u0000"+ + "\u0000\u02e5\u02e6\u0006\u0018\b\u0000\u02e6D\u0001\u0000\u0000\u0000"+ + "\u02e7\u02e8\u0004\u0019\b\u0000\u02e8\u02e9\u0007\u0006\u0000\u0000\u02e9"+ + "\u02ea\u0007\u0001\u0000\u0000\u02ea\u02eb\u0007\u0011\u0000\u0000\u02eb"+ + "\u02ec\u0007\n\u0000\u0000\u02ec\u02ed\u0007\u0005\u0000\u0000\u02ed\u02ee"+ + "\u0001\u0000\u0000\u0000\u02ee\u02ef\u0006\u0019\b\u0000\u02efF\u0001"+ + "\u0000\u0000\u0000\u02f0\u02f1\u0004\u001a\t\u0000\u02f1\u02f2\u0007\u000f"+ + "\u0000\u0000\u02f2\u02f3\u0007\u0007\u0000\u0000\u02f3\u02f4\u0007\u0006"+ + "\u0000\u0000\u02f4\u02f5\u0007\u0012\u0000\u0000\u02f5\u02f6\u0001\u0000"+ + "\u0000\u0000\u02f6\u02f7\u0006\u001a\f\u0000\u02f7H\u0001\u0000\u0000"+ + "\u0000\u02f8\u02fa\b\u0015\u0000\u0000\u02f9\u02f8\u0001\u0000\u0000\u0000"+ + "\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fb\u02f9\u0001\u0000\u0000\u0000"+ + "\u02fb\u02fc\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000"+ + "\u02fd\u02fe\u0006\u001b\u0000\u0000\u02feJ\u0001\u0000\u0000\u0000\u02ff"+ + "\u0300\u0005/\u0000\u0000\u0300\u0301\u0005/\u0000\u0000\u0301\u0305\u0001"+ + "\u0000\u0000\u0000\u0302\u0304\b\u0016\u0000\u0000\u0303\u0302\u0001\u0000"+ + "\u0000\u0000\u0304\u0307\u0001\u0000\u0000\u0000\u0305\u0303\u0001\u0000"+ + "\u0000\u0000\u0305\u0306\u0001\u0000\u0000\u0000\u0306\u0309\u0001\u0000"+ + "\u0000\u0000\u0307\u0305\u0001\u0000\u0000\u0000\u0308\u030a\u0005\r\u0000"+ + "\u0000\u0309\u0308\u0001\u0000\u0000\u0000\u0309\u030a\u0001\u0000\u0000"+ + "\u0000\u030a\u030c\u0001\u0000\u0000\u0000\u030b\u030d\u0005\n\u0000\u0000"+ + "\u030c\u030b\u0001\u0000\u0000\u0000\u030c\u030d\u0001\u0000\u0000\u0000"+ + "\u030d\u030e\u0001\u0000\u0000\u0000\u030e\u030f\u0006\u001c\r\u0000\u030f"+ + "L\u0001\u0000\u0000\u0000\u0310\u0311\u0005/\u0000\u0000\u0311\u0312\u0005"+ + "*\u0000\u0000\u0312\u0317\u0001\u0000\u0000\u0000\u0313\u0316\u0003M\u001d"+ + "\u0000\u0314\u0316\t\u0000\u0000\u0000\u0315\u0313\u0001\u0000\u0000\u0000"+ + "\u0315\u0314\u0001\u0000\u0000\u0000\u0316\u0319\u0001\u0000\u0000\u0000"+ + "\u0317\u0318\u0001\u0000\u0000\u0000\u0317\u0315\u0001\u0000\u0000\u0000"+ + "\u0318\u031a\u0001\u0000\u0000\u0000\u0319\u0317\u0001\u0000\u0000\u0000"+ + "\u031a\u031b\u0005*\u0000\u0000\u031b\u031c\u0005/\u0000\u0000\u031c\u031d"+ + "\u0001\u0000\u0000\u0000\u031d\u031e\u0006\u001d\r\u0000\u031eN\u0001"+ + "\u0000\u0000\u0000\u031f\u0321\u0007\u0017\u0000\u0000\u0320\u031f\u0001"+ + "\u0000\u0000\u0000\u0321\u0322\u0001\u0000\u0000\u0000\u0322\u0320\u0001"+ + "\u0000\u0000\u0000\u0322\u0323\u0001\u0000\u0000\u0000\u0323\u0324\u0001"+ + "\u0000\u0000\u0000\u0324\u0325\u0006\u001e\r\u0000\u0325P\u0001\u0000"+ + "\u0000\u0000\u0326\u0327\u0005|\u0000\u0000\u0327\u0328\u0001\u0000\u0000"+ + "\u0000\u0328\u0329\u0006\u001f\u000e\u0000\u0329R\u0001\u0000\u0000\u0000"+ + "\u032a\u032b\u0007\u0018\u0000\u0000\u032bT\u0001\u0000\u0000\u0000\u032c"+ + "\u032d\u0007\u0019\u0000\u0000\u032dV\u0001\u0000\u0000\u0000\u032e\u032f"+ + "\u0005\\\u0000\u0000\u032f\u0330\u0007\u001a\u0000\u0000\u0330X\u0001"+ + "\u0000\u0000\u0000\u0331\u0332\b\u001b\u0000\u0000\u0332Z\u0001\u0000"+ + "\u0000\u0000\u0333\u0335\u0007\u0003\u0000\u0000\u0334\u0336\u0007\u001c"+ + "\u0000\u0000\u0335\u0334\u0001\u0000\u0000\u0000\u0335\u0336\u0001\u0000"+ + "\u0000\u0000\u0336\u0338\u0001\u0000\u0000\u0000\u0337\u0339\u0003S \u0000"+ + "\u0338\u0337\u0001\u0000\u0000\u0000\u0339\u033a\u0001\u0000\u0000\u0000"+ + "\u033a\u0338\u0001\u0000\u0000\u0000\u033a\u033b\u0001\u0000\u0000\u0000"+ + "\u033b\\\u0001\u0000\u0000\u0000\u033c\u033d\u0005@\u0000\u0000\u033d"+ + "^\u0001\u0000\u0000\u0000\u033e\u033f\u0005`\u0000\u0000\u033f`\u0001"+ + "\u0000\u0000\u0000\u0340\u0344\b\u001d\u0000\u0000\u0341\u0342\u0005`"+ + "\u0000\u0000\u0342\u0344\u0005`\u0000\u0000\u0343\u0340\u0001\u0000\u0000"+ + "\u0000\u0343\u0341\u0001\u0000\u0000\u0000\u0344b\u0001\u0000\u0000\u0000"+ + "\u0345\u0346\u0005_\u0000\u0000\u0346d\u0001\u0000\u0000\u0000\u0347\u034b"+ + "\u0003U!\u0000\u0348\u034b\u0003S \u0000\u0349\u034b\u0003c(\u0000\u034a"+ + "\u0347\u0001\u0000\u0000\u0000\u034a\u0348\u0001\u0000\u0000\u0000\u034a"+ + "\u0349\u0001\u0000\u0000\u0000\u034bf\u0001\u0000\u0000\u0000\u034c\u0351"+ + "\u0005\"\u0000\u0000\u034d\u0350\u0003W\"\u0000\u034e\u0350\u0003Y#\u0000"+ + "\u034f\u034d\u0001\u0000\u0000\u0000\u034f\u034e\u0001\u0000\u0000\u0000"+ + "\u0350\u0353\u0001\u0000\u0000\u0000\u0351\u034f\u0001\u0000\u0000\u0000"+ + "\u0351\u0352\u0001\u0000\u0000\u0000\u0352\u0354\u0001\u0000\u0000\u0000"+ + "\u0353\u0351\u0001\u0000\u0000\u0000\u0354\u036a\u0005\"\u0000\u0000\u0355"+ + "\u0356\u0005\"\u0000\u0000\u0356\u0357\u0005\"\u0000\u0000\u0357\u0358"+ + "\u0005\"\u0000\u0000\u0358\u035c\u0001\u0000\u0000\u0000\u0359\u035b\b"+ + "\u0016\u0000\u0000\u035a\u0359\u0001\u0000\u0000\u0000\u035b\u035e\u0001"+ + "\u0000\u0000\u0000\u035c\u035d\u0001\u0000\u0000\u0000\u035c\u035a\u0001"+ + "\u0000\u0000\u0000\u035d\u035f\u0001\u0000\u0000\u0000\u035e\u035c\u0001"+ + "\u0000\u0000\u0000\u035f\u0360\u0005\"\u0000\u0000\u0360\u0361\u0005\""+ + "\u0000\u0000\u0361\u0362\u0005\"\u0000\u0000\u0362\u0364\u0001\u0000\u0000"+ + "\u0000\u0363\u0365\u0005\"\u0000\u0000\u0364\u0363\u0001\u0000\u0000\u0000"+ + "\u0364\u0365\u0001\u0000\u0000\u0000\u0365\u0367\u0001\u0000\u0000\u0000"+ + "\u0366\u0368\u0005\"\u0000\u0000\u0367\u0366\u0001\u0000\u0000\u0000\u0367"+ + "\u0368\u0001\u0000\u0000\u0000\u0368\u036a\u0001\u0000\u0000\u0000\u0369"+ + "\u034c\u0001\u0000\u0000\u0000\u0369\u0355\u0001\u0000\u0000\u0000\u036a"+ + "h\u0001\u0000\u0000\u0000\u036b\u036d\u0003S \u0000\u036c\u036b\u0001"+ + "\u0000\u0000\u0000\u036d\u036e\u0001\u0000\u0000\u0000\u036e\u036c\u0001"+ + "\u0000\u0000\u0000\u036e\u036f\u0001\u0000\u0000\u0000\u036fj\u0001\u0000"+ + "\u0000\u0000\u0370\u0372\u0003S \u0000\u0371\u0370\u0001\u0000\u0000\u0000"+ + "\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0371\u0001\u0000\u0000\u0000"+ + "\u0373\u0374\u0001\u0000\u0000\u0000\u0374\u0375\u0001\u0000\u0000\u0000"+ + "\u0375\u0379\u0003\u00838\u0000\u0376\u0378\u0003S \u0000\u0377\u0376"+ + "\u0001\u0000\u0000\u0000\u0378\u037b\u0001\u0000\u0000\u0000\u0379\u0377"+ + "\u0001\u0000\u0000\u0000\u0379\u037a\u0001\u0000\u0000\u0000\u037a\u039b"+ + "\u0001\u0000\u0000\u0000\u037b\u0379\u0001\u0000\u0000\u0000\u037c\u037e"+ + "\u0003\u00838\u0000\u037d\u037f\u0003S \u0000\u037e\u037d\u0001\u0000"+ + "\u0000\u0000\u037f\u0380\u0001\u0000\u0000\u0000\u0380\u037e\u0001\u0000"+ + "\u0000\u0000\u0380\u0381\u0001\u0000\u0000\u0000\u0381\u039b\u0001\u0000"+ + "\u0000\u0000\u0382\u0384\u0003S \u0000\u0383\u0382\u0001\u0000\u0000\u0000"+ + "\u0384\u0385\u0001\u0000\u0000\u0000\u0385\u0383\u0001\u0000\u0000\u0000"+ + "\u0385\u0386\u0001\u0000\u0000\u0000\u0386\u038e\u0001\u0000\u0000\u0000"+ + "\u0387\u038b\u0003\u00838\u0000\u0388\u038a\u0003S \u0000\u0389\u0388"+ + "\u0001\u0000\u0000\u0000\u038a\u038d\u0001\u0000\u0000\u0000\u038b\u0389"+ + "\u0001\u0000\u0000\u0000\u038b\u038c\u0001\u0000\u0000\u0000\u038c\u038f"+ + "\u0001\u0000\u0000\u0000\u038d\u038b\u0001\u0000\u0000\u0000\u038e\u0387"+ + "\u0001\u0000\u0000\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f\u0390"+ + "\u0001\u0000\u0000\u0000\u0390\u0391\u0003[$\u0000\u0391\u039b\u0001\u0000"+ + "\u0000\u0000\u0392\u0394\u0003\u00838\u0000\u0393\u0395\u0003S \u0000"+ + "\u0394\u0393\u0001\u0000\u0000\u0000\u0395\u0396\u0001\u0000\u0000\u0000"+ + "\u0396\u0394\u0001\u0000\u0000\u0000\u0396\u0397\u0001\u0000\u0000\u0000"+ + "\u0397\u0398\u0001\u0000\u0000\u0000\u0398\u0399\u0003[$\u0000\u0399\u039b"+ + "\u0001\u0000\u0000\u0000\u039a\u0371\u0001\u0000\u0000\u0000\u039a\u037c"+ + "\u0001\u0000\u0000\u0000\u039a\u0383\u0001\u0000\u0000\u0000\u039a\u0392"+ + "\u0001\u0000\u0000\u0000\u039bl\u0001\u0000\u0000\u0000\u039c\u039d\u0007"+ + "\u001e\u0000\u0000\u039d\u039e\u0007\u001f\u0000\u0000\u039en\u0001\u0000"+ + "\u0000\u0000\u039f\u03a0\u0007\u0007\u0000\u0000\u03a0\u03a1\u0007\t\u0000"+ + "\u0000\u03a1p\u0001\u0000\u0000\u0000\u03a2\u03a3\u0007\u0013\u0000\u0000"+ + "\u03a3\u03a4\u0007\u0001\u0000\u0000\u03a4\u03a5\u0007\u0005\u0000\u0000"+ + "\u03a5\u03a6\u0007\n\u0000\u0000\u03a6r\u0001\u0000\u0000\u0000\u03a7"+ + "\u03a8\u0007\f\u0000\u0000\u03a8\u03a9\u0007\u0002\u0000\u0000\u03a9t"+ + "\u0001\u0000\u0000\u0000\u03aa\u03ab\u0007\f\u0000\u0000\u03ab\u03ac\u0007"+ + "\t\u0000\u0000\u03ac\u03ad\u0007\u0000\u0000\u0000\u03adv\u0001\u0000"+ + "\u0000\u0000\u03ae\u03af\u0007\f\u0000\u0000\u03af\u03b0\u0007\u0002\u0000"+ + "\u0000\u03b0\u03b1\u0007\u0004\u0000\u0000\u03b1x\u0001\u0000\u0000\u0000"+ + "\u03b2\u03b3\u0005=\u0000\u0000\u03b3z\u0001\u0000\u0000\u0000\u03b4\u03b5"+ + "\u0005:\u0000\u0000\u03b5\u03b6\u0005:\u0000\u0000\u03b6|\u0001\u0000"+ + "\u0000\u0000\u03b7\u03b8\u0005:\u0000\u0000\u03b8~\u0001\u0000\u0000\u0000"+ + "\u03b9\u03ba\u0005,\u0000\u0000\u03ba\u0080\u0001\u0000\u0000\u0000\u03bb"+ + "\u03bc\u0007\u0000\u0000\u0000\u03bc\u03bd\u0007\u0003\u0000\u0000\u03bd"+ + "\u03be\u0007\u0002\u0000\u0000\u03be\u03bf\u0007\u0004\u0000\u0000\u03bf"+ + "\u0082\u0001\u0000\u0000\u0000\u03c0\u03c1\u0005.\u0000\u0000\u03c1\u0084"+ + "\u0001\u0000\u0000\u0000\u03c2\u03c3\u0007\u000f\u0000\u0000\u03c3\u03c4"+ + "\u0007\f\u0000\u0000\u03c4\u03c5\u0007\r\u0000\u0000\u03c5\u03c6\u0007"+ + "\u0002\u0000\u0000\u03c6\u03c7\u0007\u0003\u0000\u0000\u03c7\u0086\u0001"+ + "\u0000\u0000\u0000\u03c8\u03c9\u0007\u000f\u0000\u0000\u03c9\u03ca\u0007"+ + "\u0001\u0000\u0000\u03ca\u03cb\u0007\u0006\u0000\u0000\u03cb\u03cc\u0007"+ + "\u0002\u0000\u0000\u03cc\u03cd\u0007\u0005\u0000\u0000\u03cd\u0088\u0001"+ + "\u0000\u0000\u0000\u03ce\u03cf\u0007\u0001\u0000\u0000\u03cf\u03d0\u0007"+ + "\t\u0000\u0000\u03d0\u008a\u0001\u0000\u0000\u0000\u03d1\u03d2\u0007\u0001"+ + "\u0000\u0000\u03d2\u03d3\u0007\u0002\u0000\u0000\u03d3\u008c\u0001\u0000"+ + "\u0000\u0000\u03d4\u03d5\u0007\r\u0000\u0000\u03d5\u03d6\u0007\f\u0000"+ + "\u0000\u03d6\u03d7\u0007\u0002\u0000\u0000\u03d7\u03d8\u0007\u0005\u0000"+ + "\u0000\u03d8\u008e\u0001\u0000\u0000\u0000\u03d9\u03da\u0007\r\u0000\u0000"+ + "\u03da\u03db\u0007\u0001\u0000\u0000\u03db\u03dc\u0007\u0012\u0000\u0000"+ + "\u03dc\u03dd\u0007\u0003\u0000\u0000\u03dd\u0090\u0001\u0000\u0000\u0000"+ + "\u03de\u03df\u0005(\u0000\u0000\u03df\u0092\u0001\u0000\u0000\u0000\u03e0"+ + "\u03e1\u0007\t\u0000\u0000\u03e1\u03e2\u0007\u0007\u0000\u0000\u03e2\u03e3"+ + "\u0007\u0005\u0000\u0000\u03e3\u0094\u0001\u0000\u0000\u0000\u03e4\u03e5"+ + "\u0007\t\u0000\u0000\u03e5\u03e6\u0007\u0014\u0000\u0000\u03e6\u03e7\u0007"+ + "\r\u0000\u0000\u03e7\u03e8\u0007\r\u0000\u0000\u03e8\u0096\u0001\u0000"+ + "\u0000\u0000\u03e9\u03ea\u0007\t\u0000\u0000\u03ea\u03eb\u0007\u0014\u0000"+ + "\u0000\u03eb\u03ec\u0007\r\u0000\u0000\u03ec\u03ed\u0007\r\u0000\u0000"+ + "\u03ed\u03ee\u0007\u0002\u0000\u0000\u03ee\u0098\u0001\u0000\u0000\u0000"+ + "\u03ef\u03f0\u0007\u0007\u0000\u0000\u03f0\u03f1\u0007\u0006\u0000\u0000"+ + "\u03f1\u009a\u0001\u0000\u0000\u0000\u03f2\u03f3\u0005?\u0000\u0000\u03f3"+ + "\u009c\u0001\u0000\u0000\u0000\u03f4\u03f5\u0007\u0006\u0000\u0000\u03f5"+ + "\u03f6\u0007\r\u0000\u0000\u03f6\u03f7\u0007\u0001\u0000\u0000\u03f7\u03f8"+ + "\u0007\u0012\u0000\u0000\u03f8\u03f9\u0007\u0003\u0000\u0000\u03f9\u009e"+ + "\u0001\u0000\u0000\u0000\u03fa\u03fb\u0005)\u0000\u0000\u03fb\u00a0\u0001"+ + "\u0000\u0000\u0000\u03fc\u03fd\u0007\u0005\u0000\u0000\u03fd\u03fe\u0007"+ + "\u0006\u0000\u0000\u03fe\u03ff\u0007\u0014\u0000\u0000\u03ff\u0400\u0007"+ + "\u0003\u0000\u0000\u0400\u00a2\u0001\u0000\u0000\u0000\u0401\u0402\u0005"+ + "=\u0000\u0000\u0402\u0403\u0005=\u0000\u0000\u0403\u00a4\u0001\u0000\u0000"+ + "\u0000\u0404\u0405\u0005=\u0000\u0000\u0405\u0406\u0005~\u0000\u0000\u0406"+ + "\u00a6\u0001\u0000\u0000\u0000\u0407\u0408\u0005!\u0000\u0000\u0408\u0409"+ + "\u0005=\u0000\u0000\u0409\u00a8\u0001\u0000\u0000\u0000\u040a\u040b\u0005"+ + "<\u0000\u0000\u040b\u00aa\u0001\u0000\u0000\u0000\u040c\u040d\u0005<\u0000"+ + "\u0000\u040d\u040e\u0005=\u0000\u0000\u040e\u00ac\u0001\u0000\u0000\u0000"+ + "\u040f\u0410\u0005>\u0000\u0000\u0410\u00ae\u0001\u0000\u0000\u0000\u0411"+ + "\u0412\u0005>\u0000\u0000\u0412\u0413\u0005=\u0000\u0000\u0413\u00b0\u0001"+ + "\u0000\u0000\u0000\u0414\u0415\u0005+\u0000\u0000\u0415\u00b2\u0001\u0000"+ + "\u0000\u0000\u0416\u0417\u0005-\u0000\u0000\u0417\u00b4\u0001\u0000\u0000"+ + "\u0000\u0418\u0419\u0005*\u0000\u0000\u0419\u00b6\u0001\u0000\u0000\u0000"+ + "\u041a\u041b\u0005/\u0000\u0000\u041b\u00b8\u0001\u0000\u0000\u0000\u041c"+ + "\u041d\u0005%\u0000\u0000\u041d\u00ba\u0001\u0000\u0000\u0000\u041e\u041f"+ + "\u0005{\u0000\u0000\u041f\u00bc\u0001\u0000\u0000\u0000\u0420\u0421\u0005"+ + "}\u0000\u0000\u0421\u00be\u0001\u0000\u0000\u0000\u0422\u0423\u00031\u000f"+ + "\u0000\u0423\u0424\u0001\u0000\u0000\u0000\u0424\u0425\u0006V\u000f\u0000"+ + "\u0425\u00c0\u0001\u0000\u0000\u0000\u0426\u0427\u0004W\n\u0000\u0427"+ + "\u0428\u0003-\r\u0000\u0428\u0429\u0001\u0000\u0000\u0000\u0429\u042a"+ + "\u0006W\u0010\u0000\u042a\u00c2\u0001\u0000\u0000\u0000\u042b\u042c\u0004"+ + "X\u000b\u0000\u042c\u042d\u0003#\b\u0000\u042d\u042e\u0001\u0000\u0000"+ + "\u0000\u042e\u042f\u0006X\u0011\u0000\u042f\u00c4\u0001\u0000\u0000\u0000"+ + "\u0430\u0433\u0003\u009bD\u0000\u0431\u0434\u0003U!\u0000\u0432\u0434"+ + "\u0003c(\u0000\u0433\u0431\u0001\u0000\u0000\u0000\u0433\u0432\u0001\u0000"+ + "\u0000\u0000\u0434\u0438\u0001\u0000\u0000\u0000\u0435\u0437\u0003e)\u0000"+ + "\u0436\u0435\u0001\u0000\u0000\u0000\u0437\u043a\u0001\u0000\u0000\u0000"+ + "\u0438\u0436\u0001\u0000\u0000\u0000\u0438\u0439\u0001\u0000\u0000\u0000"+ + "\u0439\u0442\u0001\u0000\u0000\u0000\u043a\u0438\u0001\u0000\u0000\u0000"+ + "\u043b\u043d\u0003\u009bD\u0000\u043c\u043e\u0003S \u0000\u043d\u043c"+ + "\u0001\u0000\u0000\u0000\u043e\u043f\u0001\u0000\u0000\u0000\u043f\u043d"+ + "\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000\u0000\u0000\u0440\u0442"+ + "\u0001\u0000\u0000\u0000\u0441\u0430\u0001\u0000\u0000\u0000\u0441\u043b"+ + "\u0001\u0000\u0000\u0000\u0442\u00c6\u0001\u0000\u0000\u0000\u0443\u0444"+ + "\u0005[\u0000\u0000\u0444\u0445\u0001\u0000\u0000\u0000\u0445\u0446\u0006"+ + "Z\u0000\u0000\u0446\u0447\u0006Z\u0000\u0000\u0447\u00c8\u0001\u0000\u0000"+ + "\u0000\u0448\u0449\u0005]\u0000\u0000\u0449\u044a\u0001\u0000\u0000\u0000"+ + "\u044a\u044b\u0006[\u000e\u0000\u044b\u044c\u0006[\u000e\u0000\u044c\u00ca"+ + "\u0001\u0000\u0000\u0000\u044d\u0451\u0003U!\u0000\u044e\u0450\u0003e"+ + ")\u0000\u044f\u044e\u0001\u0000\u0000\u0000\u0450\u0453\u0001\u0000\u0000"+ + "\u0000\u0451\u044f\u0001\u0000\u0000\u0000\u0451\u0452\u0001\u0000\u0000"+ + "\u0000\u0452\u045e\u0001\u0000\u0000\u0000\u0453\u0451\u0001\u0000\u0000"+ + "\u0000\u0454\u0457\u0003c(\u0000\u0455\u0457\u0003]%\u0000\u0456\u0454"+ + "\u0001\u0000\u0000\u0000\u0456\u0455\u0001\u0000\u0000\u0000\u0457\u0459"+ + "\u0001\u0000\u0000\u0000\u0458\u045a\u0003e)\u0000\u0459\u0458\u0001\u0000"+ + "\u0000\u0000\u045a\u045b\u0001\u0000\u0000\u0000\u045b\u0459\u0001\u0000"+ + "\u0000\u0000\u045b\u045c\u0001\u0000\u0000\u0000\u045c\u045e\u0001\u0000"+ + "\u0000\u0000\u045d\u044d\u0001\u0000\u0000\u0000\u045d\u0456\u0001\u0000"+ + "\u0000\u0000\u045e\u00cc\u0001\u0000\u0000\u0000\u045f\u0461\u0003_&\u0000"+ + "\u0460\u0462\u0003a\'\u0000\u0461\u0460\u0001\u0000\u0000\u0000\u0462"+ + "\u0463\u0001\u0000\u0000\u0000\u0463\u0461\u0001\u0000\u0000\u0000\u0463"+ + "\u0464\u0001\u0000\u0000\u0000\u0464\u0465\u0001\u0000\u0000\u0000\u0465"+ + "\u0466\u0003_&\u0000\u0466\u00ce\u0001\u0000\u0000\u0000\u0467\u0468\u0003"+ + "\u00cd]\u0000\u0468\u00d0\u0001\u0000\u0000\u0000\u0469\u046a\u0003K\u001c"+ + "\u0000\u046a\u046b\u0001\u0000\u0000\u0000\u046b\u046c\u0006_\r\u0000"+ + "\u046c\u00d2\u0001\u0000\u0000\u0000\u046d\u046e\u0003M\u001d\u0000\u046e"+ + "\u046f\u0001\u0000\u0000\u0000\u046f\u0470\u0006`\r\u0000\u0470\u00d4"+ + "\u0001\u0000\u0000\u0000\u0471\u0472\u0003O\u001e\u0000\u0472\u0473\u0001"+ + "\u0000\u0000\u0000\u0473\u0474\u0006a\r\u0000\u0474\u00d6\u0001\u0000"+ + "\u0000\u0000\u0475\u0476\u0003\u00c7Z\u0000\u0476\u0477\u0001\u0000\u0000"+ + "\u0000\u0477\u0478\u0006b\u0012\u0000\u0478\u0479\u0006b\u0013\u0000\u0479"+ + "\u00d8\u0001\u0000\u0000\u0000\u047a\u047b\u0003Q\u001f\u0000\u047b\u047c"+ + "\u0001\u0000\u0000\u0000\u047c\u047d\u0006c\u0014\u0000\u047d\u047e\u0006"+ + "c\u000e\u0000\u047e\u00da\u0001\u0000\u0000\u0000\u047f\u0480\u0003O\u001e"+ + "\u0000\u0480\u0481\u0001\u0000\u0000\u0000\u0481\u0482\u0006d\r\u0000"+ + "\u0482\u00dc\u0001\u0000\u0000\u0000\u0483\u0484\u0003K\u001c\u0000\u0484"+ + "\u0485\u0001\u0000\u0000\u0000\u0485\u0486\u0006e\r\u0000\u0486\u00de"+ + "\u0001\u0000\u0000\u0000\u0487\u0488\u0003M\u001d\u0000\u0488\u0489\u0001"+ + "\u0000\u0000\u0000\u0489\u048a\u0006f\r\u0000\u048a\u00e0\u0001\u0000"+ + "\u0000\u0000\u048b\u048c\u0003Q\u001f\u0000\u048c\u048d\u0001\u0000\u0000"+ + "\u0000\u048d\u048e\u0006g\u0014\u0000\u048e\u048f\u0006g\u000e\u0000\u048f"+ + "\u00e2\u0001\u0000\u0000\u0000\u0490\u0491\u0003\u00c7Z\u0000\u0491\u0492"+ + "\u0001\u0000\u0000\u0000\u0492\u0493\u0006h\u0012\u0000\u0493\u00e4\u0001"+ + "\u0000\u0000\u0000\u0494\u0495\u0003\u00c9[\u0000\u0495\u0496\u0001\u0000"+ + "\u0000\u0000\u0496\u0497\u0006i\u0015\u0000\u0497\u00e6\u0001\u0000\u0000"+ + "\u0000\u0498\u0499\u0003}5\u0000\u0499\u049a\u0001\u0000\u0000\u0000\u049a"+ + "\u049b\u0006j\u0016\u0000\u049b\u00e8\u0001\u0000\u0000\u0000\u049c\u049d"+ + "\u0003\u007f6\u0000\u049d\u049e\u0001\u0000\u0000\u0000\u049e\u049f\u0006"+ + "k\u0017\u0000\u049f\u00ea\u0001\u0000\u0000\u0000\u04a0\u04a1\u0003y3"+ + "\u0000\u04a1\u04a2\u0001\u0000\u0000\u0000\u04a2\u04a3\u0006l\u0018\u0000"+ + "\u04a3\u00ec\u0001\u0000\u0000\u0000\u04a4\u04a5\u0007\u0010\u0000\u0000"+ + "\u04a5\u04a6\u0007\u0003\u0000\u0000\u04a6\u04a7\u0007\u0005\u0000\u0000"+ + "\u04a7\u04a8\u0007\f\u0000\u0000\u04a8\u04a9\u0007\u0000\u0000\u0000\u04a9"+ + "\u04aa\u0007\f\u0000\u0000\u04aa\u04ab\u0007\u0005\u0000\u0000\u04ab\u04ac"+ + "\u0007\f\u0000\u0000\u04ac\u00ee\u0001\u0000\u0000\u0000\u04ad\u04b1\b"+ + " \u0000\u0000\u04ae\u04af\u0005/\u0000\u0000\u04af\u04b1\b!\u0000\u0000"+ + "\u04b0\u04ad\u0001\u0000\u0000\u0000\u04b0\u04ae\u0001\u0000\u0000\u0000"+ + "\u04b1\u00f0\u0001\u0000\u0000\u0000\u04b2\u04b4\u0003\u00efn\u0000\u04b3"+ + "\u04b2\u0001\u0000\u0000\u0000\u04b4\u04b5\u0001\u0000\u0000\u0000\u04b5"+ + "\u04b3\u0001\u0000\u0000\u0000\u04b5\u04b6\u0001\u0000\u0000\u0000\u04b6"+ + "\u00f2\u0001\u0000\u0000\u0000\u04b7\u04b8\u0003\u00f1o\u0000\u04b8\u04b9"+ + "\u0001\u0000\u0000\u0000\u04b9\u04ba\u0006p\u0019\u0000\u04ba\u00f4\u0001"+ + "\u0000\u0000\u0000\u04bb\u04bc\u0003g*\u0000\u04bc\u04bd\u0001\u0000\u0000"+ + "\u0000\u04bd\u04be\u0006q\u001a\u0000\u04be\u00f6\u0001\u0000\u0000\u0000"+ + "\u04bf\u04c0\u0003K\u001c\u0000\u04c0\u04c1\u0001\u0000\u0000\u0000\u04c1"+ + "\u04c2\u0006r\r\u0000\u04c2\u00f8\u0001\u0000\u0000\u0000\u04c3\u04c4"+ + "\u0003M\u001d\u0000\u04c4\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0006"+ + "s\r\u0000\u04c6\u00fa\u0001\u0000\u0000\u0000\u04c7\u04c8\u0003O\u001e"+ + "\u0000\u04c8\u04c9\u0001\u0000\u0000\u0000\u04c9\u04ca\u0006t\r\u0000"+ + "\u04ca\u00fc\u0001\u0000\u0000\u0000\u04cb\u04cc\u0003Q\u001f\u0000\u04cc"+ + "\u04cd\u0001\u0000\u0000\u0000\u04cd\u04ce\u0006u\u0014\u0000\u04ce\u04cf"+ + "\u0006u\u000e\u0000\u04cf\u00fe\u0001\u0000\u0000\u0000\u04d0\u04d1\u0003"+ + "\u00838\u0000\u04d1\u04d2\u0001\u0000\u0000\u0000\u04d2\u04d3\u0006v\u001b"+ + "\u0000\u04d3\u0100\u0001\u0000\u0000\u0000\u04d4\u04d5\u0003\u007f6\u0000"+ + "\u04d5\u04d6\u0001\u0000\u0000\u0000\u04d6\u04d7\u0006w\u0017\u0000\u04d7"+ + "\u0102\u0001\u0000\u0000\u0000\u04d8\u04d9\u0003\u009bD\u0000\u04d9\u04da"+ + "\u0001\u0000\u0000\u0000\u04da\u04db\u0006x\u001c\u0000\u04db\u0104\u0001"+ + "\u0000\u0000\u0000\u04dc\u04dd\u0003\u00c5Y\u0000\u04dd\u04de\u0001\u0000"+ + "\u0000\u0000\u04de\u04df\u0006y\u001d\u0000\u04df\u0106\u0001\u0000\u0000"+ + "\u0000\u04e0\u04e5\u0003U!\u0000\u04e1\u04e5\u0003S \u0000\u04e2\u04e5"+ + "\u0003c(\u0000\u04e3\u04e5\u0003\u00b5Q\u0000\u04e4\u04e0\u0001\u0000"+ + "\u0000\u0000\u04e4\u04e1\u0001\u0000\u0000\u0000\u04e4\u04e2\u0001\u0000"+ + "\u0000\u0000\u04e4\u04e3\u0001\u0000\u0000\u0000\u04e5\u0108\u0001\u0000"+ + "\u0000\u0000\u04e6\u04e9\u0003U!\u0000\u04e7\u04e9\u0003\u00b5Q\u0000"+ + "\u04e8\u04e6\u0001\u0000\u0000\u0000\u04e8\u04e7\u0001\u0000\u0000\u0000"+ + "\u04e9\u04ed\u0001\u0000\u0000\u0000\u04ea\u04ec\u0003\u0107z\u0000\u04eb"+ + "\u04ea\u0001\u0000\u0000\u0000\u04ec\u04ef\u0001\u0000\u0000\u0000\u04ed"+ + "\u04eb\u0001\u0000\u0000\u0000\u04ed\u04ee\u0001\u0000\u0000\u0000\u04ee"+ + "\u04fa\u0001\u0000\u0000\u0000\u04ef\u04ed\u0001\u0000\u0000\u0000\u04f0"+ + "\u04f3\u0003c(\u0000\u04f1\u04f3\u0003]%\u0000\u04f2\u04f0\u0001\u0000"+ + "\u0000\u0000\u04f2\u04f1\u0001\u0000\u0000\u0000\u04f3\u04f5\u0001\u0000"+ + "\u0000\u0000\u04f4\u04f6\u0003\u0107z\u0000\u04f5\u04f4\u0001\u0000\u0000"+ + "\u0000\u04f6\u04f7\u0001\u0000\u0000\u0000\u04f7\u04f5\u0001\u0000\u0000"+ + "\u0000\u04f7\u04f8\u0001\u0000\u0000\u0000\u04f8\u04fa\u0001\u0000\u0000"+ + "\u0000\u04f9\u04e8\u0001\u0000\u0000\u0000\u04f9\u04f2\u0001\u0000\u0000"+ + "\u0000\u04fa\u010a\u0001\u0000\u0000\u0000\u04fb\u04fe\u0003\u0109{\u0000"+ + "\u04fc\u04fe\u0003\u00cd]\u0000\u04fd\u04fb\u0001\u0000\u0000\u0000\u04fd"+ + "\u04fc\u0001\u0000\u0000\u0000\u04fe\u04ff\u0001\u0000\u0000\u0000\u04ff"+ + "\u04fd\u0001\u0000\u0000\u0000\u04ff\u0500\u0001\u0000\u0000\u0000\u0500"+ + "\u010c\u0001\u0000\u0000\u0000\u0501\u0502\u0003K\u001c\u0000\u0502\u0503"+ + "\u0001\u0000\u0000\u0000\u0503\u0504\u0006}\r\u0000\u0504\u010e\u0001"+ + "\u0000\u0000\u0000\u0505\u0506\u0003M\u001d\u0000\u0506\u0507\u0001\u0000"+ + "\u0000\u0000\u0507\u0508\u0006~\r\u0000\u0508\u0110\u0001\u0000\u0000"+ + "\u0000\u0509\u050a\u0003O\u001e\u0000\u050a\u050b\u0001\u0000\u0000\u0000"+ + "\u050b\u050c\u0006\u007f\r\u0000\u050c\u0112\u0001\u0000\u0000\u0000\u050d"+ + "\u050e\u0003Q\u001f\u0000\u050e\u050f\u0001\u0000\u0000\u0000\u050f\u0510"+ + "\u0006\u0080\u0014\u0000\u0510\u0511\u0006\u0080\u000e\u0000\u0511\u0114"+ + "\u0001\u0000\u0000\u0000\u0512\u0513\u0003y3\u0000\u0513\u0514\u0001\u0000"+ + "\u0000\u0000\u0514\u0515\u0006\u0081\u0018\u0000\u0515\u0116\u0001\u0000"+ + "\u0000\u0000\u0516\u0517\u0003\u007f6\u0000\u0517\u0518\u0001\u0000\u0000"+ + "\u0000\u0518\u0519\u0006\u0082\u0017\u0000\u0519\u0118\u0001\u0000\u0000"+ + "\u0000\u051a\u051b\u0003\u00838\u0000\u051b\u051c\u0001\u0000\u0000\u0000"+ + "\u051c\u051d\u0006\u0083\u001b\u0000\u051d\u011a\u0001\u0000\u0000\u0000"+ + "\u051e\u051f\u0003\u009bD\u0000\u051f\u0520\u0001\u0000\u0000\u0000\u0520"+ + "\u0521\u0006\u0084\u001c\u0000\u0521\u011c\u0001\u0000\u0000\u0000\u0522"+ + "\u0523\u0003\u00c5Y\u0000\u0523\u0524\u0001\u0000\u0000\u0000\u0524\u0525"+ + "\u0006\u0085\u001d\u0000\u0525\u011e\u0001\u0000\u0000\u0000\u0526\u0527"+ + "\u0003s0\u0000\u0527\u0528\u0001\u0000\u0000\u0000\u0528\u0529\u0006\u0086"+ + "\u001e\u0000\u0529\u0120\u0001\u0000\u0000\u0000\u052a\u052b\u0003\u010b"+ + "|\u0000\u052b\u052c\u0001\u0000\u0000\u0000\u052c\u052d\u0006\u0087\u001f"+ + "\u0000\u052d\u0122\u0001\u0000\u0000\u0000\u052e\u052f\u0003K\u001c\u0000"+ + "\u052f\u0530\u0001\u0000\u0000\u0000\u0530\u0531\u0006\u0088\r\u0000\u0531"+ + "\u0124\u0001\u0000\u0000\u0000\u0532\u0533\u0003M\u001d\u0000\u0533\u0534"+ + "\u0001\u0000\u0000\u0000\u0534\u0535\u0006\u0089\r\u0000\u0535\u0126\u0001"+ + "\u0000\u0000\u0000\u0536\u0537\u0003O\u001e\u0000\u0537\u0538\u0001\u0000"+ + "\u0000\u0000\u0538\u0539\u0006\u008a\r\u0000\u0539\u0128\u0001\u0000\u0000"+ + "\u0000\u053a\u053b\u0003Q\u001f\u0000\u053b\u053c\u0001\u0000\u0000\u0000"+ + "\u053c\u053d\u0006\u008b\u0014\u0000\u053d\u053e\u0006\u008b\u000e\u0000"+ + "\u053e\u012a\u0001\u0000\u0000\u0000\u053f\u0540\u0003\u00c7Z\u0000\u0540"+ + "\u0541\u0001\u0000\u0000\u0000\u0541\u0542\u0006\u008c\u0012\u0000\u0542"+ + "\u0543\u0006\u008c \u0000\u0543\u012c\u0001\u0000\u0000\u0000\u0544\u0545"+ + "\u0003o.\u0000\u0545\u0546\u0001\u0000\u0000\u0000\u0546\u0547\u0006\u008d"+ + "!\u0000\u0547\u0548\u0006\u008d\"\u0000\u0548\u012e\u0001\u0000\u0000"+ + "\u0000\u0549\u054a\u0003q/\u0000\u054a\u054b\u0001\u0000\u0000\u0000\u054b"+ + "\u054c\u0006\u008e#\u0000\u054c\u054d\u0006\u008e\"\u0000\u054d\u0130"+ + "\u0001\u0000\u0000\u0000\u054e\u054f\b\"\u0000\u0000\u054f\u0132\u0001"+ + "\u0000\u0000\u0000\u0550\u0552\u0003\u0131\u008f\u0000\u0551\u0550\u0001"+ + "\u0000\u0000\u0000\u0552\u0553\u0001\u0000\u0000\u0000\u0553\u0551\u0001"+ + "\u0000\u0000\u0000\u0553\u0554\u0001\u0000\u0000\u0000\u0554\u0555\u0001"+ + "\u0000\u0000\u0000\u0555\u0556\u0003}5\u0000\u0556\u0558\u0001\u0000\u0000"+ + "\u0000\u0557\u0551\u0001\u0000\u0000\u0000\u0557\u0558\u0001\u0000\u0000"+ + "\u0000\u0558\u055a\u0001\u0000\u0000\u0000\u0559\u055b\u0003\u0131\u008f"+ + "\u0000\u055a\u0559\u0001\u0000\u0000\u0000\u055b\u055c\u0001\u0000\u0000"+ + "\u0000\u055c\u055a\u0001\u0000\u0000\u0000\u055c\u055d\u0001\u0000\u0000"+ + "\u0000\u055d\u0134\u0001\u0000\u0000\u0000\u055e\u055f\u0003\u0133\u0090"+ + "\u0000\u055f\u0560\u0001\u0000\u0000\u0000\u0560\u0561\u0006\u0091$\u0000"+ + "\u0561\u0136\u0001\u0000\u0000\u0000\u0562\u0563\u0003K\u001c\u0000\u0563"+ + "\u0564\u0001\u0000\u0000\u0000\u0564\u0565\u0006\u0092\r\u0000\u0565\u0138"+ + "\u0001\u0000\u0000\u0000\u0566\u0567\u0003M\u001d\u0000\u0567\u0568\u0001"+ + "\u0000\u0000\u0000\u0568\u0569\u0006\u0093\r\u0000\u0569\u013a\u0001\u0000"+ + "\u0000\u0000\u056a\u056b\u0003O\u001e\u0000\u056b\u056c\u0001\u0000\u0000"+ + "\u0000\u056c\u056d\u0006\u0094\r\u0000\u056d\u013c\u0001\u0000\u0000\u0000"+ + "\u056e\u056f\u0003Q\u001f\u0000\u056f\u0570\u0001\u0000\u0000\u0000\u0570"+ + "\u0571\u0006\u0095\u0014\u0000\u0571\u0572\u0006\u0095\u000e\u0000\u0572"+ + "\u0573\u0006\u0095\u000e\u0000\u0573\u013e\u0001\u0000\u0000\u0000\u0574"+ + "\u0575\u0003y3\u0000\u0575\u0576\u0001\u0000\u0000\u0000\u0576\u0577\u0006"+ + "\u0096\u0018\u0000\u0577\u0140\u0001\u0000\u0000\u0000\u0578\u0579\u0003"+ + "\u007f6\u0000\u0579\u057a\u0001\u0000\u0000\u0000\u057a\u057b\u0006\u0097"+ + "\u0017\u0000\u057b\u0142\u0001\u0000\u0000\u0000\u057c\u057d\u0003\u0083"+ + "8\u0000\u057d\u057e\u0001\u0000\u0000\u0000\u057e\u057f\u0006\u0098\u001b"+ + "\u0000\u057f\u0144\u0001\u0000\u0000\u0000\u0580\u0581\u0003q/\u0000\u0581"+ + "\u0582\u0001\u0000\u0000\u0000\u0582\u0583\u0006\u0099#\u0000\u0583\u0146"+ + "\u0001\u0000\u0000\u0000\u0584\u0585\u0003\u010b|\u0000\u0585\u0586\u0001"+ + "\u0000\u0000\u0000\u0586\u0587\u0006\u009a\u001f\u0000\u0587\u0148\u0001"+ + "\u0000\u0000\u0000\u0588\u0589\u0003\u00cf^\u0000\u0589\u058a\u0001\u0000"+ + "\u0000\u0000\u058a\u058b\u0006\u009b%\u0000\u058b\u014a\u0001\u0000\u0000"+ + "\u0000\u058c\u058d\u0003\u009bD\u0000\u058d\u058e\u0001\u0000\u0000\u0000"+ + "\u058e\u058f\u0006\u009c\u001c\u0000\u058f\u014c\u0001\u0000\u0000\u0000"+ + "\u0590\u0591\u0003\u00c5Y\u0000\u0591\u0592\u0001\u0000\u0000\u0000\u0592"+ + "\u0593\u0006\u009d\u001d\u0000\u0593\u014e\u0001\u0000\u0000\u0000\u0594"+ + "\u0595\u0003K\u001c\u0000\u0595\u0596\u0001\u0000\u0000\u0000\u0596\u0597"+ + "\u0006\u009e\r\u0000\u0597\u0150\u0001\u0000\u0000\u0000\u0598\u0599\u0003"+ + "M\u001d\u0000\u0599\u059a\u0001\u0000\u0000\u0000\u059a\u059b\u0006\u009f"+ + "\r\u0000\u059b\u0152\u0001\u0000\u0000\u0000\u059c\u059d\u0003O\u001e"+ + "\u0000\u059d\u059e\u0001\u0000\u0000\u0000\u059e\u059f\u0006\u00a0\r\u0000"+ + "\u059f\u0154\u0001\u0000\u0000\u0000\u05a0\u05a1\u0003Q\u001f\u0000\u05a1"+ + "\u05a2\u0001\u0000\u0000\u0000\u05a2\u05a3\u0006\u00a1\u0014\u0000\u05a3"+ + "\u05a4\u0006\u00a1\u000e\u0000\u05a4\u0156\u0001\u0000\u0000\u0000\u05a5"+ + "\u05a6\u0003\u00838\u0000\u05a6\u05a7\u0001\u0000\u0000\u0000\u05a7\u05a8"+ + "\u0006\u00a2\u001b\u0000\u05a8\u0158\u0001\u0000\u0000\u0000\u05a9\u05aa"+ + "\u0003\u009bD\u0000\u05aa\u05ab\u0001\u0000\u0000\u0000\u05ab\u05ac\u0006"+ + "\u00a3\u001c\u0000\u05ac\u015a\u0001\u0000\u0000\u0000\u05ad\u05ae\u0003"+ + "\u00c5Y\u0000\u05ae\u05af\u0001\u0000\u0000\u0000\u05af\u05b0\u0006\u00a4"+ + "\u001d\u0000\u05b0\u015c\u0001\u0000\u0000\u0000\u05b1\u05b2\u0003\u00cf"+ + "^\u0000\u05b2\u05b3\u0001\u0000\u0000\u0000\u05b3\u05b4\u0006\u00a5%\u0000"+ + "\u05b4\u015e\u0001\u0000\u0000\u0000\u05b5\u05b6\u0003\u00cb\\\u0000\u05b6"+ + "\u05b7\u0001\u0000\u0000\u0000\u05b7\u05b8\u0006\u00a6&\u0000\u05b8\u0160"+ + "\u0001\u0000\u0000\u0000\u05b9\u05ba\u0003K\u001c\u0000\u05ba\u05bb\u0001"+ + "\u0000\u0000\u0000\u05bb\u05bc\u0006\u00a7\r\u0000\u05bc\u0162\u0001\u0000"+ + "\u0000\u0000\u05bd\u05be\u0003M\u001d\u0000\u05be\u05bf\u0001\u0000\u0000"+ + "\u0000\u05bf\u05c0\u0006\u00a8\r\u0000\u05c0\u0164\u0001\u0000\u0000\u0000"+ + "\u05c1\u05c2\u0003O\u001e\u0000\u05c2\u05c3\u0001\u0000\u0000\u0000\u05c3"+ + "\u05c4\u0006\u00a9\r\u0000\u05c4\u0166\u0001\u0000\u0000\u0000\u05c5\u05c6"+ + "\u0003Q\u001f\u0000\u05c6\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006"+ + "\u00aa\u0014\u0000\u05c8\u05c9\u0006\u00aa\u000e\u0000\u05c9\u0168\u0001"+ + "\u0000\u0000\u0000\u05ca\u05cb\u0007\u0001\u0000\u0000\u05cb\u05cc\u0007"+ + "\t\u0000\u0000\u05cc\u05cd\u0007\u000f\u0000\u0000\u05cd\u05ce\u0007\u0007"+ + "\u0000\u0000\u05ce\u016a\u0001\u0000\u0000\u0000\u05cf\u05d0\u0003K\u001c"+ + "\u0000\u05d0\u05d1\u0001\u0000\u0000\u0000\u05d1\u05d2\u0006\u00ac\r\u0000"+ + "\u05d2\u016c\u0001\u0000\u0000\u0000\u05d3\u05d4\u0003M\u001d\u0000\u05d4"+ + "\u05d5\u0001\u0000\u0000\u0000\u05d5\u05d6\u0006\u00ad\r\u0000\u05d6\u016e"+ + "\u0001\u0000\u0000\u0000\u05d7\u05d8\u0003O\u001e\u0000\u05d8\u05d9\u0001"+ + "\u0000\u0000\u0000\u05d9\u05da\u0006\u00ae\r\u0000\u05da\u0170\u0001\u0000"+ + "\u0000\u0000\u05db\u05dc\u0003\u00c9[\u0000\u05dc\u05dd\u0001\u0000\u0000"+ + "\u0000\u05dd\u05de\u0006\u00af\u0015\u0000\u05de\u05df\u0006\u00af\u000e"+ + "\u0000\u05df\u0172\u0001\u0000\u0000\u0000\u05e0\u05e1\u0003}5\u0000\u05e1"+ + "\u05e2\u0001\u0000\u0000\u0000\u05e2\u05e3\u0006\u00b0\u0016\u0000\u05e3"+ + "\u0174\u0001\u0000\u0000\u0000\u05e4\u05ea\u0003]%\u0000\u05e5\u05ea\u0003"+ + "S \u0000\u05e6\u05ea\u0003\u00838\u0000\u05e7\u05ea\u0003U!\u0000\u05e8"+ + "\u05ea\u0003c(\u0000\u05e9\u05e4\u0001\u0000\u0000\u0000\u05e9\u05e5\u0001"+ + "\u0000\u0000\u0000\u05e9\u05e6\u0001\u0000\u0000\u0000\u05e9\u05e7\u0001"+ + "\u0000\u0000\u0000\u05e9\u05e8\u0001\u0000\u0000\u0000\u05ea\u05eb\u0001"+ + "\u0000\u0000\u0000\u05eb\u05e9\u0001\u0000\u0000\u0000\u05eb\u05ec\u0001"+ + "\u0000\u0000\u0000\u05ec\u0176\u0001\u0000\u0000\u0000\u05ed\u05ee\u0003"+ + "K\u001c\u0000\u05ee\u05ef\u0001\u0000\u0000\u0000\u05ef\u05f0\u0006\u00b2"+ + "\r\u0000\u05f0\u0178\u0001\u0000\u0000\u0000\u05f1\u05f2\u0003M\u001d"+ + "\u0000\u05f2\u05f3\u0001\u0000\u0000\u0000\u05f3\u05f4\u0006\u00b3\r\u0000"+ + "\u05f4\u017a\u0001\u0000\u0000\u0000\u05f5\u05f6\u0003O\u001e\u0000\u05f6"+ + "\u05f7\u0001\u0000\u0000\u0000\u05f7\u05f8\u0006\u00b4\r\u0000\u05f8\u017c"+ + "\u0001\u0000\u0000\u0000\u05f9\u05fa\u0003Q\u001f\u0000\u05fa\u05fb\u0001"+ + "\u0000\u0000\u0000\u05fb\u05fc\u0006\u00b5\u0014\u0000\u05fc\u05fd\u0006"+ + "\u00b5\u000e\u0000\u05fd\u017e\u0001\u0000\u0000\u0000\u05fe\u05ff\u0003"+ + "}5\u0000\u05ff\u0600\u0001\u0000\u0000\u0000\u0600\u0601\u0006\u00b6\u0016"+ + "\u0000\u0601\u0180\u0001\u0000\u0000\u0000\u0602\u0603\u0003\u007f6\u0000"+ + "\u0603\u0604\u0001\u0000\u0000\u0000\u0604\u0605\u0006\u00b7\u0017\u0000"+ + "\u0605\u0182\u0001\u0000\u0000\u0000\u0606\u0607\u0003\u00838\u0000\u0607"+ + "\u0608\u0001\u0000\u0000\u0000\u0608\u0609\u0006\u00b8\u001b\u0000\u0609"+ + "\u0184\u0001\u0000\u0000\u0000\u060a\u060b\u0003o.\u0000\u060b\u060c\u0001"+ + "\u0000\u0000\u0000\u060c\u060d\u0006\u00b9!\u0000\u060d\u060e\u0006\u00b9"+ + "\'\u0000\u060e\u0186\u0001\u0000\u0000\u0000\u060f\u0610\u0003\u00f1o"+ + "\u0000\u0610\u0611\u0001\u0000\u0000\u0000\u0611\u0612\u0006\u00ba\u0019"+ + "\u0000\u0612\u0188\u0001\u0000\u0000\u0000\u0613\u0614\u0003g*\u0000\u0614"+ + "\u0615\u0001\u0000\u0000\u0000\u0615\u0616\u0006\u00bb\u001a\u0000\u0616"+ + "\u018a\u0001\u0000\u0000\u0000\u0617\u0618\u0003K\u001c\u0000\u0618\u0619"+ + "\u0001\u0000\u0000\u0000\u0619\u061a\u0006\u00bc\r\u0000\u061a\u018c\u0001"+ + "\u0000\u0000\u0000\u061b\u061c\u0003M\u001d\u0000\u061c\u061d\u0001\u0000"+ + "\u0000\u0000\u061d\u061e\u0006\u00bd\r\u0000\u061e\u018e\u0001\u0000\u0000"+ + "\u0000\u061f\u0620\u0003O\u001e\u0000\u0620\u0621\u0001\u0000\u0000\u0000"+ + "\u0621\u0622\u0006\u00be\r\u0000\u0622\u0190\u0001\u0000\u0000\u0000\u0623"+ + "\u0624\u0003Q\u001f\u0000\u0624\u0625\u0001\u0000\u0000\u0000\u0625\u0626"+ + "\u0006\u00bf\u0014\u0000\u0626\u0627\u0006\u00bf\u000e\u0000\u0627\u0628"+ + "\u0006\u00bf\u000e\u0000\u0628\u0192\u0001\u0000\u0000\u0000\u0629\u062a"+ + "\u0003\u007f6\u0000\u062a\u062b\u0001\u0000\u0000\u0000\u062b\u062c\u0006"+ + "\u00c0\u0017\u0000\u062c\u0194\u0001\u0000\u0000\u0000\u062d\u062e\u0003"+ + "\u00838\u0000\u062e\u062f\u0001\u0000\u0000\u0000\u062f\u0630\u0006\u00c1"+ + "\u001b\u0000\u0630\u0196\u0001\u0000\u0000\u0000\u0631\u0632\u0003\u010b"+ + "|\u0000\u0632\u0633\u0001\u0000\u0000\u0000\u0633\u0634\u0006\u00c2\u001f"+ + "\u0000\u0634\u0198\u0001\u0000\u0000\u0000\u0635\u0636\u0003K\u001c\u0000"+ + "\u0636\u0637\u0001\u0000\u0000\u0000\u0637\u0638\u0006\u00c3\r\u0000\u0638"+ + "\u019a\u0001\u0000\u0000\u0000\u0639\u063a\u0003M\u001d\u0000\u063a\u063b"+ + "\u0001\u0000\u0000\u0000\u063b\u063c\u0006\u00c4\r\u0000\u063c\u019c\u0001"+ + "\u0000\u0000\u0000\u063d\u063e\u0003O\u001e\u0000\u063e\u063f\u0001\u0000"+ + "\u0000\u0000\u063f\u0640\u0006\u00c5\r\u0000\u0640\u019e\u0001\u0000\u0000"+ + "\u0000\u0641\u0642\u0003Q\u001f\u0000\u0642\u0643\u0001\u0000\u0000\u0000"+ + "\u0643\u0644\u0006\u00c6\u0014\u0000\u0644\u0645\u0006\u00c6\u000e\u0000"+ + "\u0645\u01a0\u0001\u0000\u0000\u0000\u0646\u0647\u0007#\u0000\u0000\u0647"+ + "\u0648\u0007\u0007\u0000\u0000\u0648\u0649\u0007\u0001\u0000\u0000\u0649"+ + "\u064a\u0007\t\u0000\u0000\u064a\u01a2\u0001\u0000\u0000\u0000\u064b\u064c"+ + "\u0003s0\u0000\u064c\u064d\u0001\u0000\u0000\u0000\u064d\u064e\u0006\u00c8"+ + "\u001e\u0000\u064e\u01a4\u0001\u0000\u0000\u0000\u064f\u0650\u0003o.\u0000"+ + "\u0650\u0651\u0001\u0000\u0000\u0000\u0651\u0652\u0006\u00c9!\u0000\u0652"+ + "\u0653\u0006\u00c9\u000e\u0000\u0653\u0654\u0006\u00c9\u0000\u0000\u0654"+ + "\u01a6\u0001\u0000\u0000\u0000\u0655\u0656\u0007\u0014\u0000\u0000\u0656"+ + "\u0657\u0007\u0002\u0000\u0000\u0657\u0658\u0007\u0001\u0000\u0000\u0658"+ + "\u0659\u0007\t\u0000\u0000\u0659\u065a\u0007\u0011\u0000\u0000\u065a\u065b"+ + "\u0001\u0000\u0000\u0000\u065b\u065c\u0006\u00ca\u000e\u0000\u065c\u065d"+ + "\u0006\u00ca\u0000\u0000\u065d\u01a8\u0001\u0000\u0000\u0000\u065e\u065f"+ + "\u0003\u00f1o\u0000\u065f\u0660\u0001\u0000\u0000\u0000\u0660\u0661\u0006"+ + "\u00cb\u0019\u0000\u0661\u01aa\u0001\u0000\u0000\u0000\u0662\u0663\u0003"+ + "g*\u0000\u0663\u0664\u0001\u0000\u0000\u0000\u0664\u0665\u0006\u00cc\u001a"+ + "\u0000\u0665\u01ac\u0001\u0000\u0000\u0000\u0666\u0667\u0003}5\u0000\u0667"+ + "\u0668\u0001\u0000\u0000\u0000\u0668\u0669\u0006\u00cd\u0016\u0000\u0669"+ + "\u01ae\u0001\u0000\u0000\u0000\u066a\u066b\u0003\u00cb\\\u0000\u066b\u066c"+ + "\u0001\u0000\u0000\u0000\u066c\u066d\u0006\u00ce&\u0000\u066d\u01b0\u0001"+ + "\u0000\u0000\u0000\u066e\u066f\u0003\u00cf^\u0000\u066f\u0670\u0001\u0000"+ + "\u0000\u0000\u0670\u0671\u0006\u00cf%\u0000\u0671\u01b2\u0001\u0000\u0000"+ + "\u0000\u0672\u0673\u0003K\u001c\u0000\u0673\u0674\u0001\u0000\u0000\u0000"+ + "\u0674\u0675\u0006\u00d0\r\u0000\u0675\u01b4\u0001\u0000\u0000\u0000\u0676"+ + "\u0677\u0003M\u001d\u0000\u0677\u0678\u0001\u0000\u0000\u0000\u0678\u0679"+ + "\u0006\u00d1\r\u0000\u0679\u01b6\u0001\u0000\u0000\u0000\u067a\u067b\u0003"+ + "O\u001e\u0000\u067b\u067c\u0001\u0000\u0000\u0000\u067c\u067d\u0006\u00d2"+ + "\r\u0000\u067d\u01b8\u0001\u0000\u0000\u0000\u067e\u067f\u0003Q\u001f"+ + "\u0000\u067f\u0680\u0001\u0000\u0000\u0000\u0680\u0681\u0006\u00d3\u0014"+ + "\u0000\u0681\u0682\u0006\u00d3\u000e\u0000\u0682\u01ba\u0001\u0000\u0000"+ + "\u0000\u0683\u0684\u0003\u00f1o\u0000\u0684\u0685\u0001\u0000\u0000\u0000"+ + "\u0685\u0686\u0006\u00d4\u0019\u0000\u0686\u0687\u0006\u00d4\u000e\u0000"+ + "\u0687\u0688\u0006\u00d4(\u0000\u0688\u01bc\u0001\u0000\u0000\u0000\u0689"+ + "\u068a\u0003g*\u0000\u068a\u068b\u0001\u0000\u0000\u0000\u068b\u068c\u0006"+ + "\u00d5\u001a\u0000\u068c\u068d\u0006\u00d5\u000e\u0000\u068d\u068e\u0006"+ + "\u00d5(\u0000\u068e\u01be\u0001\u0000\u0000\u0000\u068f\u0690\u0003K\u001c"+ + "\u0000\u0690\u0691\u0001\u0000\u0000\u0000\u0691\u0692\u0006\u00d6\r\u0000"+ + "\u0692\u01c0\u0001\u0000\u0000\u0000\u0693\u0694\u0003M\u001d\u0000\u0694"+ + "\u0695\u0001\u0000\u0000\u0000\u0695\u0696\u0006\u00d7\r\u0000\u0696\u01c2"+ + "\u0001\u0000\u0000\u0000\u0697\u0698\u0003O\u001e\u0000\u0698\u0699\u0001"+ + "\u0000\u0000\u0000\u0699\u069a\u0006\u00d8\r\u0000\u069a\u01c4\u0001\u0000"+ + "\u0000\u0000\u069b\u069c\u0003}5\u0000\u069c\u069d\u0001\u0000\u0000\u0000"+ + "\u069d\u069e\u0006\u00d9\u0016\u0000\u069e\u069f\u0006\u00d9\u000e\u0000"+ + "\u069f\u06a0\u0006\u00d9\u000b\u0000\u06a0\u01c6\u0001\u0000\u0000\u0000"+ + "\u06a1\u06a2\u0003\u007f6\u0000\u06a2\u06a3\u0001\u0000\u0000\u0000\u06a3"+ + "\u06a4\u0006\u00da\u0017\u0000\u06a4\u06a5\u0006\u00da\u000e\u0000\u06a5"+ + "\u06a6\u0006\u00da\u000b\u0000\u06a6\u01c8\u0001\u0000\u0000\u0000\u06a7"+ + "\u06a8\u0003K\u001c\u0000\u06a8\u06a9\u0001\u0000\u0000\u0000\u06a9\u06aa"+ + "\u0006\u00db\r\u0000\u06aa\u01ca\u0001\u0000\u0000\u0000\u06ab\u06ac\u0003"+ + "M\u001d\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000\u06ad\u06ae\u0006\u00dc"+ + "\r\u0000\u06ae\u01cc\u0001\u0000\u0000\u0000\u06af\u06b0\u0003O\u001e"+ + "\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1\u06b2\u0006\u00dd\r\u0000"+ + "\u06b2\u01ce\u0001\u0000\u0000\u0000\u06b3\u06b4\u0003\u00cf^\u0000\u06b4"+ + "\u06b5\u0001\u0000\u0000\u0000\u06b5\u06b6\u0006\u00de\u000e\u0000\u06b6"+ + "\u06b7\u0006\u00de\u0000\u0000\u06b7\u06b8\u0006\u00de%\u0000\u06b8\u01d0"+ + "\u0001\u0000\u0000\u0000\u06b9\u06ba\u0003\u00cb\\\u0000\u06ba\u06bb\u0001"+ + "\u0000\u0000\u0000\u06bb\u06bc\u0006\u00df\u000e\u0000\u06bc\u06bd\u0006"+ + "\u00df\u0000\u0000\u06bd\u06be\u0006\u00df&\u0000\u06be\u01d2\u0001\u0000"+ + "\u0000\u0000\u06bf\u06c0\u0003m-\u0000\u06c0\u06c1\u0001\u0000\u0000\u0000"+ + "\u06c1\u06c2\u0006\u00e0\u000e\u0000\u06c2\u06c3\u0006\u00e0\u0000\u0000"+ + "\u06c3\u06c4\u0006\u00e0)\u0000\u06c4\u01d4\u0001\u0000\u0000\u0000\u06c5"+ + "\u06c6\u0003Q\u001f\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8"+ + "\u0006\u00e1\u0014\u0000\u06c8\u06c9\u0006\u00e1\u000e\u0000\u06c9\u01d6"+ + "\u0001\u0000\u0000\u0000\u06ca\u06cb\u0003Q\u001f\u0000\u06cb\u06cc\u0001"+ + "\u0000\u0000\u0000\u06cc\u06cd\u0006\u00e2\u0014\u0000\u06cd\u06ce\u0006"+ + "\u00e2\u000e\u0000\u06ce\u01d8\u0001\u0000\u0000\u0000\u06cf\u06d0\u0003"+ + "o.\u0000\u06d0\u06d1\u0001\u0000\u0000\u0000\u06d1\u06d2\u0006\u00e3!"+ + "\u0000\u06d2\u01da\u0001\u0000\u0000\u0000\u06d3\u06d4\u0003s0\u0000\u06d4"+ + "\u06d5\u0001\u0000\u0000\u0000\u06d5\u06d6\u0006\u00e4\u001e\u0000\u06d6"+ + "\u01dc\u0001\u0000\u0000\u0000\u06d7\u06d8\u0003\u00838\u0000\u06d8\u06d9"+ + "\u0001\u0000\u0000\u0000\u06d9\u06da\u0006\u00e5\u001b\u0000\u06da\u01de"+ + "\u0001\u0000\u0000\u0000\u06db\u06dc\u0003\u007f6\u0000\u06dc\u06dd\u0001"+ + "\u0000\u0000\u0000\u06dd\u06de\u0006\u00e6\u0017\u0000\u06de\u01e0\u0001"+ + "\u0000\u0000\u0000\u06df\u06e0\u0003\u00cf^\u0000\u06e0\u06e1\u0001\u0000"+ + "\u0000\u0000\u06e1\u06e2\u0006\u00e7%\u0000\u06e2\u01e2\u0001\u0000\u0000"+ + "\u0000\u06e3\u06e4\u0003\u00cb\\\u0000\u06e4\u06e5\u0001\u0000\u0000\u0000"+ + "\u06e5\u06e6\u0006\u00e8&\u0000\u06e6\u01e4\u0001\u0000\u0000\u0000\u06e7"+ + "\u06e8\u0003K\u001c\u0000\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea"+ + "\u0006\u00e9\r\u0000\u06ea\u01e6\u0001\u0000\u0000\u0000\u06eb\u06ec\u0003"+ + "M\u001d\u0000\u06ec\u06ed\u0001\u0000\u0000\u0000\u06ed\u06ee\u0006\u00ea"+ + "\r\u0000\u06ee\u01e8\u0001\u0000\u0000\u0000\u06ef\u06f0\u0003O\u001e"+ + "\u0000\u06f0\u06f1\u0001\u0000\u0000\u0000\u06f1\u06f2\u0006\u00eb\r\u0000"+ + "\u06f2\u01ea\u0001\u0000\u0000\u0000\u06f3\u06f4\u0003Q\u001f\u0000\u06f4"+ + "\u06f5\u0001\u0000\u0000\u0000\u06f5\u06f6\u0006\u00ec\u0014\u0000\u06f6"+ + "\u06f7\u0006\u00ec\u000e\u0000\u06f7\u01ec\u0001\u0000\u0000\u0000\u06f8"+ + "\u06f9\u0003\u00cb\\\u0000\u06f9\u06fa\u0001\u0000\u0000\u0000\u06fa\u06fb"+ + "\u0006\u00ed&\u0000\u06fb\u01ee\u0001\u0000\u0000\u0000\u06fc\u06fd\u0003"+ + "O\u001e\u0000\u06fd\u06fe\u0001\u0000\u0000\u0000\u06fe\u06ff\u0006\u00ee"+ + "\r\u0000\u06ff\u01f0\u0001\u0000\u0000\u0000\u0700\u0701\u0003K\u001c"+ + "\u0000\u0701\u0702\u0001\u0000\u0000\u0000\u0702\u0703\u0006\u00ef\r\u0000"+ + "\u0703\u01f2\u0001\u0000\u0000\u0000\u0704\u0705\u0003M\u001d\u0000\u0705"+ + "\u0706\u0001\u0000\u0000\u0000\u0706\u0707\u0006\u00f0\r\u0000\u0707\u01f4"+ + "\u0001\u0000\u0000\u0000\u0708\u0709\u0003\u0091?\u0000\u0709\u070a\u0001"+ + "\u0000\u0000\u0000\u070a\u070b\u0006\u00f1*\u0000\u070b\u070c\u0006\u00f1"+ + "\u0013\u0000\u070c\u01f6\u0001\u0000\u0000\u0000\u070d\u070e\u0003\u009f"+ + "F\u0000\u070e\u070f\u0001\u0000\u0000\u0000\u070f\u0710\u0006\u00f2+\u0000"+ + "\u0710\u0711\u0006\u00f2\u000e\u0000\u0711\u01f8\u0001\u0000\u0000\u0000"+ + "\u0712\u0713\u0003Q\u001f\u0000\u0713\u0714\u0001\u0000\u0000\u0000\u0714"+ + "\u0715\u0006\u00f3\u0014\u0000\u0715\u0716\u0006\u00f3\u000e\u0000\u0716"+ + "\u01fa\u0001\u0000\u0000\u0000\u0717\u0718\u0003O\u001e\u0000\u0718\u0719"+ + "\u0001\u0000\u0000\u0000\u0719\u071a\u0006\u00f4\r\u0000\u071a\u01fc\u0001"+ + "\u0000\u0000\u0000\u071b\u071c\u0003K\u001c\u0000\u071c\u071d\u0001\u0000"+ + "\u0000\u0000\u071d\u071e\u0006\u00f5\r\u0000\u071e\u01fe\u0001\u0000\u0000"+ + "\u0000\u071f\u0720\u0003M\u001d\u0000\u0720\u0721\u0001\u0000\u0000\u0000"+ + "\u0721\u0722\u0006\u00f6\r\u0000\u0722\u0200\u0001\u0000\u0000\u0000E"+ "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e"+ - "\u000f\u0010\u0011\u0012$\u0002\u0000DDdd\u0002\u0000IIii\u0002\u0000"+ - "SSss\u0002\u0000EEee\u0002\u0000CCcc\u0002\u0000TTtt\u0002\u0000RRrr\u0002"+ - "\u0000OOoo\u0002\u0000PPpp\u0002\u0000NNnn\u0002\u0000HHhh\u0002\u0000"+ - "VVvv\u0002\u0000AAaa\u0002\u0000LLll\u0002\u0000XXxx\u0002\u0000FFff\u0002"+ - "\u0000MMmm\u0002\u0000GGgg\u0002\u0000KKkk\u0002\u0000WWww\u0002\u0000"+ - "UUuu\u0006\u0000\t\n\r\r //[[]]\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r"+ - "\r \u0001\u000009\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000"+ - "\n\n\r\r\"\"\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000"+ - "YYyy\u000b\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u000b\u0000"+ - "\t\n\r\r \"#,,//::<<>?\\\\||\u0002\u0000JJjj\u071f\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\u0000I"+ - "\u0001\u0000\u0000\u0000\u0000K\u0001\u0000\u0000\u0000\u0000M\u0001\u0000"+ - "\u0000\u0000\u0001O\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\u00bb\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\u0001\u00c7\u0001\u0000"+ - "\u0000\u0000\u0001\u00c9\u0001\u0000\u0000\u0000\u0001\u00cb\u0001\u0000"+ - "\u0000\u0000\u0001\u00cd\u0001\u0000\u0000\u0000\u0002\u00cf\u0001\u0000"+ - "\u0000\u0000\u0002\u00d1\u0001\u0000\u0000\u0000\u0002\u00d3\u0001\u0000"+ - "\u0000\u0000\u0002\u00d5\u0001\u0000\u0000\u0000\u0002\u00d7\u0001\u0000"+ - "\u0000\u0000\u0003\u00d9\u0001\u0000\u0000\u0000\u0003\u00db\u0001\u0000"+ - "\u0000\u0000\u0003\u00dd\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\u00e9\u0001\u0000"+ - "\u0000\u0000\u0003\u00eb\u0001\u0000\u0000\u0000\u0003\u00ed\u0001\u0000"+ - "\u0000\u0000\u0003\u00ef\u0001\u0000\u0000\u0000\u0003\u00f1\u0001\u0000"+ - "\u0000\u0000\u0003\u00f3\u0001\u0000\u0000\u0000\u0004\u00f5\u0001\u0000"+ - "\u0000\u0000\u0004\u00f7\u0001\u0000\u0000\u0000\u0004\u00f9\u0001\u0000"+ - "\u0000\u0000\u0004\u00fb\u0001\u0000\u0000\u0000\u0004\u00fd\u0001\u0000"+ - "\u0000\u0000\u0004\u0103\u0001\u0000\u0000\u0000\u0004\u0105\u0001\u0000"+ - "\u0000\u0000\u0004\u0107\u0001\u0000\u0000\u0000\u0004\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\u0005\u0117\u0001\u0000\u0000\u0000\u0005\u0119\u0001\u0000"+ - "\u0000\u0000\u0005\u011b\u0001\u0000\u0000\u0000\u0005\u011d\u0001\u0000"+ - "\u0000\u0000\u0005\u011f\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\u012b\u0001\u0000"+ - "\u0000\u0000\u0006\u012d\u0001\u0000\u0000\u0000\u0006\u012f\u0001\u0000"+ - "\u0000\u0000\u0006\u0131\u0001\u0000\u0000\u0000\u0006\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\u0007\u0143\u0001\u0000"+ - "\u0000\u0000\u0007\u0145\u0001\u0000\u0000\u0000\u0007\u0147\u0001\u0000"+ - "\u0000\u0000\u0007\u0149\u0001\u0000\u0000\u0000\u0007\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"+ - "\b\u0155\u0001\u0000\u0000\u0000\b\u0157\u0001\u0000\u0000\u0000\b\u0159"+ - "\u0001\u0000\u0000\u0000\b\u015b\u0001\u0000\u0000\u0000\b\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\t\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\u000b\u0181\u0001\u0000\u0000\u0000\u000b\u0183\u0001"+ - "\u0000\u0000\u0000\u000b\u0185\u0001\u0000\u0000\u0000\u000b\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\f\u0193\u0001\u0000\u0000\u0000"+ - "\f\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\r\u01a7\u0001\u0000\u0000\u0000\r\u01a9\u0001\u0000\u0000\u0000"+ - "\r\u01ab\u0001\u0000\u0000\u0000\r\u01ad\u0001\u0000\u0000\u0000\r\u01af"+ - "\u0001\u0000\u0000\u0000\u000e\u01b1\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\u000e\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\u0010\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\u0010\u01db"+ - "\u0001\u0000\u0000\u0000\u0010\u01dd\u0001\u0000\u0000\u0000\u0010\u01df"+ - "\u0001\u0000\u0000\u0000\u0010\u01e1\u0001\u0000\u0000\u0000\u0011\u01e3"+ - "\u0001\u0000\u0000\u0000\u0011\u01e5\u0001\u0000\u0000\u0000\u0011\u01e7"+ - "\u0001\u0000\u0000\u0000\u0011\u01e9\u0001\u0000\u0000\u0000\u0011\u01eb"+ - "\u0001\u0000\u0000\u0000\u0012\u01ed\u0001\u0000\u0000\u0000\u0012\u01ef"+ - "\u0001\u0000\u0000\u0000\u0012\u01f1\u0001\u0000\u0000\u0000\u0012\u01f3"+ - "\u0001\u0000\u0000\u0000\u0012\u01f5\u0001\u0000\u0000\u0000\u0012\u01f7"+ - "\u0001\u0000\u0000\u0000\u0013\u01f9\u0001\u0000\u0000\u0000\u0015\u0203"+ - "\u0001\u0000\u0000\u0000\u0017\u020a\u0001\u0000\u0000\u0000\u0019\u0213"+ - "\u0001\u0000\u0000\u0000\u001b\u021a\u0001\u0000\u0000\u0000\u001d\u0224"+ - "\u0001\u0000\u0000\u0000\u001f\u022b\u0001\u0000\u0000\u0000!\u0232\u0001"+ - "\u0000\u0000\u0000#\u0239\u0001\u0000\u0000\u0000%\u0241\u0001\u0000\u0000"+ - "\u0000\'\u024d\u0001\u0000\u0000\u0000)\u0256\u0001\u0000\u0000\u0000"+ - "+\u025c\u0001\u0000\u0000\u0000-\u0263\u0001\u0000\u0000\u0000/\u026a"+ - "\u0001\u0000\u0000\u00001\u0272\u0001\u0000\u0000\u00003\u027a\u0001\u0000"+ - "\u0000\u00005\u0283\u0001\u0000\u0000\u00007\u0293\u0001\u0000\u0000\u0000"+ - "9\u02a2\u0001\u0000\u0000\u0000;\u02ae\u0001\u0000\u0000\u0000=\u02ba"+ - "\u0001\u0000\u0000\u0000?\u02c5\u0001\u0000\u0000\u0000A\u02cd\u0001\u0000"+ - "\u0000\u0000C\u02d5\u0001\u0000\u0000\u0000E\u02de\u0001\u0000\u0000\u0000"+ - "G\u02e7\u0001\u0000\u0000\u0000I\u02ed\u0001\u0000\u0000\u0000K\u02fe"+ - "\u0001\u0000\u0000\u0000M\u030e\u0001\u0000\u0000\u0000O\u0314\u0001\u0000"+ - "\u0000\u0000Q\u0318\u0001\u0000\u0000\u0000S\u031a\u0001\u0000\u0000\u0000"+ - "U\u031c\u0001\u0000\u0000\u0000W\u031f\u0001\u0000\u0000\u0000Y\u0321"+ - "\u0001\u0000\u0000\u0000[\u032a\u0001\u0000\u0000\u0000]\u032c\u0001\u0000"+ - "\u0000\u0000_\u0331\u0001\u0000\u0000\u0000a\u0333\u0001\u0000\u0000\u0000"+ - "c\u0338\u0001\u0000\u0000\u0000e\u0357\u0001\u0000\u0000\u0000g\u035a"+ - "\u0001\u0000\u0000\u0000i\u0388\u0001\u0000\u0000\u0000k\u038a\u0001\u0000"+ - "\u0000\u0000m\u038d\u0001\u0000\u0000\u0000o\u0391\u0001\u0000\u0000\u0000"+ - "q\u0395\u0001\u0000\u0000\u0000s\u0397\u0001\u0000\u0000\u0000u\u039a"+ - "\u0001\u0000\u0000\u0000w\u039c\u0001\u0000\u0000\u0000y\u039e\u0001\u0000"+ - "\u0000\u0000{\u03a3\u0001\u0000\u0000\u0000}\u03a5\u0001\u0000\u0000\u0000"+ - "\u007f\u03ab\u0001\u0000\u0000\u0000\u0081\u03b1\u0001\u0000\u0000\u0000"+ - "\u0083\u03b4\u0001\u0000\u0000\u0000\u0085\u03b7\u0001\u0000\u0000\u0000"+ - "\u0087\u03bc\u0001\u0000\u0000\u0000\u0089\u03c1\u0001\u0000\u0000\u0000"+ - "\u008b\u03c3\u0001\u0000\u0000\u0000\u008d\u03c7\u0001\u0000\u0000\u0000"+ - "\u008f\u03cc\u0001\u0000\u0000\u0000\u0091\u03d2\u0001\u0000\u0000\u0000"+ - "\u0093\u03d5\u0001\u0000\u0000\u0000\u0095\u03d7\u0001\u0000\u0000\u0000"+ - "\u0097\u03dd\u0001\u0000\u0000\u0000\u0099\u03df\u0001\u0000\u0000\u0000"+ - "\u009b\u03e4\u0001\u0000\u0000\u0000\u009d\u03e7\u0001\u0000\u0000\u0000"+ - "\u009f\u03ea\u0001\u0000\u0000\u0000\u00a1\u03ed\u0001\u0000\u0000\u0000"+ - "\u00a3\u03ef\u0001\u0000\u0000\u0000\u00a5\u03f2\u0001\u0000\u0000\u0000"+ - "\u00a7\u03f4\u0001\u0000\u0000\u0000\u00a9\u03f7\u0001\u0000\u0000\u0000"+ - "\u00ab\u03f9\u0001\u0000\u0000\u0000\u00ad\u03fb\u0001\u0000\u0000\u0000"+ - "\u00af\u03fd\u0001\u0000\u0000\u0000\u00b1\u03ff\u0001\u0000\u0000\u0000"+ - "\u00b3\u0401\u0001\u0000\u0000\u0000\u00b5\u0403\u0001\u0000\u0000\u0000"+ - "\u00b7\u0405\u0001\u0000\u0000\u0000\u00b9\u0409\u0001\u0000\u0000\u0000"+ - "\u00bb\u040e\u0001\u0000\u0000\u0000\u00bd\u0424\u0001\u0000\u0000\u0000"+ - "\u00bf\u0426\u0001\u0000\u0000\u0000\u00c1\u042b\u0001\u0000\u0000\u0000"+ - "\u00c3\u0440\u0001\u0000\u0000\u0000\u00c5\u0442\u0001\u0000\u0000\u0000"+ - "\u00c7\u044a\u0001\u0000\u0000\u0000\u00c9\u044c\u0001\u0000\u0000\u0000"+ - "\u00cb\u0450\u0001\u0000\u0000\u0000\u00cd\u0454\u0001\u0000\u0000\u0000"+ - "\u00cf\u0458\u0001\u0000\u0000\u0000\u00d1\u045d\u0001\u0000\u0000\u0000"+ - "\u00d3\u0462\u0001\u0000\u0000\u0000\u00d5\u0466\u0001\u0000\u0000\u0000"+ - "\u00d7\u046a\u0001\u0000\u0000\u0000\u00d9\u046e\u0001\u0000\u0000\u0000"+ - "\u00db\u0473\u0001\u0000\u0000\u0000\u00dd\u0477\u0001\u0000\u0000\u0000"+ - "\u00df\u047b\u0001\u0000\u0000\u0000\u00e1\u047f\u0001\u0000\u0000\u0000"+ - "\u00e3\u0483\u0001\u0000\u0000\u0000\u00e5\u0487\u0001\u0000\u0000\u0000"+ - "\u00e7\u0493\u0001\u0000\u0000\u0000\u00e9\u0496\u0001\u0000\u0000\u0000"+ - "\u00eb\u049a\u0001\u0000\u0000\u0000\u00ed\u049e\u0001\u0000\u0000\u0000"+ - "\u00ef\u04a2\u0001\u0000\u0000\u0000\u00f1\u04a6\u0001\u0000\u0000\u0000"+ - "\u00f3\u04aa\u0001\u0000\u0000\u0000\u00f5\u04ae\u0001\u0000\u0000\u0000"+ - "\u00f7\u04b3\u0001\u0000\u0000\u0000\u00f9\u04b7\u0001\u0000\u0000\u0000"+ - "\u00fb\u04bb\u0001\u0000\u0000\u0000\u00fd\u04bf\u0001\u0000\u0000\u0000"+ - "\u00ff\u04c7\u0001\u0000\u0000\u0000\u0101\u04dc\u0001\u0000\u0000\u0000"+ - "\u0103\u04e0\u0001\u0000\u0000\u0000\u0105\u04e4\u0001\u0000\u0000\u0000"+ - "\u0107\u04e8\u0001\u0000\u0000\u0000\u0109\u04ec\u0001\u0000\u0000\u0000"+ - "\u010b\u04f0\u0001\u0000\u0000\u0000\u010d\u04f5\u0001\u0000\u0000\u0000"+ - "\u010f\u04f9\u0001\u0000\u0000\u0000\u0111\u04fd\u0001\u0000\u0000\u0000"+ - "\u0113\u0501\u0001\u0000\u0000\u0000\u0115\u0505\u0001\u0000\u0000\u0000"+ - "\u0117\u0509\u0001\u0000\u0000\u0000\u0119\u050c\u0001\u0000\u0000\u0000"+ - "\u011b\u0510\u0001\u0000\u0000\u0000\u011d\u0514\u0001\u0000\u0000\u0000"+ - "\u011f\u0518\u0001\u0000\u0000\u0000\u0121\u051c\u0001\u0000\u0000\u0000"+ - "\u0123\u0521\u0001\u0000\u0000\u0000\u0125\u0526\u0001\u0000\u0000\u0000"+ - "\u0127\u052b\u0001\u0000\u0000\u0000\u0129\u0532\u0001\u0000\u0000\u0000"+ - "\u012b\u053b\u0001\u0000\u0000\u0000\u012d\u0542\u0001\u0000\u0000\u0000"+ - "\u012f\u0546\u0001\u0000\u0000\u0000\u0131\u054a\u0001\u0000\u0000\u0000"+ - "\u0133\u054e\u0001\u0000\u0000\u0000\u0135\u0552\u0001\u0000\u0000\u0000"+ - "\u0137\u0558\u0001\u0000\u0000\u0000\u0139\u055c\u0001\u0000\u0000\u0000"+ - "\u013b\u0560\u0001\u0000\u0000\u0000\u013d\u0564\u0001\u0000\u0000\u0000"+ - "\u013f\u0568\u0001\u0000\u0000\u0000\u0141\u056c\u0001\u0000\u0000\u0000"+ - "\u0143\u0570\u0001\u0000\u0000\u0000\u0145\u0574\u0001\u0000\u0000\u0000"+ - "\u0147\u0578\u0001\u0000\u0000\u0000\u0149\u057c\u0001\u0000\u0000\u0000"+ - "\u014b\u0580\u0001\u0000\u0000\u0000\u014d\u0584\u0001\u0000\u0000\u0000"+ - "\u014f\u0589\u0001\u0000\u0000\u0000\u0151\u058d\u0001\u0000\u0000\u0000"+ - "\u0153\u0591\u0001\u0000\u0000\u0000\u0155\u0595\u0001\u0000\u0000\u0000"+ - "\u0157\u0599\u0001\u0000\u0000\u0000\u0159\u059d\u0001\u0000\u0000\u0000"+ - "\u015b\u05a1\u0001\u0000\u0000\u0000\u015d\u05a5\u0001\u0000\u0000\u0000"+ - "\u015f\u05a9\u0001\u0000\u0000\u0000\u0161\u05ae\u0001\u0000\u0000\u0000"+ - "\u0163\u05b3\u0001\u0000\u0000\u0000\u0165\u05b7\u0001\u0000\u0000\u0000"+ - "\u0167\u05bb\u0001\u0000\u0000\u0000\u0169\u05bf\u0001\u0000\u0000\u0000"+ - "\u016b\u05c4\u0001\u0000\u0000\u0000\u016d\u05cd\u0001\u0000\u0000\u0000"+ - "\u016f\u05d1\u0001\u0000\u0000\u0000\u0171\u05d5\u0001\u0000\u0000\u0000"+ - "\u0173\u05d9\u0001\u0000\u0000\u0000\u0175\u05dd\u0001\u0000\u0000\u0000"+ - "\u0177\u05e2\u0001\u0000\u0000\u0000\u0179\u05e6\u0001\u0000\u0000\u0000"+ - "\u017b\u05ea\u0001\u0000\u0000\u0000\u017d\u05ee\u0001\u0000\u0000\u0000"+ - "\u017f\u05f3\u0001\u0000\u0000\u0000\u0181\u05f7\u0001\u0000\u0000\u0000"+ - "\u0183\u05fb\u0001\u0000\u0000\u0000\u0185\u05ff\u0001\u0000\u0000\u0000"+ - "\u0187\u0603\u0001\u0000\u0000\u0000\u0189\u0607\u0001\u0000\u0000\u0000"+ - "\u018b\u060d\u0001\u0000\u0000\u0000\u018d\u0611\u0001\u0000\u0000\u0000"+ - "\u018f\u0615\u0001\u0000\u0000\u0000\u0191\u0619\u0001\u0000\u0000\u0000"+ - "\u0193\u061d\u0001\u0000\u0000\u0000\u0195\u0621\u0001\u0000\u0000\u0000"+ - "\u0197\u0625\u0001\u0000\u0000\u0000\u0199\u062a\u0001\u0000\u0000\u0000"+ - "\u019b\u062f\u0001\u0000\u0000\u0000\u019d\u0633\u0001\u0000\u0000\u0000"+ - "\u019f\u0639\u0001\u0000\u0000\u0000\u01a1\u0642\u0001\u0000\u0000\u0000"+ - "\u01a3\u0646\u0001\u0000\u0000\u0000\u01a5\u064a\u0001\u0000\u0000\u0000"+ - "\u01a7\u064e\u0001\u0000\u0000\u0000\u01a9\u0652\u0001\u0000\u0000\u0000"+ - "\u01ab\u0656\u0001\u0000\u0000\u0000\u01ad\u065a\u0001\u0000\u0000\u0000"+ - "\u01af\u065e\u0001\u0000\u0000\u0000\u01b1\u0662\u0001\u0000\u0000\u0000"+ - "\u01b3\u0667\u0001\u0000\u0000\u0000\u01b5\u066d\u0001\u0000\u0000\u0000"+ - "\u01b7\u0673\u0001\u0000\u0000\u0000\u01b9\u0677\u0001\u0000\u0000\u0000"+ - "\u01bb\u067b\u0001\u0000\u0000\u0000\u01bd\u067f\u0001\u0000\u0000\u0000"+ - "\u01bf\u0685\u0001\u0000\u0000\u0000\u01c1\u068b\u0001\u0000\u0000\u0000"+ - "\u01c3\u068f\u0001\u0000\u0000\u0000\u01c5\u0693\u0001\u0000\u0000\u0000"+ - "\u01c7\u0697\u0001\u0000\u0000\u0000\u01c9\u069d\u0001\u0000\u0000\u0000"+ - "\u01cb\u06a3\u0001\u0000\u0000\u0000\u01cd\u06a9\u0001\u0000\u0000\u0000"+ - "\u01cf\u06ae\u0001\u0000\u0000\u0000\u01d1\u06b3\u0001\u0000\u0000\u0000"+ - "\u01d3\u06b7\u0001\u0000\u0000\u0000\u01d5\u06bb\u0001\u0000\u0000\u0000"+ - "\u01d7\u06bf\u0001\u0000\u0000\u0000\u01d9\u06c3\u0001\u0000\u0000\u0000"+ - "\u01db\u06c7\u0001\u0000\u0000\u0000\u01dd\u06cb\u0001\u0000\u0000\u0000"+ - "\u01df\u06cf\u0001\u0000\u0000\u0000\u01e1\u06d3\u0001\u0000\u0000\u0000"+ - "\u01e3\u06d7\u0001\u0000\u0000\u0000\u01e5\u06dc\u0001\u0000\u0000\u0000"+ - "\u01e7\u06e0\u0001\u0000\u0000\u0000\u01e9\u06e4\u0001\u0000\u0000\u0000"+ - "\u01eb\u06e8\u0001\u0000\u0000\u0000\u01ed\u06ec\u0001\u0000\u0000\u0000"+ - "\u01ef\u06f1\u0001\u0000\u0000\u0000\u01f1\u06f6\u0001\u0000\u0000\u0000"+ - "\u01f3\u06fb\u0001\u0000\u0000\u0000\u01f5\u06ff\u0001\u0000\u0000\u0000"+ - "\u01f7\u0703\u0001\u0000\u0000\u0000\u01f9\u01fa\u0007\u0000\u0000\u0000"+ - "\u01fa\u01fb\u0007\u0001\u0000\u0000\u01fb\u01fc\u0007\u0002\u0000\u0000"+ - "\u01fc\u01fd\u0007\u0002\u0000\u0000\u01fd\u01fe\u0007\u0003\u0000\u0000"+ - "\u01fe\u01ff\u0007\u0004\u0000\u0000\u01ff\u0200\u0007\u0005\u0000\u0000"+ - "\u0200\u0201\u0001\u0000\u0000\u0000\u0201\u0202\u0006\u0000\u0000\u0000"+ - "\u0202\u0014\u0001\u0000\u0000\u0000\u0203\u0204\u0007\u0000\u0000\u0000"+ - "\u0204\u0205\u0007\u0006\u0000\u0000\u0205\u0206\u0007\u0007\u0000\u0000"+ - "\u0206\u0207\u0007\b\u0000\u0000\u0207\u0208\u0001\u0000\u0000\u0000\u0208"+ - "\u0209\u0006\u0001\u0001\u0000\u0209\u0016\u0001\u0000\u0000\u0000\u020a"+ - "\u020b\u0007\u0003\u0000\u0000\u020b\u020c\u0007\t\u0000\u0000\u020c\u020d"+ - "\u0007\u0006\u0000\u0000\u020d\u020e\u0007\u0001\u0000\u0000\u020e\u020f"+ - "\u0007\u0004\u0000\u0000\u020f\u0210\u0007\n\u0000\u0000\u0210\u0211\u0001"+ - "\u0000\u0000\u0000\u0211\u0212\u0006\u0002\u0002\u0000\u0212\u0018\u0001"+ - "\u0000\u0000\u0000\u0213\u0214\u0007\u0003\u0000\u0000\u0214\u0215\u0007"+ - "\u000b\u0000\u0000\u0215\u0216\u0007\f\u0000\u0000\u0216\u0217\u0007\r"+ - "\u0000\u0000\u0217\u0218\u0001\u0000\u0000\u0000\u0218\u0219\u0006\u0003"+ - "\u0000\u0000\u0219\u001a\u0001\u0000\u0000\u0000\u021a\u021b\u0007\u0003"+ - "\u0000\u0000\u021b\u021c\u0007\u000e\u0000\u0000\u021c\u021d\u0007\b\u0000"+ - "\u0000\u021d\u021e\u0007\r\u0000\u0000\u021e\u021f\u0007\f\u0000\u0000"+ - "\u021f\u0220\u0007\u0001\u0000\u0000\u0220\u0221\u0007\t\u0000\u0000\u0221"+ - "\u0222\u0001\u0000\u0000\u0000\u0222\u0223\u0006\u0004\u0003\u0000\u0223"+ - "\u001c\u0001\u0000\u0000\u0000\u0224\u0225\u0007\u000f\u0000\u0000\u0225"+ - "\u0226\u0007\u0006\u0000\u0000\u0226\u0227\u0007\u0007\u0000\u0000\u0227"+ - "\u0228\u0007\u0010\u0000\u0000\u0228\u0229\u0001\u0000\u0000\u0000\u0229"+ - "\u022a\u0006\u0005\u0004\u0000\u022a\u001e\u0001\u0000\u0000\u0000\u022b"+ - "\u022c\u0007\u0011\u0000\u0000\u022c\u022d\u0007\u0006\u0000\u0000\u022d"+ - "\u022e\u0007\u0007\u0000\u0000\u022e\u022f\u0007\u0012\u0000\u0000\u022f"+ - "\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0006\u0006\u0000\u0000\u0231"+ - " \u0001\u0000\u0000\u0000\u0232\u0233\u0007\u0012\u0000\u0000\u0233\u0234"+ - "\u0007\u0003\u0000\u0000\u0234\u0235\u0007\u0003\u0000\u0000\u0235\u0236"+ - "\u0007\b\u0000\u0000\u0236\u0237\u0001\u0000\u0000\u0000\u0237\u0238\u0006"+ - "\u0007\u0001\u0000\u0238\"\u0001\u0000\u0000\u0000\u0239\u023a\u0007\r"+ - "\u0000\u0000\u023a\u023b\u0007\u0001\u0000\u0000\u023b\u023c\u0007\u0010"+ - "\u0000\u0000\u023c\u023d\u0007\u0001\u0000\u0000\u023d\u023e\u0007\u0005"+ - "\u0000\u0000\u023e\u023f\u0001\u0000\u0000\u0000\u023f\u0240\u0006\b\u0000"+ - "\u0000\u0240$\u0001\u0000\u0000\u0000\u0241\u0242\u0007\u0010\u0000\u0000"+ - "\u0242\u0243\u0007\u000b\u0000\u0000\u0243\u0244\u0005_\u0000\u0000\u0244"+ - "\u0245\u0007\u0003\u0000\u0000\u0245\u0246\u0007\u000e\u0000\u0000\u0246"+ - "\u0247\u0007\b\u0000\u0000\u0247\u0248\u0007\f\u0000\u0000\u0248\u0249"+ - "\u0007\t\u0000\u0000\u0249\u024a\u0007\u0000\u0000\u0000\u024a\u024b\u0001"+ - "\u0000\u0000\u0000\u024b\u024c\u0006\t\u0005\u0000\u024c&\u0001\u0000"+ - "\u0000\u0000\u024d\u024e\u0007\u0006\u0000\u0000\u024e\u024f\u0007\u0003"+ - "\u0000\u0000\u024f\u0250\u0007\t\u0000\u0000\u0250\u0251\u0007\f\u0000"+ - "\u0000\u0251\u0252\u0007\u0010\u0000\u0000\u0252\u0253\u0007\u0003\u0000"+ - "\u0000\u0253\u0254\u0001\u0000\u0000\u0000\u0254\u0255\u0006\n\u0006\u0000"+ - "\u0255(\u0001\u0000\u0000\u0000\u0256\u0257\u0007\u0006\u0000\u0000\u0257"+ - "\u0258\u0007\u0007\u0000\u0000\u0258\u0259\u0007\u0013\u0000\u0000\u0259"+ - "\u025a\u0001\u0000\u0000\u0000\u025a\u025b\u0006\u000b\u0000\u0000\u025b"+ - "*\u0001\u0000\u0000\u0000\u025c\u025d\u0007\u0002\u0000\u0000\u025d\u025e"+ - "\u0007\n\u0000\u0000\u025e\u025f\u0007\u0007\u0000\u0000\u025f\u0260\u0007"+ - "\u0013\u0000\u0000\u0260\u0261\u0001\u0000\u0000\u0000\u0261\u0262\u0006"+ - "\f\u0007\u0000\u0262,\u0001\u0000\u0000\u0000\u0263\u0264\u0007\u0002"+ - "\u0000\u0000\u0264\u0265\u0007\u0007\u0000\u0000\u0265\u0266\u0007\u0006"+ - "\u0000\u0000\u0266\u0267\u0007\u0005\u0000\u0000\u0267\u0268\u0001\u0000"+ - "\u0000\u0000\u0268\u0269\u0006\r\u0000\u0000\u0269.\u0001\u0000\u0000"+ - "\u0000\u026a\u026b\u0007\u0002\u0000\u0000\u026b\u026c\u0007\u0005\u0000"+ - "\u0000\u026c\u026d\u0007\f\u0000\u0000\u026d\u026e\u0007\u0005\u0000\u0000"+ - "\u026e\u026f\u0007\u0002\u0000\u0000\u026f\u0270\u0001\u0000\u0000\u0000"+ - "\u0270\u0271\u0006\u000e\u0000\u0000\u02710\u0001\u0000\u0000\u0000\u0272"+ - "\u0273\u0007\u0013\u0000\u0000\u0273\u0274\u0007\n\u0000\u0000\u0274\u0275"+ - "\u0007\u0003\u0000\u0000\u0275\u0276\u0007\u0006\u0000\u0000\u0276\u0277"+ - "\u0007\u0003\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000\u0278\u0279"+ - "\u0006\u000f\u0000\u0000\u02792\u0001\u0000\u0000\u0000\u027a\u027b\u0007"+ - "\r\u0000\u0000\u027b\u027c\u0007\u0007\u0000\u0000\u027c\u027d\u0007\u0007"+ - "\u0000\u0000\u027d\u027e\u0007\u0012\u0000\u0000\u027e\u027f\u0007\u0014"+ - "\u0000\u0000\u027f\u0280\u0007\b\u0000\u0000\u0280\u0281\u0001\u0000\u0000"+ - "\u0000\u0281\u0282\u0006\u0010\b\u0000\u02824\u0001\u0000\u0000\u0000"+ - "\u0283\u0284\u0004\u0011\u0000\u0000\u0284\u0285\u0007\u0004\u0000\u0000"+ - "\u0285\u0286\u0007\n\u0000\u0000\u0286\u0287\u0007\f\u0000\u0000\u0287"+ - "\u0288\u0007\t\u0000\u0000\u0288\u0289\u0007\u0011\u0000\u0000\u0289\u028a"+ - "\u0007\u0003\u0000\u0000\u028a\u028b\u0005_\u0000\u0000\u028b\u028c\u0007"+ - "\b\u0000\u0000\u028c\u028d\u0007\u0007\u0000\u0000\u028d\u028e\u0007\u0001"+ - "\u0000\u0000\u028e\u028f\u0007\t\u0000\u0000\u028f\u0290\u0007\u0005\u0000"+ - "\u0000\u0290\u0291\u0001\u0000\u0000\u0000\u0291\u0292\u0006\u0011\t\u0000"+ - "\u02926\u0001\u0000\u0000\u0000\u0293\u0294\u0004\u0012\u0001\u0000\u0294"+ - "\u0295\u0007\u0001\u0000\u0000\u0295\u0296\u0007\t\u0000\u0000\u0296\u0297"+ - "\u0007\r\u0000\u0000\u0297\u0298\u0007\u0001\u0000\u0000\u0298\u0299\u0007"+ - "\t\u0000\u0000\u0299\u029a\u0007\u0003\u0000\u0000\u029a\u029b\u0007\u0002"+ - "\u0000\u0000\u029b\u029c\u0007\u0005\u0000\u0000\u029c\u029d\u0007\f\u0000"+ - "\u0000\u029d\u029e\u0007\u0005\u0000\u0000\u029e\u029f\u0007\u0002\u0000"+ - "\u0000\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1\u0006\u0012\u0000"+ - "\u0000\u02a18\u0001\u0000\u0000\u0000\u02a2\u02a3\u0004\u0013\u0002\u0000"+ - "\u02a3\u02a4\u0007\u0001\u0000\u0000\u02a4\u02a5\u0007\t\u0000\u0000\u02a5"+ - "\u02a6\u0007\u0002\u0000\u0000\u02a6\u02a7\u0007\u0001\u0000\u0000\u02a7"+ - "\u02a8\u0007\u0002\u0000\u0000\u02a8\u02a9\u0007\u0005\u0000\u0000\u02a9"+ - "\u02aa\u0005_\u0000\u0000\u02aa\u02ab\u0005\u8001\uf414\u0000\u0000\u02ab"+ - "\u02ac\u0001\u0000\u0000\u0000\u02ac\u02ad\u0006\u0013\u0001\u0000\u02ad"+ - ":\u0001\u0000\u0000\u0000\u02ae\u02af\u0004\u0014\u0003\u0000\u02af\u02b0"+ - "\u0007\r\u0000\u0000\u02b0\u02b1\u0007\u0007\u0000\u0000\u02b1\u02b2\u0007"+ - "\u0007\u0000\u0000\u02b2\u02b3\u0007\u0012\u0000\u0000\u02b3\u02b4\u0007"+ - "\u0014\u0000\u0000\u02b4\u02b5\u0007\b\u0000\u0000\u02b5\u02b6\u0005_"+ - "\u0000\u0000\u02b6\u02b7\u0005\u8001\uf414\u0000\u0000\u02b7\u02b8\u0001"+ - "\u0000\u0000\u0000\u02b8\u02b9\u0006\u0014\n\u0000\u02b9<\u0001\u0000"+ - "\u0000\u0000\u02ba\u02bb\u0004\u0015\u0004\u0000\u02bb\u02bc\u0007\u0010"+ - "\u0000\u0000\u02bc\u02bd\u0007\u0003\u0000\u0000\u02bd\u02be\u0007\u0005"+ - "\u0000\u0000\u02be\u02bf\u0007\u0006\u0000\u0000\u02bf\u02c0\u0007\u0001"+ - "\u0000\u0000\u02c0\u02c1\u0007\u0004\u0000\u0000\u02c1\u02c2\u0007\u0002"+ - "\u0000\u0000\u02c2\u02c3\u0001\u0000\u0000\u0000\u02c3\u02c4\u0006\u0015"+ - "\u000b\u0000\u02c4>\u0001\u0000\u0000\u0000\u02c5\u02c6\u0004\u0016\u0005"+ - "\u0000\u02c6\u02c7\u0007\u000f\u0000\u0000\u02c7\u02c8\u0007\u0014\u0000"+ - "\u0000\u02c8\u02c9\u0007\r\u0000\u0000\u02c9\u02ca\u0007\r\u0000\u0000"+ - "\u02ca\u02cb\u0001\u0000\u0000\u0000\u02cb\u02cc\u0006\u0016\b\u0000\u02cc"+ - "@\u0001\u0000\u0000\u0000\u02cd\u02ce\u0004\u0017\u0006\u0000\u02ce\u02cf"+ - "\u0007\r\u0000\u0000\u02cf\u02d0\u0007\u0003\u0000\u0000\u02d0\u02d1\u0007"+ - "\u000f\u0000\u0000\u02d1\u02d2\u0007\u0005\u0000\u0000\u02d2\u02d3\u0001"+ - "\u0000\u0000\u0000\u02d3\u02d4\u0006\u0017\b\u0000\u02d4B\u0001\u0000"+ - "\u0000\u0000\u02d5\u02d6\u0004\u0018\u0007\u0000\u02d6\u02d7\u0007\u0006"+ - "\u0000\u0000\u02d7\u02d8\u0007\u0001\u0000\u0000\u02d8\u02d9\u0007\u0011"+ - "\u0000\u0000\u02d9\u02da\u0007\n\u0000\u0000\u02da\u02db\u0007\u0005\u0000"+ - "\u0000\u02db\u02dc\u0001\u0000\u0000\u0000\u02dc\u02dd\u0006\u0018\b\u0000"+ - "\u02ddD\u0001\u0000\u0000\u0000\u02de\u02df\u0004\u0019\b\u0000\u02df"+ - "\u02e0\u0007\u000f\u0000\u0000\u02e0\u02e1\u0007\u0007\u0000\u0000\u02e1"+ - "\u02e2\u0007\u0006\u0000\u0000\u02e2\u02e3\u0007\u0012\u0000\u0000\u02e3"+ - "\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0006\u0019\f\u0000\u02e5F"+ - "\u0001\u0000\u0000\u0000\u02e6\u02e8\b\u0015\u0000\u0000\u02e7\u02e6\u0001"+ - "\u0000\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9\u02e7\u0001"+ - "\u0000\u0000\u0000\u02e9\u02ea\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001"+ - "\u0000\u0000\u0000\u02eb\u02ec\u0006\u001a\u0000\u0000\u02ecH\u0001\u0000"+ - "\u0000\u0000\u02ed\u02ee\u0005/\u0000\u0000\u02ee\u02ef\u0005/\u0000\u0000"+ - "\u02ef\u02f3\u0001\u0000\u0000\u0000\u02f0\u02f2\b\u0016\u0000\u0000\u02f1"+ - "\u02f0\u0001\u0000\u0000\u0000\u02f2\u02f5\u0001\u0000\u0000\u0000\u02f3"+ - "\u02f1\u0001\u0000\u0000\u0000\u02f3\u02f4\u0001\u0000\u0000\u0000\u02f4"+ - "\u02f7\u0001\u0000\u0000\u0000\u02f5\u02f3\u0001\u0000\u0000\u0000\u02f6"+ - "\u02f8\u0005\r\u0000\u0000\u02f7\u02f6\u0001\u0000\u0000\u0000\u02f7\u02f8"+ - "\u0001\u0000\u0000\u0000\u02f8\u02fa\u0001\u0000\u0000\u0000\u02f9\u02fb"+ - "\u0005\n\u0000\u0000\u02fa\u02f9\u0001\u0000\u0000\u0000\u02fa\u02fb\u0001"+ - "\u0000\u0000\u0000\u02fb\u02fc\u0001\u0000\u0000\u0000\u02fc\u02fd\u0006"+ - "\u001b\r\u0000\u02fdJ\u0001\u0000\u0000\u0000\u02fe\u02ff\u0005/\u0000"+ - "\u0000\u02ff\u0300\u0005*\u0000\u0000\u0300\u0305\u0001\u0000\u0000\u0000"+ - "\u0301\u0304\u0003K\u001c\u0000\u0302\u0304\t\u0000\u0000\u0000\u0303"+ - "\u0301\u0001\u0000\u0000\u0000\u0303\u0302\u0001\u0000\u0000\u0000\u0304"+ - "\u0307\u0001\u0000\u0000\u0000\u0305\u0306\u0001\u0000\u0000\u0000\u0305"+ - "\u0303\u0001\u0000\u0000\u0000\u0306\u0308\u0001\u0000\u0000\u0000\u0307"+ - "\u0305\u0001\u0000\u0000\u0000\u0308\u0309\u0005*\u0000\u0000\u0309\u030a"+ - "\u0005/\u0000\u0000\u030a\u030b\u0001\u0000\u0000\u0000\u030b\u030c\u0006"+ - "\u001c\r\u0000\u030cL\u0001\u0000\u0000\u0000\u030d\u030f\u0007\u0017"+ - "\u0000\u0000\u030e\u030d\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000"+ - "\u0000\u0000\u0310\u030e\u0001\u0000\u0000\u0000\u0310\u0311\u0001\u0000"+ - "\u0000\u0000\u0311\u0312\u0001\u0000\u0000\u0000\u0312\u0313\u0006\u001d"+ - "\r\u0000\u0313N\u0001\u0000\u0000\u0000\u0314\u0315\u0005|\u0000\u0000"+ - "\u0315\u0316\u0001\u0000\u0000\u0000\u0316\u0317\u0006\u001e\u000e\u0000"+ - "\u0317P\u0001\u0000\u0000\u0000\u0318\u0319\u0007\u0018\u0000\u0000\u0319"+ - "R\u0001\u0000\u0000\u0000\u031a\u031b\u0007\u0019\u0000\u0000\u031bT\u0001"+ - "\u0000\u0000\u0000\u031c\u031d\u0005\\\u0000\u0000\u031d\u031e\u0007\u001a"+ - "\u0000\u0000\u031eV\u0001\u0000\u0000\u0000\u031f\u0320\b\u001b\u0000"+ - "\u0000\u0320X\u0001\u0000\u0000\u0000\u0321\u0323\u0007\u0003\u0000\u0000"+ - "\u0322\u0324\u0007\u001c\u0000\u0000\u0323\u0322\u0001\u0000\u0000\u0000"+ - "\u0323\u0324\u0001\u0000\u0000\u0000\u0324\u0326\u0001\u0000\u0000\u0000"+ - "\u0325\u0327\u0003Q\u001f\u0000\u0326\u0325\u0001\u0000\u0000\u0000\u0327"+ - "\u0328\u0001\u0000\u0000\u0000\u0328\u0326\u0001\u0000\u0000\u0000\u0328"+ - "\u0329\u0001\u0000\u0000\u0000\u0329Z\u0001\u0000\u0000\u0000\u032a\u032b"+ - "\u0005@\u0000\u0000\u032b\\\u0001\u0000\u0000\u0000\u032c\u032d\u0005"+ - "`\u0000\u0000\u032d^\u0001\u0000\u0000\u0000\u032e\u0332\b\u001d\u0000"+ - "\u0000\u032f\u0330\u0005`\u0000\u0000\u0330\u0332\u0005`\u0000\u0000\u0331"+ - "\u032e\u0001\u0000\u0000\u0000\u0331\u032f\u0001\u0000\u0000\u0000\u0332"+ - "`\u0001\u0000\u0000\u0000\u0333\u0334\u0005_\u0000\u0000\u0334b\u0001"+ - "\u0000\u0000\u0000\u0335\u0339\u0003S \u0000\u0336\u0339\u0003Q\u001f"+ - "\u0000\u0337\u0339\u0003a\'\u0000\u0338\u0335\u0001\u0000\u0000\u0000"+ - "\u0338\u0336\u0001\u0000\u0000\u0000\u0338\u0337\u0001\u0000\u0000\u0000"+ - "\u0339d\u0001\u0000\u0000\u0000\u033a\u033f\u0005\"\u0000\u0000\u033b"+ - "\u033e\u0003U!\u0000\u033c\u033e\u0003W\"\u0000\u033d\u033b\u0001\u0000"+ - "\u0000\u0000\u033d\u033c\u0001\u0000\u0000\u0000\u033e\u0341\u0001\u0000"+ - "\u0000\u0000\u033f\u033d\u0001\u0000\u0000\u0000\u033f\u0340\u0001\u0000"+ - "\u0000\u0000\u0340\u0342\u0001\u0000\u0000\u0000\u0341\u033f\u0001\u0000"+ - "\u0000\u0000\u0342\u0358\u0005\"\u0000\u0000\u0343\u0344\u0005\"\u0000"+ - "\u0000\u0344\u0345\u0005\"\u0000\u0000\u0345\u0346\u0005\"\u0000\u0000"+ - "\u0346\u034a\u0001\u0000\u0000\u0000\u0347\u0349\b\u0016\u0000\u0000\u0348"+ - "\u0347\u0001\u0000\u0000\u0000\u0349\u034c\u0001\u0000\u0000\u0000\u034a"+ - "\u034b\u0001\u0000\u0000\u0000\u034a\u0348\u0001\u0000\u0000\u0000\u034b"+ - "\u034d\u0001\u0000\u0000\u0000\u034c\u034a\u0001\u0000\u0000\u0000\u034d"+ - "\u034e\u0005\"\u0000\u0000\u034e\u034f\u0005\"\u0000\u0000\u034f\u0350"+ - "\u0005\"\u0000\u0000\u0350\u0352\u0001\u0000\u0000\u0000\u0351\u0353\u0005"+ - "\"\u0000\u0000\u0352\u0351\u0001\u0000\u0000\u0000\u0352\u0353\u0001\u0000"+ - "\u0000\u0000\u0353\u0355\u0001\u0000\u0000\u0000\u0354\u0356\u0005\"\u0000"+ - "\u0000\u0355\u0354\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000"+ - "\u0000\u0356\u0358\u0001\u0000\u0000\u0000\u0357\u033a\u0001\u0000\u0000"+ - "\u0000\u0357\u0343\u0001\u0000\u0000\u0000\u0358f\u0001\u0000\u0000\u0000"+ - "\u0359\u035b\u0003Q\u001f\u0000\u035a\u0359\u0001\u0000\u0000\u0000\u035b"+ - "\u035c\u0001\u0000\u0000\u0000\u035c\u035a\u0001\u0000\u0000\u0000\u035c"+ - "\u035d\u0001\u0000\u0000\u0000\u035dh\u0001\u0000\u0000\u0000\u035e\u0360"+ - "\u0003Q\u001f\u0000\u035f\u035e\u0001\u0000\u0000\u0000\u0360\u0361\u0001"+ - "\u0000\u0000\u0000\u0361\u035f\u0001\u0000\u0000\u0000\u0361\u0362\u0001"+ - "\u0000\u0000\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0367\u0003"+ - "{4\u0000\u0364\u0366\u0003Q\u001f\u0000\u0365\u0364\u0001\u0000\u0000"+ - "\u0000\u0366\u0369\u0001\u0000\u0000\u0000\u0367\u0365\u0001\u0000\u0000"+ - "\u0000\u0367\u0368\u0001\u0000\u0000\u0000\u0368\u0389\u0001\u0000\u0000"+ - "\u0000\u0369\u0367\u0001\u0000\u0000\u0000\u036a\u036c\u0003{4\u0000\u036b"+ - "\u036d\u0003Q\u001f\u0000\u036c\u036b\u0001\u0000\u0000\u0000\u036d\u036e"+ - "\u0001\u0000\u0000\u0000\u036e\u036c\u0001\u0000\u0000\u0000\u036e\u036f"+ - "\u0001\u0000\u0000\u0000\u036f\u0389\u0001\u0000\u0000\u0000\u0370\u0372"+ - "\u0003Q\u001f\u0000\u0371\u0370\u0001\u0000\u0000\u0000\u0372\u0373\u0001"+ - "\u0000\u0000\u0000\u0373\u0371\u0001\u0000\u0000\u0000\u0373\u0374\u0001"+ - "\u0000\u0000\u0000\u0374\u037c\u0001\u0000\u0000\u0000\u0375\u0379\u0003"+ - "{4\u0000\u0376\u0378\u0003Q\u001f\u0000\u0377\u0376\u0001\u0000\u0000"+ - "\u0000\u0378\u037b\u0001\u0000\u0000\u0000\u0379\u0377\u0001\u0000\u0000"+ - "\u0000\u0379\u037a\u0001\u0000\u0000\u0000\u037a\u037d\u0001\u0000\u0000"+ - "\u0000\u037b\u0379\u0001\u0000\u0000\u0000\u037c\u0375\u0001\u0000\u0000"+ - "\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u037e\u0001\u0000\u0000"+ - "\u0000\u037e\u037f\u0003Y#\u0000\u037f\u0389\u0001\u0000\u0000\u0000\u0380"+ - "\u0382\u0003{4\u0000\u0381\u0383\u0003Q\u001f\u0000\u0382\u0381\u0001"+ - "\u0000\u0000\u0000\u0383\u0384\u0001\u0000\u0000\u0000\u0384\u0382\u0001"+ - "\u0000\u0000\u0000\u0384\u0385\u0001\u0000\u0000\u0000\u0385\u0386\u0001"+ - "\u0000\u0000\u0000\u0386\u0387\u0003Y#\u0000\u0387\u0389\u0001\u0000\u0000"+ - "\u0000\u0388\u035f\u0001\u0000\u0000\u0000\u0388\u036a\u0001\u0000\u0000"+ - "\u0000\u0388\u0371\u0001\u0000\u0000\u0000\u0388\u0380\u0001\u0000\u0000"+ - "\u0000\u0389j\u0001\u0000\u0000\u0000\u038a\u038b\u0007\u001e\u0000\u0000"+ - "\u038b\u038c\u0007\u001f\u0000\u0000\u038cl\u0001\u0000\u0000\u0000\u038d"+ - "\u038e\u0007\f\u0000\u0000\u038e\u038f\u0007\t\u0000\u0000\u038f\u0390"+ - "\u0007\u0000\u0000\u0000\u0390n\u0001\u0000\u0000\u0000\u0391\u0392\u0007"+ - "\f\u0000\u0000\u0392\u0393\u0007\u0002\u0000\u0000\u0393\u0394\u0007\u0004"+ - "\u0000\u0000\u0394p\u0001\u0000\u0000\u0000\u0395\u0396\u0005=\u0000\u0000"+ - "\u0396r\u0001\u0000\u0000\u0000\u0397\u0398\u0005:\u0000\u0000\u0398\u0399"+ - "\u0005:\u0000\u0000\u0399t\u0001\u0000\u0000\u0000\u039a\u039b\u0005:"+ - "\u0000\u0000\u039bv\u0001\u0000\u0000\u0000\u039c\u039d\u0005,\u0000\u0000"+ - "\u039dx\u0001\u0000\u0000\u0000\u039e\u039f\u0007\u0000\u0000\u0000\u039f"+ - "\u03a0\u0007\u0003\u0000\u0000\u03a0\u03a1\u0007\u0002\u0000\u0000\u03a1"+ - "\u03a2\u0007\u0004\u0000\u0000\u03a2z\u0001\u0000\u0000\u0000\u03a3\u03a4"+ - "\u0005.\u0000\u0000\u03a4|\u0001\u0000\u0000\u0000\u03a5\u03a6\u0007\u000f"+ - "\u0000\u0000\u03a6\u03a7\u0007\f\u0000\u0000\u03a7\u03a8\u0007\r\u0000"+ - "\u0000\u03a8\u03a9\u0007\u0002\u0000\u0000\u03a9\u03aa\u0007\u0003\u0000"+ - "\u0000\u03aa~\u0001\u0000\u0000\u0000\u03ab\u03ac\u0007\u000f\u0000\u0000"+ - "\u03ac\u03ad\u0007\u0001\u0000\u0000\u03ad\u03ae\u0007\u0006\u0000\u0000"+ - "\u03ae\u03af\u0007\u0002\u0000\u0000\u03af\u03b0\u0007\u0005\u0000\u0000"+ - "\u03b0\u0080\u0001\u0000\u0000\u0000\u03b1\u03b2\u0007\u0001\u0000\u0000"+ - "\u03b2\u03b3\u0007\t\u0000\u0000\u03b3\u0082\u0001\u0000\u0000\u0000\u03b4"+ - "\u03b5\u0007\u0001\u0000\u0000\u03b5\u03b6\u0007\u0002\u0000\u0000\u03b6"+ - "\u0084\u0001\u0000\u0000\u0000\u03b7\u03b8\u0007\r\u0000\u0000\u03b8\u03b9"+ - "\u0007\f\u0000\u0000\u03b9\u03ba\u0007\u0002\u0000\u0000\u03ba\u03bb\u0007"+ - "\u0005\u0000\u0000\u03bb\u0086\u0001\u0000\u0000\u0000\u03bc\u03bd\u0007"+ - "\r\u0000\u0000\u03bd\u03be\u0007\u0001\u0000\u0000\u03be\u03bf\u0007\u0012"+ - "\u0000\u0000\u03bf\u03c0\u0007\u0003\u0000\u0000\u03c0\u0088\u0001\u0000"+ - "\u0000\u0000\u03c1\u03c2\u0005(\u0000\u0000\u03c2\u008a\u0001\u0000\u0000"+ - "\u0000\u03c3\u03c4\u0007\t\u0000\u0000\u03c4\u03c5\u0007\u0007\u0000\u0000"+ - "\u03c5\u03c6\u0007\u0005\u0000\u0000\u03c6\u008c\u0001\u0000\u0000\u0000"+ - "\u03c7\u03c8\u0007\t\u0000\u0000\u03c8\u03c9\u0007\u0014\u0000\u0000\u03c9"+ - "\u03ca\u0007\r\u0000\u0000\u03ca\u03cb\u0007\r\u0000\u0000\u03cb\u008e"+ - "\u0001\u0000\u0000\u0000\u03cc\u03cd\u0007\t\u0000\u0000\u03cd\u03ce\u0007"+ - "\u0014\u0000\u0000\u03ce\u03cf\u0007\r\u0000\u0000\u03cf\u03d0\u0007\r"+ - "\u0000\u0000\u03d0\u03d1\u0007\u0002\u0000\u0000\u03d1\u0090\u0001\u0000"+ - "\u0000\u0000\u03d2\u03d3\u0007\u0007\u0000\u0000\u03d3\u03d4\u0007\u0006"+ - "\u0000\u0000\u03d4\u0092\u0001\u0000\u0000\u0000\u03d5\u03d6\u0005?\u0000"+ - "\u0000\u03d6\u0094\u0001\u0000\u0000\u0000\u03d7\u03d8\u0007\u0006\u0000"+ - "\u0000\u03d8\u03d9\u0007\r\u0000\u0000\u03d9\u03da\u0007\u0001\u0000\u0000"+ - "\u03da\u03db\u0007\u0012\u0000\u0000\u03db\u03dc\u0007\u0003\u0000\u0000"+ - "\u03dc\u0096\u0001\u0000\u0000\u0000\u03dd\u03de\u0005)\u0000\u0000\u03de"+ - "\u0098\u0001\u0000\u0000\u0000\u03df\u03e0\u0007\u0005\u0000\u0000\u03e0"+ - "\u03e1\u0007\u0006\u0000\u0000\u03e1\u03e2\u0007\u0014\u0000\u0000\u03e2"+ - "\u03e3\u0007\u0003\u0000\u0000\u03e3\u009a\u0001\u0000\u0000\u0000\u03e4"+ - "\u03e5\u0005=\u0000\u0000\u03e5\u03e6\u0005=\u0000\u0000\u03e6\u009c\u0001"+ - "\u0000\u0000\u0000\u03e7\u03e8\u0005=\u0000\u0000\u03e8\u03e9\u0005~\u0000"+ - "\u0000\u03e9\u009e\u0001\u0000\u0000\u0000\u03ea\u03eb\u0005!\u0000\u0000"+ - "\u03eb\u03ec\u0005=\u0000\u0000\u03ec\u00a0\u0001\u0000\u0000\u0000\u03ed"+ - "\u03ee\u0005<\u0000\u0000\u03ee\u00a2\u0001\u0000\u0000\u0000\u03ef\u03f0"+ - "\u0005<\u0000\u0000\u03f0\u03f1\u0005=\u0000\u0000\u03f1\u00a4\u0001\u0000"+ - "\u0000\u0000\u03f2\u03f3\u0005>\u0000\u0000\u03f3\u00a6\u0001\u0000\u0000"+ - "\u0000\u03f4\u03f5\u0005>\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6"+ - "\u00a8\u0001\u0000\u0000\u0000\u03f7\u03f8\u0005+\u0000\u0000\u03f8\u00aa"+ - "\u0001\u0000\u0000\u0000\u03f9\u03fa\u0005-\u0000\u0000\u03fa\u00ac\u0001"+ - "\u0000\u0000\u0000\u03fb\u03fc\u0005*\u0000\u0000\u03fc\u00ae\u0001\u0000"+ - "\u0000\u0000\u03fd\u03fe\u0005/\u0000\u0000\u03fe\u00b0\u0001\u0000\u0000"+ - "\u0000\u03ff\u0400\u0005%\u0000\u0000\u0400\u00b2\u0001\u0000\u0000\u0000"+ - "\u0401\u0402\u0005{\u0000\u0000\u0402\u00b4\u0001\u0000\u0000\u0000\u0403"+ - "\u0404\u0005}\u0000\u0000\u0404\u00b6\u0001\u0000\u0000\u0000\u0405\u0406"+ - "\u00031\u000f\u0000\u0406\u0407\u0001\u0000\u0000\u0000\u0407\u0408\u0006"+ - "R\u000f\u0000\u0408\u00b8\u0001\u0000\u0000\u0000\u0409\u040a\u0004S\t"+ - "\u0000\u040a\u040b\u0003-\r\u0000\u040b\u040c\u0001\u0000\u0000\u0000"+ - "\u040c\u040d\u0006S\u0010\u0000\u040d\u00ba\u0001\u0000\u0000\u0000\u040e"+ - "\u040f\u0004T\n\u0000\u040f\u0410\u0003#\b\u0000\u0410\u0411\u0001\u0000"+ - "\u0000\u0000\u0411\u0412\u0006T\u0011\u0000\u0412\u00bc\u0001\u0000\u0000"+ - "\u0000\u0413\u0416\u0003\u0093@\u0000\u0414\u0417\u0003S \u0000\u0415"+ - "\u0417\u0003a\'\u0000\u0416\u0414\u0001\u0000\u0000\u0000\u0416\u0415"+ - "\u0001\u0000\u0000\u0000\u0417\u041b\u0001\u0000\u0000\u0000\u0418\u041a"+ - "\u0003c(\u0000\u0419\u0418\u0001\u0000\u0000\u0000\u041a\u041d\u0001\u0000"+ - "\u0000\u0000\u041b\u0419\u0001\u0000\u0000\u0000\u041b\u041c\u0001\u0000"+ - "\u0000\u0000\u041c\u0425\u0001\u0000\u0000\u0000\u041d\u041b\u0001\u0000"+ - "\u0000\u0000\u041e\u0420\u0003\u0093@\u0000\u041f\u0421\u0003Q\u001f\u0000"+ - "\u0420\u041f\u0001\u0000\u0000\u0000\u0421\u0422\u0001\u0000\u0000\u0000"+ - "\u0422\u0420\u0001\u0000\u0000\u0000\u0422\u0423\u0001\u0000\u0000\u0000"+ - "\u0423\u0425\u0001\u0000\u0000\u0000\u0424\u0413\u0001\u0000\u0000\u0000"+ - "\u0424\u041e\u0001\u0000\u0000\u0000\u0425\u00be\u0001\u0000\u0000\u0000"+ - "\u0426\u0427\u0005[\u0000\u0000\u0427\u0428\u0001\u0000\u0000\u0000\u0428"+ - "\u0429\u0006V\u0000\u0000\u0429\u042a\u0006V\u0000\u0000\u042a\u00c0\u0001"+ - "\u0000\u0000\u0000\u042b\u042c\u0005]\u0000\u0000\u042c\u042d\u0001\u0000"+ - "\u0000\u0000\u042d\u042e\u0006W\u000e\u0000\u042e\u042f\u0006W\u000e\u0000"+ - "\u042f\u00c2\u0001\u0000\u0000\u0000\u0430\u0434\u0003S \u0000\u0431\u0433"+ - "\u0003c(\u0000\u0432\u0431\u0001\u0000\u0000\u0000\u0433\u0436\u0001\u0000"+ - "\u0000\u0000\u0434\u0432\u0001\u0000\u0000\u0000\u0434\u0435\u0001\u0000"+ - "\u0000\u0000\u0435\u0441\u0001\u0000\u0000\u0000\u0436\u0434\u0001\u0000"+ - "\u0000\u0000\u0437\u043a\u0003a\'\u0000\u0438\u043a\u0003[$\u0000\u0439"+ - "\u0437\u0001\u0000\u0000\u0000\u0439\u0438\u0001\u0000\u0000\u0000\u043a"+ - "\u043c\u0001\u0000\u0000\u0000\u043b\u043d\u0003c(\u0000\u043c\u043b\u0001"+ - "\u0000\u0000\u0000\u043d\u043e\u0001\u0000\u0000\u0000\u043e\u043c\u0001"+ - "\u0000\u0000\u0000\u043e\u043f\u0001\u0000\u0000\u0000\u043f\u0441\u0001"+ - "\u0000\u0000\u0000\u0440\u0430\u0001\u0000\u0000\u0000\u0440\u0439\u0001"+ - "\u0000\u0000\u0000\u0441\u00c4\u0001\u0000\u0000\u0000\u0442\u0444\u0003"+ - "]%\u0000\u0443\u0445\u0003_&\u0000\u0444\u0443\u0001\u0000\u0000\u0000"+ - "\u0445\u0446\u0001\u0000\u0000\u0000\u0446\u0444\u0001\u0000\u0000\u0000"+ - "\u0446\u0447\u0001\u0000\u0000\u0000\u0447\u0448\u0001\u0000\u0000\u0000"+ - "\u0448\u0449\u0003]%\u0000\u0449\u00c6\u0001\u0000\u0000\u0000\u044a\u044b"+ - "\u0003\u00c5Y\u0000\u044b\u00c8\u0001\u0000\u0000\u0000\u044c\u044d\u0003"+ - "I\u001b\u0000\u044d\u044e\u0001\u0000\u0000\u0000\u044e\u044f\u0006[\r"+ - "\u0000\u044f\u00ca\u0001\u0000\u0000\u0000\u0450\u0451\u0003K\u001c\u0000"+ - "\u0451\u0452\u0001\u0000\u0000\u0000\u0452\u0453\u0006\\\r\u0000\u0453"+ - "\u00cc\u0001\u0000\u0000\u0000\u0454\u0455\u0003M\u001d\u0000\u0455\u0456"+ - "\u0001\u0000\u0000\u0000\u0456\u0457\u0006]\r\u0000\u0457\u00ce\u0001"+ - "\u0000\u0000\u0000\u0458\u0459\u0003\u00bfV\u0000\u0459\u045a\u0001\u0000"+ - "\u0000\u0000\u045a\u045b\u0006^\u0012\u0000\u045b\u045c\u0006^\u0013\u0000"+ - "\u045c\u00d0\u0001\u0000\u0000\u0000\u045d\u045e\u0003O\u001e\u0000\u045e"+ - "\u045f\u0001\u0000\u0000\u0000\u045f\u0460\u0006_\u0014\u0000\u0460\u0461"+ - "\u0006_\u000e\u0000\u0461\u00d2\u0001\u0000\u0000\u0000\u0462\u0463\u0003"+ - "M\u001d\u0000\u0463\u0464\u0001\u0000\u0000\u0000\u0464\u0465\u0006`\r"+ - "\u0000\u0465\u00d4\u0001\u0000\u0000\u0000\u0466\u0467\u0003I\u001b\u0000"+ - "\u0467\u0468\u0001\u0000\u0000\u0000\u0468\u0469\u0006a\r\u0000\u0469"+ - "\u00d6\u0001\u0000\u0000\u0000\u046a\u046b\u0003K\u001c\u0000\u046b\u046c"+ - "\u0001\u0000\u0000\u0000\u046c\u046d\u0006b\r\u0000\u046d\u00d8\u0001"+ - "\u0000\u0000\u0000\u046e\u046f\u0003O\u001e\u0000\u046f\u0470\u0001\u0000"+ - "\u0000\u0000\u0470\u0471\u0006c\u0014\u0000\u0471\u0472\u0006c\u000e\u0000"+ - "\u0472\u00da\u0001\u0000\u0000\u0000\u0473\u0474\u0003\u00bfV\u0000\u0474"+ - "\u0475\u0001\u0000\u0000\u0000\u0475\u0476\u0006d\u0012\u0000\u0476\u00dc"+ - "\u0001\u0000\u0000\u0000\u0477\u0478\u0003\u00c1W\u0000\u0478\u0479\u0001"+ - "\u0000\u0000\u0000\u0479\u047a\u0006e\u0015\u0000\u047a\u00de\u0001\u0000"+ - "\u0000\u0000\u047b\u047c\u0003u1\u0000\u047c\u047d\u0001\u0000\u0000\u0000"+ - "\u047d\u047e\u0006f\u0016\u0000\u047e\u00e0\u0001\u0000\u0000\u0000\u047f"+ - "\u0480\u0003w2\u0000\u0480\u0481\u0001\u0000\u0000\u0000\u0481\u0482\u0006"+ - "g\u0017\u0000\u0482\u00e2\u0001\u0000\u0000\u0000\u0483\u0484\u0003q/"+ - "\u0000\u0484\u0485\u0001\u0000\u0000\u0000\u0485\u0486\u0006h\u0018\u0000"+ - "\u0486\u00e4\u0001\u0000\u0000\u0000\u0487\u0488\u0007\u0010\u0000\u0000"+ - "\u0488\u0489\u0007\u0003\u0000\u0000\u0489\u048a\u0007\u0005\u0000\u0000"+ - "\u048a\u048b\u0007\f\u0000\u0000\u048b\u048c\u0007\u0000\u0000\u0000\u048c"+ - "\u048d\u0007\f\u0000\u0000\u048d\u048e\u0007\u0005\u0000\u0000\u048e\u048f"+ - "\u0007\f\u0000\u0000\u048f\u00e6\u0001\u0000\u0000\u0000\u0490\u0494\b"+ - " \u0000\u0000\u0491\u0492\u0005/\u0000\u0000\u0492\u0494\b!\u0000\u0000"+ - "\u0493\u0490\u0001\u0000\u0000\u0000\u0493\u0491\u0001\u0000\u0000\u0000"+ - "\u0494\u00e8\u0001\u0000\u0000\u0000\u0495\u0497\u0003\u00e7j\u0000\u0496"+ - "\u0495\u0001\u0000\u0000\u0000\u0497\u0498\u0001\u0000\u0000\u0000\u0498"+ - "\u0496\u0001\u0000\u0000\u0000\u0498\u0499\u0001\u0000\u0000\u0000\u0499"+ - "\u00ea\u0001\u0000\u0000\u0000\u049a\u049b\u0003\u00e9k\u0000\u049b\u049c"+ - "\u0001\u0000\u0000\u0000\u049c\u049d\u0006l\u0019\u0000\u049d\u00ec\u0001"+ - "\u0000\u0000\u0000\u049e\u049f\u0003e)\u0000\u049f\u04a0\u0001\u0000\u0000"+ - "\u0000\u04a0\u04a1\u0006m\u001a\u0000\u04a1\u00ee\u0001\u0000\u0000\u0000"+ - "\u04a2\u04a3\u0003I\u001b\u0000\u04a3\u04a4\u0001\u0000\u0000\u0000\u04a4"+ - "\u04a5\u0006n\r\u0000\u04a5\u00f0\u0001\u0000\u0000\u0000\u04a6\u04a7"+ - "\u0003K\u001c\u0000\u04a7\u04a8\u0001\u0000\u0000\u0000\u04a8\u04a9\u0006"+ - "o\r\u0000\u04a9\u00f2\u0001\u0000\u0000\u0000\u04aa\u04ab\u0003M\u001d"+ - "\u0000\u04ab\u04ac\u0001\u0000\u0000\u0000\u04ac\u04ad\u0006p\r\u0000"+ - "\u04ad\u00f4\u0001\u0000\u0000\u0000\u04ae\u04af\u0003O\u001e\u0000\u04af"+ - "\u04b0\u0001\u0000\u0000\u0000\u04b0\u04b1\u0006q\u0014\u0000\u04b1\u04b2"+ - "\u0006q\u000e\u0000\u04b2\u00f6\u0001\u0000\u0000\u0000\u04b3\u04b4\u0003"+ - "{4\u0000\u04b4\u04b5\u0001\u0000\u0000\u0000\u04b5\u04b6\u0006r\u001b"+ - "\u0000\u04b6\u00f8\u0001\u0000\u0000\u0000\u04b7\u04b8\u0003w2\u0000\u04b8"+ - "\u04b9\u0001\u0000\u0000\u0000\u04b9\u04ba\u0006s\u0017\u0000\u04ba\u00fa"+ - "\u0001\u0000\u0000\u0000\u04bb\u04bc\u0003\u0093@\u0000\u04bc\u04bd\u0001"+ - "\u0000\u0000\u0000\u04bd\u04be\u0006t\u001c\u0000\u04be\u00fc\u0001\u0000"+ - "\u0000\u0000\u04bf\u04c0\u0003\u00bdU\u0000\u04c0\u04c1\u0001\u0000\u0000"+ - "\u0000\u04c1\u04c2\u0006u\u001d\u0000\u04c2\u00fe\u0001\u0000\u0000\u0000"+ - "\u04c3\u04c8\u0003S \u0000\u04c4\u04c8\u0003Q\u001f\u0000\u04c5\u04c8"+ - "\u0003a\'\u0000\u04c6\u04c8\u0003\u00adM\u0000\u04c7\u04c3\u0001\u0000"+ - "\u0000\u0000\u04c7\u04c4\u0001\u0000\u0000\u0000\u04c7\u04c5\u0001\u0000"+ - "\u0000\u0000\u04c7\u04c6\u0001\u0000\u0000\u0000\u04c8\u0100\u0001\u0000"+ - "\u0000\u0000\u04c9\u04cc\u0003S \u0000\u04ca\u04cc\u0003\u00adM\u0000"+ - "\u04cb\u04c9\u0001\u0000\u0000\u0000\u04cb\u04ca\u0001\u0000\u0000\u0000"+ - "\u04cc\u04d0\u0001\u0000\u0000\u0000\u04cd\u04cf\u0003\u00ffv\u0000\u04ce"+ - "\u04cd\u0001\u0000\u0000\u0000\u04cf\u04d2\u0001\u0000\u0000\u0000\u04d0"+ - "\u04ce\u0001\u0000\u0000\u0000\u04d0\u04d1\u0001\u0000\u0000\u0000\u04d1"+ - "\u04dd\u0001\u0000\u0000\u0000\u04d2\u04d0\u0001\u0000\u0000\u0000\u04d3"+ - "\u04d6\u0003a\'\u0000\u04d4\u04d6\u0003[$\u0000\u04d5\u04d3\u0001\u0000"+ - "\u0000\u0000\u04d5\u04d4\u0001\u0000\u0000\u0000\u04d6\u04d8\u0001\u0000"+ - "\u0000\u0000\u04d7\u04d9\u0003\u00ffv\u0000\u04d8\u04d7\u0001\u0000\u0000"+ - "\u0000\u04d9\u04da\u0001\u0000\u0000\u0000\u04da\u04d8\u0001\u0000\u0000"+ - "\u0000\u04da\u04db\u0001\u0000\u0000\u0000\u04db\u04dd\u0001\u0000\u0000"+ - "\u0000\u04dc\u04cb\u0001\u0000\u0000\u0000\u04dc\u04d5\u0001\u0000\u0000"+ - "\u0000\u04dd\u0102\u0001\u0000\u0000\u0000\u04de\u04e1\u0003\u0101w\u0000"+ - "\u04df\u04e1\u0003\u00c5Y\u0000\u04e0\u04de\u0001\u0000\u0000\u0000\u04e0"+ - "\u04df\u0001\u0000\u0000\u0000\u04e1\u04e2\u0001\u0000\u0000\u0000\u04e2"+ - "\u04e0\u0001\u0000\u0000\u0000\u04e2\u04e3\u0001\u0000\u0000\u0000\u04e3"+ - "\u0104\u0001\u0000\u0000\u0000\u04e4\u04e5\u0003I\u001b\u0000\u04e5\u04e6"+ - "\u0001\u0000\u0000\u0000\u04e6\u04e7\u0006y\r\u0000\u04e7\u0106\u0001"+ - "\u0000\u0000\u0000\u04e8\u04e9\u0003K\u001c\u0000\u04e9\u04ea\u0001\u0000"+ - "\u0000\u0000\u04ea\u04eb\u0006z\r\u0000\u04eb\u0108\u0001\u0000\u0000"+ - "\u0000\u04ec\u04ed\u0003M\u001d\u0000\u04ed\u04ee\u0001\u0000\u0000\u0000"+ - "\u04ee\u04ef\u0006{\r\u0000\u04ef\u010a\u0001\u0000\u0000\u0000\u04f0"+ - "\u04f1\u0003O\u001e\u0000\u04f1\u04f2\u0001\u0000\u0000\u0000\u04f2\u04f3"+ - "\u0006|\u0014\u0000\u04f3\u04f4\u0006|\u000e\u0000\u04f4\u010c\u0001\u0000"+ - "\u0000\u0000\u04f5\u04f6\u0003q/\u0000\u04f6\u04f7\u0001\u0000\u0000\u0000"+ - "\u04f7\u04f8\u0006}\u0018\u0000\u04f8\u010e\u0001\u0000\u0000\u0000\u04f9"+ - "\u04fa\u0003w2\u0000\u04fa\u04fb\u0001\u0000\u0000\u0000\u04fb\u04fc\u0006"+ - "~\u0017\u0000\u04fc\u0110\u0001\u0000\u0000\u0000\u04fd\u04fe\u0003{4"+ - "\u0000\u04fe\u04ff\u0001\u0000\u0000\u0000\u04ff\u0500\u0006\u007f\u001b"+ - "\u0000\u0500\u0112\u0001\u0000\u0000\u0000\u0501\u0502\u0003\u0093@\u0000"+ - "\u0502\u0503\u0001\u0000\u0000\u0000\u0503\u0504\u0006\u0080\u001c\u0000"+ - "\u0504\u0114\u0001\u0000\u0000\u0000\u0505\u0506\u0003\u00bdU\u0000\u0506"+ - "\u0507\u0001\u0000\u0000\u0000\u0507\u0508\u0006\u0081\u001d\u0000\u0508"+ - "\u0116\u0001\u0000\u0000\u0000\u0509\u050a\u0007\f\u0000\u0000\u050a\u050b"+ - "\u0007\u0002\u0000\u0000\u050b\u0118\u0001\u0000\u0000\u0000\u050c\u050d"+ - "\u0003\u0103x\u0000\u050d\u050e\u0001\u0000\u0000\u0000\u050e\u050f\u0006"+ - "\u0083\u001e\u0000\u050f\u011a\u0001\u0000\u0000\u0000\u0510\u0511\u0003"+ - "I\u001b\u0000\u0511\u0512\u0001\u0000\u0000\u0000\u0512\u0513\u0006\u0084"+ - "\r\u0000\u0513\u011c\u0001\u0000\u0000\u0000\u0514\u0515\u0003K\u001c"+ - "\u0000\u0515\u0516\u0001\u0000\u0000\u0000\u0516\u0517\u0006\u0085\r\u0000"+ - "\u0517\u011e\u0001\u0000\u0000\u0000\u0518\u0519\u0003M\u001d\u0000\u0519"+ - "\u051a\u0001\u0000\u0000\u0000\u051a\u051b\u0006\u0086\r\u0000\u051b\u0120"+ - "\u0001\u0000\u0000\u0000\u051c\u051d\u0003O\u001e\u0000\u051d\u051e\u0001"+ - "\u0000\u0000\u0000\u051e\u051f\u0006\u0087\u0014\u0000\u051f\u0520\u0006"+ - "\u0087\u000e\u0000\u0520\u0122\u0001\u0000\u0000\u0000\u0521\u0522\u0003"+ - "\u00bfV\u0000\u0522\u0523\u0001\u0000\u0000\u0000\u0523\u0524\u0006\u0088"+ - "\u0012\u0000\u0524\u0525\u0006\u0088\u001f\u0000\u0525\u0124\u0001\u0000"+ - "\u0000\u0000\u0526\u0527\u0007\u0007\u0000\u0000\u0527\u0528\u0007\t\u0000"+ - "\u0000\u0528\u0529\u0001\u0000\u0000\u0000\u0529\u052a\u0006\u0089 \u0000"+ - "\u052a\u0126\u0001\u0000\u0000\u0000\u052b\u052c\u0007\u0013\u0000\u0000"+ - "\u052c\u052d\u0007\u0001\u0000\u0000\u052d\u052e\u0007\u0005\u0000\u0000"+ - "\u052e\u052f\u0007\n\u0000\u0000\u052f\u0530\u0001\u0000\u0000\u0000\u0530"+ - "\u0531\u0006\u008a \u0000\u0531\u0128\u0001\u0000\u0000\u0000\u0532\u0533"+ - "\b\"\u0000\u0000\u0533\u012a\u0001\u0000\u0000\u0000\u0534\u0536\u0003"+ - "\u0129\u008b\u0000\u0535\u0534\u0001\u0000\u0000\u0000\u0536\u0537\u0001"+ - "\u0000\u0000\u0000\u0537\u0535\u0001\u0000\u0000\u0000\u0537\u0538\u0001"+ - "\u0000\u0000\u0000\u0538\u0539\u0001\u0000\u0000\u0000\u0539\u053a\u0003"+ - "u1\u0000\u053a\u053c\u0001\u0000\u0000\u0000\u053b\u0535\u0001\u0000\u0000"+ - "\u0000\u053b\u053c\u0001\u0000\u0000\u0000\u053c\u053e\u0001\u0000\u0000"+ - "\u0000\u053d\u053f\u0003\u0129\u008b\u0000\u053e\u053d\u0001\u0000\u0000"+ - "\u0000\u053f\u0540\u0001\u0000\u0000\u0000\u0540\u053e\u0001\u0000\u0000"+ - "\u0000\u0540\u0541\u0001\u0000\u0000\u0000\u0541\u012c\u0001\u0000\u0000"+ - "\u0000\u0542\u0543\u0003\u012b\u008c\u0000\u0543\u0544\u0001\u0000\u0000"+ - "\u0000\u0544\u0545\u0006\u008d!\u0000\u0545\u012e\u0001\u0000\u0000\u0000"+ - "\u0546\u0547\u0003I\u001b\u0000\u0547\u0548\u0001\u0000\u0000\u0000\u0548"+ - "\u0549\u0006\u008e\r\u0000\u0549\u0130\u0001\u0000\u0000\u0000\u054a\u054b"+ - "\u0003K\u001c\u0000\u054b\u054c\u0001\u0000\u0000\u0000\u054c\u054d\u0006"+ - "\u008f\r\u0000\u054d\u0132\u0001\u0000\u0000\u0000\u054e\u054f\u0003M"+ - "\u001d\u0000\u054f\u0550\u0001\u0000\u0000\u0000\u0550\u0551\u0006\u0090"+ - "\r\u0000\u0551\u0134\u0001\u0000\u0000\u0000\u0552\u0553\u0003O\u001e"+ - "\u0000\u0553\u0554\u0001\u0000\u0000\u0000\u0554\u0555\u0006\u0091\u0014"+ - "\u0000\u0555\u0556\u0006\u0091\u000e\u0000\u0556\u0557\u0006\u0091\u000e"+ - "\u0000\u0557\u0136\u0001\u0000\u0000\u0000\u0558\u0559\u0003q/\u0000\u0559"+ - "\u055a\u0001\u0000\u0000\u0000\u055a\u055b\u0006\u0092\u0018\u0000\u055b"+ - "\u0138\u0001\u0000\u0000\u0000\u055c\u055d\u0003w2\u0000\u055d\u055e\u0001"+ - "\u0000\u0000\u0000\u055e\u055f\u0006\u0093\u0017\u0000\u055f\u013a\u0001"+ - "\u0000\u0000\u0000\u0560\u0561\u0003{4\u0000\u0561\u0562\u0001\u0000\u0000"+ - "\u0000\u0562\u0563\u0006\u0094\u001b\u0000\u0563\u013c\u0001\u0000\u0000"+ - "\u0000\u0564\u0565\u0003\u0127\u008a\u0000\u0565\u0566\u0001\u0000\u0000"+ - "\u0000\u0566\u0567\u0006\u0095\"\u0000\u0567\u013e\u0001\u0000\u0000\u0000"+ - "\u0568\u0569\u0003\u0103x\u0000\u0569\u056a\u0001\u0000\u0000\u0000\u056a"+ - "\u056b\u0006\u0096\u001e\u0000\u056b\u0140\u0001\u0000\u0000\u0000\u056c"+ - "\u056d\u0003\u00c7Z\u0000\u056d\u056e\u0001\u0000\u0000\u0000\u056e\u056f"+ - "\u0006\u0097#\u0000\u056f\u0142\u0001\u0000\u0000\u0000\u0570\u0571\u0003"+ - "\u0093@\u0000\u0571\u0572\u0001\u0000\u0000\u0000\u0572\u0573\u0006\u0098"+ - "\u001c\u0000\u0573\u0144\u0001\u0000\u0000\u0000\u0574\u0575\u0003\u00bd"+ - "U\u0000\u0575\u0576\u0001\u0000\u0000\u0000\u0576\u0577\u0006\u0099\u001d"+ - "\u0000\u0577\u0146\u0001\u0000\u0000\u0000\u0578\u0579\u0003I\u001b\u0000"+ - "\u0579\u057a\u0001\u0000\u0000\u0000\u057a\u057b\u0006\u009a\r\u0000\u057b"+ - "\u0148\u0001\u0000\u0000\u0000\u057c\u057d\u0003K\u001c\u0000\u057d\u057e"+ - "\u0001\u0000\u0000\u0000\u057e\u057f\u0006\u009b\r\u0000\u057f\u014a\u0001"+ - "\u0000\u0000\u0000\u0580\u0581\u0003M\u001d\u0000\u0581\u0582\u0001\u0000"+ - "\u0000\u0000\u0582\u0583\u0006\u009c\r\u0000\u0583\u014c\u0001\u0000\u0000"+ - "\u0000\u0584\u0585\u0003O\u001e\u0000\u0585\u0586\u0001\u0000\u0000\u0000"+ - "\u0586\u0587\u0006\u009d\u0014\u0000\u0587\u0588\u0006\u009d\u000e\u0000"+ - "\u0588\u014e\u0001\u0000\u0000\u0000\u0589\u058a\u0003{4\u0000\u058a\u058b"+ - "\u0001\u0000\u0000\u0000\u058b\u058c\u0006\u009e\u001b\u0000\u058c\u0150"+ - "\u0001\u0000\u0000\u0000\u058d\u058e\u0003\u0093@\u0000\u058e\u058f\u0001"+ - "\u0000\u0000\u0000\u058f\u0590\u0006\u009f\u001c\u0000\u0590\u0152\u0001"+ - "\u0000\u0000\u0000\u0591\u0592\u0003\u00bdU\u0000\u0592\u0593\u0001\u0000"+ - "\u0000\u0000\u0593\u0594\u0006\u00a0\u001d\u0000\u0594\u0154\u0001\u0000"+ - "\u0000\u0000\u0595\u0596\u0003\u00c7Z\u0000\u0596\u0597\u0001\u0000\u0000"+ - "\u0000\u0597\u0598\u0006\u00a1#\u0000\u0598\u0156\u0001\u0000\u0000\u0000"+ - "\u0599\u059a\u0003\u00c3X\u0000\u059a\u059b\u0001\u0000\u0000\u0000\u059b"+ - "\u059c\u0006\u00a2$\u0000\u059c\u0158\u0001\u0000\u0000\u0000\u059d\u059e"+ - "\u0003I\u001b\u0000\u059e\u059f\u0001\u0000\u0000\u0000\u059f\u05a0\u0006"+ - "\u00a3\r\u0000\u05a0\u015a\u0001\u0000\u0000\u0000\u05a1\u05a2\u0003K"+ - "\u001c\u0000\u05a2\u05a3\u0001\u0000\u0000\u0000\u05a3\u05a4\u0006\u00a4"+ - "\r\u0000\u05a4\u015c\u0001\u0000\u0000\u0000\u05a5\u05a6\u0003M\u001d"+ - "\u0000\u05a6\u05a7\u0001\u0000\u0000\u0000\u05a7\u05a8\u0006\u00a5\r\u0000"+ - "\u05a8\u015e\u0001\u0000\u0000\u0000\u05a9\u05aa\u0003O\u001e\u0000\u05aa"+ - "\u05ab\u0001\u0000\u0000\u0000\u05ab\u05ac\u0006\u00a6\u0014\u0000\u05ac"+ - "\u05ad\u0006\u00a6\u000e\u0000\u05ad\u0160\u0001\u0000\u0000\u0000\u05ae"+ - "\u05af\u0007\u0001\u0000\u0000\u05af\u05b0\u0007\t\u0000\u0000\u05b0\u05b1"+ - "\u0007\u000f\u0000\u0000\u05b1\u05b2\u0007\u0007\u0000\u0000\u05b2\u0162"+ - "\u0001\u0000\u0000\u0000\u05b3\u05b4\u0003I\u001b\u0000\u05b4\u05b5\u0001"+ - "\u0000\u0000\u0000\u05b5\u05b6\u0006\u00a8\r\u0000\u05b6\u0164\u0001\u0000"+ - "\u0000\u0000\u05b7\u05b8\u0003K\u001c\u0000\u05b8\u05b9\u0001\u0000\u0000"+ - "\u0000\u05b9\u05ba\u0006\u00a9\r\u0000\u05ba\u0166\u0001\u0000\u0000\u0000"+ - "\u05bb\u05bc\u0003M\u001d\u0000\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd"+ - "\u05be\u0006\u00aa\r\u0000\u05be\u0168\u0001\u0000\u0000\u0000\u05bf\u05c0"+ - "\u0003\u00c1W\u0000\u05c0\u05c1\u0001\u0000\u0000\u0000\u05c1\u05c2\u0006"+ - "\u00ab\u0015\u0000\u05c2\u05c3\u0006\u00ab\u000e\u0000\u05c3\u016a\u0001"+ - "\u0000\u0000\u0000\u05c4\u05c5\u0003u1\u0000\u05c5\u05c6\u0001\u0000\u0000"+ - "\u0000\u05c6\u05c7\u0006\u00ac\u0016\u0000\u05c7\u016c\u0001\u0000\u0000"+ - "\u0000\u05c8\u05ce\u0003[$\u0000\u05c9\u05ce\u0003Q\u001f\u0000\u05ca"+ - "\u05ce\u0003{4\u0000\u05cb\u05ce\u0003S \u0000\u05cc\u05ce\u0003a\'\u0000"+ - "\u05cd\u05c8\u0001\u0000\u0000\u0000\u05cd\u05c9\u0001\u0000\u0000\u0000"+ - "\u05cd\u05ca\u0001\u0000\u0000\u0000\u05cd\u05cb\u0001\u0000\u0000\u0000"+ - "\u05cd\u05cc\u0001\u0000\u0000\u0000\u05ce\u05cf\u0001\u0000\u0000\u0000"+ - "\u05cf\u05cd\u0001\u0000\u0000\u0000\u05cf\u05d0\u0001\u0000\u0000\u0000"+ - "\u05d0\u016e\u0001\u0000\u0000\u0000\u05d1\u05d2\u0003I\u001b\u0000\u05d2"+ - "\u05d3\u0001\u0000\u0000\u0000\u05d3\u05d4\u0006\u00ae\r\u0000\u05d4\u0170"+ - "\u0001\u0000\u0000\u0000\u05d5\u05d6\u0003K\u001c\u0000\u05d6\u05d7\u0001"+ - "\u0000\u0000\u0000\u05d7\u05d8\u0006\u00af\r\u0000\u05d8\u0172\u0001\u0000"+ - "\u0000\u0000\u05d9\u05da\u0003M\u001d\u0000\u05da\u05db\u0001\u0000\u0000"+ - "\u0000\u05db\u05dc\u0006\u00b0\r\u0000\u05dc\u0174\u0001\u0000\u0000\u0000"+ - "\u05dd\u05de\u0003O\u001e\u0000\u05de\u05df\u0001\u0000\u0000\u0000\u05df"+ - "\u05e0\u0006\u00b1\u0014\u0000\u05e0\u05e1\u0006\u00b1\u000e\u0000\u05e1"+ - "\u0176\u0001\u0000\u0000\u0000\u05e2\u05e3\u0003u1\u0000\u05e3\u05e4\u0001"+ - "\u0000\u0000\u0000\u05e4\u05e5\u0006\u00b2\u0016\u0000\u05e5\u0178\u0001"+ - "\u0000\u0000\u0000\u05e6\u05e7\u0003w2\u0000\u05e7\u05e8\u0001\u0000\u0000"+ - "\u0000\u05e8\u05e9\u0006\u00b3\u0017\u0000\u05e9\u017a\u0001\u0000\u0000"+ - "\u0000\u05ea\u05eb\u0003{4\u0000\u05eb\u05ec\u0001\u0000\u0000\u0000\u05ec"+ - "\u05ed\u0006\u00b4\u001b\u0000\u05ed\u017c\u0001\u0000\u0000\u0000\u05ee"+ - "\u05ef\u0003\u0125\u0089\u0000\u05ef\u05f0\u0001\u0000\u0000\u0000\u05f0"+ - "\u05f1\u0006\u00b5%\u0000\u05f1\u05f2\u0006\u00b5&\u0000\u05f2\u017e\u0001"+ - "\u0000\u0000\u0000\u05f3\u05f4\u0003\u00e9k\u0000\u05f4\u05f5\u0001\u0000"+ - "\u0000\u0000\u05f5\u05f6\u0006\u00b6\u0019\u0000\u05f6\u0180\u0001\u0000"+ - "\u0000\u0000\u05f7\u05f8\u0003e)\u0000\u05f8\u05f9\u0001\u0000\u0000\u0000"+ - "\u05f9\u05fa\u0006\u00b7\u001a\u0000\u05fa\u0182\u0001\u0000\u0000\u0000"+ - "\u05fb\u05fc\u0003I\u001b\u0000\u05fc\u05fd\u0001\u0000\u0000\u0000\u05fd"+ - "\u05fe\u0006\u00b8\r\u0000\u05fe\u0184\u0001\u0000\u0000\u0000\u05ff\u0600"+ - "\u0003K\u001c\u0000\u0600\u0601\u0001\u0000\u0000\u0000\u0601\u0602\u0006"+ - "\u00b9\r\u0000\u0602\u0186\u0001\u0000\u0000\u0000\u0603\u0604\u0003M"+ - "\u001d\u0000\u0604\u0605\u0001\u0000\u0000\u0000\u0605\u0606\u0006\u00ba"+ - "\r\u0000\u0606\u0188\u0001\u0000\u0000\u0000\u0607\u0608\u0003O\u001e"+ - "\u0000\u0608\u0609\u0001\u0000\u0000\u0000\u0609\u060a\u0006\u00bb\u0014"+ - "\u0000\u060a\u060b\u0006\u00bb\u000e\u0000\u060b\u060c\u0006\u00bb\u000e"+ - "\u0000\u060c\u018a\u0001\u0000\u0000\u0000\u060d\u060e\u0003w2\u0000\u060e"+ - "\u060f\u0001\u0000\u0000\u0000\u060f\u0610\u0006\u00bc\u0017\u0000\u0610"+ - "\u018c\u0001\u0000\u0000\u0000\u0611\u0612\u0003{4\u0000\u0612\u0613\u0001"+ - "\u0000\u0000\u0000\u0613\u0614\u0006\u00bd\u001b\u0000\u0614\u018e\u0001"+ - "\u0000\u0000\u0000\u0615\u0616\u0003\u0103x\u0000\u0616\u0617\u0001\u0000"+ - "\u0000\u0000\u0617\u0618\u0006\u00be\u001e\u0000\u0618\u0190\u0001\u0000"+ - "\u0000\u0000\u0619\u061a\u0003I\u001b\u0000\u061a\u061b\u0001\u0000\u0000"+ - "\u0000\u061b\u061c\u0006\u00bf\r\u0000\u061c\u0192\u0001\u0000\u0000\u0000"+ - "\u061d\u061e\u0003K\u001c\u0000\u061e\u061f\u0001\u0000\u0000\u0000\u061f"+ - "\u0620\u0006\u00c0\r\u0000\u0620\u0194\u0001\u0000\u0000\u0000\u0621\u0622"+ - "\u0003M\u001d\u0000\u0622\u0623\u0001\u0000\u0000\u0000\u0623\u0624\u0006"+ - "\u00c1\r\u0000\u0624\u0196\u0001\u0000\u0000\u0000\u0625\u0626\u0003O"+ - "\u001e\u0000\u0626\u0627\u0001\u0000\u0000\u0000\u0627\u0628\u0006\u00c2"+ - "\u0014\u0000\u0628\u0629\u0006\u00c2\u000e\u0000\u0629\u0198\u0001\u0000"+ - "\u0000\u0000\u062a\u062b\u0007#\u0000\u0000\u062b\u062c\u0007\u0007\u0000"+ - "\u0000\u062c\u062d\u0007\u0001\u0000\u0000\u062d\u062e\u0007\t\u0000\u0000"+ - "\u062e\u019a\u0001\u0000\u0000\u0000\u062f\u0630\u0003\u0117\u0082\u0000"+ - "\u0630\u0631\u0001\u0000\u0000\u0000\u0631\u0632\u0006\u00c4\'\u0000\u0632"+ - "\u019c\u0001\u0000\u0000\u0000\u0633\u0634\u0003\u0125\u0089\u0000\u0634"+ - "\u0635\u0001\u0000\u0000\u0000\u0635\u0636\u0006\u00c5%\u0000\u0636\u0637"+ - "\u0006\u00c5\u000e\u0000\u0637\u0638\u0006\u00c5\u0000\u0000\u0638\u019e"+ - "\u0001\u0000\u0000\u0000\u0639\u063a\u0007\u0014\u0000\u0000\u063a\u063b"+ - "\u0007\u0002\u0000\u0000\u063b\u063c\u0007\u0001\u0000\u0000\u063c\u063d"+ - "\u0007\t\u0000\u0000\u063d\u063e\u0007\u0011\u0000\u0000\u063e\u063f\u0001"+ - "\u0000\u0000\u0000\u063f\u0640\u0006\u00c6\u000e\u0000\u0640\u0641\u0006"+ - "\u00c6\u0000\u0000\u0641\u01a0\u0001\u0000\u0000\u0000\u0642\u0643\u0003"+ - "\u00e9k\u0000\u0643\u0644\u0001\u0000\u0000\u0000\u0644\u0645\u0006\u00c7"+ - "\u0019\u0000\u0645\u01a2\u0001\u0000\u0000\u0000\u0646\u0647\u0003e)\u0000"+ - "\u0647\u0648\u0001\u0000\u0000\u0000\u0648\u0649\u0006\u00c8\u001a\u0000"+ - "\u0649\u01a4\u0001\u0000\u0000\u0000\u064a\u064b\u0003u1\u0000\u064b\u064c"+ - "\u0001\u0000\u0000\u0000\u064c\u064d\u0006\u00c9\u0016\u0000\u064d\u01a6"+ - "\u0001\u0000\u0000\u0000\u064e\u064f\u0003\u00c3X\u0000\u064f\u0650\u0001"+ - "\u0000\u0000\u0000\u0650\u0651\u0006\u00ca$\u0000\u0651\u01a8\u0001\u0000"+ - "\u0000\u0000\u0652\u0653\u0003\u00c7Z\u0000\u0653\u0654\u0001\u0000\u0000"+ - "\u0000\u0654\u0655\u0006\u00cb#\u0000\u0655\u01aa\u0001\u0000\u0000\u0000"+ - "\u0656\u0657\u0003I\u001b\u0000\u0657\u0658\u0001\u0000\u0000\u0000\u0658"+ - "\u0659\u0006\u00cc\r\u0000\u0659\u01ac\u0001\u0000\u0000\u0000\u065a\u065b"+ - "\u0003K\u001c\u0000\u065b\u065c\u0001\u0000\u0000\u0000\u065c\u065d\u0006"+ - "\u00cd\r\u0000\u065d\u01ae\u0001\u0000\u0000\u0000\u065e\u065f\u0003M"+ - "\u001d\u0000\u065f\u0660\u0001\u0000\u0000\u0000\u0660\u0661\u0006\u00ce"+ - "\r\u0000\u0661\u01b0\u0001\u0000\u0000\u0000\u0662\u0663\u0003O\u001e"+ - "\u0000\u0663\u0664\u0001\u0000\u0000\u0000\u0664\u0665\u0006\u00cf\u0014"+ - "\u0000\u0665\u0666\u0006\u00cf\u000e\u0000\u0666\u01b2\u0001\u0000\u0000"+ - "\u0000\u0667\u0668\u0003\u00e9k\u0000\u0668\u0669\u0001\u0000\u0000\u0000"+ - "\u0669\u066a\u0006\u00d0\u0019\u0000\u066a\u066b\u0006\u00d0\u000e\u0000"+ - "\u066b\u066c\u0006\u00d0(\u0000\u066c\u01b4\u0001\u0000\u0000\u0000\u066d"+ - "\u066e\u0003e)\u0000\u066e\u066f\u0001\u0000\u0000\u0000\u066f\u0670\u0006"+ - "\u00d1\u001a\u0000\u0670\u0671\u0006\u00d1\u000e\u0000\u0671\u0672\u0006"+ - "\u00d1(\u0000\u0672\u01b6\u0001\u0000\u0000\u0000\u0673\u0674\u0003I\u001b"+ - "\u0000\u0674\u0675\u0001\u0000\u0000\u0000\u0675\u0676\u0006\u00d2\r\u0000"+ - "\u0676\u01b8\u0001\u0000\u0000\u0000\u0677\u0678\u0003K\u001c\u0000\u0678"+ - "\u0679\u0001\u0000\u0000\u0000\u0679\u067a\u0006\u00d3\r\u0000\u067a\u01ba"+ - "\u0001\u0000\u0000\u0000\u067b\u067c\u0003M\u001d\u0000\u067c\u067d\u0001"+ - "\u0000\u0000\u0000\u067d\u067e\u0006\u00d4\r\u0000\u067e\u01bc\u0001\u0000"+ - "\u0000\u0000\u067f\u0680\u0003u1\u0000\u0680\u0681\u0001\u0000\u0000\u0000"+ - "\u0681\u0682\u0006\u00d5\u0016\u0000\u0682\u0683\u0006\u00d5\u000e\u0000"+ - "\u0683\u0684\u0006\u00d5\u000b\u0000\u0684\u01be\u0001\u0000\u0000\u0000"+ - "\u0685\u0686\u0003w2\u0000\u0686\u0687\u0001\u0000\u0000\u0000\u0687\u0688"+ - "\u0006\u00d6\u0017\u0000\u0688\u0689\u0006\u00d6\u000e\u0000\u0689\u068a"+ - "\u0006\u00d6\u000b\u0000\u068a\u01c0\u0001\u0000\u0000\u0000\u068b\u068c"+ - "\u0003I\u001b\u0000\u068c\u068d\u0001\u0000\u0000\u0000\u068d\u068e\u0006"+ - "\u00d7\r\u0000\u068e\u01c2\u0001\u0000\u0000\u0000\u068f\u0690\u0003K"+ - "\u001c\u0000\u0690\u0691\u0001\u0000\u0000\u0000\u0691\u0692\u0006\u00d8"+ - "\r\u0000\u0692\u01c4\u0001\u0000\u0000\u0000\u0693\u0694\u0003M\u001d"+ - "\u0000\u0694\u0695\u0001\u0000\u0000\u0000\u0695\u0696\u0006\u00d9\r\u0000"+ - "\u0696\u01c6\u0001\u0000\u0000\u0000\u0697\u0698\u0003\u00c7Z\u0000\u0698"+ - "\u0699\u0001\u0000\u0000\u0000\u0699\u069a\u0006\u00da\u000e\u0000\u069a"+ - "\u069b\u0006\u00da\u0000\u0000\u069b\u069c\u0006\u00da#\u0000\u069c\u01c8"+ - "\u0001\u0000\u0000\u0000\u069d\u069e\u0003\u00c3X\u0000\u069e\u069f\u0001"+ - "\u0000\u0000\u0000\u069f\u06a0\u0006\u00db\u000e\u0000\u06a0\u06a1\u0006"+ - "\u00db\u0000\u0000\u06a1\u06a2\u0006\u00db$\u0000\u06a2\u01ca\u0001\u0000"+ - "\u0000\u0000\u06a3\u06a4\u0003k,\u0000\u06a4\u06a5\u0001\u0000\u0000\u0000"+ - "\u06a5\u06a6\u0006\u00dc\u000e\u0000\u06a6\u06a7\u0006\u00dc\u0000\u0000"+ - "\u06a7\u06a8\u0006\u00dc)\u0000\u06a8\u01cc\u0001\u0000\u0000\u0000\u06a9"+ - "\u06aa\u0003O\u001e\u0000\u06aa\u06ab\u0001\u0000\u0000\u0000\u06ab\u06ac"+ - "\u0006\u00dd\u0014\u0000\u06ac\u06ad\u0006\u00dd\u000e\u0000\u06ad\u01ce"+ - "\u0001\u0000\u0000\u0000\u06ae\u06af\u0003O\u001e\u0000\u06af\u06b0\u0001"+ - "\u0000\u0000\u0000\u06b0\u06b1\u0006\u00de\u0014\u0000\u06b1\u06b2\u0006"+ - "\u00de\u000e\u0000\u06b2\u01d0\u0001\u0000\u0000\u0000\u06b3\u06b4\u0003"+ - "\u0125\u0089\u0000\u06b4\u06b5\u0001\u0000\u0000\u0000\u06b5\u06b6\u0006"+ - "\u00df%\u0000\u06b6\u01d2\u0001\u0000\u0000\u0000\u06b7\u06b8\u0003\u0117"+ - "\u0082\u0000\u06b8\u06b9\u0001\u0000\u0000\u0000\u06b9\u06ba\u0006\u00e0"+ - "\'\u0000\u06ba\u01d4\u0001\u0000\u0000\u0000\u06bb\u06bc\u0003{4\u0000"+ - "\u06bc\u06bd\u0001\u0000\u0000\u0000\u06bd\u06be\u0006\u00e1\u001b\u0000"+ - "\u06be\u01d6\u0001\u0000\u0000\u0000\u06bf\u06c0\u0003w2\u0000\u06c0\u06c1"+ - "\u0001\u0000\u0000\u0000\u06c1\u06c2\u0006\u00e2\u0017\u0000\u06c2\u01d8"+ - "\u0001\u0000\u0000\u0000\u06c3\u06c4\u0003\u00c7Z\u0000\u06c4\u06c5\u0001"+ - "\u0000\u0000\u0000\u06c5\u06c6\u0006\u00e3#\u0000\u06c6\u01da\u0001\u0000"+ - "\u0000\u0000\u06c7\u06c8\u0003\u00c3X\u0000\u06c8\u06c9\u0001\u0000\u0000"+ - "\u0000\u06c9\u06ca\u0006\u00e4$\u0000\u06ca\u01dc\u0001\u0000\u0000\u0000"+ - "\u06cb\u06cc\u0003I\u001b\u0000\u06cc\u06cd\u0001\u0000\u0000\u0000\u06cd"+ - "\u06ce\u0006\u00e5\r\u0000\u06ce\u01de\u0001\u0000\u0000\u0000\u06cf\u06d0"+ - "\u0003K\u001c\u0000\u06d0\u06d1\u0001\u0000\u0000\u0000\u06d1\u06d2\u0006"+ - "\u00e6\r\u0000\u06d2\u01e0\u0001\u0000\u0000\u0000\u06d3\u06d4\u0003M"+ - "\u001d\u0000\u06d4\u06d5\u0001\u0000\u0000\u0000\u06d5\u06d6\u0006\u00e7"+ - "\r\u0000\u06d6\u01e2\u0001\u0000\u0000\u0000\u06d7\u06d8\u0003O\u001e"+ - "\u0000\u06d8\u06d9\u0001\u0000\u0000\u0000\u06d9\u06da\u0006\u00e8\u0014"+ - "\u0000\u06da\u06db\u0006\u00e8\u000e\u0000\u06db\u01e4\u0001\u0000\u0000"+ - "\u0000\u06dc\u06dd\u0003\u00c3X\u0000\u06dd\u06de\u0001\u0000\u0000\u0000"+ - "\u06de\u06df\u0006\u00e9$\u0000\u06df\u01e6\u0001\u0000\u0000\u0000\u06e0"+ - "\u06e1\u0003M\u001d\u0000\u06e1\u06e2\u0001\u0000\u0000\u0000\u06e2\u06e3"+ - "\u0006\u00ea\r\u0000\u06e3\u01e8\u0001\u0000\u0000\u0000\u06e4\u06e5\u0003"+ - "I\u001b\u0000\u06e5\u06e6\u0001\u0000\u0000\u0000\u06e6\u06e7\u0006\u00eb"+ - "\r\u0000\u06e7\u01ea\u0001\u0000\u0000\u0000\u06e8\u06e9\u0003K\u001c"+ - "\u0000\u06e9\u06ea\u0001\u0000\u0000\u0000\u06ea\u06eb\u0006\u00ec\r\u0000"+ - "\u06eb\u01ec\u0001\u0000\u0000\u0000\u06ec\u06ed\u0003\u0089;\u0000\u06ed"+ - "\u06ee\u0001\u0000\u0000\u0000\u06ee\u06ef\u0006\u00ed*\u0000\u06ef\u06f0"+ - "\u0006\u00ed\u0013\u0000\u06f0\u01ee\u0001\u0000\u0000\u0000\u06f1\u06f2"+ - "\u0003\u0097B\u0000\u06f2\u06f3\u0001\u0000\u0000\u0000\u06f3\u06f4\u0006"+ - "\u00ee+\u0000\u06f4\u06f5\u0006\u00ee\u000e\u0000\u06f5\u01f0\u0001\u0000"+ - "\u0000\u0000\u06f6\u06f7\u0003O\u001e\u0000\u06f7\u06f8\u0001\u0000\u0000"+ - "\u0000\u06f8\u06f9\u0006\u00ef\u0014\u0000\u06f9\u06fa\u0006\u00ef\u000e"+ - "\u0000\u06fa\u01f2\u0001\u0000\u0000\u0000\u06fb\u06fc\u0003M\u001d\u0000"+ - "\u06fc\u06fd\u0001\u0000\u0000\u0000\u06fd\u06fe\u0006\u00f0\r\u0000\u06fe"+ - "\u01f4\u0001\u0000\u0000\u0000\u06ff\u0700\u0003I\u001b\u0000\u0700\u0701"+ - "\u0001\u0000\u0000\u0000\u0701\u0702\u0006\u00f1\r\u0000\u0702\u01f6\u0001"+ - "\u0000\u0000\u0000\u0703\u0704\u0003K\u001c\u0000\u0704\u0705\u0001\u0000"+ - "\u0000\u0000\u0705\u0706\u0006\u00f2\r\u0000\u0706\u01f8\u0001\u0000\u0000"+ - "\u0000E\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f"+ - "\r\u000e\u000f\u0010\u0011\u0012\u02e9\u02f3\u02f7\u02fa\u0303\u0305\u0310"+ - "\u0323\u0328\u0331\u0338\u033d\u033f\u034a\u0352\u0355\u0357\u035c\u0361"+ - "\u0367\u036e\u0373\u0379\u037c\u0384\u0388\u0416\u041b\u0422\u0424\u0434"+ - "\u0439\u043e\u0440\u0446\u0493\u0498\u04c7\u04cb\u04d0\u04d5\u04da\u04dc"+ - "\u04e0\u04e2\u0537\u053b\u0540\u05cd\u05cf,\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\u0010\u0000\u0005"+ - "\u000b\u0000\u0005\u000e\u0000\u0005\u0012\u0000\u0000\u0001\u0000\u0004"+ - "\u0000\u0000\u0007\u0010\u0000\u0007\u000e\u0000\u0007\t\u0000\u0007J"+ - "\u0000\u0005\u0000\u0000\u0007\u001f\u0000\u0007K\u0000\u0007(\u0000\u0007"+ - ")\u0000\u0007&\u0000\u0007U\u0000\u0007 \u0000\u0007+\u0000\u00077\u0000"+ - "\u0007I\u0000\u0007Y\u0000\u0005\n\u0000\u0005\u0007\u0000\u0007c\u0000"+ - "\u0007b\u0000\u0007M\u0000\u0007L\u0000\u0007a\u0000\u0005\f\u0000\u0007"+ - "]\u0000\u0005\u000f\u0000\u0007#\u0000\u00072\u0000\u00079\u0000"; + "\u000f\u0010\u0011\u0012\u02fb\u0305\u0309\u030c\u0315\u0317\u0322\u0335"+ + "\u033a\u0343\u034a\u034f\u0351\u035c\u0364\u0367\u0369\u036e\u0373\u0379"+ + "\u0380\u0385\u038b\u038e\u0396\u039a\u0433\u0438\u043f\u0441\u0451\u0456"+ + "\u045b\u045d\u0463\u04b0\u04b5\u04e4\u04e8\u04ed\u04f2\u04f7\u04f9\u04fd"+ + "\u04ff\u0553\u0557\u055c\u05e9\u05eb,\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\u0010\u0000\u0005\u000b"+ + "\u0000\u0005\u000e\u0000\u0005\u0012\u0000\u0000\u0001\u0000\u0004\u0000"+ + "\u0000\u0007\u0010\u0000\u0007\u000e\u0000\u0007\t\u0000\u0007N\u0000"+ + "\u0005\u0000\u0000\u0007 \u0000\u0007O\u0000\u0007,\u0000\u0007-\u0000"+ + "\u0007*\u0000\u0007Y\u0000\u0007!\u0000\u0007/\u0000\u0007;\u0000\u0007"+ + "M\u0000\u0007\'\u0000\u0007]\u0000\u0005\n\u0000\u0007%\u0000\u0005\u0007"+ + "\u0000\u0007&\u0000\u0007d\u0000\u0007Q\u0000\u0007P\u0000\u0005\f\u0000"+ + "\u0005\u000f\u0000\u0007$\u0000\u00076\u0000\u0007=\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 cfee76afb26b1..c9ea3916f0fbe 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 @@ -30,11 +30,15 @@ null null null null +null '|' null null null 'by' +'on' +'with' +'as' 'and' 'asc' '=' @@ -92,12 +96,9 @@ null null null null -'as' null null null -'on' -'with' null null null @@ -167,6 +168,7 @@ DEV_INLINESTATS DEV_INSIST DEV_LOOKUP DEV_METRICS +DEV_RERANK DEV_JOIN_FULL DEV_JOIN_LEFT DEV_JOIN_RIGHT @@ -180,6 +182,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -237,12 +242,9 @@ 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 @@ -326,6 +328,7 @@ identifierPattern constant parameter identifierOrParameter +stringOrParameter limitCommand sortCommand orderExpression @@ -362,7 +365,8 @@ forkSubQueries forkSubQuery forkSubQueryCommand forkSubQueryProcessingCommand +rerankCommand atn: -[4, 1, 142, 706, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 156, 8, 1, 10, 1, 12, 1, 159, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 167, 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, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 204, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 211, 8, 5, 10, 5, 12, 5, 214, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 221, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 226, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 234, 8, 5, 10, 5, 12, 5, 237, 9, 5, 1, 6, 1, 6, 3, 6, 241, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 248, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 253, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 258, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 268, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 274, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 282, 8, 9, 10, 9, 12, 9, 285, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 295, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 300, 8, 10, 10, 10, 12, 10, 303, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 311, 8, 11, 10, 11, 12, 11, 314, 9, 11, 1, 11, 1, 11, 3, 11, 318, 8, 11, 3, 11, 320, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 330, 8, 13, 10, 13, 12, 13, 333, 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, 349, 8, 17, 10, 17, 12, 17, 352, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 357, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 365, 8, 19, 10, 19, 12, 19, 368, 9, 19, 1, 19, 3, 19, 371, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 376, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 388, 8, 23, 10, 23, 12, 23, 391, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 397, 8, 24, 10, 24, 12, 24, 400, 9, 24, 1, 24, 3, 24, 403, 8, 24, 1, 24, 1, 24, 3, 24, 407, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 414, 8, 26, 1, 26, 1, 26, 3, 26, 418, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 423, 8, 27, 10, 27, 12, 27, 426, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 431, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 436, 8, 29, 10, 29, 12, 29, 439, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 444, 8, 30, 10, 30, 12, 30, 447, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 452, 8, 31, 10, 31, 12, 31, 455, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 461, 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, 476, 8, 34, 10, 34, 12, 34, 479, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 487, 8, 34, 10, 34, 12, 34, 490, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 498, 8, 34, 10, 34, 12, 34, 501, 9, 34, 1, 34, 1, 34, 3, 34, 505, 8, 34, 1, 35, 1, 35, 3, 35, 509, 8, 35, 1, 36, 1, 36, 3, 36, 513, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 522, 8, 38, 10, 38, 12, 38, 525, 9, 38, 1, 39, 1, 39, 3, 39, 529, 8, 39, 1, 39, 1, 39, 3, 39, 533, 8, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 545, 8, 42, 10, 42, 12, 42, 548, 9, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 558, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 5, 47, 570, 8, 47, 10, 47, 12, 47, 573, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 3, 50, 583, 8, 50, 1, 51, 3, 51, 586, 8, 51, 1, 51, 1, 51, 1, 52, 3, 52, 591, 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, 613, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 619, 8, 58, 10, 58, 12, 58, 622, 9, 58, 3, 58, 624, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 629, 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, 642, 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, 655, 8, 64, 10, 64, 12, 64, 658, 9, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 666, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 673, 8, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 69, 4, 69, 682, 8, 69, 11, 69, 12, 69, 683, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 696, 8, 71, 10, 71, 12, 71, 699, 9, 71, 1, 72, 1, 72, 1, 72, 3, 72, 704, 8, 72, 1, 72, 0, 5, 2, 10, 18, 20, 142, 73, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 0, 9, 1, 0, 66, 67, 1, 0, 68, 70, 2, 0, 32, 32, 85, 85, 1, 0, 76, 77, 2, 0, 37, 37, 42, 42, 2, 0, 45, 45, 48, 48, 2, 0, 44, 44, 58, 58, 2, 0, 59, 59, 61, 65, 2, 0, 17, 17, 24, 25, 733, 0, 146, 1, 0, 0, 0, 2, 149, 1, 0, 0, 0, 4, 166, 1, 0, 0, 0, 6, 191, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 225, 1, 0, 0, 0, 12, 252, 1, 0, 0, 0, 14, 254, 1, 0, 0, 0, 16, 267, 1, 0, 0, 0, 18, 273, 1, 0, 0, 0, 20, 294, 1, 0, 0, 0, 22, 304, 1, 0, 0, 0, 24, 323, 1, 0, 0, 0, 26, 325, 1, 0, 0, 0, 28, 336, 1, 0, 0, 0, 30, 340, 1, 0, 0, 0, 32, 342, 1, 0, 0, 0, 34, 345, 1, 0, 0, 0, 36, 356, 1, 0, 0, 0, 38, 360, 1, 0, 0, 0, 40, 375, 1, 0, 0, 0, 42, 379, 1, 0, 0, 0, 44, 381, 1, 0, 0, 0, 46, 383, 1, 0, 0, 0, 48, 392, 1, 0, 0, 0, 50, 408, 1, 0, 0, 0, 52, 411, 1, 0, 0, 0, 54, 419, 1, 0, 0, 0, 56, 427, 1, 0, 0, 0, 58, 432, 1, 0, 0, 0, 60, 440, 1, 0, 0, 0, 62, 448, 1, 0, 0, 0, 64, 456, 1, 0, 0, 0, 66, 460, 1, 0, 0, 0, 68, 504, 1, 0, 0, 0, 70, 508, 1, 0, 0, 0, 72, 512, 1, 0, 0, 0, 74, 514, 1, 0, 0, 0, 76, 517, 1, 0, 0, 0, 78, 526, 1, 0, 0, 0, 80, 534, 1, 0, 0, 0, 82, 537, 1, 0, 0, 0, 84, 540, 1, 0, 0, 0, 86, 549, 1, 0, 0, 0, 88, 553, 1, 0, 0, 0, 90, 559, 1, 0, 0, 0, 92, 563, 1, 0, 0, 0, 94, 566, 1, 0, 0, 0, 96, 574, 1, 0, 0, 0, 98, 578, 1, 0, 0, 0, 100, 582, 1, 0, 0, 0, 102, 585, 1, 0, 0, 0, 104, 590, 1, 0, 0, 0, 106, 594, 1, 0, 0, 0, 108, 596, 1, 0, 0, 0, 110, 598, 1, 0, 0, 0, 112, 601, 1, 0, 0, 0, 114, 605, 1, 0, 0, 0, 116, 608, 1, 0, 0, 0, 118, 628, 1, 0, 0, 0, 120, 632, 1, 0, 0, 0, 122, 637, 1, 0, 0, 0, 124, 643, 1, 0, 0, 0, 126, 648, 1, 0, 0, 0, 128, 650, 1, 0, 0, 0, 130, 659, 1, 0, 0, 0, 132, 661, 1, 0, 0, 0, 134, 674, 1, 0, 0, 0, 136, 677, 1, 0, 0, 0, 138, 681, 1, 0, 0, 0, 140, 685, 1, 0, 0, 0, 142, 689, 1, 0, 0, 0, 144, 703, 1, 0, 0, 0, 146, 147, 3, 2, 1, 0, 147, 148, 5, 0, 0, 1, 148, 1, 1, 0, 0, 0, 149, 150, 6, 1, -1, 0, 150, 151, 3, 4, 2, 0, 151, 157, 1, 0, 0, 0, 152, 153, 10, 1, 0, 0, 153, 154, 5, 31, 0, 0, 154, 156, 3, 6, 3, 0, 155, 152, 1, 0, 0, 0, 156, 159, 1, 0, 0, 0, 157, 155, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 3, 1, 0, 0, 0, 159, 157, 1, 0, 0, 0, 160, 167, 3, 110, 55, 0, 161, 167, 3, 38, 19, 0, 162, 167, 3, 32, 16, 0, 163, 167, 3, 114, 57, 0, 164, 165, 4, 2, 1, 0, 165, 167, 3, 48, 24, 0, 166, 160, 1, 0, 0, 0, 166, 161, 1, 0, 0, 0, 166, 162, 1, 0, 0, 0, 166, 163, 1, 0, 0, 0, 166, 164, 1, 0, 0, 0, 167, 5, 1, 0, 0, 0, 168, 192, 3, 50, 25, 0, 169, 192, 3, 8, 4, 0, 170, 192, 3, 80, 40, 0, 171, 192, 3, 74, 37, 0, 172, 192, 3, 52, 26, 0, 173, 192, 3, 76, 38, 0, 174, 192, 3, 82, 41, 0, 175, 192, 3, 84, 42, 0, 176, 192, 3, 88, 44, 0, 177, 192, 3, 90, 45, 0, 178, 192, 3, 116, 58, 0, 179, 192, 3, 92, 46, 0, 180, 192, 3, 124, 62, 0, 181, 182, 4, 3, 2, 0, 182, 192, 3, 122, 61, 0, 183, 184, 4, 3, 3, 0, 184, 192, 3, 120, 60, 0, 185, 186, 4, 3, 4, 0, 186, 192, 3, 132, 66, 0, 187, 188, 4, 3, 5, 0, 188, 192, 3, 134, 67, 0, 189, 190, 4, 3, 6, 0, 190, 192, 3, 136, 68, 0, 191, 168, 1, 0, 0, 0, 191, 169, 1, 0, 0, 0, 191, 170, 1, 0, 0, 0, 191, 171, 1, 0, 0, 0, 191, 172, 1, 0, 0, 0, 191, 173, 1, 0, 0, 0, 191, 174, 1, 0, 0, 0, 191, 175, 1, 0, 0, 0, 191, 176, 1, 0, 0, 0, 191, 177, 1, 0, 0, 0, 191, 178, 1, 0, 0, 0, 191, 179, 1, 0, 0, 0, 191, 180, 1, 0, 0, 0, 191, 181, 1, 0, 0, 0, 191, 183, 1, 0, 0, 0, 191, 185, 1, 0, 0, 0, 191, 187, 1, 0, 0, 0, 191, 189, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 194, 5, 16, 0, 0, 194, 195, 3, 10, 5, 0, 195, 9, 1, 0, 0, 0, 196, 197, 6, 5, -1, 0, 197, 198, 5, 51, 0, 0, 198, 226, 3, 10, 5, 8, 199, 226, 3, 16, 8, 0, 200, 226, 3, 12, 6, 0, 201, 203, 3, 16, 8, 0, 202, 204, 5, 51, 0, 0, 203, 202, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 205, 1, 0, 0, 0, 205, 206, 5, 46, 0, 0, 206, 207, 5, 50, 0, 0, 207, 212, 3, 16, 8, 0, 208, 209, 5, 41, 0, 0, 209, 211, 3, 16, 8, 0, 210, 208, 1, 0, 0, 0, 211, 214, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 215, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 215, 216, 5, 57, 0, 0, 216, 226, 1, 0, 0, 0, 217, 218, 3, 16, 8, 0, 218, 220, 5, 47, 0, 0, 219, 221, 5, 51, 0, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 223, 5, 52, 0, 0, 223, 226, 1, 0, 0, 0, 224, 226, 3, 14, 7, 0, 225, 196, 1, 0, 0, 0, 225, 199, 1, 0, 0, 0, 225, 200, 1, 0, 0, 0, 225, 201, 1, 0, 0, 0, 225, 217, 1, 0, 0, 0, 225, 224, 1, 0, 0, 0, 226, 235, 1, 0, 0, 0, 227, 228, 10, 5, 0, 0, 228, 229, 5, 36, 0, 0, 229, 234, 3, 10, 5, 6, 230, 231, 10, 4, 0, 0, 231, 232, 5, 54, 0, 0, 232, 234, 3, 10, 5, 5, 233, 227, 1, 0, 0, 0, 233, 230, 1, 0, 0, 0, 234, 237, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 11, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 238, 240, 3, 16, 8, 0, 239, 241, 5, 51, 0, 0, 240, 239, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 5, 49, 0, 0, 243, 244, 3, 106, 53, 0, 244, 253, 1, 0, 0, 0, 245, 247, 3, 16, 8, 0, 246, 248, 5, 51, 0, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 5, 56, 0, 0, 250, 251, 3, 106, 53, 0, 251, 253, 1, 0, 0, 0, 252, 238, 1, 0, 0, 0, 252, 245, 1, 0, 0, 0, 253, 13, 1, 0, 0, 0, 254, 257, 3, 58, 29, 0, 255, 256, 5, 39, 0, 0, 256, 258, 3, 30, 15, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 259, 1, 0, 0, 0, 259, 260, 5, 40, 0, 0, 260, 261, 3, 68, 34, 0, 261, 15, 1, 0, 0, 0, 262, 268, 3, 18, 9, 0, 263, 264, 3, 18, 9, 0, 264, 265, 3, 108, 54, 0, 265, 266, 3, 18, 9, 0, 266, 268, 1, 0, 0, 0, 267, 262, 1, 0, 0, 0, 267, 263, 1, 0, 0, 0, 268, 17, 1, 0, 0, 0, 269, 270, 6, 9, -1, 0, 270, 274, 3, 20, 10, 0, 271, 272, 7, 0, 0, 0, 272, 274, 3, 18, 9, 3, 273, 269, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 274, 283, 1, 0, 0, 0, 275, 276, 10, 2, 0, 0, 276, 277, 7, 1, 0, 0, 277, 282, 3, 18, 9, 3, 278, 279, 10, 1, 0, 0, 279, 280, 7, 0, 0, 0, 280, 282, 3, 18, 9, 2, 281, 275, 1, 0, 0, 0, 281, 278, 1, 0, 0, 0, 282, 285, 1, 0, 0, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 19, 1, 0, 0, 0, 285, 283, 1, 0, 0, 0, 286, 287, 6, 10, -1, 0, 287, 295, 3, 68, 34, 0, 288, 295, 3, 58, 29, 0, 289, 295, 3, 22, 11, 0, 290, 291, 5, 50, 0, 0, 291, 292, 3, 10, 5, 0, 292, 293, 5, 57, 0, 0, 293, 295, 1, 0, 0, 0, 294, 286, 1, 0, 0, 0, 294, 288, 1, 0, 0, 0, 294, 289, 1, 0, 0, 0, 294, 290, 1, 0, 0, 0, 295, 301, 1, 0, 0, 0, 296, 297, 10, 1, 0, 0, 297, 298, 5, 39, 0, 0, 298, 300, 3, 30, 15, 0, 299, 296, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 21, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 305, 3, 24, 12, 0, 305, 319, 5, 50, 0, 0, 306, 320, 5, 68, 0, 0, 307, 312, 3, 10, 5, 0, 308, 309, 5, 41, 0, 0, 309, 311, 3, 10, 5, 0, 310, 308, 1, 0, 0, 0, 311, 314, 1, 0, 0, 0, 312, 310, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 317, 1, 0, 0, 0, 314, 312, 1, 0, 0, 0, 315, 316, 5, 41, 0, 0, 316, 318, 3, 26, 13, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 320, 1, 0, 0, 0, 319, 306, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 322, 5, 57, 0, 0, 322, 23, 1, 0, 0, 0, 323, 324, 3, 72, 36, 0, 324, 25, 1, 0, 0, 0, 325, 326, 5, 71, 0, 0, 326, 331, 3, 28, 14, 0, 327, 328, 5, 41, 0, 0, 328, 330, 3, 28, 14, 0, 329, 327, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 335, 5, 72, 0, 0, 335, 27, 1, 0, 0, 0, 336, 337, 3, 106, 53, 0, 337, 338, 5, 40, 0, 0, 338, 339, 3, 68, 34, 0, 339, 29, 1, 0, 0, 0, 340, 341, 3, 64, 32, 0, 341, 31, 1, 0, 0, 0, 342, 343, 5, 12, 0, 0, 343, 344, 3, 34, 17, 0, 344, 33, 1, 0, 0, 0, 345, 350, 3, 36, 18, 0, 346, 347, 5, 41, 0, 0, 347, 349, 3, 36, 18, 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, 35, 1, 0, 0, 0, 352, 350, 1, 0, 0, 0, 353, 354, 3, 58, 29, 0, 354, 355, 5, 38, 0, 0, 355, 357, 1, 0, 0, 0, 356, 353, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 359, 3, 10, 5, 0, 359, 37, 1, 0, 0, 0, 360, 361, 5, 6, 0, 0, 361, 366, 3, 40, 20, 0, 362, 363, 5, 41, 0, 0, 363, 365, 3, 40, 20, 0, 364, 362, 1, 0, 0, 0, 365, 368, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 369, 371, 3, 46, 23, 0, 370, 369, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 39, 1, 0, 0, 0, 372, 373, 3, 42, 21, 0, 373, 374, 5, 40, 0, 0, 374, 376, 1, 0, 0, 0, 375, 372, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 3, 44, 22, 0, 378, 41, 1, 0, 0, 0, 379, 380, 7, 2, 0, 0, 380, 43, 1, 0, 0, 0, 381, 382, 7, 2, 0, 0, 382, 45, 1, 0, 0, 0, 383, 384, 5, 84, 0, 0, 384, 389, 5, 85, 0, 0, 385, 386, 5, 41, 0, 0, 386, 388, 5, 85, 0, 0, 387, 385, 1, 0, 0, 0, 388, 391, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 47, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 392, 393, 5, 22, 0, 0, 393, 398, 3, 40, 20, 0, 394, 395, 5, 41, 0, 0, 395, 397, 3, 40, 20, 0, 396, 394, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 403, 3, 54, 27, 0, 402, 401, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 406, 1, 0, 0, 0, 404, 405, 5, 35, 0, 0, 405, 407, 3, 34, 17, 0, 406, 404, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 49, 1, 0, 0, 0, 408, 409, 5, 4, 0, 0, 409, 410, 3, 34, 17, 0, 410, 51, 1, 0, 0, 0, 411, 413, 5, 15, 0, 0, 412, 414, 3, 54, 27, 0, 413, 412, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 416, 5, 35, 0, 0, 416, 418, 3, 34, 17, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 53, 1, 0, 0, 0, 419, 424, 3, 56, 28, 0, 420, 421, 5, 41, 0, 0, 421, 423, 3, 56, 28, 0, 422, 420, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 55, 1, 0, 0, 0, 426, 424, 1, 0, 0, 0, 427, 430, 3, 36, 18, 0, 428, 429, 5, 16, 0, 0, 429, 431, 3, 10, 5, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 57, 1, 0, 0, 0, 432, 437, 3, 72, 36, 0, 433, 434, 5, 43, 0, 0, 434, 436, 3, 72, 36, 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, 59, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 440, 445, 3, 66, 33, 0, 441, 442, 5, 43, 0, 0, 442, 444, 3, 66, 33, 0, 443, 441, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 61, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 448, 453, 3, 60, 30, 0, 449, 450, 5, 41, 0, 0, 450, 452, 3, 60, 30, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 63, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 7, 3, 0, 0, 457, 65, 1, 0, 0, 0, 458, 461, 5, 89, 0, 0, 459, 461, 3, 70, 35, 0, 460, 458, 1, 0, 0, 0, 460, 459, 1, 0, 0, 0, 461, 67, 1, 0, 0, 0, 462, 505, 5, 52, 0, 0, 463, 464, 3, 104, 52, 0, 464, 465, 5, 76, 0, 0, 465, 505, 1, 0, 0, 0, 466, 505, 3, 102, 51, 0, 467, 505, 3, 104, 52, 0, 468, 505, 3, 98, 49, 0, 469, 505, 3, 70, 35, 0, 470, 505, 3, 106, 53, 0, 471, 472, 5, 74, 0, 0, 472, 477, 3, 100, 50, 0, 473, 474, 5, 41, 0, 0, 474, 476, 3, 100, 50, 0, 475, 473, 1, 0, 0, 0, 476, 479, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 5, 75, 0, 0, 481, 505, 1, 0, 0, 0, 482, 483, 5, 74, 0, 0, 483, 488, 3, 98, 49, 0, 484, 485, 5, 41, 0, 0, 485, 487, 3, 98, 49, 0, 486, 484, 1, 0, 0, 0, 487, 490, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 491, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 491, 492, 5, 75, 0, 0, 492, 505, 1, 0, 0, 0, 493, 494, 5, 74, 0, 0, 494, 499, 3, 106, 53, 0, 495, 496, 5, 41, 0, 0, 496, 498, 3, 106, 53, 0, 497, 495, 1, 0, 0, 0, 498, 501, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 502, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 502, 503, 5, 75, 0, 0, 503, 505, 1, 0, 0, 0, 504, 462, 1, 0, 0, 0, 504, 463, 1, 0, 0, 0, 504, 466, 1, 0, 0, 0, 504, 467, 1, 0, 0, 0, 504, 468, 1, 0, 0, 0, 504, 469, 1, 0, 0, 0, 504, 470, 1, 0, 0, 0, 504, 471, 1, 0, 0, 0, 504, 482, 1, 0, 0, 0, 504, 493, 1, 0, 0, 0, 505, 69, 1, 0, 0, 0, 506, 509, 5, 55, 0, 0, 507, 509, 5, 73, 0, 0, 508, 506, 1, 0, 0, 0, 508, 507, 1, 0, 0, 0, 509, 71, 1, 0, 0, 0, 510, 513, 3, 64, 32, 0, 511, 513, 3, 70, 35, 0, 512, 510, 1, 0, 0, 0, 512, 511, 1, 0, 0, 0, 513, 73, 1, 0, 0, 0, 514, 515, 5, 9, 0, 0, 515, 516, 5, 33, 0, 0, 516, 75, 1, 0, 0, 0, 517, 518, 5, 14, 0, 0, 518, 523, 3, 78, 39, 0, 519, 520, 5, 41, 0, 0, 520, 522, 3, 78, 39, 0, 521, 519, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 77, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 528, 3, 10, 5, 0, 527, 529, 7, 4, 0, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 532, 1, 0, 0, 0, 530, 531, 5, 53, 0, 0, 531, 533, 7, 5, 0, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 79, 1, 0, 0, 0, 534, 535, 5, 8, 0, 0, 535, 536, 3, 62, 31, 0, 536, 81, 1, 0, 0, 0, 537, 538, 5, 2, 0, 0, 538, 539, 3, 62, 31, 0, 539, 83, 1, 0, 0, 0, 540, 541, 5, 11, 0, 0, 541, 546, 3, 86, 43, 0, 542, 543, 5, 41, 0, 0, 543, 545, 3, 86, 43, 0, 544, 542, 1, 0, 0, 0, 545, 548, 1, 0, 0, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 85, 1, 0, 0, 0, 548, 546, 1, 0, 0, 0, 549, 550, 3, 60, 30, 0, 550, 551, 5, 93, 0, 0, 551, 552, 3, 60, 30, 0, 552, 87, 1, 0, 0, 0, 553, 554, 5, 1, 0, 0, 554, 555, 3, 20, 10, 0, 555, 557, 3, 106, 53, 0, 556, 558, 3, 94, 47, 0, 557, 556, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 89, 1, 0, 0, 0, 559, 560, 5, 7, 0, 0, 560, 561, 3, 20, 10, 0, 561, 562, 3, 106, 53, 0, 562, 91, 1, 0, 0, 0, 563, 564, 5, 10, 0, 0, 564, 565, 3, 58, 29, 0, 565, 93, 1, 0, 0, 0, 566, 571, 3, 96, 48, 0, 567, 568, 5, 41, 0, 0, 568, 570, 3, 96, 48, 0, 569, 567, 1, 0, 0, 0, 570, 573, 1, 0, 0, 0, 571, 569, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 95, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 574, 575, 3, 64, 32, 0, 575, 576, 5, 38, 0, 0, 576, 577, 3, 68, 34, 0, 577, 97, 1, 0, 0, 0, 578, 579, 7, 6, 0, 0, 579, 99, 1, 0, 0, 0, 580, 583, 3, 102, 51, 0, 581, 583, 3, 104, 52, 0, 582, 580, 1, 0, 0, 0, 582, 581, 1, 0, 0, 0, 583, 101, 1, 0, 0, 0, 584, 586, 7, 0, 0, 0, 585, 584, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 5, 34, 0, 0, 588, 103, 1, 0, 0, 0, 589, 591, 7, 0, 0, 0, 590, 589, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 5, 33, 0, 0, 593, 105, 1, 0, 0, 0, 594, 595, 5, 32, 0, 0, 595, 107, 1, 0, 0, 0, 596, 597, 7, 7, 0, 0, 597, 109, 1, 0, 0, 0, 598, 599, 5, 5, 0, 0, 599, 600, 3, 112, 56, 0, 600, 111, 1, 0, 0, 0, 601, 602, 5, 74, 0, 0, 602, 603, 3, 2, 1, 0, 603, 604, 5, 75, 0, 0, 604, 113, 1, 0, 0, 0, 605, 606, 5, 13, 0, 0, 606, 607, 5, 109, 0, 0, 607, 115, 1, 0, 0, 0, 608, 609, 5, 3, 0, 0, 609, 612, 5, 99, 0, 0, 610, 611, 5, 97, 0, 0, 611, 613, 3, 60, 30, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 623, 1, 0, 0, 0, 614, 615, 5, 98, 0, 0, 615, 620, 3, 118, 59, 0, 616, 617, 5, 41, 0, 0, 617, 619, 3, 118, 59, 0, 618, 616, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 624, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 614, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 117, 1, 0, 0, 0, 625, 626, 3, 60, 30, 0, 626, 627, 5, 38, 0, 0, 627, 629, 1, 0, 0, 0, 628, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 3, 60, 30, 0, 631, 119, 1, 0, 0, 0, 632, 633, 5, 21, 0, 0, 633, 634, 3, 40, 20, 0, 634, 635, 5, 97, 0, 0, 635, 636, 3, 62, 31, 0, 636, 121, 1, 0, 0, 0, 637, 638, 5, 19, 0, 0, 638, 641, 3, 54, 27, 0, 639, 640, 5, 35, 0, 0, 640, 642, 3, 34, 17, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 123, 1, 0, 0, 0, 643, 644, 7, 8, 0, 0, 644, 645, 5, 123, 0, 0, 645, 646, 3, 126, 63, 0, 646, 647, 3, 128, 64, 0, 647, 125, 1, 0, 0, 0, 648, 649, 3, 40, 20, 0, 649, 127, 1, 0, 0, 0, 650, 651, 5, 97, 0, 0, 651, 656, 3, 130, 65, 0, 652, 653, 5, 41, 0, 0, 653, 655, 3, 130, 65, 0, 654, 652, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 129, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 659, 660, 3, 16, 8, 0, 660, 131, 1, 0, 0, 0, 661, 662, 5, 18, 0, 0, 662, 665, 3, 58, 29, 0, 663, 664, 5, 97, 0, 0, 664, 666, 3, 58, 29, 0, 665, 663, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 672, 1, 0, 0, 0, 667, 668, 5, 93, 0, 0, 668, 669, 3, 58, 29, 0, 669, 670, 5, 41, 0, 0, 670, 671, 3, 58, 29, 0, 671, 673, 1, 0, 0, 0, 672, 667, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 133, 1, 0, 0, 0, 674, 675, 5, 20, 0, 0, 675, 676, 3, 62, 31, 0, 676, 135, 1, 0, 0, 0, 677, 678, 5, 26, 0, 0, 678, 679, 3, 138, 69, 0, 679, 137, 1, 0, 0, 0, 680, 682, 3, 140, 70, 0, 681, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 139, 1, 0, 0, 0, 685, 686, 5, 50, 0, 0, 686, 687, 3, 142, 71, 0, 687, 688, 5, 57, 0, 0, 688, 141, 1, 0, 0, 0, 689, 690, 6, 71, -1, 0, 690, 691, 3, 144, 72, 0, 691, 697, 1, 0, 0, 0, 692, 693, 10, 1, 0, 0, 693, 694, 5, 31, 0, 0, 694, 696, 3, 144, 72, 0, 695, 692, 1, 0, 0, 0, 696, 699, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 143, 1, 0, 0, 0, 699, 697, 1, 0, 0, 0, 700, 704, 3, 8, 4, 0, 701, 704, 3, 76, 38, 0, 702, 704, 3, 74, 37, 0, 703, 700, 1, 0, 0, 0, 703, 701, 1, 0, 0, 0, 703, 702, 1, 0, 0, 0, 704, 145, 1, 0, 0, 0, 66, 157, 166, 191, 203, 212, 220, 225, 233, 235, 240, 247, 252, 257, 267, 273, 281, 283, 294, 301, 312, 317, 319, 331, 350, 356, 366, 370, 375, 389, 398, 402, 406, 413, 417, 424, 430, 437, 445, 453, 460, 477, 488, 499, 504, 508, 512, 523, 528, 532, 546, 557, 571, 582, 585, 590, 612, 620, 623, 628, 641, 656, 665, 672, 683, 697, 703] \ No newline at end of file +[4, 1, 143, 726, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 160, 8, 1, 10, 1, 12, 1, 163, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 171, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 198, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 210, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 217, 8, 5, 10, 5, 12, 5, 220, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 227, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 232, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 240, 8, 5, 10, 5, 12, 5, 243, 9, 5, 1, 6, 1, 6, 3, 6, 247, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 254, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 259, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 264, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 274, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 280, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 288, 8, 9, 10, 9, 12, 9, 291, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 301, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 306, 8, 10, 10, 10, 12, 10, 309, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 317, 8, 11, 10, 11, 12, 11, 320, 9, 11, 1, 11, 1, 11, 3, 11, 324, 8, 11, 3, 11, 326, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 336, 8, 13, 10, 13, 12, 13, 339, 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, 355, 8, 17, 10, 17, 12, 17, 358, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 363, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 371, 8, 19, 10, 19, 12, 19, 374, 9, 19, 1, 19, 3, 19, 377, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 382, 8, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 394, 8, 23, 10, 23, 12, 23, 397, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 403, 8, 24, 10, 24, 12, 24, 406, 9, 24, 1, 24, 3, 24, 409, 8, 24, 1, 24, 1, 24, 3, 24, 413, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 420, 8, 26, 1, 26, 1, 26, 3, 26, 424, 8, 26, 1, 27, 1, 27, 1, 27, 5, 27, 429, 8, 27, 10, 27, 12, 27, 432, 9, 27, 1, 28, 1, 28, 1, 28, 3, 28, 437, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 442, 8, 29, 10, 29, 12, 29, 445, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 450, 8, 30, 10, 30, 12, 30, 453, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 458, 8, 31, 10, 31, 12, 31, 461, 9, 31, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 467, 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, 482, 8, 34, 10, 34, 12, 34, 485, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 493, 8, 34, 10, 34, 12, 34, 496, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 504, 8, 34, 10, 34, 12, 34, 507, 9, 34, 1, 34, 1, 34, 3, 34, 511, 8, 34, 1, 35, 1, 35, 3, 35, 515, 8, 35, 1, 36, 1, 36, 3, 36, 519, 8, 36, 1, 37, 1, 37, 1, 37, 3, 37, 524, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 533, 8, 39, 10, 39, 12, 39, 536, 9, 39, 1, 40, 1, 40, 3, 40, 540, 8, 40, 1, 40, 1, 40, 3, 40, 544, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 556, 8, 43, 10, 43, 12, 43, 559, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 569, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 581, 8, 48, 10, 48, 12, 48, 584, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 594, 8, 51, 1, 52, 3, 52, 597, 8, 52, 1, 52, 1, 52, 1, 53, 3, 53, 602, 8, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 624, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 630, 8, 59, 10, 59, 12, 59, 633, 9, 59, 3, 59, 635, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 640, 8, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 653, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 666, 8, 65, 10, 65, 12, 65, 669, 9, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 677, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 684, 8, 67, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 70, 4, 70, 693, 8, 70, 11, 70, 12, 70, 694, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 707, 8, 72, 10, 72, 12, 72, 710, 9, 72, 1, 73, 1, 73, 1, 73, 3, 73, 715, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 721, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 0, 5, 2, 10, 18, 20, 144, 75, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 0, 9, 1, 0, 70, 71, 1, 0, 72, 74, 2, 0, 33, 33, 89, 89, 1, 0, 80, 81, 2, 0, 41, 41, 46, 46, 2, 0, 49, 49, 52, 52, 2, 0, 48, 48, 62, 62, 2, 0, 63, 63, 65, 69, 2, 0, 17, 17, 25, 26, 754, 0, 150, 1, 0, 0, 0, 2, 153, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 6, 197, 1, 0, 0, 0, 8, 199, 1, 0, 0, 0, 10, 231, 1, 0, 0, 0, 12, 258, 1, 0, 0, 0, 14, 260, 1, 0, 0, 0, 16, 273, 1, 0, 0, 0, 18, 279, 1, 0, 0, 0, 20, 300, 1, 0, 0, 0, 22, 310, 1, 0, 0, 0, 24, 329, 1, 0, 0, 0, 26, 331, 1, 0, 0, 0, 28, 342, 1, 0, 0, 0, 30, 346, 1, 0, 0, 0, 32, 348, 1, 0, 0, 0, 34, 351, 1, 0, 0, 0, 36, 362, 1, 0, 0, 0, 38, 366, 1, 0, 0, 0, 40, 381, 1, 0, 0, 0, 42, 385, 1, 0, 0, 0, 44, 387, 1, 0, 0, 0, 46, 389, 1, 0, 0, 0, 48, 398, 1, 0, 0, 0, 50, 414, 1, 0, 0, 0, 52, 417, 1, 0, 0, 0, 54, 425, 1, 0, 0, 0, 56, 433, 1, 0, 0, 0, 58, 438, 1, 0, 0, 0, 60, 446, 1, 0, 0, 0, 62, 454, 1, 0, 0, 0, 64, 462, 1, 0, 0, 0, 66, 466, 1, 0, 0, 0, 68, 510, 1, 0, 0, 0, 70, 514, 1, 0, 0, 0, 72, 518, 1, 0, 0, 0, 74, 523, 1, 0, 0, 0, 76, 525, 1, 0, 0, 0, 78, 528, 1, 0, 0, 0, 80, 537, 1, 0, 0, 0, 82, 545, 1, 0, 0, 0, 84, 548, 1, 0, 0, 0, 86, 551, 1, 0, 0, 0, 88, 560, 1, 0, 0, 0, 90, 564, 1, 0, 0, 0, 92, 570, 1, 0, 0, 0, 94, 574, 1, 0, 0, 0, 96, 577, 1, 0, 0, 0, 98, 585, 1, 0, 0, 0, 100, 589, 1, 0, 0, 0, 102, 593, 1, 0, 0, 0, 104, 596, 1, 0, 0, 0, 106, 601, 1, 0, 0, 0, 108, 605, 1, 0, 0, 0, 110, 607, 1, 0, 0, 0, 112, 609, 1, 0, 0, 0, 114, 612, 1, 0, 0, 0, 116, 616, 1, 0, 0, 0, 118, 619, 1, 0, 0, 0, 120, 639, 1, 0, 0, 0, 122, 643, 1, 0, 0, 0, 124, 648, 1, 0, 0, 0, 126, 654, 1, 0, 0, 0, 128, 659, 1, 0, 0, 0, 130, 661, 1, 0, 0, 0, 132, 670, 1, 0, 0, 0, 134, 672, 1, 0, 0, 0, 136, 685, 1, 0, 0, 0, 138, 688, 1, 0, 0, 0, 140, 692, 1, 0, 0, 0, 142, 696, 1, 0, 0, 0, 144, 700, 1, 0, 0, 0, 146, 714, 1, 0, 0, 0, 148, 716, 1, 0, 0, 0, 150, 151, 3, 2, 1, 0, 151, 152, 5, 0, 0, 1, 152, 1, 1, 0, 0, 0, 153, 154, 6, 1, -1, 0, 154, 155, 3, 4, 2, 0, 155, 161, 1, 0, 0, 0, 156, 157, 10, 1, 0, 0, 157, 158, 5, 32, 0, 0, 158, 160, 3, 6, 3, 0, 159, 156, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 3, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 171, 3, 112, 56, 0, 165, 171, 3, 38, 19, 0, 166, 171, 3, 32, 16, 0, 167, 171, 3, 116, 58, 0, 168, 169, 4, 2, 1, 0, 169, 171, 3, 48, 24, 0, 170, 164, 1, 0, 0, 0, 170, 165, 1, 0, 0, 0, 170, 166, 1, 0, 0, 0, 170, 167, 1, 0, 0, 0, 170, 168, 1, 0, 0, 0, 171, 5, 1, 0, 0, 0, 172, 198, 3, 50, 25, 0, 173, 198, 3, 8, 4, 0, 174, 198, 3, 82, 41, 0, 175, 198, 3, 76, 38, 0, 176, 198, 3, 52, 26, 0, 177, 198, 3, 78, 39, 0, 178, 198, 3, 84, 42, 0, 179, 198, 3, 86, 43, 0, 180, 198, 3, 90, 45, 0, 181, 198, 3, 92, 46, 0, 182, 198, 3, 118, 59, 0, 183, 198, 3, 94, 47, 0, 184, 198, 3, 126, 63, 0, 185, 186, 4, 3, 2, 0, 186, 198, 3, 124, 62, 0, 187, 188, 4, 3, 3, 0, 188, 198, 3, 122, 61, 0, 189, 190, 4, 3, 4, 0, 190, 198, 3, 134, 67, 0, 191, 192, 4, 3, 5, 0, 192, 198, 3, 136, 68, 0, 193, 194, 4, 3, 6, 0, 194, 198, 3, 138, 69, 0, 195, 196, 4, 3, 7, 0, 196, 198, 3, 148, 74, 0, 197, 172, 1, 0, 0, 0, 197, 173, 1, 0, 0, 0, 197, 174, 1, 0, 0, 0, 197, 175, 1, 0, 0, 0, 197, 176, 1, 0, 0, 0, 197, 177, 1, 0, 0, 0, 197, 178, 1, 0, 0, 0, 197, 179, 1, 0, 0, 0, 197, 180, 1, 0, 0, 0, 197, 181, 1, 0, 0, 0, 197, 182, 1, 0, 0, 0, 197, 183, 1, 0, 0, 0, 197, 184, 1, 0, 0, 0, 197, 185, 1, 0, 0, 0, 197, 187, 1, 0, 0, 0, 197, 189, 1, 0, 0, 0, 197, 191, 1, 0, 0, 0, 197, 193, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 198, 7, 1, 0, 0, 0, 199, 200, 5, 16, 0, 0, 200, 201, 3, 10, 5, 0, 201, 9, 1, 0, 0, 0, 202, 203, 6, 5, -1, 0, 203, 204, 5, 55, 0, 0, 204, 232, 3, 10, 5, 8, 205, 232, 3, 16, 8, 0, 206, 232, 3, 12, 6, 0, 207, 209, 3, 16, 8, 0, 208, 210, 5, 55, 0, 0, 209, 208, 1, 0, 0, 0, 209, 210, 1, 0, 0, 0, 210, 211, 1, 0, 0, 0, 211, 212, 5, 50, 0, 0, 212, 213, 5, 54, 0, 0, 213, 218, 3, 16, 8, 0, 214, 215, 5, 45, 0, 0, 215, 217, 3, 16, 8, 0, 216, 214, 1, 0, 0, 0, 217, 220, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 221, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 221, 222, 5, 61, 0, 0, 222, 232, 1, 0, 0, 0, 223, 224, 3, 16, 8, 0, 224, 226, 5, 51, 0, 0, 225, 227, 5, 55, 0, 0, 226, 225, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 229, 5, 56, 0, 0, 229, 232, 1, 0, 0, 0, 230, 232, 3, 14, 7, 0, 231, 202, 1, 0, 0, 0, 231, 205, 1, 0, 0, 0, 231, 206, 1, 0, 0, 0, 231, 207, 1, 0, 0, 0, 231, 223, 1, 0, 0, 0, 231, 230, 1, 0, 0, 0, 232, 241, 1, 0, 0, 0, 233, 234, 10, 5, 0, 0, 234, 235, 5, 40, 0, 0, 235, 240, 3, 10, 5, 6, 236, 237, 10, 4, 0, 0, 237, 238, 5, 58, 0, 0, 238, 240, 3, 10, 5, 5, 239, 233, 1, 0, 0, 0, 239, 236, 1, 0, 0, 0, 240, 243, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 11, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 246, 3, 16, 8, 0, 245, 247, 5, 55, 0, 0, 246, 245, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 5, 53, 0, 0, 249, 250, 3, 108, 54, 0, 250, 259, 1, 0, 0, 0, 251, 253, 3, 16, 8, 0, 252, 254, 5, 55, 0, 0, 253, 252, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 255, 1, 0, 0, 0, 255, 256, 5, 60, 0, 0, 256, 257, 3, 108, 54, 0, 257, 259, 1, 0, 0, 0, 258, 244, 1, 0, 0, 0, 258, 251, 1, 0, 0, 0, 259, 13, 1, 0, 0, 0, 260, 263, 3, 58, 29, 0, 261, 262, 5, 43, 0, 0, 262, 264, 3, 30, 15, 0, 263, 261, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 5, 44, 0, 0, 266, 267, 3, 68, 34, 0, 267, 15, 1, 0, 0, 0, 268, 274, 3, 18, 9, 0, 269, 270, 3, 18, 9, 0, 270, 271, 3, 110, 55, 0, 271, 272, 3, 18, 9, 0, 272, 274, 1, 0, 0, 0, 273, 268, 1, 0, 0, 0, 273, 269, 1, 0, 0, 0, 274, 17, 1, 0, 0, 0, 275, 276, 6, 9, -1, 0, 276, 280, 3, 20, 10, 0, 277, 278, 7, 0, 0, 0, 278, 280, 3, 18, 9, 3, 279, 275, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 280, 289, 1, 0, 0, 0, 281, 282, 10, 2, 0, 0, 282, 283, 7, 1, 0, 0, 283, 288, 3, 18, 9, 3, 284, 285, 10, 1, 0, 0, 285, 286, 7, 0, 0, 0, 286, 288, 3, 18, 9, 2, 287, 281, 1, 0, 0, 0, 287, 284, 1, 0, 0, 0, 288, 291, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 19, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 292, 293, 6, 10, -1, 0, 293, 301, 3, 68, 34, 0, 294, 301, 3, 58, 29, 0, 295, 301, 3, 22, 11, 0, 296, 297, 5, 54, 0, 0, 297, 298, 3, 10, 5, 0, 298, 299, 5, 61, 0, 0, 299, 301, 1, 0, 0, 0, 300, 292, 1, 0, 0, 0, 300, 294, 1, 0, 0, 0, 300, 295, 1, 0, 0, 0, 300, 296, 1, 0, 0, 0, 301, 307, 1, 0, 0, 0, 302, 303, 10, 1, 0, 0, 303, 304, 5, 43, 0, 0, 304, 306, 3, 30, 15, 0, 305, 302, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 21, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 3, 24, 12, 0, 311, 325, 5, 54, 0, 0, 312, 326, 5, 72, 0, 0, 313, 318, 3, 10, 5, 0, 314, 315, 5, 45, 0, 0, 315, 317, 3, 10, 5, 0, 316, 314, 1, 0, 0, 0, 317, 320, 1, 0, 0, 0, 318, 316, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 323, 1, 0, 0, 0, 320, 318, 1, 0, 0, 0, 321, 322, 5, 45, 0, 0, 322, 324, 3, 26, 13, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 326, 1, 0, 0, 0, 325, 312, 1, 0, 0, 0, 325, 313, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 328, 5, 61, 0, 0, 328, 23, 1, 0, 0, 0, 329, 330, 3, 72, 36, 0, 330, 25, 1, 0, 0, 0, 331, 332, 5, 75, 0, 0, 332, 337, 3, 28, 14, 0, 333, 334, 5, 45, 0, 0, 334, 336, 3, 28, 14, 0, 335, 333, 1, 0, 0, 0, 336, 339, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 1, 0, 0, 0, 339, 337, 1, 0, 0, 0, 340, 341, 5, 76, 0, 0, 341, 27, 1, 0, 0, 0, 342, 343, 3, 108, 54, 0, 343, 344, 5, 44, 0, 0, 344, 345, 3, 68, 34, 0, 345, 29, 1, 0, 0, 0, 346, 347, 3, 64, 32, 0, 347, 31, 1, 0, 0, 0, 348, 349, 5, 12, 0, 0, 349, 350, 3, 34, 17, 0, 350, 33, 1, 0, 0, 0, 351, 356, 3, 36, 18, 0, 352, 353, 5, 45, 0, 0, 353, 355, 3, 36, 18, 0, 354, 352, 1, 0, 0, 0, 355, 358, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 35, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 359, 360, 3, 58, 29, 0, 360, 361, 5, 42, 0, 0, 361, 363, 1, 0, 0, 0, 362, 359, 1, 0, 0, 0, 362, 363, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 365, 3, 10, 5, 0, 365, 37, 1, 0, 0, 0, 366, 367, 5, 6, 0, 0, 367, 372, 3, 40, 20, 0, 368, 369, 5, 45, 0, 0, 369, 371, 3, 40, 20, 0, 370, 368, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 370, 1, 0, 0, 0, 372, 373, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 375, 377, 3, 46, 23, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 39, 1, 0, 0, 0, 378, 379, 3, 42, 21, 0, 379, 380, 5, 44, 0, 0, 380, 382, 1, 0, 0, 0, 381, 378, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 384, 3, 44, 22, 0, 384, 41, 1, 0, 0, 0, 385, 386, 7, 2, 0, 0, 386, 43, 1, 0, 0, 0, 387, 388, 7, 2, 0, 0, 388, 45, 1, 0, 0, 0, 389, 390, 5, 88, 0, 0, 390, 395, 5, 89, 0, 0, 391, 392, 5, 45, 0, 0, 392, 394, 5, 89, 0, 0, 393, 391, 1, 0, 0, 0, 394, 397, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 47, 1, 0, 0, 0, 397, 395, 1, 0, 0, 0, 398, 399, 5, 22, 0, 0, 399, 404, 3, 40, 20, 0, 400, 401, 5, 45, 0, 0, 401, 403, 3, 40, 20, 0, 402, 400, 1, 0, 0, 0, 403, 406, 1, 0, 0, 0, 404, 402, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 408, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 407, 409, 3, 54, 27, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 411, 5, 36, 0, 0, 411, 413, 3, 34, 17, 0, 412, 410, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 49, 1, 0, 0, 0, 414, 415, 5, 4, 0, 0, 415, 416, 3, 34, 17, 0, 416, 51, 1, 0, 0, 0, 417, 419, 5, 15, 0, 0, 418, 420, 3, 54, 27, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 422, 5, 36, 0, 0, 422, 424, 3, 34, 17, 0, 423, 421, 1, 0, 0, 0, 423, 424, 1, 0, 0, 0, 424, 53, 1, 0, 0, 0, 425, 430, 3, 56, 28, 0, 426, 427, 5, 45, 0, 0, 427, 429, 3, 56, 28, 0, 428, 426, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 55, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 436, 3, 36, 18, 0, 434, 435, 5, 16, 0, 0, 435, 437, 3, 10, 5, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 57, 1, 0, 0, 0, 438, 443, 3, 72, 36, 0, 439, 440, 5, 47, 0, 0, 440, 442, 3, 72, 36, 0, 441, 439, 1, 0, 0, 0, 442, 445, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 59, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 446, 451, 3, 66, 33, 0, 447, 448, 5, 47, 0, 0, 448, 450, 3, 66, 33, 0, 449, 447, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 61, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 454, 459, 3, 60, 30, 0, 455, 456, 5, 45, 0, 0, 456, 458, 3, 60, 30, 0, 457, 455, 1, 0, 0, 0, 458, 461, 1, 0, 0, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 63, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 462, 463, 7, 3, 0, 0, 463, 65, 1, 0, 0, 0, 464, 467, 5, 93, 0, 0, 465, 467, 3, 70, 35, 0, 466, 464, 1, 0, 0, 0, 466, 465, 1, 0, 0, 0, 467, 67, 1, 0, 0, 0, 468, 511, 5, 56, 0, 0, 469, 470, 3, 106, 53, 0, 470, 471, 5, 80, 0, 0, 471, 511, 1, 0, 0, 0, 472, 511, 3, 104, 52, 0, 473, 511, 3, 106, 53, 0, 474, 511, 3, 100, 50, 0, 475, 511, 3, 70, 35, 0, 476, 511, 3, 108, 54, 0, 477, 478, 5, 78, 0, 0, 478, 483, 3, 102, 51, 0, 479, 480, 5, 45, 0, 0, 480, 482, 3, 102, 51, 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, 79, 0, 0, 487, 511, 1, 0, 0, 0, 488, 489, 5, 78, 0, 0, 489, 494, 3, 100, 50, 0, 490, 491, 5, 45, 0, 0, 491, 493, 3, 100, 50, 0, 492, 490, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 497, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 498, 5, 79, 0, 0, 498, 511, 1, 0, 0, 0, 499, 500, 5, 78, 0, 0, 500, 505, 3, 108, 54, 0, 501, 502, 5, 45, 0, 0, 502, 504, 3, 108, 54, 0, 503, 501, 1, 0, 0, 0, 504, 507, 1, 0, 0, 0, 505, 503, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 509, 5, 79, 0, 0, 509, 511, 1, 0, 0, 0, 510, 468, 1, 0, 0, 0, 510, 469, 1, 0, 0, 0, 510, 472, 1, 0, 0, 0, 510, 473, 1, 0, 0, 0, 510, 474, 1, 0, 0, 0, 510, 475, 1, 0, 0, 0, 510, 476, 1, 0, 0, 0, 510, 477, 1, 0, 0, 0, 510, 488, 1, 0, 0, 0, 510, 499, 1, 0, 0, 0, 511, 69, 1, 0, 0, 0, 512, 515, 5, 59, 0, 0, 513, 515, 5, 77, 0, 0, 514, 512, 1, 0, 0, 0, 514, 513, 1, 0, 0, 0, 515, 71, 1, 0, 0, 0, 516, 519, 3, 64, 32, 0, 517, 519, 3, 70, 35, 0, 518, 516, 1, 0, 0, 0, 518, 517, 1, 0, 0, 0, 519, 73, 1, 0, 0, 0, 520, 524, 3, 108, 54, 0, 521, 522, 4, 37, 13, 0, 522, 524, 3, 70, 35, 0, 523, 520, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 75, 1, 0, 0, 0, 525, 526, 5, 9, 0, 0, 526, 527, 5, 34, 0, 0, 527, 77, 1, 0, 0, 0, 528, 529, 5, 14, 0, 0, 529, 534, 3, 80, 40, 0, 530, 531, 5, 45, 0, 0, 531, 533, 3, 80, 40, 0, 532, 530, 1, 0, 0, 0, 533, 536, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 79, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 537, 539, 3, 10, 5, 0, 538, 540, 7, 4, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 543, 1, 0, 0, 0, 541, 542, 5, 57, 0, 0, 542, 544, 7, 5, 0, 0, 543, 541, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 81, 1, 0, 0, 0, 545, 546, 5, 8, 0, 0, 546, 547, 3, 62, 31, 0, 547, 83, 1, 0, 0, 0, 548, 549, 5, 2, 0, 0, 549, 550, 3, 62, 31, 0, 550, 85, 1, 0, 0, 0, 551, 552, 5, 11, 0, 0, 552, 557, 3, 88, 44, 0, 553, 554, 5, 45, 0, 0, 554, 556, 3, 88, 44, 0, 555, 553, 1, 0, 0, 0, 556, 559, 1, 0, 0, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 87, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 560, 561, 3, 60, 30, 0, 561, 562, 5, 39, 0, 0, 562, 563, 3, 60, 30, 0, 563, 89, 1, 0, 0, 0, 564, 565, 5, 1, 0, 0, 565, 566, 3, 20, 10, 0, 566, 568, 3, 108, 54, 0, 567, 569, 3, 96, 48, 0, 568, 567, 1, 0, 0, 0, 568, 569, 1, 0, 0, 0, 569, 91, 1, 0, 0, 0, 570, 571, 5, 7, 0, 0, 571, 572, 3, 20, 10, 0, 572, 573, 3, 108, 54, 0, 573, 93, 1, 0, 0, 0, 574, 575, 5, 10, 0, 0, 575, 576, 3, 58, 29, 0, 576, 95, 1, 0, 0, 0, 577, 582, 3, 98, 49, 0, 578, 579, 5, 45, 0, 0, 579, 581, 3, 98, 49, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 97, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 586, 3, 64, 32, 0, 586, 587, 5, 42, 0, 0, 587, 588, 3, 68, 34, 0, 588, 99, 1, 0, 0, 0, 589, 590, 7, 6, 0, 0, 590, 101, 1, 0, 0, 0, 591, 594, 3, 104, 52, 0, 592, 594, 3, 106, 53, 0, 593, 591, 1, 0, 0, 0, 593, 592, 1, 0, 0, 0, 594, 103, 1, 0, 0, 0, 595, 597, 7, 0, 0, 0, 596, 595, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 35, 0, 0, 599, 105, 1, 0, 0, 0, 600, 602, 7, 0, 0, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 34, 0, 0, 604, 107, 1, 0, 0, 0, 605, 606, 5, 33, 0, 0, 606, 109, 1, 0, 0, 0, 607, 608, 7, 7, 0, 0, 608, 111, 1, 0, 0, 0, 609, 610, 5, 5, 0, 0, 610, 611, 3, 114, 57, 0, 611, 113, 1, 0, 0, 0, 612, 613, 5, 78, 0, 0, 613, 614, 3, 2, 1, 0, 614, 615, 5, 79, 0, 0, 615, 115, 1, 0, 0, 0, 616, 617, 5, 13, 0, 0, 617, 618, 5, 110, 0, 0, 618, 117, 1, 0, 0, 0, 619, 620, 5, 3, 0, 0, 620, 623, 5, 100, 0, 0, 621, 622, 5, 37, 0, 0, 622, 624, 3, 60, 30, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 634, 1, 0, 0, 0, 625, 626, 5, 38, 0, 0, 626, 631, 3, 120, 60, 0, 627, 628, 5, 45, 0, 0, 628, 630, 3, 120, 60, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 625, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 119, 1, 0, 0, 0, 636, 637, 3, 60, 30, 0, 637, 638, 5, 42, 0, 0, 638, 640, 1, 0, 0, 0, 639, 636, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 3, 60, 30, 0, 642, 121, 1, 0, 0, 0, 643, 644, 5, 21, 0, 0, 644, 645, 3, 40, 20, 0, 645, 646, 5, 37, 0, 0, 646, 647, 3, 62, 31, 0, 647, 123, 1, 0, 0, 0, 648, 649, 5, 19, 0, 0, 649, 652, 3, 54, 27, 0, 650, 651, 5, 36, 0, 0, 651, 653, 3, 34, 17, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 125, 1, 0, 0, 0, 654, 655, 7, 8, 0, 0, 655, 656, 5, 124, 0, 0, 656, 657, 3, 128, 64, 0, 657, 658, 3, 130, 65, 0, 658, 127, 1, 0, 0, 0, 659, 660, 3, 40, 20, 0, 660, 129, 1, 0, 0, 0, 661, 662, 5, 37, 0, 0, 662, 667, 3, 132, 66, 0, 663, 664, 5, 45, 0, 0, 664, 666, 3, 132, 66, 0, 665, 663, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 131, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 670, 671, 3, 16, 8, 0, 671, 133, 1, 0, 0, 0, 672, 673, 5, 18, 0, 0, 673, 676, 3, 58, 29, 0, 674, 675, 5, 37, 0, 0, 675, 677, 3, 58, 29, 0, 676, 674, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 683, 1, 0, 0, 0, 678, 679, 5, 39, 0, 0, 679, 680, 3, 58, 29, 0, 680, 681, 5, 45, 0, 0, 681, 682, 3, 58, 29, 0, 682, 684, 1, 0, 0, 0, 683, 678, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 135, 1, 0, 0, 0, 685, 686, 5, 20, 0, 0, 686, 687, 3, 62, 31, 0, 687, 137, 1, 0, 0, 0, 688, 689, 5, 27, 0, 0, 689, 690, 3, 140, 70, 0, 690, 139, 1, 0, 0, 0, 691, 693, 3, 142, 71, 0, 692, 691, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 692, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 141, 1, 0, 0, 0, 696, 697, 5, 54, 0, 0, 697, 698, 3, 144, 72, 0, 698, 699, 5, 61, 0, 0, 699, 143, 1, 0, 0, 0, 700, 701, 6, 72, -1, 0, 701, 702, 3, 146, 73, 0, 702, 708, 1, 0, 0, 0, 703, 704, 10, 1, 0, 0, 704, 705, 5, 32, 0, 0, 705, 707, 3, 146, 73, 0, 706, 703, 1, 0, 0, 0, 707, 710, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 710, 708, 1, 0, 0, 0, 711, 715, 3, 8, 4, 0, 712, 715, 3, 78, 39, 0, 713, 715, 3, 76, 38, 0, 714, 711, 1, 0, 0, 0, 714, 712, 1, 0, 0, 0, 714, 713, 1, 0, 0, 0, 715, 147, 1, 0, 0, 0, 716, 717, 5, 23, 0, 0, 717, 720, 3, 74, 37, 0, 718, 719, 5, 37, 0, 0, 719, 721, 3, 34, 17, 0, 720, 718, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 38, 0, 0, 723, 724, 3, 74, 37, 0, 724, 149, 1, 0, 0, 0, 68, 161, 170, 197, 209, 218, 226, 231, 239, 241, 246, 253, 258, 263, 273, 279, 287, 289, 300, 307, 318, 323, 325, 337, 356, 362, 372, 376, 381, 395, 404, 408, 412, 419, 423, 430, 436, 443, 451, 459, 466, 483, 494, 505, 510, 514, 518, 523, 534, 539, 543, 557, 568, 582, 593, 596, 601, 623, 631, 634, 639, 652, 667, 676, 683, 694, 708, 714, 720] \ 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 533b2793bb159..8a33d02af4779 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 @@ -28,33 +28,33 @@ public class EsqlBaseParser extends ParserConfig { 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_CHANGE_POINT=18, DEV_INLINESTATS=19, DEV_INSIST=20, - DEV_LOOKUP=21, DEV_METRICS=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24, DEV_JOIN_RIGHT=25, - DEV_FORK=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29, WS=30, - PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34, BY=35, - AND=36, ASC=37, ASSIGN=38, CAST_OP=39, COLON=40, COMMA=41, DESC=42, DOT=43, - FALSE=44, FIRST=45, IN=46, IS=47, LAST=48, LIKE=49, LP=50, NOT=51, NULL=52, - NULLS=53, OR=54, PARAM=55, RLIKE=56, RP=57, TRUE=58, EQ=59, CIEQ=60, NEQ=61, - LT=62, LTE=63, GT=64, GTE=65, PLUS=66, MINUS=67, ASTERISK=68, SLASH=69, - PERCENT=70, LEFT_BRACES=71, RIGHT_BRACES=72, NAMED_OR_POSITIONAL_PARAM=73, - OPENING_BRACKET=74, CLOSING_BRACKET=75, UNQUOTED_IDENTIFIER=76, QUOTED_IDENTIFIER=77, - EXPR_LINE_COMMENT=78, EXPR_MULTILINE_COMMENT=79, EXPR_WS=80, EXPLAIN_WS=81, - EXPLAIN_LINE_COMMENT=82, EXPLAIN_MULTILINE_COMMENT=83, METADATA=84, UNQUOTED_SOURCE=85, - FROM_LINE_COMMENT=86, FROM_MULTILINE_COMMENT=87, FROM_WS=88, ID_PATTERN=89, - PROJECT_LINE_COMMENT=90, PROJECT_MULTILINE_COMMENT=91, PROJECT_WS=92, - AS=93, RENAME_LINE_COMMENT=94, RENAME_MULTILINE_COMMENT=95, RENAME_WS=96, - ON=97, WITH=98, ENRICH_POLICY_NAME=99, ENRICH_LINE_COMMENT=100, ENRICH_MULTILINE_COMMENT=101, - ENRICH_WS=102, ENRICH_FIELD_LINE_COMMENT=103, ENRICH_FIELD_MULTILINE_COMMENT=104, - ENRICH_FIELD_WS=105, MVEXPAND_LINE_COMMENT=106, MVEXPAND_MULTILINE_COMMENT=107, - MVEXPAND_WS=108, INFO=109, SHOW_LINE_COMMENT=110, SHOW_MULTILINE_COMMENT=111, - SHOW_WS=112, SETTING=113, SETTING_LINE_COMMENT=114, SETTTING_MULTILINE_COMMENT=115, - SETTING_WS=116, LOOKUP_LINE_COMMENT=117, LOOKUP_MULTILINE_COMMENT=118, - LOOKUP_WS=119, LOOKUP_FIELD_LINE_COMMENT=120, LOOKUP_FIELD_MULTILINE_COMMENT=121, - LOOKUP_FIELD_WS=122, JOIN=123, USING=124, JOIN_LINE_COMMENT=125, JOIN_MULTILINE_COMMENT=126, - JOIN_WS=127, METRICS_LINE_COMMENT=128, METRICS_MULTILINE_COMMENT=129, - METRICS_WS=130, CLOSING_METRICS_LINE_COMMENT=131, CLOSING_METRICS_MULTILINE_COMMENT=132, - CLOSING_METRICS_WS=133, CHANGE_POINT_LINE_COMMENT=134, CHANGE_POINT_MULTILINE_COMMENT=135, - CHANGE_POINT_WS=136, INSIST_WS=137, INSIST_LINE_COMMENT=138, INSIST_MULTILINE_COMMENT=139, - FORK_WS=140, FORK_LINE_COMMENT=141, FORK_MULTILINE_COMMENT=142; + DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_JOIN_FULL=24, DEV_JOIN_LEFT=25, + DEV_JOIN_RIGHT=26, DEV_FORK=27, UNKNOWN_CMD=28, LINE_COMMENT=29, MULTILINE_COMMENT=30, + WS=31, PIPE=32, QUOTED_STRING=33, INTEGER_LITERAL=34, DECIMAL_LITERAL=35, + BY=36, ON=37, WITH=38, AS=39, AND=40, ASC=41, ASSIGN=42, CAST_OP=43, COLON=44, + COMMA=45, DESC=46, DOT=47, FALSE=48, FIRST=49, IN=50, IS=51, LAST=52, + LIKE=53, LP=54, NOT=55, NULL=56, NULLS=57, OR=58, PARAM=59, RLIKE=60, + RP=61, TRUE=62, EQ=63, CIEQ=64, NEQ=65, LT=66, LTE=67, GT=68, GTE=69, + PLUS=70, MINUS=71, ASTERISK=72, SLASH=73, PERCENT=74, LEFT_BRACES=75, + RIGHT_BRACES=76, NAMED_OR_POSITIONAL_PARAM=77, OPENING_BRACKET=78, CLOSING_BRACKET=79, + UNQUOTED_IDENTIFIER=80, QUOTED_IDENTIFIER=81, EXPR_LINE_COMMENT=82, EXPR_MULTILINE_COMMENT=83, + EXPR_WS=84, EXPLAIN_WS=85, EXPLAIN_LINE_COMMENT=86, EXPLAIN_MULTILINE_COMMENT=87, + METADATA=88, UNQUOTED_SOURCE=89, FROM_LINE_COMMENT=90, FROM_MULTILINE_COMMENT=91, + FROM_WS=92, ID_PATTERN=93, PROJECT_LINE_COMMENT=94, PROJECT_MULTILINE_COMMENT=95, + PROJECT_WS=96, RENAME_LINE_COMMENT=97, RENAME_MULTILINE_COMMENT=98, RENAME_WS=99, + ENRICH_POLICY_NAME=100, ENRICH_LINE_COMMENT=101, ENRICH_MULTILINE_COMMENT=102, + ENRICH_WS=103, ENRICH_FIELD_LINE_COMMENT=104, ENRICH_FIELD_MULTILINE_COMMENT=105, + ENRICH_FIELD_WS=106, MVEXPAND_LINE_COMMENT=107, MVEXPAND_MULTILINE_COMMENT=108, + MVEXPAND_WS=109, INFO=110, SHOW_LINE_COMMENT=111, SHOW_MULTILINE_COMMENT=112, + SHOW_WS=113, SETTING=114, SETTING_LINE_COMMENT=115, SETTTING_MULTILINE_COMMENT=116, + SETTING_WS=117, LOOKUP_LINE_COMMENT=118, LOOKUP_MULTILINE_COMMENT=119, + LOOKUP_WS=120, LOOKUP_FIELD_LINE_COMMENT=121, LOOKUP_FIELD_MULTILINE_COMMENT=122, + LOOKUP_FIELD_WS=123, JOIN=124, USING=125, JOIN_LINE_COMMENT=126, JOIN_MULTILINE_COMMENT=127, + JOIN_WS=128, METRICS_LINE_COMMENT=129, METRICS_MULTILINE_COMMENT=130, + METRICS_WS=131, CLOSING_METRICS_LINE_COMMENT=132, CLOSING_METRICS_MULTILINE_COMMENT=133, + CLOSING_METRICS_WS=134, CHANGE_POINT_LINE_COMMENT=135, CHANGE_POINT_MULTILINE_COMMENT=136, + CHANGE_POINT_WS=137, INSIST_WS=138, INSIST_LINE_COMMENT=139, INSIST_MULTILINE_COMMENT=140, + FORK_WS=141, FORK_LINE_COMMENT=142, FORK_MULTILINE_COMMENT=143; 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, @@ -67,18 +67,19 @@ public class EsqlBaseParser extends ParserConfig { 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_changePointCommand = 66, - RULE_insistCommand = 67, RULE_forkCommand = 68, RULE_forkSubQueries = 69, - RULE_forkSubQuery = 70, RULE_forkSubQueryCommand = 71, RULE_forkSubQueryProcessingCommand = 72; + RULE_stringOrParameter = 37, RULE_limitCommand = 38, RULE_sortCommand = 39, + RULE_orderExpression = 40, RULE_keepCommand = 41, RULE_dropCommand = 42, + RULE_renameCommand = 43, RULE_renameClause = 44, RULE_dissectCommand = 45, + RULE_grokCommand = 46, RULE_mvExpandCommand = 47, RULE_commandOptions = 48, + RULE_commandOption = 49, RULE_booleanValue = 50, RULE_numericValue = 51, + RULE_decimalValue = 52, RULE_integerValue = 53, RULE_string = 54, RULE_comparisonOperator = 55, + RULE_explainCommand = 56, RULE_subqueryExpression = 57, RULE_showCommand = 58, + RULE_enrichCommand = 59, RULE_enrichWithClause = 60, RULE_lookupCommand = 61, + RULE_inlinestatsCommand = 62, RULE_joinCommand = 63, RULE_joinTarget = 64, + RULE_joinCondition = 65, RULE_joinPredicate = 66, RULE_changePointCommand = 67, + RULE_insistCommand = 68, RULE_forkCommand = 69, RULE_forkSubQueries = 70, + RULE_forkSubQuery = 71, RULE_forkSubQueryCommand = 72, RULE_forkSubQueryProcessingCommand = 73, + RULE_rerankCommand = 74; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -89,14 +90,15 @@ private static String[] makeRuleNames() { "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", - "changePointCommand", "insistCommand", "forkCommand", "forkSubQueries", - "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand" + "stringOrParameter", "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", "changePointCommand", + "insistCommand", "forkCommand", "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", + "forkSubQueryProcessingCommand", "rerankCommand" }; } public static final String[] ruleNames = makeRuleNames(); @@ -106,16 +108,17 @@ private static String[] makeLiteralNames() { 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, 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, null, null, null, null, "'|'", null, null, + null, "'by'", "'on'", "'with'", "'as'", "'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, null, null, null, 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'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -124,20 +127,20 @@ private static String[] makeSymbolicNames() { null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE", "JOIN_LOOKUP", "DEV_CHANGE_POINT", "DEV_INLINESTATS", "DEV_INSIST", - "DEV_LOOKUP", "DEV_METRICS", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", - "DEV_FORK", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", - "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", + "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", + "DEV_JOIN_RIGHT", "DEV_FORK", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", + "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", + "BY", "ON", "WITH", "AS", "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", "RENAME_LINE_COMMENT", + "RENAME_MULTILINE_COMMENT", "RENAME_WS", "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", @@ -236,9 +239,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(146); + setState(150); query(0); - setState(147); + setState(151); match(EOF); } } @@ -334,11 +337,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(150); + setState(154); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(157); + setState(161); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -349,16 +352,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(152); + setState(156); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(153); + setState(157); match(PIPE); - setState(154); + setState(158); processingCommand(); } } } - setState(159); + setState(163); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -416,43 +419,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(166); + setState(170); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(160); + setState(164); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(161); + setState(165); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(162); + setState(166); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(163); + setState(167); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(164); + setState(168); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(165); + setState(169); metricsCommand(); } break; @@ -525,6 +528,9 @@ public InsistCommandContext insistCommand() { public ForkCommandContext forkCommand() { return getRuleContext(ForkCommandContext.class,0); } + public RerankCommandContext rerankCommand() { + return getRuleContext(RerankCommandContext.class,0); + } @SuppressWarnings("this-escape") public ProcessingCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -549,145 +555,154 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(191); + setState(197); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(168); + setState(172); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(169); + setState(173); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(170); + setState(174); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(171); + setState(175); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(172); + setState(176); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(173); + setState(177); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(174); + setState(178); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(175); + setState(179); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(176); + setState(180); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(177); + setState(181); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(178); + setState(182); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(179); + setState(183); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(180); + setState(184); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(181); + setState(185); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(182); + setState(186); inlinestatsCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(183); + setState(187); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(184); + setState(188); lookupCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(185); + setState(189); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(186); + setState(190); changePointCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(187); + setState(191); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(188); + setState(192); insistCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(189); + setState(193); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(190); + setState(194); forkCommand(); } break; + case 19: + enterOuterAlt(_localctx, 19); + { + setState(195); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(196); + rerankCommand(); + } + break; } } catch (RecognitionException re) { @@ -733,9 +748,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(193); + setState(199); match(WHERE); - setState(194); + setState(200); booleanExpression(0); } } @@ -951,7 +966,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(225); + setState(231); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: @@ -960,9 +975,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(197); + setState(203); match(NOT); - setState(198); + setState(204); booleanExpression(8); } break; @@ -971,7 +986,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(199); + setState(205); valueExpression(); } break; @@ -980,7 +995,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(200); + setState(206); regexBooleanExpression(); } break; @@ -989,41 +1004,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(201); + setState(207); valueExpression(); - setState(203); + setState(209); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(202); + setState(208); match(NOT); } } - setState(205); + setState(211); match(IN); - setState(206); + setState(212); match(LP); - setState(207); + setState(213); valueExpression(); - setState(212); + setState(218); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(208); + setState(214); match(COMMA); - setState(209); + setState(215); valueExpression(); } } - setState(214); + setState(220); _errHandler.sync(this); _la = _input.LA(1); } - setState(215); + setState(221); match(RP); } break; @@ -1032,21 +1047,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(217); + setState(223); valueExpression(); - setState(218); + setState(224); match(IS); - setState(220); + setState(226); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(219); + setState(225); match(NOT); } } - setState(222); + setState(228); match(NULL); } break; @@ -1055,13 +1070,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(224); + setState(230); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(235); + setState(241); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1069,7 +1084,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(233); + setState(239); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: @@ -1077,11 +1092,11 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(227); + setState(233); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(228); + setState(234); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(229); + setState(235); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -1090,18 +1105,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(230); + setState(236); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(231); + setState(237); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(232); + setState(238); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(237); + setState(243); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,8,_ctx); } @@ -1156,48 +1171,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 12, RULE_regexBooleanExpression); int _la; try { - setState(252); + setState(258); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(238); + setState(244); valueExpression(); - setState(240); + setState(246); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(239); + setState(245); match(NOT); } } - setState(242); + setState(248); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(243); + setState(249); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(245); + setState(251); valueExpression(); - setState(247); + setState(253); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(246); + setState(252); match(NOT); } } - setState(249); + setState(255); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(250); + setState(256); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -1257,23 +1272,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(254); + setState(260); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(257); + setState(263); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(255); + setState(261); match(CAST_OP); - setState(256); + setState(262); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(259); + setState(265); match(COLON); - setState(260); + setState(266); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -1357,14 +1372,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 16, RULE_valueExpression); try { - setState(267); + setState(273); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(262); + setState(268); operatorExpression(0); } break; @@ -1372,11 +1387,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(263); + setState(269); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(264); + setState(270); comparisonOperator(); - setState(265); + setState(271); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -1501,7 +1516,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(273); + setState(279); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: @@ -1510,7 +1525,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _ctx = _localctx; _prevctx = _localctx; - setState(270); + setState(276); primaryExpression(0); } break; @@ -1519,7 +1534,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(271); + setState(277); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1530,13 +1545,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(272); + setState(278); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(283); + setState(289); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1544,7 +1559,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(281); + setState(287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { case 1: @@ -1552,12 +1567,12 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(275); + setState(281); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(276); + setState(282); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 68)) & ~0x3f) == 0 && ((1L << (_la - 68)) & 7L) != 0)) ) { + if ( !(((((_la - 72)) & ~0x3f) == 0 && ((1L << (_la - 72)) & 7L) != 0)) ) { ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); } else { @@ -1565,7 +1580,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(277); + setState(283); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -1574,9 +1589,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(278); + setState(284); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(279); + setState(285); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -1587,14 +1602,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(280); + setState(286); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(285); + setState(291); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); } @@ -1752,7 +1767,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(294); + setState(300); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) { case 1: @@ -1761,7 +1776,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _ctx = _localctx; _prevctx = _localctx; - setState(287); + setState(293); constant(); } break; @@ -1770,7 +1785,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(288); + setState(294); qualifiedName(); } break; @@ -1779,7 +1794,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(289); + setState(295); functionExpression(); } break; @@ -1788,17 +1803,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(290); + setState(296); match(LP); - setState(291); + setState(297); booleanExpression(0); - setState(292); + setState(298); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(301); + setState(307); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -1809,16 +1824,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(296); + setState(302); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(297); + setState(303); match(CAST_OP); - setState(298); + setState(304); dataType(); } } } - setState(303); + setState(309); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,18,_ctx); } @@ -1884,16 +1899,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(304); + setState(310); functionName(); - setState(305); + setState(311); match(LP); - setState(319); + setState(325); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(306); + setState(312); match(ASTERISK); } break; @@ -1914,34 +1929,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(307); + setState(313); booleanExpression(0); - setState(312); + setState(318); _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(308); + setState(314); match(COMMA); - setState(309); + setState(315); booleanExpression(0); } } } - setState(314); + setState(320); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,19,_ctx); } - setState(317); + setState(323); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(315); + setState(321); match(COMMA); - setState(316); + setState(322); mapExpression(); } } @@ -1954,7 +1969,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(321); + setState(327); match(RP); } } @@ -2000,7 +2015,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(323); + setState(329); identifierOrParameter(); } } @@ -2056,27 +2071,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(325); + setState(331); match(LEFT_BRACES); - setState(326); + setState(332); entryExpression(); - setState(331); + setState(337); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(327); + setState(333); match(COMMA); - setState(328); + setState(334); entryExpression(); } } - setState(333); + setState(339); _errHandler.sync(this); _la = _input.LA(1); } - setState(334); + setState(340); match(RIGHT_BRACES); } } @@ -2128,11 +2143,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(336); + setState(342); ((EntryExpressionContext)_localctx).key = string(); - setState(337); + setState(343); match(COLON); - setState(338); + setState(344); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -2190,7 +2205,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(340); + setState(346); identifier(); } } @@ -2237,9 +2252,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(342); + setState(348); match(ROW); - setState(343); + setState(349); fields(); } } @@ -2293,23 +2308,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(345); + setState(351); field(); - setState(350); + setState(356); _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(346); + setState(352); match(COMMA); - setState(347); + setState(353); field(); } } } - setState(352); + setState(358); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,23,_ctx); } @@ -2361,19 +2376,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(356); + setState(362); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: { - setState(353); + setState(359); qualifiedName(); - setState(354); + setState(360); match(ASSIGN); } break; } - setState(358); + setState(364); booleanExpression(0); } } @@ -2431,34 +2446,34 @@ public final FromCommandContext fromCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(360); + setState(366); match(FROM); - setState(361); + setState(367); indexPattern(); - setState(366); + setState(372); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(362); + setState(368); match(COMMA); - setState(363); + setState(369); indexPattern(); } } } - setState(368); + setState(374); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } - setState(370); + setState(376); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(369); + setState(375); metadata(); } break; @@ -2511,19 +2526,19 @@ public final IndexPatternContext indexPattern() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(375); + setState(381); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: { - setState(372); + setState(378); clusterString(); - setState(373); + setState(379); match(COLON); } break; } - setState(377); + setState(383); indexString(); } } @@ -2569,7 +2584,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(379); + setState(385); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -2623,7 +2638,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(381); + setState(387); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -2684,25 +2699,25 @@ public final MetadataContext metadata() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(383); + setState(389); match(METADATA); - setState(384); + setState(390); match(UNQUOTED_SOURCE); - setState(389); + setState(395); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(385); + setState(391); match(COMMA); - setState(386); + setState(392); match(UNQUOTED_SOURCE); } } } - setState(391); + setState(397); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } @@ -2768,46 +2783,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(392); + setState(398); match(DEV_METRICS); - setState(393); + setState(399); indexPattern(); - setState(398); + setState(404); _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(394); + setState(400); match(COMMA); - setState(395); + setState(401); indexPattern(); } } } - setState(400); + setState(406); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } - setState(402); + setState(408); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(401); + setState(407); ((MetricsCommandContext)_localctx).aggregates = aggFields(); } break; } - setState(406); + setState(412); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: { - setState(404); + setState(410); match(BY); - setState(405); + setState(411); ((MetricsCommandContext)_localctx).grouping = fields(); } break; @@ -2857,9 +2872,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(408); + setState(414); match(EVAL); - setState(409); + setState(415); fields(); } } @@ -2912,26 +2927,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(411); + setState(417); match(STATS); - setState(413); + setState(419); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(412); + setState(418); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(417); + setState(423); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(415); + setState(421); match(BY); - setState(416); + setState(422); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -2988,23 +3003,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(419); + setState(425); aggField(); - setState(424); + setState(430); _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(420); + setState(426); match(COMMA); - setState(421); + setState(427); aggField(); } } } - setState(426); + setState(432); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,34,_ctx); } @@ -3056,16 +3071,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(427); + setState(433); field(); - setState(430); + setState(436); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(428); + setState(434); match(WHERE); - setState(429); + setState(435); booleanExpression(0); } break; @@ -3122,23 +3137,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(432); + setState(438); identifierOrParameter(); - setState(437); + setState(443); _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(433); + setState(439); match(DOT); - setState(434); + setState(440); identifierOrParameter(); } } } - setState(439); + setState(445); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } @@ -3194,23 +3209,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(440); + setState(446); identifierPattern(); - setState(445); + setState(451); _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(441); + setState(447); match(DOT); - setState(442); + setState(448); identifierPattern(); } } } - setState(447); + setState(453); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,37,_ctx); } @@ -3266,23 +3281,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(448); + setState(454); qualifiedNamePattern(); - setState(453); + setState(459); _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(449); + setState(455); match(COMMA); - setState(450); + setState(456); qualifiedNamePattern(); } } } - setState(455); + setState(461); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,38,_ctx); } @@ -3330,7 +3345,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(456); + setState(462); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -3383,13 +3398,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 66, RULE_identifierPattern); try { - setState(460); + setState(466); _errHandler.sync(this); switch (_input.LA(1)) { case ID_PATTERN: enterOuterAlt(_localctx, 1); { - setState(458); + setState(464); match(ID_PATTERN); } break; @@ -3397,7 +3412,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(459); + setState(465); parameter(); } break; @@ -3672,14 +3687,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 68, RULE_constant); int _la; try { - setState(504); + setState(510); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(462); + setState(468); match(NULL); } break; @@ -3687,9 +3702,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(463); + setState(469); integerValue(); - setState(464); + setState(470); match(UNQUOTED_IDENTIFIER); } break; @@ -3697,7 +3712,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(466); + setState(472); decimalValue(); } break; @@ -3705,7 +3720,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(467); + setState(473); integerValue(); } break; @@ -3713,7 +3728,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(468); + setState(474); booleanValue(); } break; @@ -3721,7 +3736,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(469); + setState(475); parameter(); } break; @@ -3729,7 +3744,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(470); + setState(476); string(); } break; @@ -3737,27 +3752,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(471); + setState(477); match(OPENING_BRACKET); - setState(472); + setState(478); numericValue(); - setState(477); + setState(483); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(473); + setState(479); match(COMMA); - setState(474); + setState(480); numericValue(); } } - setState(479); + setState(485); _errHandler.sync(this); _la = _input.LA(1); } - setState(480); + setState(486); match(CLOSING_BRACKET); } break; @@ -3765,27 +3780,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(482); + setState(488); match(OPENING_BRACKET); - setState(483); + setState(489); booleanValue(); - setState(488); + setState(494); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(484); + setState(490); match(COMMA); - setState(485); + setState(491); booleanValue(); } } - setState(490); + setState(496); _errHandler.sync(this); _la = _input.LA(1); } - setState(491); + setState(497); match(CLOSING_BRACKET); } break; @@ -3793,27 +3808,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(493); + setState(499); match(OPENING_BRACKET); - setState(494); + setState(500); string(); - setState(499); + setState(505); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(495); + setState(501); match(COMMA); - setState(496); + setState(502); string(); } } - setState(501); + setState(507); _errHandler.sync(this); _la = _input.LA(1); } - setState(502); + setState(508); match(CLOSING_BRACKET); } break; @@ -3887,14 +3902,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 70, RULE_parameter); try { - setState(508); + setState(514); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(506); + setState(512); match(PARAM); } break; @@ -3902,7 +3917,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(507); + setState(513); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -3953,14 +3968,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 72, RULE_identifierOrParameter); try { - setState(512); + setState(518); _errHandler.sync(this); switch (_input.LA(1)) { case UNQUOTED_IDENTIFIER: case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(510); + setState(516); identifier(); } break; @@ -3968,7 +3983,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni case NAMED_OR_POSITIONAL_PARAM: enterOuterAlt(_localctx, 2); { - setState(511); + setState(517); parameter(); } break; @@ -3987,6 +4002,70 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni return _localctx; } + @SuppressWarnings("CheckReturnValue") + public static class StringOrParameterContext extends ParserRuleContext { + public StringContext string() { + return getRuleContext(StringContext.class,0); + } + public ParameterContext parameter() { + return getRuleContext(ParameterContext.class,0); + } + @SuppressWarnings("this-escape") + public StringOrParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_stringOrParameter; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringOrParameter(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringOrParameter(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringOrParameter(this); + else return visitor.visitChildren(this); + } + } + + public final StringOrParameterContext stringOrParameter() throws RecognitionException { + StringOrParameterContext _localctx = new StringOrParameterContext(_ctx, getState()); + enterRule(_localctx, 74, RULE_stringOrParameter); + try { + setState(523); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(520); + string(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(521); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(522); + parameter(); + } + break; + } + } + 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); } @@ -4013,13 +4092,13 @@ public T accept(ParseTreeVisitor visitor) { public final LimitCommandContext limitCommand() throws RecognitionException { LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_limitCommand); + enterRule(_localctx, 76, RULE_limitCommand); try { enterOuterAlt(_localctx, 1); { - setState(514); + setState(525); match(LIMIT); - setState(515); + setState(526); match(INTEGER_LITERAL); } } @@ -4069,32 +4148,32 @@ public T accept(ParseTreeVisitor visitor) { public final SortCommandContext sortCommand() throws RecognitionException { SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_sortCommand); + enterRule(_localctx, 78, RULE_sortCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(517); + setState(528); match(SORT); - setState(518); + setState(529); orderExpression(); - setState(523); + setState(534); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(519); + setState(530); match(COMMA); - setState(520); + setState(531); orderExpression(); } } } - setState(525); + setState(536); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,46,_ctx); + _alt = getInterpreter().adaptivePredict(_input,47,_ctx); } } } @@ -4143,19 +4222,19 @@ public T accept(ParseTreeVisitor visitor) { public final OrderExpressionContext orderExpression() throws RecognitionException { OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_orderExpression); + enterRule(_localctx, 80, RULE_orderExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(526); + setState(537); booleanExpression(0); - setState(528); + setState(539); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(527); + setState(538); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -4169,14 +4248,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(532); + setState(543); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { - setState(530); + setState(541); match(NULLS); - setState(531); + setState(542); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -4231,13 +4310,13 @@ public T accept(ParseTreeVisitor visitor) { public final KeepCommandContext keepCommand() throws RecognitionException { KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_keepCommand); + enterRule(_localctx, 82, RULE_keepCommand); try { enterOuterAlt(_localctx, 1); { - setState(534); + setState(545); match(KEEP); - setState(535); + setState(546); qualifiedNamePatterns(); } } @@ -4280,13 +4359,13 @@ public T accept(ParseTreeVisitor visitor) { public final DropCommandContext dropCommand() throws RecognitionException { DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_dropCommand); + enterRule(_localctx, 84, RULE_dropCommand); try { enterOuterAlt(_localctx, 1); { - setState(537); + setState(548); match(DROP); - setState(538); + setState(549); qualifiedNamePatterns(); } } @@ -4336,32 +4415,32 @@ public T accept(ParseTreeVisitor visitor) { public final RenameCommandContext renameCommand() throws RecognitionException { RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_renameCommand); + enterRule(_localctx, 86, RULE_renameCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(540); + setState(551); match(RENAME); - setState(541); + setState(552); renameClause(); - setState(546); + setState(557); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,49,_ctx); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(542); + setState(553); match(COMMA); - setState(543); + setState(554); renameClause(); } } } - setState(548); + setState(559); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,49,_ctx); + _alt = getInterpreter().adaptivePredict(_input,50,_ctx); } } } @@ -4409,15 +4488,15 @@ public T accept(ParseTreeVisitor visitor) { public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_renameClause); + enterRule(_localctx, 88, RULE_renameClause); try { enterOuterAlt(_localctx, 1); { - setState(549); + setState(560); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(550); + setState(561); match(AS); - setState(551); + setState(562); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } } @@ -4466,22 +4545,22 @@ public T accept(ParseTreeVisitor visitor) { public final DissectCommandContext dissectCommand() throws RecognitionException { DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_dissectCommand); + enterRule(_localctx, 90, RULE_dissectCommand); try { enterOuterAlt(_localctx, 1); { - setState(553); + setState(564); match(DISSECT); - setState(554); + setState(565); primaryExpression(0); - setState(555); + setState(566); string(); - setState(557); + setState(568); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: { - setState(556); + setState(567); commandOptions(); } break; @@ -4530,15 +4609,15 @@ public T accept(ParseTreeVisitor visitor) { public final GrokCommandContext grokCommand() throws RecognitionException { GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_grokCommand); + enterRule(_localctx, 92, RULE_grokCommand); try { enterOuterAlt(_localctx, 1); { - setState(559); + setState(570); match(GROK); - setState(560); + setState(571); primaryExpression(0); - setState(561); + setState(572); string(); } } @@ -4581,13 +4660,13 @@ public T accept(ParseTreeVisitor visitor) { public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_mvExpandCommand); + enterRule(_localctx, 94, RULE_mvExpandCommand); try { enterOuterAlt(_localctx, 1); { - setState(563); + setState(574); match(MV_EXPAND); - setState(564); + setState(575); qualifiedName(); } } @@ -4636,30 +4715,30 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionsContext commandOptions() throws RecognitionException { CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_commandOptions); + enterRule(_localctx, 96, RULE_commandOptions); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(566); + setState(577); commandOption(); - setState(571); + setState(582); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(567); + setState(578); match(COMMA); - setState(568); + setState(579); commandOption(); } } } - setState(573); + setState(584); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } } } @@ -4705,15 +4784,15 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionContext commandOption() throws RecognitionException { CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_commandOption); + enterRule(_localctx, 98, RULE_commandOption); try { enterOuterAlt(_localctx, 1); { - setState(574); + setState(585); identifier(); - setState(575); + setState(586); match(ASSIGN); - setState(576); + setState(587); constant(); } } @@ -4754,12 +4833,12 @@ public T accept(ParseTreeVisitor visitor) { public final BooleanValueContext booleanValue() throws RecognitionException { BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_booleanValue); + enterRule(_localctx, 100, RULE_booleanValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(578); + setState(589); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -4812,22 +4891,22 @@ public T accept(ParseTreeVisitor visitor) { public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_numericValue); + enterRule(_localctx, 102, RULE_numericValue); try { - setState(582); + setState(593); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(580); + setState(591); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(581); + setState(592); integerValue(); } break; @@ -4871,17 +4950,17 @@ public T accept(ParseTreeVisitor visitor) { public final DecimalValueContext decimalValue() throws RecognitionException { DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_decimalValue); + enterRule(_localctx, 104, RULE_decimalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(585); + setState(596); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(584); + setState(595); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4894,7 +4973,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(587); + setState(598); match(DECIMAL_LITERAL); } } @@ -4936,17 +5015,17 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerValueContext integerValue() throws RecognitionException { IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_integerValue); + enterRule(_localctx, 106, RULE_integerValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(590); + setState(601); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(589); + setState(600); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -4959,7 +5038,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(592); + setState(603); match(INTEGER_LITERAL); } } @@ -4999,11 +5078,11 @@ public T accept(ParseTreeVisitor visitor) { public final StringContext string() throws RecognitionException { StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_string); + enterRule(_localctx, 108, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(594); + setState(605); match(QUOTED_STRING); } } @@ -5048,14 +5127,14 @@ public T accept(ParseTreeVisitor visitor) { public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_comparisonOperator); + enterRule(_localctx, 110, RULE_comparisonOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(596); + setState(607); _la = _input.LA(1); - if ( !(((((_la - 59)) & ~0x3f) == 0 && ((1L << (_la - 59)) & 125L) != 0)) ) { + if ( !(((((_la - 63)) & ~0x3f) == 0 && ((1L << (_la - 63)) & 125L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -5104,13 +5183,13 @@ public T accept(ParseTreeVisitor visitor) { public final ExplainCommandContext explainCommand() throws RecognitionException { ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_explainCommand); + enterRule(_localctx, 112, RULE_explainCommand); try { enterOuterAlt(_localctx, 1); { - setState(598); + setState(609); match(EXPLAIN); - setState(599); + setState(610); subqueryExpression(); } } @@ -5154,15 +5233,15 @@ public T accept(ParseTreeVisitor visitor) { public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_subqueryExpression); + enterRule(_localctx, 114, RULE_subqueryExpression); try { enterOuterAlt(_localctx, 1); { - setState(601); + setState(612); match(OPENING_BRACKET); - setState(602); + setState(613); query(0); - setState(603); + setState(614); match(CLOSING_BRACKET); } } @@ -5214,14 +5293,14 @@ public T accept(ParseTreeVisitor visitor) { public final ShowCommandContext showCommand() throws RecognitionException { ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_showCommand); + enterRule(_localctx, 116, RULE_showCommand); try { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(605); + setState(616); match(SHOW); - setState(606); + setState(617); match(INFO); } } @@ -5279,53 +5358,53 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichCommandContext enrichCommand() throws RecognitionException { EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_enrichCommand); + enterRule(_localctx, 118, RULE_enrichCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(608); + setState(619); match(ENRICH); - setState(609); + setState(620); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(612); + setState(623); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: { - setState(610); + setState(621); match(ON); - setState(611); + setState(622); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(623); + setState(634); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { case 1: { - setState(614); + setState(625); match(WITH); - setState(615); + setState(626); enrichWithClause(); - setState(620); + setState(631); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + _alt = getInterpreter().adaptivePredict(_input,57,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(616); + setState(627); match(COMMA); - setState(617); + setState(628); enrichWithClause(); } } } - setState(622); + setState(633); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + _alt = getInterpreter().adaptivePredict(_input,57,_ctx); } } break; @@ -5376,23 +5455,23 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_enrichWithClause); + enterRule(_localctx, 120, RULE_enrichWithClause); try { enterOuterAlt(_localctx, 1); { - setState(628); + setState(639); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { case 1: { - setState(625); + setState(636); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(626); + setState(637); match(ASSIGN); } break; } - setState(630); + setState(641); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -5441,17 +5520,17 @@ public T accept(ParseTreeVisitor visitor) { public final LookupCommandContext lookupCommand() throws RecognitionException { LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_lookupCommand); + enterRule(_localctx, 122, RULE_lookupCommand); try { enterOuterAlt(_localctx, 1); { - setState(632); + setState(643); match(DEV_LOOKUP); - setState(633); + setState(644); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(634); + setState(645); match(ON); - setState(635); + setState(646); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -5500,22 +5579,22 @@ public T accept(ParseTreeVisitor visitor) { public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_inlinestatsCommand); + enterRule(_localctx, 124, RULE_inlinestatsCommand); try { enterOuterAlt(_localctx, 1); { - setState(637); + setState(648); match(DEV_INLINESTATS); - setState(638); + setState(649); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(641); + setState(652); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: { - setState(639); + setState(650); match(BY); - setState(640); + setState(651); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -5568,15 +5647,15 @@ public T accept(ParseTreeVisitor visitor) { public final JoinCommandContext joinCommand() throws RecognitionException { JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_joinCommand); + enterRule(_localctx, 126, RULE_joinCommand); int _la; try { enterOuterAlt(_localctx, 1); { - setState(643); + setState(654); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 50462720L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 100794368L) != 0)) ) { ((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this); } else { @@ -5584,11 +5663,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(644); + setState(655); match(JOIN); - setState(645); + setState(656); joinTarget(); - setState(646); + setState(657); joinCondition(); } } @@ -5631,11 +5710,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinTargetContext joinTarget() throws RecognitionException { JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_joinTarget); + enterRule(_localctx, 128, RULE_joinTarget); try { enterOuterAlt(_localctx, 1); { - setState(648); + setState(659); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -5685,32 +5764,32 @@ public T accept(ParseTreeVisitor visitor) { public final JoinConditionContext joinCondition() throws RecognitionException { JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_joinCondition); + enterRule(_localctx, 130, RULE_joinCondition); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(650); + setState(661); match(ON); - setState(651); + setState(662); joinPredicate(); - setState(656); + setState(667); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,61,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(652); + setState(663); match(COMMA); - setState(653); + setState(664); joinPredicate(); } } } - setState(658); + setState(669); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,60,_ctx); + _alt = getInterpreter().adaptivePredict(_input,61,_ctx); } } } @@ -5752,11 +5831,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinPredicateContext joinPredicate() throws RecognitionException { JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_joinPredicate); + enterRule(_localctx, 132, RULE_joinPredicate); try { enterOuterAlt(_localctx, 1); { - setState(659); + setState(670); valueExpression(); } } @@ -5809,38 +5888,38 @@ public T accept(ParseTreeVisitor visitor) { public final ChangePointCommandContext changePointCommand() throws RecognitionException { ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_changePointCommand); + enterRule(_localctx, 134, RULE_changePointCommand); try { enterOuterAlt(_localctx, 1); { - setState(661); + setState(672); match(DEV_CHANGE_POINT); - setState(662); + setState(673); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(665); + setState(676); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: { - setState(663); + setState(674); match(ON); - setState(664); + setState(675); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(672); + setState(683); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: { - setState(667); + setState(678); match(AS); - setState(668); + setState(679); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(669); + setState(680); match(COMMA); - setState(670); + setState(681); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -5886,13 +5965,13 @@ public T accept(ParseTreeVisitor visitor) { public final InsistCommandContext insistCommand() throws RecognitionException { InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_insistCommand); + enterRule(_localctx, 136, RULE_insistCommand); try { enterOuterAlt(_localctx, 1); { - setState(674); + setState(685); match(DEV_INSIST); - setState(675); + setState(686); qualifiedNamePatterns(); } } @@ -5935,13 +6014,13 @@ public T accept(ParseTreeVisitor visitor) { public final ForkCommandContext forkCommand() throws RecognitionException { ForkCommandContext _localctx = new ForkCommandContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_forkCommand); + enterRule(_localctx, 138, RULE_forkCommand); try { enterOuterAlt(_localctx, 1); { - setState(677); + setState(688); match(DEV_FORK); - setState(678); + setState(689); forkSubQueries(); } } @@ -5986,12 +6065,12 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueriesContext forkSubQueries() throws RecognitionException { ForkSubQueriesContext _localctx = new ForkSubQueriesContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_forkSubQueries); + enterRule(_localctx, 140, RULE_forkSubQueries); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(681); + setState(692); _errHandler.sync(this); _alt = 1; do { @@ -5999,7 +6078,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(680); + setState(691); forkSubQuery(); } } @@ -6007,9 +6086,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(683); + setState(694); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,63,_ctx); + _alt = getInterpreter().adaptivePredict(_input,64,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } } @@ -6053,15 +6132,15 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryContext forkSubQuery() throws RecognitionException { ForkSubQueryContext _localctx = new ForkSubQueryContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_forkSubQuery); + enterRule(_localctx, 142, RULE_forkSubQuery); try { enterOuterAlt(_localctx, 1); { - setState(685); + setState(696); match(LP); - setState(686); + setState(697); forkSubQueryCommand(0); - setState(687); + setState(698); match(RP); } } @@ -6146,8 +6225,8 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio int _parentState = getState(); ForkSubQueryCommandContext _localctx = new ForkSubQueryCommandContext(_ctx, _parentState); ForkSubQueryCommandContext _prevctx = _localctx; - int _startState = 142; - enterRecursionRule(_localctx, 142, RULE_forkSubQueryCommand, _p); + int _startState = 144; + enterRecursionRule(_localctx, 144, RULE_forkSubQueryCommand, _p); try { int _alt; enterOuterAlt(_localctx, 1); @@ -6157,13 +6236,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(690); + setState(701); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(697); + setState(708); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,64,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -6172,18 +6251,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(692); + setState(703); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(693); + setState(704); match(PIPE); - setState(694); + setState(705); forkSubQueryProcessingCommand(); } } } - setState(699); + setState(710); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,64,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } } } @@ -6231,29 +6310,29 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand() throws RecognitionException { ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_forkSubQueryProcessingCommand); + enterRule(_localctx, 146, RULE_forkSubQueryProcessingCommand); try { - setState(703); + setState(714); _errHandler.sync(this); switch (_input.LA(1)) { case WHERE: enterOuterAlt(_localctx, 1); { - setState(700); + setState(711); whereCommand(); } break; case SORT: enterOuterAlt(_localctx, 2); { - setState(701); + setState(712); sortCommand(); } break; case LIMIT: enterOuterAlt(_localctx, 3); { - setState(702); + setState(713); limitCommand(); } break; @@ -6272,6 +6351,82 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( return _localctx; } + @SuppressWarnings("CheckReturnValue") + public static class RerankCommandContext extends ParserRuleContext { + public StringOrParameterContext queryText; + public StringOrParameterContext inferenceId; + public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); } + public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } + public List stringOrParameter() { + return getRuleContexts(StringOrParameterContext.class); + } + public StringOrParameterContext stringOrParameter(int i) { + return getRuleContext(StringOrParameterContext.class,i); + } + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); + } + @SuppressWarnings("this-escape") + public RerankCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_rerankCommand; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRerankCommand(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRerankCommand(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRerankCommand(this); + else return visitor.visitChildren(this); + } + } + + public final RerankCommandContext rerankCommand() throws RecognitionException { + RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); + enterRule(_localctx, 148, RULE_rerankCommand); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(716); + match(DEV_RERANK); + setState(717); + ((RerankCommandContext)_localctx).queryText = stringOrParameter(); + setState(720); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==ON) { + { + setState(718); + match(ON); + setState(719); + fields(); + } + } + + setState(722); + match(WITH); + setState(723); + ((RerankCommandContext)_localctx).inferenceId = stringOrParameter(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { switch (ruleIndex) { case 1: @@ -6286,7 +6441,9 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); case 10: return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex); - case 71: + case 37: + return stringOrParameter_sempred((StringOrParameterContext)_localctx, predIndex); + case 72: return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex); } return true; @@ -6317,44 +6474,53 @@ private boolean processingCommand_sempred(ProcessingCommandContext _localctx, in return this.isDevVersion(); case 6: return this.isDevVersion(); + case 7: + return this.isDevVersion(); } return true; } private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 7: - return precpred(_ctx, 5); case 8: + return precpred(_ctx, 5); + case 9: return precpred(_ctx, 4); } return true; } private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 9: - return precpred(_ctx, 2); case 10: + return precpred(_ctx, 2); + case 11: return precpred(_ctx, 1); } return true; } private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 11: + case 12: return precpred(_ctx, 1); } return true; } + private boolean stringOrParameter_sempred(StringOrParameterContext _localctx, int predIndex) { + switch (predIndex) { + case 13: + return this.isDevVersion(); + } + return true; + } private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx, int predIndex) { switch (predIndex) { - case 12: + case 14: return precpred(_ctx, 1); } return true; } public static final String _serializedATN = - "\u0004\u0001\u008e\u02c2\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u008f\u02d6\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"+ @@ -6372,430 +6538,442 @@ private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx "6\u00027\u00077\u00028\u00078\u00029\u00079\u0002:\u0007:\u0002;\u0007"+ ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+ - "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0001\u0000\u0001\u0000\u0001"+ - "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0005\u0001\u009c\b\u0001\n\u0001\f\u0001\u009f\t\u0001\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002"+ - "\u00a7\b\u0002\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ + "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ + "J\u0001\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u00a0\b\u0001\n\u0001"+ + "\f\u0001\u00a3\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0003\u0002\u00ab\b\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\u0003\u0001\u0003"+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+ - "\u0003\u0003\u00c0\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0003\u0005\u00cc\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0001\u0005\u0005\u0005\u00d3\b\u0005\n\u0005\f\u0005\u00d6\t\u0005\u0001"+ - "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00dd"+ - "\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e2\b\u0005"+ - "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ - "\u0005\u0005\u00ea\b\u0005\n\u0005\f\u0005\u00ed\t\u0005\u0001\u0006\u0001"+ - "\u0006\u0003\u0006\u00f1\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001"+ - "\u0006\u0001\u0006\u0003\u0006\u00f8\b\u0006\u0001\u0006\u0001\u0006\u0001"+ - "\u0006\u0003\u0006\u00fd\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003"+ - "\u0007\u0102\b\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001"+ - "\b\u0001\b\u0001\b\u0001\b\u0003\b\u010c\b\b\u0001\t\u0001\t\u0001\t\u0001"+ - "\t\u0003\t\u0112\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005"+ - "\t\u011a\b\t\n\t\f\t\u011d\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n"+ - "\u0001\n\u0001\n\u0001\n\u0003\n\u0127\b\n\u0001\n\u0001\n\u0001\n\u0005"+ - "\n\u012c\b\n\n\n\f\n\u012f\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ - "\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u0137\b\u000b\n\u000b\f\u000b"+ - "\u013a\t\u000b\u0001\u000b\u0001\u000b\u0003\u000b\u013e\b\u000b\u0003"+ - "\u000b\u0140\b\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001"+ - "\r\u0001\r\u0001\r\u0005\r\u014a\b\r\n\r\f\r\u014d\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\u015d\b\u0011\n\u0011\f\u0011\u0160\t\u0011\u0001\u0012\u0001"+ - "\u0012\u0001\u0012\u0003\u0012\u0165\b\u0012\u0001\u0012\u0001\u0012\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u016d\b\u0013\n"+ - "\u0013\f\u0013\u0170\t\u0013\u0001\u0013\u0003\u0013\u0173\b\u0013\u0001"+ - "\u0014\u0001\u0014\u0001\u0014\u0003\u0014\u0178\b\u0014\u0001\u0014\u0001"+ - "\u0014\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0001\u0017\u0005\u0017\u0184\b\u0017\n\u0017\f\u0017"+ - "\u0187\t\u0017\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018"+ - "\u018d\b\u0018\n\u0018\f\u0018\u0190\t\u0018\u0001\u0018\u0003\u0018\u0193"+ - "\b\u0018\u0001\u0018\u0001\u0018\u0003\u0018\u0197\b\u0018\u0001\u0019"+ - "\u0001\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u019e\b\u001a"+ - "\u0001\u001a\u0001\u001a\u0003\u001a\u01a2\b\u001a\u0001\u001b\u0001\u001b"+ - "\u0001\u001b\u0005\u001b\u01a7\b\u001b\n\u001b\f\u001b\u01aa\t\u001b\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u01af\b\u001c\u0001\u001d\u0001"+ - "\u001d\u0001\u001d\u0005\u001d\u01b4\b\u001d\n\u001d\f\u001d\u01b7\t\u001d"+ - "\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01bc\b\u001e\n\u001e"+ - "\f\u001e\u01bf\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f"+ - "\u01c4\b\u001f\n\u001f\f\u001f\u01c7\t\u001f\u0001 \u0001 \u0001!\u0001"+ - "!\u0003!\u01cd\b!\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01dc\b\"\n"+ - "\"\f\"\u01df\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005"+ - "\"\u01e7\b\"\n\"\f\"\u01ea\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\""+ - "\u0001\"\u0005\"\u01f2\b\"\n\"\f\"\u01f5\t\"\u0001\"\u0001\"\u0003\"\u01f9"+ - "\b\"\u0001#\u0001#\u0003#\u01fd\b#\u0001$\u0001$\u0003$\u0201\b$\u0001"+ - "%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001&\u0005&\u020a\b&\n&\f&\u020d"+ - "\t&\u0001\'\u0001\'\u0003\'\u0211\b\'\u0001\'\u0001\'\u0003\'\u0215\b"+ - "\'\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001"+ - "*\u0005*\u0221\b*\n*\f*\u0224\t*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001"+ - ",\u0001,\u0001,\u0003,\u022e\b,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001"+ - ".\u0001.\u0001/\u0001/\u0001/\u0005/\u023a\b/\n/\f/\u023d\t/\u00010\u0001"+ - "0\u00010\u00010\u00011\u00011\u00012\u00012\u00032\u0247\b2\u00013\u0003"+ - "3\u024a\b3\u00013\u00013\u00014\u00034\u024f\b4\u00014\u00014\u00015\u0001"+ - "5\u00016\u00016\u00017\u00017\u00017\u00018\u00018\u00018\u00018\u0001"+ - "9\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0003:\u0265\b:\u0001:\u0001"+ - ":\u0001:\u0001:\u0005:\u026b\b:\n:\f:\u026e\t:\u0003:\u0270\b:\u0001;"+ - "\u0001;\u0001;\u0003;\u0275\b;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+ - "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u0282\b=\u0001>\u0001>\u0001"+ - ">\u0001>\u0001>\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u028f"+ - "\b@\n@\f@\u0292\t@\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0003B\u029a"+ - "\bB\u0001B\u0001B\u0001B\u0001B\u0001B\u0003B\u02a1\bB\u0001C\u0001C\u0001"+ - "C\u0001D\u0001D\u0001D\u0001E\u0004E\u02aa\bE\u000bE\fE\u02ab\u0001F\u0001"+ - "F\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001G\u0001G\u0005G\u02b8"+ - "\bG\nG\fG\u02bb\tG\u0001H\u0001H\u0001H\u0003H\u02c0\bH\u0001H\u0000\u0005"+ - "\u0002\n\u0012\u0014\u008eI\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010"+ - "\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPR"+ - "TVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e"+ - "\u0090\u0000\t\u0001\u0000BC\u0001\u0000DF\u0002\u0000 UU\u0001\u0000"+ - "LM\u0002\u0000%%**\u0002\u0000--00\u0002\u0000,,::\u0002\u0000;;=A\u0002"+ - "\u0000\u0011\u0011\u0018\u0019\u02dd\u0000\u0092\u0001\u0000\u0000\u0000"+ - "\u0002\u0095\u0001\u0000\u0000\u0000\u0004\u00a6\u0001\u0000\u0000\u0000"+ - "\u0006\u00bf\u0001\u0000\u0000\u0000\b\u00c1\u0001\u0000\u0000\u0000\n"+ - "\u00e1\u0001\u0000\u0000\u0000\f\u00fc\u0001\u0000\u0000\u0000\u000e\u00fe"+ - "\u0001\u0000\u0000\u0000\u0010\u010b\u0001\u0000\u0000\u0000\u0012\u0111"+ - "\u0001\u0000\u0000\u0000\u0014\u0126\u0001\u0000\u0000\u0000\u0016\u0130"+ - "\u0001\u0000\u0000\u0000\u0018\u0143\u0001\u0000\u0000\u0000\u001a\u0145"+ - "\u0001\u0000\u0000\u0000\u001c\u0150\u0001\u0000\u0000\u0000\u001e\u0154"+ - "\u0001\u0000\u0000\u0000 \u0156\u0001\u0000\u0000\u0000\"\u0159\u0001"+ - "\u0000\u0000\u0000$\u0164\u0001\u0000\u0000\u0000&\u0168\u0001\u0000\u0000"+ - "\u0000(\u0177\u0001\u0000\u0000\u0000*\u017b\u0001\u0000\u0000\u0000,"+ - "\u017d\u0001\u0000\u0000\u0000.\u017f\u0001\u0000\u0000\u00000\u0188\u0001"+ - "\u0000\u0000\u00002\u0198\u0001\u0000\u0000\u00004\u019b\u0001\u0000\u0000"+ - "\u00006\u01a3\u0001\u0000\u0000\u00008\u01ab\u0001\u0000\u0000\u0000:"+ - "\u01b0\u0001\u0000\u0000\u0000<\u01b8\u0001\u0000\u0000\u0000>\u01c0\u0001"+ - "\u0000\u0000\u0000@\u01c8\u0001\u0000\u0000\u0000B\u01cc\u0001\u0000\u0000"+ - "\u0000D\u01f8\u0001\u0000\u0000\u0000F\u01fc\u0001\u0000\u0000\u0000H"+ - "\u0200\u0001\u0000\u0000\u0000J\u0202\u0001\u0000\u0000\u0000L\u0205\u0001"+ - "\u0000\u0000\u0000N\u020e\u0001\u0000\u0000\u0000P\u0216\u0001\u0000\u0000"+ - "\u0000R\u0219\u0001\u0000\u0000\u0000T\u021c\u0001\u0000\u0000\u0000V"+ - "\u0225\u0001\u0000\u0000\u0000X\u0229\u0001\u0000\u0000\u0000Z\u022f\u0001"+ - "\u0000\u0000\u0000\\\u0233\u0001\u0000\u0000\u0000^\u0236\u0001\u0000"+ - "\u0000\u0000`\u023e\u0001\u0000\u0000\u0000b\u0242\u0001\u0000\u0000\u0000"+ - "d\u0246\u0001\u0000\u0000\u0000f\u0249\u0001\u0000\u0000\u0000h\u024e"+ - "\u0001\u0000\u0000\u0000j\u0252\u0001\u0000\u0000\u0000l\u0254\u0001\u0000"+ - "\u0000\u0000n\u0256\u0001\u0000\u0000\u0000p\u0259\u0001\u0000\u0000\u0000"+ - "r\u025d\u0001\u0000\u0000\u0000t\u0260\u0001\u0000\u0000\u0000v\u0274"+ - "\u0001\u0000\u0000\u0000x\u0278\u0001\u0000\u0000\u0000z\u027d\u0001\u0000"+ - "\u0000\u0000|\u0283\u0001\u0000\u0000\u0000~\u0288\u0001\u0000\u0000\u0000"+ - "\u0080\u028a\u0001\u0000\u0000\u0000\u0082\u0293\u0001\u0000\u0000\u0000"+ - "\u0084\u0295\u0001\u0000\u0000\u0000\u0086\u02a2\u0001\u0000\u0000\u0000"+ - "\u0088\u02a5\u0001\u0000\u0000\u0000\u008a\u02a9\u0001\u0000\u0000\u0000"+ - "\u008c\u02ad\u0001\u0000\u0000\u0000\u008e\u02b1\u0001\u0000\u0000\u0000"+ - "\u0090\u02bf\u0001\u0000\u0000\u0000\u0092\u0093\u0003\u0002\u0001\u0000"+ - "\u0093\u0094\u0005\u0000\u0000\u0001\u0094\u0001\u0001\u0000\u0000\u0000"+ - "\u0095\u0096\u0006\u0001\uffff\uffff\u0000\u0096\u0097\u0003\u0004\u0002"+ - "\u0000\u0097\u009d\u0001\u0000\u0000\u0000\u0098\u0099\n\u0001\u0000\u0000"+ - "\u0099\u009a\u0005\u001f\u0000\u0000\u009a\u009c\u0003\u0006\u0003\u0000"+ - "\u009b\u0098\u0001\u0000\u0000\u0000\u009c\u009f\u0001\u0000\u0000\u0000"+ - "\u009d\u009b\u0001\u0000\u0000\u0000\u009d\u009e\u0001\u0000\u0000\u0000"+ - "\u009e\u0003\u0001\u0000\u0000\u0000\u009f\u009d\u0001\u0000\u0000\u0000"+ - "\u00a0\u00a7\u0003n7\u0000\u00a1\u00a7\u0003&\u0013\u0000\u00a2\u00a7"+ - "\u0003 \u0010\u0000\u00a3\u00a7\u0003r9\u0000\u00a4\u00a5\u0004\u0002"+ - "\u0001\u0000\u00a5\u00a7\u00030\u0018\u0000\u00a6\u00a0\u0001\u0000\u0000"+ - "\u0000\u00a6\u00a1\u0001\u0000\u0000\u0000\u00a6\u00a2\u0001\u0000\u0000"+ - "\u0000\u00a6\u00a3\u0001\u0000\u0000\u0000\u00a6\u00a4\u0001\u0000\u0000"+ - "\u0000\u00a7\u0005\u0001\u0000\u0000\u0000\u00a8\u00c0\u00032\u0019\u0000"+ - "\u00a9\u00c0\u0003\b\u0004\u0000\u00aa\u00c0\u0003P(\u0000\u00ab\u00c0"+ - "\u0003J%\u0000\u00ac\u00c0\u00034\u001a\u0000\u00ad\u00c0\u0003L&\u0000"+ - "\u00ae\u00c0\u0003R)\u0000\u00af\u00c0\u0003T*\u0000\u00b0\u00c0\u0003"+ - "X,\u0000\u00b1\u00c0\u0003Z-\u0000\u00b2\u00c0\u0003t:\u0000\u00b3\u00c0"+ - "\u0003\\.\u0000\u00b4\u00c0\u0003|>\u0000\u00b5\u00b6\u0004\u0003\u0002"+ - "\u0000\u00b6\u00c0\u0003z=\u0000\u00b7\u00b8\u0004\u0003\u0003\u0000\u00b8"+ - "\u00c0\u0003x<\u0000\u00b9\u00ba\u0004\u0003\u0004\u0000\u00ba\u00c0\u0003"+ - "\u0084B\u0000\u00bb\u00bc\u0004\u0003\u0005\u0000\u00bc\u00c0\u0003\u0086"+ - "C\u0000\u00bd\u00be\u0004\u0003\u0006\u0000\u00be\u00c0\u0003\u0088D\u0000"+ - "\u00bf\u00a8\u0001\u0000\u0000\u0000\u00bf\u00a9\u0001\u0000\u0000\u0000"+ - "\u00bf\u00aa\u0001\u0000\u0000\u0000\u00bf\u00ab\u0001\u0000\u0000\u0000"+ - "\u00bf\u00ac\u0001\u0000\u0000\u0000\u00bf\u00ad\u0001\u0000\u0000\u0000"+ - "\u00bf\u00ae\u0001\u0000\u0000\u0000\u00bf\u00af\u0001\u0000\u0000\u0000"+ - "\u00bf\u00b0\u0001\u0000\u0000\u0000\u00bf\u00b1\u0001\u0000\u0000\u0000"+ - "\u00bf\u00b2\u0001\u0000\u0000\u0000\u00bf\u00b3\u0001\u0000\u0000\u0000"+ - "\u00bf\u00b4\u0001\u0000\u0000\u0000\u00bf\u00b5\u0001\u0000\u0000\u0000"+ - "\u00bf\u00b7\u0001\u0000\u0000\u0000\u00bf\u00b9\u0001\u0000\u0000\u0000"+ - "\u00bf\u00bb\u0001\u0000\u0000\u0000\u00bf\u00bd\u0001\u0000\u0000\u0000"+ - "\u00c0\u0007\u0001\u0000\u0000\u0000\u00c1\u00c2\u0005\u0010\u0000\u0000"+ - "\u00c2\u00c3\u0003\n\u0005\u0000\u00c3\t\u0001\u0000\u0000\u0000\u00c4"+ - "\u00c5\u0006\u0005\uffff\uffff\u0000\u00c5\u00c6\u00053\u0000\u0000\u00c6"+ - "\u00e2\u0003\n\u0005\b\u00c7\u00e2\u0003\u0010\b\u0000\u00c8\u00e2\u0003"+ - "\f\u0006\u0000\u00c9\u00cb\u0003\u0010\b\u0000\u00ca\u00cc\u00053\u0000"+ - "\u0000\u00cb\u00ca\u0001\u0000\u0000\u0000\u00cb\u00cc\u0001\u0000\u0000"+ - "\u0000\u00cc\u00cd\u0001\u0000\u0000\u0000\u00cd\u00ce\u0005.\u0000\u0000"+ - "\u00ce\u00cf\u00052\u0000\u0000\u00cf\u00d4\u0003\u0010\b\u0000\u00d0"+ - "\u00d1\u0005)\u0000\u0000\u00d1\u00d3\u0003\u0010\b\u0000\u00d2\u00d0"+ - "\u0001\u0000\u0000\u0000\u00d3\u00d6\u0001\u0000\u0000\u0000\u00d4\u00d2"+ - "\u0001\u0000\u0000\u0000\u00d4\u00d5\u0001\u0000\u0000\u0000\u00d5\u00d7"+ - "\u0001\u0000\u0000\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000\u00d7\u00d8"+ - "\u00059\u0000\u0000\u00d8\u00e2\u0001\u0000\u0000\u0000\u00d9\u00da\u0003"+ - "\u0010\b\u0000\u00da\u00dc\u0005/\u0000\u0000\u00db\u00dd\u00053\u0000"+ - "\u0000\u00dc\u00db\u0001\u0000\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000"+ - "\u0000\u00dd\u00de\u0001\u0000\u0000\u0000\u00de\u00df\u00054\u0000\u0000"+ - "\u00df\u00e2\u0001\u0000\u0000\u0000\u00e0\u00e2\u0003\u000e\u0007\u0000"+ - "\u00e1\u00c4\u0001\u0000\u0000\u0000\u00e1\u00c7\u0001\u0000\u0000\u0000"+ - "\u00e1\u00c8\u0001\u0000\u0000\u0000\u00e1\u00c9\u0001\u0000\u0000\u0000"+ - "\u00e1\u00d9\u0001\u0000\u0000\u0000\u00e1\u00e0\u0001\u0000\u0000\u0000"+ - "\u00e2\u00eb\u0001\u0000\u0000\u0000\u00e3\u00e4\n\u0005\u0000\u0000\u00e4"+ - "\u00e5\u0005$\u0000\u0000\u00e5\u00ea\u0003\n\u0005\u0006\u00e6\u00e7"+ - "\n\u0004\u0000\u0000\u00e7\u00e8\u00056\u0000\u0000\u00e8\u00ea\u0003"+ - "\n\u0005\u0005\u00e9\u00e3\u0001\u0000\u0000\u0000\u00e9\u00e6\u0001\u0000"+ - "\u0000\u0000\u00ea\u00ed\u0001\u0000\u0000\u0000\u00eb\u00e9\u0001\u0000"+ - "\u0000\u0000\u00eb\u00ec\u0001\u0000\u0000\u0000\u00ec\u000b\u0001\u0000"+ - "\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000\u00ee\u00f0\u0003\u0010"+ - "\b\u0000\u00ef\u00f1\u00053\u0000\u0000\u00f0\u00ef\u0001\u0000\u0000"+ - "\u0000\u00f0\u00f1\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000"+ - "\u0000\u00f2\u00f3\u00051\u0000\u0000\u00f3\u00f4\u0003j5\u0000\u00f4"+ - "\u00fd\u0001\u0000\u0000\u0000\u00f5\u00f7\u0003\u0010\b\u0000\u00f6\u00f8"+ - "\u00053\u0000\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001"+ - "\u0000\u0000\u0000\u00f8\u00f9\u0001\u0000\u0000\u0000\u00f9\u00fa\u0005"+ - "8\u0000\u0000\u00fa\u00fb\u0003j5\u0000\u00fb\u00fd\u0001\u0000\u0000"+ - "\u0000\u00fc\u00ee\u0001\u0000\u0000\u0000\u00fc\u00f5\u0001\u0000\u0000"+ - "\u0000\u00fd\r\u0001\u0000\u0000\u0000\u00fe\u0101\u0003:\u001d\u0000"+ - "\u00ff\u0100\u0005\'\u0000\u0000\u0100\u0102\u0003\u001e\u000f\u0000\u0101"+ - "\u00ff\u0001\u0000\u0000\u0000\u0101\u0102\u0001\u0000\u0000\u0000\u0102"+ - "\u0103\u0001\u0000\u0000\u0000\u0103\u0104\u0005(\u0000\u0000\u0104\u0105"+ - "\u0003D\"\u0000\u0105\u000f\u0001\u0000\u0000\u0000\u0106\u010c\u0003"+ - "\u0012\t\u0000\u0107\u0108\u0003\u0012\t\u0000\u0108\u0109\u0003l6\u0000"+ - "\u0109\u010a\u0003\u0012\t\u0000\u010a\u010c\u0001\u0000\u0000\u0000\u010b"+ - "\u0106\u0001\u0000\u0000\u0000\u010b\u0107\u0001\u0000\u0000\u0000\u010c"+ - "\u0011\u0001\u0000\u0000\u0000\u010d\u010e\u0006\t\uffff\uffff\u0000\u010e"+ - "\u0112\u0003\u0014\n\u0000\u010f\u0110\u0007\u0000\u0000\u0000\u0110\u0112"+ - "\u0003\u0012\t\u0003\u0111\u010d\u0001\u0000\u0000\u0000\u0111\u010f\u0001"+ - "\u0000\u0000\u0000\u0112\u011b\u0001\u0000\u0000\u0000\u0113\u0114\n\u0002"+ - "\u0000\u0000\u0114\u0115\u0007\u0001\u0000\u0000\u0115\u011a\u0003\u0012"+ - "\t\u0003\u0116\u0117\n\u0001\u0000\u0000\u0117\u0118\u0007\u0000\u0000"+ - "\u0000\u0118\u011a\u0003\u0012\t\u0002\u0119\u0113\u0001\u0000\u0000\u0000"+ - "\u0119\u0116\u0001\u0000\u0000\u0000\u011a\u011d\u0001\u0000\u0000\u0000"+ - "\u011b\u0119\u0001\u0000\u0000\u0000\u011b\u011c\u0001\u0000\u0000\u0000"+ - "\u011c\u0013\u0001\u0000\u0000\u0000\u011d\u011b\u0001\u0000\u0000\u0000"+ - "\u011e\u011f\u0006\n\uffff\uffff\u0000\u011f\u0127\u0003D\"\u0000\u0120"+ - "\u0127\u0003:\u001d\u0000\u0121\u0127\u0003\u0016\u000b\u0000\u0122\u0123"+ - "\u00052\u0000\u0000\u0123\u0124\u0003\n\u0005\u0000\u0124\u0125\u0005"+ - "9\u0000\u0000\u0125\u0127\u0001\u0000\u0000\u0000\u0126\u011e\u0001\u0000"+ - "\u0000\u0000\u0126\u0120\u0001\u0000\u0000\u0000\u0126\u0121\u0001\u0000"+ - "\u0000\u0000\u0126\u0122\u0001\u0000\u0000\u0000\u0127\u012d\u0001\u0000"+ - "\u0000\u0000\u0128\u0129\n\u0001\u0000\u0000\u0129\u012a\u0005\'\u0000"+ - "\u0000\u012a\u012c\u0003\u001e\u000f\u0000\u012b\u0128\u0001\u0000\u0000"+ - "\u0000\u012c\u012f\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000"+ - "\u0000\u012d\u012e\u0001\u0000\u0000\u0000\u012e\u0015\u0001\u0000\u0000"+ - "\u0000\u012f\u012d\u0001\u0000\u0000\u0000\u0130\u0131\u0003\u0018\f\u0000"+ - "\u0131\u013f\u00052\u0000\u0000\u0132\u0140\u0005D\u0000\u0000\u0133\u0138"+ - "\u0003\n\u0005\u0000\u0134\u0135\u0005)\u0000\u0000\u0135\u0137\u0003"+ - "\n\u0005\u0000\u0136\u0134\u0001\u0000\u0000\u0000\u0137\u013a\u0001\u0000"+ - "\u0000\u0000\u0138\u0136\u0001\u0000\u0000\u0000\u0138\u0139\u0001\u0000"+ - "\u0000\u0000\u0139\u013d\u0001\u0000\u0000\u0000\u013a\u0138\u0001\u0000"+ - "\u0000\u0000\u013b\u013c\u0005)\u0000\u0000\u013c\u013e\u0003\u001a\r"+ - "\u0000\u013d\u013b\u0001\u0000\u0000\u0000\u013d\u013e\u0001\u0000\u0000"+ - "\u0000\u013e\u0140\u0001\u0000\u0000\u0000\u013f\u0132\u0001\u0000\u0000"+ - "\u0000\u013f\u0133\u0001\u0000\u0000\u0000\u013f\u0140\u0001\u0000\u0000"+ - "\u0000\u0140\u0141\u0001\u0000\u0000\u0000\u0141\u0142\u00059\u0000\u0000"+ - "\u0142\u0017\u0001\u0000\u0000\u0000\u0143\u0144\u0003H$\u0000\u0144\u0019"+ - "\u0001\u0000\u0000\u0000\u0145\u0146\u0005G\u0000\u0000\u0146\u014b\u0003"+ - "\u001c\u000e\u0000\u0147\u0148\u0005)\u0000\u0000\u0148\u014a\u0003\u001c"+ - "\u000e\u0000\u0149\u0147\u0001\u0000\u0000\u0000\u014a\u014d\u0001\u0000"+ - "\u0000\u0000\u014b\u0149\u0001\u0000\u0000\u0000\u014b\u014c\u0001\u0000"+ - "\u0000\u0000\u014c\u014e\u0001\u0000\u0000\u0000\u014d\u014b\u0001\u0000"+ - "\u0000\u0000\u014e\u014f\u0005H\u0000\u0000\u014f\u001b\u0001\u0000\u0000"+ - "\u0000\u0150\u0151\u0003j5\u0000\u0151\u0152\u0005(\u0000\u0000\u0152"+ - "\u0153\u0003D\"\u0000\u0153\u001d\u0001\u0000\u0000\u0000\u0154\u0155"+ - "\u0003@ \u0000\u0155\u001f\u0001\u0000\u0000\u0000\u0156\u0157\u0005\f"+ - "\u0000\u0000\u0157\u0158\u0003\"\u0011\u0000\u0158!\u0001\u0000\u0000"+ - "\u0000\u0159\u015e\u0003$\u0012\u0000\u015a\u015b\u0005)\u0000\u0000\u015b"+ - "\u015d\u0003$\u0012\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#\u0001\u0000\u0000\u0000\u0160\u015e\u0001"+ - "\u0000\u0000\u0000\u0161\u0162\u0003:\u001d\u0000\u0162\u0163\u0005&\u0000"+ - "\u0000\u0163\u0165\u0001\u0000\u0000\u0000\u0164\u0161\u0001\u0000\u0000"+ - "\u0000\u0164\u0165\u0001\u0000\u0000\u0000\u0165\u0166\u0001\u0000\u0000"+ - "\u0000\u0166\u0167\u0003\n\u0005\u0000\u0167%\u0001\u0000\u0000\u0000"+ - "\u0168\u0169\u0005\u0006\u0000\u0000\u0169\u016e\u0003(\u0014\u0000\u016a"+ - "\u016b\u0005)\u0000\u0000\u016b\u016d\u0003(\u0014\u0000\u016c\u016a\u0001"+ - "\u0000\u0000\u0000\u016d\u0170\u0001\u0000\u0000\u0000\u016e\u016c\u0001"+ - "\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000\u0000\u016f\u0172\u0001"+ - "\u0000\u0000\u0000\u0170\u016e\u0001\u0000\u0000\u0000\u0171\u0173\u0003"+ - ".\u0017\u0000\u0172\u0171\u0001\u0000\u0000\u0000\u0172\u0173\u0001\u0000"+ - "\u0000\u0000\u0173\'\u0001\u0000\u0000\u0000\u0174\u0175\u0003*\u0015"+ - "\u0000\u0175\u0176\u0005(\u0000\u0000\u0176\u0178\u0001\u0000\u0000\u0000"+ - "\u0177\u0174\u0001\u0000\u0000\u0000\u0177\u0178\u0001\u0000\u0000\u0000"+ - "\u0178\u0179\u0001\u0000\u0000\u0000\u0179\u017a\u0003,\u0016\u0000\u017a"+ - ")\u0001\u0000\u0000\u0000\u017b\u017c\u0007\u0002\u0000\u0000\u017c+\u0001"+ - "\u0000\u0000\u0000\u017d\u017e\u0007\u0002\u0000\u0000\u017e-\u0001\u0000"+ - "\u0000\u0000\u017f\u0180\u0005T\u0000\u0000\u0180\u0185\u0005U\u0000\u0000"+ - "\u0181\u0182\u0005)\u0000\u0000\u0182\u0184\u0005U\u0000\u0000\u0183\u0181"+ - "\u0001\u0000\u0000\u0000\u0184\u0187\u0001\u0000\u0000\u0000\u0185\u0183"+ - "\u0001\u0000\u0000\u0000\u0185\u0186\u0001\u0000\u0000\u0000\u0186/\u0001"+ - "\u0000\u0000\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0188\u0189\u0005"+ - "\u0016\u0000\u0000\u0189\u018e\u0003(\u0014\u0000\u018a\u018b\u0005)\u0000"+ - "\u0000\u018b\u018d\u0003(\u0014\u0000\u018c\u018a\u0001\u0000\u0000\u0000"+ - "\u018d\u0190\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000"+ - "\u018e\u018f\u0001\u0000\u0000\u0000\u018f\u0192\u0001\u0000\u0000\u0000"+ - "\u0190\u018e\u0001\u0000\u0000\u0000\u0191\u0193\u00036\u001b\u0000\u0192"+ - "\u0191\u0001\u0000\u0000\u0000\u0192\u0193\u0001\u0000\u0000\u0000\u0193"+ - "\u0196\u0001\u0000\u0000\u0000\u0194\u0195\u0005#\u0000\u0000\u0195\u0197"+ - "\u0003\"\u0011\u0000\u0196\u0194\u0001\u0000\u0000\u0000\u0196\u0197\u0001"+ - "\u0000\u0000\u0000\u01971\u0001\u0000\u0000\u0000\u0198\u0199\u0005\u0004"+ - "\u0000\u0000\u0199\u019a\u0003\"\u0011\u0000\u019a3\u0001\u0000\u0000"+ - "\u0000\u019b\u019d\u0005\u000f\u0000\u0000\u019c\u019e\u00036\u001b\u0000"+ - "\u019d\u019c\u0001\u0000\u0000\u0000\u019d\u019e\u0001\u0000\u0000\u0000"+ - "\u019e\u01a1\u0001\u0000\u0000\u0000\u019f\u01a0\u0005#\u0000\u0000\u01a0"+ - "\u01a2\u0003\"\u0011\u0000\u01a1\u019f\u0001\u0000\u0000\u0000\u01a1\u01a2"+ - "\u0001\u0000\u0000\u0000\u01a25\u0001\u0000\u0000\u0000\u01a3\u01a8\u0003"+ - "8\u001c\u0000\u01a4\u01a5\u0005)\u0000\u0000\u01a5\u01a7\u00038\u001c"+ - "\u0000\u01a6\u01a4\u0001\u0000\u0000\u0000\u01a7\u01aa\u0001\u0000\u0000"+ - "\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a8\u01a9\u0001\u0000\u0000"+ - "\u0000\u01a97\u0001\u0000\u0000\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000"+ - "\u01ab\u01ae\u0003$\u0012\u0000\u01ac\u01ad\u0005\u0010\u0000\u0000\u01ad"+ - "\u01af\u0003\n\u0005\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae\u01af"+ - "\u0001\u0000\u0000\u0000\u01af9\u0001\u0000\u0000\u0000\u01b0\u01b5\u0003"+ - "H$\u0000\u01b1\u01b2\u0005+\u0000\u0000\u01b2\u01b4\u0003H$\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\u01bd"+ - "\u0003B!\u0000\u01b9\u01ba\u0005+\u0000\u0000\u01ba\u01bc\u0003B!\u0000"+ - "\u01bb\u01b9\u0001\u0000\u0000\u0000\u01bc\u01bf\u0001\u0000\u0000\u0000"+ - "\u01bd\u01bb\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000\u0000"+ - "\u01be=\u0001\u0000\u0000\u0000\u01bf\u01bd\u0001\u0000\u0000\u0000\u01c0"+ - "\u01c5\u0003<\u001e\u0000\u01c1\u01c2\u0005)\u0000\u0000\u01c2\u01c4\u0003"+ - "<\u001e\u0000\u01c3\u01c1\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000"+ - "\u0000\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000"+ - "\u0000\u0000\u01c6?\u0001\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000"+ - "\u0000\u01c8\u01c9\u0007\u0003\u0000\u0000\u01c9A\u0001\u0000\u0000\u0000"+ - "\u01ca\u01cd\u0005Y\u0000\u0000\u01cb\u01cd\u0003F#\u0000\u01cc\u01ca"+ - "\u0001\u0000\u0000\u0000\u01cc\u01cb\u0001\u0000\u0000\u0000\u01cdC\u0001"+ - "\u0000\u0000\u0000\u01ce\u01f9\u00054\u0000\u0000\u01cf\u01d0\u0003h4"+ - "\u0000\u01d0\u01d1\u0005L\u0000\u0000\u01d1\u01f9\u0001\u0000\u0000\u0000"+ - "\u01d2\u01f9\u0003f3\u0000\u01d3\u01f9\u0003h4\u0000\u01d4\u01f9\u0003"+ - "b1\u0000\u01d5\u01f9\u0003F#\u0000\u01d6\u01f9\u0003j5\u0000\u01d7\u01d8"+ - "\u0005J\u0000\u0000\u01d8\u01dd\u0003d2\u0000\u01d9\u01da\u0005)\u0000"+ - "\u0000\u01da\u01dc\u0003d2\u0000\u01db\u01d9\u0001\u0000\u0000\u0000\u01dc"+ - "\u01df\u0001\u0000\u0000\u0000\u01dd\u01db\u0001\u0000\u0000\u0000\u01dd"+ - "\u01de\u0001\u0000\u0000\u0000\u01de\u01e0\u0001\u0000\u0000\u0000\u01df"+ - "\u01dd\u0001\u0000\u0000\u0000\u01e0\u01e1\u0005K\u0000\u0000\u01e1\u01f9"+ - "\u0001\u0000\u0000\u0000\u01e2\u01e3\u0005J\u0000\u0000\u01e3\u01e8\u0003"+ - "b1\u0000\u01e4\u01e5\u0005)\u0000\u0000\u01e5\u01e7\u0003b1\u0000\u01e6"+ - "\u01e4\u0001\u0000\u0000\u0000\u01e7\u01ea\u0001\u0000\u0000\u0000\u01e8"+ - "\u01e6\u0001\u0000\u0000\u0000\u01e8\u01e9\u0001\u0000\u0000\u0000\u01e9"+ - "\u01eb\u0001\u0000\u0000\u0000\u01ea\u01e8\u0001\u0000\u0000\u0000\u01eb"+ - "\u01ec\u0005K\u0000\u0000\u01ec\u01f9\u0001\u0000\u0000\u0000\u01ed\u01ee"+ - "\u0005J\u0000\u0000\u01ee\u01f3\u0003j5\u0000\u01ef\u01f0\u0005)\u0000"+ - "\u0000\u01f0\u01f2\u0003j5\u0000\u01f1\u01ef\u0001\u0000\u0000\u0000\u01f2"+ - "\u01f5\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000\u0000\u0000\u01f3"+ - "\u01f4\u0001\u0000\u0000\u0000\u01f4\u01f6\u0001\u0000\u0000\u0000\u01f5"+ - "\u01f3\u0001\u0000\u0000\u0000\u01f6\u01f7\u0005K\u0000\u0000\u01f7\u01f9"+ - "\u0001\u0000\u0000\u0000\u01f8\u01ce\u0001\u0000\u0000\u0000\u01f8\u01cf"+ - "\u0001\u0000\u0000\u0000\u01f8\u01d2\u0001\u0000\u0000\u0000\u01f8\u01d3"+ - "\u0001\u0000\u0000\u0000\u01f8\u01d4\u0001\u0000\u0000\u0000\u01f8\u01d5"+ - "\u0001\u0000\u0000\u0000\u01f8\u01d6\u0001\u0000\u0000\u0000\u01f8\u01d7"+ - "\u0001\u0000\u0000\u0000\u01f8\u01e2\u0001\u0000\u0000\u0000\u01f8\u01ed"+ - "\u0001\u0000\u0000\u0000\u01f9E\u0001\u0000\u0000\u0000\u01fa\u01fd\u0005"+ - "7\u0000\u0000\u01fb\u01fd\u0005I\u0000\u0000\u01fc\u01fa\u0001\u0000\u0000"+ - "\u0000\u01fc\u01fb\u0001\u0000\u0000\u0000\u01fdG\u0001\u0000\u0000\u0000"+ - "\u01fe\u0201\u0003@ \u0000\u01ff\u0201\u0003F#\u0000\u0200\u01fe\u0001"+ - "\u0000\u0000\u0000\u0200\u01ff\u0001\u0000\u0000\u0000\u0201I\u0001\u0000"+ - "\u0000\u0000\u0202\u0203\u0005\t\u0000\u0000\u0203\u0204\u0005!\u0000"+ - "\u0000\u0204K\u0001\u0000\u0000\u0000\u0205\u0206\u0005\u000e\u0000\u0000"+ - "\u0206\u020b\u0003N\'\u0000\u0207\u0208\u0005)\u0000\u0000\u0208\u020a"+ - "\u0003N\'\u0000\u0209\u0207\u0001\u0000\u0000\u0000\u020a\u020d\u0001"+ - "\u0000\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020b\u020c\u0001"+ - "\u0000\u0000\u0000\u020cM\u0001\u0000\u0000\u0000\u020d\u020b\u0001\u0000"+ - "\u0000\u0000\u020e\u0210\u0003\n\u0005\u0000\u020f\u0211\u0007\u0004\u0000"+ - "\u0000\u0210\u020f\u0001\u0000\u0000\u0000\u0210\u0211\u0001\u0000\u0000"+ - "\u0000\u0211\u0214\u0001\u0000\u0000\u0000\u0212\u0213\u00055\u0000\u0000"+ - "\u0213\u0215\u0007\u0005\u0000\u0000\u0214\u0212\u0001\u0000\u0000\u0000"+ - "\u0214\u0215\u0001\u0000\u0000\u0000\u0215O\u0001\u0000\u0000\u0000\u0216"+ - "\u0217\u0005\b\u0000\u0000\u0217\u0218\u0003>\u001f\u0000\u0218Q\u0001"+ - "\u0000\u0000\u0000\u0219\u021a\u0005\u0002\u0000\u0000\u021a\u021b\u0003"+ - ">\u001f\u0000\u021bS\u0001\u0000\u0000\u0000\u021c\u021d\u0005\u000b\u0000"+ - "\u0000\u021d\u0222\u0003V+\u0000\u021e\u021f\u0005)\u0000\u0000\u021f"+ - "\u0221\u0003V+\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0221\u0224\u0001"+ - "\u0000\u0000\u0000\u0222\u0220\u0001\u0000\u0000\u0000\u0222\u0223\u0001"+ - "\u0000\u0000\u0000\u0223U\u0001\u0000\u0000\u0000\u0224\u0222\u0001\u0000"+ - "\u0000\u0000\u0225\u0226\u0003<\u001e\u0000\u0226\u0227\u0005]\u0000\u0000"+ - "\u0227\u0228\u0003<\u001e\u0000\u0228W\u0001\u0000\u0000\u0000\u0229\u022a"+ - "\u0005\u0001\u0000\u0000\u022a\u022b\u0003\u0014\n\u0000\u022b\u022d\u0003"+ - "j5\u0000\u022c\u022e\u0003^/\u0000\u022d\u022c\u0001\u0000\u0000\u0000"+ - "\u022d\u022e\u0001\u0000\u0000\u0000\u022eY\u0001\u0000\u0000\u0000\u022f"+ - "\u0230\u0005\u0007\u0000\u0000\u0230\u0231\u0003\u0014\n\u0000\u0231\u0232"+ - "\u0003j5\u0000\u0232[\u0001\u0000\u0000\u0000\u0233\u0234\u0005\n\u0000"+ - "\u0000\u0234\u0235\u0003:\u001d\u0000\u0235]\u0001\u0000\u0000\u0000\u0236"+ - "\u023b\u0003`0\u0000\u0237\u0238\u0005)\u0000\u0000\u0238\u023a\u0003"+ - "`0\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a\u023d\u0001\u0000\u0000"+ - "\u0000\u023b\u0239\u0001\u0000\u0000\u0000\u023b\u023c\u0001\u0000\u0000"+ - "\u0000\u023c_\u0001\u0000\u0000\u0000\u023d\u023b\u0001\u0000\u0000\u0000"+ - "\u023e\u023f\u0003@ \u0000\u023f\u0240\u0005&\u0000\u0000\u0240\u0241"+ - "\u0003D\"\u0000\u0241a\u0001\u0000\u0000\u0000\u0242\u0243\u0007\u0006"+ - "\u0000\u0000\u0243c\u0001\u0000\u0000\u0000\u0244\u0247\u0003f3\u0000"+ - "\u0245\u0247\u0003h4\u0000\u0246\u0244\u0001\u0000\u0000\u0000\u0246\u0245"+ - "\u0001\u0000\u0000\u0000\u0247e\u0001\u0000\u0000\u0000\u0248\u024a\u0007"+ - "\u0000\u0000\u0000\u0249\u0248\u0001\u0000\u0000\u0000\u0249\u024a\u0001"+ - "\u0000\u0000\u0000\u024a\u024b\u0001\u0000\u0000\u0000\u024b\u024c\u0005"+ - "\"\u0000\u0000\u024cg\u0001\u0000\u0000\u0000\u024d\u024f\u0007\u0000"+ - "\u0000\u0000\u024e\u024d\u0001\u0000\u0000\u0000\u024e\u024f\u0001\u0000"+ - "\u0000\u0000\u024f\u0250\u0001\u0000\u0000\u0000\u0250\u0251\u0005!\u0000"+ - "\u0000\u0251i\u0001\u0000\u0000\u0000\u0252\u0253\u0005 \u0000\u0000\u0253"+ - "k\u0001\u0000\u0000\u0000\u0254\u0255\u0007\u0007\u0000\u0000\u0255m\u0001"+ - "\u0000\u0000\u0000\u0256\u0257\u0005\u0005\u0000\u0000\u0257\u0258\u0003"+ - "p8\u0000\u0258o\u0001\u0000\u0000\u0000\u0259\u025a\u0005J\u0000\u0000"+ - "\u025a\u025b\u0003\u0002\u0001\u0000\u025b\u025c\u0005K\u0000\u0000\u025c"+ - "q\u0001\u0000\u0000\u0000\u025d\u025e\u0005\r\u0000\u0000\u025e\u025f"+ - "\u0005m\u0000\u0000\u025fs\u0001\u0000\u0000\u0000\u0260\u0261\u0005\u0003"+ - "\u0000\u0000\u0261\u0264\u0005c\u0000\u0000\u0262\u0263\u0005a\u0000\u0000"+ - "\u0263\u0265\u0003<\u001e\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0264"+ - "\u0265\u0001\u0000\u0000\u0000\u0265\u026f\u0001\u0000\u0000\u0000\u0266"+ - "\u0267\u0005b\u0000\u0000\u0267\u026c\u0003v;\u0000\u0268\u0269\u0005"+ - ")\u0000\u0000\u0269\u026b\u0003v;\u0000\u026a\u0268\u0001\u0000\u0000"+ - "\u0000\u026b\u026e\u0001\u0000\u0000\u0000\u026c\u026a\u0001\u0000\u0000"+ - "\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u0270\u0001\u0000\u0000"+ - "\u0000\u026e\u026c\u0001\u0000\u0000\u0000\u026f\u0266\u0001\u0000\u0000"+ - "\u0000\u026f\u0270\u0001\u0000\u0000\u0000\u0270u\u0001\u0000\u0000\u0000"+ - "\u0271\u0272\u0003<\u001e\u0000\u0272\u0273\u0005&\u0000\u0000\u0273\u0275"+ - "\u0001\u0000\u0000\u0000\u0274\u0271\u0001\u0000\u0000\u0000\u0274\u0275"+ - "\u0001\u0000\u0000\u0000\u0275\u0276\u0001\u0000\u0000\u0000\u0276\u0277"+ - "\u0003<\u001e\u0000\u0277w\u0001\u0000\u0000\u0000\u0278\u0279\u0005\u0015"+ - "\u0000\u0000\u0279\u027a\u0003(\u0014\u0000\u027a\u027b\u0005a\u0000\u0000"+ - "\u027b\u027c\u0003>\u001f\u0000\u027cy\u0001\u0000\u0000\u0000\u027d\u027e"+ - "\u0005\u0013\u0000\u0000\u027e\u0281\u00036\u001b\u0000\u027f\u0280\u0005"+ - "#\u0000\u0000\u0280\u0282\u0003\"\u0011\u0000\u0281\u027f\u0001\u0000"+ - "\u0000\u0000\u0281\u0282\u0001\u0000\u0000\u0000\u0282{\u0001\u0000\u0000"+ - "\u0000\u0283\u0284\u0007\b\u0000\u0000\u0284\u0285\u0005{\u0000\u0000"+ - "\u0285\u0286\u0003~?\u0000\u0286\u0287\u0003\u0080@\u0000\u0287}\u0001"+ - "\u0000\u0000\u0000\u0288\u0289\u0003(\u0014\u0000\u0289\u007f\u0001\u0000"+ - "\u0000\u0000\u028a\u028b\u0005a\u0000\u0000\u028b\u0290\u0003\u0082A\u0000"+ - "\u028c\u028d\u0005)\u0000\u0000\u028d\u028f\u0003\u0082A\u0000\u028e\u028c"+ - "\u0001\u0000\u0000\u0000\u028f\u0292\u0001\u0000\u0000\u0000\u0290\u028e"+ - "\u0001\u0000\u0000\u0000\u0290\u0291\u0001\u0000\u0000\u0000\u0291\u0081"+ - "\u0001\u0000\u0000\u0000\u0292\u0290\u0001\u0000\u0000\u0000\u0293\u0294"+ - "\u0003\u0010\b\u0000\u0294\u0083\u0001\u0000\u0000\u0000\u0295\u0296\u0005"+ - "\u0012\u0000\u0000\u0296\u0299\u0003:\u001d\u0000\u0297\u0298\u0005a\u0000"+ - "\u0000\u0298\u029a\u0003:\u001d\u0000\u0299\u0297\u0001\u0000\u0000\u0000"+ - "\u0299\u029a\u0001\u0000\u0000\u0000\u029a\u02a0\u0001\u0000\u0000\u0000"+ - "\u029b\u029c\u0005]\u0000\u0000\u029c\u029d\u0003:\u001d\u0000\u029d\u029e"+ - "\u0005)\u0000\u0000\u029e\u029f\u0003:\u001d\u0000\u029f\u02a1\u0001\u0000"+ - "\u0000\u0000\u02a0\u029b\u0001\u0000\u0000\u0000\u02a0\u02a1\u0001\u0000"+ - "\u0000\u0000\u02a1\u0085\u0001\u0000\u0000\u0000\u02a2\u02a3\u0005\u0014"+ - "\u0000\u0000\u02a3\u02a4\u0003>\u001f\u0000\u02a4\u0087\u0001\u0000\u0000"+ - "\u0000\u02a5\u02a6\u0005\u001a\u0000\u0000\u02a6\u02a7\u0003\u008aE\u0000"+ - "\u02a7\u0089\u0001\u0000\u0000\u0000\u02a8\u02aa\u0003\u008cF\u0000\u02a9"+ - "\u02a8\u0001\u0000\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000\u0000\u02ab"+ - "\u02a9\u0001\u0000\u0000\u0000\u02ab\u02ac\u0001\u0000\u0000\u0000\u02ac"+ - "\u008b\u0001\u0000\u0000\u0000\u02ad\u02ae\u00052\u0000\u0000\u02ae\u02af"+ - "\u0003\u008eG\u0000\u02af\u02b0\u00059\u0000\u0000\u02b0\u008d\u0001\u0000"+ - "\u0000\u0000\u02b1\u02b2\u0006G\uffff\uffff\u0000\u02b2\u02b3\u0003\u0090"+ - "H\u0000\u02b3\u02b9\u0001\u0000\u0000\u0000\u02b4\u02b5\n\u0001\u0000"+ - "\u0000\u02b5\u02b6\u0005\u001f\u0000\u0000\u02b6\u02b8\u0003\u0090H\u0000"+ - "\u02b7\u02b4\u0001\u0000\u0000\u0000\u02b8\u02bb\u0001\u0000\u0000\u0000"+ - "\u02b9\u02b7\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000"+ - "\u02ba\u008f\u0001\u0000\u0000\u0000\u02bb\u02b9\u0001\u0000\u0000\u0000"+ - "\u02bc\u02c0\u0003\b\u0004\u0000\u02bd\u02c0\u0003L&\u0000\u02be\u02c0"+ - "\u0003J%\u0000\u02bf\u02bc\u0001\u0000\u0000\u0000\u02bf\u02bd\u0001\u0000"+ - "\u0000\u0000\u02bf\u02be\u0001\u0000\u0000\u0000\u02c0\u0091\u0001\u0000"+ - "\u0000\u0000B\u009d\u00a6\u00bf\u00cb\u00d4\u00dc\u00e1\u00e9\u00eb\u00f0"+ - "\u00f7\u00fc\u0101\u010b\u0111\u0119\u011b\u0126\u012d\u0138\u013d\u013f"+ - "\u014b\u015e\u0164\u016e\u0172\u0177\u0185\u018e\u0192\u0196\u019d\u01a1"+ - "\u01a8\u01ae\u01b5\u01bd\u01c5\u01cc\u01dd\u01e8\u01f3\u01f8\u01fc\u0200"+ - "\u020b\u0210\u0214\u0222\u022d\u023b\u0246\u0249\u024e\u0264\u026c\u026f"+ - "\u0274\u0281\u0290\u0299\u02a0\u02ab\u02b9\u02bf"; + "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+ + "\u00c6\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005"+ + "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+ + "\u00d2\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+ + "\u0005\u0005\u00d9\b\u0005\n\u0005\f\u0005\u00dc\t\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e3\b\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e8\b\u0005\u0001\u0005\u0001"+ + "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00f0"+ + "\b\u0005\n\u0005\f\u0005\u00f3\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+ + "\u00f7\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+ + "\u0003\u0006\u00fe\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+ + "\u0103\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0108\b"+ + "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001"+ + "\b\u0001\b\u0003\b\u0112\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0118"+ + "\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u0120\b\t"+ + "\n\t\f\t\u0123\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+ + "\n\u0001\n\u0003\n\u012d\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u0132\b\n"+ + "\n\n\f\n\u0135\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+ + "\u000b\u0001\u000b\u0005\u000b\u013d\b\u000b\n\u000b\f\u000b\u0140\t\u000b"+ + "\u0001\u000b\u0001\u000b\u0003\u000b\u0144\b\u000b\u0003\u000b\u0146\b"+ + "\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r"+ + "\u0001\r\u0005\r\u0150\b\r\n\r\f\r\u0153\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"+ + "\u0163\b\u0011\n\u0011\f\u0011\u0166\t\u0011\u0001\u0012\u0001\u0012\u0001"+ + "\u0012\u0003\u0012\u016b\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001"+ + "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0173\b\u0013\n\u0013\f\u0013"+ + "\u0176\t\u0013\u0001\u0013\u0003\u0013\u0179\b\u0013\u0001\u0014\u0001"+ + "\u0014\u0001\u0014\u0003\u0014\u017e\b\u0014\u0001\u0014\u0001\u0014\u0001"+ + "\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001"+ + "\u0017\u0001\u0017\u0005\u0017\u018a\b\u0017\n\u0017\f\u0017\u018d\t\u0017"+ + "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0005\u0018\u0193\b\u0018"+ + "\n\u0018\f\u0018\u0196\t\u0018\u0001\u0018\u0003\u0018\u0199\b\u0018\u0001"+ + "\u0018\u0001\u0018\u0003\u0018\u019d\b\u0018\u0001\u0019\u0001\u0019\u0001"+ + "\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u01a4\b\u001a\u0001\u001a\u0001"+ + "\u001a\u0003\u001a\u01a8\b\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0005"+ + "\u001b\u01ad\b\u001b\n\u001b\f\u001b\u01b0\t\u001b\u0001\u001c\u0001\u001c"+ + "\u0001\u001c\u0003\u001c\u01b5\b\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+ + "\u0005\u001d\u01ba\b\u001d\n\u001d\f\u001d\u01bd\t\u001d\u0001\u001e\u0001"+ + "\u001e\u0001\u001e\u0005\u001e\u01c2\b\u001e\n\u001e\f\u001e\u01c5\t\u001e"+ + "\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f\u01ca\b\u001f\n\u001f"+ + "\f\u001f\u01cd\t\u001f\u0001 \u0001 \u0001!\u0001!\u0003!\u01d3\b!\u0001"+ + "\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001"+ + "\"\u0001\"\u0001\"\u0001\"\u0005\"\u01e2\b\"\n\"\f\"\u01e5\t\"\u0001\""+ + "\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01ed\b\"\n\"\f\"\u01f0"+ + "\t\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u01f8\b\""+ + "\n\"\f\"\u01fb\t\"\u0001\"\u0001\"\u0003\"\u01ff\b\"\u0001#\u0001#\u0003"+ + "#\u0203\b#\u0001$\u0001$\u0003$\u0207\b$\u0001%\u0001%\u0001%\u0003%\u020c"+ + "\b%\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u0215"+ + "\b\'\n\'\f\'\u0218\t\'\u0001(\u0001(\u0003(\u021c\b(\u0001(\u0001(\u0003"+ + "(\u0220\b(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001+\u0001+\u0001"+ + "+\u0001+\u0005+\u022c\b+\n+\f+\u022f\t+\u0001,\u0001,\u0001,\u0001,\u0001"+ + "-\u0001-\u0001-\u0001-\u0003-\u0239\b-\u0001.\u0001.\u0001.\u0001.\u0001"+ + "/\u0001/\u0001/\u00010\u00010\u00010\u00050\u0245\b0\n0\f0\u0248\t0\u0001"+ + "1\u00011\u00011\u00011\u00012\u00012\u00013\u00013\u00033\u0252\b3\u0001"+ + "4\u00034\u0255\b4\u00014\u00014\u00015\u00035\u025a\b5\u00015\u00015\u0001"+ + "6\u00016\u00017\u00017\u00018\u00018\u00018\u00019\u00019\u00019\u0001"+ + "9\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0003;\u0270\b;\u0001"+ + ";\u0001;\u0001;\u0001;\u0005;\u0276\b;\n;\f;\u0279\t;\u0003;\u027b\b;"+ + "\u0001<\u0001<\u0001<\u0003<\u0280\b<\u0001<\u0001<\u0001=\u0001=\u0001"+ + "=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0003>\u028d\b>\u0001?\u0001"+ + "?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0005"+ + "A\u029a\bA\nA\fA\u029d\tA\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0003"+ + "C\u02a5\bC\u0001C\u0001C\u0001C\u0001C\u0001C\u0003C\u02ac\bC\u0001D\u0001"+ + "D\u0001D\u0001E\u0001E\u0001E\u0001F\u0004F\u02b5\bF\u000bF\fF\u02b6\u0001"+ + "G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001H\u0005"+ + "H\u02c3\bH\nH\fH\u02c6\tH\u0001I\u0001I\u0001I\u0003I\u02cb\bI\u0001J"+ + "\u0001J\u0001J\u0001J\u0003J\u02d1\bJ\u0001J\u0001J\u0001J\u0001J\u0000"+ + "\u0005\u0002\n\u0012\u0014\u0090K\u0000\u0002\u0004\u0006\b\n\f\u000e"+ + "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDF"+ + "HJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c"+ + "\u008e\u0090\u0092\u0094\u0000\t\u0001\u0000FG\u0001\u0000HJ\u0002\u0000"+ + "!!YY\u0001\u0000PQ\u0002\u0000))..\u0002\u00001144\u0002\u000000>>\u0002"+ + "\u0000??AE\u0002\u0000\u0011\u0011\u0019\u001a\u02f2\u0000\u0096\u0001"+ + "\u0000\u0000\u0000\u0002\u0099\u0001\u0000\u0000\u0000\u0004\u00aa\u0001"+ + "\u0000\u0000\u0000\u0006\u00c5\u0001\u0000\u0000\u0000\b\u00c7\u0001\u0000"+ + "\u0000\u0000\n\u00e7\u0001\u0000\u0000\u0000\f\u0102\u0001\u0000\u0000"+ + "\u0000\u000e\u0104\u0001\u0000\u0000\u0000\u0010\u0111\u0001\u0000\u0000"+ + "\u0000\u0012\u0117\u0001\u0000\u0000\u0000\u0014\u012c\u0001\u0000\u0000"+ + "\u0000\u0016\u0136\u0001\u0000\u0000\u0000\u0018\u0149\u0001\u0000\u0000"+ + "\u0000\u001a\u014b\u0001\u0000\u0000\u0000\u001c\u0156\u0001\u0000\u0000"+ + "\u0000\u001e\u015a\u0001\u0000\u0000\u0000 \u015c\u0001\u0000\u0000\u0000"+ + "\"\u015f\u0001\u0000\u0000\u0000$\u016a\u0001\u0000\u0000\u0000&\u016e"+ + "\u0001\u0000\u0000\u0000(\u017d\u0001\u0000\u0000\u0000*\u0181\u0001\u0000"+ + "\u0000\u0000,\u0183\u0001\u0000\u0000\u0000.\u0185\u0001\u0000\u0000\u0000"+ + "0\u018e\u0001\u0000\u0000\u00002\u019e\u0001\u0000\u0000\u00004\u01a1"+ + "\u0001\u0000\u0000\u00006\u01a9\u0001\u0000\u0000\u00008\u01b1\u0001\u0000"+ + "\u0000\u0000:\u01b6\u0001\u0000\u0000\u0000<\u01be\u0001\u0000\u0000\u0000"+ + ">\u01c6\u0001\u0000\u0000\u0000@\u01ce\u0001\u0000\u0000\u0000B\u01d2"+ + "\u0001\u0000\u0000\u0000D\u01fe\u0001\u0000\u0000\u0000F\u0202\u0001\u0000"+ + "\u0000\u0000H\u0206\u0001\u0000\u0000\u0000J\u020b\u0001\u0000\u0000\u0000"+ + "L\u020d\u0001\u0000\u0000\u0000N\u0210\u0001\u0000\u0000\u0000P\u0219"+ + "\u0001\u0000\u0000\u0000R\u0221\u0001\u0000\u0000\u0000T\u0224\u0001\u0000"+ + "\u0000\u0000V\u0227\u0001\u0000\u0000\u0000X\u0230\u0001\u0000\u0000\u0000"+ + "Z\u0234\u0001\u0000\u0000\u0000\\\u023a\u0001\u0000\u0000\u0000^\u023e"+ + "\u0001\u0000\u0000\u0000`\u0241\u0001\u0000\u0000\u0000b\u0249\u0001\u0000"+ + "\u0000\u0000d\u024d\u0001\u0000\u0000\u0000f\u0251\u0001\u0000\u0000\u0000"+ + "h\u0254\u0001\u0000\u0000\u0000j\u0259\u0001\u0000\u0000\u0000l\u025d"+ + "\u0001\u0000\u0000\u0000n\u025f\u0001\u0000\u0000\u0000p\u0261\u0001\u0000"+ + "\u0000\u0000r\u0264\u0001\u0000\u0000\u0000t\u0268\u0001\u0000\u0000\u0000"+ + "v\u026b\u0001\u0000\u0000\u0000x\u027f\u0001\u0000\u0000\u0000z\u0283"+ + "\u0001\u0000\u0000\u0000|\u0288\u0001\u0000\u0000\u0000~\u028e\u0001\u0000"+ + "\u0000\u0000\u0080\u0293\u0001\u0000\u0000\u0000\u0082\u0295\u0001\u0000"+ + "\u0000\u0000\u0084\u029e\u0001\u0000\u0000\u0000\u0086\u02a0\u0001\u0000"+ + "\u0000\u0000\u0088\u02ad\u0001\u0000\u0000\u0000\u008a\u02b0\u0001\u0000"+ + "\u0000\u0000\u008c\u02b4\u0001\u0000\u0000\u0000\u008e\u02b8\u0001\u0000"+ + "\u0000\u0000\u0090\u02bc\u0001\u0000\u0000\u0000\u0092\u02ca\u0001\u0000"+ + "\u0000\u0000\u0094\u02cc\u0001\u0000\u0000\u0000\u0096\u0097\u0003\u0002"+ + "\u0001\u0000\u0097\u0098\u0005\u0000\u0000\u0001\u0098\u0001\u0001\u0000"+ + "\u0000\u0000\u0099\u009a\u0006\u0001\uffff\uffff\u0000\u009a\u009b\u0003"+ + "\u0004\u0002\u0000\u009b\u00a1\u0001\u0000\u0000\u0000\u009c\u009d\n\u0001"+ + "\u0000\u0000\u009d\u009e\u0005 \u0000\u0000\u009e\u00a0\u0003\u0006\u0003"+ + "\u0000\u009f\u009c\u0001\u0000\u0000\u0000\u00a0\u00a3\u0001\u0000\u0000"+ + "\u0000\u00a1\u009f\u0001\u0000\u0000\u0000\u00a1\u00a2\u0001\u0000\u0000"+ + "\u0000\u00a2\u0003\u0001\u0000\u0000\u0000\u00a3\u00a1\u0001\u0000\u0000"+ + "\u0000\u00a4\u00ab\u0003p8\u0000\u00a5\u00ab\u0003&\u0013\u0000\u00a6"+ + "\u00ab\u0003 \u0010\u0000\u00a7\u00ab\u0003t:\u0000\u00a8\u00a9\u0004"+ + "\u0002\u0001\u0000\u00a9\u00ab\u00030\u0018\u0000\u00aa\u00a4\u0001\u0000"+ + "\u0000\u0000\u00aa\u00a5\u0001\u0000\u0000\u0000\u00aa\u00a6\u0001\u0000"+ + "\u0000\u0000\u00aa\u00a7\u0001\u0000\u0000\u0000\u00aa\u00a8\u0001\u0000"+ + "\u0000\u0000\u00ab\u0005\u0001\u0000\u0000\u0000\u00ac\u00c6\u00032\u0019"+ + "\u0000\u00ad\u00c6\u0003\b\u0004\u0000\u00ae\u00c6\u0003R)\u0000\u00af"+ + "\u00c6\u0003L&\u0000\u00b0\u00c6\u00034\u001a\u0000\u00b1\u00c6\u0003"+ + "N\'\u0000\u00b2\u00c6\u0003T*\u0000\u00b3\u00c6\u0003V+\u0000\u00b4\u00c6"+ + "\u0003Z-\u0000\u00b5\u00c6\u0003\\.\u0000\u00b6\u00c6\u0003v;\u0000\u00b7"+ + "\u00c6\u0003^/\u0000\u00b8\u00c6\u0003~?\u0000\u00b9\u00ba\u0004\u0003"+ + "\u0002\u0000\u00ba\u00c6\u0003|>\u0000\u00bb\u00bc\u0004\u0003\u0003\u0000"+ + "\u00bc\u00c6\u0003z=\u0000\u00bd\u00be\u0004\u0003\u0004\u0000\u00be\u00c6"+ + "\u0003\u0086C\u0000\u00bf\u00c0\u0004\u0003\u0005\u0000\u00c0\u00c6\u0003"+ + "\u0088D\u0000\u00c1\u00c2\u0004\u0003\u0006\u0000\u00c2\u00c6\u0003\u008a"+ + "E\u0000\u00c3\u00c4\u0004\u0003\u0007\u0000\u00c4\u00c6\u0003\u0094J\u0000"+ + "\u00c5\u00ac\u0001\u0000\u0000\u0000\u00c5\u00ad\u0001\u0000\u0000\u0000"+ + "\u00c5\u00ae\u0001\u0000\u0000\u0000\u00c5\u00af\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b0\u0001\u0000\u0000\u0000\u00c5\u00b1\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b2\u0001\u0000\u0000\u0000\u00c5\u00b3\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b4\u0001\u0000\u0000\u0000\u00c5\u00b5\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b6\u0001\u0000\u0000\u0000\u00c5\u00b7\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b8\u0001\u0000\u0000\u0000\u00c5\u00b9\u0001\u0000\u0000\u0000"+ + "\u00c5\u00bb\u0001\u0000\u0000\u0000\u00c5\u00bd\u0001\u0000\u0000\u0000"+ + "\u00c5\u00bf\u0001\u0000\u0000\u0000\u00c5\u00c1\u0001\u0000\u0000\u0000"+ + "\u00c5\u00c3\u0001\u0000\u0000\u0000\u00c6\u0007\u0001\u0000\u0000\u0000"+ + "\u00c7\u00c8\u0005\u0010\u0000\u0000\u00c8\u00c9\u0003\n\u0005\u0000\u00c9"+ + "\t\u0001\u0000\u0000\u0000\u00ca\u00cb\u0006\u0005\uffff\uffff\u0000\u00cb"+ + "\u00cc\u00057\u0000\u0000\u00cc\u00e8\u0003\n\u0005\b\u00cd\u00e8\u0003"+ + "\u0010\b\u0000\u00ce\u00e8\u0003\f\u0006\u0000\u00cf\u00d1\u0003\u0010"+ + "\b\u0000\u00d0\u00d2\u00057\u0000\u0000\u00d1\u00d0\u0001\u0000\u0000"+ + "\u0000\u00d1\u00d2\u0001\u0000\u0000\u0000\u00d2\u00d3\u0001\u0000\u0000"+ + "\u0000\u00d3\u00d4\u00052\u0000\u0000\u00d4\u00d5\u00056\u0000\u0000\u00d5"+ + "\u00da\u0003\u0010\b\u0000\u00d6\u00d7\u0005-\u0000\u0000\u00d7\u00d9"+ + "\u0003\u0010\b\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d9\u00dc\u0001"+ + "\u0000\u0000\u0000\u00da\u00d8\u0001\u0000\u0000\u0000\u00da\u00db\u0001"+ + "\u0000\u0000\u0000\u00db\u00dd\u0001\u0000\u0000\u0000\u00dc\u00da\u0001"+ + "\u0000\u0000\u0000\u00dd\u00de\u0005=\u0000\u0000\u00de\u00e8\u0001\u0000"+ + "\u0000\u0000\u00df\u00e0\u0003\u0010\b\u0000\u00e0\u00e2\u00053\u0000"+ + "\u0000\u00e1\u00e3\u00057\u0000\u0000\u00e2\u00e1\u0001\u0000\u0000\u0000"+ + "\u00e2\u00e3\u0001\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000"+ + "\u00e4\u00e5\u00058\u0000\u0000\u00e5\u00e8\u0001\u0000\u0000\u0000\u00e6"+ + "\u00e8\u0003\u000e\u0007\u0000\u00e7\u00ca\u0001\u0000\u0000\u0000\u00e7"+ + "\u00cd\u0001\u0000\u0000\u0000\u00e7\u00ce\u0001\u0000\u0000\u0000\u00e7"+ + "\u00cf\u0001\u0000\u0000\u0000\u00e7\u00df\u0001\u0000\u0000\u0000\u00e7"+ + "\u00e6\u0001\u0000\u0000\u0000\u00e8\u00f1\u0001\u0000\u0000\u0000\u00e9"+ + "\u00ea\n\u0005\u0000\u0000\u00ea\u00eb\u0005(\u0000\u0000\u00eb\u00f0"+ + "\u0003\n\u0005\u0006\u00ec\u00ed\n\u0004\u0000\u0000\u00ed\u00ee\u0005"+ + ":\u0000\u0000\u00ee\u00f0\u0003\n\u0005\u0005\u00ef\u00e9\u0001\u0000"+ + "\u0000\u0000\u00ef\u00ec\u0001\u0000\u0000\u0000\u00f0\u00f3\u0001\u0000"+ + "\u0000\u0000\u00f1\u00ef\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000"+ + "\u0000\u0000\u00f2\u000b\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000"+ + "\u0000\u0000\u00f4\u00f6\u0003\u0010\b\u0000\u00f5\u00f7\u00057\u0000"+ + "\u0000\u00f6\u00f5\u0001\u0000\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000"+ + "\u0000\u00f7\u00f8\u0001\u0000\u0000\u0000\u00f8\u00f9\u00055\u0000\u0000"+ + "\u00f9\u00fa\u0003l6\u0000\u00fa\u0103\u0001\u0000\u0000\u0000\u00fb\u00fd"+ + "\u0003\u0010\b\u0000\u00fc\u00fe\u00057\u0000\u0000\u00fd\u00fc\u0001"+ + "\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u00ff\u0001"+ + "\u0000\u0000\u0000\u00ff\u0100\u0005<\u0000\u0000\u0100\u0101\u0003l6"+ + "\u0000\u0101\u0103\u0001\u0000\u0000\u0000\u0102\u00f4\u0001\u0000\u0000"+ + "\u0000\u0102\u00fb\u0001\u0000\u0000\u0000\u0103\r\u0001\u0000\u0000\u0000"+ + "\u0104\u0107\u0003:\u001d\u0000\u0105\u0106\u0005+\u0000\u0000\u0106\u0108"+ + "\u0003\u001e\u000f\u0000\u0107\u0105\u0001\u0000\u0000\u0000\u0107\u0108"+ + "\u0001\u0000\u0000\u0000\u0108\u0109\u0001\u0000\u0000\u0000\u0109\u010a"+ + "\u0005,\u0000\u0000\u010a\u010b\u0003D\"\u0000\u010b\u000f\u0001\u0000"+ + "\u0000\u0000\u010c\u0112\u0003\u0012\t\u0000\u010d\u010e\u0003\u0012\t"+ + "\u0000\u010e\u010f\u0003n7\u0000\u010f\u0110\u0003\u0012\t\u0000\u0110"+ + "\u0112\u0001\u0000\u0000\u0000\u0111\u010c\u0001\u0000\u0000\u0000\u0111"+ + "\u010d\u0001\u0000\u0000\u0000\u0112\u0011\u0001\u0000\u0000\u0000\u0113"+ + "\u0114\u0006\t\uffff\uffff\u0000\u0114\u0118\u0003\u0014\n\u0000\u0115"+ + "\u0116\u0007\u0000\u0000\u0000\u0116\u0118\u0003\u0012\t\u0003\u0117\u0113"+ + "\u0001\u0000\u0000\u0000\u0117\u0115\u0001\u0000\u0000\u0000\u0118\u0121"+ + "\u0001\u0000\u0000\u0000\u0119\u011a\n\u0002\u0000\u0000\u011a\u011b\u0007"+ + "\u0001\u0000\u0000\u011b\u0120\u0003\u0012\t\u0003\u011c\u011d\n\u0001"+ + "\u0000\u0000\u011d\u011e\u0007\u0000\u0000\u0000\u011e\u0120\u0003\u0012"+ + "\t\u0002\u011f\u0119\u0001\u0000\u0000\u0000\u011f\u011c\u0001\u0000\u0000"+ + "\u0000\u0120\u0123\u0001\u0000\u0000\u0000\u0121\u011f\u0001\u0000\u0000"+ + "\u0000\u0121\u0122\u0001\u0000\u0000\u0000\u0122\u0013\u0001\u0000\u0000"+ + "\u0000\u0123\u0121\u0001\u0000\u0000\u0000\u0124\u0125\u0006\n\uffff\uffff"+ + "\u0000\u0125\u012d\u0003D\"\u0000\u0126\u012d\u0003:\u001d\u0000\u0127"+ + "\u012d\u0003\u0016\u000b\u0000\u0128\u0129\u00056\u0000\u0000\u0129\u012a"+ + "\u0003\n\u0005\u0000\u012a\u012b\u0005=\u0000\u0000\u012b\u012d\u0001"+ + "\u0000\u0000\u0000\u012c\u0124\u0001\u0000\u0000\u0000\u012c\u0126\u0001"+ + "\u0000\u0000\u0000\u012c\u0127\u0001\u0000\u0000\u0000\u012c\u0128\u0001"+ + "\u0000\u0000\u0000\u012d\u0133\u0001\u0000\u0000\u0000\u012e\u012f\n\u0001"+ + "\u0000\u0000\u012f\u0130\u0005+\u0000\u0000\u0130\u0132\u0003\u001e\u000f"+ + "\u0000\u0131\u012e\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000"+ + "\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000"+ + "\u0000\u0134\u0015\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000"+ + "\u0000\u0136\u0137\u0003\u0018\f\u0000\u0137\u0145\u00056\u0000\u0000"+ + "\u0138\u0146\u0005H\u0000\u0000\u0139\u013e\u0003\n\u0005\u0000\u013a"+ + "\u013b\u0005-\u0000\u0000\u013b\u013d\u0003\n\u0005\u0000\u013c\u013a"+ + "\u0001\u0000\u0000\u0000\u013d\u0140\u0001\u0000\u0000\u0000\u013e\u013c"+ + "\u0001\u0000\u0000\u0000\u013e\u013f\u0001\u0000\u0000\u0000\u013f\u0143"+ + "\u0001\u0000\u0000\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u0142"+ + "\u0005-\u0000\u0000\u0142\u0144\u0003\u001a\r\u0000\u0143\u0141\u0001"+ + "\u0000\u0000\u0000\u0143\u0144\u0001\u0000\u0000\u0000\u0144\u0146\u0001"+ + "\u0000\u0000\u0000\u0145\u0138\u0001\u0000\u0000\u0000\u0145\u0139\u0001"+ + "\u0000\u0000\u0000\u0145\u0146\u0001\u0000\u0000\u0000\u0146\u0147\u0001"+ + "\u0000\u0000\u0000\u0147\u0148\u0005=\u0000\u0000\u0148\u0017\u0001\u0000"+ + "\u0000\u0000\u0149\u014a\u0003H$\u0000\u014a\u0019\u0001\u0000\u0000\u0000"+ + "\u014b\u014c\u0005K\u0000\u0000\u014c\u0151\u0003\u001c\u000e\u0000\u014d"+ + "\u014e\u0005-\u0000\u0000\u014e\u0150\u0003\u001c\u000e\u0000\u014f\u014d"+ + "\u0001\u0000\u0000\u0000\u0150\u0153\u0001\u0000\u0000\u0000\u0151\u014f"+ + "\u0001\u0000\u0000\u0000\u0151\u0152\u0001\u0000\u0000\u0000\u0152\u0154"+ + "\u0001\u0000\u0000\u0000\u0153\u0151\u0001\u0000\u0000\u0000\u0154\u0155"+ + "\u0005L\u0000\u0000\u0155\u001b\u0001\u0000\u0000\u0000\u0156\u0157\u0003"+ + "l6\u0000\u0157\u0158\u0005,\u0000\u0000\u0158\u0159\u0003D\"\u0000\u0159"+ + "\u001d\u0001\u0000\u0000\u0000\u015a\u015b\u0003@ \u0000\u015b\u001f\u0001"+ + "\u0000\u0000\u0000\u015c\u015d\u0005\f\u0000\u0000\u015d\u015e\u0003\""+ + "\u0011\u0000\u015e!\u0001\u0000\u0000\u0000\u015f\u0164\u0003$\u0012\u0000"+ + "\u0160\u0161\u0005-\u0000\u0000\u0161\u0163\u0003$\u0012\u0000\u0162\u0160"+ + "\u0001\u0000\u0000\u0000\u0163\u0166\u0001\u0000\u0000\u0000\u0164\u0162"+ + "\u0001\u0000\u0000\u0000\u0164\u0165\u0001\u0000\u0000\u0000\u0165#\u0001"+ + "\u0000\u0000\u0000\u0166\u0164\u0001\u0000\u0000\u0000\u0167\u0168\u0003"+ + ":\u001d\u0000\u0168\u0169\u0005*\u0000\u0000\u0169\u016b\u0001\u0000\u0000"+ + "\u0000\u016a\u0167\u0001\u0000\u0000\u0000\u016a\u016b\u0001\u0000\u0000"+ + "\u0000\u016b\u016c\u0001\u0000\u0000\u0000\u016c\u016d\u0003\n\u0005\u0000"+ + "\u016d%\u0001\u0000\u0000\u0000\u016e\u016f\u0005\u0006\u0000\u0000\u016f"+ + "\u0174\u0003(\u0014\u0000\u0170\u0171\u0005-\u0000\u0000\u0171\u0173\u0003"+ + "(\u0014\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176\u0001\u0000"+ + "\u0000\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0174\u0175\u0001\u0000"+ + "\u0000\u0000\u0175\u0178\u0001\u0000\u0000\u0000\u0176\u0174\u0001\u0000"+ + "\u0000\u0000\u0177\u0179\u0003.\u0017\u0000\u0178\u0177\u0001\u0000\u0000"+ + "\u0000\u0178\u0179\u0001\u0000\u0000\u0000\u0179\'\u0001\u0000\u0000\u0000"+ + "\u017a\u017b\u0003*\u0015\u0000\u017b\u017c\u0005,\u0000\u0000\u017c\u017e"+ + "\u0001\u0000\u0000\u0000\u017d\u017a\u0001\u0000\u0000\u0000\u017d\u017e"+ + "\u0001\u0000\u0000\u0000\u017e\u017f\u0001\u0000\u0000\u0000\u017f\u0180"+ + "\u0003,\u0016\u0000\u0180)\u0001\u0000\u0000\u0000\u0181\u0182\u0007\u0002"+ + "\u0000\u0000\u0182+\u0001\u0000\u0000\u0000\u0183\u0184\u0007\u0002\u0000"+ + "\u0000\u0184-\u0001\u0000\u0000\u0000\u0185\u0186\u0005X\u0000\u0000\u0186"+ + "\u018b\u0005Y\u0000\u0000\u0187\u0188\u0005-\u0000\u0000\u0188\u018a\u0005"+ + "Y\u0000\u0000\u0189\u0187\u0001\u0000\u0000\u0000\u018a\u018d\u0001\u0000"+ + "\u0000\u0000\u018b\u0189\u0001\u0000\u0000\u0000\u018b\u018c\u0001\u0000"+ + "\u0000\u0000\u018c/\u0001\u0000\u0000\u0000\u018d\u018b\u0001\u0000\u0000"+ + "\u0000\u018e\u018f\u0005\u0016\u0000\u0000\u018f\u0194\u0003(\u0014\u0000"+ + "\u0190\u0191\u0005-\u0000\u0000\u0191\u0193\u0003(\u0014\u0000\u0192\u0190"+ + "\u0001\u0000\u0000\u0000\u0193\u0196\u0001\u0000\u0000\u0000\u0194\u0192"+ + "\u0001\u0000\u0000\u0000\u0194\u0195\u0001\u0000\u0000\u0000\u0195\u0198"+ + "\u0001\u0000\u0000\u0000\u0196\u0194\u0001\u0000\u0000\u0000\u0197\u0199"+ + "\u00036\u001b\u0000\u0198\u0197\u0001\u0000\u0000\u0000\u0198\u0199\u0001"+ + "\u0000\u0000\u0000\u0199\u019c\u0001\u0000\u0000\u0000\u019a\u019b\u0005"+ + "$\u0000\u0000\u019b\u019d\u0003\"\u0011\u0000\u019c\u019a\u0001\u0000"+ + "\u0000\u0000\u019c\u019d\u0001\u0000\u0000\u0000\u019d1\u0001\u0000\u0000"+ + "\u0000\u019e\u019f\u0005\u0004\u0000\u0000\u019f\u01a0\u0003\"\u0011\u0000"+ + "\u01a03\u0001\u0000\u0000\u0000\u01a1\u01a3\u0005\u000f\u0000\u0000\u01a2"+ + "\u01a4\u00036\u001b\u0000\u01a3\u01a2\u0001\u0000\u0000\u0000\u01a3\u01a4"+ + "\u0001\u0000\u0000\u0000\u01a4\u01a7\u0001\u0000\u0000\u0000\u01a5\u01a6"+ + "\u0005$\u0000\u0000\u01a6\u01a8\u0003\"\u0011\u0000\u01a7\u01a5\u0001"+ + "\u0000\u0000\u0000\u01a7\u01a8\u0001\u0000\u0000\u0000\u01a85\u0001\u0000"+ + "\u0000\u0000\u01a9\u01ae\u00038\u001c\u0000\u01aa\u01ab\u0005-\u0000\u0000"+ + "\u01ab\u01ad\u00038\u001c\u0000\u01ac\u01aa\u0001\u0000\u0000\u0000\u01ad"+ + "\u01b0\u0001\u0000\u0000\u0000\u01ae\u01ac\u0001\u0000\u0000\u0000\u01ae"+ + "\u01af\u0001\u0000\u0000\u0000\u01af7\u0001\u0000\u0000\u0000\u01b0\u01ae"+ + "\u0001\u0000\u0000\u0000\u01b1\u01b4\u0003$\u0012\u0000\u01b2\u01b3\u0005"+ + "\u0010\u0000\u0000\u01b3\u01b5\u0003\n\u0005\u0000\u01b4\u01b2\u0001\u0000"+ + "\u0000\u0000\u01b4\u01b5\u0001\u0000\u0000\u0000\u01b59\u0001\u0000\u0000"+ + "\u0000\u01b6\u01bb\u0003H$\u0000\u01b7\u01b8\u0005/\u0000\u0000\u01b8"+ + "\u01ba\u0003H$\u0000\u01b9\u01b7\u0001\u0000\u0000\u0000\u01ba\u01bd\u0001"+ + "\u0000\u0000\u0000\u01bb\u01b9\u0001\u0000\u0000\u0000\u01bb\u01bc\u0001"+ + "\u0000\u0000\u0000\u01bc;\u0001\u0000\u0000\u0000\u01bd\u01bb\u0001\u0000"+ + "\u0000\u0000\u01be\u01c3\u0003B!\u0000\u01bf\u01c0\u0005/\u0000\u0000"+ + "\u01c0\u01c2\u0003B!\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c2\u01c5"+ + "\u0001\u0000\u0000\u0000\u01c3\u01c1\u0001\u0000\u0000\u0000\u01c3\u01c4"+ + "\u0001\u0000\u0000\u0000\u01c4=\u0001\u0000\u0000\u0000\u01c5\u01c3\u0001"+ + "\u0000\u0000\u0000\u01c6\u01cb\u0003<\u001e\u0000\u01c7\u01c8\u0005-\u0000"+ + "\u0000\u01c8\u01ca\u0003<\u001e\u0000\u01c9\u01c7\u0001\u0000\u0000\u0000"+ + "\u01ca\u01cd\u0001\u0000\u0000\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000"+ + "\u01cb\u01cc\u0001\u0000\u0000\u0000\u01cc?\u0001\u0000\u0000\u0000\u01cd"+ + "\u01cb\u0001\u0000\u0000\u0000\u01ce\u01cf\u0007\u0003\u0000\u0000\u01cf"+ + "A\u0001\u0000\u0000\u0000\u01d0\u01d3\u0005]\u0000\u0000\u01d1\u01d3\u0003"+ + "F#\u0000\u01d2\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d1\u0001\u0000\u0000"+ + "\u0000\u01d3C\u0001\u0000\u0000\u0000\u01d4\u01ff\u00058\u0000\u0000\u01d5"+ + "\u01d6\u0003j5\u0000\u01d6\u01d7\u0005P\u0000\u0000\u01d7\u01ff\u0001"+ + "\u0000\u0000\u0000\u01d8\u01ff\u0003h4\u0000\u01d9\u01ff\u0003j5\u0000"+ + "\u01da\u01ff\u0003d2\u0000\u01db\u01ff\u0003F#\u0000\u01dc\u01ff\u0003"+ + "l6\u0000\u01dd\u01de\u0005N\u0000\u0000\u01de\u01e3\u0003f3\u0000\u01df"+ + "\u01e0\u0005-\u0000\u0000\u01e0\u01e2\u0003f3\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"+ + "O\u0000\u0000\u01e7\u01ff\u0001\u0000\u0000\u0000\u01e8\u01e9\u0005N\u0000"+ + "\u0000\u01e9\u01ee\u0003d2\u0000\u01ea\u01eb\u0005-\u0000\u0000\u01eb"+ + "\u01ed\u0003d2\u0000\u01ec\u01ea\u0001\u0000\u0000\u0000\u01ed\u01f0\u0001"+ + "\u0000\u0000\u0000\u01ee\u01ec\u0001\u0000\u0000\u0000\u01ee\u01ef\u0001"+ + "\u0000\u0000\u0000\u01ef\u01f1\u0001\u0000\u0000\u0000\u01f0\u01ee\u0001"+ + "\u0000\u0000\u0000\u01f1\u01f2\u0005O\u0000\u0000\u01f2\u01ff\u0001\u0000"+ + "\u0000\u0000\u01f3\u01f4\u0005N\u0000\u0000\u01f4\u01f9\u0003l6\u0000"+ + "\u01f5\u01f6\u0005-\u0000\u0000\u01f6\u01f8\u0003l6\u0000\u01f7\u01f5"+ + "\u0001\u0000\u0000\u0000\u01f8\u01fb\u0001\u0000\u0000\u0000\u01f9\u01f7"+ + "\u0001\u0000\u0000\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01fa\u01fc"+ + "\u0001\u0000\u0000\u0000\u01fb\u01f9\u0001\u0000\u0000\u0000\u01fc\u01fd"+ + "\u0005O\u0000\u0000\u01fd\u01ff\u0001\u0000\u0000\u0000\u01fe\u01d4\u0001"+ + "\u0000\u0000\u0000\u01fe\u01d5\u0001\u0000\u0000\u0000\u01fe\u01d8\u0001"+ + "\u0000\u0000\u0000\u01fe\u01d9\u0001\u0000\u0000\u0000\u01fe\u01da\u0001"+ + "\u0000\u0000\u0000\u01fe\u01db\u0001\u0000\u0000\u0000\u01fe\u01dc\u0001"+ + "\u0000\u0000\u0000\u01fe\u01dd\u0001\u0000\u0000\u0000\u01fe\u01e8\u0001"+ + "\u0000\u0000\u0000\u01fe\u01f3\u0001\u0000\u0000\u0000\u01ffE\u0001\u0000"+ + "\u0000\u0000\u0200\u0203\u0005;\u0000\u0000\u0201\u0203\u0005M\u0000\u0000"+ + "\u0202\u0200\u0001\u0000\u0000\u0000\u0202\u0201\u0001\u0000\u0000\u0000"+ + "\u0203G\u0001\u0000\u0000\u0000\u0204\u0207\u0003@ \u0000\u0205\u0207"+ + "\u0003F#\u0000\u0206\u0204\u0001\u0000\u0000\u0000\u0206\u0205\u0001\u0000"+ + "\u0000\u0000\u0207I\u0001\u0000\u0000\u0000\u0208\u020c\u0003l6\u0000"+ + "\u0209\u020a\u0004%\r\u0000\u020a\u020c\u0003F#\u0000\u020b\u0208\u0001"+ + "\u0000\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020cK\u0001\u0000"+ + "\u0000\u0000\u020d\u020e\u0005\t\u0000\u0000\u020e\u020f\u0005\"\u0000"+ + "\u0000\u020fM\u0001\u0000\u0000\u0000\u0210\u0211\u0005\u000e\u0000\u0000"+ + "\u0211\u0216\u0003P(\u0000\u0212\u0213\u0005-\u0000\u0000\u0213\u0215"+ + "\u0003P(\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0215\u0218\u0001\u0000"+ + "\u0000\u0000\u0216\u0214\u0001\u0000\u0000\u0000\u0216\u0217\u0001\u0000"+ + "\u0000\u0000\u0217O\u0001\u0000\u0000\u0000\u0218\u0216\u0001\u0000\u0000"+ + "\u0000\u0219\u021b\u0003\n\u0005\u0000\u021a\u021c\u0007\u0004\u0000\u0000"+ + "\u021b\u021a\u0001\u0000\u0000\u0000\u021b\u021c\u0001\u0000\u0000\u0000"+ + "\u021c\u021f\u0001\u0000\u0000\u0000\u021d\u021e\u00059\u0000\u0000\u021e"+ + "\u0220\u0007\u0005\u0000\u0000\u021f\u021d\u0001\u0000\u0000\u0000\u021f"+ + "\u0220\u0001\u0000\u0000\u0000\u0220Q\u0001\u0000\u0000\u0000\u0221\u0222"+ + "\u0005\b\u0000\u0000\u0222\u0223\u0003>\u001f\u0000\u0223S\u0001\u0000"+ + "\u0000\u0000\u0224\u0225\u0005\u0002\u0000\u0000\u0225\u0226\u0003>\u001f"+ + "\u0000\u0226U\u0001\u0000\u0000\u0000\u0227\u0228\u0005\u000b\u0000\u0000"+ + "\u0228\u022d\u0003X,\u0000\u0229\u022a\u0005-\u0000\u0000\u022a\u022c"+ + "\u0003X,\u0000\u022b\u0229\u0001\u0000\u0000\u0000\u022c\u022f\u0001\u0000"+ + "\u0000\u0000\u022d\u022b\u0001\u0000\u0000\u0000\u022d\u022e\u0001\u0000"+ + "\u0000\u0000\u022eW\u0001\u0000\u0000\u0000\u022f\u022d\u0001\u0000\u0000"+ + "\u0000\u0230\u0231\u0003<\u001e\u0000\u0231\u0232\u0005\'\u0000\u0000"+ + "\u0232\u0233\u0003<\u001e\u0000\u0233Y\u0001\u0000\u0000\u0000\u0234\u0235"+ + "\u0005\u0001\u0000\u0000\u0235\u0236\u0003\u0014\n\u0000\u0236\u0238\u0003"+ + "l6\u0000\u0237\u0239\u0003`0\u0000\u0238\u0237\u0001\u0000\u0000\u0000"+ + "\u0238\u0239\u0001\u0000\u0000\u0000\u0239[\u0001\u0000\u0000\u0000\u023a"+ + "\u023b\u0005\u0007\u0000\u0000\u023b\u023c\u0003\u0014\n\u0000\u023c\u023d"+ + "\u0003l6\u0000\u023d]\u0001\u0000\u0000\u0000\u023e\u023f\u0005\n\u0000"+ + "\u0000\u023f\u0240\u0003:\u001d\u0000\u0240_\u0001\u0000\u0000\u0000\u0241"+ + "\u0246\u0003b1\u0000\u0242\u0243\u0005-\u0000\u0000\u0243\u0245\u0003"+ + "b1\u0000\u0244\u0242\u0001\u0000\u0000\u0000\u0245\u0248\u0001\u0000\u0000"+ + "\u0000\u0246\u0244\u0001\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000"+ + "\u0000\u0247a\u0001\u0000\u0000\u0000\u0248\u0246\u0001\u0000\u0000\u0000"+ + "\u0249\u024a\u0003@ \u0000\u024a\u024b\u0005*\u0000\u0000\u024b\u024c"+ + "\u0003D\"\u0000\u024cc\u0001\u0000\u0000\u0000\u024d\u024e\u0007\u0006"+ + "\u0000\u0000\u024ee\u0001\u0000\u0000\u0000\u024f\u0252\u0003h4\u0000"+ + "\u0250\u0252\u0003j5\u0000\u0251\u024f\u0001\u0000\u0000\u0000\u0251\u0250"+ + "\u0001\u0000\u0000\u0000\u0252g\u0001\u0000\u0000\u0000\u0253\u0255\u0007"+ + "\u0000\u0000\u0000\u0254\u0253\u0001\u0000\u0000\u0000\u0254\u0255\u0001"+ + "\u0000\u0000\u0000\u0255\u0256\u0001\u0000\u0000\u0000\u0256\u0257\u0005"+ + "#\u0000\u0000\u0257i\u0001\u0000\u0000\u0000\u0258\u025a\u0007\u0000\u0000"+ + "\u0000\u0259\u0258\u0001\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000"+ + "\u0000\u025a\u025b\u0001\u0000\u0000\u0000\u025b\u025c\u0005\"\u0000\u0000"+ + "\u025ck\u0001\u0000\u0000\u0000\u025d\u025e\u0005!\u0000\u0000\u025em"+ + "\u0001\u0000\u0000\u0000\u025f\u0260\u0007\u0007\u0000\u0000\u0260o\u0001"+ + "\u0000\u0000\u0000\u0261\u0262\u0005\u0005\u0000\u0000\u0262\u0263\u0003"+ + "r9\u0000\u0263q\u0001\u0000\u0000\u0000\u0264\u0265\u0005N\u0000\u0000"+ + "\u0265\u0266\u0003\u0002\u0001\u0000\u0266\u0267\u0005O\u0000\u0000\u0267"+ + "s\u0001\u0000\u0000\u0000\u0268\u0269\u0005\r\u0000\u0000\u0269\u026a"+ + "\u0005n\u0000\u0000\u026au\u0001\u0000\u0000\u0000\u026b\u026c\u0005\u0003"+ + "\u0000\u0000\u026c\u026f\u0005d\u0000\u0000\u026d\u026e\u0005%\u0000\u0000"+ + "\u026e\u0270\u0003<\u001e\u0000\u026f\u026d\u0001\u0000\u0000\u0000\u026f"+ + "\u0270\u0001\u0000\u0000\u0000\u0270\u027a\u0001\u0000\u0000\u0000\u0271"+ + "\u0272\u0005&\u0000\u0000\u0272\u0277\u0003x<\u0000\u0273\u0274\u0005"+ + "-\u0000\u0000\u0274\u0276\u0003x<\u0000\u0275\u0273\u0001\u0000\u0000"+ + "\u0000\u0276\u0279\u0001\u0000\u0000\u0000\u0277\u0275\u0001\u0000\u0000"+ + "\u0000\u0277\u0278\u0001\u0000\u0000\u0000\u0278\u027b\u0001\u0000\u0000"+ + "\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u027a\u0271\u0001\u0000\u0000"+ + "\u0000\u027a\u027b\u0001\u0000\u0000\u0000\u027bw\u0001\u0000\u0000\u0000"+ + "\u027c\u027d\u0003<\u001e\u0000\u027d\u027e\u0005*\u0000\u0000\u027e\u0280"+ + "\u0001\u0000\u0000\u0000\u027f\u027c\u0001\u0000\u0000\u0000\u027f\u0280"+ + "\u0001\u0000\u0000\u0000\u0280\u0281\u0001\u0000\u0000\u0000\u0281\u0282"+ + "\u0003<\u001e\u0000\u0282y\u0001\u0000\u0000\u0000\u0283\u0284\u0005\u0015"+ + "\u0000\u0000\u0284\u0285\u0003(\u0014\u0000\u0285\u0286\u0005%\u0000\u0000"+ + "\u0286\u0287\u0003>\u001f\u0000\u0287{\u0001\u0000\u0000\u0000\u0288\u0289"+ + "\u0005\u0013\u0000\u0000\u0289\u028c\u00036\u001b\u0000\u028a\u028b\u0005"+ + "$\u0000\u0000\u028b\u028d\u0003\"\u0011\u0000\u028c\u028a\u0001\u0000"+ + "\u0000\u0000\u028c\u028d\u0001\u0000\u0000\u0000\u028d}\u0001\u0000\u0000"+ + "\u0000\u028e\u028f\u0007\b\u0000\u0000\u028f\u0290\u0005|\u0000\u0000"+ + "\u0290\u0291\u0003\u0080@\u0000\u0291\u0292\u0003\u0082A\u0000\u0292\u007f"+ + "\u0001\u0000\u0000\u0000\u0293\u0294\u0003(\u0014\u0000\u0294\u0081\u0001"+ + "\u0000\u0000\u0000\u0295\u0296\u0005%\u0000\u0000\u0296\u029b\u0003\u0084"+ + "B\u0000\u0297\u0298\u0005-\u0000\u0000\u0298\u029a\u0003\u0084B\u0000"+ + "\u0299\u0297\u0001\u0000\u0000\u0000\u029a\u029d\u0001\u0000\u0000\u0000"+ + "\u029b\u0299\u0001\u0000\u0000\u0000\u029b\u029c\u0001\u0000\u0000\u0000"+ + "\u029c\u0083\u0001\u0000\u0000\u0000\u029d\u029b\u0001\u0000\u0000\u0000"+ + "\u029e\u029f\u0003\u0010\b\u0000\u029f\u0085\u0001\u0000\u0000\u0000\u02a0"+ + "\u02a1\u0005\u0012\u0000\u0000\u02a1\u02a4\u0003:\u001d\u0000\u02a2\u02a3"+ + "\u0005%\u0000\u0000\u02a3\u02a5\u0003:\u001d\u0000\u02a4\u02a2\u0001\u0000"+ + "\u0000\u0000\u02a4\u02a5\u0001\u0000\u0000\u0000\u02a5\u02ab\u0001\u0000"+ + "\u0000\u0000\u02a6\u02a7\u0005\'\u0000\u0000\u02a7\u02a8\u0003:\u001d"+ + "\u0000\u02a8\u02a9\u0005-\u0000\u0000\u02a9\u02aa\u0003:\u001d\u0000\u02aa"+ + "\u02ac\u0001\u0000\u0000\u0000\u02ab\u02a6\u0001\u0000\u0000\u0000\u02ab"+ + "\u02ac\u0001\u0000\u0000\u0000\u02ac\u0087\u0001\u0000\u0000\u0000\u02ad"+ + "\u02ae\u0005\u0014\u0000\u0000\u02ae\u02af\u0003>\u001f\u0000\u02af\u0089"+ + "\u0001\u0000\u0000\u0000\u02b0\u02b1\u0005\u001b\u0000\u0000\u02b1\u02b2"+ + "\u0003\u008cF\u0000\u02b2\u008b\u0001\u0000\u0000\u0000\u02b3\u02b5\u0003"+ + "\u008eG\u0000\u02b4\u02b3\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000"+ + "\u0000\u0000\u02b6\u02b4\u0001\u0000\u0000\u0000\u02b6\u02b7\u0001\u0000"+ + "\u0000\u0000\u02b7\u008d\u0001\u0000\u0000\u0000\u02b8\u02b9\u00056\u0000"+ + "\u0000\u02b9\u02ba\u0003\u0090H\u0000\u02ba\u02bb\u0005=\u0000\u0000\u02bb"+ + "\u008f\u0001\u0000\u0000\u0000\u02bc\u02bd\u0006H\uffff\uffff\u0000\u02bd"+ + "\u02be\u0003\u0092I\u0000\u02be\u02c4\u0001\u0000\u0000\u0000\u02bf\u02c0"+ + "\n\u0001\u0000\u0000\u02c0\u02c1\u0005 \u0000\u0000\u02c1\u02c3\u0003"+ + "\u0092I\u0000\u02c2\u02bf\u0001\u0000\u0000\u0000\u02c3\u02c6\u0001\u0000"+ + "\u0000\u0000\u02c4\u02c2\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000"+ + "\u0000\u0000\u02c5\u0091\u0001\u0000\u0000\u0000\u02c6\u02c4\u0001\u0000"+ + "\u0000\u0000\u02c7\u02cb\u0003\b\u0004\u0000\u02c8\u02cb\u0003N\'\u0000"+ + "\u02c9\u02cb\u0003L&\u0000\u02ca\u02c7\u0001\u0000\u0000\u0000\u02ca\u02c8"+ + "\u0001\u0000\u0000\u0000\u02ca\u02c9\u0001\u0000\u0000\u0000\u02cb\u0093"+ + "\u0001\u0000\u0000\u0000\u02cc\u02cd\u0005\u0017\u0000\u0000\u02cd\u02d0"+ + "\u0003J%\u0000\u02ce\u02cf\u0005%\u0000\u0000\u02cf\u02d1\u0003\"\u0011"+ + "\u0000\u02d0\u02ce\u0001\u0000\u0000\u0000\u02d0\u02d1\u0001\u0000\u0000"+ + "\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005&\u0000\u0000"+ + "\u02d3\u02d4\u0003J%\u0000\u02d4\u0095\u0001\u0000\u0000\u0000D\u00a1"+ + "\u00aa\u00c5\u00d1\u00da\u00e2\u00e7\u00ef\u00f1\u00f6\u00fd\u0102\u0107"+ + "\u0111\u0117\u011f\u0121\u012c\u0133\u013e\u0143\u0145\u0151\u0164\u016a"+ + "\u0174\u0178\u017d\u018b\u0194\u0198\u019c\u01a3\u01a7\u01ae\u01b4\u01bb"+ + "\u01c3\u01cb\u01d2\u01e3\u01ee\u01f9\u01fe\u0202\u0206\u020b\u0216\u021b"+ + "\u021f\u022d\u0238\u0246\u0251\u0254\u0259\u026f\u0277\u027a\u027f\u028c"+ + "\u029b\u02a4\u02ab\u02b6\u02c4\u02ca\u02d0"; 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 c9cb05b3d91f6..b7accc240523a 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 @@ -752,6 +752,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

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

The default implementation does nothing.

+ */ + @Override public void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { } /** * {@inheritDoc} * @@ -1196,6 +1208,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

*/ @Override public void exitForkSubQueryProcessingCommand(EsqlBaseParser.ForkSubQueryProcessingCommandContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitRerankCommand(EsqlBaseParser.RerankCommandContext 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 f9d2904a02808..317398c7c631a 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 @@ -447,6 +447,13 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code 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 visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -706,4 +713,11 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitForkSubQueryProcessingCommand(EsqlBaseParser.ForkSubQueryProcessingCommandContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitRerankCommand(EsqlBaseParser.RerankCommandContext 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 4d4fb5b891c51..8ced928540d58 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 @@ -689,6 +689,16 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. + * @param ctx the parse tree + */ + void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. + * @param ctx the parse tree + */ + void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); /** * Enter a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree @@ -1065,4 +1075,14 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitForkSubQueryProcessingCommand(EsqlBaseParser.ForkSubQueryProcessingCommandContext ctx); + /** + * Enter a parse tree produced by {@link EsqlBaseParser#rerankCommand}. + * @param ctx the parse tree + */ + void enterRerankCommand(EsqlBaseParser.RerankCommandContext ctx); + /** + * Exit a parse tree produced by {@link EsqlBaseParser#rerankCommand}. + * @param ctx the parse tree + */ + void exitRerankCommand(EsqlBaseParser.RerankCommandContext 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 15639e19ee3cd..24a2c2081d7d6 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 @@ -416,6 +416,12 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); /** * Visit a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree @@ -641,4 +647,10 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitForkSubQueryProcessingCommand(EsqlBaseParser.ForkSubQueryProcessingCommandContext ctx); + /** + * Visit a parse tree produced by {@link EsqlBaseParser#rerankCommand}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx); } From b2c0e1180a91174e483af1d94a7bd44de0175bca Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Feb 2025 16:56:56 +0100 Subject: [PATCH 02/75] Adding logical plan for the rerank command. --- .../xpack/esql/plan/PlanWritables.java | 2 + .../plan/logical/inference/InferencePlan.java | 54 ++++++++ .../esql/plan/logical/inference/Rerank.java | 115 ++++++++++++++++++ .../inference/RerankSerializationTests.java | 51 ++++++++ 4 files changed, 222 insertions(+) create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java index ebe8e04e7c9ab..33e141c8f3ddb 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java @@ -22,6 +22,7 @@ import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.TopN; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject; @@ -79,6 +80,7 @@ public static List logical() { MvExpand.ENTRY, OrderBy.ENTRY, Project.ENTRY, + Rerank.ENTRY, TopN.ENTRY ); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java new file mode 100644 index 0000000000000..068a64b51569c --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java @@ -0,0 +1,54 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.logical.inference; + +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.inference.TaskType; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; + +import java.io.IOException; +import java.util.Objects; + +public abstract class InferencePlan extends UnaryPlan { + + private final String inferenceId; + + protected InferencePlan(Source source, LogicalPlan child, String inferenceId) { + super(source, child); + this.inferenceId = inferenceId; + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + Source.EMPTY.writeTo(out); + out.writeNamedWriteable(child()); + out.writeString(inferenceId()); + } + + public String inferenceId() { + return inferenceId; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + if (super.equals(o) == false) return false; + InferencePlan other = (InferencePlan) o; + return Objects.equals(inferenceId(), other.inferenceId()); + } + + @Override + public int hashCode() { + return Objects.hash(super.hashCode(), inferenceId()); + } + + public abstract TaskType taskType(); +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java new file mode 100644 index 0000000000000..ad9f506b79b97 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -0,0 +1,115 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.logical.inference; + +import org.elasticsearch.common.io.stream.NamedWriteableRegistry; +import org.elasticsearch.common.io.stream.StreamInput; +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.inference.TaskType; +import org.elasticsearch.xpack.esql.core.capabilities.Resolvables; +import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.AttributeSet; +import org.elasticsearch.xpack.esql.core.expression.Expressions; +import org.elasticsearch.xpack.esql.core.tree.NodeInfo; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; + +import java.io.IOException; +import java.util.List; +import java.util.Objects; + +import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes; + +public class Rerank extends InferencePlan { + + public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); + private final String queryText; + private final List rerankFields; + + public Rerank(Source source, LogicalPlan child, String inferenceId, String queryText, List rerankFields) { + super(source, child, inferenceId); + this.queryText = queryText; + this.rerankFields = rerankFields; + } + + public Rerank(StreamInput in) throws IOException { + this( + Source.readFrom((PlanStreamInput) in), + in.readNamedWriteable(LogicalPlan.class), + in.readString(), + in.readString(), + in.readCollectionAsList(Alias::new) + ); + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + super.writeTo(out); + out.writeString(queryText); + out.writeCollection(rerankFields()); + } + + public String queryText() { + return queryText; + } + + public List rerankFields() { + return rerankFields; + } + + @Override + public TaskType taskType() { + return TaskType.RERANK; + } + + @Override + public String getWriteableName() { + return ENTRY.name; + } + + @Override + public UnaryPlan replaceChild(LogicalPlan newChild) { + return new Rerank(source(), newChild, inferenceId(), queryText, rerankFields); + } + + @Override + protected AttributeSet computeReferences() { + return computeReferences(rerankFields); + } + + public static AttributeSet computeReferences(List fields) { + AttributeSet generated = new AttributeSet(asAttributes(fields)); + return Expressions.references(fields).subtract(generated); + } + + @Override + public boolean expressionsResolved() { + return Resolvables.resolved(rerankFields); + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, Rerank::new, child(), inferenceId(), queryText, rerankFields); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + if (super.equals(o) == false) return false; + Rerank rerank = (Rerank) o; + return Objects.equals(queryText, rerank.queryText) && Objects.equals(rerankFields, rerank.rerankFields); + } + + @Override + public int hashCode() { + return Objects.hash(super.hashCode(), queryText, rerankFields); + } +} diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java new file mode 100644 index 0000000000000..10b00cda348cc --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java @@ -0,0 +1,51 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.logical.inference; + +import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.expression.AliasTests; +import org.elasticsearch.xpack.esql.plan.logical.AbstractLogicalPlanSerializationTests; +import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; + +import java.io.IOException; +import java.util.List; + +public class RerankSerializationTests extends AbstractLogicalPlanSerializationTests { + @Override + protected Rerank createTestInstance() { + Source source = randomSource(); + LogicalPlan child = randomChild(0); + return new Rerank(source, child, randomIdentifier(), randomIdentifier(), randomFields()); + } + + @Override + protected Rerank mutateInstance(Rerank instance) throws IOException { + LogicalPlan child = instance.child(); + String inferenceId = instance.inferenceId(); + String queryText = instance.queryText(); + List fields = instance.rerankFields(); + + switch (between(0, 3)) { + case 0 -> child = randomValueOtherThan(child, () -> randomChild(0)); + case 1 -> inferenceId = randomValueOtherThan(inferenceId, RerankSerializationTests::randomIdentifier); + case 2 -> queryText = randomValueOtherThan(queryText, RerankSerializationTests::randomIdentifier); + case 3 -> fields = randomValueOtherThan(fields, this::randomFields); + } + return new Rerank(instance.source(), child, inferenceId, queryText, fields); + } + + @Override + protected boolean alwaysEmptySource() { + return true; + } + + private List randomFields() { + return randomList(0, 10, AliasTests::randomAlias); + } +} From 6818567fcd1db3c4e8da6def8c88ffeb9fb947bb Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Feb 2025 19:07:35 +0100 Subject: [PATCH 03/75] Rerank command logical plan parsing --- .../xpack/esql/action/EsqlCapabilities.java | 7 +- .../xpack/esql/parser/ExpressionBuilder.java | 24 ++++ .../xpack/esql/parser/LogicalPlanBuilder.java | 24 ++++ .../GrammarInDevelopmentParsingTests.java | 4 + .../esql/parser/StatementParserTests.java | 107 ++++++++++++++++++ 5 files changed, 165 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java index 434429f073b6b..e3400c0e70201 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/EsqlCapabilities.java @@ -834,7 +834,12 @@ public enum Cap { /** * Support for FORK command */ - FORK(Build.current().isSnapshot()); + FORK(Build.current().isSnapshot()), + + /** + * Support for RERANK command + */ + RERANK(Build.current().isSnapshot()); private final boolean enabled; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java index 9d7c3dd908477..256d5c8cba3c7 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java @@ -194,6 +194,30 @@ public Literal visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { return new Literal(source, val, type); } + @Override + public String visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { + if (ctx.parameter() != null) { + if (expression(ctx.parameter()) instanceof Literal lit) { + if (lit.value() == null) { + throw new ParsingException( + source(ctx.parameter()), + "Query parameter [{}] is null or undefined and cannot be used as string", + ctx.parameter().getText() + ); + } + return lit.value().toString(); + } + + throw new ParsingException( + source(ctx.parameter()), + "Query parameter [{}], cannot be used as string", + ctx.parameter().getText() + ); + } + + return unquote(source(ctx.string())); + } + @Override public Object visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { Source source = source(ctx); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index 6a0e5d31534b9..ae20cf55bb766 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java @@ -62,6 +62,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Rename; import org.elasticsearch.xpack.esql.plan.logical.Row; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin; import org.elasticsearch.xpack.esql.plan.logical.join.StubRelation; import org.elasticsearch.xpack.esql.plan.logical.show.ShowInfo; @@ -686,4 +687,27 @@ public PlanFactory visitCompositeForkSubQuery(EsqlBaseParser.CompositeForkSubQue PlanFactory makePlan = typedParsing(this, ctx.forkSubQueryProcessingCommand(), PlanFactory.class); return input -> makePlan.apply(lowerPlan.apply(input)); } + + public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { + var source = source(ctx); + + if (false == EsqlCapabilities.Cap.RERANK.isEnabled()) { + throw new ParsingException(source, "RERANK is in preview and only available in SNAPSHOT build"); + } + + return p -> { + List rerankFields = new ArrayList<>(); + if (ctx.fields() != null) { + rerankFields = visitFields(ctx.fields()); + } else { + for (var attribute : p.output()) { + rerankFields.add(new Alias(Source.EMPTY, attribute.name(), new UnresolvedAttribute(Source.EMPTY, attribute.name()))); + } + } + + System.out.println(rerankFields); + + return new Rerank(source, p, visitStringOrParameter(ctx.inferenceId), visitStringOrParameter(ctx.queryText), rerankFields); + }; + } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java index 2ca1d8c4d1288..9c9fc1d62ecb4 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java @@ -30,6 +30,10 @@ public void testDevelopmentMatch() throws Exception { parse("row a = 1 | match foo", "match"); } + public void testDevelopmentRerank() { + parse("row a = 1 | rerank \"foo\" ON title WITH reranker", "rerank"); + } + void parse(String query, String errorMessage) { ParsingException pe = expectThrows(ParsingException.class, () -> parser().createStatement(query)); assertThat(pe.getMessage(), containsString("mismatched input '" + errorMessage + "'")); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index a1e421b80d608..f5f5a030b0ea8 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -64,6 +64,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Rename; import org.elasticsearch.xpack.esql.plan.logical.Row; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin; @@ -3088,6 +3089,112 @@ public void testInvalidFork() { expectError("FROM foo* | FORK ( LIMIT 10 ) ( y+2 )", "line 1:33: mismatched input 'y' expecting {'limit', 'sort', 'where'}"); } + public void testRerankSingleField() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title WITH \"inferenceID\""); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testRerankMultipleFields() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH \"inferenceID\""); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat( + rerank.rerankFields(), + equalTo( + List.of( + alias("title", attribute("title")), + alias("description", attribute("description")), + alias("authors_renamed", attribute("authors")) + ) + ) + ); + } + + public void testRerankComputedFields() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = processingCommand( + "RERANK \"query text\" ON title, short_description = SUBSTRING(description, 0, 100) WITH \"inferenceID\"" + ); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat( + rerank.rerankFields(), + equalTo( + List.of( + alias("title", attribute("title")), + alias( + "short_description", + function( + "SUBSTRING", + List.of(attribute("description"), new Literal(EMPTY, 0, INTEGER), new Literal(EMPTY, 100, INTEGER)) + ) + ) + ) + ) + ); + } + + public void testRerankNoFieldSpecified() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var plan = parser.createStatement("row a = 1, b = \"foo\", c=true | RERANK \"query text\" WITH \"inferenceID\""); + var rerank = as(plan, Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("inferenceID")); + + // When no field are specified, all the fields are used. + assertThat(rerank.rerankFields(), contains(alias("a", attribute("a")), alias("b", attribute("b")), alias("c", attribute("c")))); + } + + public void testRerankWithPositionalParameters() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var queryParams = new QueryParams(List.of(paramAsConstant(null, "query text"), paramAsConstant(null, "reranker"))); + var rerank = as(parser.createStatement("row a = 1 | RERANK ? ON title WITH ?", queryParams), Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("reranker")); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testRerankWithNamedParameters() { + assumeTrue("FORK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + + var queryParams = new QueryParams(List.of(paramAsConstant("queryText", "query text"), paramAsConstant("inferenceId", "reranker"))); + var rerank = as(parser.createStatement("row a = 1 | RERANK ?queryText ON title WITH ?inferenceId", queryParams), Rerank.class); + + assertThat(rerank.queryText(), equalTo("query text")); + assertThat(rerank.inferenceId(), equalTo("reranker")); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); + } + + public void testInvalidRerank() { + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + expectError( + "FROM foo* | RERANK ON title WITH inferenceId", + "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING, '?', NAMED_OR_POSITIONAL_PARAM}" + ); + + expectError( + "FROM foo* | RERANK \"query text\" ON title", + "line 1:42: mismatched input '' expecting {'with', 'and', '::', ',', '.', 'or', '+', '-', '*', '/', '%'}" + ); + } + static Alias alias(String name, Expression value) { return new Alias(EMPTY, name, value); } From fae22dfc554b89705f22b6f3aba9e8bbde763c1b Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Feb 2025 14:35:31 +0100 Subject: [PATCH 04/75] Rerank command analysis and verification. --- .../xpack/esql/EsqlTestUtils.java | 9 ++- .../xpack/esql/analysis/Analyzer.java | 47 ++++++++++++ .../xpack/esql/analysis/AnalyzerContext.java | 9 ++- .../xpack/esql/analysis/PreAnalyzer.java | 16 ++++- .../esql/inference/InferenceResolution.java | 48 +++++++++++++ .../esql/inference/InferenceService.java | 70 ++++++++++++++++++ .../esql/inference/ResolvedInference.java | 28 ++++++++ .../xpack/esql/parser/ExpressionBuilder.java | 6 +- .../plan/logical/inference/InferencePlan.java | 16 +++-- .../esql/plan/logical/inference/Rerank.java | 22 ++++-- .../esql/plugin/TransportActionServices.java | 4 +- .../esql/plugin/TransportEsqlQueryAction.java | 7 +- .../xpack/esql/session/EsqlSession.java | 71 ++++++++++++++++--- .../elasticsearch/xpack/esql/CsvTests.java | 6 +- .../esql/analysis/AnalyzerTestUtils.java | 19 +++-- .../xpack/esql/analysis/AnalyzerTests.java | 20 +++++- .../xpack/esql/analysis/ParsingTests.java | 3 +- .../function/CheckLicenseTests.java | 9 ++- .../LocalLogicalPlanOptimizerTests.java | 18 ++++- .../LocalPhysicalPlanOptimizerTests.java | 3 +- .../optimizer/LogicalPlanOptimizerTests.java | 52 ++++++++++++-- .../optimizer/PhysicalPlanOptimizerTests.java | 3 +- .../esql/parser/StatementParserTests.java | 32 ++++----- .../inference/RerankSerializationTests.java | 20 ++++-- .../xpack/esql/planner/FilterTests.java | 9 ++- .../esql/planner/QueryTranslatorTests.java | 11 ++- .../esql/plugin/ClusterRequestTests.java | 9 ++- .../DataNodeRequestSerializationTests.java | 9 ++- 28 files changed, 495 insertions(+), 81 deletions(-) create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java index 0ddb19f8a8216..5b45b028a040a 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java @@ -66,6 +66,8 @@ import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.LessThanOrEqual; import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.NotEquals; import org.elasticsearch.xpack.esql.index.EsIndex; +import org.elasticsearch.xpack.esql.inference.InferenceResolution; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.optimizer.LogicalOptimizerContext; import org.elasticsearch.xpack.esql.parser.QueryParam; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -374,7 +376,8 @@ public static LogicalOptimizerContext unboundLogicalOptimizerContext() { null, mock(ClusterService.class), mock(IndexNameExpressionResolver.class), - null + null, + mock(InferenceService.class) ); private EsqlTestUtils() {} @@ -452,6 +455,10 @@ public static EnrichResolution emptyPolicyResolution() { return new EnrichResolution(); } + public static InferenceResolution emptyInferenceResolution() { + return InferenceResolution.EMPTY; + } + public static SearchStats statsForExistingField(String... names) { return fieldMatchingExistOrMissing(true, names); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index 589826501423b..386c333441cc7 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -64,6 +64,7 @@ import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.In; import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.index.IndexResolution; +import org.elasticsearch.xpack.esql.inference.ResolvedInference; import org.elasticsearch.xpack.esql.parser.ParsingException; import org.elasticsearch.xpack.esql.plan.IndexPattern; import org.elasticsearch.xpack.esql.plan.logical.Aggregate; @@ -81,6 +82,8 @@ import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.Rename; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; import org.elasticsearch.xpack.esql.plan.logical.join.JoinType; @@ -156,6 +159,7 @@ public class Analyzer extends ParameterizedRuleExecutor { + @Override + protected LogicalPlan rule(InferencePlan plan, AnalyzerContext context) { + assert plan.inferenceId().resolved() && plan.inferenceId().foldable(); + + String inferenceId = plan.inferenceId().fold(FoldContext.small()).toString(); + ResolvedInference resolvedInference = context.inferenceResolution().getResolvedInference(inferenceId); + + if (resolvedInference != null && resolvedInference.taskType() == plan.taskType()) { + return plan; + } else if (resolvedInference != null) { + String error = "cannot use inference endpoint [" + + inferenceId + + "] with task type [" + + resolvedInference.taskType() + + "] within a " + + plan.nodeName() + + " command. Only inference endpoints with the task type [" + + plan.taskType() + + "] are supported."; + return plan.withInferenceResolutionError(inferenceId, error); + } else { + String error = context.inferenceResolution().getError(inferenceId); + return plan.withInferenceResolutionError(inferenceId, error); + } + } + } + private static class ResolveLookupTables extends ParameterizedAnalyzerRule { @Override @@ -498,6 +530,10 @@ protected LogicalPlan rule(LogicalPlan plan, AnalyzerContext context) { return resolveFork(f, context); } + if (plan instanceof Rerank r) { + return resolveRerank(r, childrenOutput); + } + return plan.transformExpressionsOnly(UnresolvedAttribute.class, ua -> maybeResolveAttribute(ua, childrenOutput)); } @@ -687,6 +723,17 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { return new Fork(fork.source(), fork.child(), newSubPlans); } + private LogicalPlan resolveRerank(Rerank rerank, List childOutput) { + List newFields = new ArrayList<>(); + boolean changed = false; + for (Alias field : rerank.rerankFields()) { + Alias result = (Alias) field.transformUp(UnresolvedAttribute.class, ua -> resolveAttribute(ua, childOutput)); + changed |= result != field; + } + + return changed ? new Rerank(rerank.source(), rerank.child(), rerank.inferenceId(), rerank.queryText(), newFields) : rerank; + } + private List resolveUsingColumns(List cols, List output, String side) { List resolved = new ArrayList<>(cols.size()); for (Attribute col : cols) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java index 2aad172bd9946..b941bce429579 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/AnalyzerContext.java @@ -9,6 +9,7 @@ import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.index.IndexResolution; +import org.elasticsearch.xpack.esql.inference.InferenceResolution; import org.elasticsearch.xpack.esql.session.Configuration; import java.util.Map; @@ -18,7 +19,8 @@ public record AnalyzerContext( EsqlFunctionRegistry functionRegistry, IndexResolution indexResolution, Map lookupResolution, - EnrichResolution enrichResolution + EnrichResolution enrichResolution, + InferenceResolution inferenceResolution ) { // Currently for tests only, since most do not test lookups // TODO: make this even simpler, remove the enrichResolution for tests that do not require it (most tests) @@ -26,8 +28,9 @@ public AnalyzerContext( Configuration configuration, EsqlFunctionRegistry functionRegistry, IndexResolution indexResolution, - EnrichResolution enrichResolution + EnrichResolution enrichResolution, + InferenceResolution inferenceResolution ) { - this(configuration, functionRegistry, indexResolution, Map.of(), enrichResolution); + this(configuration, functionRegistry, indexResolution, Map.of(), enrichResolution, inferenceResolution); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java index 9aa8afac45c54..b31eba7d83af6 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/PreAnalyzer.java @@ -11,6 +11,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Enrich; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import java.util.ArrayList; import java.util.List; @@ -23,15 +24,22 @@ public class PreAnalyzer { public static class PreAnalysis { - public static final PreAnalysis EMPTY = new PreAnalysis(emptyList(), emptyList(), emptyList()); + public static final PreAnalysis EMPTY = new PreAnalysis(emptyList(), emptyList(), emptyList(), emptyList()); public final List indices; public final List enriches; + public final List inferencePlans; public final List lookupIndices; - public PreAnalysis(List indices, List enriches, List lookupIndices) { + public PreAnalysis( + List indices, + List enriches, + List inferencePlans, + List lookupIndices + ) { this.indices = indices; this.enriches = enriches; + this.inferencePlans = inferencePlans; this.lookupIndices = lookupIndices; } } @@ -47,6 +55,7 @@ public PreAnalysis preAnalyze(LogicalPlan plan) { protected PreAnalysis doPreAnalyze(LogicalPlan plan) { List indices = new ArrayList<>(); List unresolvedEnriches = new ArrayList<>(); + List unresolvedInferencePlans = new ArrayList<>(); List lookupIndices = new ArrayList<>(); plan.forEachUp(UnresolvedRelation.class, p -> { @@ -54,10 +63,11 @@ protected PreAnalysis doPreAnalyze(LogicalPlan plan) { list.add(new TableInfo(p.indexPattern())); }); plan.forEachUp(Enrich.class, unresolvedEnriches::add); + plan.forEachUp(InferencePlan.class, unresolvedInferencePlans::add); // mark plan as preAnalyzed (if it were marked, there would be no analysis) plan.forEachUp(LogicalPlan::setPreAnalyzed); - return new PreAnalysis(indices, unresolvedEnriches, lookupIndices); + return new PreAnalysis(indices, unresolvedEnriches, unresolvedInferencePlans, lookupIndices); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java new file mode 100644 index 0000000000000..0568b62e82851 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java @@ -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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.elasticsearch.common.util.concurrent.ConcurrentCollections; + +import java.util.Collection; +import java.util.Map; + +public class InferenceResolution { + + public static final InferenceResolution EMPTY = new InferenceResolution(); + + private final Map resolvedInferences = ConcurrentCollections.newConcurrentMap(); + + private final Map errors = ConcurrentCollections.newConcurrentMap(); + + public ResolvedInference getResolvedInference(String inferenceId) { + return resolvedInferences.get(inferenceId); + } + + public Collection resolvedInferences() { + return resolvedInferences.values(); + } + + public String getError(String inferenceId) { + final String error = errors.get(inferenceId); + if (error != null) { + return error; + } else { + assert false : "unresolved inference [" + inferenceId + "]"; + return "unresolved inference [" + inferenceId + "]"; + } + } + + public void addResolvedInference(ResolvedInference resolvedInference) { + resolvedInferences.putIfAbsent(resolvedInference.inferenceId(), resolvedInference); + } + + public void addError(String inferenceId, String reason) { + errors.putIfAbsent(inferenceId, reason); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java new file mode 100644 index 0000000000000..a1185b537e299 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java @@ -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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.elasticsearch.action.ActionListener; +import org.elasticsearch.client.internal.Client; +import org.elasticsearch.client.internal.OriginSettingClient; +import org.elasticsearch.inference.TaskType; +import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction; +import org.elasticsearch.xpack.esql.core.expression.FoldContext; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; + +import java.util.List; +import java.util.Set; +import java.util.concurrent.CountDownLatch; +import java.util.stream.Collectors; + +import static org.elasticsearch.xpack.core.ClientHelper.ML_ORIGIN; + +public class InferenceService { + + private final Client client; + + public InferenceService(Client client) { + this.client = new OriginSettingClient(client, ML_ORIGIN); + } + + public void resolveInferences(List plans, ActionListener listener) { + + if (plans.isEmpty()) { + listener.onResponse(InferenceResolution.EMPTY); + return; + } + + Set inferenceIds = plans.stream() + .map(p -> p.inferenceId().fold(FoldContext.small()).toString()) + .collect(Collectors.toSet()); + + CountDownLatch countDownLatch = new CountDownLatch(inferenceIds.size()); + InferenceResolution inferenceResolution = new InferenceResolution(); + + for (var inferenceId : inferenceIds) { + client.execute( + GetInferenceModelAction.INSTANCE, + new GetInferenceModelAction.Request(inferenceId, TaskType.ANY), + ActionListener.wrap(r -> { + ResolvedInference resolvedInference = new ResolvedInference(inferenceId, r.getEndpoints().getFirst().getTaskType()); + inferenceResolution.addResolvedInference(resolvedInference); + countDownLatch.countDown(); + }, e -> { + inferenceResolution.addError(inferenceId, e.getMessage()); + countDownLatch.countDown(); + }) + ); + } + + try { + countDownLatch.await(); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + + listener.onResponse(inferenceResolution); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java new file mode 100644 index 0000000000000..63767a6286e3e --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java @@ -0,0 +1,28 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.elasticsearch.common.io.stream.StreamInput; +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.common.io.stream.Writeable; +import org.elasticsearch.inference.TaskType; + +import java.io.IOException; + +public record ResolvedInference(String inferenceId, TaskType taskType) implements Writeable { + + public ResolvedInference(StreamInput in) throws IOException { + this(in.readString(), in.readEnum(TaskType.class)); + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + out.writeString(inferenceId); + out.writeEnum(taskType); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java index 256d5c8cba3c7..47d8351be3a27 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java @@ -195,7 +195,7 @@ public Literal visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { } @Override - public String visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { + public Literal visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { if (ctx.parameter() != null) { if (expression(ctx.parameter()) instanceof Literal lit) { if (lit.value() == null) { @@ -205,7 +205,7 @@ public String visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx ctx.parameter().getText() ); } - return lit.value().toString(); + return lit; } throw new ParsingException( @@ -215,7 +215,7 @@ public String visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx ); } - return unquote(source(ctx.string())); + return visitString(ctx.string()); } @Override diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java index 068a64b51569c..25b8c5377569b 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java @@ -9,6 +9,7 @@ import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.inference.TaskType; +import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; @@ -18,9 +19,9 @@ public abstract class InferencePlan extends UnaryPlan { - private final String inferenceId; + private final Expression inferenceId; - protected InferencePlan(Source source, LogicalPlan child, String inferenceId) { + protected InferencePlan(Source source, LogicalPlan child, Expression inferenceId) { super(source, child); this.inferenceId = inferenceId; } @@ -29,13 +30,18 @@ protected InferencePlan(Source source, LogicalPlan child, String inferenceId) { public void writeTo(StreamOutput out) throws IOException { Source.EMPTY.writeTo(out); out.writeNamedWriteable(child()); - out.writeString(inferenceId()); + out.writeNamedWriteable(inferenceId()); } - public String inferenceId() { + public Expression inferenceId() { return inferenceId; } + @Override + public boolean expressionsResolved() { + return inferenceId.resolved(); + } + @Override public boolean equals(Object o) { if (this == o) return true; @@ -51,4 +57,6 @@ public int hashCode() { } public abstract TaskType taskType(); + + public abstract LogicalPlan withInferenceResolutionError(String inferenceId, String error); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index ad9f506b79b97..52828a1859dd5 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -14,7 +14,9 @@ import org.elasticsearch.xpack.esql.core.capabilities.Resolvables; import org.elasticsearch.xpack.esql.core.expression.Alias; import org.elasticsearch.xpack.esql.core.expression.AttributeSet; +import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Expressions; +import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; @@ -30,10 +32,10 @@ public class Rerank extends InferencePlan { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); - private final String queryText; + private final Expression queryText; private final List rerankFields; - public Rerank(Source source, LogicalPlan child, String inferenceId, String queryText, List rerankFields) { + public Rerank(Source source, LogicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) { super(source, child, inferenceId); this.queryText = queryText; this.rerankFields = rerankFields; @@ -43,8 +45,8 @@ public Rerank(StreamInput in) throws IOException { this( Source.readFrom((PlanStreamInput) in), in.readNamedWriteable(LogicalPlan.class), - in.readString(), - in.readString(), + in.readNamedWriteable(Expression.class), + in.readNamedWriteable(Expression.class), in.readCollectionAsList(Alias::new) ); } @@ -52,11 +54,11 @@ public Rerank(StreamInput in) throws IOException { @Override public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); - out.writeString(queryText); + out.writeNamedWriteable(queryText); out.writeCollection(rerankFields()); } - public String queryText() { + public Expression queryText() { return queryText; } @@ -69,6 +71,12 @@ public TaskType taskType() { return TaskType.RERANK; } + @Override + public LogicalPlan withInferenceResolutionError(String inferenceId, String error) { + Expression newInferenceId = new UnresolvedAttribute(inferenceId().source(), inferenceId, error); + return new Rerank(source(), child(), newInferenceId, queryText, rerankFields); + } + @Override public String getWriteableName() { return ENTRY.name; @@ -91,7 +99,7 @@ public static AttributeSet computeReferences(List fields) { @Override public boolean expressionsResolved() { - return Resolvables.resolved(rerankFields); + return super.expressionsResolved() && queryText.resolved() && Resolvables.resolved(rerankFields); } @Override diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java index ad112542e000a..9301d9295c127 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java @@ -13,6 +13,7 @@ import org.elasticsearch.search.SearchService; import org.elasticsearch.transport.TransportService; import org.elasticsearch.usage.UsageService; +import org.elasticsearch.xpack.esql.inference.InferenceService; public record TransportActionServices( TransportService transportService, @@ -20,5 +21,6 @@ public record TransportActionServices( ExchangeService exchangeService, ClusterService clusterService, IndexNameExpressionResolver indexNameExpressionResolver, - UsageService usageService + UsageService usageService, + InferenceService inferenceService ) {} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java index baf351c27107c..3bbb982fd5766 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java @@ -49,6 +49,7 @@ import org.elasticsearch.xpack.esql.enrich.EnrichPolicyResolver; import org.elasticsearch.xpack.esql.enrich.LookupFromIndexService; import org.elasticsearch.xpack.esql.execution.PlanExecutor; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.session.Configuration; import org.elasticsearch.xpack.esql.session.EsqlSession.PlanRunner; import org.elasticsearch.xpack.esql.session.Result; @@ -79,6 +80,7 @@ public class TransportEsqlQueryAction extends HandledTransportAction asyncTaskManagementService; private final RemoteClusterService remoteClusterService; private final UsageService usageService; + private final InferenceService inferenceService; private final TransportActionServices services; @Inject @@ -150,13 +152,16 @@ public TransportEsqlQueryAction( this.remoteClusterService = transportService.getRemoteClusterService(); this.usageService = usageService; + this.inferenceService = new InferenceService(client); + this.services = new TransportActionServices( transportService, searchService, exchangeService, clusterService, indexNameExpressionResolver, - usageService + usageService, + inferenceService ); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java index 2cc78713f89bb..271a8cd62f54f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java @@ -51,6 +51,8 @@ import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.index.IndexResolution; import org.elasticsearch.xpack.esql.index.MappingException; +import org.elasticsearch.xpack.esql.inference.InferenceResolution; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.optimizer.LogicalPlanOptimizer; import org.elasticsearch.xpack.esql.optimizer.PhysicalOptimizerContext; import org.elasticsearch.xpack.esql.optimizer.PhysicalPlanOptimizer; @@ -65,6 +67,7 @@ import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.RegexExtract; import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes; import org.elasticsearch.xpack.esql.plan.logical.join.LookupJoin; @@ -120,6 +123,7 @@ public interface PlanRunner { private final PhysicalPlanOptimizer physicalPlanOptimizer; private final PlanTelemetry planTelemetry; private final IndicesExpressionGrouper indicesExpressionGrouper; + private final InferenceService inferenceService; public EsqlSession( String sessionId, @@ -147,6 +151,7 @@ public EsqlSession( this.physicalPlanOptimizer = new PhysicalPlanOptimizer(new PhysicalOptimizerContext(configuration)); this.planTelemetry = planTelemetry; this.indicesExpressionGrouper = indicesExpressionGrouper; + this.inferenceService = services.inferenceService(); this.preMapper = new PreMapper(services); } @@ -336,7 +341,7 @@ public void analyzedPlan( Function analyzeAction = (l) -> { Analyzer analyzer = new Analyzer( - new AnalyzerContext(configuration, functionRegistry, l.indices, l.lookupIndices, l.enrichResolution), + new AnalyzerContext(configuration, functionRegistry, l.indices, l.lookupIndices, l.enrichResolution, l.inferenceResolution), verifier ); LogicalPlan plan = analyzer.analyze(parsed); @@ -365,7 +370,9 @@ public void analyzedPlan( var listener = SubscribableListener.newForked( l -> enrichPolicyResolver.resolvePolicies(targetClusters, unresolvedPolicies, l) - ).andThen((l, enrichResolution) -> resolveFieldNames(parsed, enrichResolution, l)); + ) + .andThen((l, enrichResolution) -> resolveFieldNames(parsed, enrichResolution, l)) + .andThen((l, preAnalysisResult) -> resolveInferences(preAnalysis.inferencePlans, preAnalysisResult, l)); // first resolve the lookup indices, then the main indices for (TableInfo lookupIndex : preAnalysis.lookupIndices) { listener = listener.andThen((l, preAnalysisResult) -> { preAnalyzeLookupIndex(lookupIndex, preAnalysisResult, l); }); @@ -588,6 +595,14 @@ private static void resolveFieldNames(LogicalPlan parsed, EnrichResolution enric } } + private void resolveInferences( + List inferencePlans, + PreAnalysisResult preAnalysisResult, + ActionListener l + ) { + inferenceService.resolveInferences(inferencePlans, l.map(preAnalysisResult::withInferenceResolution)); + } + static PreAnalysisResult fieldNames(LogicalPlan parsed, Set enrichPolicyMatchFields, PreAnalysisResult result) { if (false == parsed.anyMatch(plan -> plan instanceof Aggregate || plan instanceof Project)) { // no explicit columns selection, for example "from employees" @@ -757,18 +772,44 @@ record PreAnalysisResult( Map lookupIndices, EnrichResolution enrichResolution, Set fieldNames, - Set wildcardJoinIndices + Set wildcardJoinIndices, + InferenceResolution inferenceResolution ) { PreAnalysisResult(EnrichResolution newEnrichResolution) { - this(null, new HashMap<>(), newEnrichResolution, Set.of(), Set.of()); + this(null, new HashMap<>(), newEnrichResolution, Set.of(), Set.of(), InferenceResolution.EMPTY); } PreAnalysisResult withEnrichResolution(EnrichResolution newEnrichResolution) { - return new PreAnalysisResult(indices(), lookupIndices(), newEnrichResolution, fieldNames(), wildcardJoinIndices()); + return new PreAnalysisResult( + indices(), + lookupIndices(), + newEnrichResolution, + fieldNames(), + wildcardJoinIndices(), + inferenceResolution() + ); + } + + PreAnalysisResult withInferenceResolution(InferenceResolution newInferenceResolution) { + return new PreAnalysisResult( + indices(), + lookupIndices(), + enrichResolution(), + fieldNames(), + wildcardJoinIndices(), + newInferenceResolution + ); } PreAnalysisResult withIndexResolution(IndexResolution newIndexResolution) { - return new PreAnalysisResult(newIndexResolution, lookupIndices(), enrichResolution(), fieldNames(), wildcardJoinIndices()); + return new PreAnalysisResult( + newIndexResolution, + lookupIndices(), + enrichResolution(), + fieldNames(), + wildcardJoinIndices(), + inferenceResolution() + ); } PreAnalysisResult addLookupIndexResolution(String index, IndexResolution newIndexResolution) { @@ -777,11 +818,25 @@ PreAnalysisResult addLookupIndexResolution(String index, IndexResolution newInde } PreAnalysisResult withFieldNames(Set newFields) { - return new PreAnalysisResult(indices(), lookupIndices(), enrichResolution(), newFields, wildcardJoinIndices()); + return new PreAnalysisResult( + indices(), + lookupIndices(), + enrichResolution(), + newFields, + wildcardJoinIndices(), + inferenceResolution() + ); } public PreAnalysisResult withWildcardJoinIndices(Set wildcardJoinIndices) { - return new PreAnalysisResult(indices(), lookupIndices(), enrichResolution(), fieldNames(), wildcardJoinIndices); + return new PreAnalysisResult( + indices(), + lookupIndices(), + enrichResolution(), + fieldNames(), + wildcardJoinIndices, + inferenceResolution() + ); } } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 1347b8430f3a4..47cf6f83d17f1 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -119,6 +119,7 @@ import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.CSV_DATASET_MAP; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; import static org.elasticsearch.xpack.esql.EsqlTestUtils.classpathResources; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.cap; import static org.hamcrest.Matchers.equalTo; @@ -460,7 +461,10 @@ private static EnrichPolicy loadEnrichPolicyMapping(String policyFileName) { private LogicalPlan analyzedPlan(LogicalPlan parsed, CsvTestsDataLoader.MultiIndexTestDataset datasets) { var indexResolution = loadIndexResolution(datasets); var enrichPolicies = loadEnrichPolicies(); - var analyzer = new Analyzer(new AnalyzerContext(configuration, functionRegistry, indexResolution, enrichPolicies), TEST_VERIFIER); + var analyzer = new Analyzer( + new AnalyzerContext(configuration, functionRegistry, indexResolution, enrichPolicies, emptyInferenceResolution()), + TEST_VERIFIER + ); LogicalPlan plan = analyzer.analyze(parsed); plan.setAnalyzed(); LOGGER.debug("Analyzed plan:\n{}", plan); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java index d4e786a9d9bb0..c14fe7299187f 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java @@ -29,6 +29,7 @@ import static org.elasticsearch.xpack.core.enrich.EnrichPolicy.RANGE_TYPE; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; import static org.elasticsearch.xpack.esql.EsqlTestUtils.configuration; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; public final class AnalyzerTestUtils { @@ -57,7 +58,8 @@ public static Analyzer analyzer(IndexResolution indexResolution, Verifier verifi new EsqlFunctionRegistry(), indexResolution, defaultLookupResolution(), - defaultEnrichResolution() + defaultEnrichResolution(), + emptyInferenceResolution() ), verifier ); @@ -70,7 +72,8 @@ public static Analyzer analyzer(IndexResolution indexResolution, Map 0L)) ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java index 90c08001f4cfa..94c1f85f1d035 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizerTests.java @@ -153,6 +153,7 @@ import static org.elasticsearch.xpack.esql.EsqlTestUtils.TWO; import static org.elasticsearch.xpack.esql.EsqlTestUtils.as; import static org.elasticsearch.xpack.esql.EsqlTestUtils.asLimit; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptySource; import static org.elasticsearch.xpack.esql.EsqlTestUtils.fieldAttribute; import static org.elasticsearch.xpack.esql.EsqlTestUtils.getFieldAttribute; @@ -245,7 +246,8 @@ public static void init() { new EsqlFunctionRegistry(), getIndexResult, defaultLookupResolution(), - enrichResolution + enrichResolution, + emptyInferenceResolution() ), TEST_VERIFIER ); @@ -255,7 +257,13 @@ public static void init() { EsIndex airports = new EsIndex("airports", mappingAirports, Map.of("airports", IndexMode.STANDARD)); IndexResolution getIndexResultAirports = IndexResolution.valid(airports); analyzerAirports = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResultAirports, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResultAirports, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); @@ -264,7 +272,13 @@ public static void init() { EsIndex types = new EsIndex("types", mappingTypes, Map.of("types", IndexMode.STANDARD)); IndexResolution getIndexResultTypes = IndexResolution.valid(types); analyzerTypes = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResultTypes, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResultTypes, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); @@ -273,14 +287,26 @@ public static void init() { EsIndex extra = new EsIndex("extra", mappingExtra, Map.of("extra", IndexMode.STANDARD)); IndexResolution getIndexResultExtra = IndexResolution.valid(extra); analyzerExtra = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResultExtra, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResultExtra, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); metricMapping = loadMapping("k8s-mappings.json"); var metricsIndex = IndexResolution.valid(new EsIndex("k8s", metricMapping, Map.of("k8s", IndexMode.TIME_SERIES))); metricsAnalyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), metricsIndex, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + metricsIndex, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); @@ -295,7 +321,13 @@ public static void init() { ) ); multiIndexAnalyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), multiIndex, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + multiIndex, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); } @@ -5265,7 +5297,13 @@ public void testEmptyMappingIndex() { EsIndex empty = new EsIndex("empty_test", emptyMap(), Map.of()); IndexResolution getIndexResultAirports = IndexResolution.valid(empty); var analyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResultAirports, enrichResolution), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResultAirports, + enrichResolution, + emptyInferenceResolution() + ), TEST_VERIFIER ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java index 55448b7ceaf49..1d584a03f6804 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java @@ -164,6 +164,7 @@ import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; import static org.elasticsearch.xpack.esql.EsqlTestUtils.as; import static org.elasticsearch.xpack.esql.EsqlTestUtils.configuration; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.statsForMissingField; import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext; @@ -355,7 +356,7 @@ TestDataSource makeTestDataSource( EsIndex index = new EsIndex(indexName, mapping, Map.of("test", IndexMode.STANDARD)); IndexResolution getIndexResult = IndexResolution.valid(index); Analyzer analyzer = new Analyzer( - new AnalyzerContext(config, functionRegistry, getIndexResult, lookupResolution, enrichResolution), + new AnalyzerContext(config, functionRegistry, getIndexResult, lookupResolution, enrichResolution, emptyInferenceResolution()), TEST_VERIFIER ); return new TestDataSource(mapping, index, analyzer, stats); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index f5f5a030b0ea8..27d3b11b10f53 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3095,8 +3095,8 @@ public void testRerankSingleField() { var plan = processingCommand("RERANK \"query text\" ON title WITH \"inferenceID\""); var rerank = as(plan, Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); } @@ -3106,8 +3106,8 @@ public void testRerankMultipleFields() { var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH \"inferenceID\""); var rerank = as(plan, Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); assertThat( rerank.rerankFields(), equalTo( @@ -3128,20 +3128,14 @@ public void testRerankComputedFields() { ); var rerank = as(plan, Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); assertThat( rerank.rerankFields(), equalTo( List.of( alias("title", attribute("title")), - alias( - "short_description", - function( - "SUBSTRING", - List.of(attribute("description"), new Literal(EMPTY, 0, INTEGER), new Literal(EMPTY, 100, INTEGER)) - ) - ) + alias("short_description", function("SUBSTRING", List.of(attribute("description"), integer(0), integer(100)))) ) ) ); @@ -3153,8 +3147,8 @@ public void testRerankNoFieldSpecified() { var plan = parser.createStatement("row a = 1, b = \"foo\", c=true | RERANK \"query text\" WITH \"inferenceID\""); var rerank = as(plan, Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("inferenceID")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); // When no field are specified, all the fields are used. assertThat(rerank.rerankFields(), contains(alias("a", attribute("a")), alias("b", attribute("b")), alias("c", attribute("c")))); @@ -3166,8 +3160,8 @@ public void testRerankWithPositionalParameters() { var queryParams = new QueryParams(List.of(paramAsConstant(null, "query text"), paramAsConstant(null, "reranker"))); var rerank = as(parser.createStatement("row a = 1 | RERANK ? ON title WITH ?", queryParams), Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("reranker")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("reranker"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); } @@ -3177,8 +3171,8 @@ public void testRerankWithNamedParameters() { var queryParams = new QueryParams(List.of(paramAsConstant("queryText", "query text"), paramAsConstant("inferenceId", "reranker"))); var rerank = as(parser.createStatement("row a = 1 | RERANK ?queryText ON title WITH ?inferenceId", queryParams), Rerank.class); - assertThat(rerank.queryText(), equalTo("query text")); - assertThat(rerank.inferenceId(), equalTo("reranker")); + assertThat(rerank.queryText(), equalTo(literalString("query text"))); + assertThat(rerank.inferenceId(), equalTo(literalString("reranker"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java index 10b00cda348cc..e3c1f2e5db632 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java @@ -8,7 +8,10 @@ package org.elasticsearch.xpack.esql.plan.logical.inference; import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.expression.Literal; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.AliasTests; import org.elasticsearch.xpack.esql.plan.logical.AbstractLogicalPlanSerializationTests; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; @@ -16,25 +19,27 @@ import java.io.IOException; import java.util.List; +import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY; + public class RerankSerializationTests extends AbstractLogicalPlanSerializationTests { @Override protected Rerank createTestInstance() { Source source = randomSource(); LogicalPlan child = randomChild(0); - return new Rerank(source, child, randomIdentifier(), randomIdentifier(), randomFields()); + return new Rerank(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields()); } @Override protected Rerank mutateInstance(Rerank instance) throws IOException { LogicalPlan child = instance.child(); - String inferenceId = instance.inferenceId(); - String queryText = instance.queryText(); + Expression inferenceId = instance.inferenceId(); + Expression queryText = instance.queryText(); List fields = instance.rerankFields(); switch (between(0, 3)) { case 0 -> child = randomValueOtherThan(child, () -> randomChild(0)); - case 1 -> inferenceId = randomValueOtherThan(inferenceId, RerankSerializationTests::randomIdentifier); - case 2 -> queryText = randomValueOtherThan(queryText, RerankSerializationTests::randomIdentifier); + case 1 -> inferenceId = randomValueOtherThan(inferenceId, () -> string(RerankSerializationTests.randomIdentifier())); + case 2 -> queryText = randomValueOtherThan(queryText, () -> string(RerankSerializationTests.randomIdentifier())); case 3 -> fields = randomValueOtherThan(fields, this::randomFields); } return new Rerank(instance.source(), child, inferenceId, queryText, fields); @@ -48,4 +53,9 @@ protected boolean alwaysEmptySource() { private List randomFields() { return randomList(0, 10, AliasTests::randomAlias); } + + static Literal string(String value) { + return new Literal(EMPTY, value, DataType.KEYWORD); + } + } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/FilterTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/FilterTests.java index 4191f42f08237..78eae50cac7c2 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/FilterTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/FilterTests.java @@ -50,6 +50,7 @@ import static org.elasticsearch.index.query.QueryBuilders.rangeQuery; import static org.elasticsearch.xpack.esql.ConfigurationTestUtils.randomConfiguration; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext; import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning; @@ -83,7 +84,13 @@ public static void init() { mapper = new Mapper(); analyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, EsqlTestUtils.emptyPolicyResolution()), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResult, + EsqlTestUtils.emptyPolicyResolution(), + emptyInferenceResolution() + ), TEST_VERIFIER ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/QueryTranslatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/QueryTranslatorTests.java index f9732272dbd74..89210b72a8ed4 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/QueryTranslatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/QueryTranslatorTests.java @@ -13,7 +13,6 @@ import org.elasticsearch.xpack.esql.EsqlTestUtils; import org.elasticsearch.xpack.esql.analysis.Analyzer; import org.elasticsearch.xpack.esql.analysis.AnalyzerContext; -import org.elasticsearch.xpack.esql.analysis.EnrichResolution; import org.elasticsearch.xpack.esql.analysis.Verifier; import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.index.EsIndex; @@ -28,6 +27,8 @@ import java.util.List; import java.util.Map; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyPolicyResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning; import static org.hamcrest.Matchers.containsString; @@ -46,7 +47,13 @@ private static Analyzer makeAnalyzer(String mappingFileName) { IndexResolution getIndexResult = IndexResolution.valid(test); return new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, new EnrichResolution()), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResult, + emptyPolicyResolution(), + emptyInferenceResolution() + ), new Verifier(new Metrics(new EsqlFunctionRegistry()), new XPackLicenseState(() -> 0L)) ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/ClusterRequestTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/ClusterRequestTests.java index e58824290c49e..9b7615d0cc37e 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/ClusterRequestTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/ClusterRequestTests.java @@ -39,6 +39,7 @@ import static org.elasticsearch.xpack.esql.ConfigurationTestUtils.randomConfiguration; import static org.elasticsearch.xpack.esql.ConfigurationTestUtils.randomTables; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyPolicyResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext; @@ -191,7 +192,13 @@ static LogicalPlan parse(String query) { IndexResolution getIndexResult = IndexResolution.valid(test); var logicalOptimizer = new LogicalPlanOptimizer(unboundLogicalOptimizerContext()); var analyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, emptyPolicyResolution()), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResult, + emptyPolicyResolution(), + emptyInferenceResolution() + ), TEST_VERIFIER ); return logicalOptimizer.optimize(analyzer.analyze(new EsqlParser().createStatement(query))); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/DataNodeRequestSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/DataNodeRequestSerializationTests.java index fac3495697da8..abf9b527f008d 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/DataNodeRequestSerializationTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plugin/DataNodeRequestSerializationTests.java @@ -44,6 +44,7 @@ import static org.elasticsearch.xpack.esql.ConfigurationTestUtils.randomTables; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_CFG; import static org.elasticsearch.xpack.esql.EsqlTestUtils.TEST_VERIFIER; +import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyPolicyResolution; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning; @@ -292,7 +293,13 @@ static LogicalPlan parse(String query) { IndexResolution getIndexResult = IndexResolution.valid(test); var logicalOptimizer = new LogicalPlanOptimizer(new LogicalOptimizerContext(TEST_CFG, FoldContext.small())); var analyzer = new Analyzer( - new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, emptyPolicyResolution()), + new AnalyzerContext( + EsqlTestUtils.TEST_CFG, + new EsqlFunctionRegistry(), + getIndexResult, + emptyPolicyResolution(), + emptyInferenceResolution() + ), TEST_VERIFIER ); return logicalOptimizer.optimize(analyzer.analyze(new EsqlParser().createStatement(query))); From 7787efeece8613bf7b7a7afd0f1a68017958eb4a Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Fri, 21 Feb 2025 13:50:08 +0000 Subject: [PATCH 05/75] [CI] Auto commit changes from spotless --- .../org/elasticsearch/xpack/esql/EsqlTestUtils.java | 2 +- .../xpack/esql/parser/StatementParserTests.java | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java index 5b45b028a040a..d63e5e339f6b6 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java @@ -458,7 +458,7 @@ public static EnrichResolution emptyPolicyResolution() { public static InferenceResolution emptyInferenceResolution() { return InferenceResolution.EMPTY; } - + public static SearchStats statsForExistingField(String... names) { return fieldMatchingExistOrMissing(true, names); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index 27d3b11b10f53..46becee54fd8f 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3176,17 +3176,17 @@ public void testRerankWithNamedParameters() { assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title"))))); } - public void testInvalidRerank() { + public void testInvalidRerank() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); expectError( "FROM foo* | RERANK ON title WITH inferenceId", "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING, '?', NAMED_OR_POSITIONAL_PARAM}" ); - expectError( - "FROM foo* | RERANK \"query text\" ON title", - "line 1:42: mismatched input '' expecting {'with', 'and', '::', ',', '.', 'or', '+', '-', '*', '/', '%'}" - ); + expectError( + "FROM foo* | RERANK \"query text\" ON title", + "line 1:42: mismatched input '' expecting {'with', 'and', '::', ',', '.', 'or', '+', '-', '*', '/', '%'}" + ); } static Alias alias(String name, Expression value) { From 90695612cc22a0ee70dd2ceb4c6765dba960e2ce Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Feb 2025 16:58:15 +0100 Subject: [PATCH 06/75] Adding physical plan and operator for Rerank --- .../xpack/esql/analysis/Analyzer.java | 1 + .../esql/inference/InferenceService.java | 5 + .../xpack/esql/plan/PlanWritables.java | 2 + .../physical/inference/InferenceExec.java | 51 ++++++++ .../plan/physical/inference/RerankExec.java | 95 ++++++++++++++ .../physical/inference/RerankOperator.java | 121 ++++++++++++++++++ .../esql/planner/LocalExecutionPlanner.java | 42 ++++++ .../xpack/esql/planner/mapper/Mapper.java | 9 +- .../esql/planner/mapper/MapperUtils.java | 6 + .../xpack/esql/plugin/ComputeService.java | 5 + .../esql/plugin/TransportEsqlQueryAction.java | 4 +- .../elasticsearch/xpack/esql/CsvTests.java | 2 + .../optimizer/PhysicalPlanOptimizerTests.java | 1 + .../RerankExecSerializationTests.java | 61 +++++++++ .../planner/LocalExecutionPlannerTests.java | 1 + 15 files changed, 403 insertions(+), 3 deletions(-) create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/InferenceExec.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index e50d224c49d41..936a31d392432 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -731,6 +731,7 @@ private LogicalPlan resolveRerank(Rerank rerank, List childOutput) { boolean changed = false; for (Alias field : rerank.rerankFields()) { Alias result = (Alias) field.transformUp(UnresolvedAttribute.class, ua -> resolveAttribute(ua, childOutput)); + newFields.add(result); changed |= result != field; } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java index a1185b537e299..16b88eda92d57 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java @@ -10,6 +10,7 @@ import org.elasticsearch.action.ActionListener; import org.elasticsearch.client.internal.Client; import org.elasticsearch.client.internal.OriginSettingClient; +import org.elasticsearch.common.util.concurrent.ThreadContext; import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction; import org.elasticsearch.xpack.esql.core.expression.FoldContext; @@ -30,6 +31,10 @@ public InferenceService(Client client) { this.client = new OriginSettingClient(client, ML_ORIGIN); } + public ThreadContext getThreadContext() { + return client.threadPool().getThreadContext(); + } + public void resolveInferences(List plans, ActionListener listener) { if (plans.isEmpty()) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java index 33e141c8f3ddb..f8df042a1d31a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/PlanWritables.java @@ -48,6 +48,7 @@ import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.SubqueryExec; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; import java.util.ArrayList; import java.util.List; @@ -105,6 +106,7 @@ public static List physical() { LocalSourceExec.ENTRY, MvExpandExec.ENTRY, ProjectExec.ENTRY, + RerankExec.ENTRY, ShowExec.ENTRY, SubqueryExec.ENTRY, TopNExec.ENTRY diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/InferenceExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/InferenceExec.java new file mode 100644 index 0000000000000..7954690a0fdc0 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/InferenceExec.java @@ -0,0 +1,51 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.physical.inference; + +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; +import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; + +import java.io.IOException; +import java.util.Objects; + +public abstract class InferenceExec extends UnaryExec { + private final Expression inferenceId; + + protected InferenceExec(Source source, PhysicalPlan child, Expression inferenceId) { + super(source, child); + this.inferenceId = inferenceId; + } + + public Expression inferenceId() { + return inferenceId; + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + Source.EMPTY.writeTo(out); + out.writeNamedWriteable(child()); + out.writeNamedWriteable(inferenceId()); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + if (super.equals(o) == false) return false; + InferenceExec that = (InferenceExec) o; + return inferenceId.equals(that.inferenceId); + } + + @Override + public int hashCode() { + return Objects.hash(super.hashCode(), inferenceId()); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java new file mode 100644 index 0000000000000..ea70283ec7944 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java @@ -0,0 +1,95 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.physical.inference; + +import org.elasticsearch.common.io.stream.NamedWriteableRegistry; +import org.elasticsearch.common.io.stream.StreamInput; +import org.elasticsearch.common.io.stream.StreamOutput; +import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.tree.NodeInfo; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; +import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; +import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; + +import java.io.IOException; +import java.util.List; +import java.util.Objects; + +public class RerankExec extends InferenceExec { + + public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry( + PhysicalPlan.class, + "RerankExec", + RerankExec::new + ); + + private final Expression queryText; + private final List rerankFields; + + public RerankExec(Source source, PhysicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) { + super(source, child, inferenceId); + this.queryText = queryText; + this.rerankFields = rerankFields; + } + + public RerankExec(StreamInput in) throws IOException { + this( + Source.readFrom((PlanStreamInput) in), + in.readNamedWriteable(PhysicalPlan.class), + in.readNamedWriteable(Expression.class), + in.readNamedWriteable(Expression.class), + in.readCollectionAsList(Alias::new) + ); + } + + public Expression queryText() { + return queryText; + } + + public List rerankFields() { + return rerankFields; + } + + @Override + public String getWriteableName() { + return ENTRY.name; + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + super.writeTo(out); + out.writeNamedWriteable(queryText()); + out.writeCollection(rerankFields()); + } + + @Override + protected NodeInfo info() { + return NodeInfo.create(this, RerankExec::new, child(), inferenceId(), queryText, rerankFields); + } + + @Override + public UnaryExec replaceChild(PhysicalPlan newChild) { + return new RerankExec(source(), newChild, inferenceId(), queryText, rerankFields); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + if (super.equals(o) == false) return false; + RerankExec rerank = (RerankExec) o; + return Objects.equals(queryText, rerank.queryText) && Objects.equals(rerankFields, rerank.rerankFields); + } + + @Override + public int hashCode() { + return Objects.hash(super.hashCode(), queryText, rerankFields); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java new file mode 100644 index 0000000000000..665fcec7eaaf4 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java @@ -0,0 +1,121 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.physical.inference; + +import org.elasticsearch.action.ActionListener; +import org.elasticsearch.compute.data.BlockFactory; +import org.elasticsearch.compute.data.Page; +import org.elasticsearch.compute.operator.AsyncOperator; +import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.compute.operator.Operator; +import org.elasticsearch.logging.LogManager; +import org.elasticsearch.logging.Logger; +import org.elasticsearch.xpack.esql.inference.InferenceService; + +import java.util.HashMap; +import java.util.Map; + +public class RerankOperator extends AsyncOperator { + + // Move to a setting. + private static final int MAX_INFERENCE_WORKER = 10; + + private static final Logger logger = LogManager.getLogger(RerankOperator.class); + + public record Factory( + InferenceService inferenceService, + String inferenceId, + String queryText, + Map rerankFieldsEvaluatorSuppliers, + int scoreChannel + ) implements OperatorFactory { + + @Override + public String describe() { + return "RerankOperator[inference_id=" + + inferenceId + + " query=" + + queryText + + " rerank_fields=" + + rerankFieldsEvaluatorSuppliers.keySet() + + " scoreChannel=" + + scoreChannel + + "]"; + } + + @Override + public Operator get(DriverContext driverContext) { + return new RerankOperator( + driverContext, + inferenceService, + inferenceId, + queryText, + buildRerankFieldEvaluator(rerankFieldsEvaluatorSuppliers, driverContext), + scoreChannel + ); + } + + private Map buildRerankFieldEvaluator( + Map rerankFieldsEvaluatorSuppliers, + DriverContext driverContext + ) { + Map rerankFieldsEvaluators = new HashMap<>(); + + for (var entry : rerankFieldsEvaluatorSuppliers.entrySet()) { + rerankFieldsEvaluators.put(entry.getKey(), entry.getValue().get(driverContext)); + } + + return rerankFieldsEvaluators; + } + } + + private final InferenceService inferenceService; + private final BlockFactory blockFactory; + private final String inferenceId; + private final String queryText; + private final Map rerankFieldsEvaluator; + private final int scoreChannel; + + public RerankOperator( + DriverContext driverContext, + InferenceService inferenceService, + String inferenceId, + String queryText, + Map rerankFieldsEvaluator, + int scoreChannel + ) { + super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); + this.blockFactory = driverContext.blockFactory(); + this.inferenceService = inferenceService; + this.inferenceId = inferenceId; + this.queryText = queryText; + this.rerankFieldsEvaluator = rerankFieldsEvaluator; + this.scoreChannel = scoreChannel; + } + + @Override + protected void performAsync(Page inputPage, ActionListener listener) { + listener.onResponse(inputPage); + } + + @Override + protected void doClose() { + + } + + @Override + protected void releaseFetchedOnAnyThread(Page page) { + releasePageOnAnyThread(page); + } + + @Override + public Page getOutput() { + return fetchFromBuffer(); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index b624b3f7dbd42..d761d11bbc68f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -7,6 +7,7 @@ package org.elasticsearch.xpack.esql.planner; +import org.elasticsearch.common.lucene.BytesRefs; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.util.BigArrays; import org.elasticsearch.compute.Describable; @@ -22,6 +23,7 @@ import org.elasticsearch.compute.operator.ColumnLoadOperator; import org.elasticsearch.compute.operator.Driver; import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.compute.operator.EvalOperator; import org.elasticsearch.compute.operator.EvalOperator.EvalOperatorFactory; import org.elasticsearch.compute.operator.FilterOperator.FilterOperatorFactory; import org.elasticsearch.compute.operator.LimitOperator; @@ -60,6 +62,7 @@ import org.elasticsearch.xpack.esql.core.expression.FieldAttribute; import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.expression.NameId; import org.elasticsearch.xpack.esql.core.expression.NamedExpression; import org.elasticsearch.xpack.esql.core.expression.TypedAttribute; @@ -73,6 +76,7 @@ import org.elasticsearch.xpack.esql.evaluator.EvalMapper; import org.elasticsearch.xpack.esql.evaluator.command.GrokEvaluatorExtracter; import org.elasticsearch.xpack.esql.expression.Order; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec; import org.elasticsearch.xpack.esql.plan.physical.DissectExec; @@ -97,6 +101,8 @@ import org.elasticsearch.xpack.esql.plan.physical.ProjectExec; import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankOperator; import org.elasticsearch.xpack.esql.planner.EsPhysicalOperationProviders.ShardContext; import org.elasticsearch.xpack.esql.plugin.QueryPragmas; import org.elasticsearch.xpack.esql.session.Configuration; @@ -136,6 +142,7 @@ public class LocalExecutionPlanner { private final Supplier exchangeSinkSupplier; private final EnrichLookupService enrichLookupService; private final LookupFromIndexService lookupFromIndexService; + private final InferenceService inferenceService; private final PhysicalOperationProviders physicalOperationProviders; private final List shardContexts; @@ -151,6 +158,7 @@ public LocalExecutionPlanner( Supplier exchangeSinkSupplier, EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, + InferenceService inferenceService, PhysicalOperationProviders physicalOperationProviders, List shardContexts ) { @@ -165,6 +173,7 @@ public LocalExecutionPlanner( this.exchangeSinkSupplier = exchangeSinkSupplier; this.enrichLookupService = enrichLookupService; this.lookupFromIndexService = lookupFromIndexService; + this.inferenceService = inferenceService; this.physicalOperationProviders = physicalOperationProviders; this.configuration = configuration; this.shardContexts = shardContexts; @@ -225,6 +234,8 @@ private PhysicalOperation plan(PhysicalPlan node, LocalExecutionPlannerContext c return planLimit(limit, context); } else if (node instanceof MvExpandExec mvExpand) { return planMvExpand(mvExpand, context); + } else if (node instanceof RerankExec rerank) { + return planRerank(rerank, context); } else if (node instanceof ChangePointExec changePoint) { return planChangePoint(changePoint, context); } @@ -503,6 +514,37 @@ private PhysicalOperation planEnrich(EnrichExec enrich, LocalExecutionPlannerCon ); } + private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerContext context) { + PhysicalOperation source = plan(rerank.child(), context); + + Map rerankFieldsEvaluatorSuppliers = new HashMap<>(); + + for (var rerankField : rerank.rerankFields()) { + rerankFieldsEvaluatorSuppliers.put( + rerankField.name(), + EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout) + ); + } + + String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx)); + String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx)); + + int scoreChannel = -1; + + for (Attribute attr : rerank.output()) { + if (attr.name().equals(MetadataAttribute.SCORE)) { + scoreChannel = source.layout.get(attr.id()).channel(); + } + } + + logger.warn("layout {}", source.layout); + + return source.with( + new RerankOperator.Factory(inferenceService, inferenceId, queryText, rerankFieldsEvaluatorSuppliers, scoreChannel), + source.layout + ); + } + private PhysicalOperation planHashJoin(HashJoinExec join, LocalExecutionPlannerContext context) { PhysicalOperation source = plan(join.left(), context); int positionsChannel = source.layout.numberOfChannels(); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java index 58459d9429f23..924d4faee51d1 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java @@ -23,6 +23,7 @@ import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.TopN; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; @@ -38,6 +39,7 @@ import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; import java.util.ArrayList; import java.util.List; @@ -173,6 +175,11 @@ private PhysicalPlan mapUnary(UnaryPlan unary) { return new TopNExec(topN.source(), mappedChild, topN.order(), topN.limit(), null); } + if (unary instanceof Rerank rerank) { + mappedChild = addExchangeForFragment(rerank, mappedChild); + return new RerankExec(rerank.source(), mappedChild, rerank.inferenceId(), rerank.queryText(), rerank.rerankFields()); + } + // // Pipeline operators // @@ -230,7 +237,7 @@ private PhysicalPlan mapMerge(Merge merge) { } public static boolean isPipelineBreaker(LogicalPlan p) { - return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy; + return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy || p instanceof Rerank; } private PhysicalPlan addExchangeForFragment(LogicalPlan logical, PhysicalPlan child) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java index a71c491a03472..987ab4e13c70b 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java @@ -24,6 +24,7 @@ import org.elasticsearch.xpack.esql.plan.logical.MvExpand; import org.elasticsearch.xpack.esql.plan.logical.Project; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.local.LocalRelation; import org.elasticsearch.xpack.esql.plan.logical.show.ShowInfo; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; @@ -38,6 +39,7 @@ import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.ProjectExec; import org.elasticsearch.xpack.esql.plan.physical.ShowExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; import org.elasticsearch.xpack.esql.planner.AbstractPhysicalOperationProviders; import java.util.List; @@ -82,6 +84,10 @@ static PhysicalPlan mapUnary(UnaryPlan p, PhysicalPlan child) { return new GrokExec(grok.source(), child, grok.input(), grok.parser(), grok.extractedFields()); } + if (p instanceof Rerank rerank) { + return new RerankExec(rerank.source(), child, rerank.inferenceId(), rerank.queryText(), rerank.rerankFields()); + } + if (p instanceof Enrich enrich) { return new EnrichExec( enrich.source(), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java index e69de5a20a888..ecabbb4928c23 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java @@ -45,6 +45,7 @@ import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.enrich.EnrichLookupService; import org.elasticsearch.xpack.esql.enrich.LookupFromIndexService; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.plan.physical.ExchangeSinkExec; import org.elasticsearch.xpack.esql.plan.physical.ExchangeSourceExec; import org.elasticsearch.xpack.esql.plan.physical.OutputExec; @@ -83,6 +84,7 @@ public class ComputeService { private final DriverTaskRunner driverRunner; private final EnrichLookupService enrichLookupService; private final LookupFromIndexService lookupFromIndexService; + private final InferenceService inferenceService; private final ClusterService clusterService; private final AtomicLong childSessionIdGenerator = new AtomicLong(); private final DataNodeComputeHandler dataNodeComputeHandler; @@ -96,6 +98,7 @@ public ComputeService( ExchangeService exchangeService, EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, + InferenceService inferenceService, ClusterService clusterService, ThreadPool threadPool, BigArrays bigArrays, @@ -109,6 +112,7 @@ public ComputeService( this.driverRunner = new DriverTaskRunner(transportService, esqlExecutor); this.enrichLookupService = enrichLookupService; this.lookupFromIndexService = lookupFromIndexService; + this.inferenceService = inferenceService; this.clusterService = clusterService; this.dataNodeComputeHandler = new DataNodeComputeHandler(this, searchService, transportService, exchangeService, esqlExecutor); this.clusterComputeHandler = new ClusterComputeHandler( @@ -370,6 +374,7 @@ public SourceProvider createSourceProvider() { context.exchangeSinkSupplier(), enrichLookupService, lookupFromIndexService, + inferenceService, new EsPhysicalOperationProviders(context.foldCtx(), contexts, searchService.getIndicesService().getAnalysis()), contexts ); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java index 3bbb982fd5766..8dd3af215c57a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java @@ -125,12 +125,14 @@ public TransportEsqlQueryAction( bigArrays, blockFactory ); + this.inferenceService = new InferenceService(client); this.computeService = new ComputeService( searchService, transportService, exchangeService, enrichLookupService, lookupFromIndexService, + inferenceService, clusterService, threadPool, bigArrays, @@ -152,8 +154,6 @@ public TransportEsqlQueryAction( this.remoteClusterService = transportService.getRemoteClusterService(); this.usageService = usageService; - this.inferenceService = new InferenceService(client); - this.services = new TransportActionServices( transportService, searchService, diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 47cf6f83d17f1..db2944aeeb294 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -65,6 +65,7 @@ import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.index.IndexResolution; +import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.optimizer.LocalLogicalOptimizerContext; import org.elasticsearch.xpack.esql.optimizer.LocalLogicalPlanOptimizer; import org.elasticsearch.xpack.esql.optimizer.LocalPhysicalOptimizerContext; @@ -652,6 +653,7 @@ void executeSubPlan( () -> exchangeSink.createExchangeSink(() -> {}), Mockito.mock(EnrichLookupService.class), Mockito.mock(LookupFromIndexService.class), + Mockito.mock(InferenceService.class), physicalOperationProviders, List.of() ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java index 1d584a03f6804..043b767ab82a1 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/PhysicalPlanOptimizerTests.java @@ -7601,6 +7601,7 @@ private LocalExecutionPlanner.LocalExecutionPlan physicalOperationsFromPhysicalP () -> exchangeSinkHandler.createExchangeSink(() -> {}), null, null, + null, new EsPhysicalOperationProviders(FoldContext.small(), List.of(), null), List.of() ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java new file mode 100644 index 0000000000000..19253dc2ab8dd --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java @@ -0,0 +1,61 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.plan.physical.inference; + +import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.core.type.DataType; +import org.elasticsearch.xpack.esql.expression.AliasTests; +import org.elasticsearch.xpack.esql.plan.physical.AbstractPhysicalPlanSerializationTests; +import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; + +import java.io.IOException; +import java.util.List; + +import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY; + +public class RerankExecSerializationTests extends AbstractPhysicalPlanSerializationTests { + @Override + protected RerankExec createTestInstance() { + Source source = randomSource(); + PhysicalPlan child = randomChild(0); + return new RerankExec(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields()); + } + + @Override + protected RerankExec mutateInstance(RerankExec instance) throws IOException { + PhysicalPlan child = instance.child(); + Expression inferenceId = instance.inferenceId(); + Expression queryText = instance.queryText(); + List fields = instance.rerankFields(); + + switch (between(0, 3)) { + case 0 -> child = randomValueOtherThan(child, () -> randomChild(0)); + case 1 -> inferenceId = randomValueOtherThan(inferenceId, () -> string(RerankExecSerializationTests.randomIdentifier())); + case 2 -> queryText = randomValueOtherThan(queryText, () -> string(RerankExecSerializationTests.randomIdentifier())); + case 3 -> fields = randomValueOtherThan(fields, this::randomFields); + } + return new RerankExec(instance.source(), child, inferenceId, queryText, fields); + } + + @Override + protected boolean alwaysEmptySource() { + return true; + } + + private List randomFields() { + return randomList(0, 10, AliasTests::randomAlias); + } + + static Literal string(String value) { + return new Literal(EMPTY, value, DataType.KEYWORD); + } + +} diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java index d753045bee7cf..c316f6353800b 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java @@ -185,6 +185,7 @@ private LocalExecutionPlanner planner() throws IOException { null, null, null, + null, esPhysicalOperationProviders(shardContexts), shardContexts ); From 5c19b29cd91555591117986e933d8463450df3a9 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Feb 2025 17:56:40 +0100 Subject: [PATCH 07/75] Inference execution. --- .../inference/action/InferenceAction.java | 4 + .../esql/inference/InferenceService.java | 5 + .../physical/inference/RerankOperator.java | 99 ++++++++++++++++++- .../esql/planner/LocalExecutionPlanner.java | 2 - 4 files changed, 107 insertions(+), 3 deletions(-) diff --git a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/InferenceAction.java b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/InferenceAction.java index dc177795af76a..c6ccdef5c89ce 100644 --- a/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/InferenceAction.java +++ b/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/InferenceAction.java @@ -60,6 +60,10 @@ public static class Request extends BaseInferenceActionRequest { public static final ParseField QUERY = new ParseField("query"); public static final ParseField TIMEOUT = new ParseField("timeout"); + public static Builder builder(String inferenceEntityId, TaskType taskType) { + return new Builder().setInferenceEntityId(inferenceEntityId).setTaskType(taskType); + } + static final ObjectParser PARSER = new ObjectParser<>(NAME, Request.Builder::new); static { PARSER.declareStringArray(Request.Builder::setInput, INPUT); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java index 16b88eda92d57..dba271442a5cb 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java @@ -13,6 +13,7 @@ import org.elasticsearch.common.util.concurrent.ThreadContext; import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction; +import org.elasticsearch.xpack.core.inference.action.InferenceAction; import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; @@ -72,4 +73,8 @@ public void resolveInferences(List plans, ActionListener listener) { + client.execute(InferenceAction.INSTANCE, request, listener); + } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java index 665fcec7eaaf4..f5fe8f775553a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java @@ -7,18 +7,31 @@ package org.elasticsearch.xpack.esql.plan.physical.inference; +import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; +import org.elasticsearch.common.Strings; +import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; +import org.elasticsearch.compute.data.BlockUtils; +import org.elasticsearch.compute.data.DoubleBlock; +import org.elasticsearch.compute.data.ElementType; import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; import org.elasticsearch.compute.operator.EvalOperator; import org.elasticsearch.compute.operator.Operator; +import org.elasticsearch.inference.TaskType; import org.elasticsearch.logging.LogManager; import org.elasticsearch.logging.Logger; +import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xcontent.XContentFactory; +import org.elasticsearch.xpack.core.inference.action.InferenceAction; +import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; import org.elasticsearch.xpack.esql.inference.InferenceService; +import java.io.IOException; import java.util.HashMap; +import java.util.List; import java.util.Map; public class RerankOperator extends AsyncOperator { @@ -101,7 +114,17 @@ public RerankOperator( @Override protected void performAsync(Page inputPage, ActionListener listener) { - listener.onResponse(inputPage); + try { + inferenceService.doInference( + buildInferenceRequest(inputPage), + ActionListener.wrap( + (inferenceResponse) -> listener.onResponse(buildOutput(inputPage, inferenceResponse)), + listener::onFailure + ) + ); + } catch (IOException e) { + listener.onFailure(e); + } } @Override @@ -118,4 +141,78 @@ protected void releaseFetchedOnAnyThread(Page page) { public Page getOutput() { return fetchFromBuffer(); } + + private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { + int blockCount = inputPage.getBlockCount(); + Block.Builder[] blocksBuilders = new Block.Builder[blockCount]; + + for (int b = 0; b < blockCount; b++) { + if (b == scoreChannel) { + blocksBuilders[b] = ElementType.DOUBLE.newBlockBuilder(inputPage.getPositionCount(), blockFactory); + } else { + blocksBuilders[b] = inputPage.getBlock(b).elementType().newBlockBuilder(inputPage.getPositionCount(), blockFactory); + } + } + + if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { + for (var rankedDoc : rankedDocsResults.getRankedDocs()) { + for (int b = 0; b < blockCount; b++) { + if (b == scoreChannel) { + if (blocksBuilders[b] instanceof DoubleBlock.Builder scoreBlockBuilder) { + scoreBlockBuilder.beginPositionEntry().appendDouble(rankedDoc.relevanceScore()).endPositionEntry(); + } + } else { + blocksBuilders[b].copyFrom(inputPage.getBlock(b), rankedDoc.index(), rankedDoc.index() + 1); + } + } + } + + return new Page(Block.Builder.buildAll(blocksBuilders)); + } + + throw new IllegalStateException( + "Inference result has wrong type. Got [" + + inferenceResponse.getResults().getClass() + + "] while expecting [" + + RankedDocsResults.class + + "]" + ); + } + + private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOException { + String[] inputs = new String[inputPage.getPositionCount()]; + Map inputBlocks = new HashMap<>(); + + for (var entry : rerankFieldsEvaluator.entrySet()) { + inputBlocks.put(entry.getKey(), entry.getValue().eval(inputPage)); + } + + for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { + inputs[pos] = toYaml(inputBlocks, pos); + } + + return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); + } + + private String toYaml(Map inputBlocks, int position) throws IOException { + try (XContentBuilder yamlBuilder = XContentFactory.yamlBuilder().startObject()) { + for (var blockEntry : inputBlocks.entrySet()) { + String fieldName = blockEntry.getKey(); + Block currentBlock = blockEntry.getValue(); + if (currentBlock.isNull(position)) { + continue; + } + yamlBuilder.field(fieldName, toYaml(BlockUtils.toJavaObject(currentBlock, position))); + } + return Strings.toString(yamlBuilder.endObject()); + } + } + + private Object toYaml(Object value) { + return switch (value) { + case BytesRef b -> b.utf8ToString(); + case List l -> l.stream().map(this::toYaml).toList(); + default -> value; + }; + } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index d761d11bbc68f..7d70a2fbd9eaa 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -537,8 +537,6 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon } } - logger.warn("layout {}", source.layout); - return source.with( new RerankOperator.Factory(inferenceService, inferenceId, queryText, rerankFieldsEvaluatorSuppliers, scoreChannel), source.layout From 68426b95e45f0f02b9eabe98ddafa38182ef8fbc Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 3 Mar 2025 16:53:57 +0100 Subject: [PATCH 08/75] Moving RerankOperator --- .../esql/{plan/physical => }/inference/RerankOperator.java | 3 +-- .../xpack/esql/planner/LocalExecutionPlanner.java | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) rename x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/{plan/physical => }/inference/RerankOperator.java (98%) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java similarity index 98% rename from x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java rename to x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index f5fe8f775553a..4b8d428380206 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -5,7 +5,7 @@ * 2.0. */ -package org.elasticsearch.xpack.esql.plan.physical.inference; +package org.elasticsearch.xpack.esql.inference; import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; @@ -27,7 +27,6 @@ import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xpack.core.inference.action.InferenceAction; import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; -import org.elasticsearch.xpack.esql.inference.InferenceService; import java.io.IOException; import java.util.HashMap; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index bb47314557614..1133362a7e2fb 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -79,6 +79,7 @@ import org.elasticsearch.xpack.esql.evaluator.command.GrokEvaluatorExtracter; import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.RerankOperator; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec; import org.elasticsearch.xpack.esql.plan.physical.DissectExec; @@ -104,7 +105,6 @@ import org.elasticsearch.xpack.esql.plan.physical.ShowExec; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; -import org.elasticsearch.xpack.esql.plan.physical.inference.RerankOperator; import org.elasticsearch.xpack.esql.planner.EsPhysicalOperationProviders.ShardContext; import org.elasticsearch.xpack.esql.plugin.QueryPragmas; import org.elasticsearch.xpack.esql.session.Configuration; From 6b1c04c3402c7e7edbc46c5f25f2fa0b1866e791 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 4 Mar 2025 14:24:23 +0100 Subject: [PATCH 09/75] Make the rerank command SortAgnostic --- .../xpack/esql/plan/logical/inference/Rerank.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index 52828a1859dd5..efad255d18afd 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -21,6 +21,7 @@ import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import java.io.IOException; @@ -29,7 +30,7 @@ import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes; -public class Rerank extends InferencePlan { +public class Rerank extends InferencePlan implements SortAgnostic { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); private final Expression queryText; From 763ccefad4e01a70e91ab8085f783369e7040cd8 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 7 Mar 2025 17:03:46 +0100 Subject: [PATCH 10/75] Remove useless exchange for reranker. --- .../elasticsearch/xpack/esql/planner/mapper/Mapper.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java index 924d4faee51d1..58459d9429f23 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java @@ -23,7 +23,6 @@ import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.TopN; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; -import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; @@ -39,7 +38,6 @@ import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; -import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; import java.util.ArrayList; import java.util.List; @@ -175,11 +173,6 @@ private PhysicalPlan mapUnary(UnaryPlan unary) { return new TopNExec(topN.source(), mappedChild, topN.order(), topN.limit(), null); } - if (unary instanceof Rerank rerank) { - mappedChild = addExchangeForFragment(rerank, mappedChild); - return new RerankExec(rerank.source(), mappedChild, rerank.inferenceId(), rerank.queryText(), rerank.rerankFields()); - } - // // Pipeline operators // @@ -237,7 +230,7 @@ private PhysicalPlan mapMerge(Merge merge) { } public static boolean isPipelineBreaker(LogicalPlan p) { - return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy || p instanceof Rerank; + return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy; } private PhysicalPlan addExchangeForFragment(LogicalPlan logical, PhysicalPlan child) { From 395db68a3491669ee08729914f455ed5c8186973 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 7 Mar 2025 17:04:21 +0100 Subject: [PATCH 11/75] Remove trailing debug instructions. --- .../org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index ae20cf55bb766..fad1d5dcde280 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java @@ -705,8 +705,6 @@ public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { } } - System.out.println(rerankFields); - return new Rerank(source, p, visitStringOrParameter(ctx.inferenceId), visitStringOrParameter(ctx.queryText), rerankFields); }; } From e5532f9124026d13e377dd06bbfd2b183d620826 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 7 Mar 2025 17:05:05 +0100 Subject: [PATCH 12/75] Use a LinkedHashMap to preserver order of fields passed to the operator. --- .../xpack/esql/planner/LocalExecutionPlanner.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index 51306db152d8a..2a0d930fc999f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -112,6 +112,7 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; +import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Objects; @@ -528,7 +529,7 @@ private PhysicalOperation planEnrich(EnrichExec enrich, LocalExecutionPlannerCon private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerContext context) { PhysicalOperation source = plan(rerank.child(), context); - Map rerankFieldsEvaluatorSuppliers = new HashMap<>(); + Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>(); for (var rerankField : rerank.rerankFields()) { rerankFieldsEvaluatorSuppliers.put( From d311d1bd2ffbcacbba8e24ef5334ea1adf2fc7e0 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 10 Mar 2025 17:03:01 +0100 Subject: [PATCH 13/75] Refactoring --- .../xpack/esql/qa/rest/EsqlSpecTestCase.java | 4 +- .../xpack/esql/CsvTestsDataLoader.java | 18 +- .../src/main/resources/rerank.csv-spec | 17 + .../esql/src/main/antlr/EsqlBaseParser.g4 | 2 +- .../esql/inference/InferenceResolution.java | 43 +- .../esql/inference/InferenceService.java | 8 +- .../xpack/esql/inference/RerankOperator.java | 149 ++- .../xpack/esql/parser/EsqlBaseParser.interp | 2 +- .../xpack/esql/parser/EsqlBaseParser.java | 1141 ++++++++--------- .../xpack/esql/parser/LogicalPlanBuilder.java | 19 +- .../esql/plan/logical/inference/Rerank.java | 15 +- .../elasticsearch/xpack/esql/CsvTests.java | 4 + .../esql/analysis/AnalyzerTestUtils.java | 17 +- .../xpack/esql/analysis/AnalyzerTests.java | 129 ++ .../esql/parser/StatementParserTests.java | 13 - .../mock/AbstractTestInferenceService.java | 6 +- .../mock/TestRerankingServiceExtension.java | 61 +- 17 files changed, 959 insertions(+), 689 deletions(-) create mode 100644 x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java index 7ed1a63b53014..99833a3ef4c32 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java @@ -66,7 +66,7 @@ import static org.elasticsearch.xpack.esql.CsvTestUtils.loadCsvSpecValues; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.availableDatasetsForEs; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasInferenceEndpoint; -import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoint; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoints; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteInferenceEndpoint; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.loadDataSetIntoEs; import static org.elasticsearch.xpack.esql.EsqlTestUtils.classpathResources; @@ -130,7 +130,7 @@ protected EsqlSpecTestCase( @Before public void setup() throws IOException { if (supportsInferenceTestService() && clusterHasInferenceEndpoint(client()) == false) { - createInferenceEndpoint(client()); + createInferenceEndpoints(client()); } boolean supportsLookup = supportsIndexModeLookup(); diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java index c66ffb37184ef..4c30e9c9223d4 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java @@ -357,7 +357,7 @@ private static void loadDataSetIntoEs( } /** The semantic_text mapping type require an inference endpoint that needs to be setup before creating the index. */ - public static void createInferenceEndpoint(RestClient client) throws IOException { + public static void createInferenceEndpoints(RestClient client) throws IOException { Request request = new Request("PUT", "_inference/sparse_embedding/test_sparse_inference"); request.setJsonEntity(""" { @@ -371,6 +371,22 @@ public static void createInferenceEndpoint(RestClient client) throws IOException } """); client.performRequest(request); + + + request = new Request("PUT", "_inference/rerank/test_reranker"); + request.setJsonEntity(""" + { + "service": "test_reranking_service", + "service_settings": { + "model_id": "my_model", + "api_key": "abc64" + }, + "task_settings": { + "min_score": 0 + } + } + """); + client.performRequest(request); } public static void deleteInferenceEndpoint(RestClient client) throws IOException { diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec new file mode 100644 index 0000000000000..4dccd9542a1fa --- /dev/null +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -0,0 +1,17 @@ +singleFieldReranker +required_capability: rerank +required_capability: match_function + +FROM books METADATA _score +| WHERE MATCH(author, "Faulkner") +| RERANK "Faulkner" ON author WITH "test_reranker" +| KEEP book_no, author, _score +; + +book_no:keyword | author:text | _score:double +2378 | [Carol Faulkner, Holly Byers Ochoa, Lucretia Mott] | 0 +2713 | William Faulkner | 0 +2847 | Colleen Faulkner | 0 +2883 | William Faulkner | 0 +3293 | Danny Faulkner | 0 +; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 2c4a48aac077d..3283bee5da997 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -274,5 +274,5 @@ forkSubQueryProcessingCommand ; rerankCommand - : DEV_RERANK queryText=stringOrParameter (ON fields)? WITH inferenceId=stringOrParameter + : DEV_RERANK queryText=stringOrParameter ON fields WITH inferenceId=stringOrParameter ; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java index 0568b62e82851..db694634c1855 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java @@ -10,15 +10,24 @@ import org.elasticsearch.common.util.concurrent.ConcurrentCollections; import java.util.Collection; +import java.util.Collections; import java.util.Map; public class InferenceResolution { - public static final InferenceResolution EMPTY = new InferenceResolution(); + public static final InferenceResolution EMPTY = new InferenceResolution.Builder().build(); - private final Map resolvedInferences = ConcurrentCollections.newConcurrentMap(); + public static InferenceResolution.Builder builder() { + return new Builder(); + } + + private final Map resolvedInferences; + private final Map errors; - private final Map errors = ConcurrentCollections.newConcurrentMap(); + private InferenceResolution(Map resolvedInferences, Map errors) { + this.resolvedInferences = Collections.unmodifiableMap(resolvedInferences); + this.errors = Collections.unmodifiableMap(errors); + } public ResolvedInference getResolvedInference(String inferenceId) { return resolvedInferences.get(inferenceId); @@ -33,16 +42,32 @@ public String getError(String inferenceId) { if (error != null) { return error; } else { - assert false : "unresolved inference [" + inferenceId + "]"; return "unresolved inference [" + inferenceId + "]"; } } - public void addResolvedInference(ResolvedInference resolvedInference) { - resolvedInferences.putIfAbsent(resolvedInference.inferenceId(), resolvedInference); - } + public static class Builder { + + private final Map resolvedInferences; + private final Map errors; + + private Builder() { + this.resolvedInferences = ConcurrentCollections.newConcurrentMap(); + this.errors = ConcurrentCollections.newConcurrentMap(); + } + + public Builder withResolvedInference(ResolvedInference resolvedInference) { + resolvedInferences.putIfAbsent(resolvedInference.inferenceId(), resolvedInference); + return this; + } - public void addError(String inferenceId, String reason) { - errors.putIfAbsent(inferenceId, reason); + public Builder withError(String inferenceId, String reason) { + errors.putIfAbsent(inferenceId, reason); + return this; + } + + public InferenceResolution build() { + return new InferenceResolution(resolvedInferences, errors); + } } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java index dba271442a5cb..98795b66c9caa 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java @@ -48,7 +48,7 @@ public void resolveInferences(List plans, ActionListener plans, ActionListener { ResolvedInference resolvedInference = new ResolvedInference(inferenceId, r.getEndpoints().getFirst().getTaskType()); - inferenceResolution.addResolvedInference(resolvedInference); + inferenceResolutionBuilder.withResolvedInference(resolvedInference); countDownLatch.countDown(); }, e -> { - inferenceResolution.addError(inferenceId, e.getMessage()); + inferenceResolutionBuilder.withError(inferenceId, e.getMessage()); countDownLatch.countDown(); }) ); @@ -71,7 +71,7 @@ public void resolveInferences(List plans, ActionListener listener) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 4b8d428380206..87d63ab7e43d6 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -14,22 +14,20 @@ import org.elasticsearch.compute.data.BlockFactory; import org.elasticsearch.compute.data.BlockUtils; import org.elasticsearch.compute.data.DoubleBlock; -import org.elasticsearch.compute.data.ElementType; import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; import org.elasticsearch.compute.operator.EvalOperator; import org.elasticsearch.compute.operator.Operator; +import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; import org.elasticsearch.logging.LogManager; -import org.elasticsearch.logging.Logger; import org.elasticsearch.xcontent.XContentBuilder; import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xpack.core.inference.action.InferenceAction; import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; import java.io.IOException; -import java.util.HashMap; import java.util.List; import java.util.Map; @@ -38,13 +36,11 @@ public class RerankOperator extends AsyncOperator { // Move to a setting. private static final int MAX_INFERENCE_WORKER = 10; - private static final Logger logger = LogManager.getLogger(RerankOperator.class); - public record Factory( InferenceService inferenceService, String inferenceId, String queryText, - Map rerankFieldsEvaluatorSuppliers, + Map rerankFieldsEvaluatorFactories, int scoreChannel ) implements OperatorFactory { @@ -55,7 +51,7 @@ public String describe() { + " query=" + queryText + " rerank_fields=" - + rerankFieldsEvaluatorSuppliers.keySet() + + rerankFieldsEvaluatorFactories.keySet() + " scoreChannel=" + scoreChannel + "]"; @@ -68,30 +64,22 @@ public Operator get(DriverContext driverContext) { inferenceService, inferenceId, queryText, - buildRerankFieldEvaluator(rerankFieldsEvaluatorSuppliers, driverContext), + rerankFieldsEvaluatorFactories.keySet().toArray(new String[0]), + rerankFieldsEvaluatorFactories.values() + .stream() + .map(factory -> factory.get(driverContext)) + .toArray(EvalOperator.ExpressionEvaluator[]::new), scoreChannel ); } - - private Map buildRerankFieldEvaluator( - Map rerankFieldsEvaluatorSuppliers, - DriverContext driverContext - ) { - Map rerankFieldsEvaluators = new HashMap<>(); - - for (var entry : rerankFieldsEvaluatorSuppliers.entrySet()) { - rerankFieldsEvaluators.put(entry.getKey(), entry.getValue().get(driverContext)); - } - - return rerankFieldsEvaluators; - } } private final InferenceService inferenceService; private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; - private final Map rerankFieldsEvaluator; + private final String[] rerankFieldNames; + private final EvalOperator.ExpressionEvaluator[] rerankFieldsEvaluators; private final int scoreChannel; public RerankOperator( @@ -99,7 +87,8 @@ public RerankOperator( InferenceService inferenceService, String inferenceId, String queryText, - Map rerankFieldsEvaluator, + String[] rerankFieldNames, + EvalOperator.ExpressionEvaluator[] rerankFieldsEvaluators, int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); @@ -107,28 +96,33 @@ public RerankOperator( this.inferenceService = inferenceService; this.inferenceId = inferenceId; this.queryText = queryText; - this.rerankFieldsEvaluator = rerankFieldsEvaluator; + this.rerankFieldNames = rerankFieldNames; + this.rerankFieldsEvaluators = rerankFieldsEvaluators; this.scoreChannel = scoreChannel; } @Override protected void performAsync(Page inputPage, ActionListener listener) { try { + InferenceAction.Request rerankInferenceRequest = buildInferenceRequest(inputPage); + ActionListener inferenceResponseListener = ActionListener.wrap( + inferenceResponse -> listener.onResponse(buildOutput(inputPage, inferenceResponse)), + listener::onFailure + ); + inferenceService.doInference( - buildInferenceRequest(inputPage), - ActionListener.wrap( - (inferenceResponse) -> listener.onResponse(buildOutput(inputPage, inferenceResponse)), - listener::onFailure - ) + rerankInferenceRequest, + ActionListener.runAfter(inferenceResponseListener, inputPage::releaseBlocks) ); } catch (IOException e) { + inputPage.releaseBlocks(); listener.onFailure(e); } } @Override protected void doClose() { - + Releasables.closeExpectNoException(this.rerankFieldsEvaluators); } @Override @@ -143,31 +137,34 @@ public Page getOutput() { private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { int blockCount = inputPage.getBlockCount(); - Block.Builder[] blocksBuilders = new Block.Builder[blockCount]; + Block[] blocks = new Block[blockCount]; for (int b = 0; b < blockCount; b++) { if (b == scoreChannel) { - blocksBuilders[b] = ElementType.DOUBLE.newBlockBuilder(inputPage.getPositionCount(), blockFactory); + DoubleBlock.Builder scoreBlockBuilder = blockFactory.newDoubleBlockBuilder(inputPage.getPositionCount()); + blocks[b] = scoreBlockBuilder.build(); } else { - blocksBuilders[b] = inputPage.getBlock(b).elementType().newBlockBuilder(inputPage.getPositionCount(), blockFactory); + blocks[b] = inputPage.getBlock(b); } } - if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { - for (var rankedDoc : rankedDocsResults.getRankedDocs()) { - for (int b = 0; b < blockCount; b++) { - if (b == scoreChannel) { - if (blocksBuilders[b] instanceof DoubleBlock.Builder scoreBlockBuilder) { - scoreBlockBuilder.beginPositionEntry().appendDouble(rankedDoc.relevanceScore()).endPositionEntry(); - } - } else { - blocksBuilders[b].copyFrom(inputPage.getBlock(b), rankedDoc.index(), rankedDoc.index() + 1); - } - } - } - - return new Page(Block.Builder.buildAll(blocksBuilders)); - } +// if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { +// for (var rankedDoc : rankedDocsResults.getRankedDocs()) { +// for (int b = 0; b < blockCount; b++) { +// if (b == scoreChannel) { +// LogManager.getLogger(RerankOperator.class).info("Score block builder {}", blocksBuilders[b].getClass()); +// if (blocksBuilders[b] instanceof DoubleBlock.Builder scoreBlockBuilder) { +// DoubleBlock.Builder scoreBlockBuilder = new +// LogManager.getLogger(RerankOperator.class).info("Score {}", rankedDoc.relevanceScore()); +// scoreBlockBuilder.beginPositionEntry().appendDouble(rankedDoc.relevanceScore()).endPositionEntry(); +// } +// } else { +// blocksBuilders[b].copyFrom(inputPage.getBlock(b), rankedDoc.index(), rankedDoc.index() + 1); +// } +// } +// } +// return new Page(Block.Builder.buildAll(blocksBuilders)); +// } throw new IllegalStateException( "Inference result has wrong type. Got [" @@ -178,26 +175,60 @@ private Page buildOutput(Page inputPage, InferenceAction.Response inferenceRespo ); } + + /** + * book_no:keyword | author:text | _score:double + * 8077 | William Faulkner | 1.600000023841858 + * 3293 | Danny Faulkner | 1.399999976158142 + * 4724 | William Faulkner | 1.399999976158142 + * 3535 | [Beverlie Manson, Keith Faulkner] | 1.2000000476837158 + * 2847 | Colleen Faulkner | 1.2000000476837158 + * 4977 | William Faulkner | 1.0 + * 4502 | Colleen Faulkner | 1.0 + * 8423 | Paul Faulkner | 0.800000011920929 + * 5404 | William Faulkner | 0.800000011920929 + * 5119 | William Faulkner | 0.6000000238418579 + * 2713 | William Faulkner | 0.6000000238418579 + * 6151 | [Keith Faulkner, Rory Tyger] | 0.6000000238418579 + * 2378 | [Carol Faulkner, Holly Byers Ochoa, Lucretia Mott] | 0.4000000059604645 + * 2883 | William Faulkner | 0.4000000059604645 + * 3870 | Keith Faulkner | 0.4000000059604645 + * 9896 | William Faulkner | 0.20000000298023224 + * 7381 | Bettilu Stein Faulkner | 0.20000000298023224 + * 5578 | William Faulkner | 0.20000000298023224 + */* + private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOException { - String[] inputs = new String[inputPage.getPositionCount()]; - Map inputBlocks = new HashMap<>(); + Block[] inputBlocks = inputBlocks(inputPage); + + try { + String[] inputs = new String[inputPage.getPositionCount()]; + + for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { + inputs[pos] = toYaml(inputBlocks, pos); + } - for (var entry : rerankFieldsEvaluator.entrySet()) { - inputBlocks.put(entry.getKey(), entry.getValue().eval(inputPage)); + return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); + } finally { + Releasables.closeExpectNoException(inputBlocks); } + } + + private Block[] inputBlocks(Page inputPage) { + Block[] blocks = new Block[rerankFieldsEvaluators.length]; - for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { - inputs[pos] = toYaml(inputBlocks, pos); + for (int i = 0; i < rerankFieldsEvaluators.length; i++) { + blocks[i] = rerankFieldsEvaluators[i].eval(inputPage); } - return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); + return blocks; } - private String toYaml(Map inputBlocks, int position) throws IOException { + private String toYaml(Block[] inputBlocks, int position) throws IOException { try (XContentBuilder yamlBuilder = XContentFactory.yamlBuilder().startObject()) { - for (var blockEntry : inputBlocks.entrySet()) { - String fieldName = blockEntry.getKey(); - Block currentBlock = blockEntry.getValue(); + for (int i = 0; i < inputBlocks.length; i++) { + String fieldName = rerankFieldNames[i]; + Block currentBlock = inputBlocks[i]; if (currentBlock.isNull(position)) { continue; } 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 c494ee1193166..fe9f3c75d9eed 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 @@ -363,4 +363,4 @@ joinPredicate atn: -[4, 1, 140, 725, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 160, 8, 1, 10, 1, 12, 1, 163, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 171, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 198, 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, 211, 8, 7, 10, 7, 12, 7, 214, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 219, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 227, 8, 9, 10, 9, 12, 9, 230, 9, 9, 1, 9, 3, 9, 233, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 238, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 250, 8, 13, 10, 13, 12, 13, 253, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 259, 8, 14, 10, 14, 12, 14, 262, 9, 14, 1, 14, 3, 14, 265, 8, 14, 1, 14, 1, 14, 3, 14, 269, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 276, 8, 16, 1, 16, 1, 16, 3, 16, 280, 8, 16, 1, 17, 1, 17, 1, 17, 5, 17, 285, 8, 17, 10, 17, 12, 17, 288, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 293, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 298, 8, 19, 10, 19, 12, 19, 301, 9, 19, 1, 20, 1, 20, 1, 20, 5, 20, 306, 8, 20, 10, 20, 12, 20, 309, 9, 20, 1, 21, 1, 21, 1, 21, 5, 21, 314, 8, 21, 10, 21, 12, 21, 317, 9, 21, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 323, 8, 23, 1, 24, 1, 24, 3, 24, 327, 8, 24, 1, 25, 1, 25, 3, 25, 331, 8, 25, 1, 26, 1, 26, 3, 26, 335, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 344, 8, 28, 10, 28, 12, 28, 347, 9, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 29, 1, 29, 3, 29, 355, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 367, 8, 32, 10, 32, 12, 32, 370, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 380, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 392, 8, 37, 10, 37, 12, 37, 395, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 415, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 421, 8, 42, 10, 42, 12, 42, 424, 9, 42, 3, 42, 426, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 431, 8, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 444, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 450, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 457, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 4, 49, 466, 8, 49, 11, 49, 12, 49, 467, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 480, 8, 51, 10, 51, 12, 51, 483, 9, 51, 1, 52, 1, 52, 1, 52, 3, 52, 488, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 494, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 506, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 513, 8, 54, 10, 54, 12, 54, 516, 9, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 523, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 528, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 536, 8, 54, 10, 54, 12, 54, 539, 9, 54, 1, 55, 1, 55, 3, 55, 543, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 550, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 555, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 560, 8, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 570, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 576, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 584, 8, 58, 10, 58, 12, 58, 587, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 597, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 602, 8, 59, 10, 59, 12, 59, 605, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 613, 8, 60, 10, 60, 12, 60, 616, 9, 60, 1, 60, 1, 60, 3, 60, 620, 8, 60, 3, 60, 622, 8, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 632, 8, 62, 10, 62, 12, 62, 635, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 656, 8, 64, 10, 64, 12, 64, 659, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 667, 8, 64, 10, 64, 12, 64, 670, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 678, 8, 64, 10, 64, 12, 64, 681, 9, 64, 1, 64, 1, 64, 3, 64, 685, 8, 64, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 691, 8, 66, 1, 67, 3, 67, 694, 8, 67, 1, 67, 1, 67, 1, 68, 3, 68, 699, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 718, 8, 73, 10, 73, 12, 73, 721, 9, 73, 1, 74, 1, 74, 1, 74, 0, 5, 2, 102, 108, 116, 118, 75, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 0, 9, 2, 0, 50, 50, 103, 103, 1, 0, 97, 98, 2, 0, 58, 58, 63, 63, 2, 0, 66, 66, 69, 69, 1, 0, 85, 86, 1, 0, 87, 89, 2, 0, 65, 65, 77, 77, 2, 0, 78, 78, 80, 84, 2, 0, 19, 19, 21, 22, 753, 0, 150, 1, 0, 0, 0, 2, 153, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 6, 197, 1, 0, 0, 0, 8, 199, 1, 0, 0, 0, 10, 202, 1, 0, 0, 0, 12, 204, 1, 0, 0, 0, 14, 207, 1, 0, 0, 0, 16, 218, 1, 0, 0, 0, 18, 222, 1, 0, 0, 0, 20, 237, 1, 0, 0, 0, 22, 241, 1, 0, 0, 0, 24, 243, 1, 0, 0, 0, 26, 245, 1, 0, 0, 0, 28, 254, 1, 0, 0, 0, 30, 270, 1, 0, 0, 0, 32, 273, 1, 0, 0, 0, 34, 281, 1, 0, 0, 0, 36, 289, 1, 0, 0, 0, 38, 294, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 310, 1, 0, 0, 0, 44, 318, 1, 0, 0, 0, 46, 322, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 330, 1, 0, 0, 0, 52, 334, 1, 0, 0, 0, 54, 336, 1, 0, 0, 0, 56, 339, 1, 0, 0, 0, 58, 348, 1, 0, 0, 0, 60, 356, 1, 0, 0, 0, 62, 359, 1, 0, 0, 0, 64, 362, 1, 0, 0, 0, 66, 371, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 381, 1, 0, 0, 0, 72, 385, 1, 0, 0, 0, 74, 388, 1, 0, 0, 0, 76, 396, 1, 0, 0, 0, 78, 400, 1, 0, 0, 0, 80, 403, 1, 0, 0, 0, 82, 407, 1, 0, 0, 0, 84, 410, 1, 0, 0, 0, 86, 430, 1, 0, 0, 0, 88, 434, 1, 0, 0, 0, 90, 439, 1, 0, 0, 0, 92, 445, 1, 0, 0, 0, 94, 458, 1, 0, 0, 0, 96, 461, 1, 0, 0, 0, 98, 465, 1, 0, 0, 0, 100, 469, 1, 0, 0, 0, 102, 473, 1, 0, 0, 0, 104, 487, 1, 0, 0, 0, 106, 489, 1, 0, 0, 0, 108, 527, 1, 0, 0, 0, 110, 554, 1, 0, 0, 0, 112, 556, 1, 0, 0, 0, 114, 569, 1, 0, 0, 0, 116, 575, 1, 0, 0, 0, 118, 596, 1, 0, 0, 0, 120, 606, 1, 0, 0, 0, 122, 625, 1, 0, 0, 0, 124, 627, 1, 0, 0, 0, 126, 638, 1, 0, 0, 0, 128, 684, 1, 0, 0, 0, 130, 686, 1, 0, 0, 0, 132, 690, 1, 0, 0, 0, 134, 693, 1, 0, 0, 0, 136, 698, 1, 0, 0, 0, 138, 702, 1, 0, 0, 0, 140, 704, 1, 0, 0, 0, 142, 706, 1, 0, 0, 0, 144, 711, 1, 0, 0, 0, 146, 713, 1, 0, 0, 0, 148, 722, 1, 0, 0, 0, 150, 151, 3, 2, 1, 0, 151, 152, 5, 0, 0, 1, 152, 1, 1, 0, 0, 0, 153, 154, 6, 1, -1, 0, 154, 155, 3, 4, 2, 0, 155, 161, 1, 0, 0, 0, 156, 157, 10, 1, 0, 0, 157, 158, 5, 49, 0, 0, 158, 160, 3, 6, 3, 0, 159, 156, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 3, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 171, 3, 78, 39, 0, 165, 171, 3, 18, 9, 0, 166, 171, 3, 12, 6, 0, 167, 171, 3, 82, 41, 0, 168, 169, 4, 2, 1, 0, 169, 171, 3, 28, 14, 0, 170, 164, 1, 0, 0, 0, 170, 165, 1, 0, 0, 0, 170, 166, 1, 0, 0, 0, 170, 167, 1, 0, 0, 0, 170, 168, 1, 0, 0, 0, 171, 5, 1, 0, 0, 0, 172, 198, 3, 30, 15, 0, 173, 198, 3, 8, 4, 0, 174, 198, 3, 60, 30, 0, 175, 198, 3, 54, 27, 0, 176, 198, 3, 32, 16, 0, 177, 198, 3, 56, 28, 0, 178, 198, 3, 62, 31, 0, 179, 198, 3, 64, 32, 0, 180, 198, 3, 68, 34, 0, 181, 198, 3, 70, 35, 0, 182, 198, 3, 84, 42, 0, 183, 198, 3, 72, 36, 0, 184, 198, 3, 142, 71, 0, 185, 186, 4, 3, 2, 0, 186, 198, 3, 90, 45, 0, 187, 188, 4, 3, 3, 0, 188, 198, 3, 88, 44, 0, 189, 190, 4, 3, 4, 0, 190, 198, 3, 92, 46, 0, 191, 192, 4, 3, 5, 0, 192, 198, 3, 94, 47, 0, 193, 194, 4, 3, 6, 0, 194, 198, 3, 96, 48, 0, 195, 196, 4, 3, 7, 0, 196, 198, 3, 106, 53, 0, 197, 172, 1, 0, 0, 0, 197, 173, 1, 0, 0, 0, 197, 174, 1, 0, 0, 0, 197, 175, 1, 0, 0, 0, 197, 176, 1, 0, 0, 0, 197, 177, 1, 0, 0, 0, 197, 178, 1, 0, 0, 0, 197, 179, 1, 0, 0, 0, 197, 180, 1, 0, 0, 0, 197, 181, 1, 0, 0, 0, 197, 182, 1, 0, 0, 0, 197, 183, 1, 0, 0, 0, 197, 184, 1, 0, 0, 0, 197, 185, 1, 0, 0, 0, 197, 187, 1, 0, 0, 0, 197, 189, 1, 0, 0, 0, 197, 191, 1, 0, 0, 0, 197, 193, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 198, 7, 1, 0, 0, 0, 199, 200, 5, 14, 0, 0, 200, 201, 3, 108, 54, 0, 201, 9, 1, 0, 0, 0, 202, 203, 3, 44, 22, 0, 203, 11, 1, 0, 0, 0, 204, 205, 5, 11, 0, 0, 205, 206, 3, 14, 7, 0, 206, 13, 1, 0, 0, 0, 207, 212, 3, 16, 8, 0, 208, 209, 5, 62, 0, 0, 209, 211, 3, 16, 8, 0, 210, 208, 1, 0, 0, 0, 211, 214, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 15, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 215, 216, 3, 38, 19, 0, 216, 217, 5, 59, 0, 0, 217, 219, 1, 0, 0, 0, 218, 215, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 3, 108, 54, 0, 221, 17, 1, 0, 0, 0, 222, 223, 5, 17, 0, 0, 223, 228, 3, 20, 10, 0, 224, 225, 5, 62, 0, 0, 225, 227, 3, 20, 10, 0, 226, 224, 1, 0, 0, 0, 227, 230, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 232, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 231, 233, 3, 26, 13, 0, 232, 231, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 19, 1, 0, 0, 0, 234, 235, 3, 22, 11, 0, 235, 236, 5, 61, 0, 0, 236, 238, 1, 0, 0, 0, 237, 234, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 3, 24, 12, 0, 240, 21, 1, 0, 0, 0, 241, 242, 7, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 7, 0, 0, 0, 244, 25, 1, 0, 0, 0, 245, 246, 5, 102, 0, 0, 246, 251, 5, 103, 0, 0, 247, 248, 5, 62, 0, 0, 248, 250, 5, 103, 0, 0, 249, 247, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 27, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 255, 5, 24, 0, 0, 255, 260, 3, 20, 10, 0, 256, 257, 5, 62, 0, 0, 257, 259, 3, 20, 10, 0, 258, 256, 1, 0, 0, 0, 259, 262, 1, 0, 0, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 264, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, 263, 265, 3, 34, 17, 0, 264, 263, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 267, 5, 53, 0, 0, 267, 269, 3, 14, 7, 0, 268, 266, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 29, 1, 0, 0, 0, 270, 271, 5, 8, 0, 0, 271, 272, 3, 14, 7, 0, 272, 31, 1, 0, 0, 0, 273, 275, 5, 13, 0, 0, 274, 276, 3, 34, 17, 0, 275, 274, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 279, 1, 0, 0, 0, 277, 278, 5, 53, 0, 0, 278, 280, 3, 14, 7, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 33, 1, 0, 0, 0, 281, 286, 3, 36, 18, 0, 282, 283, 5, 62, 0, 0, 283, 285, 3, 36, 18, 0, 284, 282, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 35, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 292, 3, 16, 8, 0, 290, 291, 5, 14, 0, 0, 291, 293, 3, 108, 54, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 37, 1, 0, 0, 0, 294, 299, 3, 50, 25, 0, 295, 296, 5, 64, 0, 0, 296, 298, 3, 50, 25, 0, 297, 295, 1, 0, 0, 0, 298, 301, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 39, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 307, 3, 46, 23, 0, 303, 304, 5, 64, 0, 0, 304, 306, 3, 46, 23, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 41, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 40, 20, 0, 311, 312, 5, 62, 0, 0, 312, 314, 3, 40, 20, 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, 43, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 319, 7, 1, 0, 0, 319, 45, 1, 0, 0, 0, 320, 323, 5, 130, 0, 0, 321, 323, 3, 48, 24, 0, 322, 320, 1, 0, 0, 0, 322, 321, 1, 0, 0, 0, 323, 47, 1, 0, 0, 0, 324, 327, 5, 75, 0, 0, 325, 327, 5, 92, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 49, 1, 0, 0, 0, 328, 331, 3, 44, 22, 0, 329, 331, 3, 48, 24, 0, 330, 328, 1, 0, 0, 0, 330, 329, 1, 0, 0, 0, 331, 51, 1, 0, 0, 0, 332, 335, 3, 138, 69, 0, 333, 335, 3, 48, 24, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 53, 1, 0, 0, 0, 336, 337, 5, 10, 0, 0, 337, 338, 5, 51, 0, 0, 338, 55, 1, 0, 0, 0, 339, 340, 5, 12, 0, 0, 340, 345, 3, 58, 29, 0, 341, 342, 5, 62, 0, 0, 342, 344, 3, 58, 29, 0, 343, 341, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 57, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 350, 3, 108, 54, 0, 349, 351, 7, 2, 0, 0, 350, 349, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 353, 5, 73, 0, 0, 353, 355, 7, 3, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 59, 1, 0, 0, 0, 356, 357, 5, 27, 0, 0, 357, 358, 3, 42, 21, 0, 358, 61, 1, 0, 0, 0, 359, 360, 5, 26, 0, 0, 360, 361, 3, 42, 21, 0, 361, 63, 1, 0, 0, 0, 362, 363, 5, 29, 0, 0, 363, 368, 3, 66, 33, 0, 364, 365, 5, 62, 0, 0, 365, 367, 3, 66, 33, 0, 366, 364, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 65, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 3, 40, 20, 0, 372, 373, 5, 56, 0, 0, 373, 374, 3, 40, 20, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 7, 0, 0, 376, 377, 3, 118, 59, 0, 377, 379, 3, 138, 69, 0, 378, 380, 3, 74, 37, 0, 379, 378, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 69, 1, 0, 0, 0, 381, 382, 5, 9, 0, 0, 382, 383, 3, 118, 59, 0, 383, 384, 3, 138, 69, 0, 384, 71, 1, 0, 0, 0, 385, 386, 5, 25, 0, 0, 386, 387, 3, 38, 19, 0, 387, 73, 1, 0, 0, 0, 388, 393, 3, 76, 38, 0, 389, 390, 5, 62, 0, 0, 390, 392, 3, 76, 38, 0, 391, 389, 1, 0, 0, 0, 392, 395, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 75, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 396, 397, 3, 44, 22, 0, 397, 398, 5, 59, 0, 0, 398, 399, 3, 128, 64, 0, 399, 77, 1, 0, 0, 0, 400, 401, 5, 6, 0, 0, 401, 402, 3, 80, 40, 0, 402, 79, 1, 0, 0, 0, 403, 404, 5, 93, 0, 0, 404, 405, 3, 2, 1, 0, 405, 406, 5, 94, 0, 0, 406, 81, 1, 0, 0, 0, 407, 408, 5, 30, 0, 0, 408, 409, 5, 137, 0, 0, 409, 83, 1, 0, 0, 0, 410, 411, 5, 5, 0, 0, 411, 414, 5, 35, 0, 0, 412, 413, 5, 54, 0, 0, 413, 415, 3, 40, 20, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 425, 1, 0, 0, 0, 416, 417, 5, 55, 0, 0, 417, 422, 3, 86, 43, 0, 418, 419, 5, 62, 0, 0, 419, 421, 3, 86, 43, 0, 420, 418, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425, 416, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 85, 1, 0, 0, 0, 427, 428, 3, 40, 20, 0, 428, 429, 5, 59, 0, 0, 429, 431, 1, 0, 0, 0, 430, 427, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 3, 40, 20, 0, 433, 87, 1, 0, 0, 0, 434, 435, 5, 23, 0, 0, 435, 436, 3, 20, 10, 0, 436, 437, 5, 54, 0, 0, 437, 438, 3, 42, 21, 0, 438, 89, 1, 0, 0, 0, 439, 440, 5, 15, 0, 0, 440, 443, 3, 34, 17, 0, 441, 442, 5, 53, 0, 0, 442, 444, 3, 14, 7, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 91, 1, 0, 0, 0, 445, 446, 5, 4, 0, 0, 446, 449, 3, 38, 19, 0, 447, 448, 5, 54, 0, 0, 448, 450, 3, 38, 19, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 456, 1, 0, 0, 0, 451, 452, 5, 56, 0, 0, 452, 453, 3, 38, 19, 0, 453, 454, 5, 62, 0, 0, 454, 455, 3, 38, 19, 0, 455, 457, 1, 0, 0, 0, 456, 451, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 93, 1, 0, 0, 0, 458, 459, 5, 28, 0, 0, 459, 460, 3, 42, 21, 0, 460, 95, 1, 0, 0, 0, 461, 462, 5, 18, 0, 0, 462, 463, 3, 98, 49, 0, 463, 97, 1, 0, 0, 0, 464, 466, 3, 100, 50, 0, 465, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 99, 1, 0, 0, 0, 469, 470, 5, 95, 0, 0, 470, 471, 3, 102, 51, 0, 471, 472, 5, 96, 0, 0, 472, 101, 1, 0, 0, 0, 473, 474, 6, 51, -1, 0, 474, 475, 3, 104, 52, 0, 475, 481, 1, 0, 0, 0, 476, 477, 10, 1, 0, 0, 477, 478, 5, 49, 0, 0, 478, 480, 3, 104, 52, 0, 479, 476, 1, 0, 0, 0, 480, 483, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 103, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 488, 3, 8, 4, 0, 485, 488, 3, 56, 28, 0, 486, 488, 3, 54, 27, 0, 487, 484, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 487, 486, 1, 0, 0, 0, 488, 105, 1, 0, 0, 0, 489, 490, 5, 16, 0, 0, 490, 493, 3, 52, 26, 0, 491, 492, 5, 54, 0, 0, 492, 494, 3, 14, 7, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 5, 55, 0, 0, 496, 497, 3, 52, 26, 0, 497, 107, 1, 0, 0, 0, 498, 499, 6, 54, -1, 0, 499, 500, 5, 71, 0, 0, 500, 528, 3, 108, 54, 8, 501, 528, 3, 114, 57, 0, 502, 528, 3, 110, 55, 0, 503, 505, 3, 114, 57, 0, 504, 506, 5, 71, 0, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 5, 67, 0, 0, 508, 509, 5, 95, 0, 0, 509, 514, 3, 114, 57, 0, 510, 511, 5, 62, 0, 0, 511, 513, 3, 114, 57, 0, 512, 510, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 514, 1, 0, 0, 0, 517, 518, 5, 96, 0, 0, 518, 528, 1, 0, 0, 0, 519, 520, 3, 114, 57, 0, 520, 522, 5, 68, 0, 0, 521, 523, 5, 71, 0, 0, 522, 521, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 5, 72, 0, 0, 525, 528, 1, 0, 0, 0, 526, 528, 3, 112, 56, 0, 527, 498, 1, 0, 0, 0, 527, 501, 1, 0, 0, 0, 527, 502, 1, 0, 0, 0, 527, 503, 1, 0, 0, 0, 527, 519, 1, 0, 0, 0, 527, 526, 1, 0, 0, 0, 528, 537, 1, 0, 0, 0, 529, 530, 10, 5, 0, 0, 530, 531, 5, 57, 0, 0, 531, 536, 3, 108, 54, 6, 532, 533, 10, 4, 0, 0, 533, 534, 5, 74, 0, 0, 534, 536, 3, 108, 54, 5, 535, 529, 1, 0, 0, 0, 535, 532, 1, 0, 0, 0, 536, 539, 1, 0, 0, 0, 537, 535, 1, 0, 0, 0, 537, 538, 1, 0, 0, 0, 538, 109, 1, 0, 0, 0, 539, 537, 1, 0, 0, 0, 540, 542, 3, 114, 57, 0, 541, 543, 5, 71, 0, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 5, 70, 0, 0, 545, 546, 3, 138, 69, 0, 546, 555, 1, 0, 0, 0, 547, 549, 3, 114, 57, 0, 548, 550, 5, 71, 0, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 76, 0, 0, 552, 553, 3, 138, 69, 0, 553, 555, 1, 0, 0, 0, 554, 540, 1, 0, 0, 0, 554, 547, 1, 0, 0, 0, 555, 111, 1, 0, 0, 0, 556, 559, 3, 38, 19, 0, 557, 558, 5, 60, 0, 0, 558, 560, 3, 10, 5, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 5, 61, 0, 0, 562, 563, 3, 128, 64, 0, 563, 113, 1, 0, 0, 0, 564, 570, 3, 116, 58, 0, 565, 566, 3, 116, 58, 0, 566, 567, 3, 140, 70, 0, 567, 568, 3, 116, 58, 0, 568, 570, 1, 0, 0, 0, 569, 564, 1, 0, 0, 0, 569, 565, 1, 0, 0, 0, 570, 115, 1, 0, 0, 0, 571, 572, 6, 58, -1, 0, 572, 576, 3, 118, 59, 0, 573, 574, 7, 4, 0, 0, 574, 576, 3, 116, 58, 3, 575, 571, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 576, 585, 1, 0, 0, 0, 577, 578, 10, 2, 0, 0, 578, 579, 7, 5, 0, 0, 579, 584, 3, 116, 58, 3, 580, 581, 10, 1, 0, 0, 581, 582, 7, 4, 0, 0, 582, 584, 3, 116, 58, 2, 583, 577, 1, 0, 0, 0, 583, 580, 1, 0, 0, 0, 584, 587, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 117, 1, 0, 0, 0, 587, 585, 1, 0, 0, 0, 588, 589, 6, 59, -1, 0, 589, 597, 3, 128, 64, 0, 590, 597, 3, 38, 19, 0, 591, 597, 3, 120, 60, 0, 592, 593, 5, 95, 0, 0, 593, 594, 3, 108, 54, 0, 594, 595, 5, 96, 0, 0, 595, 597, 1, 0, 0, 0, 596, 588, 1, 0, 0, 0, 596, 590, 1, 0, 0, 0, 596, 591, 1, 0, 0, 0, 596, 592, 1, 0, 0, 0, 597, 603, 1, 0, 0, 0, 598, 599, 10, 1, 0, 0, 599, 600, 5, 60, 0, 0, 600, 602, 3, 10, 5, 0, 601, 598, 1, 0, 0, 0, 602, 605, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 119, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 3, 122, 61, 0, 607, 621, 5, 95, 0, 0, 608, 622, 5, 87, 0, 0, 609, 614, 3, 108, 54, 0, 610, 611, 5, 62, 0, 0, 611, 613, 3, 108, 54, 0, 612, 610, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 619, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 5, 62, 0, 0, 618, 620, 3, 124, 62, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 622, 1, 0, 0, 0, 621, 608, 1, 0, 0, 0, 621, 609, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 624, 5, 96, 0, 0, 624, 121, 1, 0, 0, 0, 625, 626, 3, 50, 25, 0, 626, 123, 1, 0, 0, 0, 627, 628, 5, 90, 0, 0, 628, 633, 3, 126, 63, 0, 629, 630, 5, 62, 0, 0, 630, 632, 3, 126, 63, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 636, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 637, 5, 91, 0, 0, 637, 125, 1, 0, 0, 0, 638, 639, 3, 138, 69, 0, 639, 640, 5, 61, 0, 0, 640, 641, 3, 128, 64, 0, 641, 127, 1, 0, 0, 0, 642, 685, 5, 72, 0, 0, 643, 644, 3, 136, 68, 0, 644, 645, 5, 97, 0, 0, 645, 685, 1, 0, 0, 0, 646, 685, 3, 134, 67, 0, 647, 685, 3, 136, 68, 0, 648, 685, 3, 130, 65, 0, 649, 685, 3, 48, 24, 0, 650, 685, 3, 138, 69, 0, 651, 652, 5, 93, 0, 0, 652, 657, 3, 132, 66, 0, 653, 654, 5, 62, 0, 0, 654, 656, 3, 132, 66, 0, 655, 653, 1, 0, 0, 0, 656, 659, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 660, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 660, 661, 5, 94, 0, 0, 661, 685, 1, 0, 0, 0, 662, 663, 5, 93, 0, 0, 663, 668, 3, 130, 65, 0, 664, 665, 5, 62, 0, 0, 665, 667, 3, 130, 65, 0, 666, 664, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 671, 672, 5, 94, 0, 0, 672, 685, 1, 0, 0, 0, 673, 674, 5, 93, 0, 0, 674, 679, 3, 138, 69, 0, 675, 676, 5, 62, 0, 0, 676, 678, 3, 138, 69, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 94, 0, 0, 683, 685, 1, 0, 0, 0, 684, 642, 1, 0, 0, 0, 684, 643, 1, 0, 0, 0, 684, 646, 1, 0, 0, 0, 684, 647, 1, 0, 0, 0, 684, 648, 1, 0, 0, 0, 684, 649, 1, 0, 0, 0, 684, 650, 1, 0, 0, 0, 684, 651, 1, 0, 0, 0, 684, 662, 1, 0, 0, 0, 684, 673, 1, 0, 0, 0, 685, 129, 1, 0, 0, 0, 686, 687, 7, 6, 0, 0, 687, 131, 1, 0, 0, 0, 688, 691, 3, 134, 67, 0, 689, 691, 3, 136, 68, 0, 690, 688, 1, 0, 0, 0, 690, 689, 1, 0, 0, 0, 691, 133, 1, 0, 0, 0, 692, 694, 7, 4, 0, 0, 693, 692, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 1, 0, 0, 0, 695, 696, 5, 52, 0, 0, 696, 135, 1, 0, 0, 0, 697, 699, 7, 4, 0, 0, 698, 697, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 5, 51, 0, 0, 701, 137, 1, 0, 0, 0, 702, 703, 5, 50, 0, 0, 703, 139, 1, 0, 0, 0, 704, 705, 7, 7, 0, 0, 705, 141, 1, 0, 0, 0, 706, 707, 7, 8, 0, 0, 707, 708, 5, 110, 0, 0, 708, 709, 3, 144, 72, 0, 709, 710, 3, 146, 73, 0, 710, 143, 1, 0, 0, 0, 711, 712, 3, 20, 10, 0, 712, 145, 1, 0, 0, 0, 713, 714, 5, 54, 0, 0, 714, 719, 3, 148, 74, 0, 715, 716, 5, 62, 0, 0, 716, 718, 3, 148, 74, 0, 717, 715, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 147, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 3, 114, 57, 0, 723, 149, 1, 0, 0, 0, 68, 161, 170, 197, 212, 218, 228, 232, 237, 251, 260, 264, 268, 275, 279, 286, 292, 299, 307, 315, 322, 326, 330, 334, 345, 350, 354, 368, 379, 393, 414, 422, 425, 430, 443, 449, 456, 467, 481, 487, 493, 505, 514, 522, 527, 535, 537, 542, 549, 554, 559, 569, 575, 583, 585, 596, 603, 614, 619, 621, 633, 657, 668, 679, 684, 690, 693, 698, 719] \ No newline at end of file +[4, 1, 140, 723, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 160, 8, 1, 10, 1, 12, 1, 163, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 171, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 198, 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, 211, 8, 7, 10, 7, 12, 7, 214, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 219, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 227, 8, 9, 10, 9, 12, 9, 230, 9, 9, 1, 9, 3, 9, 233, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 238, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 250, 8, 13, 10, 13, 12, 13, 253, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 259, 8, 14, 10, 14, 12, 14, 262, 9, 14, 1, 14, 3, 14, 265, 8, 14, 1, 14, 1, 14, 3, 14, 269, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 276, 8, 16, 1, 16, 1, 16, 3, 16, 280, 8, 16, 1, 17, 1, 17, 1, 17, 5, 17, 285, 8, 17, 10, 17, 12, 17, 288, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 293, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 298, 8, 19, 10, 19, 12, 19, 301, 9, 19, 1, 20, 1, 20, 1, 20, 5, 20, 306, 8, 20, 10, 20, 12, 20, 309, 9, 20, 1, 21, 1, 21, 1, 21, 5, 21, 314, 8, 21, 10, 21, 12, 21, 317, 9, 21, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 323, 8, 23, 1, 24, 1, 24, 3, 24, 327, 8, 24, 1, 25, 1, 25, 3, 25, 331, 8, 25, 1, 26, 1, 26, 3, 26, 335, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 344, 8, 28, 10, 28, 12, 28, 347, 9, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 29, 1, 29, 3, 29, 355, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 367, 8, 32, 10, 32, 12, 32, 370, 9, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 380, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 5, 37, 392, 8, 37, 10, 37, 12, 37, 395, 9, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 415, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 421, 8, 42, 10, 42, 12, 42, 424, 9, 42, 3, 42, 426, 8, 42, 1, 43, 1, 43, 1, 43, 3, 43, 431, 8, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 444, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 450, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 457, 8, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 4, 49, 466, 8, 49, 11, 49, 12, 49, 467, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 480, 8, 51, 10, 51, 12, 51, 483, 9, 51, 1, 52, 1, 52, 1, 52, 3, 52, 488, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 504, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 511, 8, 54, 10, 54, 12, 54, 514, 9, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 521, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 526, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 534, 8, 54, 10, 54, 12, 54, 537, 9, 54, 1, 55, 1, 55, 3, 55, 541, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 548, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 553, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 558, 8, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 568, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 574, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 582, 8, 58, 10, 58, 12, 58, 585, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 595, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 600, 8, 59, 10, 59, 12, 59, 603, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 611, 8, 60, 10, 60, 12, 60, 614, 9, 60, 1, 60, 1, 60, 3, 60, 618, 8, 60, 3, 60, 620, 8, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 630, 8, 62, 10, 62, 12, 62, 633, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 654, 8, 64, 10, 64, 12, 64, 657, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 665, 8, 64, 10, 64, 12, 64, 668, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 676, 8, 64, 10, 64, 12, 64, 679, 9, 64, 1, 64, 1, 64, 3, 64, 683, 8, 64, 1, 65, 1, 65, 1, 66, 1, 66, 3, 66, 689, 8, 66, 1, 67, 3, 67, 692, 8, 67, 1, 67, 1, 67, 1, 68, 3, 68, 697, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 716, 8, 73, 10, 73, 12, 73, 719, 9, 73, 1, 74, 1, 74, 1, 74, 0, 5, 2, 102, 108, 116, 118, 75, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 0, 9, 2, 0, 50, 50, 103, 103, 1, 0, 97, 98, 2, 0, 58, 58, 63, 63, 2, 0, 66, 66, 69, 69, 1, 0, 85, 86, 1, 0, 87, 89, 2, 0, 65, 65, 77, 77, 2, 0, 78, 78, 80, 84, 2, 0, 19, 19, 21, 22, 750, 0, 150, 1, 0, 0, 0, 2, 153, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 6, 197, 1, 0, 0, 0, 8, 199, 1, 0, 0, 0, 10, 202, 1, 0, 0, 0, 12, 204, 1, 0, 0, 0, 14, 207, 1, 0, 0, 0, 16, 218, 1, 0, 0, 0, 18, 222, 1, 0, 0, 0, 20, 237, 1, 0, 0, 0, 22, 241, 1, 0, 0, 0, 24, 243, 1, 0, 0, 0, 26, 245, 1, 0, 0, 0, 28, 254, 1, 0, 0, 0, 30, 270, 1, 0, 0, 0, 32, 273, 1, 0, 0, 0, 34, 281, 1, 0, 0, 0, 36, 289, 1, 0, 0, 0, 38, 294, 1, 0, 0, 0, 40, 302, 1, 0, 0, 0, 42, 310, 1, 0, 0, 0, 44, 318, 1, 0, 0, 0, 46, 322, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 330, 1, 0, 0, 0, 52, 334, 1, 0, 0, 0, 54, 336, 1, 0, 0, 0, 56, 339, 1, 0, 0, 0, 58, 348, 1, 0, 0, 0, 60, 356, 1, 0, 0, 0, 62, 359, 1, 0, 0, 0, 64, 362, 1, 0, 0, 0, 66, 371, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 381, 1, 0, 0, 0, 72, 385, 1, 0, 0, 0, 74, 388, 1, 0, 0, 0, 76, 396, 1, 0, 0, 0, 78, 400, 1, 0, 0, 0, 80, 403, 1, 0, 0, 0, 82, 407, 1, 0, 0, 0, 84, 410, 1, 0, 0, 0, 86, 430, 1, 0, 0, 0, 88, 434, 1, 0, 0, 0, 90, 439, 1, 0, 0, 0, 92, 445, 1, 0, 0, 0, 94, 458, 1, 0, 0, 0, 96, 461, 1, 0, 0, 0, 98, 465, 1, 0, 0, 0, 100, 469, 1, 0, 0, 0, 102, 473, 1, 0, 0, 0, 104, 487, 1, 0, 0, 0, 106, 489, 1, 0, 0, 0, 108, 525, 1, 0, 0, 0, 110, 552, 1, 0, 0, 0, 112, 554, 1, 0, 0, 0, 114, 567, 1, 0, 0, 0, 116, 573, 1, 0, 0, 0, 118, 594, 1, 0, 0, 0, 120, 604, 1, 0, 0, 0, 122, 623, 1, 0, 0, 0, 124, 625, 1, 0, 0, 0, 126, 636, 1, 0, 0, 0, 128, 682, 1, 0, 0, 0, 130, 684, 1, 0, 0, 0, 132, 688, 1, 0, 0, 0, 134, 691, 1, 0, 0, 0, 136, 696, 1, 0, 0, 0, 138, 700, 1, 0, 0, 0, 140, 702, 1, 0, 0, 0, 142, 704, 1, 0, 0, 0, 144, 709, 1, 0, 0, 0, 146, 711, 1, 0, 0, 0, 148, 720, 1, 0, 0, 0, 150, 151, 3, 2, 1, 0, 151, 152, 5, 0, 0, 1, 152, 1, 1, 0, 0, 0, 153, 154, 6, 1, -1, 0, 154, 155, 3, 4, 2, 0, 155, 161, 1, 0, 0, 0, 156, 157, 10, 1, 0, 0, 157, 158, 5, 49, 0, 0, 158, 160, 3, 6, 3, 0, 159, 156, 1, 0, 0, 0, 160, 163, 1, 0, 0, 0, 161, 159, 1, 0, 0, 0, 161, 162, 1, 0, 0, 0, 162, 3, 1, 0, 0, 0, 163, 161, 1, 0, 0, 0, 164, 171, 3, 78, 39, 0, 165, 171, 3, 18, 9, 0, 166, 171, 3, 12, 6, 0, 167, 171, 3, 82, 41, 0, 168, 169, 4, 2, 1, 0, 169, 171, 3, 28, 14, 0, 170, 164, 1, 0, 0, 0, 170, 165, 1, 0, 0, 0, 170, 166, 1, 0, 0, 0, 170, 167, 1, 0, 0, 0, 170, 168, 1, 0, 0, 0, 171, 5, 1, 0, 0, 0, 172, 198, 3, 30, 15, 0, 173, 198, 3, 8, 4, 0, 174, 198, 3, 60, 30, 0, 175, 198, 3, 54, 27, 0, 176, 198, 3, 32, 16, 0, 177, 198, 3, 56, 28, 0, 178, 198, 3, 62, 31, 0, 179, 198, 3, 64, 32, 0, 180, 198, 3, 68, 34, 0, 181, 198, 3, 70, 35, 0, 182, 198, 3, 84, 42, 0, 183, 198, 3, 72, 36, 0, 184, 198, 3, 142, 71, 0, 185, 186, 4, 3, 2, 0, 186, 198, 3, 90, 45, 0, 187, 188, 4, 3, 3, 0, 188, 198, 3, 88, 44, 0, 189, 190, 4, 3, 4, 0, 190, 198, 3, 92, 46, 0, 191, 192, 4, 3, 5, 0, 192, 198, 3, 94, 47, 0, 193, 194, 4, 3, 6, 0, 194, 198, 3, 96, 48, 0, 195, 196, 4, 3, 7, 0, 196, 198, 3, 106, 53, 0, 197, 172, 1, 0, 0, 0, 197, 173, 1, 0, 0, 0, 197, 174, 1, 0, 0, 0, 197, 175, 1, 0, 0, 0, 197, 176, 1, 0, 0, 0, 197, 177, 1, 0, 0, 0, 197, 178, 1, 0, 0, 0, 197, 179, 1, 0, 0, 0, 197, 180, 1, 0, 0, 0, 197, 181, 1, 0, 0, 0, 197, 182, 1, 0, 0, 0, 197, 183, 1, 0, 0, 0, 197, 184, 1, 0, 0, 0, 197, 185, 1, 0, 0, 0, 197, 187, 1, 0, 0, 0, 197, 189, 1, 0, 0, 0, 197, 191, 1, 0, 0, 0, 197, 193, 1, 0, 0, 0, 197, 195, 1, 0, 0, 0, 198, 7, 1, 0, 0, 0, 199, 200, 5, 14, 0, 0, 200, 201, 3, 108, 54, 0, 201, 9, 1, 0, 0, 0, 202, 203, 3, 44, 22, 0, 203, 11, 1, 0, 0, 0, 204, 205, 5, 11, 0, 0, 205, 206, 3, 14, 7, 0, 206, 13, 1, 0, 0, 0, 207, 212, 3, 16, 8, 0, 208, 209, 5, 62, 0, 0, 209, 211, 3, 16, 8, 0, 210, 208, 1, 0, 0, 0, 211, 214, 1, 0, 0, 0, 212, 210, 1, 0, 0, 0, 212, 213, 1, 0, 0, 0, 213, 15, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 215, 216, 3, 38, 19, 0, 216, 217, 5, 59, 0, 0, 217, 219, 1, 0, 0, 0, 218, 215, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 3, 108, 54, 0, 221, 17, 1, 0, 0, 0, 222, 223, 5, 17, 0, 0, 223, 228, 3, 20, 10, 0, 224, 225, 5, 62, 0, 0, 225, 227, 3, 20, 10, 0, 226, 224, 1, 0, 0, 0, 227, 230, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 232, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 231, 233, 3, 26, 13, 0, 232, 231, 1, 0, 0, 0, 232, 233, 1, 0, 0, 0, 233, 19, 1, 0, 0, 0, 234, 235, 3, 22, 11, 0, 235, 236, 5, 61, 0, 0, 236, 238, 1, 0, 0, 0, 237, 234, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 3, 24, 12, 0, 240, 21, 1, 0, 0, 0, 241, 242, 7, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 7, 0, 0, 0, 244, 25, 1, 0, 0, 0, 245, 246, 5, 102, 0, 0, 246, 251, 5, 103, 0, 0, 247, 248, 5, 62, 0, 0, 248, 250, 5, 103, 0, 0, 249, 247, 1, 0, 0, 0, 250, 253, 1, 0, 0, 0, 251, 249, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 27, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 254, 255, 5, 24, 0, 0, 255, 260, 3, 20, 10, 0, 256, 257, 5, 62, 0, 0, 257, 259, 3, 20, 10, 0, 258, 256, 1, 0, 0, 0, 259, 262, 1, 0, 0, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 264, 1, 0, 0, 0, 262, 260, 1, 0, 0, 0, 263, 265, 3, 34, 17, 0, 264, 263, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 268, 1, 0, 0, 0, 266, 267, 5, 53, 0, 0, 267, 269, 3, 14, 7, 0, 268, 266, 1, 0, 0, 0, 268, 269, 1, 0, 0, 0, 269, 29, 1, 0, 0, 0, 270, 271, 5, 8, 0, 0, 271, 272, 3, 14, 7, 0, 272, 31, 1, 0, 0, 0, 273, 275, 5, 13, 0, 0, 274, 276, 3, 34, 17, 0, 275, 274, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 279, 1, 0, 0, 0, 277, 278, 5, 53, 0, 0, 278, 280, 3, 14, 7, 0, 279, 277, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 33, 1, 0, 0, 0, 281, 286, 3, 36, 18, 0, 282, 283, 5, 62, 0, 0, 283, 285, 3, 36, 18, 0, 284, 282, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 35, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 292, 3, 16, 8, 0, 290, 291, 5, 14, 0, 0, 291, 293, 3, 108, 54, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 37, 1, 0, 0, 0, 294, 299, 3, 50, 25, 0, 295, 296, 5, 64, 0, 0, 296, 298, 3, 50, 25, 0, 297, 295, 1, 0, 0, 0, 298, 301, 1, 0, 0, 0, 299, 297, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 39, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 302, 307, 3, 46, 23, 0, 303, 304, 5, 64, 0, 0, 304, 306, 3, 46, 23, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 41, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 40, 20, 0, 311, 312, 5, 62, 0, 0, 312, 314, 3, 40, 20, 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, 43, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 319, 7, 1, 0, 0, 319, 45, 1, 0, 0, 0, 320, 323, 5, 130, 0, 0, 321, 323, 3, 48, 24, 0, 322, 320, 1, 0, 0, 0, 322, 321, 1, 0, 0, 0, 323, 47, 1, 0, 0, 0, 324, 327, 5, 75, 0, 0, 325, 327, 5, 92, 0, 0, 326, 324, 1, 0, 0, 0, 326, 325, 1, 0, 0, 0, 327, 49, 1, 0, 0, 0, 328, 331, 3, 44, 22, 0, 329, 331, 3, 48, 24, 0, 330, 328, 1, 0, 0, 0, 330, 329, 1, 0, 0, 0, 331, 51, 1, 0, 0, 0, 332, 335, 3, 138, 69, 0, 333, 335, 3, 48, 24, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 53, 1, 0, 0, 0, 336, 337, 5, 10, 0, 0, 337, 338, 5, 51, 0, 0, 338, 55, 1, 0, 0, 0, 339, 340, 5, 12, 0, 0, 340, 345, 3, 58, 29, 0, 341, 342, 5, 62, 0, 0, 342, 344, 3, 58, 29, 0, 343, 341, 1, 0, 0, 0, 344, 347, 1, 0, 0, 0, 345, 343, 1, 0, 0, 0, 345, 346, 1, 0, 0, 0, 346, 57, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 350, 3, 108, 54, 0, 349, 351, 7, 2, 0, 0, 350, 349, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 354, 1, 0, 0, 0, 352, 353, 5, 73, 0, 0, 353, 355, 7, 3, 0, 0, 354, 352, 1, 0, 0, 0, 354, 355, 1, 0, 0, 0, 355, 59, 1, 0, 0, 0, 356, 357, 5, 27, 0, 0, 357, 358, 3, 42, 21, 0, 358, 61, 1, 0, 0, 0, 359, 360, 5, 26, 0, 0, 360, 361, 3, 42, 21, 0, 361, 63, 1, 0, 0, 0, 362, 363, 5, 29, 0, 0, 363, 368, 3, 66, 33, 0, 364, 365, 5, 62, 0, 0, 365, 367, 3, 66, 33, 0, 366, 364, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 65, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 3, 40, 20, 0, 372, 373, 5, 56, 0, 0, 373, 374, 3, 40, 20, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 7, 0, 0, 376, 377, 3, 118, 59, 0, 377, 379, 3, 138, 69, 0, 378, 380, 3, 74, 37, 0, 379, 378, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 69, 1, 0, 0, 0, 381, 382, 5, 9, 0, 0, 382, 383, 3, 118, 59, 0, 383, 384, 3, 138, 69, 0, 384, 71, 1, 0, 0, 0, 385, 386, 5, 25, 0, 0, 386, 387, 3, 38, 19, 0, 387, 73, 1, 0, 0, 0, 388, 393, 3, 76, 38, 0, 389, 390, 5, 62, 0, 0, 390, 392, 3, 76, 38, 0, 391, 389, 1, 0, 0, 0, 392, 395, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 75, 1, 0, 0, 0, 395, 393, 1, 0, 0, 0, 396, 397, 3, 44, 22, 0, 397, 398, 5, 59, 0, 0, 398, 399, 3, 128, 64, 0, 399, 77, 1, 0, 0, 0, 400, 401, 5, 6, 0, 0, 401, 402, 3, 80, 40, 0, 402, 79, 1, 0, 0, 0, 403, 404, 5, 93, 0, 0, 404, 405, 3, 2, 1, 0, 405, 406, 5, 94, 0, 0, 406, 81, 1, 0, 0, 0, 407, 408, 5, 30, 0, 0, 408, 409, 5, 137, 0, 0, 409, 83, 1, 0, 0, 0, 410, 411, 5, 5, 0, 0, 411, 414, 5, 35, 0, 0, 412, 413, 5, 54, 0, 0, 413, 415, 3, 40, 20, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 425, 1, 0, 0, 0, 416, 417, 5, 55, 0, 0, 417, 422, 3, 86, 43, 0, 418, 419, 5, 62, 0, 0, 419, 421, 3, 86, 43, 0, 420, 418, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 420, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 422, 1, 0, 0, 0, 425, 416, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 85, 1, 0, 0, 0, 427, 428, 3, 40, 20, 0, 428, 429, 5, 59, 0, 0, 429, 431, 1, 0, 0, 0, 430, 427, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 433, 3, 40, 20, 0, 433, 87, 1, 0, 0, 0, 434, 435, 5, 23, 0, 0, 435, 436, 3, 20, 10, 0, 436, 437, 5, 54, 0, 0, 437, 438, 3, 42, 21, 0, 438, 89, 1, 0, 0, 0, 439, 440, 5, 15, 0, 0, 440, 443, 3, 34, 17, 0, 441, 442, 5, 53, 0, 0, 442, 444, 3, 14, 7, 0, 443, 441, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 91, 1, 0, 0, 0, 445, 446, 5, 4, 0, 0, 446, 449, 3, 38, 19, 0, 447, 448, 5, 54, 0, 0, 448, 450, 3, 38, 19, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 456, 1, 0, 0, 0, 451, 452, 5, 56, 0, 0, 452, 453, 3, 38, 19, 0, 453, 454, 5, 62, 0, 0, 454, 455, 3, 38, 19, 0, 455, 457, 1, 0, 0, 0, 456, 451, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 93, 1, 0, 0, 0, 458, 459, 5, 28, 0, 0, 459, 460, 3, 42, 21, 0, 460, 95, 1, 0, 0, 0, 461, 462, 5, 18, 0, 0, 462, 463, 3, 98, 49, 0, 463, 97, 1, 0, 0, 0, 464, 466, 3, 100, 50, 0, 465, 464, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 99, 1, 0, 0, 0, 469, 470, 5, 95, 0, 0, 470, 471, 3, 102, 51, 0, 471, 472, 5, 96, 0, 0, 472, 101, 1, 0, 0, 0, 473, 474, 6, 51, -1, 0, 474, 475, 3, 104, 52, 0, 475, 481, 1, 0, 0, 0, 476, 477, 10, 1, 0, 0, 477, 478, 5, 49, 0, 0, 478, 480, 3, 104, 52, 0, 479, 476, 1, 0, 0, 0, 480, 483, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 103, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 488, 3, 8, 4, 0, 485, 488, 3, 56, 28, 0, 486, 488, 3, 54, 27, 0, 487, 484, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 487, 486, 1, 0, 0, 0, 488, 105, 1, 0, 0, 0, 489, 490, 5, 16, 0, 0, 490, 491, 3, 52, 26, 0, 491, 492, 5, 54, 0, 0, 492, 493, 3, 14, 7, 0, 493, 494, 5, 55, 0, 0, 494, 495, 3, 52, 26, 0, 495, 107, 1, 0, 0, 0, 496, 497, 6, 54, -1, 0, 497, 498, 5, 71, 0, 0, 498, 526, 3, 108, 54, 8, 499, 526, 3, 114, 57, 0, 500, 526, 3, 110, 55, 0, 501, 503, 3, 114, 57, 0, 502, 504, 5, 71, 0, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 5, 67, 0, 0, 506, 507, 5, 95, 0, 0, 507, 512, 3, 114, 57, 0, 508, 509, 5, 62, 0, 0, 509, 511, 3, 114, 57, 0, 510, 508, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 515, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 96, 0, 0, 516, 526, 1, 0, 0, 0, 517, 518, 3, 114, 57, 0, 518, 520, 5, 68, 0, 0, 519, 521, 5, 71, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 5, 72, 0, 0, 523, 526, 1, 0, 0, 0, 524, 526, 3, 112, 56, 0, 525, 496, 1, 0, 0, 0, 525, 499, 1, 0, 0, 0, 525, 500, 1, 0, 0, 0, 525, 501, 1, 0, 0, 0, 525, 517, 1, 0, 0, 0, 525, 524, 1, 0, 0, 0, 526, 535, 1, 0, 0, 0, 527, 528, 10, 5, 0, 0, 528, 529, 5, 57, 0, 0, 529, 534, 3, 108, 54, 6, 530, 531, 10, 4, 0, 0, 531, 532, 5, 74, 0, 0, 532, 534, 3, 108, 54, 5, 533, 527, 1, 0, 0, 0, 533, 530, 1, 0, 0, 0, 534, 537, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 109, 1, 0, 0, 0, 537, 535, 1, 0, 0, 0, 538, 540, 3, 114, 57, 0, 539, 541, 5, 71, 0, 0, 540, 539, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 5, 70, 0, 0, 543, 544, 3, 138, 69, 0, 544, 553, 1, 0, 0, 0, 545, 547, 3, 114, 57, 0, 546, 548, 5, 71, 0, 0, 547, 546, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 5, 76, 0, 0, 550, 551, 3, 138, 69, 0, 551, 553, 1, 0, 0, 0, 552, 538, 1, 0, 0, 0, 552, 545, 1, 0, 0, 0, 553, 111, 1, 0, 0, 0, 554, 557, 3, 38, 19, 0, 555, 556, 5, 60, 0, 0, 556, 558, 3, 10, 5, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 5, 61, 0, 0, 560, 561, 3, 128, 64, 0, 561, 113, 1, 0, 0, 0, 562, 568, 3, 116, 58, 0, 563, 564, 3, 116, 58, 0, 564, 565, 3, 140, 70, 0, 565, 566, 3, 116, 58, 0, 566, 568, 1, 0, 0, 0, 567, 562, 1, 0, 0, 0, 567, 563, 1, 0, 0, 0, 568, 115, 1, 0, 0, 0, 569, 570, 6, 58, -1, 0, 570, 574, 3, 118, 59, 0, 571, 572, 7, 4, 0, 0, 572, 574, 3, 116, 58, 3, 573, 569, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 574, 583, 1, 0, 0, 0, 575, 576, 10, 2, 0, 0, 576, 577, 7, 5, 0, 0, 577, 582, 3, 116, 58, 3, 578, 579, 10, 1, 0, 0, 579, 580, 7, 4, 0, 0, 580, 582, 3, 116, 58, 2, 581, 575, 1, 0, 0, 0, 581, 578, 1, 0, 0, 0, 582, 585, 1, 0, 0, 0, 583, 581, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 117, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 586, 587, 6, 59, -1, 0, 587, 595, 3, 128, 64, 0, 588, 595, 3, 38, 19, 0, 589, 595, 3, 120, 60, 0, 590, 591, 5, 95, 0, 0, 591, 592, 3, 108, 54, 0, 592, 593, 5, 96, 0, 0, 593, 595, 1, 0, 0, 0, 594, 586, 1, 0, 0, 0, 594, 588, 1, 0, 0, 0, 594, 589, 1, 0, 0, 0, 594, 590, 1, 0, 0, 0, 595, 601, 1, 0, 0, 0, 596, 597, 10, 1, 0, 0, 597, 598, 5, 60, 0, 0, 598, 600, 3, 10, 5, 0, 599, 596, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 119, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 3, 122, 61, 0, 605, 619, 5, 95, 0, 0, 606, 620, 5, 87, 0, 0, 607, 612, 3, 108, 54, 0, 608, 609, 5, 62, 0, 0, 609, 611, 3, 108, 54, 0, 610, 608, 1, 0, 0, 0, 611, 614, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 617, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 615, 616, 5, 62, 0, 0, 616, 618, 3, 124, 62, 0, 617, 615, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 1, 0, 0, 0, 619, 606, 1, 0, 0, 0, 619, 607, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 96, 0, 0, 622, 121, 1, 0, 0, 0, 623, 624, 3, 50, 25, 0, 624, 123, 1, 0, 0, 0, 625, 626, 5, 90, 0, 0, 626, 631, 3, 126, 63, 0, 627, 628, 5, 62, 0, 0, 628, 630, 3, 126, 63, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 634, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 635, 5, 91, 0, 0, 635, 125, 1, 0, 0, 0, 636, 637, 3, 138, 69, 0, 637, 638, 5, 61, 0, 0, 638, 639, 3, 128, 64, 0, 639, 127, 1, 0, 0, 0, 640, 683, 5, 72, 0, 0, 641, 642, 3, 136, 68, 0, 642, 643, 5, 97, 0, 0, 643, 683, 1, 0, 0, 0, 644, 683, 3, 134, 67, 0, 645, 683, 3, 136, 68, 0, 646, 683, 3, 130, 65, 0, 647, 683, 3, 48, 24, 0, 648, 683, 3, 138, 69, 0, 649, 650, 5, 93, 0, 0, 650, 655, 3, 132, 66, 0, 651, 652, 5, 62, 0, 0, 652, 654, 3, 132, 66, 0, 653, 651, 1, 0, 0, 0, 654, 657, 1, 0, 0, 0, 655, 653, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 658, 1, 0, 0, 0, 657, 655, 1, 0, 0, 0, 658, 659, 5, 94, 0, 0, 659, 683, 1, 0, 0, 0, 660, 661, 5, 93, 0, 0, 661, 666, 3, 130, 65, 0, 662, 663, 5, 62, 0, 0, 663, 665, 3, 130, 65, 0, 664, 662, 1, 0, 0, 0, 665, 668, 1, 0, 0, 0, 666, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 669, 670, 5, 94, 0, 0, 670, 683, 1, 0, 0, 0, 671, 672, 5, 93, 0, 0, 672, 677, 3, 138, 69, 0, 673, 674, 5, 62, 0, 0, 674, 676, 3, 138, 69, 0, 675, 673, 1, 0, 0, 0, 676, 679, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 680, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 680, 681, 5, 94, 0, 0, 681, 683, 1, 0, 0, 0, 682, 640, 1, 0, 0, 0, 682, 641, 1, 0, 0, 0, 682, 644, 1, 0, 0, 0, 682, 645, 1, 0, 0, 0, 682, 646, 1, 0, 0, 0, 682, 647, 1, 0, 0, 0, 682, 648, 1, 0, 0, 0, 682, 649, 1, 0, 0, 0, 682, 660, 1, 0, 0, 0, 682, 671, 1, 0, 0, 0, 683, 129, 1, 0, 0, 0, 684, 685, 7, 6, 0, 0, 685, 131, 1, 0, 0, 0, 686, 689, 3, 134, 67, 0, 687, 689, 3, 136, 68, 0, 688, 686, 1, 0, 0, 0, 688, 687, 1, 0, 0, 0, 689, 133, 1, 0, 0, 0, 690, 692, 7, 4, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 5, 52, 0, 0, 694, 135, 1, 0, 0, 0, 695, 697, 7, 4, 0, 0, 696, 695, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 5, 51, 0, 0, 699, 137, 1, 0, 0, 0, 700, 701, 5, 50, 0, 0, 701, 139, 1, 0, 0, 0, 702, 703, 7, 7, 0, 0, 703, 141, 1, 0, 0, 0, 704, 705, 7, 8, 0, 0, 705, 706, 5, 110, 0, 0, 706, 707, 3, 144, 72, 0, 707, 708, 3, 146, 73, 0, 708, 143, 1, 0, 0, 0, 709, 710, 3, 20, 10, 0, 710, 145, 1, 0, 0, 0, 711, 712, 5, 54, 0, 0, 712, 717, 3, 148, 74, 0, 713, 714, 5, 62, 0, 0, 714, 716, 3, 148, 74, 0, 715, 713, 1, 0, 0, 0, 716, 719, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 147, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 721, 3, 114, 57, 0, 721, 149, 1, 0, 0, 0, 67, 161, 170, 197, 212, 218, 228, 232, 237, 251, 260, 264, 268, 275, 279, 286, 292, 299, 307, 315, 322, 326, 330, 334, 345, 350, 354, 368, 379, 393, 414, 422, 425, 430, 443, 449, 456, 467, 481, 487, 503, 512, 520, 525, 533, 535, 540, 547, 552, 557, 567, 573, 581, 583, 594, 601, 612, 617, 619, 631, 655, 666, 677, 682, 688, 691, 696, 717] \ 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 e3c64689eb793..388155f41fb21 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 @@ -3959,6 +3959,10 @@ public static class RerankCommandContext extends ParserRuleContext { public StringOrParameterContext queryText; public StringOrParameterContext inferenceId; public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); } + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); + } public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } public List stringOrParameter() { return getRuleContexts(StringOrParameterContext.class); @@ -3966,10 +3970,6 @@ public List stringOrParameter() { public StringOrParameterContext stringOrParameter(int i) { return getRuleContext(StringOrParameterContext.class,i); } - public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } - public FieldsContext fields() { - return getRuleContext(FieldsContext.class,0); - } @SuppressWarnings("this-escape") public RerankCommandContext(ParserRuleContext parent, int invokingState) { super(parent, invokingState); @@ -3993,7 +3993,6 @@ public T accept(ParseTreeVisitor visitor) { public final RerankCommandContext rerankCommand() throws RecognitionException { RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); enterRule(_localctx, 106, RULE_rerankCommand); - int _la; try { enterOuterAlt(_localctx, 1); { @@ -4001,21 +4000,13 @@ public final RerankCommandContext rerankCommand() throws RecognitionException { match(DEV_RERANK); setState(490); ((RerankCommandContext)_localctx).queryText = stringOrParameter(); + setState(491); + match(ON); + setState(492); + fields(); setState(493); - _errHandler.sync(this); - _la = _input.LA(1); - if (_la==ON) { - { - setState(491); - match(ON); - setState(492); - fields(); - } - } - - setState(495); match(WITH); - setState(496); + setState(494); ((RerankCommandContext)_localctx).inferenceId = stringOrParameter(); } } @@ -4231,18 +4222,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(527); + setState(525); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { _localctx = new LogicalNotContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(499); + setState(497); match(NOT); - setState(500); + setState(498); booleanExpression(8); } break; @@ -4251,7 +4242,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(501); + setState(499); valueExpression(); } break; @@ -4260,7 +4251,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(502); + setState(500); regexBooleanExpression(); } break; @@ -4269,41 +4260,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(503); + setState(501); valueExpression(); - setState(505); + setState(503); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(504); + setState(502); match(NOT); } } - setState(507); + setState(505); match(IN); - setState(508); + setState(506); match(LP); - setState(509); + setState(507); valueExpression(); - setState(514); + setState(512); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(510); + setState(508); match(COMMA); - setState(511); + setState(509); valueExpression(); } } - setState(516); + setState(514); _errHandler.sync(this); _la = _input.LA(1); } - setState(517); + setState(515); match(RP); } break; @@ -4312,21 +4303,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(519); + setState(517); valueExpression(); - setState(520); + setState(518); match(IS); - setState(522); + setState(520); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(521); + setState(519); match(NOT); } } - setState(524); + setState(522); match(NULL); } break; @@ -4335,33 +4326,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(526); + setState(524); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(537); + setState(535); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(535); + setState(533); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: { _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(529); + setState(527); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(530); + setState(528); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(531); + setState(529); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4370,20 +4361,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(532); + setState(530); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(533); + setState(531); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(534); + setState(532); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(539); + setState(537); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,45,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } } } @@ -4436,48 +4427,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 110, RULE_regexBooleanExpression); int _la; try { - setState(554); + setState(552); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(540); + setState(538); valueExpression(); - setState(542); + setState(540); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(541); + setState(539); match(NOT); } } - setState(544); + setState(542); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(545); + setState(543); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(547); + setState(545); valueExpression(); - setState(549); + setState(547); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(548); + setState(546); match(NOT); } } - setState(551); + setState(549); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(552); + setState(550); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4537,23 +4528,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(556); + setState(554); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(559); + setState(557); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(557); + setState(555); match(CAST_OP); - setState(558); + setState(556); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(561); + setState(559); match(COLON); - setState(562); + setState(560); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4637,14 +4628,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 114, RULE_valueExpression); try { - setState(569); + setState(567); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(564); + setState(562); operatorExpression(0); } break; @@ -4652,11 +4643,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(565); + setState(563); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(566); + setState(564); comparisonOperator(); - setState(567); + setState(565); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -4781,16 +4772,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(575); + setState(573); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(572); + setState(570); primaryExpression(0); } break; @@ -4799,7 +4790,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(573); + setState(571); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4810,31 +4801,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(574); + setState(572); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(585); + setState(583); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,53,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(583); + setState(581); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(577); + setState(575); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(578); + setState(576); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 87)) & ~0x3f) == 0 && ((1L << (_la - 87)) & 7L) != 0)) ) { @@ -4845,7 +4836,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(579); + setState(577); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -4854,9 +4845,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(580); + setState(578); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(581); + setState(579); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4867,16 +4858,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(582); + setState(580); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(587); + setState(585); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,53,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } } } @@ -5032,16 +5023,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(596); + setState(594); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(589); + setState(587); constant(); } break; @@ -5050,7 +5041,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(590); + setState(588); qualifiedName(); } break; @@ -5059,7 +5050,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(591); + setState(589); functionExpression(); } break; @@ -5068,19 +5059,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(592); + setState(590); match(LP); - setState(593); + setState(591); booleanExpression(0); - setState(594); + setState(592); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(603); + setState(601); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -5089,18 +5080,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(598); + setState(596); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(599); + setState(597); match(CAST_OP); - setState(600); + setState(598); dataType(); } } } - setState(605); + setState(603); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } } } @@ -5164,16 +5155,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(606); + setState(604); functionName(); - setState(607); + setState(605); match(LP); - setState(621); + setState(619); _errHandler.sync(this); switch (_input.LA(1)) { case ASTERISK: { - setState(608); + setState(606); match(ASTERISK); } break; @@ -5194,34 +5185,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx case QUOTED_IDENTIFIER: { { - setState(609); + setState(607); booleanExpression(0); - setState(614); + setState(612); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(610); + setState(608); match(COMMA); - setState(611); + setState(609); booleanExpression(0); } } } - setState(616); + setState(614); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,56,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } - setState(619); + setState(617); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(617); + setState(615); match(COMMA); - setState(618); + setState(616); mapExpression(); } } @@ -5234,7 +5225,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx default: break; } - setState(623); + setState(621); match(RP); } } @@ -5280,7 +5271,7 @@ public final FunctionNameContext functionName() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(625); + setState(623); identifierOrParameter(); } } @@ -5336,27 +5327,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(627); + setState(625); match(LEFT_BRACES); - setState(628); + setState(626); entryExpression(); - setState(633); + setState(631); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(629); + setState(627); match(COMMA); - setState(630); + setState(628); entryExpression(); } } - setState(635); + setState(633); _errHandler.sync(this); _la = _input.LA(1); } - setState(636); + setState(634); match(RIGHT_BRACES); } } @@ -5408,11 +5399,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(638); + setState(636); ((EntryExpressionContext)_localctx).key = string(); - setState(639); + setState(637); match(COLON); - setState(640); + setState(638); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5683,14 +5674,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 128, RULE_constant); int _la; try { - setState(684); + setState(682); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(642); + setState(640); match(NULL); } break; @@ -5698,9 +5689,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(643); + setState(641); integerValue(); - setState(644); + setState(642); match(UNQUOTED_IDENTIFIER); } break; @@ -5708,7 +5699,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(646); + setState(644); decimalValue(); } break; @@ -5716,7 +5707,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(647); + setState(645); integerValue(); } break; @@ -5724,7 +5715,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(648); + setState(646); booleanValue(); } break; @@ -5732,7 +5723,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(649); + setState(647); parameter(); } break; @@ -5740,7 +5731,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(650); + setState(648); string(); } break; @@ -5748,27 +5739,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(651); + setState(649); match(OPENING_BRACKET); - setState(652); + setState(650); numericValue(); - setState(657); + setState(655); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(653); + setState(651); match(COMMA); - setState(654); + setState(652); numericValue(); } } - setState(659); + setState(657); _errHandler.sync(this); _la = _input.LA(1); } - setState(660); + setState(658); match(CLOSING_BRACKET); } break; @@ -5776,27 +5767,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(662); + setState(660); match(OPENING_BRACKET); - setState(663); + setState(661); booleanValue(); - setState(668); + setState(666); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(664); + setState(662); match(COMMA); - setState(665); + setState(663); booleanValue(); } } - setState(670); + setState(668); _errHandler.sync(this); _la = _input.LA(1); } - setState(671); + setState(669); match(CLOSING_BRACKET); } break; @@ -5804,27 +5795,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(673); + setState(671); match(OPENING_BRACKET); - setState(674); + setState(672); string(); - setState(679); + setState(677); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(675); + setState(673); match(COMMA); - setState(676); + setState(674); string(); } } - setState(681); + setState(679); _errHandler.sync(this); _la = _input.LA(1); } - setState(682); + setState(680); match(CLOSING_BRACKET); } break; @@ -5872,7 +5863,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(686); + setState(684); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -5927,20 +5918,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 132, RULE_numericValue); try { - setState(690); + setState(688); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(688); + setState(686); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(689); + setState(687); integerValue(); } break; @@ -5989,12 +5980,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(693); + setState(691); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(692); + setState(690); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6007,7 +5998,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(695); + setState(693); match(DECIMAL_LITERAL); } } @@ -6054,12 +6045,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(698); + setState(696); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(697); + setState(695); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6072,7 +6063,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(700); + setState(698); match(INTEGER_LITERAL); } } @@ -6116,7 +6107,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(702); + setState(700); match(QUOTED_STRING); } } @@ -6166,7 +6157,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(704); + setState(702); _la = _input.LA(1); if ( !(((((_la - 78)) & ~0x3f) == 0 && ((1L << (_la - 78)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -6229,7 +6220,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(706); + setState(704); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 6815744L) != 0)) ) { @@ -6240,11 +6231,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(707); + setState(705); match(JOIN); - setState(708); + setState(706); joinTarget(); - setState(709); + setState(707); joinCondition(); } } @@ -6291,7 +6282,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(711); + setState(709); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6346,27 +6337,27 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(713); + setState(711); match(ON); - setState(714); + setState(712); joinPredicate(); - setState(719); + setState(717); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,67,_ctx); + _alt = getInterpreter().adaptivePredict(_input,66,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(715); + setState(713); match(COMMA); - setState(716); + setState(714); joinPredicate(); } } } - setState(721); + setState(719); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,67,_ctx); + _alt = getInterpreter().adaptivePredict(_input,66,_ctx); } } } @@ -6412,7 +6403,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(722); + setState(720); valueExpression(); } } @@ -6511,7 +6502,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u008c\u02d5\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u008c\u02d3\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"+ @@ -6576,388 +6567,386 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "/\u00010\u00010\u00010\u00011\u00041\u01d2\b1\u000b1\f1\u01d3\u00012\u0001"+ "2\u00012\u00012\u00013\u00013\u00013\u00013\u00013\u00013\u00053\u01e0"+ "\b3\n3\f3\u01e3\t3\u00014\u00014\u00014\u00034\u01e8\b4\u00015\u00015"+ - "\u00015\u00015\u00035\u01ee\b5\u00015\u00015\u00015\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00016\u00036\u01fa\b6\u00016\u00016\u00016\u0001"+ - "6\u00016\u00056\u0201\b6\n6\f6\u0204\t6\u00016\u00016\u00016\u00016\u0001"+ - "6\u00036\u020b\b6\u00016\u00016\u00016\u00036\u0210\b6\u00016\u00016\u0001"+ - "6\u00016\u00016\u00016\u00056\u0218\b6\n6\f6\u021b\t6\u00017\u00017\u0003"+ - "7\u021f\b7\u00017\u00017\u00017\u00017\u00017\u00037\u0226\b7\u00017\u0001"+ - "7\u00017\u00037\u022b\b7\u00018\u00018\u00018\u00038\u0230\b8\u00018\u0001"+ - "8\u00018\u00019\u00019\u00019\u00019\u00019\u00039\u023a\b9\u0001:\u0001"+ - ":\u0001:\u0001:\u0003:\u0240\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ - ":\u0005:\u0248\b:\n:\f:\u024b\t:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001"+ - ";\u0001;\u0001;\u0003;\u0255\b;\u0001;\u0001;\u0001;\u0005;\u025a\b;\n"+ - ";\f;\u025d\t;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u0265\b"+ - "<\n<\f<\u0268\t<\u0001<\u0001<\u0003<\u026c\b<\u0003<\u026e\b<\u0001<"+ - "\u0001<\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0005>\u0278\b>\n>\f"+ - ">\u027b\t>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001"+ - "@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001"+ - "@\u0005@\u0290\b@\n@\f@\u0293\t@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001"+ - "@\u0005@\u029b\b@\n@\f@\u029e\t@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001"+ - "@\u0005@\u02a6\b@\n@\f@\u02a9\t@\u0001@\u0001@\u0003@\u02ad\b@\u0001A"+ - "\u0001A\u0001B\u0001B\u0003B\u02b3\bB\u0001C\u0003C\u02b6\bC\u0001C\u0001"+ - "C\u0001D\u0003D\u02bb\bD\u0001D\u0001D\u0001E\u0001E\u0001F\u0001F\u0001"+ - "G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001"+ - "I\u0005I\u02ce\bI\nI\fI\u02d1\tI\u0001J\u0001J\u0001J\u0000\u0005\u0002"+ - "fltvK\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ - "\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080"+ - "\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0000\t\u0002"+ - "\u000022gg\u0001\u0000ab\u0002\u0000::??\u0002\u0000BBEE\u0001\u0000U"+ - "V\u0001\u0000WY\u0002\u0000AAMM\u0002\u0000NNPT\u0002\u0000\u0013\u0013"+ - "\u0015\u0016\u02f1\u0000\u0096\u0001\u0000\u0000\u0000\u0002\u0099\u0001"+ - "\u0000\u0000\u0000\u0004\u00aa\u0001\u0000\u0000\u0000\u0006\u00c5\u0001"+ - "\u0000\u0000\u0000\b\u00c7\u0001\u0000\u0000\u0000\n\u00ca\u0001\u0000"+ - "\u0000\u0000\f\u00cc\u0001\u0000\u0000\u0000\u000e\u00cf\u0001\u0000\u0000"+ - "\u0000\u0010\u00da\u0001\u0000\u0000\u0000\u0012\u00de\u0001\u0000\u0000"+ - "\u0000\u0014\u00ed\u0001\u0000\u0000\u0000\u0016\u00f1\u0001\u0000\u0000"+ - "\u0000\u0018\u00f3\u0001\u0000\u0000\u0000\u001a\u00f5\u0001\u0000\u0000"+ - "\u0000\u001c\u00fe\u0001\u0000\u0000\u0000\u001e\u010e\u0001\u0000\u0000"+ - "\u0000 \u0111\u0001\u0000\u0000\u0000\"\u0119\u0001\u0000\u0000\u0000"+ - "$\u0121\u0001\u0000\u0000\u0000&\u0126\u0001\u0000\u0000\u0000(\u012e"+ - "\u0001\u0000\u0000\u0000*\u0136\u0001\u0000\u0000\u0000,\u013e\u0001\u0000"+ - "\u0000\u0000.\u0142\u0001\u0000\u0000\u00000\u0146\u0001\u0000\u0000\u0000"+ - "2\u014a\u0001\u0000\u0000\u00004\u014e\u0001\u0000\u0000\u00006\u0150"+ - "\u0001\u0000\u0000\u00008\u0153\u0001\u0000\u0000\u0000:\u015c\u0001\u0000"+ - "\u0000\u0000<\u0164\u0001\u0000\u0000\u0000>\u0167\u0001\u0000\u0000\u0000"+ - "@\u016a\u0001\u0000\u0000\u0000B\u0173\u0001\u0000\u0000\u0000D\u0177"+ - "\u0001\u0000\u0000\u0000F\u017d\u0001\u0000\u0000\u0000H\u0181\u0001\u0000"+ - "\u0000\u0000J\u0184\u0001\u0000\u0000\u0000L\u018c\u0001\u0000\u0000\u0000"+ - "N\u0190\u0001\u0000\u0000\u0000P\u0193\u0001\u0000\u0000\u0000R\u0197"+ - "\u0001\u0000\u0000\u0000T\u019a\u0001\u0000\u0000\u0000V\u01ae\u0001\u0000"+ - "\u0000\u0000X\u01b2\u0001\u0000\u0000\u0000Z\u01b7\u0001\u0000\u0000\u0000"+ - "\\\u01bd\u0001\u0000\u0000\u0000^\u01ca\u0001\u0000\u0000\u0000`\u01cd"+ - "\u0001\u0000\u0000\u0000b\u01d1\u0001\u0000\u0000\u0000d\u01d5\u0001\u0000"+ - "\u0000\u0000f\u01d9\u0001\u0000\u0000\u0000h\u01e7\u0001\u0000\u0000\u0000"+ - "j\u01e9\u0001\u0000\u0000\u0000l\u020f\u0001\u0000\u0000\u0000n\u022a"+ - "\u0001\u0000\u0000\u0000p\u022c\u0001\u0000\u0000\u0000r\u0239\u0001\u0000"+ - "\u0000\u0000t\u023f\u0001\u0000\u0000\u0000v\u0254\u0001\u0000\u0000\u0000"+ - "x\u025e\u0001\u0000\u0000\u0000z\u0271\u0001\u0000\u0000\u0000|\u0273"+ - "\u0001\u0000\u0000\u0000~\u027e\u0001\u0000\u0000\u0000\u0080\u02ac\u0001"+ - "\u0000\u0000\u0000\u0082\u02ae\u0001\u0000\u0000\u0000\u0084\u02b2\u0001"+ - "\u0000\u0000\u0000\u0086\u02b5\u0001\u0000\u0000\u0000\u0088\u02ba\u0001"+ - "\u0000\u0000\u0000\u008a\u02be\u0001\u0000\u0000\u0000\u008c\u02c0\u0001"+ - "\u0000\u0000\u0000\u008e\u02c2\u0001\u0000\u0000\u0000\u0090\u02c7\u0001"+ - "\u0000\u0000\u0000\u0092\u02c9\u0001\u0000\u0000\u0000\u0094\u02d2\u0001"+ - "\u0000\u0000\u0000\u0096\u0097\u0003\u0002\u0001\u0000\u0097\u0098\u0005"+ - "\u0000\u0000\u0001\u0098\u0001\u0001\u0000\u0000\u0000\u0099\u009a\u0006"+ - "\u0001\uffff\uffff\u0000\u009a\u009b\u0003\u0004\u0002\u0000\u009b\u00a1"+ - "\u0001\u0000\u0000\u0000\u009c\u009d\n\u0001\u0000\u0000\u009d\u009e\u0005"+ - "1\u0000\u0000\u009e\u00a0\u0003\u0006\u0003\u0000\u009f\u009c\u0001\u0000"+ - "\u0000\u0000\u00a0\u00a3\u0001\u0000\u0000\u0000\u00a1\u009f\u0001\u0000"+ - "\u0000\u0000\u00a1\u00a2\u0001\u0000\u0000\u0000\u00a2\u0003\u0001\u0000"+ - "\u0000\u0000\u00a3\u00a1\u0001\u0000\u0000\u0000\u00a4\u00ab\u0003N\'"+ - "\u0000\u00a5\u00ab\u0003\u0012\t\u0000\u00a6\u00ab\u0003\f\u0006\u0000"+ - "\u00a7\u00ab\u0003R)\u0000\u00a8\u00a9\u0004\u0002\u0001\u0000\u00a9\u00ab"+ - "\u0003\u001c\u000e\u0000\u00aa\u00a4\u0001\u0000\u0000\u0000\u00aa\u00a5"+ - "\u0001\u0000\u0000\u0000\u00aa\u00a6\u0001\u0000\u0000\u0000\u00aa\u00a7"+ - "\u0001\u0000\u0000\u0000\u00aa\u00a8\u0001\u0000\u0000\u0000\u00ab\u0005"+ - "\u0001\u0000\u0000\u0000\u00ac\u00c6\u0003\u001e\u000f\u0000\u00ad\u00c6"+ - "\u0003\b\u0004\u0000\u00ae\u00c6\u0003<\u001e\u0000\u00af\u00c6\u0003"+ - "6\u001b\u0000\u00b0\u00c6\u0003 \u0010\u0000\u00b1\u00c6\u00038\u001c"+ - "\u0000\u00b2\u00c6\u0003>\u001f\u0000\u00b3\u00c6\u0003@ \u0000\u00b4"+ - "\u00c6\u0003D\"\u0000\u00b5\u00c6\u0003F#\u0000\u00b6\u00c6\u0003T*\u0000"+ - "\u00b7\u00c6\u0003H$\u0000\u00b8\u00c6\u0003\u008eG\u0000\u00b9\u00ba"+ - "\u0004\u0003\u0002\u0000\u00ba\u00c6\u0003Z-\u0000\u00bb\u00bc\u0004\u0003"+ - "\u0003\u0000\u00bc\u00c6\u0003X,\u0000\u00bd\u00be\u0004\u0003\u0004\u0000"+ - "\u00be\u00c6\u0003\\.\u0000\u00bf\u00c0\u0004\u0003\u0005\u0000\u00c0"+ - "\u00c6\u0003^/\u0000\u00c1\u00c2\u0004\u0003\u0006\u0000\u00c2\u00c6\u0003"+ - "`0\u0000\u00c3\u00c4\u0004\u0003\u0007\u0000\u00c4\u00c6\u0003j5\u0000"+ - "\u00c5\u00ac\u0001\u0000\u0000\u0000\u00c5\u00ad\u0001\u0000\u0000\u0000"+ - "\u00c5\u00ae\u0001\u0000\u0000\u0000\u00c5\u00af\u0001\u0000\u0000\u0000"+ - "\u00c5\u00b0\u0001\u0000\u0000\u0000\u00c5\u00b1\u0001\u0000\u0000\u0000"+ - "\u00c5\u00b2\u0001\u0000\u0000\u0000\u00c5\u00b3\u0001\u0000\u0000\u0000"+ - "\u00c5\u00b4\u0001\u0000\u0000\u0000\u00c5\u00b5\u0001\u0000\u0000\u0000"+ - "\u00c5\u00b6\u0001\u0000\u0000\u0000\u00c5\u00b7\u0001\u0000\u0000\u0000"+ - "\u00c5\u00b8\u0001\u0000\u0000\u0000\u00c5\u00b9\u0001\u0000\u0000\u0000"+ - "\u00c5\u00bb\u0001\u0000\u0000\u0000\u00c5\u00bd\u0001\u0000\u0000\u0000"+ - "\u00c5\u00bf\u0001\u0000\u0000\u0000\u00c5\u00c1\u0001\u0000\u0000\u0000"+ - "\u00c5\u00c3\u0001\u0000\u0000\u0000\u00c6\u0007\u0001\u0000\u0000\u0000"+ - "\u00c7\u00c8\u0005\u000e\u0000\u0000\u00c8\u00c9\u0003l6\u0000\u00c9\t"+ - "\u0001\u0000\u0000\u0000\u00ca\u00cb\u0003,\u0016\u0000\u00cb\u000b\u0001"+ - "\u0000\u0000\u0000\u00cc\u00cd\u0005\u000b\u0000\u0000\u00cd\u00ce\u0003"+ - "\u000e\u0007\u0000\u00ce\r\u0001\u0000\u0000\u0000\u00cf\u00d4\u0003\u0010"+ - "\b\u0000\u00d0\u00d1\u0005>\u0000\u0000\u00d1\u00d3\u0003\u0010\b\u0000"+ - "\u00d2\u00d0\u0001\u0000\u0000\u0000\u00d3\u00d6\u0001\u0000\u0000\u0000"+ - "\u00d4\u00d2\u0001\u0000\u0000\u0000\u00d4\u00d5\u0001\u0000\u0000\u0000"+ - "\u00d5\u000f\u0001\u0000\u0000\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000"+ - "\u00d7\u00d8\u0003&\u0013\u0000\u00d8\u00d9\u0005;\u0000\u0000\u00d9\u00db"+ - "\u0001\u0000\u0000\u0000\u00da\u00d7\u0001\u0000\u0000\u0000\u00da\u00db"+ - "\u0001\u0000\u0000\u0000\u00db\u00dc\u0001\u0000\u0000\u0000\u00dc\u00dd"+ - "\u0003l6\u0000\u00dd\u0011\u0001\u0000\u0000\u0000\u00de\u00df\u0005\u0011"+ - "\u0000\u0000\u00df\u00e4\u0003\u0014\n\u0000\u00e0\u00e1\u0005>\u0000"+ - "\u0000\u00e1\u00e3\u0003\u0014\n\u0000\u00e2\u00e0\u0001\u0000\u0000\u0000"+ - "\u00e3\u00e6\u0001\u0000\u0000\u0000\u00e4\u00e2\u0001\u0000\u0000\u0000"+ - "\u00e4\u00e5\u0001\u0000\u0000\u0000\u00e5\u00e8\u0001\u0000\u0000\u0000"+ - "\u00e6\u00e4\u0001\u0000\u0000\u0000\u00e7\u00e9\u0003\u001a\r\u0000\u00e8"+ - "\u00e7\u0001\u0000\u0000\u0000\u00e8\u00e9\u0001\u0000\u0000\u0000\u00e9"+ - "\u0013\u0001\u0000\u0000\u0000\u00ea\u00eb\u0003\u0016\u000b\u0000\u00eb"+ - "\u00ec\u0005=\u0000\u0000\u00ec\u00ee\u0001\u0000\u0000\u0000\u00ed\u00ea"+ - "\u0001\u0000\u0000\u0000\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee\u00ef"+ - "\u0001\u0000\u0000\u0000\u00ef\u00f0\u0003\u0018\f\u0000\u00f0\u0015\u0001"+ - "\u0000\u0000\u0000\u00f1\u00f2\u0007\u0000\u0000\u0000\u00f2\u0017\u0001"+ - "\u0000\u0000\u0000\u00f3\u00f4\u0007\u0000\u0000\u0000\u00f4\u0019\u0001"+ - "\u0000\u0000\u0000\u00f5\u00f6\u0005f\u0000\u0000\u00f6\u00fb\u0005g\u0000"+ - "\u0000\u00f7\u00f8\u0005>\u0000\u0000\u00f8\u00fa\u0005g\u0000\u0000\u00f9"+ - "\u00f7\u0001\u0000\u0000\u0000\u00fa\u00fd\u0001\u0000\u0000\u0000\u00fb"+ - "\u00f9\u0001\u0000\u0000\u0000\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc"+ - "\u001b\u0001\u0000\u0000\u0000\u00fd\u00fb\u0001\u0000\u0000\u0000\u00fe"+ - "\u00ff\u0005\u0018\u0000\u0000\u00ff\u0104\u0003\u0014\n\u0000\u0100\u0101"+ - "\u0005>\u0000\u0000\u0101\u0103\u0003\u0014\n\u0000\u0102\u0100\u0001"+ - "\u0000\u0000\u0000\u0103\u0106\u0001\u0000\u0000\u0000\u0104\u0102\u0001"+ - "\u0000\u0000\u0000\u0104\u0105\u0001\u0000\u0000\u0000\u0105\u0108\u0001"+ - "\u0000\u0000\u0000\u0106\u0104\u0001\u0000\u0000\u0000\u0107\u0109\u0003"+ - "\"\u0011\u0000\u0108\u0107\u0001\u0000\u0000\u0000\u0108\u0109\u0001\u0000"+ - "\u0000\u0000\u0109\u010c\u0001\u0000\u0000\u0000\u010a\u010b\u00055\u0000"+ - "\u0000\u010b\u010d\u0003\u000e\u0007\u0000\u010c\u010a\u0001\u0000\u0000"+ - "\u0000\u010c\u010d\u0001\u0000\u0000\u0000\u010d\u001d\u0001\u0000\u0000"+ - "\u0000\u010e\u010f\u0005\b\u0000\u0000\u010f\u0110\u0003\u000e\u0007\u0000"+ - "\u0110\u001f\u0001\u0000\u0000\u0000\u0111\u0113\u0005\r\u0000\u0000\u0112"+ - "\u0114\u0003\"\u0011\u0000\u0113\u0112\u0001\u0000\u0000\u0000\u0113\u0114"+ - "\u0001\u0000\u0000\u0000\u0114\u0117\u0001\u0000\u0000\u0000\u0115\u0116"+ - "\u00055\u0000\u0000\u0116\u0118\u0003\u000e\u0007\u0000\u0117\u0115\u0001"+ - "\u0000\u0000\u0000\u0117\u0118\u0001\u0000\u0000\u0000\u0118!\u0001\u0000"+ - "\u0000\u0000\u0119\u011e\u0003$\u0012\u0000\u011a\u011b\u0005>\u0000\u0000"+ - "\u011b\u011d\u0003$\u0012\u0000\u011c\u011a\u0001\u0000\u0000\u0000\u011d"+ - "\u0120\u0001\u0000\u0000\u0000\u011e\u011c\u0001\u0000\u0000\u0000\u011e"+ - "\u011f\u0001\u0000\u0000\u0000\u011f#\u0001\u0000\u0000\u0000\u0120\u011e"+ - "\u0001\u0000\u0000\u0000\u0121\u0124\u0003\u0010\b\u0000\u0122\u0123\u0005"+ - "\u000e\u0000\u0000\u0123\u0125\u0003l6\u0000\u0124\u0122\u0001\u0000\u0000"+ - "\u0000\u0124\u0125\u0001\u0000\u0000\u0000\u0125%\u0001\u0000\u0000\u0000"+ - "\u0126\u012b\u00032\u0019\u0000\u0127\u0128\u0005@\u0000\u0000\u0128\u012a"+ - "\u00032\u0019\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u012d\u0001"+ - "\u0000\u0000\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012b\u012c\u0001"+ - "\u0000\u0000\u0000\u012c\'\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000"+ - "\u0000\u0000\u012e\u0133\u0003.\u0017\u0000\u012f\u0130\u0005@\u0000\u0000"+ - "\u0130\u0132\u0003.\u0017\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132"+ - "\u0135\u0001\u0000\u0000\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0133"+ - "\u0134\u0001\u0000\u0000\u0000\u0134)\u0001\u0000\u0000\u0000\u0135\u0133"+ - "\u0001\u0000\u0000\u0000\u0136\u013b\u0003(\u0014\u0000\u0137\u0138\u0005"+ - ">\u0000\u0000\u0138\u013a\u0003(\u0014\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+\u0001\u0000\u0000\u0000"+ - "\u013d\u013b\u0001\u0000\u0000\u0000\u013e\u013f\u0007\u0001\u0000\u0000"+ - "\u013f-\u0001\u0000\u0000\u0000\u0140\u0143\u0005\u0082\u0000\u0000\u0141"+ - "\u0143\u00030\u0018\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0141"+ - "\u0001\u0000\u0000\u0000\u0143/\u0001\u0000\u0000\u0000\u0144\u0147\u0005"+ - "K\u0000\u0000\u0145\u0147\u0005\\\u0000\u0000\u0146\u0144\u0001\u0000"+ - "\u0000\u0000\u0146\u0145\u0001\u0000\u0000\u0000\u01471\u0001\u0000\u0000"+ - "\u0000\u0148\u014b\u0003,\u0016\u0000\u0149\u014b\u00030\u0018\u0000\u014a"+ - "\u0148\u0001\u0000\u0000\u0000\u014a\u0149\u0001\u0000\u0000\u0000\u014b"+ - "3\u0001\u0000\u0000\u0000\u014c\u014f\u0003\u008aE\u0000\u014d\u014f\u0003"+ - "0\u0018\u0000\u014e\u014c\u0001\u0000\u0000\u0000\u014e\u014d\u0001\u0000"+ - "\u0000\u0000\u014f5\u0001\u0000\u0000\u0000\u0150\u0151\u0005\n\u0000"+ - "\u0000\u0151\u0152\u00053\u0000\u0000\u01527\u0001\u0000\u0000\u0000\u0153"+ - "\u0154\u0005\f\u0000\u0000\u0154\u0159\u0003:\u001d\u0000\u0155\u0156"+ - "\u0005>\u0000\u0000\u0156\u0158\u0003:\u001d\u0000\u0157\u0155\u0001\u0000"+ - "\u0000\u0000\u0158\u015b\u0001\u0000\u0000\u0000\u0159\u0157\u0001\u0000"+ - "\u0000\u0000\u0159\u015a\u0001\u0000\u0000\u0000\u015a9\u0001\u0000\u0000"+ - "\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015c\u015e\u0003l6\u0000\u015d"+ - "\u015f\u0007\u0002\u0000\u0000\u015e\u015d\u0001\u0000\u0000\u0000\u015e"+ - "\u015f\u0001\u0000\u0000\u0000\u015f\u0162\u0001\u0000\u0000\u0000\u0160"+ - "\u0161\u0005I\u0000\u0000\u0161\u0163\u0007\u0003\u0000\u0000\u0162\u0160"+ - "\u0001\u0000\u0000\u0000\u0162\u0163\u0001\u0000\u0000\u0000\u0163;\u0001"+ - "\u0000\u0000\u0000\u0164\u0165\u0005\u001b\u0000\u0000\u0165\u0166\u0003"+ - "*\u0015\u0000\u0166=\u0001\u0000\u0000\u0000\u0167\u0168\u0005\u001a\u0000"+ - "\u0000\u0168\u0169\u0003*\u0015\u0000\u0169?\u0001\u0000\u0000\u0000\u016a"+ - "\u016b\u0005\u001d\u0000\u0000\u016b\u0170\u0003B!\u0000\u016c\u016d\u0005"+ - ">\u0000\u0000\u016d\u016f\u0003B!\u0000\u016e\u016c\u0001\u0000\u0000"+ - "\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u016e\u0001\u0000\u0000"+ - "\u0000\u0170\u0171\u0001\u0000\u0000\u0000\u0171A\u0001\u0000\u0000\u0000"+ - "\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0174\u0003(\u0014\u0000\u0174"+ - "\u0175\u00058\u0000\u0000\u0175\u0176\u0003(\u0014\u0000\u0176C\u0001"+ - "\u0000\u0000\u0000\u0177\u0178\u0005\u0007\u0000\u0000\u0178\u0179\u0003"+ - "v;\u0000\u0179\u017b\u0003\u008aE\u0000\u017a\u017c\u0003J%\u0000\u017b"+ - "\u017a\u0001\u0000\u0000\u0000\u017b\u017c\u0001\u0000\u0000\u0000\u017c"+ - "E\u0001\u0000\u0000\u0000\u017d\u017e\u0005\t\u0000\u0000\u017e\u017f"+ - "\u0003v;\u0000\u017f\u0180\u0003\u008aE\u0000\u0180G\u0001\u0000\u0000"+ - "\u0000\u0181\u0182\u0005\u0019\u0000\u0000\u0182\u0183\u0003&\u0013\u0000"+ - "\u0183I\u0001\u0000\u0000\u0000\u0184\u0189\u0003L&\u0000\u0185\u0186"+ - "\u0005>\u0000\u0000\u0186\u0188\u0003L&\u0000\u0187\u0185\u0001\u0000"+ - "\u0000\u0000\u0188\u018b\u0001\u0000\u0000\u0000\u0189\u0187\u0001\u0000"+ - "\u0000\u0000\u0189\u018a\u0001\u0000\u0000\u0000\u018aK\u0001\u0000\u0000"+ - "\u0000\u018b\u0189\u0001\u0000\u0000\u0000\u018c\u018d\u0003,\u0016\u0000"+ - "\u018d\u018e\u0005;\u0000\u0000\u018e\u018f\u0003\u0080@\u0000\u018fM"+ - "\u0001\u0000\u0000\u0000\u0190\u0191\u0005\u0006\u0000\u0000\u0191\u0192"+ - "\u0003P(\u0000\u0192O\u0001\u0000\u0000\u0000\u0193\u0194\u0005]\u0000"+ - "\u0000\u0194\u0195\u0003\u0002\u0001\u0000\u0195\u0196\u0005^\u0000\u0000"+ - "\u0196Q\u0001\u0000\u0000\u0000\u0197\u0198\u0005\u001e\u0000\u0000\u0198"+ - "\u0199\u0005\u0089\u0000\u0000\u0199S\u0001\u0000\u0000\u0000\u019a\u019b"+ - "\u0005\u0005\u0000\u0000\u019b\u019e\u0005#\u0000\u0000\u019c\u019d\u0005"+ - "6\u0000\u0000\u019d\u019f\u0003(\u0014\u0000\u019e\u019c\u0001\u0000\u0000"+ - "\u0000\u019e\u019f\u0001\u0000\u0000\u0000\u019f\u01a9\u0001\u0000\u0000"+ - "\u0000\u01a0\u01a1\u00057\u0000\u0000\u01a1\u01a6\u0003V+\u0000\u01a2"+ - "\u01a3\u0005>\u0000\u0000\u01a3\u01a5\u0003V+\u0000\u01a4\u01a2\u0001"+ - "\u0000\u0000\u0000\u01a5\u01a8\u0001\u0000\u0000\u0000\u01a6\u01a4\u0001"+ - "\u0000\u0000\u0000\u01a6\u01a7\u0001\u0000\u0000\u0000\u01a7\u01aa\u0001"+ - "\u0000\u0000\u0000\u01a8\u01a6\u0001\u0000\u0000\u0000\u01a9\u01a0\u0001"+ - "\u0000\u0000\u0000\u01a9\u01aa\u0001\u0000\u0000\u0000\u01aaU\u0001\u0000"+ - "\u0000\u0000\u01ab\u01ac\u0003(\u0014\u0000\u01ac\u01ad\u0005;\u0000\u0000"+ - "\u01ad\u01af\u0001\u0000\u0000\u0000\u01ae\u01ab\u0001\u0000\u0000\u0000"+ - "\u01ae\u01af\u0001\u0000\u0000\u0000\u01af\u01b0\u0001\u0000\u0000\u0000"+ - "\u01b0\u01b1\u0003(\u0014\u0000\u01b1W\u0001\u0000\u0000\u0000\u01b2\u01b3"+ - "\u0005\u0017\u0000\u0000\u01b3\u01b4\u0003\u0014\n\u0000\u01b4\u01b5\u0005"+ - "6\u0000\u0000\u01b5\u01b6\u0003*\u0015\u0000\u01b6Y\u0001\u0000\u0000"+ - "\u0000\u01b7\u01b8\u0005\u000f\u0000\u0000\u01b8\u01bb\u0003\"\u0011\u0000"+ - "\u01b9\u01ba\u00055\u0000\u0000\u01ba\u01bc\u0003\u000e\u0007\u0000\u01bb"+ - "\u01b9\u0001\u0000\u0000\u0000\u01bb\u01bc\u0001\u0000\u0000\u0000\u01bc"+ - "[\u0001\u0000\u0000\u0000\u01bd\u01be\u0005\u0004\u0000\u0000\u01be\u01c1"+ - "\u0003&\u0013\u0000\u01bf\u01c0\u00056\u0000\u0000\u01c0\u01c2\u0003&"+ - "\u0013\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c1\u01c2\u0001\u0000"+ - "\u0000\u0000\u01c2\u01c8\u0001\u0000\u0000\u0000\u01c3\u01c4\u00058\u0000"+ - "\u0000\u01c4\u01c5\u0003&\u0013\u0000\u01c5\u01c6\u0005>\u0000\u0000\u01c6"+ - "\u01c7\u0003&\u0013\u0000\u01c7\u01c9\u0001\u0000\u0000\u0000\u01c8\u01c3"+ - "\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000\u0000\u0000\u01c9]\u0001"+ - "\u0000\u0000\u0000\u01ca\u01cb\u0005\u001c\u0000\u0000\u01cb\u01cc\u0003"+ - "*\u0015\u0000\u01cc_\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0012\u0000"+ - "\u0000\u01ce\u01cf\u0003b1\u0000\u01cfa\u0001\u0000\u0000\u0000\u01d0"+ - "\u01d2\u0003d2\u0000\u01d1\u01d0\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001"+ - "\u0000\u0000\u0000\u01d3\u01d1\u0001\u0000\u0000\u0000\u01d3\u01d4\u0001"+ - "\u0000\u0000\u0000\u01d4c\u0001\u0000\u0000\u0000\u01d5\u01d6\u0005_\u0000"+ - "\u0000\u01d6\u01d7\u0003f3\u0000\u01d7\u01d8\u0005`\u0000\u0000\u01d8"+ - "e\u0001\u0000\u0000\u0000\u01d9\u01da\u00063\uffff\uffff\u0000\u01da\u01db"+ - "\u0003h4\u0000\u01db\u01e1\u0001\u0000\u0000\u0000\u01dc\u01dd\n\u0001"+ - "\u0000\u0000\u01dd\u01de\u00051\u0000\u0000\u01de\u01e0\u0003h4\u0000"+ - "\u01df\u01dc\u0001\u0000\u0000\u0000\u01e0\u01e3\u0001\u0000\u0000\u0000"+ - "\u01e1\u01df\u0001\u0000\u0000\u0000\u01e1\u01e2\u0001\u0000\u0000\u0000"+ - "\u01e2g\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001\u0000\u0000\u0000\u01e4"+ - "\u01e8\u0003\b\u0004\u0000\u01e5\u01e8\u00038\u001c\u0000\u01e6\u01e8"+ - "\u00036\u001b\u0000\u01e7\u01e4\u0001\u0000\u0000\u0000\u01e7\u01e5\u0001"+ - "\u0000\u0000\u0000\u01e7\u01e6\u0001\u0000\u0000\u0000\u01e8i\u0001\u0000"+ - "\u0000\u0000\u01e9\u01ea\u0005\u0010\u0000\u0000\u01ea\u01ed\u00034\u001a"+ - "\u0000\u01eb\u01ec\u00056\u0000\u0000\u01ec\u01ee\u0003\u000e\u0007\u0000"+ - "\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000\u0000\u0000"+ - "\u01ee\u01ef\u0001\u0000\u0000\u0000\u01ef\u01f0\u00057\u0000\u0000\u01f0"+ - "\u01f1\u00034\u001a\u0000\u01f1k\u0001\u0000\u0000\u0000\u01f2\u01f3\u0006"+ - "6\uffff\uffff\u0000\u01f3\u01f4\u0005G\u0000\u0000\u01f4\u0210\u0003l"+ - "6\b\u01f5\u0210\u0003r9\u0000\u01f6\u0210\u0003n7\u0000\u01f7\u01f9\u0003"+ - "r9\u0000\u01f8\u01fa\u0005G\u0000\u0000\u01f9\u01f8\u0001\u0000\u0000"+ - "\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01fa\u01fb\u0001\u0000\u0000"+ - "\u0000\u01fb\u01fc\u0005C\u0000\u0000\u01fc\u01fd\u0005_\u0000\u0000\u01fd"+ - "\u0202\u0003r9\u0000\u01fe\u01ff\u0005>\u0000\u0000\u01ff\u0201\u0003"+ - "r9\u0000\u0200\u01fe\u0001\u0000\u0000\u0000\u0201\u0204\u0001\u0000\u0000"+ - "\u0000\u0202\u0200\u0001\u0000\u0000\u0000\u0202\u0203\u0001\u0000\u0000"+ - "\u0000\u0203\u0205\u0001\u0000\u0000\u0000\u0204\u0202\u0001\u0000\u0000"+ - "\u0000\u0205\u0206\u0005`\u0000\u0000\u0206\u0210\u0001\u0000\u0000\u0000"+ - "\u0207\u0208\u0003r9\u0000\u0208\u020a\u0005D\u0000\u0000\u0209\u020b"+ - "\u0005G\u0000\u0000\u020a\u0209\u0001\u0000\u0000\u0000\u020a\u020b\u0001"+ - "\u0000\u0000\u0000\u020b\u020c\u0001\u0000\u0000\u0000\u020c\u020d\u0005"+ - "H\u0000\u0000\u020d\u0210\u0001\u0000\u0000\u0000\u020e\u0210\u0003p8"+ - "\u0000\u020f\u01f2\u0001\u0000\u0000\u0000\u020f\u01f5\u0001\u0000\u0000"+ - "\u0000\u020f\u01f6\u0001\u0000\u0000\u0000\u020f\u01f7\u0001\u0000\u0000"+ - "\u0000\u020f\u0207\u0001\u0000\u0000\u0000\u020f\u020e\u0001\u0000\u0000"+ - "\u0000\u0210\u0219\u0001\u0000\u0000\u0000\u0211\u0212\n\u0005\u0000\u0000"+ - "\u0212\u0213\u00059\u0000\u0000\u0213\u0218\u0003l6\u0006\u0214\u0215"+ - "\n\u0004\u0000\u0000\u0215\u0216\u0005J\u0000\u0000\u0216\u0218\u0003"+ - "l6\u0005\u0217\u0211\u0001\u0000\u0000\u0000\u0217\u0214\u0001\u0000\u0000"+ - "\u0000\u0218\u021b\u0001\u0000\u0000\u0000\u0219\u0217\u0001\u0000\u0000"+ - "\u0000\u0219\u021a\u0001\u0000\u0000\u0000\u021am\u0001\u0000\u0000\u0000"+ - "\u021b\u0219\u0001\u0000\u0000\u0000\u021c\u021e\u0003r9\u0000\u021d\u021f"+ - "\u0005G\u0000\u0000\u021e\u021d\u0001\u0000\u0000\u0000\u021e\u021f\u0001"+ - "\u0000\u0000\u0000\u021f\u0220\u0001\u0000\u0000\u0000\u0220\u0221\u0005"+ - "F\u0000\u0000\u0221\u0222\u0003\u008aE\u0000\u0222\u022b\u0001\u0000\u0000"+ - "\u0000\u0223\u0225\u0003r9\u0000\u0224\u0226\u0005G\u0000\u0000\u0225"+ - "\u0224\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+ - "\u0227\u0001\u0000\u0000\u0000\u0227\u0228\u0005L\u0000\u0000\u0228\u0229"+ - "\u0003\u008aE\u0000\u0229\u022b\u0001\u0000\u0000\u0000\u022a\u021c\u0001"+ - "\u0000\u0000\u0000\u022a\u0223\u0001\u0000\u0000\u0000\u022bo\u0001\u0000"+ - "\u0000\u0000\u022c\u022f\u0003&\u0013\u0000\u022d\u022e\u0005<\u0000\u0000"+ - "\u022e\u0230\u0003\n\u0005\u0000\u022f\u022d\u0001\u0000\u0000\u0000\u022f"+ - "\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000\u0231"+ - "\u0232\u0005=\u0000\u0000\u0232\u0233\u0003\u0080@\u0000\u0233q\u0001"+ - "\u0000\u0000\u0000\u0234\u023a\u0003t:\u0000\u0235\u0236\u0003t:\u0000"+ - "\u0236\u0237\u0003\u008cF\u0000\u0237\u0238\u0003t:\u0000\u0238\u023a"+ - "\u0001\u0000\u0000\u0000\u0239\u0234\u0001\u0000\u0000\u0000\u0239\u0235"+ - "\u0001\u0000\u0000\u0000\u023as\u0001\u0000\u0000\u0000\u023b\u023c\u0006"+ - ":\uffff\uffff\u0000\u023c\u0240\u0003v;\u0000\u023d\u023e\u0007\u0004"+ - "\u0000\u0000\u023e\u0240\u0003t:\u0003\u023f\u023b\u0001\u0000\u0000\u0000"+ - "\u023f\u023d\u0001\u0000\u0000\u0000\u0240\u0249\u0001\u0000\u0000\u0000"+ - "\u0241\u0242\n\u0002\u0000\u0000\u0242\u0243\u0007\u0005\u0000\u0000\u0243"+ - "\u0248\u0003t:\u0003\u0244\u0245\n\u0001\u0000\u0000\u0245\u0246\u0007"+ - "\u0004\u0000\u0000\u0246\u0248\u0003t:\u0002\u0247\u0241\u0001\u0000\u0000"+ - "\u0000\u0247\u0244\u0001\u0000\u0000\u0000\u0248\u024b\u0001\u0000\u0000"+ - "\u0000\u0249\u0247\u0001\u0000\u0000\u0000\u0249\u024a\u0001\u0000\u0000"+ - "\u0000\u024au\u0001\u0000\u0000\u0000\u024b\u0249\u0001\u0000\u0000\u0000"+ - "\u024c\u024d\u0006;\uffff\uffff\u0000\u024d\u0255\u0003\u0080@\u0000\u024e"+ - "\u0255\u0003&\u0013\u0000\u024f\u0255\u0003x<\u0000\u0250\u0251\u0005"+ - "_\u0000\u0000\u0251\u0252\u0003l6\u0000\u0252\u0253\u0005`\u0000\u0000"+ - "\u0253\u0255\u0001\u0000\u0000\u0000\u0254\u024c\u0001\u0000\u0000\u0000"+ - "\u0254\u024e\u0001\u0000\u0000\u0000\u0254\u024f\u0001\u0000\u0000\u0000"+ - "\u0254\u0250\u0001\u0000\u0000\u0000\u0255\u025b\u0001\u0000\u0000\u0000"+ - "\u0256\u0257\n\u0001\u0000\u0000\u0257\u0258\u0005<\u0000\u0000\u0258"+ - "\u025a\u0003\n\u0005\u0000\u0259\u0256\u0001\u0000\u0000\u0000\u025a\u025d"+ - "\u0001\u0000\u0000\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025b\u025c"+ - "\u0001\u0000\u0000\u0000\u025cw\u0001\u0000\u0000\u0000\u025d\u025b\u0001"+ - "\u0000\u0000\u0000\u025e\u025f\u0003z=\u0000\u025f\u026d\u0005_\u0000"+ - "\u0000\u0260\u026e\u0005W\u0000\u0000\u0261\u0266\u0003l6\u0000\u0262"+ - "\u0263\u0005>\u0000\u0000\u0263\u0265\u0003l6\u0000\u0264\u0262\u0001"+ - "\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000\u0000\u0266\u0264\u0001"+ - "\u0000\u0000\u0000\u0266\u0267\u0001\u0000\u0000\u0000\u0267\u026b\u0001"+ - "\u0000\u0000\u0000\u0268\u0266\u0001\u0000\u0000\u0000\u0269\u026a\u0005"+ - ">\u0000\u0000\u026a\u026c\u0003|>\u0000\u026b\u0269\u0001\u0000\u0000"+ - "\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u026e\u0001\u0000\u0000"+ - "\u0000\u026d\u0260\u0001\u0000\u0000\u0000\u026d\u0261\u0001\u0000\u0000"+ - "\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u026f\u0001\u0000\u0000"+ - "\u0000\u026f\u0270\u0005`\u0000\u0000\u0270y\u0001\u0000\u0000\u0000\u0271"+ - "\u0272\u00032\u0019\u0000\u0272{\u0001\u0000\u0000\u0000\u0273\u0274\u0005"+ - "Z\u0000\u0000\u0274\u0279\u0003~?\u0000\u0275\u0276\u0005>\u0000\u0000"+ - "\u0276\u0278\u0003~?\u0000\u0277\u0275\u0001\u0000\u0000\u0000\u0278\u027b"+ - "\u0001\u0000\u0000\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u0279\u027a"+ - "\u0001\u0000\u0000\u0000\u027a\u027c\u0001\u0000\u0000\u0000\u027b\u0279"+ - "\u0001\u0000\u0000\u0000\u027c\u027d\u0005[\u0000\u0000\u027d}\u0001\u0000"+ - "\u0000\u0000\u027e\u027f\u0003\u008aE\u0000\u027f\u0280\u0005=\u0000\u0000"+ - "\u0280\u0281\u0003\u0080@\u0000\u0281\u007f\u0001\u0000\u0000\u0000\u0282"+ - "\u02ad\u0005H\u0000\u0000\u0283\u0284\u0003\u0088D\u0000\u0284\u0285\u0005"+ - "a\u0000\u0000\u0285\u02ad\u0001\u0000\u0000\u0000\u0286\u02ad\u0003\u0086"+ - "C\u0000\u0287\u02ad\u0003\u0088D\u0000\u0288\u02ad\u0003\u0082A\u0000"+ - "\u0289\u02ad\u00030\u0018\u0000\u028a\u02ad\u0003\u008aE\u0000\u028b\u028c"+ - "\u0005]\u0000\u0000\u028c\u0291\u0003\u0084B\u0000\u028d\u028e\u0005>"+ - "\u0000\u0000\u028e\u0290\u0003\u0084B\u0000\u028f\u028d\u0001\u0000\u0000"+ - "\u0000\u0290\u0293\u0001\u0000\u0000\u0000\u0291\u028f\u0001\u0000\u0000"+ - "\u0000\u0291\u0292\u0001\u0000\u0000\u0000\u0292\u0294\u0001\u0000\u0000"+ - "\u0000\u0293\u0291\u0001\u0000\u0000\u0000\u0294\u0295\u0005^\u0000\u0000"+ - "\u0295\u02ad\u0001\u0000\u0000\u0000\u0296\u0297\u0005]\u0000\u0000\u0297"+ - "\u029c\u0003\u0082A\u0000\u0298\u0299\u0005>\u0000\u0000\u0299\u029b\u0003"+ - "\u0082A\u0000\u029a\u0298\u0001\u0000\u0000\u0000\u029b\u029e\u0001\u0000"+ - "\u0000\u0000\u029c\u029a\u0001\u0000\u0000\u0000\u029c\u029d\u0001\u0000"+ - "\u0000\u0000\u029d\u029f\u0001\u0000\u0000\u0000\u029e\u029c\u0001\u0000"+ - "\u0000\u0000\u029f\u02a0\u0005^\u0000\u0000\u02a0\u02ad\u0001\u0000\u0000"+ - "\u0000\u02a1\u02a2\u0005]\u0000\u0000\u02a2\u02a7\u0003\u008aE\u0000\u02a3"+ - "\u02a4\u0005>\u0000\u0000\u02a4\u02a6\u0003\u008aE\u0000\u02a5\u02a3\u0001"+ - "\u0000\u0000\u0000\u02a6\u02a9\u0001\u0000\u0000\u0000\u02a7\u02a5\u0001"+ - "\u0000\u0000\u0000\u02a7\u02a8\u0001\u0000\u0000\u0000\u02a8\u02aa\u0001"+ - "\u0000\u0000\u0000\u02a9\u02a7\u0001\u0000\u0000\u0000\u02aa\u02ab\u0005"+ - "^\u0000\u0000\u02ab\u02ad\u0001\u0000\u0000\u0000\u02ac\u0282\u0001\u0000"+ - "\u0000\u0000\u02ac\u0283\u0001\u0000\u0000\u0000\u02ac\u0286\u0001\u0000"+ - "\u0000\u0000\u02ac\u0287\u0001\u0000\u0000\u0000\u02ac\u0288\u0001\u0000"+ - "\u0000\u0000\u02ac\u0289\u0001\u0000\u0000\u0000\u02ac\u028a\u0001\u0000"+ - "\u0000\u0000\u02ac\u028b\u0001\u0000\u0000\u0000\u02ac\u0296\u0001\u0000"+ - "\u0000\u0000\u02ac\u02a1\u0001\u0000\u0000\u0000\u02ad\u0081\u0001\u0000"+ - "\u0000\u0000\u02ae\u02af\u0007\u0006\u0000\u0000\u02af\u0083\u0001\u0000"+ - "\u0000\u0000\u02b0\u02b3\u0003\u0086C\u0000\u02b1\u02b3\u0003\u0088D\u0000"+ - "\u02b2\u02b0\u0001\u0000\u0000\u0000\u02b2\u02b1\u0001\u0000\u0000\u0000"+ - "\u02b3\u0085\u0001\u0000\u0000\u0000\u02b4\u02b6\u0007\u0004\u0000\u0000"+ - "\u02b5\u02b4\u0001\u0000\u0000\u0000\u02b5\u02b6\u0001\u0000\u0000\u0000"+ - "\u02b6\u02b7\u0001\u0000\u0000\u0000\u02b7\u02b8\u00054\u0000\u0000\u02b8"+ - "\u0087\u0001\u0000\u0000\u0000\u02b9\u02bb\u0007\u0004\u0000\u0000\u02ba"+ - "\u02b9\u0001\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb"+ - "\u02bc\u0001\u0000\u0000\u0000\u02bc\u02bd\u00053\u0000\u0000\u02bd\u0089"+ - "\u0001\u0000\u0000\u0000\u02be\u02bf\u00052\u0000\u0000\u02bf\u008b\u0001"+ - "\u0000\u0000\u0000\u02c0\u02c1\u0007\u0007\u0000\u0000\u02c1\u008d\u0001"+ - "\u0000\u0000\u0000\u02c2\u02c3\u0007\b\u0000\u0000\u02c3\u02c4\u0005n"+ - "\u0000\u0000\u02c4\u02c5\u0003\u0090H\u0000\u02c5\u02c6\u0003\u0092I\u0000"+ - "\u02c6\u008f\u0001\u0000\u0000\u0000\u02c7\u02c8\u0003\u0014\n\u0000\u02c8"+ - "\u0091\u0001\u0000\u0000\u0000\u02c9\u02ca\u00056\u0000\u0000\u02ca\u02cf"+ - "\u0003\u0094J\u0000\u02cb\u02cc\u0005>\u0000\u0000\u02cc\u02ce\u0003\u0094"+ - "J\u0000\u02cd\u02cb\u0001\u0000\u0000\u0000\u02ce\u02d1\u0001\u0000\u0000"+ - "\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000"+ - "\u0000\u02d0\u0093\u0001\u0000\u0000\u0000\u02d1\u02cf\u0001\u0000\u0000"+ - "\u0000\u02d2\u02d3\u0003r9\u0000\u02d3\u0095\u0001\u0000\u0000\u0000D"+ - "\u00a1\u00aa\u00c5\u00d4\u00da\u00e4\u00e8\u00ed\u00fb\u0104\u0108\u010c"+ - "\u0113\u0117\u011e\u0124\u012b\u0133\u013b\u0142\u0146\u014a\u014e\u0159"+ - "\u015e\u0162\u0170\u017b\u0189\u019e\u01a6\u01a9\u01ae\u01bb\u01c1\u01c8"+ - "\u01d3\u01e1\u01e7\u01ed\u01f9\u0202\u020a\u020f\u0217\u0219\u021e\u0225"+ - "\u022a\u022f\u0239\u023f\u0247\u0249\u0254\u025b\u0266\u026b\u026d\u0279"+ - "\u0291\u029c\u02a7\u02ac\u02b2\u02b5\u02ba\u02cf"; + "\u00015\u00015\u00015\u00015\u00015\u00016\u00016\u00016\u00016\u0001"+ + "6\u00016\u00016\u00036\u01f8\b6\u00016\u00016\u00016\u00016\u00016\u0005"+ + "6\u01ff\b6\n6\f6\u0202\t6\u00016\u00016\u00016\u00016\u00016\u00036\u0209"+ + "\b6\u00016\u00016\u00016\u00036\u020e\b6\u00016\u00016\u00016\u00016\u0001"+ + "6\u00016\u00056\u0216\b6\n6\f6\u0219\t6\u00017\u00017\u00037\u021d\b7"+ + "\u00017\u00017\u00017\u00017\u00017\u00037\u0224\b7\u00017\u00017\u0001"+ + "7\u00037\u0229\b7\u00018\u00018\u00018\u00038\u022e\b8\u00018\u00018\u0001"+ + "8\u00019\u00019\u00019\u00019\u00019\u00039\u0238\b9\u0001:\u0001:\u0001"+ + ":\u0001:\u0003:\u023e\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0005"+ + ":\u0246\b:\n:\f:\u0249\t:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001;\u0001"+ + ";\u0001;\u0003;\u0253\b;\u0001;\u0001;\u0001;\u0005;\u0258\b;\n;\f;\u025b"+ + "\t;\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005<\u0263\b<\n<\f<\u0266"+ + "\t<\u0001<\u0001<\u0003<\u026a\b<\u0003<\u026c\b<\u0001<\u0001<\u0001"+ + "=\u0001=\u0001>\u0001>\u0001>\u0001>\u0005>\u0276\b>\n>\f>\u0279\t>\u0001"+ + ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001"+ + "@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u028e"+ + "\b@\n@\f@\u0291\t@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u0299"+ + "\b@\n@\f@\u029c\t@\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u02a4"+ + "\b@\n@\f@\u02a7\t@\u0001@\u0001@\u0003@\u02ab\b@\u0001A\u0001A\u0001B"+ + "\u0001B\u0003B\u02b1\bB\u0001C\u0003C\u02b4\bC\u0001C\u0001C\u0001D\u0003"+ + "D\u02b9\bD\u0001D\u0001D\u0001E\u0001E\u0001F\u0001F\u0001G\u0001G\u0001"+ + "G\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001I\u0001I\u0005I\u02cc"+ + "\bI\nI\fI\u02cf\tI\u0001J\u0001J\u0001J\u0000\u0005\u0002fltvK\u0000\u0002"+ + "\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e"+ + " \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ + "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0000\t\u0002\u000022gg\u0001"+ + "\u0000ab\u0002\u0000::??\u0002\u0000BBEE\u0001\u0000UV\u0001\u0000WY\u0002"+ + "\u0000AAMM\u0002\u0000NNPT\u0002\u0000\u0013\u0013\u0015\u0016\u02ee\u0000"+ + "\u0096\u0001\u0000\u0000\u0000\u0002\u0099\u0001\u0000\u0000\u0000\u0004"+ + "\u00aa\u0001\u0000\u0000\u0000\u0006\u00c5\u0001\u0000\u0000\u0000\b\u00c7"+ + "\u0001\u0000\u0000\u0000\n\u00ca\u0001\u0000\u0000\u0000\f\u00cc\u0001"+ + "\u0000\u0000\u0000\u000e\u00cf\u0001\u0000\u0000\u0000\u0010\u00da\u0001"+ + "\u0000\u0000\u0000\u0012\u00de\u0001\u0000\u0000\u0000\u0014\u00ed\u0001"+ + "\u0000\u0000\u0000\u0016\u00f1\u0001\u0000\u0000\u0000\u0018\u00f3\u0001"+ + "\u0000\u0000\u0000\u001a\u00f5\u0001\u0000\u0000\u0000\u001c\u00fe\u0001"+ + "\u0000\u0000\u0000\u001e\u010e\u0001\u0000\u0000\u0000 \u0111\u0001\u0000"+ + "\u0000\u0000\"\u0119\u0001\u0000\u0000\u0000$\u0121\u0001\u0000\u0000"+ + "\u0000&\u0126\u0001\u0000\u0000\u0000(\u012e\u0001\u0000\u0000\u0000*"+ + "\u0136\u0001\u0000\u0000\u0000,\u013e\u0001\u0000\u0000\u0000.\u0142\u0001"+ + "\u0000\u0000\u00000\u0146\u0001\u0000\u0000\u00002\u014a\u0001\u0000\u0000"+ + "\u00004\u014e\u0001\u0000\u0000\u00006\u0150\u0001\u0000\u0000\u00008"+ + "\u0153\u0001\u0000\u0000\u0000:\u015c\u0001\u0000\u0000\u0000<\u0164\u0001"+ + "\u0000\u0000\u0000>\u0167\u0001\u0000\u0000\u0000@\u016a\u0001\u0000\u0000"+ + "\u0000B\u0173\u0001\u0000\u0000\u0000D\u0177\u0001\u0000\u0000\u0000F"+ + "\u017d\u0001\u0000\u0000\u0000H\u0181\u0001\u0000\u0000\u0000J\u0184\u0001"+ + "\u0000\u0000\u0000L\u018c\u0001\u0000\u0000\u0000N\u0190\u0001\u0000\u0000"+ + "\u0000P\u0193\u0001\u0000\u0000\u0000R\u0197\u0001\u0000\u0000\u0000T"+ + "\u019a\u0001\u0000\u0000\u0000V\u01ae\u0001\u0000\u0000\u0000X\u01b2\u0001"+ + "\u0000\u0000\u0000Z\u01b7\u0001\u0000\u0000\u0000\\\u01bd\u0001\u0000"+ + "\u0000\u0000^\u01ca\u0001\u0000\u0000\u0000`\u01cd\u0001\u0000\u0000\u0000"+ + "b\u01d1\u0001\u0000\u0000\u0000d\u01d5\u0001\u0000\u0000\u0000f\u01d9"+ + "\u0001\u0000\u0000\u0000h\u01e7\u0001\u0000\u0000\u0000j\u01e9\u0001\u0000"+ + "\u0000\u0000l\u020d\u0001\u0000\u0000\u0000n\u0228\u0001\u0000\u0000\u0000"+ + "p\u022a\u0001\u0000\u0000\u0000r\u0237\u0001\u0000\u0000\u0000t\u023d"+ + "\u0001\u0000\u0000\u0000v\u0252\u0001\u0000\u0000\u0000x\u025c\u0001\u0000"+ + "\u0000\u0000z\u026f\u0001\u0000\u0000\u0000|\u0271\u0001\u0000\u0000\u0000"+ + "~\u027c\u0001\u0000\u0000\u0000\u0080\u02aa\u0001\u0000\u0000\u0000\u0082"+ + "\u02ac\u0001\u0000\u0000\u0000\u0084\u02b0\u0001\u0000\u0000\u0000\u0086"+ + "\u02b3\u0001\u0000\u0000\u0000\u0088\u02b8\u0001\u0000\u0000\u0000\u008a"+ + "\u02bc\u0001\u0000\u0000\u0000\u008c\u02be\u0001\u0000\u0000\u0000\u008e"+ + "\u02c0\u0001\u0000\u0000\u0000\u0090\u02c5\u0001\u0000\u0000\u0000\u0092"+ + "\u02c7\u0001\u0000\u0000\u0000\u0094\u02d0\u0001\u0000\u0000\u0000\u0096"+ + "\u0097\u0003\u0002\u0001\u0000\u0097\u0098\u0005\u0000\u0000\u0001\u0098"+ + "\u0001\u0001\u0000\u0000\u0000\u0099\u009a\u0006\u0001\uffff\uffff\u0000"+ + "\u009a\u009b\u0003\u0004\u0002\u0000\u009b\u00a1\u0001\u0000\u0000\u0000"+ + "\u009c\u009d\n\u0001\u0000\u0000\u009d\u009e\u00051\u0000\u0000\u009e"+ + "\u00a0\u0003\u0006\u0003\u0000\u009f\u009c\u0001\u0000\u0000\u0000\u00a0"+ + "\u00a3\u0001\u0000\u0000\u0000\u00a1\u009f\u0001\u0000\u0000\u0000\u00a1"+ + "\u00a2\u0001\u0000\u0000\u0000\u00a2\u0003\u0001\u0000\u0000\u0000\u00a3"+ + "\u00a1\u0001\u0000\u0000\u0000\u00a4\u00ab\u0003N\'\u0000\u00a5\u00ab"+ + "\u0003\u0012\t\u0000\u00a6\u00ab\u0003\f\u0006\u0000\u00a7\u00ab\u0003"+ + "R)\u0000\u00a8\u00a9\u0004\u0002\u0001\u0000\u00a9\u00ab\u0003\u001c\u000e"+ + "\u0000\u00aa\u00a4\u0001\u0000\u0000\u0000\u00aa\u00a5\u0001\u0000\u0000"+ + "\u0000\u00aa\u00a6\u0001\u0000\u0000\u0000\u00aa\u00a7\u0001\u0000\u0000"+ + "\u0000\u00aa\u00a8\u0001\u0000\u0000\u0000\u00ab\u0005\u0001\u0000\u0000"+ + "\u0000\u00ac\u00c6\u0003\u001e\u000f\u0000\u00ad\u00c6\u0003\b\u0004\u0000"+ + "\u00ae\u00c6\u0003<\u001e\u0000\u00af\u00c6\u00036\u001b\u0000\u00b0\u00c6"+ + "\u0003 \u0010\u0000\u00b1\u00c6\u00038\u001c\u0000\u00b2\u00c6\u0003>"+ + "\u001f\u0000\u00b3\u00c6\u0003@ \u0000\u00b4\u00c6\u0003D\"\u0000\u00b5"+ + "\u00c6\u0003F#\u0000\u00b6\u00c6\u0003T*\u0000\u00b7\u00c6\u0003H$\u0000"+ + "\u00b8\u00c6\u0003\u008eG\u0000\u00b9\u00ba\u0004\u0003\u0002\u0000\u00ba"+ + "\u00c6\u0003Z-\u0000\u00bb\u00bc\u0004\u0003\u0003\u0000\u00bc\u00c6\u0003"+ + "X,\u0000\u00bd\u00be\u0004\u0003\u0004\u0000\u00be\u00c6\u0003\\.\u0000"+ + "\u00bf\u00c0\u0004\u0003\u0005\u0000\u00c0\u00c6\u0003^/\u0000\u00c1\u00c2"+ + "\u0004\u0003\u0006\u0000\u00c2\u00c6\u0003`0\u0000\u00c3\u00c4\u0004\u0003"+ + "\u0007\u0000\u00c4\u00c6\u0003j5\u0000\u00c5\u00ac\u0001\u0000\u0000\u0000"+ + "\u00c5\u00ad\u0001\u0000\u0000\u0000\u00c5\u00ae\u0001\u0000\u0000\u0000"+ + "\u00c5\u00af\u0001\u0000\u0000\u0000\u00c5\u00b0\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b1\u0001\u0000\u0000\u0000\u00c5\u00b2\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b3\u0001\u0000\u0000\u0000\u00c5\u00b4\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b5\u0001\u0000\u0000\u0000\u00c5\u00b6\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b7\u0001\u0000\u0000\u0000\u00c5\u00b8\u0001\u0000\u0000\u0000"+ + "\u00c5\u00b9\u0001\u0000\u0000\u0000\u00c5\u00bb\u0001\u0000\u0000\u0000"+ + "\u00c5\u00bd\u0001\u0000\u0000\u0000\u00c5\u00bf\u0001\u0000\u0000\u0000"+ + "\u00c5\u00c1\u0001\u0000\u0000\u0000\u00c5\u00c3\u0001\u0000\u0000\u0000"+ + "\u00c6\u0007\u0001\u0000\u0000\u0000\u00c7\u00c8\u0005\u000e\u0000\u0000"+ + "\u00c8\u00c9\u0003l6\u0000\u00c9\t\u0001\u0000\u0000\u0000\u00ca\u00cb"+ + "\u0003,\u0016\u0000\u00cb\u000b\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005"+ + "\u000b\u0000\u0000\u00cd\u00ce\u0003\u000e\u0007\u0000\u00ce\r\u0001\u0000"+ + "\u0000\u0000\u00cf\u00d4\u0003\u0010\b\u0000\u00d0\u00d1\u0005>\u0000"+ + "\u0000\u00d1\u00d3\u0003\u0010\b\u0000\u00d2\u00d0\u0001\u0000\u0000\u0000"+ + "\u00d3\u00d6\u0001\u0000\u0000\u0000\u00d4\u00d2\u0001\u0000\u0000\u0000"+ + "\u00d4\u00d5\u0001\u0000\u0000\u0000\u00d5\u000f\u0001\u0000\u0000\u0000"+ + "\u00d6\u00d4\u0001\u0000\u0000\u0000\u00d7\u00d8\u0003&\u0013\u0000\u00d8"+ + "\u00d9\u0005;\u0000\u0000\u00d9\u00db\u0001\u0000\u0000\u0000\u00da\u00d7"+ + "\u0001\u0000\u0000\u0000\u00da\u00db\u0001\u0000\u0000\u0000\u00db\u00dc"+ + "\u0001\u0000\u0000\u0000\u00dc\u00dd\u0003l6\u0000\u00dd\u0011\u0001\u0000"+ + "\u0000\u0000\u00de\u00df\u0005\u0011\u0000\u0000\u00df\u00e4\u0003\u0014"+ + "\n\u0000\u00e0\u00e1\u0005>\u0000\u0000\u00e1\u00e3\u0003\u0014\n\u0000"+ + "\u00e2\u00e0\u0001\u0000\u0000\u0000\u00e3\u00e6\u0001\u0000\u0000\u0000"+ + "\u00e4\u00e2\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001\u0000\u0000\u0000"+ + "\u00e5\u00e8\u0001\u0000\u0000\u0000\u00e6\u00e4\u0001\u0000\u0000\u0000"+ + "\u00e7\u00e9\u0003\u001a\r\u0000\u00e8\u00e7\u0001\u0000\u0000\u0000\u00e8"+ + "\u00e9\u0001\u0000\u0000\u0000\u00e9\u0013\u0001\u0000\u0000\u0000\u00ea"+ + "\u00eb\u0003\u0016\u000b\u0000\u00eb\u00ec\u0005=\u0000\u0000\u00ec\u00ee"+ + "\u0001\u0000\u0000\u0000\u00ed\u00ea\u0001\u0000\u0000\u0000\u00ed\u00ee"+ + "\u0001\u0000\u0000\u0000\u00ee\u00ef\u0001\u0000\u0000\u0000\u00ef\u00f0"+ + "\u0003\u0018\f\u0000\u00f0\u0015\u0001\u0000\u0000\u0000\u00f1\u00f2\u0007"+ + "\u0000\u0000\u0000\u00f2\u0017\u0001\u0000\u0000\u0000\u00f3\u00f4\u0007"+ + "\u0000\u0000\u0000\u00f4\u0019\u0001\u0000\u0000\u0000\u00f5\u00f6\u0005"+ + "f\u0000\u0000\u00f6\u00fb\u0005g\u0000\u0000\u00f7\u00f8\u0005>\u0000"+ + "\u0000\u00f8\u00fa\u0005g\u0000\u0000\u00f9\u00f7\u0001\u0000\u0000\u0000"+ + "\u00fa\u00fd\u0001\u0000\u0000\u0000\u00fb\u00f9\u0001\u0000\u0000\u0000"+ + "\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc\u001b\u0001\u0000\u0000\u0000"+ + "\u00fd\u00fb\u0001\u0000\u0000\u0000\u00fe\u00ff\u0005\u0018\u0000\u0000"+ + "\u00ff\u0104\u0003\u0014\n\u0000\u0100\u0101\u0005>\u0000\u0000\u0101"+ + "\u0103\u0003\u0014\n\u0000\u0102\u0100\u0001\u0000\u0000\u0000\u0103\u0106"+ + "\u0001\u0000\u0000\u0000\u0104\u0102\u0001\u0000\u0000\u0000\u0104\u0105"+ + "\u0001\u0000\u0000\u0000\u0105\u0108\u0001\u0000\u0000\u0000\u0106\u0104"+ + "\u0001\u0000\u0000\u0000\u0107\u0109\u0003\"\u0011\u0000\u0108\u0107\u0001"+ + "\u0000\u0000\u0000\u0108\u0109\u0001\u0000\u0000\u0000\u0109\u010c\u0001"+ + "\u0000\u0000\u0000\u010a\u010b\u00055\u0000\u0000\u010b\u010d\u0003\u000e"+ + "\u0007\u0000\u010c\u010a\u0001\u0000\u0000\u0000\u010c\u010d\u0001\u0000"+ + "\u0000\u0000\u010d\u001d\u0001\u0000\u0000\u0000\u010e\u010f\u0005\b\u0000"+ + "\u0000\u010f\u0110\u0003\u000e\u0007\u0000\u0110\u001f\u0001\u0000\u0000"+ + "\u0000\u0111\u0113\u0005\r\u0000\u0000\u0112\u0114\u0003\"\u0011\u0000"+ + "\u0113\u0112\u0001\u0000\u0000\u0000\u0113\u0114\u0001\u0000\u0000\u0000"+ + "\u0114\u0117\u0001\u0000\u0000\u0000\u0115\u0116\u00055\u0000\u0000\u0116"+ + "\u0118\u0003\u000e\u0007\u0000\u0117\u0115\u0001\u0000\u0000\u0000\u0117"+ + "\u0118\u0001\u0000\u0000\u0000\u0118!\u0001\u0000\u0000\u0000\u0119\u011e"+ + "\u0003$\u0012\u0000\u011a\u011b\u0005>\u0000\u0000\u011b\u011d\u0003$"+ + "\u0012\u0000\u011c\u011a\u0001\u0000\u0000\u0000\u011d\u0120\u0001\u0000"+ + "\u0000\u0000\u011e\u011c\u0001\u0000\u0000\u0000\u011e\u011f\u0001\u0000"+ + "\u0000\u0000\u011f#\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000"+ + "\u0000\u0121\u0124\u0003\u0010\b\u0000\u0122\u0123\u0005\u000e\u0000\u0000"+ + "\u0123\u0125\u0003l6\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0124\u0125"+ + "\u0001\u0000\u0000\u0000\u0125%\u0001\u0000\u0000\u0000\u0126\u012b\u0003"+ + "2\u0019\u0000\u0127\u0128\u0005@\u0000\u0000\u0128\u012a\u00032\u0019"+ + "\u0000\u0129\u0127\u0001\u0000\u0000\u0000\u012a\u012d\u0001\u0000\u0000"+ + "\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012b\u012c\u0001\u0000\u0000"+ + "\u0000\u012c\'\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000"+ + "\u012e\u0133\u0003.\u0017\u0000\u012f\u0130\u0005@\u0000\u0000\u0130\u0132"+ + "\u0003.\u0017\u0000\u0131\u012f\u0001\u0000\u0000\u0000\u0132\u0135\u0001"+ + "\u0000\u0000\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001"+ + "\u0000\u0000\u0000\u0134)\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000"+ + "\u0000\u0000\u0136\u013b\u0003(\u0014\u0000\u0137\u0138\u0005>\u0000\u0000"+ + "\u0138\u013a\u0003(\u0014\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+\u0001\u0000\u0000\u0000\u013d\u013b"+ + "\u0001\u0000\u0000\u0000\u013e\u013f\u0007\u0001\u0000\u0000\u013f-\u0001"+ + "\u0000\u0000\u0000\u0140\u0143\u0005\u0082\u0000\u0000\u0141\u0143\u0003"+ + "0\u0018\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0141\u0001\u0000"+ + "\u0000\u0000\u0143/\u0001\u0000\u0000\u0000\u0144\u0147\u0005K\u0000\u0000"+ + "\u0145\u0147\u0005\\\u0000\u0000\u0146\u0144\u0001\u0000\u0000\u0000\u0146"+ + "\u0145\u0001\u0000\u0000\u0000\u01471\u0001\u0000\u0000\u0000\u0148\u014b"+ + "\u0003,\u0016\u0000\u0149\u014b\u00030\u0018\u0000\u014a\u0148\u0001\u0000"+ + "\u0000\u0000\u014a\u0149\u0001\u0000\u0000\u0000\u014b3\u0001\u0000\u0000"+ + "\u0000\u014c\u014f\u0003\u008aE\u0000\u014d\u014f\u00030\u0018\u0000\u014e"+ + "\u014c\u0001\u0000\u0000\u0000\u014e\u014d\u0001\u0000\u0000\u0000\u014f"+ + "5\u0001\u0000\u0000\u0000\u0150\u0151\u0005\n\u0000\u0000\u0151\u0152"+ + "\u00053\u0000\u0000\u01527\u0001\u0000\u0000\u0000\u0153\u0154\u0005\f"+ + "\u0000\u0000\u0154\u0159\u0003:\u001d\u0000\u0155\u0156\u0005>\u0000\u0000"+ + "\u0156\u0158\u0003:\u001d\u0000\u0157\u0155\u0001\u0000\u0000\u0000\u0158"+ + "\u015b\u0001\u0000\u0000\u0000\u0159\u0157\u0001\u0000\u0000\u0000\u0159"+ + "\u015a\u0001\u0000\u0000\u0000\u015a9\u0001\u0000\u0000\u0000\u015b\u0159"+ + "\u0001\u0000\u0000\u0000\u015c\u015e\u0003l6\u0000\u015d\u015f\u0007\u0002"+ + "\u0000\u0000\u015e\u015d\u0001\u0000\u0000\u0000\u015e\u015f\u0001\u0000"+ + "\u0000\u0000\u015f\u0162\u0001\u0000\u0000\u0000\u0160\u0161\u0005I\u0000"+ + "\u0000\u0161\u0163\u0007\u0003\u0000\u0000\u0162\u0160\u0001\u0000\u0000"+ + "\u0000\u0162\u0163\u0001\u0000\u0000\u0000\u0163;\u0001\u0000\u0000\u0000"+ + "\u0164\u0165\u0005\u001b\u0000\u0000\u0165\u0166\u0003*\u0015\u0000\u0166"+ + "=\u0001\u0000\u0000\u0000\u0167\u0168\u0005\u001a\u0000\u0000\u0168\u0169"+ + "\u0003*\u0015\u0000\u0169?\u0001\u0000\u0000\u0000\u016a\u016b\u0005\u001d"+ + "\u0000\u0000\u016b\u0170\u0003B!\u0000\u016c\u016d\u0005>\u0000\u0000"+ + "\u016d\u016f\u0003B!\u0000\u016e\u016c\u0001\u0000\u0000\u0000\u016f\u0172"+ + "\u0001\u0000\u0000\u0000\u0170\u016e\u0001\u0000\u0000\u0000\u0170\u0171"+ + "\u0001\u0000\u0000\u0000\u0171A\u0001\u0000\u0000\u0000\u0172\u0170\u0001"+ + "\u0000\u0000\u0000\u0173\u0174\u0003(\u0014\u0000\u0174\u0175\u00058\u0000"+ + "\u0000\u0175\u0176\u0003(\u0014\u0000\u0176C\u0001\u0000\u0000\u0000\u0177"+ + "\u0178\u0005\u0007\u0000\u0000\u0178\u0179\u0003v;\u0000\u0179\u017b\u0003"+ + "\u008aE\u0000\u017a\u017c\u0003J%\u0000\u017b\u017a\u0001\u0000\u0000"+ + "\u0000\u017b\u017c\u0001\u0000\u0000\u0000\u017cE\u0001\u0000\u0000\u0000"+ + "\u017d\u017e\u0005\t\u0000\u0000\u017e\u017f\u0003v;\u0000\u017f\u0180"+ + "\u0003\u008aE\u0000\u0180G\u0001\u0000\u0000\u0000\u0181\u0182\u0005\u0019"+ + "\u0000\u0000\u0182\u0183\u0003&\u0013\u0000\u0183I\u0001\u0000\u0000\u0000"+ + "\u0184\u0189\u0003L&\u0000\u0185\u0186\u0005>\u0000\u0000\u0186\u0188"+ + "\u0003L&\u0000\u0187\u0185\u0001\u0000\u0000\u0000\u0188\u018b\u0001\u0000"+ + "\u0000\u0000\u0189\u0187\u0001\u0000\u0000\u0000\u0189\u018a\u0001\u0000"+ + "\u0000\u0000\u018aK\u0001\u0000\u0000\u0000\u018b\u0189\u0001\u0000\u0000"+ + "\u0000\u018c\u018d\u0003,\u0016\u0000\u018d\u018e\u0005;\u0000\u0000\u018e"+ + "\u018f\u0003\u0080@\u0000\u018fM\u0001\u0000\u0000\u0000\u0190\u0191\u0005"+ + "\u0006\u0000\u0000\u0191\u0192\u0003P(\u0000\u0192O\u0001\u0000\u0000"+ + "\u0000\u0193\u0194\u0005]\u0000\u0000\u0194\u0195\u0003\u0002\u0001\u0000"+ + "\u0195\u0196\u0005^\u0000\u0000\u0196Q\u0001\u0000\u0000\u0000\u0197\u0198"+ + "\u0005\u001e\u0000\u0000\u0198\u0199\u0005\u0089\u0000\u0000\u0199S\u0001"+ + "\u0000\u0000\u0000\u019a\u019b\u0005\u0005\u0000\u0000\u019b\u019e\u0005"+ + "#\u0000\u0000\u019c\u019d\u00056\u0000\u0000\u019d\u019f\u0003(\u0014"+ + "\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019e\u019f\u0001\u0000\u0000"+ + "\u0000\u019f\u01a9\u0001\u0000\u0000\u0000\u01a0\u01a1\u00057\u0000\u0000"+ + "\u01a1\u01a6\u0003V+\u0000\u01a2\u01a3\u0005>\u0000\u0000\u01a3\u01a5"+ + "\u0003V+\u0000\u01a4\u01a2\u0001\u0000\u0000\u0000\u01a5\u01a8\u0001\u0000"+ + "\u0000\u0000\u01a6\u01a4\u0001\u0000\u0000\u0000\u01a6\u01a7\u0001\u0000"+ + "\u0000\u0000\u01a7\u01aa\u0001\u0000\u0000\u0000\u01a8\u01a6\u0001\u0000"+ + "\u0000\u0000\u01a9\u01a0\u0001\u0000\u0000\u0000\u01a9\u01aa\u0001\u0000"+ + "\u0000\u0000\u01aaU\u0001\u0000\u0000\u0000\u01ab\u01ac\u0003(\u0014\u0000"+ + "\u01ac\u01ad\u0005;\u0000\u0000\u01ad\u01af\u0001\u0000\u0000\u0000\u01ae"+ + "\u01ab\u0001\u0000\u0000\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01af"+ + "\u01b0\u0001\u0000\u0000\u0000\u01b0\u01b1\u0003(\u0014\u0000\u01b1W\u0001"+ + "\u0000\u0000\u0000\u01b2\u01b3\u0005\u0017\u0000\u0000\u01b3\u01b4\u0003"+ + "\u0014\n\u0000\u01b4\u01b5\u00056\u0000\u0000\u01b5\u01b6\u0003*\u0015"+ + "\u0000\u01b6Y\u0001\u0000\u0000\u0000\u01b7\u01b8\u0005\u000f\u0000\u0000"+ + "\u01b8\u01bb\u0003\"\u0011\u0000\u01b9\u01ba\u00055\u0000\u0000\u01ba"+ + "\u01bc\u0003\u000e\u0007\u0000\u01bb\u01b9\u0001\u0000\u0000\u0000\u01bb"+ + "\u01bc\u0001\u0000\u0000\u0000\u01bc[\u0001\u0000\u0000\u0000\u01bd\u01be"+ + "\u0005\u0004\u0000\u0000\u01be\u01c1\u0003&\u0013\u0000\u01bf\u01c0\u0005"+ + "6\u0000\u0000\u01c0\u01c2\u0003&\u0013\u0000\u01c1\u01bf\u0001\u0000\u0000"+ + "\u0000\u01c1\u01c2\u0001\u0000\u0000\u0000\u01c2\u01c8\u0001\u0000\u0000"+ + "\u0000\u01c3\u01c4\u00058\u0000\u0000\u01c4\u01c5\u0003&\u0013\u0000\u01c5"+ + "\u01c6\u0005>\u0000\u0000\u01c6\u01c7\u0003&\u0013\u0000\u01c7\u01c9\u0001"+ + "\u0000\u0000\u0000\u01c8\u01c3\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001"+ + "\u0000\u0000\u0000\u01c9]\u0001\u0000\u0000\u0000\u01ca\u01cb\u0005\u001c"+ + "\u0000\u0000\u01cb\u01cc\u0003*\u0015\u0000\u01cc_\u0001\u0000\u0000\u0000"+ + "\u01cd\u01ce\u0005\u0012\u0000\u0000\u01ce\u01cf\u0003b1\u0000\u01cfa"+ + "\u0001\u0000\u0000\u0000\u01d0\u01d2\u0003d2\u0000\u01d1\u01d0\u0001\u0000"+ + "\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000\u01d3\u01d1\u0001\u0000"+ + "\u0000\u0000\u01d3\u01d4\u0001\u0000\u0000\u0000\u01d4c\u0001\u0000\u0000"+ + "\u0000\u01d5\u01d6\u0005_\u0000\u0000\u01d6\u01d7\u0003f3\u0000\u01d7"+ + "\u01d8\u0005`\u0000\u0000\u01d8e\u0001\u0000\u0000\u0000\u01d9\u01da\u0006"+ + "3\uffff\uffff\u0000\u01da\u01db\u0003h4\u0000\u01db\u01e1\u0001\u0000"+ + "\u0000\u0000\u01dc\u01dd\n\u0001\u0000\u0000\u01dd\u01de\u00051\u0000"+ + "\u0000\u01de\u01e0\u0003h4\u0000\u01df\u01dc\u0001\u0000\u0000\u0000\u01e0"+ + "\u01e3\u0001\u0000\u0000\u0000\u01e1\u01df\u0001\u0000\u0000\u0000\u01e1"+ + "\u01e2\u0001\u0000\u0000\u0000\u01e2g\u0001\u0000\u0000\u0000\u01e3\u01e1"+ + "\u0001\u0000\u0000\u0000\u01e4\u01e8\u0003\b\u0004\u0000\u01e5\u01e8\u0003"+ + "8\u001c\u0000\u01e6\u01e8\u00036\u001b\u0000\u01e7\u01e4\u0001\u0000\u0000"+ + "\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000\u01e7\u01e6\u0001\u0000\u0000"+ + "\u0000\u01e8i\u0001\u0000\u0000\u0000\u01e9\u01ea\u0005\u0010\u0000\u0000"+ + "\u01ea\u01eb\u00034\u001a\u0000\u01eb\u01ec\u00056\u0000\u0000\u01ec\u01ed"+ + "\u0003\u000e\u0007\u0000\u01ed\u01ee\u00057\u0000\u0000\u01ee\u01ef\u0003"+ + "4\u001a\u0000\u01efk\u0001\u0000\u0000\u0000\u01f0\u01f1\u00066\uffff"+ + "\uffff\u0000\u01f1\u01f2\u0005G\u0000\u0000\u01f2\u020e\u0003l6\b\u01f3"+ + "\u020e\u0003r9\u0000\u01f4\u020e\u0003n7\u0000\u01f5\u01f7\u0003r9\u0000"+ + "\u01f6\u01f8\u0005G\u0000\u0000\u01f7\u01f6\u0001\u0000\u0000\u0000\u01f7"+ + "\u01f8\u0001\u0000\u0000\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9"+ + "\u01fa\u0005C\u0000\u0000\u01fa\u01fb\u0005_\u0000\u0000\u01fb\u0200\u0003"+ + "r9\u0000\u01fc\u01fd\u0005>\u0000\u0000\u01fd\u01ff\u0003r9\u0000\u01fe"+ + "\u01fc\u0001\u0000\u0000\u0000\u01ff\u0202\u0001\u0000\u0000\u0000\u0200"+ + "\u01fe\u0001\u0000\u0000\u0000\u0200\u0201\u0001\u0000\u0000\u0000\u0201"+ + "\u0203\u0001\u0000\u0000\u0000\u0202\u0200\u0001\u0000\u0000\u0000\u0203"+ + "\u0204\u0005`\u0000\u0000\u0204\u020e\u0001\u0000\u0000\u0000\u0205\u0206"+ + "\u0003r9\u0000\u0206\u0208\u0005D\u0000\u0000\u0207\u0209\u0005G\u0000"+ + "\u0000\u0208\u0207\u0001\u0000\u0000\u0000\u0208\u0209\u0001\u0000\u0000"+ + "\u0000\u0209\u020a\u0001\u0000\u0000\u0000\u020a\u020b\u0005H\u0000\u0000"+ + "\u020b\u020e\u0001\u0000\u0000\u0000\u020c\u020e\u0003p8\u0000\u020d\u01f0"+ + "\u0001\u0000\u0000\u0000\u020d\u01f3\u0001\u0000\u0000\u0000\u020d\u01f4"+ + "\u0001\u0000\u0000\u0000\u020d\u01f5\u0001\u0000\u0000\u0000\u020d\u0205"+ + "\u0001\u0000\u0000\u0000\u020d\u020c\u0001\u0000\u0000\u0000\u020e\u0217"+ + "\u0001\u0000\u0000\u0000\u020f\u0210\n\u0005\u0000\u0000\u0210\u0211\u0005"+ + "9\u0000\u0000\u0211\u0216\u0003l6\u0006\u0212\u0213\n\u0004\u0000\u0000"+ + "\u0213\u0214\u0005J\u0000\u0000\u0214\u0216\u0003l6\u0005\u0215\u020f"+ + "\u0001\u0000\u0000\u0000\u0215\u0212\u0001\u0000\u0000\u0000\u0216\u0219"+ + "\u0001\u0000\u0000\u0000\u0217\u0215\u0001\u0000\u0000\u0000\u0217\u0218"+ + "\u0001\u0000\u0000\u0000\u0218m\u0001\u0000\u0000\u0000\u0219\u0217\u0001"+ + "\u0000\u0000\u0000\u021a\u021c\u0003r9\u0000\u021b\u021d\u0005G\u0000"+ + "\u0000\u021c\u021b\u0001\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000"+ + "\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u021f\u0005F\u0000\u0000"+ + "\u021f\u0220\u0003\u008aE\u0000\u0220\u0229\u0001\u0000\u0000\u0000\u0221"+ + "\u0223\u0003r9\u0000\u0222\u0224\u0005G\u0000\u0000\u0223\u0222\u0001"+ + "\u0000\u0000\u0000\u0223\u0224\u0001\u0000\u0000\u0000\u0224\u0225\u0001"+ + "\u0000\u0000\u0000\u0225\u0226\u0005L\u0000\u0000\u0226\u0227\u0003\u008a"+ + "E\u0000\u0227\u0229\u0001\u0000\u0000\u0000\u0228\u021a\u0001\u0000\u0000"+ + "\u0000\u0228\u0221\u0001\u0000\u0000\u0000\u0229o\u0001\u0000\u0000\u0000"+ + "\u022a\u022d\u0003&\u0013\u0000\u022b\u022c\u0005<\u0000\u0000\u022c\u022e"+ + "\u0003\n\u0005\u0000\u022d\u022b\u0001\u0000\u0000\u0000\u022d\u022e\u0001"+ + "\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000\u022f\u0230\u0005"+ + "=\u0000\u0000\u0230\u0231\u0003\u0080@\u0000\u0231q\u0001\u0000\u0000"+ + "\u0000\u0232\u0238\u0003t:\u0000\u0233\u0234\u0003t:\u0000\u0234\u0235"+ + "\u0003\u008cF\u0000\u0235\u0236\u0003t:\u0000\u0236\u0238\u0001\u0000"+ + "\u0000\u0000\u0237\u0232\u0001\u0000\u0000\u0000\u0237\u0233\u0001\u0000"+ + "\u0000\u0000\u0238s\u0001\u0000\u0000\u0000\u0239\u023a\u0006:\uffff\uffff"+ + "\u0000\u023a\u023e\u0003v;\u0000\u023b\u023c\u0007\u0004\u0000\u0000\u023c"+ + "\u023e\u0003t:\u0003\u023d\u0239\u0001\u0000\u0000\u0000\u023d\u023b\u0001"+ + "\u0000\u0000\u0000\u023e\u0247\u0001\u0000\u0000\u0000\u023f\u0240\n\u0002"+ + "\u0000\u0000\u0240\u0241\u0007\u0005\u0000\u0000\u0241\u0246\u0003t:\u0003"+ + "\u0242\u0243\n\u0001\u0000\u0000\u0243\u0244\u0007\u0004\u0000\u0000\u0244"+ + "\u0246\u0003t:\u0002\u0245\u023f\u0001\u0000\u0000\u0000\u0245\u0242\u0001"+ + "\u0000\u0000\u0000\u0246\u0249\u0001\u0000\u0000\u0000\u0247\u0245\u0001"+ + "\u0000\u0000\u0000\u0247\u0248\u0001\u0000\u0000\u0000\u0248u\u0001\u0000"+ + "\u0000\u0000\u0249\u0247\u0001\u0000\u0000\u0000\u024a\u024b\u0006;\uffff"+ + "\uffff\u0000\u024b\u0253\u0003\u0080@\u0000\u024c\u0253\u0003&\u0013\u0000"+ + "\u024d\u0253\u0003x<\u0000\u024e\u024f\u0005_\u0000\u0000\u024f\u0250"+ + "\u0003l6\u0000\u0250\u0251\u0005`\u0000\u0000\u0251\u0253\u0001\u0000"+ + "\u0000\u0000\u0252\u024a\u0001\u0000\u0000\u0000\u0252\u024c\u0001\u0000"+ + "\u0000\u0000\u0252\u024d\u0001\u0000\u0000\u0000\u0252\u024e\u0001\u0000"+ + "\u0000\u0000\u0253\u0259\u0001\u0000\u0000\u0000\u0254\u0255\n\u0001\u0000"+ + "\u0000\u0255\u0256\u0005<\u0000\u0000\u0256\u0258\u0003\n\u0005\u0000"+ + "\u0257\u0254\u0001\u0000\u0000\u0000\u0258\u025b\u0001\u0000\u0000\u0000"+ + "\u0259\u0257\u0001\u0000\u0000\u0000\u0259\u025a\u0001\u0000\u0000\u0000"+ + "\u025aw\u0001\u0000\u0000\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025c"+ + "\u025d\u0003z=\u0000\u025d\u026b\u0005_\u0000\u0000\u025e\u026c\u0005"+ + "W\u0000\u0000\u025f\u0264\u0003l6\u0000\u0260\u0261\u0005>\u0000\u0000"+ + "\u0261\u0263\u0003l6\u0000\u0262\u0260\u0001\u0000\u0000\u0000\u0263\u0266"+ + "\u0001\u0000\u0000\u0000\u0264\u0262\u0001\u0000\u0000\u0000\u0264\u0265"+ + "\u0001\u0000\u0000\u0000\u0265\u0269\u0001\u0000\u0000\u0000\u0266\u0264"+ + "\u0001\u0000\u0000\u0000\u0267\u0268\u0005>\u0000\u0000\u0268\u026a\u0003"+ + "|>\u0000\u0269\u0267\u0001\u0000\u0000\u0000\u0269\u026a\u0001\u0000\u0000"+ + "\u0000\u026a\u026c\u0001\u0000\u0000\u0000\u026b\u025e\u0001\u0000\u0000"+ + "\u0000\u026b\u025f\u0001\u0000\u0000\u0000\u026b\u026c\u0001\u0000\u0000"+ + "\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u026e\u0005`\u0000\u0000"+ + "\u026ey\u0001\u0000\u0000\u0000\u026f\u0270\u00032\u0019\u0000\u0270{"+ + "\u0001\u0000\u0000\u0000\u0271\u0272\u0005Z\u0000\u0000\u0272\u0277\u0003"+ + "~?\u0000\u0273\u0274\u0005>\u0000\u0000\u0274\u0276\u0003~?\u0000\u0275"+ + "\u0273\u0001\u0000\u0000\u0000\u0276\u0279\u0001\u0000\u0000\u0000\u0277"+ + "\u0275\u0001\u0000\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000\u0278"+ + "\u027a\u0001\u0000\u0000\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u027a"+ + "\u027b\u0005[\u0000\u0000\u027b}\u0001\u0000\u0000\u0000\u027c\u027d\u0003"+ + "\u008aE\u0000\u027d\u027e\u0005=\u0000\u0000\u027e\u027f\u0003\u0080@"+ + "\u0000\u027f\u007f\u0001\u0000\u0000\u0000\u0280\u02ab\u0005H\u0000\u0000"+ + "\u0281\u0282\u0003\u0088D\u0000\u0282\u0283\u0005a\u0000\u0000\u0283\u02ab"+ + "\u0001\u0000\u0000\u0000\u0284\u02ab\u0003\u0086C\u0000\u0285\u02ab\u0003"+ + "\u0088D\u0000\u0286\u02ab\u0003\u0082A\u0000\u0287\u02ab\u00030\u0018"+ + "\u0000\u0288\u02ab\u0003\u008aE\u0000\u0289\u028a\u0005]\u0000\u0000\u028a"+ + "\u028f\u0003\u0084B\u0000\u028b\u028c\u0005>\u0000\u0000\u028c\u028e\u0003"+ + "\u0084B\u0000\u028d\u028b\u0001\u0000\u0000\u0000\u028e\u0291\u0001\u0000"+ + "\u0000\u0000\u028f\u028d\u0001\u0000\u0000\u0000\u028f\u0290\u0001\u0000"+ + "\u0000\u0000\u0290\u0292\u0001\u0000\u0000\u0000\u0291\u028f\u0001\u0000"+ + "\u0000\u0000\u0292\u0293\u0005^\u0000\u0000\u0293\u02ab\u0001\u0000\u0000"+ + "\u0000\u0294\u0295\u0005]\u0000\u0000\u0295\u029a\u0003\u0082A\u0000\u0296"+ + "\u0297\u0005>\u0000\u0000\u0297\u0299\u0003\u0082A\u0000\u0298\u0296\u0001"+ + "\u0000\u0000\u0000\u0299\u029c\u0001\u0000\u0000\u0000\u029a\u0298\u0001"+ + "\u0000\u0000\u0000\u029a\u029b\u0001\u0000\u0000\u0000\u029b\u029d\u0001"+ + "\u0000\u0000\u0000\u029c\u029a\u0001\u0000\u0000\u0000\u029d\u029e\u0005"+ + "^\u0000\u0000\u029e\u02ab\u0001\u0000\u0000\u0000\u029f\u02a0\u0005]\u0000"+ + "\u0000\u02a0\u02a5\u0003\u008aE\u0000\u02a1\u02a2\u0005>\u0000\u0000\u02a2"+ + "\u02a4\u0003\u008aE\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a4\u02a7"+ + "\u0001\u0000\u0000\u0000\u02a5\u02a3\u0001\u0000\u0000\u0000\u02a5\u02a6"+ + "\u0001\u0000\u0000\u0000\u02a6\u02a8\u0001\u0000\u0000\u0000\u02a7\u02a5"+ + "\u0001\u0000\u0000\u0000\u02a8\u02a9\u0005^\u0000\u0000\u02a9\u02ab\u0001"+ + "\u0000\u0000\u0000\u02aa\u0280\u0001\u0000\u0000\u0000\u02aa\u0281\u0001"+ + "\u0000\u0000\u0000\u02aa\u0284\u0001\u0000\u0000\u0000\u02aa\u0285\u0001"+ + "\u0000\u0000\u0000\u02aa\u0286\u0001\u0000\u0000\u0000\u02aa\u0287\u0001"+ + "\u0000\u0000\u0000\u02aa\u0288\u0001\u0000\u0000\u0000\u02aa\u0289\u0001"+ + "\u0000\u0000\u0000\u02aa\u0294\u0001\u0000\u0000\u0000\u02aa\u029f\u0001"+ + "\u0000\u0000\u0000\u02ab\u0081\u0001\u0000\u0000\u0000\u02ac\u02ad\u0007"+ + "\u0006\u0000\u0000\u02ad\u0083\u0001\u0000\u0000\u0000\u02ae\u02b1\u0003"+ + "\u0086C\u0000\u02af\u02b1\u0003\u0088D\u0000\u02b0\u02ae\u0001\u0000\u0000"+ + "\u0000\u02b0\u02af\u0001\u0000\u0000\u0000\u02b1\u0085\u0001\u0000\u0000"+ + "\u0000\u02b2\u02b4\u0007\u0004\u0000\u0000\u02b3\u02b2\u0001\u0000\u0000"+ + "\u0000\u02b3\u02b4\u0001\u0000\u0000\u0000\u02b4\u02b5\u0001\u0000\u0000"+ + "\u0000\u02b5\u02b6\u00054\u0000\u0000\u02b6\u0087\u0001\u0000\u0000\u0000"+ + "\u02b7\u02b9\u0007\u0004\u0000\u0000\u02b8\u02b7\u0001\u0000\u0000\u0000"+ + "\u02b8\u02b9\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000"+ + "\u02ba\u02bb\u00053\u0000\u0000\u02bb\u0089\u0001\u0000\u0000\u0000\u02bc"+ + "\u02bd\u00052\u0000\u0000\u02bd\u008b\u0001\u0000\u0000\u0000\u02be\u02bf"+ + "\u0007\u0007\u0000\u0000\u02bf\u008d\u0001\u0000\u0000\u0000\u02c0\u02c1"+ + "\u0007\b\u0000\u0000\u02c1\u02c2\u0005n\u0000\u0000\u02c2\u02c3\u0003"+ + "\u0090H\u0000\u02c3\u02c4\u0003\u0092I\u0000\u02c4\u008f\u0001\u0000\u0000"+ + "\u0000\u02c5\u02c6\u0003\u0014\n\u0000\u02c6\u0091\u0001\u0000\u0000\u0000"+ + "\u02c7\u02c8\u00056\u0000\u0000\u02c8\u02cd\u0003\u0094J\u0000\u02c9\u02ca"+ + "\u0005>\u0000\u0000\u02ca\u02cc\u0003\u0094J\u0000\u02cb\u02c9\u0001\u0000"+ + "\u0000\u0000\u02cc\u02cf\u0001\u0000\u0000\u0000\u02cd\u02cb\u0001\u0000"+ + "\u0000\u0000\u02cd\u02ce\u0001\u0000\u0000\u0000\u02ce\u0093\u0001\u0000"+ + "\u0000\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000\u02d0\u02d1\u0003r9\u0000"+ + "\u02d1\u0095\u0001\u0000\u0000\u0000C\u00a1\u00aa\u00c5\u00d4\u00da\u00e4"+ + "\u00e8\u00ed\u00fb\u0104\u0108\u010c\u0113\u0117\u011e\u0124\u012b\u0133"+ + "\u013b\u0142\u0146\u014a\u014e\u0159\u015e\u0162\u0170\u017b\u0189\u019e"+ + "\u01a6\u01a9\u01ae\u01bb\u01c1\u01c8\u01d3\u01e1\u01e7\u01f7\u0200\u0208"+ + "\u020d\u0215\u0217\u021c\u0223\u0228\u022d\u0237\u023d\u0245\u0247\u0252"+ + "\u0259\u0264\u0269\u026b\u0277\u028f\u029a\u02a5\u02aa\u02b0\u02b3\u02b8"+ + "\u02cd"; 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/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index fad1d5dcde280..2f2281a2c02de 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java @@ -695,17 +695,12 @@ public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { throw new ParsingException(source, "RERANK is in preview and only available in SNAPSHOT build"); } - return p -> { - List rerankFields = new ArrayList<>(); - if (ctx.fields() != null) { - rerankFields = visitFields(ctx.fields()); - } else { - for (var attribute : p.output()) { - rerankFields.add(new Alias(Source.EMPTY, attribute.name(), new UnresolvedAttribute(Source.EMPTY, attribute.name()))); - } - } - - return new Rerank(source, p, visitStringOrParameter(ctx.inferenceId), visitStringOrParameter(ctx.queryText), rerankFields); - }; + return p -> new Rerank( + source, + p, + visitStringOrParameter(ctx.inferenceId), + visitStringOrParameter(ctx.queryText), + visitFields(ctx.fields()) + ); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index efad255d18afd..491d303e35189 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -13,15 +13,20 @@ import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.esql.core.capabilities.Resolvables; import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.AttributeSet; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Expressions; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; +import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic; +import org.elasticsearch.xpack.esql.plan.logical.SurrogateLogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; import java.io.IOException; @@ -30,7 +35,7 @@ import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes; -public class Rerank extends InferencePlan implements SortAgnostic { +public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); private final Expression queryText; @@ -121,4 +126,12 @@ public boolean equals(Object o) { public int hashCode() { return Objects.hash(super.hashCode(), queryText, rerankFields); } + + @Override + public LogicalPlan surrogate() { + Attribute scoreAttribute = child().output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get(); + assert scoreAttribute != null; + Order sortOrder = new Order(source(), scoreAttribute, Order.OrderDirection.DESC, Order.NullsPosition.ANY); + return new OrderBy(source(), this, List.of(sortOrder)); + } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index db2944aeeb294..bf76ded09f622 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -253,6 +253,10 @@ public final void test() throws Throwable { "enrich can't load fields in csv tests", testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.ENRICH_LOAD.capabilityName()) ); + assumeFalse( + "can't use rereank in csv tests", + testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.ENRICH_LOAD.capabilityName()) + ); assumeFalse( "can't use match in csv tests", testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.MATCH_OPERATOR_COLON.capabilityName()) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java index c14fe7299187f..cb14da9ebb54b 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java @@ -8,12 +8,15 @@ package org.elasticsearch.xpack.esql.analysis; import org.elasticsearch.index.IndexMode; +import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.core.enrich.EnrichPolicy; import org.elasticsearch.xpack.esql.EsqlTestUtils; import org.elasticsearch.xpack.esql.enrich.ResolvedEnrichPolicy; import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.index.IndexResolution; +import org.elasticsearch.xpack.esql.inference.InferenceResolution; +import org.elasticsearch.xpack.esql.inference.ResolvedInference; import org.elasticsearch.xpack.esql.parser.EsqlParser; import org.elasticsearch.xpack.esql.parser.QueryParams; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -73,7 +76,7 @@ public static Analyzer analyzer(IndexResolution indexResolution, Map analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"completion-inference-id\"", "mapping-books.json") + + ); + assertThat( + ve.getMessage(), + containsString( + "cannot use inference endpoint [completion-inference-id] with task type [completion] within a Rerank command. Only inference endpoints with the task type [rerank] are supported" + ) + ); + } + + { + VerificationException ve = expectThrows( + VerificationException.class, + () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"error-inference-id\"", "mapping-books.json") + + ); + assertThat(ve.getMessage(), containsString("error with inference resolution")); + } + + { + VerificationException ve = expectThrows( + VerificationException.class, + () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"unknow-inference-id\"", "mapping-books.json") + + ); + assertThat(ve.getMessage(), containsString("unresolved inference [unknow-inference-id]")); + } + } + + public void testResolveRerankFields() { + assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled()); + + { + // Single field. + LogicalPlan plan = analyze(""" + FROM books + | WHERE title:"italian food recipe" OR description:"italian food recipe" + | KEEP description, title, year + | DROP description + | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + """, "mapping-books.json"); + + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + EsqlProject keep = as(rerank.child(), EsqlProject.class); + EsqlProject drop = as(keep.child(), EsqlProject.class); + Filter filter = as(drop.child(), Filter.class); + EsRelation relation = as(filter.child(), EsRelation.class); + + Attribute titleAttribute = relation.output().stream().filter(attribute -> attribute.name().equals("title")).findFirst().get(); + assertThat(titleAttribute, notNullValue()); + + assertThat(rerank.queryText(), equalTo(string("italian food recipe"))); + assertThat(rerank.inferenceId(), equalTo(string("reranking-inference-id"))); + assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", titleAttribute)))); + } + + { + // Multiple fields. + LogicalPlan plan = analyze( + """ + FROM books + | WHERE title:"italian food recipe" + | RERANK "italian food recipe" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH "reranking-inference-id" + """, + "mapping-books.json" + ); + + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + Filter filter = as(rerank.child(), Filter.class); + EsRelation relation = as(filter.child(), EsRelation.class); + + assertThat(rerank.queryText(), equalTo(string("italian food recipe"))); + assertThat(rerank.inferenceId(), equalTo(string("reranking-inference-id"))); + + assertThat(rerank.rerankFields(), hasSize(3)); + Attribute titleAttribute = relation.output().stream().filter(attribute -> attribute.name().equals("title")).findFirst().get(); + assertThat(titleAttribute, notNullValue()); + assertThat(rerank.rerankFields().get(0), equalTo(alias("title", titleAttribute))); + + Attribute descriptionAttribute = relation.output() + .stream() + .filter(attribute -> attribute.name().equals("description")) + .findFirst() + .get(); + assertThat(descriptionAttribute, notNullValue()); + Alias descriptionAlias = rerank.rerankFields().get(1); + assertThat(descriptionAlias.name(), equalTo("description")); + assertThat( + as(descriptionAlias.child(), Substring.class).children(), + equalTo(List.of(descriptionAttribute, literal(0), literal(100))) + ); + + Attribute yearAttribute = relation.output().stream().filter(attribute -> attribute.name().equals("year")).findFirst().get(); + assertThat(yearAttribute, notNullValue()); + assertThat(rerank.rerankFields().get(2), equalTo(alias("yearRenamed", yearAttribute))); + } + + { + VerificationException ve = expectThrows( + VerificationException.class, + () -> analyze( + "FROM books | RERANK \"italian food recipe\" ON missingField WITH \"reranking-inference-id\"", + "mapping-books.json" + ) + + ); + assertThat(ve.getMessage(), containsString("Unknown column [missingField]")); + } + } + @Override protected IndexAnalyzers createDefaultIndexAnalyzers() { return super.createDefaultIndexAnalyzers(); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index 95c014eb3c3d2..4279edd015c34 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3162,19 +3162,6 @@ public void testRerankComputedFields() { ); } - public void testRerankNoFieldSpecified() { - assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - - var plan = parser.createStatement("row a = 1, b = \"foo\", c=true | RERANK \"query text\" WITH \"inferenceID\""); - var rerank = as(plan, Rerank.class); - - assertThat(rerank.queryText(), equalTo(literalString("query text"))); - assertThat(rerank.inferenceId(), equalTo(literalString("inferenceID"))); - - // When no field are specified, all the fields are used. - assertThat(rerank.rerankFields(), contains(alias("a", attribute("a")), alias("b", attribute("b")), alias("c", attribute("c")))); - } - public void testRerankWithPositionalParameters() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java index 3c29cef47d628..2bf53ed8b0acd 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java @@ -112,15 +112,15 @@ public TestServiceModel( TaskType taskType, String service, ServiceSettings serviceSettings, - TestTaskSettings taskSettings, + TaskSettings taskSettings, TestSecretSettings secretSettings ) { super(new ModelConfigurations(modelId, taskType, service, serviceSettings, taskSettings), new ModelSecrets(secretSettings)); } @Override - public TestTaskSettings getTaskSettings() { - return (TestTaskSettings) super.getTaskSettings(); + public TaskSettings getTaskSettings() { + return super.getTaskSettings(); } @Override diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java index 8be2317a9ee6f..1323ce13e646c 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java @@ -26,6 +26,7 @@ import org.elasticsearch.inference.ModelSecrets; import org.elasticsearch.inference.ServiceSettings; import org.elasticsearch.inference.SettingsConfiguration; +import org.elasticsearch.inference.TaskSettings; import org.elasticsearch.inference.TaskType; import org.elasticsearch.inference.UnifiedCompletionRequest; import org.elasticsearch.inference.configuration.SettingsConfigurationFieldType; @@ -58,6 +59,57 @@ public TestRerankingModel(String inferenceEntityId, TestServiceSettings serviceS } } + public record TestRerankingTaskSettings(Float minScore) implements TaskSettings { + + static final String NAME = "test_reranking_task_settings"; + + public static TestRerankingTaskSettings fromMap(Map map) { + Float minScore = map.containsKey("min_score") ? Float.valueOf(String.valueOf(map.remove("min_score"))) : null; + + return new TestRerankingTaskSettings(minScore); + } + + public TestRerankingTaskSettings(StreamInput in) throws IOException { + this(in.readOptionalFloat()); + } + + @Override + public boolean isEmpty() { + return minScore == null; + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + out.writeOptionalFloat(minScore); + } + + @Override + public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { + builder.startObject(); + if (minScore != null) { + builder.field("min_score", minScore); + } + builder.endObject(); + return builder; + } + + @Override + public String getWriteableName() { + return NAME; + } + + @Override + public TransportVersion getMinimalSupportedVersion() { + return TransportVersion.current(); // fine for these tests but will not work for cluster upgrade tests + } + + @Override + public TaskSettings updatedTaskSettings(Map newSettings) { + return fromMap(new HashMap<>(newSettings)); + } + } + + public static class TestInferenceService extends AbstractTestInferenceService { public static final String NAME = "test_reranking_service"; @@ -83,7 +135,7 @@ public void parseRequestConfig( var secretSettings = TestSecretSettings.fromMap(serviceSettingsMap); var taskSettingsMap = getTaskSettingsMap(config); - var taskSettings = TestTaskSettings.fromMap(taskSettingsMap); + var taskSettings = TestRerankingTaskSettings.fromMap(taskSettingsMap); parsedModelListener.onResponse(new TestServiceModel(modelId, taskType, name(), serviceSettings, taskSettings, secretSettings)); } @@ -110,7 +162,7 @@ public void infer( ActionListener listener ) { switch (model.getConfigurations().getTaskType()) { - case ANY, RERANK -> listener.onResponse(makeResults(input)); + case ANY, RERANK -> listener.onResponse(makeResults(input, taskSettings)); default -> listener.onFailure( new ElasticsearchStatusException( TaskType.unsupportedTaskTypeErrorMsg(model.getConfigurations().getTaskType(), name()), @@ -148,7 +200,7 @@ public void chunkedInfer( ); } - private RankedDocsResults makeResults(List input) { + private RankedDocsResults makeResults(List input, Map taskSettings) { int totalResults = input.size(); try { List results = new ArrayList<>(); @@ -158,7 +210,8 @@ private RankedDocsResults makeResults(List input) { return new RankedDocsResults(results.stream().sorted(Comparator.reverseOrder()).toList()); } catch (NumberFormatException ex) { List results = new ArrayList<>(); - float minScore = random.nextFloat(-1f, 1f); + + float minScore = 0; //(Float) taskSettings.getOrDefault("min_score", random.nextFloat(-1f, 1f)); float resultDiff = 0.2f; for (int i = 0; i < input.size(); i++) { results.add( From ec8c6f2a719447b81eed88301d7b3b899706a05f Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 11 Mar 2025 15:20:34 +0100 Subject: [PATCH 14/75] Basic CSV tests for the RERANK command. --- .../xpack/esql/CsvTestsDataLoader.java | 2 +- .../src/main/resources/rerank.csv-spec | 79 +++++++-- .../xpack/esql/inference/RerankOperator.java | 113 ++++++------- .../mock/AbstractTestInferenceService.java | 8 +- .../mock/TestRerankingServiceExtension.java | 157 +++++++++++------- 5 files changed, 218 insertions(+), 141 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java index 4c30e9c9223d4..e0d7b09c44448 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java @@ -382,7 +382,7 @@ public static void createInferenceEndpoints(RestClient client) throws IOExceptio "api_key": "abc64" }, "task_settings": { - "min_score": 0 + "use_text_length": true } } """); diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 4dccd9542a1fa..0afa1da7266b7 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -1,17 +1,76 @@ -singleFieldReranker +// Note: +// The "test_reranker" service scores the row from the inputText length and does not really score by relevance. +// This makes the output more predictable which is helpful here. + + +reranker using a single field +required_capability: rerank +required_capability: match_function + +FROM books METADATA _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| RERANK "war and peace" ON title WITH "test_reranker" +| KEEP book_no, title, author, _score +; + +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.014925372786819935 +; + + +reranker using multiple fields +required_capability: rerank +required_capability: match_function + +FROM books METADATA _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| RERANK "war and peace" ON title, author WITH "test_reranker" +| KEEP book_no, title, author, _score +; + +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.020408162847161293 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.014285714365541935 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01123595517128706 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.009523809887468815 +; + + +reranker after a limit +required_capability: rerank +required_capability: match_function + +FROM books METADATA _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| SORT _score DESC +| LIMIT 3 +| RERANK "war and peace" ON title WITH "test_reranker" +| KEEP book_no, title, author, _score +; + +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 +; + + +reranker before a limit required_capability: rerank required_capability: match_function FROM books METADATA _score -| WHERE MATCH(author, "Faulkner") -| RERANK "Faulkner" ON author WITH "test_reranker" -| KEEP book_no, author, _score +| WHERE title:"war and peace" AND author:"Tolstoy" +| RERANK "war and peace" ON title WITH "test_reranker" +| KEEP book_no, title, author, _score +| LIMIT 3 ; -book_no:keyword | author:text | _score:double -2378 | [Carol Faulkner, Holly Byers Ochoa, Lucretia Mott] | 0 -2713 | William Faulkner | 0 -2847 | Colleen Faulkner | 0 -2883 | William Faulkner | 0 -3293 | Danny Faulkner | 0 +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 ; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 87d63ab7e43d6..a6e2a8cb68665 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -21,7 +21,6 @@ import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; -import org.elasticsearch.logging.LogManager; import org.elasticsearch.xcontent.XContentBuilder; import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xpack.core.inference.action.InferenceAction; @@ -103,20 +102,19 @@ public RerankOperator( @Override protected void performAsync(Page inputPage, ActionListener listener) { - try { - InferenceAction.Request rerankInferenceRequest = buildInferenceRequest(inputPage); - ActionListener inferenceResponseListener = ActionListener.wrap( - inferenceResponse -> listener.onResponse(buildOutput(inputPage, inferenceResponse)), - listener::onFailure - ); + // Ensure input page blocks are released when the listener is called. + final ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); + try { inferenceService.doInference( - rerankInferenceRequest, - ActionListener.runAfter(inferenceResponseListener, inputPage::releaseBlocks) + buildInferenceRequest(inputPage), + ActionListener.wrap( + inferenceResponse -> buildOutput(inputPage, inferenceResponse, outputListener), + outputListener::onFailure + ) ); } catch (IOException e) { - inputPage.releaseBlocks(); - listener.onFailure(e); + outputListener.onFailure(e); } } @@ -135,79 +133,66 @@ public Page getOutput() { return fetchFromBuffer(); } - private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { + private void buildOutput(Page inputPage, InferenceAction.Response inferenceResponse, ActionListener listener) { + if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { + buildOutput(inputPage, rankedDocsResults, listener); + return; + } + + listener.onFailure( + new IllegalStateException( + "Inference result has wrong type. Got [" + + inferenceResponse.getResults().getClass() + + "] while expecting [" + + RankedDocsResults.class + + "]" + ) + ); + } + + private void buildOutput(Page inputPage, RankedDocsResults rankedDocsResults, ActionListener listener) { int blockCount = inputPage.getBlockCount(); Block[] blocks = new Block[blockCount]; for (int b = 0; b < blockCount; b++) { if (b == scoreChannel) { - DoubleBlock.Builder scoreBlockBuilder = blockFactory.newDoubleBlockBuilder(inputPage.getPositionCount()); - blocks[b] = scoreBlockBuilder.build(); + blocks[b] = buildScoreBlock(inputPage, rankedDocsResults); } else { - blocks[b] = inputPage.getBlock(b); + blocks[b] = BlockUtils.deepCopyOf(inputPage.getBlock(b), blockFactory); } } -// if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { -// for (var rankedDoc : rankedDocsResults.getRankedDocs()) { -// for (int b = 0; b < blockCount; b++) { -// if (b == scoreChannel) { -// LogManager.getLogger(RerankOperator.class).info("Score block builder {}", blocksBuilders[b].getClass()); -// if (blocksBuilders[b] instanceof DoubleBlock.Builder scoreBlockBuilder) { -// DoubleBlock.Builder scoreBlockBuilder = new -// LogManager.getLogger(RerankOperator.class).info("Score {}", rankedDoc.relevanceScore()); -// scoreBlockBuilder.beginPositionEntry().appendDouble(rankedDoc.relevanceScore()).endPositionEntry(); -// } -// } else { -// blocksBuilders[b].copyFrom(inputPage.getBlock(b), rankedDoc.index(), rankedDoc.index() + 1); -// } -// } -// } -// return new Page(Block.Builder.buildAll(blocksBuilders)); -// } - - throw new IllegalStateException( - "Inference result has wrong type. Got [" - + inferenceResponse.getResults().getClass() - + "] while expecting [" - + RankedDocsResults.class - + "]" - ); + listener.onResponse(new Page(blocks)); } + private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResults) { + Double[] sortedRankedDocsScores = new Double[inputPage.getPositionCount()]; + + try (DoubleBlock.Builder scoreBlockFactory = blockFactory.newDoubleBlockBuilder(inputPage.getPositionCount())) { + for (RankedDocsResults.RankedDoc rankedDoc : rankedDocsResults.getRankedDocs()) { + sortedRankedDocsScores[rankedDoc.index()] = (double) rankedDoc.relevanceScore(); + } + + for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { + if (sortedRankedDocsScores[pos] != null) { + scoreBlockFactory.beginPositionEntry().appendDouble(sortedRankedDocsScores[pos]).endPositionEntry(); + } else { + scoreBlockFactory.beginPositionEntry().endPositionEntry(); + } + } - /** - * book_no:keyword | author:text | _score:double - * 8077 | William Faulkner | 1.600000023841858 - * 3293 | Danny Faulkner | 1.399999976158142 - * 4724 | William Faulkner | 1.399999976158142 - * 3535 | [Beverlie Manson, Keith Faulkner] | 1.2000000476837158 - * 2847 | Colleen Faulkner | 1.2000000476837158 - * 4977 | William Faulkner | 1.0 - * 4502 | Colleen Faulkner | 1.0 - * 8423 | Paul Faulkner | 0.800000011920929 - * 5404 | William Faulkner | 0.800000011920929 - * 5119 | William Faulkner | 0.6000000238418579 - * 2713 | William Faulkner | 0.6000000238418579 - * 6151 | [Keith Faulkner, Rory Tyger] | 0.6000000238418579 - * 2378 | [Carol Faulkner, Holly Byers Ochoa, Lucretia Mott] | 0.4000000059604645 - * 2883 | William Faulkner | 0.4000000059604645 - * 3870 | Keith Faulkner | 0.4000000059604645 - * 9896 | William Faulkner | 0.20000000298023224 - * 7381 | Bettilu Stein Faulkner | 0.20000000298023224 - * 5578 | William Faulkner | 0.20000000298023224 - */* + return scoreBlockFactory.build(); + } + } private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOException { Block[] inputBlocks = inputBlocks(inputPage); try { String[] inputs = new String[inputPage.getPositionCount()]; - - for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { + if (inputBlocks.length > 0) for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { inputs[pos] = toYaml(inputBlocks, pos); } - return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); } finally { Releasables.closeExpectNoException(inputBlocks); diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java index 2bf53ed8b0acd..0e8e82f594ef0 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/AbstractTestInferenceService.java @@ -77,7 +77,7 @@ public TestServiceModel parsePersistedConfigWithSecrets( var secretSettings = TestSecretSettings.fromMap(secretSettingsMap); var taskSettingsMap = getTaskSettingsMap(config); - var taskSettings = TestTaskSettings.fromMap(taskSettingsMap); + var taskSettings = getTasksSettingsFromMap(taskSettingsMap); return new TestServiceModel(modelId, taskType, name(), serviceSettings, taskSettings, secretSettings); } @@ -90,11 +90,15 @@ public Model parsePersistedConfig(String modelId, TaskType taskType, Map taskSettingsMap) { + return TestTaskSettings.fromMap(taskSettingsMap); + } + protected abstract ServiceSettings getServiceSettingsFromMap(Map serviceSettingsMap); @Override diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java index 1323ce13e646c..07c4b2e653082 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java @@ -43,6 +43,8 @@ import java.util.List; import java.util.Map; +import static org.elasticsearch.xpack.inference.mock.AbstractTestInferenceService.random; + public class TestRerankingServiceExtension implements InferenceServiceExtension { @Override @@ -59,57 +61,6 @@ public TestRerankingModel(String inferenceEntityId, TestServiceSettings serviceS } } - public record TestRerankingTaskSettings(Float minScore) implements TaskSettings { - - static final String NAME = "test_reranking_task_settings"; - - public static TestRerankingTaskSettings fromMap(Map map) { - Float minScore = map.containsKey("min_score") ? Float.valueOf(String.valueOf(map.remove("min_score"))) : null; - - return new TestRerankingTaskSettings(minScore); - } - - public TestRerankingTaskSettings(StreamInput in) throws IOException { - this(in.readOptionalFloat()); - } - - @Override - public boolean isEmpty() { - return minScore == null; - } - - @Override - public void writeTo(StreamOutput out) throws IOException { - out.writeOptionalFloat(minScore); - } - - @Override - public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { - builder.startObject(); - if (minScore != null) { - builder.field("min_score", minScore); - } - builder.endObject(); - return builder; - } - - @Override - public String getWriteableName() { - return NAME; - } - - @Override - public TransportVersion getMinimalSupportedVersion() { - return TransportVersion.current(); // fine for these tests but will not work for cluster upgrade tests - } - - @Override - public TaskSettings updatedTaskSettings(Map newSettings) { - return fromMap(new HashMap<>(newSettings)); - } - } - - public static class TestInferenceService extends AbstractTestInferenceService { public static final String NAME = "test_reranking_service"; @@ -135,11 +86,15 @@ public void parseRequestConfig( var secretSettings = TestSecretSettings.fromMap(serviceSettingsMap); var taskSettingsMap = getTaskSettingsMap(config); - var taskSettings = TestRerankingTaskSettings.fromMap(taskSettingsMap); + var taskSettings = TestRerankingServiceExtension.TestTaskSettings.fromMap(taskSettingsMap); parsedModelListener.onResponse(new TestServiceModel(modelId, taskType, name(), serviceSettings, taskSettings, secretSettings)); } + protected TaskSettings getTasksSettingsFromMap(Map taskSettingsMap) { + return TestRerankingServiceExtension.TestTaskSettings.fromMap(taskSettingsMap); + } + @Override public InferenceServiceConfiguration getConfiguration() { return Configuration.get(); @@ -156,13 +111,15 @@ public void infer( @Nullable String query, List input, boolean stream, - Map taskSettings, + Map taskSettingsMap, InputType inputType, TimeValue timeout, ActionListener listener ) { + TaskSettings taskSettings = model.getTaskSettings().updatedTaskSettings(taskSettingsMap); + switch (model.getConfigurations().getTaskType()) { - case ANY, RERANK -> listener.onResponse(makeResults(input, taskSettings)); + case ANY, RERANK -> listener.onResponse(makeResults(input, (TestRerankingServiceExtension.TestTaskSettings) taskSettings)); default -> listener.onFailure( new ElasticsearchStatusException( TaskType.unsupportedTaskTypeErrorMsg(model.getConfigurations().getTaskType(), name()), @@ -200,7 +157,7 @@ public void chunkedInfer( ); } - private RankedDocsResults makeResults(List input, Map taskSettings) { + private RankedDocsResults makeResults(List input, TestRerankingServiceExtension.TestTaskSettings taskSettings) { int totalResults = input.size(); try { List results = new ArrayList<>(); @@ -211,17 +168,18 @@ private RankedDocsResults makeResults(List input, Map ta } catch (NumberFormatException ex) { List results = new ArrayList<>(); - float minScore = 0; //(Float) taskSettings.getOrDefault("min_score", random.nextFloat(-1f, 1f)); - float resultDiff = 0.2f; + float minScore = taskSettings.minScore(); + float resultDiff = taskSettings.resultDiff(); for (int i = 0; i < input.size(); i++) { - results.add( - new RankedDocsResults.RankedDoc( - totalResults - 1 - i, - minScore + resultDiff * (totalResults - i), - input.get(totalResults - 1 - i) - ) - ); + float relevanceScore = minScore + resultDiff * (totalResults - i); + String inputText = input.get(totalResults - 1 - i); + if (taskSettings.useTextLength()) { + relevanceScore = 1f / inputText.length(); + } + results.add(new RankedDocsResults.RankedDoc(totalResults - 1 - i, relevanceScore, inputText)); } + // Ensure result are sorted by descending score + results.sort((a, b) -> -Float.compare(a.relevanceScore(), b.relevanceScore())); return new RankedDocsResults(results); } } @@ -258,6 +216,77 @@ public static InferenceServiceConfiguration get() { } } + public record TestTaskSettings(boolean useTextLength, float minScore, float resultDiff) implements TaskSettings { + + static final String NAME = "test_reranking_task_settings"; + + public static TestTaskSettings fromMap(Map map) { + boolean useTextLength = false; + float minScore = random.nextFloat(-1f, 1f); + float resultDiff = 0.2f; + + if (map.containsKey("use_text_length")) { + useTextLength = Boolean.parseBoolean(map.remove("use_text_length").toString()); + } + + if (map.containsKey("min_score")) { + minScore = Float.parseFloat(map.remove("min_score").toString()); + } + + if (map.containsKey("result_diff")) { + resultDiff = Float.parseFloat(map.remove("result_diff").toString()); + } + + return new TestTaskSettings(useTextLength, minScore, resultDiff); + } + + public TestTaskSettings(StreamInput in) throws IOException { + this(in.readBoolean(), in.readFloat(), in.readOptionalFloat()); + } + + @Override + public boolean isEmpty() { + return false; + } + + @Override + public void writeTo(StreamOutput out) throws IOException { + out.writeBoolean(useTextLength); + out.writeFloat(minScore); + out.writeFloat(resultDiff); + } + + @Override + public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { + builder.startObject(); + builder.field("use_text_length", useTextLength); + builder.field("min_score", minScore); + builder.field("result_diff", resultDiff); + builder.endObject(); + return builder; + } + + @Override + public String getWriteableName() { + return NAME; + } + + @Override + public TransportVersion getMinimalSupportedVersion() { + return TransportVersion.current(); // fine for these tests but will not work for cluster upgrade tests + } + + @Override + public TaskSettings updatedTaskSettings(Map newSettingsMap) { + TestTaskSettings newSettingsObject = fromMap(Map.copyOf(newSettingsMap)); + return new TestTaskSettings( + newSettingsMap.containsKey("use_text_length") ? newSettingsObject.useTextLength() : useTextLength, + newSettingsMap.containsKey("min_score") ? newSettingsObject.minScore() : minScore, + newSettingsMap.containsKey("result_diff") ? newSettingsObject.resultDiff() : resultDiff + ); + } + } + public record TestServiceSettings(String modelId) implements ServiceSettings { static final String NAME = "test_reranking_service_settings"; From cd9c0768b028c752f92142eed72ec81e2e5583e1 Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Tue, 11 Mar 2025 14:50:07 +0000 Subject: [PATCH 15/75] [CI] Auto commit changes from spotless --- .../java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java | 1 - 1 file changed, 1 deletion(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java index e0d7b09c44448..5acd45f88d1c5 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java @@ -372,7 +372,6 @@ public static void createInferenceEndpoints(RestClient client) throws IOExceptio """); client.performRequest(request); - request = new Request("PUT", "_inference/rerank/test_reranker"); request.setJsonEntity(""" { From 816993fc29661b915e6a730a9d63f18fa0de6f5a Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 11 Mar 2025 15:58:06 +0100 Subject: [PATCH 16/75] Fix missing import after merge. --- .../elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index 6841b8682df29..2c2b1e32ff58f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -82,6 +82,7 @@ import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.inference.RerankOperator; +import org.elasticsearch.xpack.esql.plan.logical.Fork; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec; import org.elasticsearch.xpack.esql.plan.physical.DissectExec; From 5d459369f79c36acfb580c6080e920a0dfed7bd4 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 11 Mar 2025 16:14:10 +0100 Subject: [PATCH 17/75] Checkstyle fix. --- .../xpack/esql/analysis/AnalyzerTests.java | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 66fcb29fcf120..7e5fa44dbcf44 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -104,11 +104,9 @@ import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.equalTo; -import static org.hamcrest.Matchers.hasItem; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.instanceOf; import static org.hamcrest.Matchers.is; -import static org.hamcrest.Matchers.matchesRegex; import static org.hamcrest.Matchers.not; import static org.hamcrest.Matchers.notNullValue; import static org.hamcrest.Matchers.startsWith; @@ -3106,7 +3104,8 @@ public void testResolveRerankInferenceId() { assertThat( ve.getMessage(), containsString( - "cannot use inference endpoint [completion-inference-id] with task type [completion] within a Rerank command. Only inference endpoints with the task type [rerank] are supported" + "cannot use inference endpoint [completion-inference-id] with task type [completion] within a Rerank command. " + + "Only inference endpoints with the task type [rerank] are supported" ) ); } @@ -3160,21 +3159,18 @@ public void testResolveRerankFields() { { // Multiple fields. - LogicalPlan plan = analyze( - """ - FROM books - | WHERE title:"italian food recipe" - | RERANK "italian food recipe" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH "reranking-inference-id" - """, - "mapping-books.json" - ); + LogicalPlan plan = analyze(""" + FROM books + | WHERE title:"food" + | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH "reranking-inference-id" + """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. Rerank rerank = as(limit.child(), Rerank.class); Filter filter = as(rerank.child(), Filter.class); EsRelation relation = as(filter.child(), EsRelation.class); - assertThat(rerank.queryText(), equalTo(string("italian food recipe"))); + assertThat(rerank.queryText(), equalTo(string("food"))); assertThat(rerank.inferenceId(), equalTo(string("reranking-inference-id"))); assertThat(rerank.rerankFields(), hasSize(3)); From 694902e1f217ddad2f19ac70eee09cf11df3d406 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 13 Mar 2025 11:40:22 +0100 Subject: [PATCH 18/75] Add missing writeable for test reranger task settings to the TestInferenceServicePlugin --- .../xpack/inference/mock/TestInferenceServicePlugin.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestInferenceServicePlugin.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestInferenceServicePlugin.java index eef0da909f529..1d04aab022f91 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestInferenceServicePlugin.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestInferenceServicePlugin.java @@ -45,6 +45,11 @@ public List getNamedWriteables() { TestRerankingServiceExtension.TestServiceSettings.NAME, TestRerankingServiceExtension.TestServiceSettings::new ), + new NamedWriteableRegistry.Entry( + TaskSettings.class, + TestRerankingServiceExtension.TestTaskSettings.NAME, + TestRerankingServiceExtension.TestTaskSettings::new + ), new NamedWriteableRegistry.Entry( ServiceSettings.class, TestStreamingCompletionServiceExtension.TestServiceSettings.NAME, From 8e000a19013895a9c908a7e4eae9e3c87adeb09d Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 13 Mar 2025 11:48:04 +0100 Subject: [PATCH 19/75] Fix a bug in the TestRerankingServiceExtension task settings serialization. --- .../xpack/inference/mock/TestRerankingServiceExtension.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java index 07c4b2e653082..515364f2f0098 100644 --- a/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java +++ b/x-pack/plugin/inference/qa/test-service-plugin/src/main/java/org/elasticsearch/xpack/inference/mock/TestRerankingServiceExtension.java @@ -241,7 +241,7 @@ public static TestTaskSettings fromMap(Map map) { } public TestTaskSettings(StreamInput in) throws IOException { - this(in.readBoolean(), in.readFloat(), in.readOptionalFloat()); + this(in.readBoolean(), in.readFloat(), in.readFloat()); } @Override From 632254631e11c6312e223f728a2c05e00acd397b Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 13 Mar 2025 11:49:04 +0100 Subject: [PATCH 20/75] Better handling of block releases in the RerankOperator --- .../xpack/esql/inference/RerankOperator.java | 50 +++++++++++++------ .../xpack/esql/analysis/AnalyzerTests.java | 2 + 2 files changed, 36 insertions(+), 16 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index a6e2a8cb68665..1db2fcc356b8d 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -10,6 +10,7 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; import org.elasticsearch.common.Strings; +import org.elasticsearch.common.logging.LoggerMessageFormat; import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; import org.elasticsearch.compute.data.BlockUtils; @@ -103,8 +104,7 @@ public RerankOperator( @Override protected void performAsync(Page inputPage, ActionListener listener) { // Ensure input page blocks are released when the listener is called. - final ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); - + ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); try { inferenceService.doInference( buildInferenceRequest(inputPage), @@ -113,7 +113,7 @@ protected void performAsync(Page inputPage, ActionListener listener) { outputListener::onFailure ) ); - } catch (IOException e) { + } catch (Exception e) { outputListener.onFailure(e); } } @@ -154,15 +154,19 @@ private void buildOutput(Page inputPage, RankedDocsResults rankedDocsResults, Ac int blockCount = inputPage.getBlockCount(); Block[] blocks = new Block[blockCount]; - for (int b = 0; b < blockCount; b++) { - if (b == scoreChannel) { - blocks[b] = buildScoreBlock(inputPage, rankedDocsResults); - } else { - blocks[b] = BlockUtils.deepCopyOf(inputPage.getBlock(b), blockFactory); + try { + for (int b = 0; b < blockCount; b++) { + if (b == scoreChannel) { + blocks[b] = buildScoreBlock(inputPage, rankedDocsResults); + } else { + blocks[b] = inputPage.getBlock(b); + blocks[b].incRef(); + } } + listener.onResponse(new Page(blocks)); + } catch (Exception e) { + Releasables.closeExpectNoException(blocks); } - - listener.onResponse(new Page(blocks)); } private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResults) { @@ -177,7 +181,7 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult if (sortedRankedDocsScores[pos] != null) { scoreBlockFactory.beginPositionEntry().appendDouble(sortedRankedDocsScores[pos]).endPositionEntry(); } else { - scoreBlockFactory.beginPositionEntry().endPositionEntry(); + scoreBlockFactory.appendNull(); } } @@ -193,6 +197,7 @@ private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOE if (inputBlocks.length > 0) for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { inputs[pos] = toYaml(inputBlocks, pos); } + return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); } finally { Releasables.closeExpectNoException(inputBlocks); @@ -224,10 +229,23 @@ private String toYaml(Block[] inputBlocks, int position) throws IOException { } private Object toYaml(Object value) { - return switch (value) { - case BytesRef b -> b.utf8ToString(); - case List l -> l.stream().map(this::toYaml).toList(); - default -> value; - }; + try { + return switch (value) { + case BytesRef b -> toYaml(b); + case List l -> l.stream().map(this::toYaml).toList(); + default -> value; + }; + } catch (Error e) { + throw new IllegalStateException(LoggerMessageFormat.format("Unexpected error while processing value: {}", e.getMessage()), e); + } + } + + private String toYaml(BytesRef b) { + try { + return b.utf8ToString(); + } catch (Exception | Error e) { + // TODO better handling of these cases. + return ""; + } } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 7e5fa44dbcf44..4251b92eed17e 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -104,9 +104,11 @@ import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.empty; import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.hasItem; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.instanceOf; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.matchesRegex; import static org.hamcrest.Matchers.not; import static org.hamcrest.Matchers.notNullValue; import static org.hamcrest.Matchers.startsWith; From 4b88842ac6a3434c433195efac0d073ee0b214f1 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 13 Mar 2025 17:02:09 +0100 Subject: [PATCH 21/75] Fix some failing tests. --- .../xpack/esql/inference/RerankOperator.java | 37 +++++++++++-------- .../esql/analysis/AnalyzerTestUtils.java | 2 +- .../logical/PropagateInlineEvalsTests.java | 4 +- 3 files changed, 25 insertions(+), 18 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 1db2fcc356b8d..6dea93ddfd268 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -92,6 +92,9 @@ public RerankOperator( int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); + + assert inferenceService.getThreadContext() != null; + this.blockFactory = driverContext.blockFactory(); this.inferenceService = inferenceService; this.inferenceId = inferenceId; @@ -104,18 +107,19 @@ public RerankOperator( @Override protected void performAsync(Page inputPage, ActionListener listener) { // Ensure input page blocks are released when the listener is called. - ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); - try { - inferenceService.doInference( - buildInferenceRequest(inputPage), - ActionListener.wrap( - inferenceResponse -> buildOutput(inputPage, inferenceResponse, outputListener), - outputListener::onFailure - ) - ); - } catch (Exception e) { - outputListener.onFailure(e); - } + final ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); + + final ActionListener inferenceResonseListener = ActionListener.wrap( + inferenceResponse -> buildOutput(inputPage, inferenceResponse, outputListener), + outputListener::onFailure + ); + + final ActionListener buildInferenceRequestListener = ActionListener.wrap( + (inferenceRequest) -> inferenceService.doInference(inferenceRequest, inferenceResonseListener), + outputListener::onFailure + ); + + buildInferenceRequest(inputPage, buildInferenceRequestListener); } @Override @@ -179,7 +183,7 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { if (sortedRankedDocsScores[pos] != null) { - scoreBlockFactory.beginPositionEntry().appendDouble(sortedRankedDocsScores[pos]).endPositionEntry(); + scoreBlockFactory.appendDouble(sortedRankedDocsScores[pos]); } else { scoreBlockFactory.appendNull(); } @@ -189,7 +193,7 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } } - private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOException { + private void buildInferenceRequest(Page inputPage, ActionListener listener) { Block[] inputBlocks = inputBlocks(inputPage); try { @@ -197,8 +201,9 @@ private InferenceAction.Request buildInferenceRequest(Page inputPage) throws IOE if (inputBlocks.length > 0) for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { inputs[pos] = toYaml(inputBlocks, pos); } - - return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); + listener.onResponse(InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build()); + } catch(IOException e) { + listener.onFailure(e); } finally { Releasables.closeExpectNoException(inputBlocks); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java index cb14da9ebb54b..db9047be3f065 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTestUtils.java @@ -176,7 +176,7 @@ public static EnrichResolution defaultEnrichResolution() { return enrichResolution; } - private static InferenceResolution defaultInferenceResolution() { + public static InferenceResolution defaultInferenceResolution() { return InferenceResolution.builder() .withResolvedInference(new ResolvedInference("reranking-inference-id", TaskType.RERANK)) .withResolvedInference(new ResolvedInference("completion-inference-id", TaskType.COMPLETION)) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PropagateInlineEvalsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PropagateInlineEvalsTests.java index 3cbfe49d46a33..ae25570bfb011 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PropagateInlineEvalsTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PropagateInlineEvalsTests.java @@ -39,6 +39,7 @@ import static org.elasticsearch.xpack.esql.EsqlTestUtils.as; import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping; import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning; +import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultInferenceResolution; import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultLookupResolution; import static org.hamcrest.Matchers.contains; import static org.hamcrest.Matchers.hasSize; @@ -62,7 +63,8 @@ public static void init() { new EsqlFunctionRegistry(), getIndexResult, defaultLookupResolution(), - new EnrichResolution() + new EnrichResolution(), + defaultInferenceResolution() ), TEST_VERIFIER ); From 52fc536cffa614c466950e2f17d7cad6b8a55fd9 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 14 Mar 2025 17:11:40 +0100 Subject: [PATCH 22/75] RerankOperator tests --- .../xpack/esql/inference/RerankOperator.java | 52 ++-- .../esql/inference/RerankOperatorTests.java | 293 ++++++++++++++++++ 2 files changed, 325 insertions(+), 20 deletions(-) create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 6dea93ddfd268..9808abb8b7b49 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -10,7 +10,6 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; import org.elasticsearch.common.Strings; -import org.elasticsearch.common.logging.LoggerMessageFormat; import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; import org.elasticsearch.compute.data.BlockUtils; @@ -52,7 +51,7 @@ public String describe() { + queryText + " rerank_fields=" + rerankFieldsEvaluatorFactories.keySet() - + " scoreChannel=" + + " score_channel=" + scoreChannel + "]"; } @@ -137,6 +136,19 @@ public Page getOutput() { return fetchFromBuffer(); } + @Override + public String toString() { + return "RerankOperator[inference_id=" + + inferenceId + + " query=" + + queryText + + " rerank_fields=" + + List.of(rerankFieldNames) + + " score_channel=" + + scoreChannel + + "]"; + } + private void buildOutput(Page inputPage, InferenceAction.Response inferenceResponse, ActionListener listener) { if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { buildOutput(inputPage, rankedDocsResults, listener); @@ -194,6 +206,7 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } private void buildInferenceRequest(Page inputPage, ActionListener listener) { + Block[] inputBlocks = inputBlocks(inputPage); try { @@ -201,8 +214,10 @@ private void buildInferenceRequest(Page inputPage, ActionListener 0) for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { inputs[pos] = toYaml(inputBlocks, pos); } - listener.onResponse(InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build()); - } catch(IOException e) { + listener.onResponse( + InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build() + ); + } catch (Exception e) { listener.onFailure(e); } finally { Releasables.closeExpectNoException(inputBlocks); @@ -212,11 +227,16 @@ private void buildInferenceRequest(Page inputPage, ActionListener toYaml(b); + case BytesRef b -> b.utf8ToString(); case List l -> l.stream().map(this::toYaml).toList(); default -> value; }; - } catch (Error e) { - throw new IllegalStateException(LoggerMessageFormat.format("Unexpected error while processing value: {}", e.getMessage()), e); - } - } - - private String toYaml(BytesRef b) { - try { - return b.utf8ToString(); - } catch (Exception | Error e) { - // TODO better handling of these cases. - return ""; + } catch (Error | Exception e) { + // Swallow errors caused by invalid byteref. + return null; } } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java new file mode 100644 index 0000000000000..30afd3f3ea359 --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -0,0 +1,293 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.apache.lucene.util.BytesRef; +import org.elasticsearch.action.ActionListener; +import org.elasticsearch.common.logging.LoggerMessageFormat; +import org.elasticsearch.common.settings.Settings; +import org.elasticsearch.common.util.concurrent.EsExecutors; +import org.elasticsearch.compute.data.Block; +import org.elasticsearch.compute.data.BlockFactory; +import org.elasticsearch.compute.data.BooleanBlock; +import org.elasticsearch.compute.data.BytesRefBlock; +import org.elasticsearch.compute.data.DoubleBlock; +import org.elasticsearch.compute.data.ElementType; +import org.elasticsearch.compute.data.FloatBlock; +import org.elasticsearch.compute.data.IntBlock; +import org.elasticsearch.compute.data.LongBlock; +import org.elasticsearch.compute.data.Page; +import org.elasticsearch.compute.operator.AsyncOperator; +import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.compute.operator.Operator; +import org.elasticsearch.compute.operator.SourceOperator; +import org.elasticsearch.compute.test.AbstractBlockSourceOperator; +import org.elasticsearch.compute.test.OperatorTestCase; +import org.elasticsearch.compute.test.RandomBlock; +import org.elasticsearch.threadpool.FixedExecutorBuilder; +import org.elasticsearch.threadpool.TestThreadPool; +import org.elasticsearch.threadpool.ThreadPool; +import org.elasticsearch.xpack.core.inference.action.InferenceAction; +import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; +import org.hamcrest.Matcher; +import org.junit.After; +import org.junit.Before; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.function.BiFunction; +import java.util.function.Consumer; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +import static org.elasticsearch.compute.test.RandomBlock.randomElementType; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.greaterThanOrEqualTo; +import static org.hamcrest.Matchers.hasSize; +import static org.hamcrest.Matchers.notNullValue; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.doAnswer; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +public class RerankOperatorTests extends OperatorTestCase { + private static final String ESQL_TEST_EXECUTOR = "esql_test_executor"; + private static final String SIMPLE_INFERENCE_ID = "test_reranker"; + private static final String SIMPLE_QUERY = "query text"; + private ThreadPool threadPool; + + private Map inputFieldTypes; + private int scoreChannel; + + @Before + private void initChannels() { + int channelCount = randomIntBetween(2, 10); + scoreChannel = randomIntBetween(0, channelCount - 1); + inputFieldTypes = IntStream.range(0, channelCount).sorted().mapToObj(i -> { + return i == scoreChannel ? Map.entry("_score", ElementType.DOUBLE) : Map.entry(randomIdentifier(), randomElementType()); + }).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new)); + } + + @Before + public void setThreadPool() { + int numThreads = randomBoolean() ? 1 : between(2, 16); + threadPool = new TestThreadPool( + "test", + new FixedExecutorBuilder(Settings.EMPTY, ESQL_TEST_EXECUTOR, numThreads, 1024, "esql", EsExecutors.TaskTrackingConfig.DEFAULT) + ); + } + + @After + public void shutdownThreadPool() { + terminate(threadPool); + } + + @Override + protected Operator.OperatorFactory simple() { + InferenceService inferenceService = mockedSimpleInferenceService(); + Map rerankFieldsEvaluatorFactories = new LinkedHashMap<>(); + rerankFieldsEvaluatorFactories.put("field1", new LoadFromPageFactory(0)); + rerankFieldsEvaluatorFactories.put("_score", new LoadFromPageFactory(1)); + + return new RerankOperator.Factory( + inferenceService, + SIMPLE_INFERENCE_ID, + SIMPLE_QUERY, + rerankFieldsEvaluatorFactories, + scoreChannel + ); + } + + private InferenceService mockedSimpleInferenceService() { + InferenceService inferenceService = mock(InferenceService.class); + when(inferenceService.getThreadContext()).thenReturn(threadPool.getThreadContext()); + doAnswer(invocation -> { + @SuppressWarnings("unchecked") + ActionListener listener = (ActionListener) invocation.getArgument( + 1, + ActionListener.class + ); + InferenceAction.Response inferenceResponse = mock(InferenceAction.Response.class); + when(inferenceResponse.getResults()).thenReturn( + mockedRankedDocResults(invocation.getArgument(0, InferenceAction.Request.class)) + ); + listener.onResponse(inferenceResponse); + return null; + }).when(inferenceService).doInference(any(), any()); + + return inferenceService; + } + + private RankedDocsResults mockedRankedDocResults(InferenceAction.Request request) { + List rankedDocs = new ArrayList<>(); + for (int rank = 0; rank < request.getInput().size(); rank++) { + if (rank % 10 != 0) { + rankedDocs.add(new RankedDocsResults.RankedDoc(rank, 1f / rank, request.getInput().get(rank))); + } + } + return new RankedDocsResults(rankedDocs); + } + + @Override + protected Matcher expectedDescriptionOfSimple() { + return expectedToStringOfSimple(); + } + + @Override + protected Matcher expectedToStringOfSimple() { + return equalTo( + "RerankOperator[inference_id=test_reranker query=query text rerank_fields=[field1, _score] score_channel=" + scoreChannel + "]" + ); + } + + @Override + protected SourceOperator simpleInput(BlockFactory blockFactory, int size) { + return new AbstractBlockSourceOperator(blockFactory, 8 * 1024) { + @Override + protected int remaining() { + return size - currentPosition; + } + + @Override + protected Page createPage(int positionOffset, int length) { + currentPosition += length; + return new Page( + inputFieldTypes.values().stream().map(elementType -> randomBlock(elementType, length)).toArray(Block[]::new) + ); + } + + private Block randomBlock(ElementType elementType, int positionCount) { + return RandomBlock.randomBlock(elementType, positionCount, randomBoolean(), 0, 10, 0, 10).block(); + } + }; + } + + /** + * Ensures that the Operator.Status of this operator has the standard fields. + */ + public void testOperatorStatus() throws IOException { + DriverContext driverContext = driverContext(); + try (var operator = simple().get(driverContext)) { + AsyncOperator.Status status = asInstanceOf(AsyncOperator.Status.class, operator.status()); + + assertThat(status, notNullValue()); + assertThat(status.receivedPages(), equalTo(0L)); + assertThat(status.completedPages(), equalTo(0L)); + assertThat(status.procesNanos(), greaterThanOrEqualTo(0L)); + } + } + + @Override + protected void assertSimpleOutput(List inputPages, List resultPages) { + assertThat(inputPages, hasSize(resultPages.size())); + + for (int pageId = 0; pageId < inputPages.size(); pageId++) { + Page inputPage = inputPages.get(pageId); + Page resultPage = resultPages.get(pageId); + + // Check all rows are present and the output shape is unchanged. + assertThat(inputPage.getPositionCount(), equalTo(resultPage.getPositionCount())); + assertThat(inputPage.getBlockCount(), equalTo(resultPage.getBlockCount())); + + BytesRef readBuffer = new BytesRef(); + + for (int channel = 0; channel < inputPage.getBlockCount(); channel++) { + Block inputBlock = inputPage.getBlock(channel); + Block resultBlock = resultPage.getBlock(channel); + + assertThat(resultBlock.getPositionCount(), equalTo(resultPage.getPositionCount())); + assertThat(resultBlock.elementType(), equalTo(inputBlock.elementType())); + + if (channel == scoreChannel) { + assertExpectedScore(asInstanceOf(DoubleBlock.class, resultBlock)); + } else { + switch (inputBlock.elementType()) { + case BOOLEAN -> assertBlockContentEquals(inputBlock, resultBlock, BooleanBlock::getBoolean, BooleanBlock.class); + case INT -> assertBlockContentEquals(inputBlock, resultBlock, IntBlock::getInt, IntBlock.class); + case LONG -> assertBlockContentEquals(inputBlock, resultBlock, LongBlock::getLong, LongBlock.class); + case FLOAT -> assertBlockContentEquals(inputBlock, resultBlock, FloatBlock::getFloat, FloatBlock.class); + case DOUBLE -> assertBlockContentEquals(inputBlock, resultBlock, DoubleBlock::getDouble, DoubleBlock.class); + case BYTES_REF -> assertByteRefsBlockContentEquals(inputBlock, resultBlock, readBuffer); + default -> throw new AssertionError( + LoggerMessageFormat.format("Unexpected block type {}", inputBlock.elementType()) + ); + } + } + } + } + } + + void assertExpectedScore(DoubleBlock scoreBlockResult) { + assertRandomPositions(scoreBlockResult, (pos) -> { + if (pos % 10 == 0) { + assertThat(scoreBlockResult.isNull(pos), equalTo(true)); + } else { + assertThat(scoreBlockResult.getValueCount(pos), equalTo(1)); + assertThat(scoreBlockResult.getDouble(scoreBlockResult.getFirstValueIndex(pos)), equalTo((double) (1f / pos))); + } + }); + } + + void assertBlockContentEquals( + Block input, + Block result, + BiFunction valueReader, + Class blockClass + ) { + V inputBlock = asInstanceOf(blockClass, input); + V resultBlock = asInstanceOf(blockClass, result); + + assertRandomPositions(inputBlock, (pos) -> { + if (inputBlock.isNull(pos)) { + assertThat(resultBlock.isNull(pos), equalTo(inputBlock.isNull(pos))); + } else { + assertThat(resultBlock.getValueCount(pos), equalTo(inputBlock.getValueCount(pos))); + assertThat(resultBlock.getFirstValueIndex(pos), equalTo(inputBlock.getFirstValueIndex(pos))); + for (int i = 0; i < inputBlock.getValueCount(pos); i++) { + assertThat( + valueReader.apply(resultBlock, resultBlock.getFirstValueIndex(pos) + i), + equalTo(valueReader.apply(inputBlock, inputBlock.getFirstValueIndex(pos) + i)) + ); + } + } + }); + } + + void assertRandomPositions(Block block, Consumer consumer) { + for (Integer pos : randomList(0, 100, () -> randomIntBetween(0, block.getPositionCount() - 1))) { + consumer.accept(pos); + } + } + + void assertByteRefsBlockContentEquals(Block input, Block result, BytesRef readBuffer) { + assertBlockContentEquals(input, result, (BytesRefBlock b, Integer pos) -> b.getBytesRef(pos, readBuffer), BytesRefBlock.class); + } + + record LoadFromPageFactory(int channel) implements EvalOperator.ExpressionEvaluator.Factory { + @Override + public EvalOperator.ExpressionEvaluator get(DriverContext context) { + return new EvalOperator.ExpressionEvaluator() { + @Override + public Block eval(Page page) { + Block block = page.getBlock(channel); + block.incRef(); + return block; + } + + @Override + public void close() { + + } + }; + } + } +} From 84ff3592950c047fd446b635c3d821f157f47630 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 17 Mar 2025 11:06:29 +0100 Subject: [PATCH 23/75] RerankOperator tests --- .../org/elasticsearch/xpack/esql/inference/RerankOperator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 9808abb8b7b49..053f580bdc4c7 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -233,7 +233,7 @@ private Block[] inputBlocks(Page inputPage) { } return blocks; - } catch(Exception e) { + } catch (Exception e) { Releasables.closeExpectNoException(blocks); throw e; } From d4d1d08d82e6e18e334a17a36b29f02b11b5a59f Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 17 Mar 2025 12:27:42 +0100 Subject: [PATCH 24/75] RERANK is not ready for CCQ yet --- .../org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java index 5610db793abe5..a5ffdf036ac49 100644 --- a/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java +++ b/x-pack/plugin/esql/qa/server/multi-clusters/src/javaRestTest/java/org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java @@ -52,6 +52,7 @@ import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.JOIN_LOOKUP_V12; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.JOIN_PLANNING_V1; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.METADATA_FIELDS_REMOTE_TEST; +import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.RERANK; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.UNMAPPED_FIELDS; import static org.elasticsearch.xpack.esql.qa.rest.EsqlSpecTestCase.Mode.SYNC; import static org.mockito.ArgumentMatchers.any; @@ -130,6 +131,8 @@ protected void shouldSkipTest(String testName) throws IOException { assumeFalse("LOOKUP JOIN not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_LOOKUP_V12.capabilityName())); // Unmapped fields require a coorect capability response from every cluster, which isn't currently implemented. assumeFalse("UNMAPPED FIELDS not yet supported in CCS", testCase.requiredCapabilities.contains(UNMAPPED_FIELDS.capabilityName())); + // Need to do additional developmnet to get CSS support for the rerank coammnd + assumeFalse("RERANK not yet supported in CCS", testCase.requiredCapabilities.contains(RERANK.capabilityName())); } private TestFeatureService remoteFeaturesService() throws IOException { From 1fd0b1464a614971ed68f9f1061ecd6c179c75e5 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 17 Mar 2025 15:05:46 +0100 Subject: [PATCH 25/75] Fixing some tests. --- .../xpack/esql/EsqlTestUtils.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java index d63e5e339f6b6..eabdf24632450 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java @@ -11,6 +11,7 @@ import org.apache.lucene.sandbox.document.HalfFloatPoint; import org.apache.lucene.util.BytesRef; import org.elasticsearch.ExceptionsHelper; +import org.elasticsearch.action.ActionListener; import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver; import org.elasticsearch.cluster.service.ClusterService; import org.elasticsearch.common.Strings; @@ -149,6 +150,8 @@ import static org.hamcrest.Matchers.instanceOf; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.doAnswer; import static org.mockito.Mockito.mock; public final class EsqlTestUtils { @@ -377,9 +380,22 @@ public static LogicalOptimizerContext unboundLogicalOptimizerContext() { mock(ClusterService.class), mock(IndexNameExpressionResolver.class), null, - mock(InferenceService.class) + mockInferenceService() ); + @SuppressWarnings("unchecked") + private static InferenceService mockInferenceService() { + InferenceService inferenceService = mock(InferenceService.class); + doAnswer( + i -> { + i.getArgument(1, ActionListener.class).onResponse(emptyInferenceResolution()); + return null; + } + ).when(inferenceService).resolveInferences(any(), any()); + + return inferenceService; + } + private EsqlTestUtils() {} public static Configuration configuration(QueryPragmas pragmas, String query) { From b1d9f4ad295b457dc551f9673d123f46621fe3fe Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Mon, 17 Mar 2025 14:13:45 +0000 Subject: [PATCH 26/75] [CI] Auto commit changes from spotless --- .../org/elasticsearch/xpack/esql/EsqlTestUtils.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java index eabdf24632450..ea0351acbd322 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java @@ -386,12 +386,10 @@ public static LogicalOptimizerContext unboundLogicalOptimizerContext() { @SuppressWarnings("unchecked") private static InferenceService mockInferenceService() { InferenceService inferenceService = mock(InferenceService.class); - doAnswer( - i -> { - i.getArgument(1, ActionListener.class).onResponse(emptyInferenceResolution()); - return null; - } - ).when(inferenceService).resolveInferences(any(), any()); + doAnswer(i -> { + i.getArgument(1, ActionListener.class).onResponse(emptyInferenceResolution()); + return null; + }).when(inferenceService).resolveInferences(any(), any()); return inferenceService; } From ef688f7b0f3c7718b85b082a8e677fdfa753658e Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 17 Mar 2025 16:37:38 +0100 Subject: [PATCH 27/75] Testing that _score is an existing column --- .../xpack/esql/analysis/Analyzer.java | 27 ++++++++-- .../esql/plan/logical/inference/Rerank.java | 54 +++++++++++++++---- .../plan/physical/inference/RerankExec.java | 32 ++++++++--- .../esql/planner/LocalExecutionPlanner.java | 9 +--- .../esql/planner/mapper/MapperUtils.java | 9 +++- .../xpack/esql/analysis/AnalyzerTests.java | 37 +++++++++---- .../inference/RerankSerializationTests.java | 11 ++-- .../RerankExecSerializationTests.java | 9 +++- 8 files changed, 144 insertions(+), 44 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index 016442e8171a8..a08e63c8fbefb 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -27,6 +27,7 @@ import org.elasticsearch.xpack.esql.core.expression.FieldAttribute; import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.expression.NamedExpression; import org.elasticsearch.xpack.esql.core.expression.Nullability; import org.elasticsearch.xpack.esql.core.expression.ReferenceAttribute; @@ -736,16 +737,36 @@ private LogicalPlan resolveFork(Fork fork, AnalyzerContext context) { return new Fork(fork.source(), fork.child(), newSubPlans); } - private LogicalPlan resolveRerank(Rerank rerank, List childOutput) { + private LogicalPlan resolveRerank(Rerank rerank, List childrenOutput) { List newFields = new ArrayList<>(); boolean changed = false; + + // First resolving fields used in expression for (Alias field : rerank.rerankFields()) { - Alias result = (Alias) field.transformUp(UnresolvedAttribute.class, ua -> resolveAttribute(ua, childOutput)); + Alias result = (Alias) field.transformUp(UnresolvedAttribute.class, ua -> resolveAttribute(ua, childrenOutput)); newFields.add(result); changed |= result != field; } - return changed ? new Rerank(rerank.source(), rerank.child(), rerank.inferenceId(), rerank.queryText(), newFields) : rerank; + if (changed) { + rerank = rerank.withRerankFields(newFields); + } + + // Ensure the score attribute is resolved + if (rerank.scoreAttribute() instanceof UnresolvedAttribute ua) { + Attribute resolved = resolveAttribute(ua, childrenOutput); + if (resolved.resolved() == false) { + resolved = ua.withUnresolvedMessage(format(null, "Missing required column [{}] for RERANK", MetadataAttribute.SCORE)); + } else if (resolved.dataType() != DOUBLE) { + resolved = ua.withUnresolvedMessage( + format("_score has the wrong type; [{}] expected but got [{}]", DataType.DOUBLE, resolved.dataType()) + ); + } + + rerank = rerank.withScoreAttribute(resolved); + } + + return rerank; } private List resolveUsingColumns(List cols, List output, String side) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index 491d303e35189..4467a478a4be3 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -38,6 +38,7 @@ public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new); + private final Attribute scoreAttribute; private final Expression queryText; private final List rerankFields; @@ -45,6 +46,21 @@ public Rerank(Source source, LogicalPlan child, Expression inferenceId, Expressi super(source, child, inferenceId); this.queryText = queryText; this.rerankFields = rerankFields; + this.scoreAttribute = new UnresolvedAttribute(source, MetadataAttribute.SCORE); + } + + public Rerank( + Source source, + LogicalPlan child, + Expression inferenceId, + Expression queryText, + List rerankFields, + Attribute scoreAttribute + ) { + super(source, child, inferenceId); + this.queryText = queryText; + this.rerankFields = rerankFields; + this.scoreAttribute = scoreAttribute; } public Rerank(StreamInput in) throws IOException { @@ -53,7 +69,8 @@ public Rerank(StreamInput in) throws IOException { in.readNamedWriteable(LogicalPlan.class), in.readNamedWriteable(Expression.class), in.readNamedWriteable(Expression.class), - in.readCollectionAsList(Alias::new) + in.readCollectionAsList(Alias::new), + in.readNamedWriteable(Attribute.class) ); } @@ -62,6 +79,7 @@ public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); out.writeNamedWriteable(queryText); out.writeCollection(rerankFields()); + out.writeNamedWriteable(scoreAttribute); } public Expression queryText() { @@ -72,15 +90,27 @@ public List rerankFields() { return rerankFields; } + public Attribute scoreAttribute() { + return scoreAttribute; + } + @Override public TaskType taskType() { return TaskType.RERANK; } @Override - public LogicalPlan withInferenceResolutionError(String inferenceId, String error) { + public Rerank withInferenceResolutionError(String inferenceId, String error) { Expression newInferenceId = new UnresolvedAttribute(inferenceId().source(), inferenceId, error); - return new Rerank(source(), child(), newInferenceId, queryText, rerankFields); + return new Rerank(source(), child(), newInferenceId, queryText, rerankFields, scoreAttribute); + } + + public Rerank withRerankFields(List newRerankFields) { + return new Rerank(source(), child(), inferenceId(), queryText, newRerankFields, scoreAttribute); + } + + public Rerank withScoreAttribute(Attribute newScoreAttribute) { + return new Rerank(source(), child(), inferenceId(), queryText, rerankFields, newScoreAttribute); } @Override @@ -90,12 +120,14 @@ public String getWriteableName() { @Override public UnaryPlan replaceChild(LogicalPlan newChild) { - return new Rerank(source(), newChild, inferenceId(), queryText, rerankFields); + return new Rerank(source(), newChild, inferenceId(), queryText, rerankFields, scoreAttribute); } @Override protected AttributeSet computeReferences() { - return computeReferences(rerankFields); + AttributeSet refs = computeReferences(rerankFields); + refs.add(scoreAttribute); + return refs; } public static AttributeSet computeReferences(List fields) { @@ -105,12 +137,12 @@ public static AttributeSet computeReferences(List fields) { @Override public boolean expressionsResolved() { - return super.expressionsResolved() && queryText.resolved() && Resolvables.resolved(rerankFields); + return super.expressionsResolved() && queryText.resolved() && Resolvables.resolved(rerankFields) && scoreAttribute.resolved(); } @Override protected NodeInfo info() { - return NodeInfo.create(this, Rerank::new, child(), inferenceId(), queryText, rerankFields); + return NodeInfo.create(this, Rerank::new, child(), inferenceId(), queryText, rerankFields, scoreAttribute); } @Override @@ -119,18 +151,18 @@ public boolean equals(Object o) { if (o == null || getClass() != o.getClass()) return false; if (super.equals(o) == false) return false; Rerank rerank = (Rerank) o; - return Objects.equals(queryText, rerank.queryText) && Objects.equals(rerankFields, rerank.rerankFields); + return Objects.equals(queryText, rerank.queryText) + && Objects.equals(rerankFields, rerank.rerankFields) + && Objects.equals(scoreAttribute, rerank.scoreAttribute); } @Override public int hashCode() { - return Objects.hash(super.hashCode(), queryText, rerankFields); + return Objects.hash(super.hashCode(), queryText, rerankFields, scoreAttribute); } @Override public LogicalPlan surrogate() { - Attribute scoreAttribute = child().output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get(); - assert scoreAttribute != null; Order sortOrder = new Order(source(), scoreAttribute, Order.OrderDirection.DESC, Order.NullsPosition.ANY); return new OrderBy(source(), this, List.of(sortOrder)); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java index ea70283ec7944..04948e202dd42 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java @@ -11,6 +11,7 @@ import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; @@ -32,11 +33,20 @@ public class RerankExec extends InferenceExec { private final Expression queryText; private final List rerankFields; - - public RerankExec(Source source, PhysicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) { + private final Attribute scoreAttribute; + + public RerankExec( + Source source, + PhysicalPlan child, + Expression inferenceId, + Expression queryText, + List rerankFields, + Attribute scoreAttribute + ) { super(source, child, inferenceId); this.queryText = queryText; this.rerankFields = rerankFields; + this.scoreAttribute = scoreAttribute; } public RerankExec(StreamInput in) throws IOException { @@ -45,7 +55,8 @@ public RerankExec(StreamInput in) throws IOException { in.readNamedWriteable(PhysicalPlan.class), in.readNamedWriteable(Expression.class), in.readNamedWriteable(Expression.class), - in.readCollectionAsList(Alias::new) + in.readCollectionAsList(Alias::new), + in.readNamedWriteable(Attribute.class) ); } @@ -57,6 +68,10 @@ public List rerankFields() { return rerankFields; } + public Attribute scoreAttribute() { + return scoreAttribute; + } + @Override public String getWriteableName() { return ENTRY.name; @@ -67,16 +82,17 @@ public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); out.writeNamedWriteable(queryText()); out.writeCollection(rerankFields()); + out.writeNamedWriteable(scoreAttribute); } @Override protected NodeInfo info() { - return NodeInfo.create(this, RerankExec::new, child(), inferenceId(), queryText, rerankFields); + return NodeInfo.create(this, RerankExec::new, child(), inferenceId(), queryText, rerankFields, scoreAttribute); } @Override public UnaryExec replaceChild(PhysicalPlan newChild) { - return new RerankExec(source(), newChild, inferenceId(), queryText, rerankFields); + return new RerankExec(source(), newChild, inferenceId(), queryText, rerankFields, scoreAttribute); } @Override @@ -85,11 +101,13 @@ public boolean equals(Object o) { if (o == null || getClass() != o.getClass()) return false; if (super.equals(o) == false) return false; RerankExec rerank = (RerankExec) o; - return Objects.equals(queryText, rerank.queryText) && Objects.equals(rerankFields, rerank.rerankFields); + return Objects.equals(queryText, rerank.queryText) + && Objects.equals(rerankFields, rerank.rerankFields) + && Objects.equals(scoreAttribute, rerank.scoreAttribute); } @Override public int hashCode() { - return Objects.hash(super.hashCode(), queryText, rerankFields); + return Objects.hash(super.hashCode(), queryText, rerankFields, scoreAttribute); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index ffc0dce4e5f5a..21597e1772f4e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -568,14 +568,7 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx)); String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx)); - - int scoreChannel = -1; - - for (Attribute attr : rerank.output()) { - if (attr.name().equals(MetadataAttribute.SCORE)) { - scoreChannel = source.layout.get(attr.id()).channel(); - } - } + int scoreChannel = source.layout.get(rerank.scoreAttribute().id()).channel(); return source.with( new RerankOperator.Factory(inferenceService, inferenceId, queryText, rerankFieldsEvaluatorSuppliers, scoreChannel), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java index e1703505d775a..a20c0bfe8c70b 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/MapperUtils.java @@ -87,7 +87,14 @@ static PhysicalPlan mapUnary(UnaryPlan p, PhysicalPlan child) { } if (p instanceof Rerank rerank) { - return new RerankExec(rerank.source(), child, rerank.inferenceId(), rerank.queryText(), rerank.rerankFields()); + return new RerankExec( + rerank.source(), + child, + rerank.inferenceId(), + rerank.queryText(), + rerank.rerankFields(), + rerank.scoreAttribute() + ); } if (p instanceof Enrich enrich) { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 9cbf818918021..575fc9b67a7ff 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3280,7 +3280,7 @@ private void assertEmptyEsRelation(LogicalPlan plan) { public void testResolveRerankInferenceId() { { LogicalPlan plan = analyze( - "FROM books | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", + " FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", "mapping-books.json" ); Rerank rerank = as(as(plan, Limit.class).child(), Rerank.class); @@ -3290,7 +3290,10 @@ public void testResolveRerankInferenceId() { { VerificationException ve = expectThrows( VerificationException.class, - () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"completion-inference-id\"", "mapping-books.json") + () -> analyze( + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"completion-inference-id\"", + "mapping-books.json" + ) ); assertThat( @@ -3305,7 +3308,10 @@ public void testResolveRerankInferenceId() { { VerificationException ve = expectThrows( VerificationException.class, - () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"error-inference-id\"", "mapping-books.json") + () -> analyze( + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"error-inference-id\"", + "mapping-books.json" + ) ); assertThat(ve.getMessage(), containsString("error with inference resolution")); @@ -3314,10 +3320,13 @@ public void testResolveRerankInferenceId() { { VerificationException ve = expectThrows( VerificationException.class, - () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"unknow-inference-id\"", "mapping-books.json") + () -> analyze( + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"unknown-inference-id\"", + "mapping-books.json" + ) ); - assertThat(ve.getMessage(), containsString("unresolved inference [unknow-inference-id]")); + assertThat(ve.getMessage(), containsString("unresolved inference [unknown-inference-id]")); } } @@ -3327,9 +3336,9 @@ public void testResolveRerankFields() { { // Single field. LogicalPlan plan = analyze(""" - FROM books + FROM books METADATA _score | WHERE title:"italian food recipe" OR description:"italian food recipe" - | KEEP description, title, year + | KEEP description, title, year, _score | DROP description | RERANK "italian food recipe" ON title WITH "reranking-inference-id" """, "mapping-books.json"); @@ -3352,7 +3361,7 @@ public void testResolveRerankFields() { { // Multiple fields. LogicalPlan plan = analyze(""" - FROM books + FROM books METADATA _score | WHERE title:"food" | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH "reranking-inference-id" """, "mapping-books.json"); @@ -3392,7 +3401,7 @@ public void testResolveRerankFields() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books | RERANK \"italian food recipe\" ON missingField WITH \"reranking-inference-id\"", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH \"reranking-inference-id\"", "mapping-books.json" ) @@ -3401,6 +3410,16 @@ public void testResolveRerankFields() { } } + public void testRerankRequiresScore() { + + VerificationException ve = expectThrows( + VerificationException.class, + () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", "mapping-books.json") + + ); + assertThat(ve.getMessage(), containsString("Missing required column [_score] for RERANK")); + } + @Override protected IndexAnalyzers createDefaultIndexAnalyzers() { return super.createDefaultIndexAnalyzers(); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java index e3c1f2e5db632..1bb8bab502f92 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java @@ -8,8 +8,10 @@ package org.elasticsearch.xpack.esql.plan.logical.inference; import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.AliasTests; @@ -26,7 +28,7 @@ public class RerankSerializationTests extends AbstractLogicalPlanSerializationTe protected Rerank createTestInstance() { Source source = randomSource(); LogicalPlan child = randomChild(0); - return new Rerank(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields()); + return new Rerank(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields(), scoreAttribute()); } @Override @@ -42,7 +44,7 @@ protected Rerank mutateInstance(Rerank instance) throws IOException { case 2 -> queryText = randomValueOtherThan(queryText, () -> string(RerankSerializationTests.randomIdentifier())); case 3 -> fields = randomValueOtherThan(fields, this::randomFields); } - return new Rerank(instance.source(), child, inferenceId, queryText, fields); + return new Rerank(instance.source(), child, inferenceId, queryText, fields, instance.scoreAttribute()); } @Override @@ -54,8 +56,11 @@ private List randomFields() { return randomList(0, 10, AliasTests::randomAlias); } - static Literal string(String value) { + private Literal string(String value) { return new Literal(EMPTY, value, DataType.KEYWORD); } + private Attribute scoreAttribute() { + return new MetadataAttribute(EMPTY, MetadataAttribute.SCORE, DataType.DOUBLE, randomBoolean()); + } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java index 19253dc2ab8dd..ecdbb1a1b4fd0 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java @@ -8,8 +8,10 @@ package org.elasticsearch.xpack.esql.plan.physical.inference; import org.elasticsearch.xpack.esql.core.expression.Alias; +import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.expression.MetadataAttribute; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.core.type.DataType; import org.elasticsearch.xpack.esql.expression.AliasTests; @@ -26,7 +28,7 @@ public class RerankExecSerializationTests extends AbstractPhysicalPlanSerializat protected RerankExec createTestInstance() { Source source = randomSource(); PhysicalPlan child = randomChild(0); - return new RerankExec(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields()); + return new RerankExec(source, child, string(randomIdentifier()), string(randomIdentifier()), randomFields(), scoreAttribute()); } @Override @@ -42,7 +44,7 @@ protected RerankExec mutateInstance(RerankExec instance) throws IOException { case 2 -> queryText = randomValueOtherThan(queryText, () -> string(RerankExecSerializationTests.randomIdentifier())); case 3 -> fields = randomValueOtherThan(fields, this::randomFields); } - return new RerankExec(instance.source(), child, inferenceId, queryText, fields); + return new RerankExec(instance.source(), child, inferenceId, queryText, fields, scoreAttribute()); } @Override @@ -58,4 +60,7 @@ static Literal string(String value) { return new Literal(EMPTY, value, DataType.KEYWORD); } + private Attribute scoreAttribute() { + return new MetadataAttribute(EMPTY, MetadataAttribute.SCORE, DataType.DOUBLE, randomBoolean()); + } } From b0129a3051e4fbe30534aec99b27738139b7dda5 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 17 Mar 2025 20:30:01 +0100 Subject: [PATCH 28/75] RereankOperator refactoring --- .../xpack/esql/inference/RerankOperator.java | 151 ++++++++---------- .../esql/inference/RerankOperatorTests.java | 88 +++++----- 2 files changed, 119 insertions(+), 120 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 053f580bdc4c7..e6b3ee4e626ca 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -17,7 +17,7 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; @@ -27,6 +27,7 @@ import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; import java.io.IOException; +import java.io.UncheckedIOException; import java.util.List; import java.util.Map; @@ -39,7 +40,7 @@ public record Factory( InferenceService inferenceService, String inferenceId, String queryText, - Map rerankFieldsEvaluatorFactories, + Map fieldsEvaluatorFactories, int scoreChannel ) implements OperatorFactory { @@ -50,7 +51,7 @@ public String describe() { + " query=" + queryText + " rerank_fields=" - + rerankFieldsEvaluatorFactories.keySet() + + fieldsEvaluatorFactories.keySet() + " score_channel=" + scoreChannel + "]"; @@ -63,22 +64,27 @@ public Operator get(DriverContext driverContext) { inferenceService, inferenceId, queryText, - rerankFieldsEvaluatorFactories.keySet().toArray(new String[0]), - rerankFieldsEvaluatorFactories.values() - .stream() - .map(factory -> factory.get(driverContext)) - .toArray(EvalOperator.ExpressionEvaluator[]::new), + fieldNames(), + fieldsEvaluators(driverContext), scoreChannel ); } + + private String[] fieldNames() { + return fieldsEvaluatorFactories.keySet().toArray(String[]::new); + } + + private ExpressionEvaluator[] fieldsEvaluators(DriverContext context) { + return fieldsEvaluatorFactories.values().stream().map(factory -> factory.get(context)).toArray(ExpressionEvaluator[]::new); + } } private final InferenceService inferenceService; private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; - private final String[] rerankFieldNames; - private final EvalOperator.ExpressionEvaluator[] rerankFieldsEvaluators; + private final String[] fieldNames; + private final ExpressionEvaluator[] fieldsEvaluators; private final int scoreChannel; public RerankOperator( @@ -86,44 +92,45 @@ public RerankOperator( InferenceService inferenceService, String inferenceId, String queryText, - String[] rerankFieldNames, - EvalOperator.ExpressionEvaluator[] rerankFieldsEvaluators, + String[] fieldNames, + ExpressionEvaluator[] fieldsEvaluators, int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); assert inferenceService.getThreadContext() != null; + assert fieldNames.length == fieldsEvaluators.length; this.blockFactory = driverContext.blockFactory(); this.inferenceService = inferenceService; this.inferenceId = inferenceId; this.queryText = queryText; - this.rerankFieldNames = rerankFieldNames; - this.rerankFieldsEvaluators = rerankFieldsEvaluators; + this.fieldNames = fieldNames; + this.fieldsEvaluators = fieldsEvaluators; this.scoreChannel = scoreChannel; } @Override protected void performAsync(Page inputPage, ActionListener listener) { // Ensure input page blocks are released when the listener is called. - final ActionListener outputListener = ActionListener.runAfter(listener, inputPage::releaseBlocks); + final ActionListener outputListener = ActionListener.runAfter(listener, () -> { inputPage.releaseBlocks(); }); - final ActionListener inferenceResonseListener = ActionListener.wrap( - inferenceResponse -> buildOutput(inputPage, inferenceResponse, outputListener), - outputListener::onFailure - ); - - final ActionListener buildInferenceRequestListener = ActionListener.wrap( - (inferenceRequest) -> inferenceService.doInference(inferenceRequest, inferenceResonseListener), - outputListener::onFailure - ); - - buildInferenceRequest(inputPage, buildInferenceRequestListener); + try { + inferenceService.doInference( + buildInferenceRequest(inputPage), + ActionListener.wrap( + inferenceResponse -> outputListener.onResponse(buildOutput(inputPage, inferenceResponse)), + outputListener::onFailure + ) + ); + } catch (Exception e) { + outputListener.onFailure(e); + } } @Override protected void doClose() { - Releasables.closeExpectNoException(this.rerankFieldsEvaluators); + Releasables.closeExpectNoException(this.fieldsEvaluators); } @Override @@ -143,30 +150,28 @@ public String toString() { + " query=" + queryText + " rerank_fields=" - + List.of(rerankFieldNames) + + List.of(fieldNames) + " score_channel=" + scoreChannel + "]"; } - private void buildOutput(Page inputPage, InferenceAction.Response inferenceResponse, ActionListener listener) { + private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) { - buildOutput(inputPage, rankedDocsResults, listener); - return; + return buildOutput(inputPage, rankedDocsResults); + } - listener.onFailure( - new IllegalStateException( - "Inference result has wrong type. Got [" - + inferenceResponse.getResults().getClass() - + "] while expecting [" - + RankedDocsResults.class - + "]" - ) + throw new IllegalStateException( + "Inference result has wrong type. Got [" + + inferenceResponse.getResults().getClass() + + "] while expecting [" + + RankedDocsResults.class + + "]" ); } - private void buildOutput(Page inputPage, RankedDocsResults rankedDocsResults, ActionListener listener) { + private Page buildOutput(Page inputPage, RankedDocsResults rankedDocsResults) { int blockCount = inputPage.getBlockCount(); Block[] blocks = new Block[blockCount]; @@ -179,9 +184,10 @@ private void buildOutput(Page inputPage, RankedDocsResults rankedDocsResults, Ac blocks[b].incRef(); } } - listener.onResponse(new Page(blocks)); + return new Page(blocks); } catch (Exception e) { Releasables.closeExpectNoException(blocks); + throw (e); } } @@ -205,51 +211,34 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } } - private void buildInferenceRequest(Page inputPage, ActionListener listener) { - - Block[] inputBlocks = inputBlocks(inputPage); + private InferenceAction.Request buildInferenceRequest(Page inputPage) { + Block[] inputBlocks = new Block[fieldsEvaluators.length]; try { - String[] inputs = new String[inputPage.getPositionCount()]; - if (inputBlocks.length > 0) for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { - inputs[pos] = toYaml(inputBlocks, pos); + for (int b = 0; b < inputBlocks.length; b++) { + inputBlocks[b] = fieldsEvaluators[b].eval(inputPage); } - listener.onResponse( - InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build() - ); - } catch (Exception e) { - listener.onFailure(e); - } finally { - Releasables.closeExpectNoException(inputBlocks); - } - } - private Block[] inputBlocks(Page inputPage) { - Block[] blocks = new Block[rerankFieldsEvaluators.length]; - - try { - for (int i = 0; i < rerankFieldsEvaluators.length; i++) { - blocks[i] = rerankFieldsEvaluators[i].eval(inputPage); - } - - return blocks; - } catch (Exception e) { - Releasables.closeExpectNoException(blocks); - throw e; - } - } - - private String toYaml(Block[] inputBlocks, int position) throws IOException { - try (XContentBuilder yamlBuilder = XContentFactory.yamlBuilder().startObject()) { - for (int i = 0; i < inputBlocks.length; i++) { - String fieldName = rerankFieldNames[i]; - Block currentBlock = inputBlocks[i]; - if (currentBlock.isNull(position)) { - continue; + String[] inputs = new String[inputPage.getPositionCount()]; + for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { + try (XContentBuilder yamlBuilder = XContentFactory.yamlBuilder().startObject()) { + for (int i = 0; i < inputBlocks.length; i++) { + String fieldName = fieldNames[i]; + Block currentBlock = inputBlocks[i]; + if (currentBlock.isNull(pos)) { + continue; + } + yamlBuilder.field(fieldName, toYaml(BlockUtils.toJavaObject(currentBlock, pos))); + } + inputs[pos] = Strings.toString(yamlBuilder.endObject()); + } catch (IOException e) { + throw new UncheckedIOException(e); } - yamlBuilder.field(fieldName, toYaml(BlockUtils.toJavaObject(currentBlock, position))); } - return Strings.toString(yamlBuilder.endObject()); + + return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); + } finally { + Releasables.closeExpectNoException(inputBlocks); } } @@ -262,7 +251,7 @@ private Object toYaml(Object value) { }; } catch (Error | Exception e) { // Swallow errors caused by invalid byteref. - return null; + return ""; } } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 30afd3f3ea359..943963d8d8517 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -30,6 +30,8 @@ import org.elasticsearch.compute.test.AbstractBlockSourceOperator; import org.elasticsearch.compute.test.OperatorTestCase; import org.elasticsearch.compute.test.RandomBlock; +import org.elasticsearch.core.Releasables; +import org.elasticsearch.core.Tuple; import org.elasticsearch.threadpool.FixedExecutorBuilder; import org.elasticsearch.threadpool.TestThreadPool; import org.elasticsearch.threadpool.ThreadPool; @@ -49,7 +51,6 @@ import java.util.stream.Collectors; import java.util.stream.IntStream; -import static org.elasticsearch.compute.test.RandomBlock.randomElementType; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.greaterThanOrEqualTo; import static org.hamcrest.Matchers.hasSize; @@ -64,17 +65,40 @@ public class RerankOperatorTests extends OperatorTestCase { private static final String SIMPLE_INFERENCE_ID = "test_reranker"; private static final String SIMPLE_QUERY = "query text"; private ThreadPool threadPool; - - private Map inputFieldTypes; + private Map inputChannelElementTypes; + private Map rerankFieldsEvaluatorFactories; private int scoreChannel; @Before private void initChannels() { int channelCount = randomIntBetween(2, 10); scoreChannel = randomIntBetween(0, channelCount - 1); - inputFieldTypes = IntStream.range(0, channelCount).sorted().mapToObj(i -> { - return i == scoreChannel ? Map.entry("_score", ElementType.DOUBLE) : Map.entry(randomIdentifier(), randomElementType()); + inputChannelElementTypes = IntStream.range(0, channelCount).sorted().mapToObj(i -> { + return i == scoreChannel + ? Map.entry("_score", ElementType.DOUBLE) + : Map.entry(randomIdentifier(), randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG)); }).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new)); + + rerankFieldsEvaluatorFactories = randomMap( + 1, + 20, + () -> new Tuple<>(randomIdentifier(), context -> new EvalOperator.ExpressionEvaluator() { + private int channel = randomIntBetween(0, channelCount - 1); + + @Override + public Block eval(Page page) { + Block b = page.getBlock(channel); + b.incRef(); + ; + return b; + } + + @Override + public void close() { + + } + }) + ); } @Before @@ -94,9 +118,6 @@ public void shutdownThreadPool() { @Override protected Operator.OperatorFactory simple() { InferenceService inferenceService = mockedSimpleInferenceService(); - Map rerankFieldsEvaluatorFactories = new LinkedHashMap<>(); - rerankFieldsEvaluatorFactories.put("field1", new LoadFromPageFactory(0)); - rerankFieldsEvaluatorFactories.put("_score", new LoadFromPageFactory(1)); return new RerankOperator.Factory( inferenceService, @@ -139,14 +160,18 @@ private RankedDocsResults mockedRankedDocResults(InferenceAction.Request request @Override protected Matcher expectedDescriptionOfSimple() { - return expectedToStringOfSimple(); + return equalTo( + "RerankOperator[inference_id=test_reranker query=query text rerank_fields=" + + rerankFieldsEvaluatorFactories.keySet() + + " score_channel=" + + scoreChannel + + "]" + ); } @Override protected Matcher expectedToStringOfSimple() { - return equalTo( - "RerankOperator[inference_id=test_reranker query=query text rerank_fields=[field1, _score] score_channel=" + scoreChannel + "]" - ); + return expectedDescriptionOfSimple(); } @Override @@ -159,14 +184,18 @@ protected int remaining() { @Override protected Page createPage(int positionOffset, int length) { - currentPosition += length; - return new Page( - inputFieldTypes.values().stream().map(elementType -> randomBlock(elementType, length)).toArray(Block[]::new) - ); - } - - private Block randomBlock(ElementType elementType, int positionCount) { - return RandomBlock.randomBlock(elementType, positionCount, randomBoolean(), 0, 10, 0, 10).block(); + try { + currentPosition += length; + ElementType[] elementTypes = inputChannelElementTypes.values().toArray(ElementType[]::new); + Block[] blocks = new Block[inputChannelElementTypes.size()]; + for (int b = 0; b < elementTypes.length; b++) { + blocks[b] = RandomBlock.randomBlock(blockFactory, elementTypes[b], length, randomBoolean(), 0, 10, 0, 10).block(); + } + return new Page(blocks); + } catch (Exception e) { + Releasables.closeExpectNoException(); + throw (e); + } } }; } @@ -271,23 +300,4 @@ void assertRandomPositions(Block block, Consumer consumer) { void assertByteRefsBlockContentEquals(Block input, Block result, BytesRef readBuffer) { assertBlockContentEquals(input, result, (BytesRefBlock b, Integer pos) -> b.getBytesRef(pos, readBuffer), BytesRefBlock.class); } - - record LoadFromPageFactory(int channel) implements EvalOperator.ExpressionEvaluator.Factory { - @Override - public EvalOperator.ExpressionEvaluator get(DriverContext context) { - return new EvalOperator.ExpressionEvaluator() { - @Override - public Block eval(Page page) { - Block block = page.getBlock(channel); - block.incRef(); - return block; - } - - @Override - public void close() { - - } - }; - } - } } From 54ce1eb0a1700ab6be0ba5864d59d1838ae04fac Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 18 Mar 2025 10:07:12 +0100 Subject: [PATCH 29/75] Small test refactoring --- .../esql/inference/RerankOperatorTests.java | 95 +++++++++++-------- 1 file changed, 56 insertions(+), 39 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 943963d8d8517..411a914908447 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -24,14 +24,13 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.compute.operator.SourceOperator; import org.elasticsearch.compute.test.AbstractBlockSourceOperator; import org.elasticsearch.compute.test.OperatorTestCase; import org.elasticsearch.compute.test.RandomBlock; import org.elasticsearch.core.Releasables; -import org.elasticsearch.core.Tuple; import org.elasticsearch.threadpool.FixedExecutorBuilder; import org.elasticsearch.threadpool.TestThreadPool; import org.elasticsearch.threadpool.ThreadPool; @@ -43,13 +42,14 @@ import java.io.IOException; import java.util.ArrayList; -import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.function.BiFunction; import java.util.function.Consumer; +import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.IntStream; +import java.util.stream.Stream; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.greaterThanOrEqualTo; @@ -65,40 +65,16 @@ public class RerankOperatorTests extends OperatorTestCase { private static final String SIMPLE_INFERENCE_ID = "test_reranker"; private static final String SIMPLE_QUERY = "query text"; private ThreadPool threadPool; - private Map inputChannelElementTypes; - private Map rerankFieldsEvaluatorFactories; + private List inputChannelElementTypes; + private Map rerankFieldsEvaluatorFactories; private int scoreChannel; @Before private void initChannels() { int channelCount = randomIntBetween(2, 10); scoreChannel = randomIntBetween(0, channelCount - 1); - inputChannelElementTypes = IntStream.range(0, channelCount).sorted().mapToObj(i -> { - return i == scoreChannel - ? Map.entry("_score", ElementType.DOUBLE) - : Map.entry(randomIdentifier(), randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG)); - }).collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, (e1, e2) -> e1, LinkedHashMap::new)); - - rerankFieldsEvaluatorFactories = randomMap( - 1, - 20, - () -> new Tuple<>(randomIdentifier(), context -> new EvalOperator.ExpressionEvaluator() { - private int channel = randomIntBetween(0, channelCount - 1); - - @Override - public Block eval(Page page) { - Block b = page.getBlock(channel); - b.incRef(); - ; - return b; - } - - @Override - public void close() { - - } - }) - ); + inputChannelElementTypes = IntStream.range(0, channelCount).sorted().mapToObj(this::randomElementType).collect(Collectors.toList()); + rerankFieldsEvaluatorFactories = randomFieldEvaluators().collect(Collectors.toMap((e) -> randomIdentifier(), Function.identity())); } @Before @@ -184,16 +160,24 @@ protected int remaining() { @Override protected Page createPage(int positionOffset, int length) { + Block[] blocks = new Block[inputChannelElementTypes.size()]; try { currentPosition += length; - ElementType[] elementTypes = inputChannelElementTypes.values().toArray(ElementType[]::new); - Block[] blocks = new Block[inputChannelElementTypes.size()]; - for (int b = 0; b < elementTypes.length; b++) { - blocks[b] = RandomBlock.randomBlock(blockFactory, elementTypes[b], length, randomBoolean(), 0, 10, 0, 10).block(); + for (int b = 0; b < inputChannelElementTypes.size(); b++) { + blocks[b] = RandomBlock.randomBlock( + blockFactory, + inputChannelElementTypes.get(b), + length, + randomBoolean(), + 0, + 10, + 0, + 10 + ).block(); } return new Page(blocks); } catch (Exception e) { - Releasables.closeExpectNoException(); + Releasables.closeExpectNoException(blocks); throw (e); } } @@ -255,7 +239,40 @@ protected void assertSimpleOutput(List inputPages, List resultPages) } } - void assertExpectedScore(DoubleBlock scoreBlockResult) { + private int inputChannelCount() { + return inputChannelElementTypes.size(); + } + + private int randomInputChannel() { + return randomIntBetween(0, inputChannelCount() - 1); + } + + private ElementType randomElementType(int channel) { + return channel == scoreChannel ? ElementType.DOUBLE : randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG); + } + + private Stream randomFieldEvaluators() { + return Stream.generate(() -> randomFieldEvaluator(randomInputChannel())).limit(randomIntBetween(0, 20)); + } + + private static ExpressionEvaluator.Factory randomFieldEvaluator(int channel) { + return context -> new ExpressionEvaluator() { + @Override + public Block eval(Page page) { + Block b = page.getBlock(channel); + b.incRef(); + ; + return b; + } + + @Override + public void close() { + + } + }; + } + + private void assertExpectedScore(DoubleBlock scoreBlockResult) { assertRandomPositions(scoreBlockResult, (pos) -> { if (pos % 10 == 0) { assertThat(scoreBlockResult.isNull(pos), equalTo(true)); @@ -291,13 +308,13 @@ void assertBlockContentEquals( }); } - void assertRandomPositions(Block block, Consumer consumer) { + private void assertRandomPositions(Block block, Consumer consumer) { for (Integer pos : randomList(0, 100, () -> randomIntBetween(0, block.getPositionCount() - 1))) { consumer.accept(pos); } } - void assertByteRefsBlockContentEquals(Block input, Block result, BytesRef readBuffer) { + private void assertByteRefsBlockContentEquals(Block input, Block result, BytesRef readBuffer) { assertBlockContentEquals(input, result, (BytesRefBlock b, Integer pos) -> b.getBytesRef(pos, readBuffer), BytesRefBlock.class); } } From ca6e97213d337283ee9bc85a003aa00c4d6b1588 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 18 Mar 2025 15:01:22 +0100 Subject: [PATCH 30/75] Fix some tests. --- .../org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 575fc9b67a7ff..a55ec18d32306 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3278,6 +3278,8 @@ private void assertEmptyEsRelation(LogicalPlan plan) { } public void testResolveRerankInferenceId() { + assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled()); + { LogicalPlan plan = analyze( " FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", @@ -3411,6 +3413,7 @@ public void testResolveRerankFields() { } public void testRerankRequiresScore() { + assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled()); VerificationException ve = expectThrows( VerificationException.class, From bac4f9adc6c4aa688fd8e1c9af4d69fde4e592b4 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 18 Mar 2025 15:01:50 +0100 Subject: [PATCH 31/75] Fix an error in a copy/paste --- .../src/test/java/org/elasticsearch/xpack/esql/CsvTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 7fe393a774536..22b6f7b9b7f58 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -127,7 +127,6 @@ import static org.hamcrest.Matchers.everyItem; import static org.hamcrest.Matchers.greaterThan; import static org.hamcrest.Matchers.hasSize; -import static org.hamcrest.Matchers.in; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; @@ -255,7 +254,7 @@ public final void test() throws Throwable { ); assumeFalse( "can't use rereank in csv tests", - testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.ENRICH_LOAD.capabilityName()) + testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.RERANK.capabilityName()) ); assumeFalse( "can't use match in csv tests", From 4ef3f7e84517bdb26f95d6641258bf59540eef3f Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 18 Mar 2025 16:29:12 +0100 Subject: [PATCH 32/75] Add missing import. --- .../src/test/java/org/elasticsearch/xpack/esql/CsvTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 22b6f7b9b7f58..53aa2d9e9ec06 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -126,7 +126,7 @@ import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.everyItem; import static org.hamcrest.Matchers.greaterThan; -import static org.hamcrest.Matchers.hasSize; +import static org.hamcrest.Matchers.in; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; From 7e021f48e035db4dda172de795b1e21b371bb337 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 18 Mar 2025 16:41:33 +0100 Subject: [PATCH 33/75] Add missing import. --- .../src/test/java/org/elasticsearch/xpack/esql/CsvTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 53aa2d9e9ec06..57f343d289c7b 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -128,6 +128,7 @@ import static org.hamcrest.Matchers.greaterThan; import static org.hamcrest.Matchers.in; import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.notNullValue; /** From 78a7efbcd0903647e924bf3febd347593d2362bf Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Tue, 18 Mar 2025 15:50:31 +0000 Subject: [PATCH 34/75] [CI] Auto commit changes from spotless --- .../src/test/java/org/elasticsearch/xpack/esql/CsvTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index 57f343d289c7b..9bfccb0dec21a 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -126,9 +126,9 @@ import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.everyItem; import static org.hamcrest.Matchers.greaterThan; +import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.in; import static org.hamcrest.Matchers.is; -import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.notNullValue; /** From 0e918df972a327a17f38c5d973241acbe8469352 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 19 Mar 2025 14:52:37 +0100 Subject: [PATCH 35/75] Better handling of the YAML encoding. --- .../src/main/resources/rerank.csv-spec | 12 +- .../xpack/esql/inference/RerankOperator.java | 99 ++++--------- .../esql/inference/XContentRowEncoder.java | 135 ++++++++++++++++++ .../esql/inference/RerankOperatorTests.java | 24 +++- 4 files changed, 189 insertions(+), 81 deletions(-) create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 0afa1da7266b7..be0fec4de947c 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -14,10 +14,10 @@ FROM books METADATA _score ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.014925372786819935 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 ; @@ -32,9 +32,9 @@ FROM books METADATA _score ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.020408162847161293 +5327 | War and Peace | Leo Tolstoy | 0.02083333395421505 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.014285714365541935 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01123595517128706 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.011363636702299118 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.009523809887468815 ; @@ -52,7 +52,7 @@ FROM books METADATA _score ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 ; @@ -70,7 +70,7 @@ FROM books METADATA _score ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03703703731298447 +5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 ; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index e6b3ee4e626ca..505326b72181c 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -9,10 +9,9 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; -import org.elasticsearch.common.Strings; import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; -import org.elasticsearch.compute.data.BlockUtils; +import org.elasticsearch.compute.data.BytesRefBlock; import org.elasticsearch.compute.data.DoubleBlock; import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; @@ -21,16 +20,14 @@ import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; -import org.elasticsearch.xcontent.XContentBuilder; -import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xpack.core.inference.action.InferenceAction; import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; -import java.io.IOException; -import java.io.UncheckedIOException; import java.util.List; import java.util.Map; +import static org.elasticsearch.xpack.esql.inference.XContentRowEncoder.yamlRowEncoderFactory; + public class RerankOperator extends AsyncOperator { // Move to a setting. @@ -46,15 +43,15 @@ public record Factory( @Override public String describe() { - return "RerankOperator[inference_id=" + return "RerankOperator[inference_id=[" + inferenceId - + " query=" + + "], query=[" + queryText - + " rerank_fields=" + + "], rerank_fields=" + fieldsEvaluatorFactories.keySet() - + " score_channel=" + + ", score_channel=[" + scoreChannel - + "]"; + + "]]"; } @Override @@ -64,27 +61,17 @@ public Operator get(DriverContext driverContext) { inferenceService, inferenceId, queryText, - fieldNames(), - fieldsEvaluators(driverContext), + yamlRowEncoderFactory(fieldsEvaluatorFactories).get(driverContext), scoreChannel ); } - - private String[] fieldNames() { - return fieldsEvaluatorFactories.keySet().toArray(String[]::new); - } - - private ExpressionEvaluator[] fieldsEvaluators(DriverContext context) { - return fieldsEvaluatorFactories.values().stream().map(factory -> factory.get(context)).toArray(ExpressionEvaluator[]::new); - } } private final InferenceService inferenceService; private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; - private final String[] fieldNames; - private final ExpressionEvaluator[] fieldsEvaluators; + private final ExpressionEvaluator rowEncoder; private final int scoreChannel; public RerankOperator( @@ -92,28 +79,25 @@ public RerankOperator( InferenceService inferenceService, String inferenceId, String queryText, - String[] fieldNames, - ExpressionEvaluator[] fieldsEvaluators, + ExpressionEvaluator rowEncoder, int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); assert inferenceService.getThreadContext() != null; - assert fieldNames.length == fieldsEvaluators.length; this.blockFactory = driverContext.blockFactory(); this.inferenceService = inferenceService; this.inferenceId = inferenceId; this.queryText = queryText; - this.fieldNames = fieldNames; - this.fieldsEvaluators = fieldsEvaluators; + this.rowEncoder = rowEncoder; this.scoreChannel = scoreChannel; } @Override protected void performAsync(Page inputPage, ActionListener listener) { // Ensure input page blocks are released when the listener is called. - final ActionListener outputListener = ActionListener.runAfter(listener, () -> { inputPage.releaseBlocks(); }); + final ActionListener outputListener = ActionListener.runAfter(listener, () -> { releasePageOnAnyThread(inputPage); }); try { inferenceService.doInference( @@ -130,7 +114,7 @@ protected void performAsync(Page inputPage, ActionListener listener) { @Override protected void doClose() { - Releasables.closeExpectNoException(this.fieldsEvaluators); + Releasables.closeExpectNoException(rowEncoder); } @Override @@ -145,15 +129,15 @@ public Page getOutput() { @Override public String toString() { - return "RerankOperator[inference_id=" + return "RerankOperator[inference_id=[" + inferenceId - + " query=" + + "], query=[" + queryText - + " rerank_fields=" - + List.of(fieldNames) - + " score_channel=" + + "], row_encoder=[" + + rowEncoder + + "], score_channel=[" + scoreChannel - + "]"; + + "]]"; } private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { @@ -212,46 +196,21 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } private InferenceAction.Request buildInferenceRequest(Page inputPage) { - Block[] inputBlocks = new Block[fieldsEvaluators.length]; - - try { - for (int b = 0; b < inputBlocks.length; b++) { - inputBlocks[b] = fieldsEvaluators[b].eval(inputPage); - } - + try (BytesRefBlock encodedRowBlock = (BytesRefBlock) rowEncoder.eval(inputPage)) { + assert (encodedRowBlock.getPositionCount() == inputPage.getPositionCount()); String[] inputs = new String[inputPage.getPositionCount()]; + BytesRef buffer = new BytesRef(); + for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { - try (XContentBuilder yamlBuilder = XContentFactory.yamlBuilder().startObject()) { - for (int i = 0; i < inputBlocks.length; i++) { - String fieldName = fieldNames[i]; - Block currentBlock = inputBlocks[i]; - if (currentBlock.isNull(pos)) { - continue; - } - yamlBuilder.field(fieldName, toYaml(BlockUtils.toJavaObject(currentBlock, pos))); - } - inputs[pos] = Strings.toString(yamlBuilder.endObject()); - } catch (IOException e) { - throw new UncheckedIOException(e); + if (encodedRowBlock.isNull(pos)) { + inputs[pos] = ""; + } else { + buffer = encodedRowBlock.getBytesRef(encodedRowBlock.getFirstValueIndex(pos), buffer); + inputs[pos] = buffer.utf8ToString(); } } return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build(); - } finally { - Releasables.closeExpectNoException(inputBlocks); - } - } - - private Object toYaml(Object value) { - try { - return switch (value) { - case BytesRef b -> b.utf8ToString(); - case List l -> l.stream().map(this::toYaml).toList(); - default -> value; - }; - } catch (Error | Exception e) { - // Swallow errors caused by invalid byteref. - return ""; } } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java new file mode 100644 index 0000000000000..2c2240ad875cd --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java @@ -0,0 +1,135 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.apache.lucene.util.BytesRef; +import org.elasticsearch.common.io.stream.BytesRefStreamOutput; +import org.elasticsearch.compute.data.Block; +import org.elasticsearch.compute.data.BlockFactory; +import org.elasticsearch.compute.data.BlockUtils; +import org.elasticsearch.compute.data.BytesRefBlock; +import org.elasticsearch.compute.data.Page; +import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.core.Releasables; +import org.elasticsearch.xcontent.XContentBuilder; +import org.elasticsearch.xcontent.XContentFactory; +import org.elasticsearch.xcontent.XContentType; + +import java.io.IOException; +import java.io.UncheckedIOException; +import java.util.List; +import java.util.Map; + +class XContentRowEncoder implements EvalOperator.ExpressionEvaluator { + private final XContentType xContentType; + private final BlockFactory blockFactory; + private final String[] fieldNames; + private final EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators; + + public static Factory yamlRowEncoderFactory(Map fieldsEvaluatorFactories) { + return new Factory(XContentType.YAML, fieldsEvaluatorFactories); + } + + private XContentRowEncoder( + XContentType xContentType, + BlockFactory blockFactory, + String[] fieldNames, + EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators + ) { + assert fieldNames.length == fieldsValueEvaluators.length; + this.xContentType = xContentType; + this.blockFactory = blockFactory; + this.fieldNames = fieldNames; + this.fieldsValueEvaluators = fieldsValueEvaluators; + } + + @Override + public void close() { + Releasables.closeExpectNoException(fieldsValueEvaluators); + } + + @Override + public Block eval(Page page) { + Block[] fieldValueBlocks = new Block[fieldsValueEvaluators.length]; + try ( + BytesRefStreamOutput outputStream = new BytesRefStreamOutput(); + XContentBuilder xContentBuilder = XContentFactory.contentBuilder(xContentType, outputStream); + BytesRefBlock.Builder outputBlockBuilder = blockFactory.newBytesRefBlockBuilder(page.getPositionCount()); + ) { + for (int b = 0; b < fieldValueBlocks.length; b++) { + fieldValueBlocks[b] = fieldsValueEvaluators[b].eval(page); + } + + for (int pos = 0; pos < page.getPositionCount(); pos++) { + xContentBuilder.startObject(); + for (int i = 0; i < fieldValueBlocks.length; i++) { + String fieldName = fieldNames[i]; + Block currentBlock = fieldValueBlocks[i]; + if (currentBlock.isNull(pos)) { + continue; + } + xContentBuilder.field(fieldName, toYamlValue(BlockUtils.toJavaObject(currentBlock, pos))); + } + xContentBuilder.endObject().flush(); + outputBlockBuilder.appendBytesRef(outputStream.get()); + outputStream.reset(); + } + + return outputBlockBuilder.build(); + } catch (IOException e) { + throw new UncheckedIOException(e); + } finally { + Releasables.closeExpectNoException(fieldValueBlocks); + } + } + + @Override + public String toString() { + return "XContentRowEncoder[content_type=[" + xContentType.toString() + "], field_names=" + List.of(fieldNames) + "]"; + } + + private Object toYamlValue(Object value) { + try { + return switch (value) { + case BytesRef b -> b.utf8ToString(); + case List l -> l.stream().map(this::toYamlValue).toList(); + default -> value; + }; + } catch (Error | Exception e) { + // Swallow errors caused by invalid byteref. + return ""; + } + } + + public static final class Factory implements EvalOperator.ExpressionEvaluator.Factory { + private final XContentType xContentType; + private final Map fieldsEvaluatorFactories; + + private Factory(XContentType xContentType, Map fieldsEvaluatorFactories) { + this.xContentType = xContentType; + this.fieldsEvaluatorFactories = fieldsEvaluatorFactories; + } + + @Override + public EvalOperator.ExpressionEvaluator get(DriverContext context) { + return new XContentRowEncoder(xContentType, context.blockFactory(), fieldNames(), fieldsValueEvaluators(context)); + } + + private String[] fieldNames() { + return fieldsEvaluatorFactories.keySet().toArray(String[]::new); + } + + private EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators(DriverContext context) { + return fieldsEvaluatorFactories.values() + .stream() + .map(factory -> factory.get(context)) + .toArray(EvalOperator.ExpressionEvaluator[]::new); + } + } +} diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 411a914908447..2e7ee79412f09 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -137,17 +137,31 @@ private RankedDocsResults mockedRankedDocResults(InferenceAction.Request request @Override protected Matcher expectedDescriptionOfSimple() { return equalTo( - "RerankOperator[inference_id=test_reranker query=query text rerank_fields=" + "RerankOperator[inference_id=[" + + SIMPLE_INFERENCE_ID + + "], query=[" + + SIMPLE_QUERY + + "], rerank_fields=" + rerankFieldsEvaluatorFactories.keySet() - + " score_channel=" + + ", score_channel=[" + scoreChannel - + "]" + + "]]" ); } @Override protected Matcher expectedToStringOfSimple() { - return expectedDescriptionOfSimple(); + return equalTo( + "RerankOperator[inference_id=[" + + SIMPLE_INFERENCE_ID + + "], query=[" + + SIMPLE_QUERY + + "], row_encoder=[XContentRowEncoder[content_type=[YAML], field_names=" + + rerankFieldsEvaluatorFactories.keySet() + + "]], score_channel=[" + + scoreChannel + + "]]" + ); } @Override @@ -309,7 +323,7 @@ void assertBlockContentEquals( } private void assertRandomPositions(Block block, Consumer consumer) { - for (Integer pos : randomList(0, 100, () -> randomIntBetween(0, block.getPositionCount() - 1))) { + for (int pos = 0; pos < block.getPositionCount(); pos++) { consumer.accept(pos); } } From 3444c07a0a5d71bef94ae4c1227183154e36efa2 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 19 Mar 2025 14:57:30 +0100 Subject: [PATCH 36/75] Renaming function in tests. --- .../xpack/esql/inference/RerankOperatorTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 2e7ee79412f09..4155570a62add 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -306,7 +306,7 @@ void assertBlockContentEquals( V inputBlock = asInstanceOf(blockClass, input); V resultBlock = asInstanceOf(blockClass, result); - assertRandomPositions(inputBlock, (pos) -> { + assertAllPositions(inputBlock, (pos) -> { if (inputBlock.isNull(pos)) { assertThat(resultBlock.isNull(pos), equalTo(inputBlock.isNull(pos))); } else { @@ -322,7 +322,7 @@ void assertBlockContentEquals( }); } - private void assertRandomPositions(Block block, Consumer consumer) { + private void assertAllPositions(Block block, Consumer consumer) { for (int pos = 0; pos < block.getPositionCount(); pos++) { consumer.accept(pos); } From ca295fba452f7c4cfb12e720121f285fec0f36d0 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 19 Mar 2025 15:01:05 +0100 Subject: [PATCH 37/75] Renaming function in tests. --- .../elasticsearch/xpack/esql/inference/RerankOperatorTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 4155570a62add..dac0e98de1ead 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -287,7 +287,7 @@ public void close() { } private void assertExpectedScore(DoubleBlock scoreBlockResult) { - assertRandomPositions(scoreBlockResult, (pos) -> { + assertAllPositions(scoreBlockResult, (pos) -> { if (pos % 10 == 0) { assertThat(scoreBlockResult.isNull(pos), equalTo(true)); } else { From 69d551fddafa9d5216ef8b257d2dec58e3d3299c Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Mar 2025 11:51:18 +0100 Subject: [PATCH 38/75] Adding the _score column automatically if missing from previous step. --- .../src/main/resources/rerank.csv-spec | 19 +++++++ .../xpack/esql/analysis/Analyzer.java | 17 +++--- .../xpack/esql/inference/RerankOperator.java | 2 +- .../esql/plan/logical/inference/Rerank.java | 24 ++++++++- .../plan/physical/inference/RerankExec.java | 25 +++++++++ .../esql/planner/LocalExecutionPlanner.java | 11 +++- .../xpack/esql/analysis/AnalyzerTests.java | 53 ++++++++++++++++--- 7 files changed, 129 insertions(+), 22 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index be0fec4de947c..5c2acc0ea427a 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -74,3 +74,22 @@ book_no:keyword | title:text | author:text 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 ; + + +reranker add the _score column when missing +required_capability: rerank +required_capability: match_function + +FROM books +| WHERE title:"war and peace" AND author:"Tolstoy" +| RERANK "war and peace" ON title WITH "test_reranker" +| KEEP book_no, title, author, _score +; + + +book_no:keyword | title:text | author:text | _score:double +5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 +; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java index a08e63c8fbefb..96dc3676a65aa 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/analysis/Analyzer.java @@ -8,6 +8,7 @@ package org.elasticsearch.xpack.esql.analysis; import org.elasticsearch.common.logging.HeaderWarning; +import org.elasticsearch.common.logging.LoggerMessageFormat; import org.elasticsearch.compute.data.Block; import org.elasticsearch.core.Strings; import org.elasticsearch.index.IndexMode; @@ -127,7 +128,6 @@ import static java.util.Collections.emptyList; import static java.util.Collections.singletonList; -import static org.elasticsearch.common.logging.LoggerMessageFormat.format; import static org.elasticsearch.xpack.core.enrich.EnrichPolicy.GEO_MATCH_TYPE; import static org.elasticsearch.xpack.esql.core.type.DataType.BOOLEAN; import static org.elasticsearch.xpack.esql.core.type.DataType.DATETIME; @@ -752,17 +752,12 @@ private LogicalPlan resolveRerank(Rerank rerank, List childrenOutput) rerank = rerank.withRerankFields(newFields); } - // Ensure the score attribute is resolved + // Ensure the score attribute is present in the output. if (rerank.scoreAttribute() instanceof UnresolvedAttribute ua) { Attribute resolved = resolveAttribute(ua, childrenOutput); - if (resolved.resolved() == false) { - resolved = ua.withUnresolvedMessage(format(null, "Missing required column [{}] for RERANK", MetadataAttribute.SCORE)); - } else if (resolved.dataType() != DOUBLE) { - resolved = ua.withUnresolvedMessage( - format("_score has the wrong type; [{}] expected but got [{}]", DataType.DOUBLE, resolved.dataType()) - ); + if (resolved.resolved() == false || resolved.dataType() != DOUBLE) { + resolved = MetadataAttribute.create(Source.EMPTY, MetadataAttribute.SCORE); } - rerank = rerank.withScoreAttribute(resolved); } @@ -1081,7 +1076,7 @@ public static List projectionsForRename(Rename rename, List rerankFields; + private List lazyOutput; public Rerank(Source source, LogicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) { super(source, child, inferenceId); @@ -126,7 +129,11 @@ public UnaryPlan replaceChild(LogicalPlan newChild) { @Override protected AttributeSet computeReferences() { AttributeSet refs = computeReferences(rerankFields); - refs.add(scoreAttribute); + + if (planHasAttribute(child(), scoreAttribute)) { + refs.add(scoreAttribute); + } + return refs; } @@ -166,4 +173,19 @@ public LogicalPlan surrogate() { Order sortOrder = new Order(source(), scoreAttribute, Order.OrderDirection.DESC, Order.NullsPosition.ANY); return new OrderBy(source(), this, List.of(sortOrder)); } + + @Override + public List output() { + if (lazyOutput == null) { + lazyOutput = planHasAttribute(child(), scoreAttribute) + ? child().output() + : mergeOutputAttributes(List.of(scoreAttribute), child().output()); + } + + return lazyOutput; + } + + public static boolean planHasAttribute(QueryPlan plan, Attribute attribute) { + return plan.output().stream().anyMatch(attr -> attr.equals(attribute)); + } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java index 04948e202dd42..fff9598ea116f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java @@ -12,10 +12,12 @@ import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.xpack.esql.core.expression.Alias; import org.elasticsearch.xpack.esql.core.expression.Attribute; +import org.elasticsearch.xpack.esql.core.expression.AttributeSet; import org.elasticsearch.xpack.esql.core.expression.Expression; import org.elasticsearch.xpack.esql.core.tree.NodeInfo; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; @@ -23,6 +25,9 @@ import java.util.List; import java.util.Objects; +import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes; +import static org.elasticsearch.xpack.esql.plan.logical.inference.Rerank.planHasAttribute; + public class RerankExec extends InferenceExec { public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry( @@ -95,6 +100,26 @@ public UnaryExec replaceChild(PhysicalPlan newChild) { return new RerankExec(source(), newChild, inferenceId(), queryText, rerankFields, scoreAttribute); } + @Override + public List output() { + if (planHasAttribute(child(), scoreAttribute)) { + return child().output(); + } + + return mergeOutputAttributes(List.of(scoreAttribute), child().output()); + } + + @Override + protected AttributeSet computeReferences() { + AttributeSet refs = Rerank.computeReferences(rerankFields); + + if (planHasAttribute(child(), scoreAttribute)) { + refs.add(scoreAttribute); + } + + return refs; + } + @Override public boolean equals(Object o) { if (this == o) return true; diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index 21597e1772f4e..babbfefb084b8 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -568,11 +568,18 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx)); String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx)); - int scoreChannel = source.layout.get(rerank.scoreAttribute().id()).channel(); + + Layout.Builder layoutBuilder = source.layout.builder(); + if (source.layout.get(rerank.scoreAttribute().id()) == null) { + layoutBuilder.append(rerank.scoreAttribute()); + } + Layout outputLayout = layoutBuilder.build(); + + int scoreChannel = outputLayout.get(rerank.scoreAttribute().id()).channel(); return source.with( new RerankOperator.Factory(inferenceService, inferenceId, queryText, rerankFieldsEvaluatorSuppliers, scoreChannel), - source.layout + outputLayout ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 226b7ff3a7971..0dd0be738c95c 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3358,6 +3358,10 @@ public void testResolveRerankFields() { assertThat(rerank.queryText(), equalTo(string("italian food recipe"))); assertThat(rerank.inferenceId(), equalTo(string("reranking-inference-id"))); assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", titleAttribute)))); + assertThat( + rerank.scoreAttribute(), + equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get()) + ); } { @@ -3397,6 +3401,10 @@ public void testResolveRerankFields() { Attribute yearAttribute = relation.output().stream().filter(attribute -> attribute.name().equals("year")).findFirst().get(); assertThat(yearAttribute, notNullValue()); assertThat(rerank.rerankFields().get(2), equalTo(alias("yearRenamed", yearAttribute))); + assertThat( + rerank.scoreAttribute(), + equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get()) + ); } { @@ -3412,15 +3420,46 @@ public void testResolveRerankFields() { } } - public void testRerankRequiresScore() { - assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled()); + public void testResolveRerankScoreFields() { + { + // When the metadata field is required in FROM, it is reused. + LogicalPlan plan = analyze(""" + FROM books METADATA _score + | WHERE title:"italian food recipe" OR description:"italian food recipe" + | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + """, "mapping-books.json"); - VerificationException ve = expectThrows( - VerificationException.class, - () -> analyze("FROM books | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", "mapping-books.json") + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + Filter filter = as(rerank.child(), Filter.class); + EsRelation relation = as(filter.child(), EsRelation.class); - ); - assertThat(ve.getMessage(), containsString("Missing required column [_score] for RERANK")); + Attribute metadataScoreAttribute = relation.output() + .stream() + .filter(attr -> attr.name().equals(MetadataAttribute.SCORE)) + .findFirst() + .get(); + assertThat(rerank.scoreAttribute(), equalTo(metadataScoreAttribute)); + assertThat(rerank.output(), hasItem(metadataScoreAttribute)); + } + + { + // When the metadata field is not required in FROM, it is added to the output of RERANK + LogicalPlan plan = analyze(""" + FROM books + | WHERE title:"italian food recipe" OR description:"italian food recipe" + | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + """, "mapping-books.json"); + + Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. + Rerank rerank = as(limit.child(), Rerank.class); + Filter filter = as(rerank.child(), Filter.class); + EsRelation relation = as(filter.child(), EsRelation.class); + + assertThat(relation.output().stream().noneMatch(attr -> attr.name().equals(MetadataAttribute.SCORE)), is(true)); + assertThat(rerank.scoreAttribute(), equalTo(MetadataAttribute.create(EMPTY, MetadataAttribute.SCORE))); + assertThat(rerank.output(), hasItem(rerank.scoreAttribute())); + } } @Override From 01c052969a7d50948db0524e06c3fa62ffe49948 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Mar 2025 14:40:16 +0100 Subject: [PATCH 39/75] Fix typo. --- .../org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 0dd0be738c95c..f0de852966161 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3420,7 +3420,7 @@ public void testResolveRerankFields() { } } - public void testResolveRerankScoreFields() { + public void testResolveRerankScoreField() { { // When the metadata field is required in FROM, it is reused. LogicalPlan plan = analyze(""" From cd813fdce49f3ffc3003fab0dea36e7d16fdadff Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Mar 2025 15:20:25 +0100 Subject: [PATCH 40/75] Add missing assertion in AnalyzerTests --- .../org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index f0de852966161..976d719b093c0 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3421,6 +3421,8 @@ public void testResolveRerankFields() { } public void testResolveRerankScoreField() { + assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled()); + { // When the metadata field is required in FROM, it is reused. LogicalPlan plan = analyze(""" From 84640ccbd806c0295f29fa0873926ab90055527e Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Mar 2025 16:15:04 +0100 Subject: [PATCH 41/75] Continue refactoring of the RowEncoder. --- .../xpack/esql/inference/RerankOperator.java | 43 ++++------- .../xpack/esql/inference/RowEncoder.java | 22 ++++++ .../esql/inference/XContentRowEncoder.java | 9 ++- .../esql/planner/LocalExecutionPlanner.java | 10 +-- .../esql/inference/RerankOperatorTests.java | 71 +++++-------------- 5 files changed, 63 insertions(+), 92 deletions(-) create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index cd6230c48530e..40db4279beec1 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -9,6 +9,7 @@ import org.apache.lucene.util.BytesRef; import org.elasticsearch.action.ActionListener; +import org.elasticsearch.common.lucene.BytesRefs; import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; import org.elasticsearch.compute.data.BytesRefBlock; @@ -16,7 +17,6 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; @@ -24,9 +24,6 @@ import org.elasticsearch.xpack.core.inference.results.RankedDocsResults; import java.util.List; -import java.util.Map; - -import static org.elasticsearch.xpack.esql.inference.XContentRowEncoder.yamlRowEncoderFactory; public class RerankOperator extends AsyncOperator { @@ -37,21 +34,13 @@ public record Factory( InferenceService inferenceService, String inferenceId, String queryText, - Map fieldsEvaluatorFactories, + RowEncoder.Factory rowEncoderFactory, int scoreChannel ) implements OperatorFactory { @Override public String describe() { - return "RerankOperator[inference_id=[" - + inferenceId - + "], query=[" - + queryText - + "], rerank_fields=" - + fieldsEvaluatorFactories.keySet() - + ", score_channel=[" - + scoreChannel - + "]]"; + return "RerankOperator[inference_id=[" + inferenceId + "], query=[" + queryText + "], score_channel=[" + scoreChannel + "]]"; } @Override @@ -61,7 +50,7 @@ public Operator get(DriverContext driverContext) { inferenceService, inferenceId, queryText, - yamlRowEncoderFactory(fieldsEvaluatorFactories).get(driverContext), + rowEncoderFactory().get(driverContext), scoreChannel ); } @@ -71,7 +60,7 @@ public Operator get(DriverContext driverContext) { private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; - private final ExpressionEvaluator rowEncoder; + private final RowEncoder rowEncoder; private final int scoreChannel; public RerankOperator( @@ -79,7 +68,7 @@ public RerankOperator( InferenceService inferenceService, String inferenceId, String queryText, - ExpressionEvaluator rowEncoder, + RowEncoder rowEncoder, int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); @@ -129,15 +118,7 @@ public Page getOutput() { @Override public String toString() { - return "RerankOperator[inference_id=[" - + inferenceId - + "], query=[" - + queryText - + "], row_encoder=[" - + rowEncoder - + "], score_channel=[" - + scoreChannel - + "]]"; + return "RerankOperator[inference_id=[" + inferenceId + "], query=[" + queryText + "], score_channel=[" + scoreChannel + "]]"; } private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) { @@ -196,17 +177,17 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } private InferenceAction.Request buildInferenceRequest(Page inputPage) { - try (BytesRefBlock encodedRowBlock = (BytesRefBlock) rowEncoder.eval(inputPage)) { - assert (encodedRowBlock.getPositionCount() == inputPage.getPositionCount()); + try (BytesRefBlock encodedRowsBlock = rowEncoder.encodeRows(inputPage)) { + assert (encodedRowsBlock.getPositionCount() == inputPage.getPositionCount()); String[] inputs = new String[inputPage.getPositionCount()]; BytesRef buffer = new BytesRef(); for (int pos = 0; pos < inputPage.getPositionCount(); pos++) { - if (encodedRowBlock.isNull(pos)) { + if (encodedRowsBlock.isNull(pos)) { inputs[pos] = ""; } else { - buffer = encodedRowBlock.getBytesRef(encodedRowBlock.getFirstValueIndex(pos), buffer); - inputs[pos] = buffer.utf8ToString(); + buffer = encodedRowsBlock.getBytesRef(encodedRowsBlock.getFirstValueIndex(pos), buffer); + inputs[pos] = BytesRefs.toString(buffer); } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java new file mode 100644 index 0000000000000..1a427dc9a4640 --- /dev/null +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java @@ -0,0 +1,22 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.elasticsearch.compute.data.Block; +import org.elasticsearch.compute.data.Page; +import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.core.Releasable; + +public interface RowEncoder extends Releasable { + + B encodeRows(Page page); + + interface Factory { + RowEncoder get(DriverContext context); + } +} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java index 2c2240ad875cd..98317d4b77b63 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java @@ -26,7 +26,7 @@ import java.util.List; import java.util.Map; -class XContentRowEncoder implements EvalOperator.ExpressionEvaluator { +public class XContentRowEncoder implements RowEncoder { private final XContentType xContentType; private final BlockFactory blockFactory; private final String[] fieldNames; @@ -55,7 +55,7 @@ public void close() { } @Override - public Block eval(Page page) { + public BytesRefBlock encodeRows(Page page) { Block[] fieldValueBlocks = new Block[fieldsValueEvaluators.length]; try ( BytesRefStreamOutput outputStream = new BytesRefStreamOutput(); @@ -107,7 +107,7 @@ private Object toYamlValue(Object value) { } } - public static final class Factory implements EvalOperator.ExpressionEvaluator.Factory { + public static final class Factory implements RowEncoder.Factory { private final XContentType xContentType; private final Map fieldsEvaluatorFactories; @@ -116,8 +116,7 @@ private Factory(XContentType xContentType, Map get(DriverContext context) { return new XContentRowEncoder(xContentType, context.blockFactory(), fieldNames(), fieldsValueEvaluators(context)); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index babbfefb084b8..d13a0f02a448d 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -82,6 +82,7 @@ import org.elasticsearch.xpack.esql.expression.Order; import org.elasticsearch.xpack.esql.inference.InferenceService; import org.elasticsearch.xpack.esql.inference.RerankOperator; +import org.elasticsearch.xpack.esql.inference.XContentRowEncoder; import org.elasticsearch.xpack.esql.plan.logical.Fork; import org.elasticsearch.xpack.esql.plan.physical.AggregateExec; import org.elasticsearch.xpack.esql.plan.physical.ChangePointExec; @@ -566,19 +567,20 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon ); } + XContentRowEncoder.Factory rowEncoderFactory = XContentRowEncoder.yamlRowEncoderFactory(rerankFieldsEvaluatorSuppliers); + String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx)); String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx)); - Layout.Builder layoutBuilder = source.layout.builder(); + Layout outputLayout = source.layout; if (source.layout.get(rerank.scoreAttribute().id()) == null) { - layoutBuilder.append(rerank.scoreAttribute()); + outputLayout = source.layout.builder().append(rerank.scoreAttribute()).build(); } - Layout outputLayout = layoutBuilder.build(); int scoreChannel = outputLayout.get(rerank.scoreAttribute().id()).channel(); return source.with( - new RerankOperator.Factory(inferenceService, inferenceId, queryText, rerankFieldsEvaluatorSuppliers, scoreChannel), + new RerankOperator.Factory(inferenceService, inferenceId, queryText, rowEncoderFactory, scoreChannel), outputLayout ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index dac0e98de1ead..e03b217c89160 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -24,7 +24,6 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.compute.operator.SourceOperator; import org.elasticsearch.compute.test.AbstractBlockSourceOperator; @@ -43,13 +42,10 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import java.util.Map; import java.util.function.BiFunction; import java.util.function.Consumer; -import java.util.function.Function; import java.util.stream.Collectors; import java.util.stream.IntStream; -import java.util.stream.Stream; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.greaterThanOrEqualTo; @@ -66,7 +62,7 @@ public class RerankOperatorTests extends OperatorTestCase { private static final String SIMPLE_QUERY = "query text"; private ThreadPool threadPool; private List inputChannelElementTypes; - private Map rerankFieldsEvaluatorFactories; + private RowEncoder.Factory rowEncoderFactory; private int scoreChannel; @Before @@ -74,7 +70,7 @@ private void initChannels() { int channelCount = randomIntBetween(2, 10); scoreChannel = randomIntBetween(0, channelCount - 1); inputChannelElementTypes = IntStream.range(0, channelCount).sorted().mapToObj(this::randomElementType).collect(Collectors.toList()); - rerankFieldsEvaluatorFactories = randomFieldEvaluators().collect(Collectors.toMap((e) -> randomIdentifier(), Function.identity())); + rowEncoderFactory = mockRowEncoderFactory(); } @Before @@ -94,14 +90,7 @@ public void shutdownThreadPool() { @Override protected Operator.OperatorFactory simple() { InferenceService inferenceService = mockedSimpleInferenceService(); - - return new RerankOperator.Factory( - inferenceService, - SIMPLE_INFERENCE_ID, - SIMPLE_QUERY, - rerankFieldsEvaluatorFactories, - scoreChannel - ); + return new RerankOperator.Factory(inferenceService, SIMPLE_INFERENCE_ID, SIMPLE_QUERY, rowEncoderFactory, scoreChannel); } private InferenceService mockedSimpleInferenceService() { @@ -136,31 +125,13 @@ private RankedDocsResults mockedRankedDocResults(InferenceAction.Request request @Override protected Matcher expectedDescriptionOfSimple() { - return equalTo( - "RerankOperator[inference_id=[" - + SIMPLE_INFERENCE_ID - + "], query=[" - + SIMPLE_QUERY - + "], rerank_fields=" - + rerankFieldsEvaluatorFactories.keySet() - + ", score_channel=[" - + scoreChannel - + "]]" - ); + return expectedToStringOfSimple(); } @Override protected Matcher expectedToStringOfSimple() { return equalTo( - "RerankOperator[inference_id=[" - + SIMPLE_INFERENCE_ID - + "], query=[" - + SIMPLE_QUERY - + "], row_encoder=[XContentRowEncoder[content_type=[YAML], field_names=" - + rerankFieldsEvaluatorFactories.keySet() - + "]], score_channel=[" - + scoreChannel - + "]]" + "RerankOperator[inference_id=[" + SIMPLE_INFERENCE_ID + "], query=[" + SIMPLE_QUERY + "], score_channel=[" + scoreChannel + "]]" ); } @@ -257,33 +228,29 @@ private int inputChannelCount() { return inputChannelElementTypes.size(); } - private int randomInputChannel() { - return randomIntBetween(0, inputChannelCount() - 1); - } - private ElementType randomElementType(int channel) { return channel == scoreChannel ? ElementType.DOUBLE : randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG); } - private Stream randomFieldEvaluators() { - return Stream.generate(() -> randomFieldEvaluator(randomInputChannel())).limit(randomIntBetween(0, 20)); - } - - private static ExpressionEvaluator.Factory randomFieldEvaluator(int channel) { - return context -> new ExpressionEvaluator() { + private RowEncoder.Factory mockRowEncoderFactory() { + RowEncoder.Factory factory = new RowEncoder.Factory<>() { @Override - public Block eval(Page page) { - Block b = page.getBlock(channel); - b.incRef(); - ; - return b; - } + public RowEncoder get(DriverContext context) { + return new RowEncoder() { + @Override + public BytesRefBlock encodeRows(Page page) { + return blockFactory().newConstantBytesRefBlockWith(new BytesRef(randomAlphaOfLength(100)), page.getPositionCount()); + } - @Override - public void close() { + @Override + public void close() { + } + }; } }; + + return factory; } private void assertExpectedScore(DoubleBlock scoreBlockResult) { From 587d947a6e6efa237cc82f21f8d5a3588127026a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?= Date: Thu, 20 Mar 2025 16:23:34 +0100 Subject: [PATCH 42/75] Update docs/changelog/123074.yaml --- docs/changelog/123074.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/changelog/123074.yaml diff --git a/docs/changelog/123074.yaml b/docs/changelog/123074.yaml new file mode 100644 index 0000000000000..f95be5a47c52e --- /dev/null +++ b/docs/changelog/123074.yaml @@ -0,0 +1,5 @@ +pr: 123074 +summary: ES|QL Reranker command +area: Ranking +type: feature +issues: [] From 83ba8fbe0ff1989e8d4c01962db448af7e4c12fd Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Thu, 20 Mar 2025 16:34:15 +0100 Subject: [PATCH 43/75] Rework inference resolution error. --- .../xpack/esql/plan/logical/inference/InferencePlan.java | 7 ++++++- .../xpack/esql/plan/logical/inference/Rerank.java | 3 +-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java index 25b8c5377569b..9f12f258dd8ed 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java @@ -10,6 +10,7 @@ import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.esql.core.expression.Expression; +import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute; import org.elasticsearch.xpack.esql.core.tree.Source; import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; @@ -58,5 +59,9 @@ public int hashCode() { public abstract TaskType taskType(); - public abstract LogicalPlan withInferenceResolutionError(String inferenceId, String error); + public abstract InferencePlan withInferenceId(Expression newInferenceId); + + public InferencePlan withInferenceResolutionError(String inferenceId, String error) { + return withInferenceId(new UnresolvedAttribute(inferenceId().source(), inferenceId, error)); + } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index f2b2290997824..ebb30351fb7b9 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -103,8 +103,7 @@ public TaskType taskType() { } @Override - public Rerank withInferenceResolutionError(String inferenceId, String error) { - Expression newInferenceId = new UnresolvedAttribute(inferenceId().source(), inferenceId, error); + public Rerank withInferenceId(Expression newInferenceId) { return new Rerank(source(), child(), newInferenceId, queryText, rerankFields, scoreAttribute); } From 2ce8ab162b70b0b085108c3aa690564274d805c1 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 10:59:36 +0100 Subject: [PATCH 44/75] Rewording. --- .../xpack/esql/plan/logical/inference/Rerank.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java index ebb30351fb7b9..2d2618d93b5c8 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java @@ -137,8 +137,8 @@ protected AttributeSet computeReferences() { } public static AttributeSet computeReferences(List fields) { - AttributeSet generated = new AttributeSet(asAttributes(fields)); - return Expressions.references(fields).subtract(generated); + AttributeSet rerankFields = new AttributeSet(asAttributes(fields)); + return Expressions.references(fields).subtract(rerankFields); } @Override @@ -185,6 +185,6 @@ public List output() { } public static boolean planHasAttribute(QueryPlan plan, Attribute attribute) { - return plan.output().stream().anyMatch(attr -> attr.equals(attribute)); + return plan.outputSet().stream().anyMatch(attr -> attr.equals(attribute)); } } From ced6e5f138a48adcf07b5c4188572d6c709fa71c Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 12:24:29 +0100 Subject: [PATCH 45/75] Improved changelog. --- docs/changelog/123074.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/changelog/123074.yaml b/docs/changelog/123074.yaml index f95be5a47c52e..6e2dc524c39d4 100644 --- a/docs/changelog/123074.yaml +++ b/docs/changelog/123074.yaml @@ -1,5 +1,7 @@ pr: 123074 -summary: ES|QL Reranker command +summary: Adding ES|QL Reranker command in snapshot builds area: Ranking type: feature -issues: [] +issues: + - https://github.com/elastic/elasticsearch/issues/124337 + From 70f7ada297a45fc0fc44586219a43d1dc187bd45 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 12:15:43 +0100 Subject: [PATCH 46/75] Improved XContentRowEncoder to support most element types correctly. --- .../xpack/esql/action/PositionToXContent.java | 2 +- .../xpack/esql/inference/RerankOperator.java | 9 +- .../esql/inference/XContentRowEncoder.java | 90 +++++++++++-------- .../esql/planner/LocalExecutionPlanner.java | 5 +- .../esql/inference/RerankOperatorTests.java | 30 +++---- 5 files changed, 76 insertions(+), 60 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/PositionToXContent.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/PositionToXContent.java index 116ff588f417a..16e5c840e56ff 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/PositionToXContent.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/action/PositionToXContent.java @@ -33,7 +33,7 @@ import static org.elasticsearch.xpack.esql.type.EsqlDataTypeConverter.spatialToString; import static org.elasticsearch.xpack.esql.type.EsqlDataTypeConverter.versionToString; -abstract class PositionToXContent { +public abstract class PositionToXContent { protected final Block block; PositionToXContent(Block block) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index 40db4279beec1..c181b2d81d800 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -17,6 +17,7 @@ import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.AsyncOperator; import org.elasticsearch.compute.operator.DriverContext; +import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.compute.operator.Operator; import org.elasticsearch.core.Releasables; import org.elasticsearch.inference.TaskType; @@ -34,7 +35,7 @@ public record Factory( InferenceService inferenceService, String inferenceId, String queryText, - RowEncoder.Factory rowEncoderFactory, + ExpressionEvaluator.Factory rowEncoderFactory, int scoreChannel ) implements OperatorFactory { @@ -60,7 +61,7 @@ public Operator get(DriverContext driverContext) { private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; - private final RowEncoder rowEncoder; + private final ExpressionEvaluator rowEncoder; private final int scoreChannel; public RerankOperator( @@ -68,7 +69,7 @@ public RerankOperator( InferenceService inferenceService, String inferenceId, String queryText, - RowEncoder rowEncoder, + ExpressionEvaluator rowEncoder, int scoreChannel ) { super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); @@ -177,7 +178,7 @@ private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResult } private InferenceAction.Request buildInferenceRequest(Page inputPage) { - try (BytesRefBlock encodedRowsBlock = rowEncoder.encodeRows(inputPage)) { + try (BytesRefBlock encodedRowsBlock = (BytesRefBlock) rowEncoder.eval(inputPage)) { assert (encodedRowsBlock.getPositionCount() == inputPage.getPositionCount()); String[] inputs = new String[inputPage.getPositionCount()]; BytesRef buffer = new BytesRef(); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java index 98317d4b77b63..1a091df5f550a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java @@ -11,41 +11,57 @@ import org.elasticsearch.common.io.stream.BytesRefStreamOutput; import org.elasticsearch.compute.data.Block; import org.elasticsearch.compute.data.BlockFactory; -import org.elasticsearch.compute.data.BlockUtils; import org.elasticsearch.compute.data.BytesRefBlock; import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.DriverContext; import org.elasticsearch.compute.operator.EvalOperator; +import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.core.Releasables; +import org.elasticsearch.xcontent.ToXContent; import org.elasticsearch.xcontent.XContentBuilder; import org.elasticsearch.xcontent.XContentFactory; import org.elasticsearch.xcontent.XContentType; +import org.elasticsearch.xpack.esql.action.ColumnInfoImpl; +import org.elasticsearch.xpack.esql.action.PositionToXContent; import java.io.IOException; import java.io.UncheckedIOException; +import java.util.Arrays; import java.util.List; import java.util.Map; +import java.util.stream.Collectors; -public class XContentRowEncoder implements RowEncoder { + +/** + * Encodes rows into an XContent format (JSON,YAML,...) for further processing. + * Extracted columns can be specified using {@link EvalOperator}ExpressionEvaluator} + */ +public class XContentRowEncoder implements ExpressionEvaluator { private final XContentType xContentType; private final BlockFactory blockFactory; - private final String[] fieldNames; - private final EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators; - - public static Factory yamlRowEncoderFactory(Map fieldsEvaluatorFactories) { + private final ColumnInfoImpl[] columnsInfo; + private final ExpressionEvaluator[] fieldsValueEvaluators; + + /** + * Creates a factory for YAML XContent row encoding. + * + * @param fieldsEvaluatorFactories A map of column information to expression evaluators. + * @return A Factory instance for creating YAML row encoder for the specified column. + */ + public static Factory yamlRowEncoderFactory(Map fieldsEvaluatorFactories) { return new Factory(XContentType.YAML, fieldsEvaluatorFactories); } private XContentRowEncoder( XContentType xContentType, BlockFactory blockFactory, - String[] fieldNames, - EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators + ColumnInfoImpl[] columnsInfo, + ExpressionEvaluator[] fieldsValueEvaluators ) { - assert fieldNames.length == fieldsValueEvaluators.length; + assert columnsInfo.length == fieldsValueEvaluators.length; this.xContentType = xContentType; this.blockFactory = blockFactory; - this.fieldNames = fieldNames; + this.columnsInfo = columnsInfo; this.fieldsValueEvaluators = fieldsValueEvaluators; } @@ -54,27 +70,36 @@ public void close() { Releasables.closeExpectNoException(fieldsValueEvaluators); } + /** + * Process the provided Page and encode its rows into a BytesRefBlock containing XContent-formatted rows. + * + * @param page The input Page containing row data. + * @return A BytesRefBlock containing the encoded rows. + */ @Override - public BytesRefBlock encodeRows(Page page) { + public BytesRefBlock eval(Page page) { Block[] fieldValueBlocks = new Block[fieldsValueEvaluators.length]; try ( BytesRefStreamOutput outputStream = new BytesRefStreamOutput(); XContentBuilder xContentBuilder = XContentFactory.contentBuilder(xContentType, outputStream); BytesRefBlock.Builder outputBlockBuilder = blockFactory.newBytesRefBlockBuilder(page.getPositionCount()); ) { + + PositionToXContent[] toXContents = new PositionToXContent[fieldsValueEvaluators.length]; for (int b = 0; b < fieldValueBlocks.length; b++) { fieldValueBlocks[b] = fieldsValueEvaluators[b].eval(page); + toXContents[b] = PositionToXContent.positionToXContent(columnsInfo[b], fieldValueBlocks[b], new BytesRef()); } for (int pos = 0; pos < page.getPositionCount(); pos++) { xContentBuilder.startObject(); for (int i = 0; i < fieldValueBlocks.length; i++) { - String fieldName = fieldNames[i]; + String fieldName = columnsInfo[i].name(); Block currentBlock = fieldValueBlocks[i]; - if (currentBlock.isNull(pos)) { + if (currentBlock.isNull(pos) || currentBlock.getValueCount(pos) < 1) { continue; } - xContentBuilder.field(fieldName, toYamlValue(BlockUtils.toJavaObject(currentBlock, pos))); + toXContents[i].positionToXContent(xContentBuilder.field(fieldName), ToXContent.EMPTY_PARAMS, pos); } xContentBuilder.endObject().flush(); outputBlockBuilder.appendBytesRef(outputStream.get()); @@ -89,46 +114,37 @@ public BytesRefBlock encodeRows(Page page) { } } - @Override - public String toString() { - return "XContentRowEncoder[content_type=[" + xContentType.toString() + "], field_names=" + List.of(fieldNames) + "]"; + public List fieldNames() { + return Arrays.stream(columnsInfo).map(ColumnInfoImpl::name).collect(Collectors.toList()); } - private Object toYamlValue(Object value) { - try { - return switch (value) { - case BytesRef b -> b.utf8ToString(); - case List l -> l.stream().map(this::toYamlValue).toList(); - default -> value; - }; - } catch (Error | Exception e) { - // Swallow errors caused by invalid byteref. - return ""; - } + @Override + public String toString() { + return "XContentRowEncoder[content_type=[" + xContentType.toString() + "], field_names=" + fieldNames() + "]"; } - public static final class Factory implements RowEncoder.Factory { + public static class Factory implements ExpressionEvaluator.Factory { private final XContentType xContentType; - private final Map fieldsEvaluatorFactories; + private final Map fieldsEvaluatorFactories; - private Factory(XContentType xContentType, Map fieldsEvaluatorFactories) { + private Factory(XContentType xContentType, Map fieldsEvaluatorFactories) { this.xContentType = xContentType; this.fieldsEvaluatorFactories = fieldsEvaluatorFactories; } - public RowEncoder get(DriverContext context) { - return new XContentRowEncoder(xContentType, context.blockFactory(), fieldNames(), fieldsValueEvaluators(context)); + public XContentRowEncoder get(DriverContext context) { + return new XContentRowEncoder(xContentType, context.blockFactory(), columnsInfo(), fieldsValueEvaluators(context)); } - private String[] fieldNames() { - return fieldsEvaluatorFactories.keySet().toArray(String[]::new); + private ColumnInfoImpl[] columnsInfo() { + return fieldsEvaluatorFactories.keySet().toArray(ColumnInfoImpl[]::new); } - private EvalOperator.ExpressionEvaluator[] fieldsValueEvaluators(DriverContext context) { + private ExpressionEvaluator[] fieldsValueEvaluators(DriverContext context) { return fieldsEvaluatorFactories.values() .stream() .map(factory -> factory.get(context)) - .toArray(EvalOperator.ExpressionEvaluator[]::new); + .toArray(ExpressionEvaluator[]::new); } } } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index d13a0f02a448d..0f6c5edf863ce 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -59,6 +59,7 @@ import org.elasticsearch.node.Node; import org.elasticsearch.tasks.CancellableTask; import org.elasticsearch.xpack.esql.EsqlIllegalArgumentException; +import org.elasticsearch.xpack.esql.action.ColumnInfoImpl; import org.elasticsearch.xpack.esql.core.expression.Alias; import org.elasticsearch.xpack.esql.core.expression.Attribute; import org.elasticsearch.xpack.esql.core.expression.Expression; @@ -558,11 +559,11 @@ private PhysicalOperation planEnrich(EnrichExec enrich, LocalExecutionPlannerCon private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerContext context) { PhysicalOperation source = plan(rerank.child(), context); - Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>(); + Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>(); for (var rerankField : rerank.rerankFields()) { rerankFieldsEvaluatorSuppliers.put( - rerankField.name(), + new ColumnInfoImpl(rerankField.name(), rerankField.dataType()), EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout) ); } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index e03b217c89160..fa1c4452322b3 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -62,7 +62,7 @@ public class RerankOperatorTests extends OperatorTestCase { private static final String SIMPLE_QUERY = "query text"; private ThreadPool threadPool; private List inputChannelElementTypes; - private RowEncoder.Factory rowEncoderFactory; + private XContentRowEncoder.Factory rowEncoderFactory; private int scoreChannel; @Before @@ -232,23 +232,21 @@ private ElementType randomElementType(int channel) { return channel == scoreChannel ? ElementType.DOUBLE : randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG); } - private RowEncoder.Factory mockRowEncoderFactory() { - RowEncoder.Factory factory = new RowEncoder.Factory<>() { - @Override - public RowEncoder get(DriverContext context) { - return new RowEncoder() { - @Override - public BytesRefBlock encodeRows(Page page) { - return blockFactory().newConstantBytesRefBlockWith(new BytesRef(randomAlphaOfLength(100)), page.getPositionCount()); - } + private XContentRowEncoder.Factory mockRowEncoderFactory() { + XContentRowEncoder.Factory factory = mock(XContentRowEncoder.Factory.class); + doAnswer(factoryInvocation -> { + DriverContext driverContext = factoryInvocation.getArgument(0, DriverContext.class); + XContentRowEncoder rowEncoder = mock(XContentRowEncoder.class); + doAnswer( + encoderInvocation -> { + Page inputPage = encoderInvocation.getArgument(0, Page.class); + return driverContext.blockFactory().newConstantBytesRefBlockWith(new BytesRef(randomRealisticUnicodeOfCodepointLength(4)), inputPage.getPositionCount()); + } + ).when(rowEncoder).eval(any(Page.class)); - @Override - public void close() { + return rowEncoder; + }).when(factory).get(any(DriverContext.class)); - } - }; - } - }; return factory; } From 8e67202fdd679f72dd16c1ea3b4c172fdf03e4dc Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 12:19:12 +0100 Subject: [PATCH 47/75] Fix Javadoc. --- .../elasticsearch/xpack/esql/inference/XContentRowEncoder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java index 1a091df5f550a..0c03bca650015 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java @@ -34,7 +34,7 @@ /** * Encodes rows into an XContent format (JSON,YAML,...) for further processing. - * Extracted columns can be specified using {@link EvalOperator}ExpressionEvaluator} + * Extracted columns can be specified using {@link ExpressionEvaluator} */ public class XContentRowEncoder implements ExpressionEvaluator { private final XContentType xContentType; From c56a15e6d7b99c88c6f732587d49c9af212a09e6 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 12:32:48 +0100 Subject: [PATCH 48/75] Fix changelog --- docs/changelog/123074.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/changelog/123074.yaml b/docs/changelog/123074.yaml index 6e2dc524c39d4..2210942ecdaf8 100644 --- a/docs/changelog/123074.yaml +++ b/docs/changelog/123074.yaml @@ -2,6 +2,5 @@ pr: 123074 summary: Adding ES|QL Reranker command in snapshot builds area: Ranking type: feature -issues: - - https://github.com/elastic/elasticsearch/issues/124337 +issues: [124337] From ee0028682dffbaddd68fdb46fc0008df10b8b4ee Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 15:44:36 +0100 Subject: [PATCH 49/75] Delete useless interface. --- .../xpack/esql/inference/RowEncoder.java | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java deleted file mode 100644 index 1a427dc9a4640..0000000000000 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RowEncoder.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * 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. - */ - -package org.elasticsearch.xpack.esql.inference; - -import org.elasticsearch.compute.data.Block; -import org.elasticsearch.compute.data.Page; -import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.core.Releasable; - -public interface RowEncoder extends Releasable { - - B encodeRows(Page page); - - interface Factory { - RowEncoder get(DriverContext context); - } -} From cffd34562434514b36e0590c9d7b59817da4aafa Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 15:45:06 +0100 Subject: [PATCH 50/75] Spotless fix. --- .../xpack/esql/inference/RerankOperatorTests.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index fa1c4452322b3..09fa75e6daf53 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -237,17 +237,15 @@ private XContentRowEncoder.Factory mockRowEncoderFactory() { doAnswer(factoryInvocation -> { DriverContext driverContext = factoryInvocation.getArgument(0, DriverContext.class); XContentRowEncoder rowEncoder = mock(XContentRowEncoder.class); - doAnswer( - encoderInvocation -> { - Page inputPage = encoderInvocation.getArgument(0, Page.class); - return driverContext.blockFactory().newConstantBytesRefBlockWith(new BytesRef(randomRealisticUnicodeOfCodepointLength(4)), inputPage.getPositionCount()); - } - ).when(rowEncoder).eval(any(Page.class)); + doAnswer(encoderInvocation -> { + Page inputPage = encoderInvocation.getArgument(0, Page.class); + return driverContext.blockFactory() + .newConstantBytesRefBlockWith(new BytesRef(randomRealisticUnicodeOfCodepointLength(4)), inputPage.getPositionCount()); + }).when(rowEncoder).eval(any(Page.class)); return rowEncoder; }).when(factory).get(any(DriverContext.class)); - return factory; } From d97701b71f0a623f33a75b634719725168030663 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 21 Mar 2025 15:45:28 +0100 Subject: [PATCH 51/75] Ensure RERANK is done on the coordinator node. --- .../xpack/esql/planner/mapper/Mapper.java | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java index 58459d9429f23..7601984d4391f 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java @@ -23,6 +23,7 @@ import org.elasticsearch.xpack.esql.plan.logical.OrderBy; import org.elasticsearch.xpack.esql.plan.logical.TopN; import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan; +import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank; import org.elasticsearch.xpack.esql.plan.logical.join.InlineJoin; import org.elasticsearch.xpack.esql.plan.logical.join.Join; import org.elasticsearch.xpack.esql.plan.logical.join.JoinConfig; @@ -38,6 +39,7 @@ import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan; import org.elasticsearch.xpack.esql.plan.physical.TopNExec; import org.elasticsearch.xpack.esql.plan.physical.UnaryExec; +import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec; import java.util.ArrayList; import java.util.List; @@ -173,6 +175,18 @@ private PhysicalPlan mapUnary(UnaryPlan unary) { return new TopNExec(topN.source(), mappedChild, topN.order(), topN.limit(), null); } + if (unary instanceof Rerank rerank) { + mappedChild = addExchangeForFragment(rerank, mappedChild); + return new RerankExec( + rerank.source(), + mappedChild, + rerank.inferenceId(), + rerank.queryText(), + rerank.rerankFields(), + rerank.scoreAttribute() + ); + } + // // Pipeline operators // @@ -230,7 +244,7 @@ private PhysicalPlan mapMerge(Merge merge) { } public static boolean isPipelineBreaker(LogicalPlan p) { - return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy; + return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy || p instanceof Rerank; } private PhysicalPlan addExchangeForFragment(LogicalPlan logical, PhysicalPlan child) { From 05e0d455d58f0c5c63439e634fc296f91983ba2c Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Fri, 21 Mar 2025 14:57:49 +0000 Subject: [PATCH 52/75] [CI] Auto commit changes from spotless --- .../xpack/esql/inference/XContentRowEncoder.java | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java index 0c03bca650015..f6c625752110a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java @@ -14,7 +14,6 @@ import org.elasticsearch.compute.data.BytesRefBlock; import org.elasticsearch.compute.data.Page; import org.elasticsearch.compute.operator.DriverContext; -import org.elasticsearch.compute.operator.EvalOperator; import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator; import org.elasticsearch.core.Releasables; import org.elasticsearch.xcontent.ToXContent; @@ -31,7 +30,6 @@ import java.util.Map; import java.util.stream.Collectors; - /** * Encodes rows into an XContent format (JSON,YAML,...) for further processing. * Extracted columns can be specified using {@link ExpressionEvaluator} @@ -141,10 +139,7 @@ private ColumnInfoImpl[] columnsInfo() { } private ExpressionEvaluator[] fieldsValueEvaluators(DriverContext context) { - return fieldsEvaluatorFactories.values() - .stream() - .map(factory -> factory.get(context)) - .toArray(ExpressionEvaluator[]::new); + return fieldsEvaluatorFactories.values().stream().map(factory -> factory.get(context)).toArray(ExpressionEvaluator[]::new); } } } From 4cdfdfa4a84433fb22ed9c607245afdea31c261b Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 25 Mar 2025 10:03:38 +0100 Subject: [PATCH 53/75] Regen grammar after merge. --- .../xpack/esql/parser/EsqlBaseLexer.interp | 26 +- .../xpack/esql/parser/EsqlBaseLexer.java | 2412 +++++++++-------- .../xpack/esql/parser/EsqlBaseParser.interp | 18 +- .../xpack/esql/parser/EsqlBaseParser.java | 2202 ++++++++------- 4 files changed, 2426 insertions(+), 2232 deletions(-) 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 61c1a2aa863ea..2935c3bb76cfa 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 @@ -15,6 +15,7 @@ null 'stats' 'where' null +null 'from' null null @@ -34,8 +35,6 @@ null null null null -'on' -'with' null null null @@ -55,6 +54,9 @@ null null null 'by' +'on' +'with' +'as' 'and' 'asc' '=' @@ -128,7 +130,6 @@ null null null null -'as' null null null @@ -154,6 +155,7 @@ SORT STATS WHERE DEV_INLINESTATS +DEV_RERANK FROM DEV_METRICS DEV_FORK @@ -173,8 +175,6 @@ UNKNOWN_CMD CHANGE_POINT_LINE_COMMENT CHANGE_POINT_MULTILINE_COMMENT CHANGE_POINT_WS -ON -WITH ENRICH_POLICY_NAME ENRICH_LINE_COMMENT ENRICH_MULTILINE_COMMENT @@ -194,6 +194,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -267,7 +270,6 @@ ID_PATTERN PROJECT_LINE_COMMENT PROJECT_MULTILINE_COMMENT PROJECT_WS -AS RENAME_LINE_COMMENT RENAME_MULTILINE_COMMENT RENAME_WS @@ -292,6 +294,7 @@ SORT STATS WHERE DEV_INLINESTATS +DEV_RERANK FROM DEV_METRICS DEV_FORK @@ -320,8 +323,8 @@ CHANGE_POINT_MULTILINE_COMMENT CHANGE_POINT_WS ENRICH_PIPE ENRICH_OPENING_BRACKET -ON -WITH +ENRICH_ON +ENRICH_WITH ENRICH_POLICY_NAME_BODY ENRICH_POLICY_NAME ENRICH_MODE_UNQUOTED_VALUE @@ -368,6 +371,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -499,7 +505,7 @@ RENAME_PARAM RENAME_NAMED_OR_POSITIONAL_PARAM RENAME_DOUBLE_PARAMS RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS -AS +RENAME_AS RENAME_ID_PATTERN RENAME_LINE_COMMENT RENAME_MULTILINE_COMMENT @@ -533,4 +539,4 @@ RENAME_MODE SHOW_MODE atn: -[4, 0, 136, 1743, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 485, 8, 0, 10, 0, 12, 0, 488, 9, 0, 1, 0, 3, 0, 491, 8, 0, 1, 0, 3, 0, 494, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 503, 8, 1, 10, 1, 12, 1, 506, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 514, 8, 2, 11, 2, 12, 2, 515, 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, 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, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 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, 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, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 4, 30, 765, 8, 30, 11, 30, 12, 30, 766, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 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, 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, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 4, 46, 837, 8, 46, 11, 46, 12, 46, 838, 1, 46, 1, 46, 3, 46, 843, 8, 46, 1, 46, 4, 46, 846, 8, 46, 11, 46, 12, 46, 847, 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, 50, 1, 50, 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, 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, 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, 64, 1, 64, 1, 64, 1, 64, 1, 65, 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, 4, 67, 940, 8, 67, 11, 67, 12, 67, 941, 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, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 993, 8, 81, 1, 81, 4, 81, 996, 8, 81, 11, 81, 12, 81, 997, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 1007, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1014, 8, 86, 1, 87, 1, 87, 1, 87, 5, 87, 1019, 8, 87, 10, 87, 12, 87, 1022, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 5, 87, 1030, 8, 87, 10, 87, 12, 87, 1033, 9, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1040, 8, 87, 1, 87, 3, 87, 1043, 8, 87, 3, 87, 1045, 8, 87, 1, 88, 4, 88, 1048, 8, 88, 11, 88, 12, 88, 1049, 1, 89, 4, 89, 1053, 8, 89, 11, 89, 12, 89, 1054, 1, 89, 1, 89, 5, 89, 1059, 8, 89, 10, 89, 12, 89, 1062, 9, 89, 1, 89, 1, 89, 4, 89, 1066, 8, 89, 11, 89, 12, 89, 1067, 1, 89, 4, 89, 1071, 8, 89, 11, 89, 12, 89, 1072, 1, 89, 1, 89, 5, 89, 1077, 8, 89, 10, 89, 12, 89, 1080, 9, 89, 3, 89, 1082, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 4, 89, 1088, 8, 89, 11, 89, 12, 89, 1089, 1, 89, 1, 89, 3, 89, 1094, 8, 89, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 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, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 3, 128, 1226, 8, 128, 1, 128, 5, 128, 1229, 8, 128, 10, 128, 12, 128, 1232, 9, 128, 1, 128, 1, 128, 4, 128, 1236, 8, 128, 11, 128, 12, 128, 1237, 3, 128, 1240, 8, 128, 1, 129, 1, 129, 1, 129, 3, 129, 1245, 8, 129, 1, 129, 5, 129, 1248, 8, 129, 10, 129, 12, 129, 1251, 9, 129, 1, 129, 1, 129, 4, 129, 1255, 8, 129, 11, 129, 12, 129, 1256, 3, 129, 1259, 8, 129, 1, 130, 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, 5, 134, 1283, 8, 134, 10, 134, 12, 134, 1286, 9, 134, 1, 134, 1, 134, 3, 134, 1290, 8, 134, 1, 134, 4, 134, 1293, 8, 134, 11, 134, 12, 134, 1294, 3, 134, 1297, 8, 134, 1, 135, 1, 135, 4, 135, 1301, 8, 135, 11, 135, 12, 135, 1302, 1, 135, 1, 135, 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, 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, 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, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 3, 148, 1363, 8, 148, 1, 149, 4, 149, 1366, 8, 149, 11, 149, 12, 149, 1367, 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, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 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, 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, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 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, 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, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 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, 201, 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, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 1627, 8, 208, 1, 209, 1, 209, 3, 209, 1631, 8, 209, 1, 209, 5, 209, 1634, 8, 209, 10, 209, 12, 209, 1637, 9, 209, 1, 209, 1, 209, 3, 209, 1641, 8, 209, 1, 209, 4, 209, 1644, 8, 209, 11, 209, 12, 209, 1645, 3, 209, 1648, 8, 209, 1, 210, 1, 210, 4, 210, 1652, 8, 210, 11, 210, 12, 210, 1653, 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, 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, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 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, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 2, 504, 1031, 0, 232, 16, 1, 18, 2, 20, 3, 22, 4, 24, 5, 26, 6, 28, 7, 30, 8, 32, 9, 34, 10, 36, 11, 38, 12, 40, 13, 42, 14, 44, 15, 46, 16, 48, 17, 50, 18, 52, 19, 54, 20, 56, 21, 58, 22, 60, 23, 62, 24, 64, 25, 66, 26, 68, 27, 70, 28, 72, 29, 74, 30, 76, 31, 78, 0, 80, 0, 82, 0, 84, 0, 86, 0, 88, 0, 90, 0, 92, 32, 94, 33, 96, 34, 98, 0, 100, 0, 102, 35, 104, 36, 106, 0, 108, 37, 110, 0, 112, 38, 114, 39, 116, 40, 118, 0, 120, 0, 122, 0, 124, 0, 126, 0, 128, 0, 130, 0, 132, 0, 134, 0, 136, 0, 138, 0, 140, 41, 142, 42, 144, 43, 146, 0, 148, 0, 150, 44, 152, 45, 154, 46, 156, 47, 158, 0, 160, 0, 162, 48, 164, 49, 166, 50, 168, 51, 170, 0, 172, 0, 174, 0, 176, 0, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 52, 192, 53, 194, 54, 196, 55, 198, 56, 200, 57, 202, 58, 204, 59, 206, 60, 208, 61, 210, 62, 212, 63, 214, 64, 216, 65, 218, 66, 220, 67, 222, 68, 224, 69, 226, 70, 228, 71, 230, 72, 232, 73, 234, 74, 236, 75, 238, 76, 240, 77, 242, 78, 244, 79, 246, 80, 248, 81, 250, 82, 252, 83, 254, 84, 256, 85, 258, 86, 260, 87, 262, 88, 264, 89, 266, 90, 268, 91, 270, 0, 272, 92, 274, 93, 276, 94, 278, 95, 280, 96, 282, 97, 284, 98, 286, 0, 288, 99, 290, 100, 292, 101, 294, 102, 296, 0, 298, 0, 300, 0, 302, 0, 304, 0, 306, 0, 308, 0, 310, 103, 312, 0, 314, 104, 316, 0, 318, 0, 320, 105, 322, 106, 324, 107, 326, 0, 328, 0, 330, 108, 332, 109, 334, 110, 336, 0, 338, 111, 340, 0, 342, 0, 344, 112, 346, 0, 348, 0, 350, 0, 352, 0, 354, 0, 356, 113, 358, 114, 360, 115, 362, 0, 364, 0, 366, 0, 368, 0, 370, 0, 372, 0, 374, 0, 376, 116, 378, 117, 380, 118, 382, 0, 384, 0, 386, 0, 388, 0, 390, 119, 392, 120, 394, 121, 396, 0, 398, 0, 400, 0, 402, 0, 404, 0, 406, 0, 408, 0, 410, 0, 412, 122, 414, 123, 416, 124, 418, 0, 420, 0, 422, 0, 424, 0, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 125, 438, 126, 440, 127, 442, 128, 444, 0, 446, 0, 448, 0, 450, 0, 452, 0, 454, 0, 456, 0, 458, 0, 460, 129, 462, 0, 464, 130, 466, 131, 468, 132, 470, 0, 472, 133, 474, 134, 476, 135, 478, 136, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 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, 1774, 0, 16, 1, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 1, 78, 1, 0, 0, 0, 1, 80, 1, 0, 0, 0, 1, 82, 1, 0, 0, 0, 1, 84, 1, 0, 0, 0, 1, 86, 1, 0, 0, 0, 1, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 2, 98, 1, 0, 0, 0, 2, 100, 1, 0, 0, 0, 2, 102, 1, 0, 0, 0, 2, 104, 1, 0, 0, 0, 2, 108, 1, 0, 0, 0, 2, 110, 1, 0, 0, 0, 2, 112, 1, 0, 0, 0, 2, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 3, 118, 1, 0, 0, 0, 3, 120, 1, 0, 0, 0, 3, 122, 1, 0, 0, 0, 3, 124, 1, 0, 0, 0, 3, 126, 1, 0, 0, 0, 3, 128, 1, 0, 0, 0, 3, 130, 1, 0, 0, 0, 3, 132, 1, 0, 0, 0, 3, 134, 1, 0, 0, 0, 3, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 4, 146, 1, 0, 0, 0, 4, 148, 1, 0, 0, 0, 4, 150, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 4, 156, 1, 0, 0, 0, 5, 158, 1, 0, 0, 0, 5, 160, 1, 0, 0, 0, 5, 162, 1, 0, 0, 0, 5, 164, 1, 0, 0, 0, 5, 166, 1, 0, 0, 0, 6, 168, 1, 0, 0, 0, 6, 190, 1, 0, 0, 0, 6, 192, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 6, 200, 1, 0, 0, 0, 6, 202, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 6, 210, 1, 0, 0, 0, 6, 212, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 6, 220, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 6, 224, 1, 0, 0, 0, 6, 226, 1, 0, 0, 0, 6, 228, 1, 0, 0, 0, 6, 230, 1, 0, 0, 0, 6, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 6, 236, 1, 0, 0, 0, 6, 238, 1, 0, 0, 0, 6, 240, 1, 0, 0, 0, 6, 242, 1, 0, 0, 0, 6, 244, 1, 0, 0, 0, 6, 246, 1, 0, 0, 0, 6, 248, 1, 0, 0, 0, 6, 250, 1, 0, 0, 0, 6, 252, 1, 0, 0, 0, 6, 254, 1, 0, 0, 0, 6, 256, 1, 0, 0, 0, 6, 258, 1, 0, 0, 0, 6, 260, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 6, 264, 1, 0, 0, 0, 6, 266, 1, 0, 0, 0, 6, 268, 1, 0, 0, 0, 6, 270, 1, 0, 0, 0, 6, 272, 1, 0, 0, 0, 6, 274, 1, 0, 0, 0, 6, 276, 1, 0, 0, 0, 6, 278, 1, 0, 0, 0, 6, 280, 1, 0, 0, 0, 6, 282, 1, 0, 0, 0, 6, 284, 1, 0, 0, 0, 6, 288, 1, 0, 0, 0, 6, 290, 1, 0, 0, 0, 6, 292, 1, 0, 0, 0, 6, 294, 1, 0, 0, 0, 7, 296, 1, 0, 0, 0, 7, 298, 1, 0, 0, 0, 7, 300, 1, 0, 0, 0, 7, 302, 1, 0, 0, 0, 7, 304, 1, 0, 0, 0, 7, 306, 1, 0, 0, 0, 7, 308, 1, 0, 0, 0, 7, 310, 1, 0, 0, 0, 7, 314, 1, 0, 0, 0, 7, 316, 1, 0, 0, 0, 7, 318, 1, 0, 0, 0, 7, 320, 1, 0, 0, 0, 7, 322, 1, 0, 0, 0, 7, 324, 1, 0, 0, 0, 8, 326, 1, 0, 0, 0, 8, 328, 1, 0, 0, 0, 8, 330, 1, 0, 0, 0, 8, 332, 1, 0, 0, 0, 8, 334, 1, 0, 0, 0, 9, 336, 1, 0, 0, 0, 9, 338, 1, 0, 0, 0, 9, 340, 1, 0, 0, 0, 9, 342, 1, 0, 0, 0, 9, 344, 1, 0, 0, 0, 9, 346, 1, 0, 0, 0, 9, 348, 1, 0, 0, 0, 9, 350, 1, 0, 0, 0, 9, 352, 1, 0, 0, 0, 9, 354, 1, 0, 0, 0, 9, 356, 1, 0, 0, 0, 9, 358, 1, 0, 0, 0, 9, 360, 1, 0, 0, 0, 10, 362, 1, 0, 0, 0, 10, 364, 1, 0, 0, 0, 10, 366, 1, 0, 0, 0, 10, 368, 1, 0, 0, 0, 10, 370, 1, 0, 0, 0, 10, 372, 1, 0, 0, 0, 10, 374, 1, 0, 0, 0, 10, 376, 1, 0, 0, 0, 10, 378, 1, 0, 0, 0, 10, 380, 1, 0, 0, 0, 11, 382, 1, 0, 0, 0, 11, 384, 1, 0, 0, 0, 11, 386, 1, 0, 0, 0, 11, 388, 1, 0, 0, 0, 11, 390, 1, 0, 0, 0, 11, 392, 1, 0, 0, 0, 11, 394, 1, 0, 0, 0, 12, 396, 1, 0, 0, 0, 12, 398, 1, 0, 0, 0, 12, 400, 1, 0, 0, 0, 12, 402, 1, 0, 0, 0, 12, 404, 1, 0, 0, 0, 12, 406, 1, 0, 0, 0, 12, 408, 1, 0, 0, 0, 12, 410, 1, 0, 0, 0, 12, 412, 1, 0, 0, 0, 12, 414, 1, 0, 0, 0, 12, 416, 1, 0, 0, 0, 13, 418, 1, 0, 0, 0, 13, 420, 1, 0, 0, 0, 13, 422, 1, 0, 0, 0, 13, 424, 1, 0, 0, 0, 13, 426, 1, 0, 0, 0, 13, 428, 1, 0, 0, 0, 13, 430, 1, 0, 0, 0, 13, 436, 1, 0, 0, 0, 13, 438, 1, 0, 0, 0, 13, 440, 1, 0, 0, 0, 13, 442, 1, 0, 0, 0, 14, 444, 1, 0, 0, 0, 14, 446, 1, 0, 0, 0, 14, 448, 1, 0, 0, 0, 14, 450, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 14, 454, 1, 0, 0, 0, 14, 456, 1, 0, 0, 0, 14, 458, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 14, 462, 1, 0, 0, 0, 14, 464, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 14, 468, 1, 0, 0, 0, 15, 470, 1, 0, 0, 0, 15, 472, 1, 0, 0, 0, 15, 474, 1, 0, 0, 0, 15, 476, 1, 0, 0, 0, 15, 478, 1, 0, 0, 0, 16, 480, 1, 0, 0, 0, 18, 497, 1, 0, 0, 0, 20, 513, 1, 0, 0, 0, 22, 519, 1, 0, 0, 0, 24, 535, 1, 0, 0, 0, 26, 544, 1, 0, 0, 0, 28, 554, 1, 0, 0, 0, 30, 564, 1, 0, 0, 0, 32, 571, 1, 0, 0, 0, 34, 578, 1, 0, 0, 0, 36, 586, 1, 0, 0, 0, 38, 592, 1, 0, 0, 0, 40, 599, 1, 0, 0, 0, 42, 607, 1, 0, 0, 0, 44, 615, 1, 0, 0, 0, 46, 630, 1, 0, 0, 0, 48, 637, 1, 0, 0, 0, 50, 648, 1, 0, 0, 0, 52, 656, 1, 0, 0, 0, 54, 665, 1, 0, 0, 0, 56, 673, 1, 0, 0, 0, 58, 681, 1, 0, 0, 0, 60, 690, 1, 0, 0, 0, 62, 702, 1, 0, 0, 0, 64, 714, 1, 0, 0, 0, 66, 721, 1, 0, 0, 0, 68, 728, 1, 0, 0, 0, 70, 740, 1, 0, 0, 0, 72, 747, 1, 0, 0, 0, 74, 756, 1, 0, 0, 0, 76, 764, 1, 0, 0, 0, 78, 770, 1, 0, 0, 0, 80, 775, 1, 0, 0, 0, 82, 779, 1, 0, 0, 0, 84, 783, 1, 0, 0, 0, 86, 787, 1, 0, 0, 0, 88, 791, 1, 0, 0, 0, 90, 795, 1, 0, 0, 0, 92, 799, 1, 0, 0, 0, 94, 803, 1, 0, 0, 0, 96, 807, 1, 0, 0, 0, 98, 811, 1, 0, 0, 0, 100, 816, 1, 0, 0, 0, 102, 821, 1, 0, 0, 0, 104, 826, 1, 0, 0, 0, 106, 833, 1, 0, 0, 0, 108, 842, 1, 0, 0, 0, 110, 849, 1, 0, 0, 0, 112, 853, 1, 0, 0, 0, 114, 857, 1, 0, 0, 0, 116, 861, 1, 0, 0, 0, 118, 865, 1, 0, 0, 0, 120, 871, 1, 0, 0, 0, 122, 875, 1, 0, 0, 0, 124, 879, 1, 0, 0, 0, 126, 883, 1, 0, 0, 0, 128, 887, 1, 0, 0, 0, 130, 891, 1, 0, 0, 0, 132, 895, 1, 0, 0, 0, 134, 899, 1, 0, 0, 0, 136, 903, 1, 0, 0, 0, 138, 908, 1, 0, 0, 0, 140, 913, 1, 0, 0, 0, 142, 917, 1, 0, 0, 0, 144, 921, 1, 0, 0, 0, 146, 925, 1, 0, 0, 0, 148, 930, 1, 0, 0, 0, 150, 939, 1, 0, 0, 0, 152, 943, 1, 0, 0, 0, 154, 947, 1, 0, 0, 0, 156, 951, 1, 0, 0, 0, 158, 955, 1, 0, 0, 0, 160, 960, 1, 0, 0, 0, 162, 965, 1, 0, 0, 0, 164, 969, 1, 0, 0, 0, 166, 973, 1, 0, 0, 0, 168, 977, 1, 0, 0, 0, 170, 981, 1, 0, 0, 0, 172, 983, 1, 0, 0, 0, 174, 985, 1, 0, 0, 0, 176, 988, 1, 0, 0, 0, 178, 990, 1, 0, 0, 0, 180, 999, 1, 0, 0, 0, 182, 1001, 1, 0, 0, 0, 184, 1006, 1, 0, 0, 0, 186, 1008, 1, 0, 0, 0, 188, 1013, 1, 0, 0, 0, 190, 1044, 1, 0, 0, 0, 192, 1047, 1, 0, 0, 0, 194, 1093, 1, 0, 0, 0, 196, 1095, 1, 0, 0, 0, 198, 1098, 1, 0, 0, 0, 200, 1102, 1, 0, 0, 0, 202, 1106, 1, 0, 0, 0, 204, 1108, 1, 0, 0, 0, 206, 1111, 1, 0, 0, 0, 208, 1113, 1, 0, 0, 0, 210, 1115, 1, 0, 0, 0, 212, 1120, 1, 0, 0, 0, 214, 1122, 1, 0, 0, 0, 216, 1128, 1, 0, 0, 0, 218, 1134, 1, 0, 0, 0, 220, 1137, 1, 0, 0, 0, 222, 1140, 1, 0, 0, 0, 224, 1145, 1, 0, 0, 0, 226, 1150, 1, 0, 0, 0, 228, 1154, 1, 0, 0, 0, 230, 1159, 1, 0, 0, 0, 232, 1165, 1, 0, 0, 0, 234, 1168, 1, 0, 0, 0, 236, 1170, 1, 0, 0, 0, 238, 1176, 1, 0, 0, 0, 240, 1181, 1, 0, 0, 0, 242, 1184, 1, 0, 0, 0, 244, 1187, 1, 0, 0, 0, 246, 1190, 1, 0, 0, 0, 248, 1192, 1, 0, 0, 0, 250, 1195, 1, 0, 0, 0, 252, 1197, 1, 0, 0, 0, 254, 1200, 1, 0, 0, 0, 256, 1202, 1, 0, 0, 0, 258, 1204, 1, 0, 0, 0, 260, 1206, 1, 0, 0, 0, 262, 1208, 1, 0, 0, 0, 264, 1210, 1, 0, 0, 0, 266, 1212, 1, 0, 0, 0, 268, 1214, 1, 0, 0, 0, 270, 1218, 1, 0, 0, 0, 272, 1239, 1, 0, 0, 0, 274, 1258, 1, 0, 0, 0, 276, 1260, 1, 0, 0, 0, 278, 1265, 1, 0, 0, 0, 280, 1270, 1, 0, 0, 0, 282, 1275, 1, 0, 0, 0, 284, 1296, 1, 0, 0, 0, 286, 1298, 1, 0, 0, 0, 288, 1306, 1, 0, 0, 0, 290, 1308, 1, 0, 0, 0, 292, 1312, 1, 0, 0, 0, 294, 1316, 1, 0, 0, 0, 296, 1320, 1, 0, 0, 0, 298, 1325, 1, 0, 0, 0, 300, 1329, 1, 0, 0, 0, 302, 1333, 1, 0, 0, 0, 304, 1337, 1, 0, 0, 0, 306, 1342, 1, 0, 0, 0, 308, 1346, 1, 0, 0, 0, 310, 1350, 1, 0, 0, 0, 312, 1362, 1, 0, 0, 0, 314, 1365, 1, 0, 0, 0, 316, 1369, 1, 0, 0, 0, 318, 1373, 1, 0, 0, 0, 320, 1377, 1, 0, 0, 0, 322, 1381, 1, 0, 0, 0, 324, 1385, 1, 0, 0, 0, 326, 1389, 1, 0, 0, 0, 328, 1394, 1, 0, 0, 0, 330, 1399, 1, 0, 0, 0, 332, 1403, 1, 0, 0, 0, 334, 1407, 1, 0, 0, 0, 336, 1411, 1, 0, 0, 0, 338, 1416, 1, 0, 0, 0, 340, 1421, 1, 0, 0, 0, 342, 1425, 1, 0, 0, 0, 344, 1431, 1, 0, 0, 0, 346, 1440, 1, 0, 0, 0, 348, 1444, 1, 0, 0, 0, 350, 1448, 1, 0, 0, 0, 352, 1452, 1, 0, 0, 0, 354, 1456, 1, 0, 0, 0, 356, 1460, 1, 0, 0, 0, 358, 1464, 1, 0, 0, 0, 360, 1468, 1, 0, 0, 0, 362, 1472, 1, 0, 0, 0, 364, 1477, 1, 0, 0, 0, 366, 1481, 1, 0, 0, 0, 368, 1485, 1, 0, 0, 0, 370, 1489, 1, 0, 0, 0, 372, 1494, 1, 0, 0, 0, 374, 1498, 1, 0, 0, 0, 376, 1502, 1, 0, 0, 0, 378, 1506, 1, 0, 0, 0, 380, 1510, 1, 0, 0, 0, 382, 1514, 1, 0, 0, 0, 384, 1520, 1, 0, 0, 0, 386, 1524, 1, 0, 0, 0, 388, 1528, 1, 0, 0, 0, 390, 1532, 1, 0, 0, 0, 392, 1536, 1, 0, 0, 0, 394, 1540, 1, 0, 0, 0, 396, 1544, 1, 0, 0, 0, 398, 1549, 1, 0, 0, 0, 400, 1553, 1, 0, 0, 0, 402, 1557, 1, 0, 0, 0, 404, 1561, 1, 0, 0, 0, 406, 1566, 1, 0, 0, 0, 408, 1571, 1, 0, 0, 0, 410, 1575, 1, 0, 0, 0, 412, 1579, 1, 0, 0, 0, 414, 1583, 1, 0, 0, 0, 416, 1587, 1, 0, 0, 0, 418, 1591, 1, 0, 0, 0, 420, 1596, 1, 0, 0, 0, 422, 1600, 1, 0, 0, 0, 424, 1604, 1, 0, 0, 0, 426, 1608, 1, 0, 0, 0, 428, 1612, 1, 0, 0, 0, 430, 1617, 1, 0, 0, 0, 432, 1626, 1, 0, 0, 0, 434, 1647, 1, 0, 0, 0, 436, 1651, 1, 0, 0, 0, 438, 1655, 1, 0, 0, 0, 440, 1659, 1, 0, 0, 0, 442, 1663, 1, 0, 0, 0, 444, 1667, 1, 0, 0, 0, 446, 1672, 1, 0, 0, 0, 448, 1676, 1, 0, 0, 0, 450, 1680, 1, 0, 0, 0, 452, 1684, 1, 0, 0, 0, 454, 1688, 1, 0, 0, 0, 456, 1692, 1, 0, 0, 0, 458, 1697, 1, 0, 0, 0, 460, 1702, 1, 0, 0, 0, 462, 1705, 1, 0, 0, 0, 464, 1709, 1, 0, 0, 0, 466, 1713, 1, 0, 0, 0, 468, 1717, 1, 0, 0, 0, 470, 1721, 1, 0, 0, 0, 472, 1726, 1, 0, 0, 0, 474, 1731, 1, 0, 0, 0, 476, 1735, 1, 0, 0, 0, 478, 1739, 1, 0, 0, 0, 480, 481, 5, 47, 0, 0, 481, 482, 5, 47, 0, 0, 482, 486, 1, 0, 0, 0, 483, 485, 8, 0, 0, 0, 484, 483, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 490, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 491, 5, 13, 0, 0, 490, 489, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 1, 0, 0, 0, 492, 494, 5, 10, 0, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 496, 6, 0, 0, 0, 496, 17, 1, 0, 0, 0, 497, 498, 5, 47, 0, 0, 498, 499, 5, 42, 0, 0, 499, 504, 1, 0, 0, 0, 500, 503, 3, 18, 1, 0, 501, 503, 9, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 501, 1, 0, 0, 0, 503, 506, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 507, 508, 5, 42, 0, 0, 508, 509, 5, 47, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 6, 1, 0, 0, 511, 19, 1, 0, 0, 0, 512, 514, 7, 1, 0, 0, 513, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 6, 2, 0, 0, 518, 21, 1, 0, 0, 0, 519, 520, 4, 3, 0, 0, 520, 521, 7, 2, 0, 0, 521, 522, 7, 3, 0, 0, 522, 523, 7, 4, 0, 0, 523, 524, 7, 5, 0, 0, 524, 525, 7, 6, 0, 0, 525, 526, 7, 7, 0, 0, 526, 527, 5, 95, 0, 0, 527, 528, 7, 8, 0, 0, 528, 529, 7, 9, 0, 0, 529, 530, 7, 10, 0, 0, 530, 531, 7, 5, 0, 0, 531, 532, 7, 11, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 6, 3, 1, 0, 534, 23, 1, 0, 0, 0, 535, 536, 7, 7, 0, 0, 536, 537, 7, 5, 0, 0, 537, 538, 7, 12, 0, 0, 538, 539, 7, 10, 0, 0, 539, 540, 7, 2, 0, 0, 540, 541, 7, 3, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 6, 4, 2, 0, 543, 25, 1, 0, 0, 0, 544, 545, 7, 7, 0, 0, 545, 546, 7, 13, 0, 0, 546, 547, 7, 8, 0, 0, 547, 548, 7, 14, 0, 0, 548, 549, 7, 4, 0, 0, 549, 550, 7, 10, 0, 0, 550, 551, 7, 5, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 6, 5, 3, 0, 553, 27, 1, 0, 0, 0, 554, 555, 7, 15, 0, 0, 555, 556, 7, 10, 0, 0, 556, 557, 7, 16, 0, 0, 557, 558, 7, 16, 0, 0, 558, 559, 7, 7, 0, 0, 559, 560, 7, 2, 0, 0, 560, 561, 7, 11, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 6, 6, 4, 0, 563, 29, 1, 0, 0, 0, 564, 565, 7, 7, 0, 0, 565, 566, 7, 17, 0, 0, 566, 567, 7, 4, 0, 0, 567, 568, 7, 14, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 6, 7, 4, 0, 570, 31, 1, 0, 0, 0, 571, 572, 7, 6, 0, 0, 572, 573, 7, 12, 0, 0, 573, 574, 7, 9, 0, 0, 574, 575, 7, 18, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 6, 8, 4, 0, 577, 33, 1, 0, 0, 0, 578, 579, 7, 14, 0, 0, 579, 580, 7, 10, 0, 0, 580, 581, 7, 19, 0, 0, 581, 582, 7, 10, 0, 0, 582, 583, 7, 11, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 6, 9, 4, 0, 585, 35, 1, 0, 0, 0, 586, 587, 7, 12, 0, 0, 587, 588, 7, 9, 0, 0, 588, 589, 7, 20, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 6, 10, 4, 0, 591, 37, 1, 0, 0, 0, 592, 593, 7, 16, 0, 0, 593, 594, 7, 9, 0, 0, 594, 595, 7, 12, 0, 0, 595, 596, 7, 11, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 6, 11, 4, 0, 598, 39, 1, 0, 0, 0, 599, 600, 7, 16, 0, 0, 600, 601, 7, 11, 0, 0, 601, 602, 7, 4, 0, 0, 602, 603, 7, 11, 0, 0, 603, 604, 7, 16, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 6, 12, 4, 0, 606, 41, 1, 0, 0, 0, 607, 608, 7, 20, 0, 0, 608, 609, 7, 3, 0, 0, 609, 610, 7, 7, 0, 0, 610, 611, 7, 12, 0, 0, 611, 612, 7, 7, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 6, 13, 4, 0, 614, 43, 1, 0, 0, 0, 615, 616, 4, 14, 1, 0, 616, 617, 7, 10, 0, 0, 617, 618, 7, 5, 0, 0, 618, 619, 7, 14, 0, 0, 619, 620, 7, 10, 0, 0, 620, 621, 7, 5, 0, 0, 621, 622, 7, 7, 0, 0, 622, 623, 7, 16, 0, 0, 623, 624, 7, 11, 0, 0, 624, 625, 7, 4, 0, 0, 625, 626, 7, 11, 0, 0, 626, 627, 7, 16, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 6, 14, 4, 0, 629, 45, 1, 0, 0, 0, 630, 631, 7, 21, 0, 0, 631, 632, 7, 12, 0, 0, 632, 633, 7, 9, 0, 0, 633, 634, 7, 19, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 6, 15, 5, 0, 636, 47, 1, 0, 0, 0, 637, 638, 4, 16, 2, 0, 638, 639, 7, 19, 0, 0, 639, 640, 7, 7, 0, 0, 640, 641, 7, 11, 0, 0, 641, 642, 7, 12, 0, 0, 642, 643, 7, 10, 0, 0, 643, 644, 7, 2, 0, 0, 644, 645, 7, 16, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 6, 16, 5, 0, 647, 49, 1, 0, 0, 0, 648, 649, 4, 17, 3, 0, 649, 650, 7, 21, 0, 0, 650, 651, 7, 9, 0, 0, 651, 652, 7, 12, 0, 0, 652, 653, 7, 18, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 6, 17, 6, 0, 655, 51, 1, 0, 0, 0, 656, 657, 7, 14, 0, 0, 657, 658, 7, 9, 0, 0, 658, 659, 7, 9, 0, 0, 659, 660, 7, 18, 0, 0, 660, 661, 7, 22, 0, 0, 661, 662, 7, 8, 0, 0, 662, 663, 1, 0, 0, 0, 663, 664, 6, 18, 7, 0, 664, 53, 1, 0, 0, 0, 665, 666, 4, 19, 4, 0, 666, 667, 7, 21, 0, 0, 667, 668, 7, 22, 0, 0, 668, 669, 7, 14, 0, 0, 669, 670, 7, 14, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 6, 19, 7, 0, 672, 55, 1, 0, 0, 0, 673, 674, 4, 20, 5, 0, 674, 675, 7, 14, 0, 0, 675, 676, 7, 7, 0, 0, 676, 677, 7, 21, 0, 0, 677, 678, 7, 11, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 6, 20, 7, 0, 680, 57, 1, 0, 0, 0, 681, 682, 4, 21, 6, 0, 682, 683, 7, 12, 0, 0, 683, 684, 7, 10, 0, 0, 684, 685, 7, 6, 0, 0, 685, 686, 7, 3, 0, 0, 686, 687, 7, 11, 0, 0, 687, 688, 1, 0, 0, 0, 688, 689, 6, 21, 7, 0, 689, 59, 1, 0, 0, 0, 690, 691, 4, 22, 7, 0, 691, 692, 7, 14, 0, 0, 692, 693, 7, 9, 0, 0, 693, 694, 7, 9, 0, 0, 694, 695, 7, 18, 0, 0, 695, 696, 7, 22, 0, 0, 696, 697, 7, 8, 0, 0, 697, 698, 5, 95, 0, 0, 698, 699, 5, 128020, 0, 0, 699, 700, 1, 0, 0, 0, 700, 701, 6, 22, 8, 0, 701, 61, 1, 0, 0, 0, 702, 703, 7, 19, 0, 0, 703, 704, 7, 17, 0, 0, 704, 705, 5, 95, 0, 0, 705, 706, 7, 7, 0, 0, 706, 707, 7, 13, 0, 0, 707, 708, 7, 8, 0, 0, 708, 709, 7, 4, 0, 0, 709, 710, 7, 5, 0, 0, 710, 711, 7, 15, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 6, 23, 9, 0, 713, 63, 1, 0, 0, 0, 714, 715, 7, 15, 0, 0, 715, 716, 7, 12, 0, 0, 716, 717, 7, 9, 0, 0, 717, 718, 7, 8, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 6, 24, 10, 0, 720, 65, 1, 0, 0, 0, 721, 722, 7, 18, 0, 0, 722, 723, 7, 7, 0, 0, 723, 724, 7, 7, 0, 0, 724, 725, 7, 8, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 6, 25, 10, 0, 727, 67, 1, 0, 0, 0, 728, 729, 4, 26, 8, 0, 729, 730, 7, 10, 0, 0, 730, 731, 7, 5, 0, 0, 731, 732, 7, 16, 0, 0, 732, 733, 7, 10, 0, 0, 733, 734, 7, 16, 0, 0, 734, 735, 7, 11, 0, 0, 735, 736, 5, 95, 0, 0, 736, 737, 5, 128020, 0, 0, 737, 738, 1, 0, 0, 0, 738, 739, 6, 26, 10, 0, 739, 69, 1, 0, 0, 0, 740, 741, 4, 27, 9, 0, 741, 742, 7, 12, 0, 0, 742, 743, 7, 12, 0, 0, 743, 744, 7, 21, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 6, 27, 4, 0, 746, 71, 1, 0, 0, 0, 747, 748, 7, 12, 0, 0, 748, 749, 7, 7, 0, 0, 749, 750, 7, 5, 0, 0, 750, 751, 7, 4, 0, 0, 751, 752, 7, 19, 0, 0, 752, 753, 7, 7, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 6, 28, 11, 0, 755, 73, 1, 0, 0, 0, 756, 757, 7, 16, 0, 0, 757, 758, 7, 3, 0, 0, 758, 759, 7, 9, 0, 0, 759, 760, 7, 20, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 6, 29, 12, 0, 762, 75, 1, 0, 0, 0, 763, 765, 8, 23, 0, 0, 764, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 6, 30, 4, 0, 769, 77, 1, 0, 0, 0, 770, 771, 3, 168, 76, 0, 771, 772, 1, 0, 0, 0, 772, 773, 6, 31, 13, 0, 773, 774, 6, 31, 14, 0, 774, 79, 1, 0, 0, 0, 775, 776, 3, 102, 43, 0, 776, 777, 1, 0, 0, 0, 777, 778, 6, 32, 15, 0, 778, 81, 1, 0, 0, 0, 779, 780, 3, 460, 222, 0, 780, 781, 1, 0, 0, 0, 781, 782, 6, 33, 16, 0, 782, 83, 1, 0, 0, 0, 783, 784, 3, 212, 98, 0, 784, 785, 1, 0, 0, 0, 785, 786, 6, 34, 17, 0, 786, 85, 1, 0, 0, 0, 787, 788, 3, 208, 96, 0, 788, 789, 1, 0, 0, 0, 789, 790, 6, 35, 18, 0, 790, 87, 1, 0, 0, 0, 791, 792, 3, 288, 136, 0, 792, 793, 1, 0, 0, 0, 793, 794, 6, 36, 19, 0, 794, 89, 1, 0, 0, 0, 795, 796, 3, 284, 134, 0, 796, 797, 1, 0, 0, 0, 797, 798, 6, 37, 20, 0, 798, 91, 1, 0, 0, 0, 799, 800, 3, 16, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 6, 38, 0, 0, 802, 93, 1, 0, 0, 0, 803, 804, 3, 18, 1, 0, 804, 805, 1, 0, 0, 0, 805, 806, 6, 39, 0, 0, 806, 95, 1, 0, 0, 0, 807, 808, 3, 20, 2, 0, 808, 809, 1, 0, 0, 0, 809, 810, 6, 40, 0, 0, 810, 97, 1, 0, 0, 0, 811, 812, 3, 168, 76, 0, 812, 813, 1, 0, 0, 0, 813, 814, 6, 41, 13, 0, 814, 815, 6, 41, 14, 0, 815, 99, 1, 0, 0, 0, 816, 817, 3, 276, 130, 0, 817, 818, 1, 0, 0, 0, 818, 819, 6, 42, 21, 0, 819, 820, 6, 42, 22, 0, 820, 101, 1, 0, 0, 0, 821, 822, 7, 9, 0, 0, 822, 823, 7, 5, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 6, 43, 23, 0, 825, 103, 1, 0, 0, 0, 826, 827, 7, 20, 0, 0, 827, 828, 7, 10, 0, 0, 828, 829, 7, 11, 0, 0, 829, 830, 7, 3, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 6, 44, 23, 0, 832, 105, 1, 0, 0, 0, 833, 834, 8, 24, 0, 0, 834, 107, 1, 0, 0, 0, 835, 837, 3, 106, 45, 0, 836, 835, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 3, 206, 95, 0, 841, 843, 1, 0, 0, 0, 842, 836, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 846, 3, 106, 45, 0, 845, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 109, 1, 0, 0, 0, 849, 850, 3, 108, 46, 0, 850, 851, 1, 0, 0, 0, 851, 852, 6, 47, 24, 0, 852, 111, 1, 0, 0, 0, 853, 854, 3, 16, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 6, 48, 0, 0, 856, 113, 1, 0, 0, 0, 857, 858, 3, 18, 1, 0, 858, 859, 1, 0, 0, 0, 859, 860, 6, 49, 0, 0, 860, 115, 1, 0, 0, 0, 861, 862, 3, 20, 2, 0, 862, 863, 1, 0, 0, 0, 863, 864, 6, 50, 0, 0, 864, 117, 1, 0, 0, 0, 865, 866, 3, 168, 76, 0, 866, 867, 1, 0, 0, 0, 867, 868, 6, 51, 13, 0, 868, 869, 6, 51, 14, 0, 869, 870, 6, 51, 14, 0, 870, 119, 1, 0, 0, 0, 871, 872, 3, 202, 93, 0, 872, 873, 1, 0, 0, 0, 873, 874, 6, 52, 25, 0, 874, 121, 1, 0, 0, 0, 875, 876, 3, 208, 96, 0, 876, 877, 1, 0, 0, 0, 877, 878, 6, 53, 18, 0, 878, 123, 1, 0, 0, 0, 879, 880, 3, 212, 98, 0, 880, 881, 1, 0, 0, 0, 881, 882, 6, 54, 17, 0, 882, 125, 1, 0, 0, 0, 883, 884, 3, 104, 44, 0, 884, 885, 1, 0, 0, 0, 885, 886, 6, 55, 26, 0, 886, 127, 1, 0, 0, 0, 887, 888, 3, 436, 210, 0, 888, 889, 1, 0, 0, 0, 889, 890, 6, 56, 27, 0, 890, 129, 1, 0, 0, 0, 891, 892, 3, 288, 136, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 57, 19, 0, 894, 131, 1, 0, 0, 0, 895, 896, 3, 234, 109, 0, 896, 897, 1, 0, 0, 0, 897, 898, 6, 58, 28, 0, 898, 133, 1, 0, 0, 0, 899, 900, 3, 272, 128, 0, 900, 901, 1, 0, 0, 0, 901, 902, 6, 59, 29, 0, 902, 135, 1, 0, 0, 0, 903, 904, 4, 60, 10, 0, 904, 905, 3, 268, 126, 0, 905, 906, 1, 0, 0, 0, 906, 907, 6, 60, 30, 0, 907, 137, 1, 0, 0, 0, 908, 909, 4, 61, 11, 0, 909, 910, 3, 274, 129, 0, 910, 911, 1, 0, 0, 0, 911, 912, 6, 61, 31, 0, 912, 139, 1, 0, 0, 0, 913, 914, 3, 16, 0, 0, 914, 915, 1, 0, 0, 0, 915, 916, 6, 62, 0, 0, 916, 141, 1, 0, 0, 0, 917, 918, 3, 18, 1, 0, 918, 919, 1, 0, 0, 0, 919, 920, 6, 63, 0, 0, 920, 143, 1, 0, 0, 0, 921, 922, 3, 20, 2, 0, 922, 923, 1, 0, 0, 0, 923, 924, 6, 64, 0, 0, 924, 145, 1, 0, 0, 0, 925, 926, 3, 278, 131, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 65, 32, 0, 928, 929, 6, 65, 14, 0, 929, 147, 1, 0, 0, 0, 930, 931, 3, 206, 95, 0, 931, 932, 1, 0, 0, 0, 932, 933, 6, 66, 33, 0, 933, 149, 1, 0, 0, 0, 934, 940, 3, 180, 82, 0, 935, 940, 3, 170, 77, 0, 936, 940, 3, 212, 98, 0, 937, 940, 3, 172, 78, 0, 938, 940, 3, 186, 85, 0, 939, 934, 1, 0, 0, 0, 939, 935, 1, 0, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 151, 1, 0, 0, 0, 943, 944, 3, 16, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 6, 68, 0, 0, 946, 153, 1, 0, 0, 0, 947, 948, 3, 18, 1, 0, 948, 949, 1, 0, 0, 0, 949, 950, 6, 69, 0, 0, 950, 155, 1, 0, 0, 0, 951, 952, 3, 20, 2, 0, 952, 953, 1, 0, 0, 0, 953, 954, 6, 70, 0, 0, 954, 157, 1, 0, 0, 0, 955, 956, 3, 276, 130, 0, 956, 957, 1, 0, 0, 0, 957, 958, 6, 71, 21, 0, 958, 959, 6, 71, 34, 0, 959, 159, 1, 0, 0, 0, 960, 961, 3, 168, 76, 0, 961, 962, 1, 0, 0, 0, 962, 963, 6, 72, 13, 0, 963, 964, 6, 72, 14, 0, 964, 161, 1, 0, 0, 0, 965, 966, 3, 20, 2, 0, 966, 967, 1, 0, 0, 0, 967, 968, 6, 73, 0, 0, 968, 163, 1, 0, 0, 0, 969, 970, 3, 16, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 6, 74, 0, 0, 972, 165, 1, 0, 0, 0, 973, 974, 3, 18, 1, 0, 974, 975, 1, 0, 0, 0, 975, 976, 6, 75, 0, 0, 976, 167, 1, 0, 0, 0, 977, 978, 5, 124, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 6, 76, 14, 0, 980, 169, 1, 0, 0, 0, 981, 982, 7, 25, 0, 0, 982, 171, 1, 0, 0, 0, 983, 984, 7, 26, 0, 0, 984, 173, 1, 0, 0, 0, 985, 986, 5, 92, 0, 0, 986, 987, 7, 27, 0, 0, 987, 175, 1, 0, 0, 0, 988, 989, 8, 28, 0, 0, 989, 177, 1, 0, 0, 0, 990, 992, 7, 7, 0, 0, 991, 993, 7, 29, 0, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 995, 1, 0, 0, 0, 994, 996, 3, 170, 77, 0, 995, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 995, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 179, 1, 0, 0, 0, 999, 1000, 5, 64, 0, 0, 1000, 181, 1, 0, 0, 0, 1001, 1002, 5, 96, 0, 0, 1002, 183, 1, 0, 0, 0, 1003, 1007, 8, 30, 0, 0, 1004, 1005, 5, 96, 0, 0, 1005, 1007, 5, 96, 0, 0, 1006, 1003, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1007, 185, 1, 0, 0, 0, 1008, 1009, 5, 95, 0, 0, 1009, 187, 1, 0, 0, 0, 1010, 1014, 3, 172, 78, 0, 1011, 1014, 3, 170, 77, 0, 1012, 1014, 3, 186, 85, 0, 1013, 1010, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1012, 1, 0, 0, 0, 1014, 189, 1, 0, 0, 0, 1015, 1020, 5, 34, 0, 0, 1016, 1019, 3, 174, 79, 0, 1017, 1019, 3, 176, 80, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1017, 1, 0, 0, 0, 1019, 1022, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1023, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 1045, 5, 34, 0, 0, 1024, 1025, 5, 34, 0, 0, 1025, 1026, 5, 34, 0, 0, 1026, 1027, 5, 34, 0, 0, 1027, 1031, 1, 0, 0, 0, 1028, 1030, 8, 0, 0, 0, 1029, 1028, 1, 0, 0, 0, 1030, 1033, 1, 0, 0, 0, 1031, 1032, 1, 0, 0, 0, 1031, 1029, 1, 0, 0, 0, 1032, 1034, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1034, 1035, 5, 34, 0, 0, 1035, 1036, 5, 34, 0, 0, 1036, 1037, 5, 34, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1040, 5, 34, 0, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1042, 1, 0, 0, 0, 1041, 1043, 5, 34, 0, 0, 1042, 1041, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1045, 1, 0, 0, 0, 1044, 1015, 1, 0, 0, 0, 1044, 1024, 1, 0, 0, 0, 1045, 191, 1, 0, 0, 0, 1046, 1048, 3, 170, 77, 0, 1047, 1046, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 193, 1, 0, 0, 0, 1051, 1053, 3, 170, 77, 0, 1052, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1060, 3, 212, 98, 0, 1057, 1059, 3, 170, 77, 0, 1058, 1057, 1, 0, 0, 0, 1059, 1062, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1094, 1, 0, 0, 0, 1062, 1060, 1, 0, 0, 0, 1063, 1065, 3, 212, 98, 0, 1064, 1066, 3, 170, 77, 0, 1065, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1094, 1, 0, 0, 0, 1069, 1071, 3, 170, 77, 0, 1070, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1070, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1081, 1, 0, 0, 0, 1074, 1078, 3, 212, 98, 0, 1075, 1077, 3, 170, 77, 0, 1076, 1075, 1, 0, 0, 0, 1077, 1080, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1082, 1, 0, 0, 0, 1080, 1078, 1, 0, 0, 0, 1081, 1074, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 3, 178, 81, 0, 1084, 1094, 1, 0, 0, 0, 1085, 1087, 3, 212, 98, 0, 1086, 1088, 3, 170, 77, 0, 1087, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 3, 178, 81, 0, 1092, 1094, 1, 0, 0, 0, 1093, 1052, 1, 0, 0, 0, 1093, 1063, 1, 0, 0, 0, 1093, 1070, 1, 0, 0, 0, 1093, 1085, 1, 0, 0, 0, 1094, 195, 1, 0, 0, 0, 1095, 1096, 7, 31, 0, 0, 1096, 1097, 7, 32, 0, 0, 1097, 197, 1, 0, 0, 0, 1098, 1099, 7, 4, 0, 0, 1099, 1100, 7, 5, 0, 0, 1100, 1101, 7, 15, 0, 0, 1101, 199, 1, 0, 0, 0, 1102, 1103, 7, 4, 0, 0, 1103, 1104, 7, 16, 0, 0, 1104, 1105, 7, 2, 0, 0, 1105, 201, 1, 0, 0, 0, 1106, 1107, 5, 61, 0, 0, 1107, 203, 1, 0, 0, 0, 1108, 1109, 5, 58, 0, 0, 1109, 1110, 5, 58, 0, 0, 1110, 205, 1, 0, 0, 0, 1111, 1112, 5, 58, 0, 0, 1112, 207, 1, 0, 0, 0, 1113, 1114, 5, 44, 0, 0, 1114, 209, 1, 0, 0, 0, 1115, 1116, 7, 15, 0, 0, 1116, 1117, 7, 7, 0, 0, 1117, 1118, 7, 16, 0, 0, 1118, 1119, 7, 2, 0, 0, 1119, 211, 1, 0, 0, 0, 1120, 1121, 5, 46, 0, 0, 1121, 213, 1, 0, 0, 0, 1122, 1123, 7, 21, 0, 0, 1123, 1124, 7, 4, 0, 0, 1124, 1125, 7, 14, 0, 0, 1125, 1126, 7, 16, 0, 0, 1126, 1127, 7, 7, 0, 0, 1127, 215, 1, 0, 0, 0, 1128, 1129, 7, 21, 0, 0, 1129, 1130, 7, 10, 0, 0, 1130, 1131, 7, 12, 0, 0, 1131, 1132, 7, 16, 0, 0, 1132, 1133, 7, 11, 0, 0, 1133, 217, 1, 0, 0, 0, 1134, 1135, 7, 10, 0, 0, 1135, 1136, 7, 5, 0, 0, 1136, 219, 1, 0, 0, 0, 1137, 1138, 7, 10, 0, 0, 1138, 1139, 7, 16, 0, 0, 1139, 221, 1, 0, 0, 0, 1140, 1141, 7, 14, 0, 0, 1141, 1142, 7, 4, 0, 0, 1142, 1143, 7, 16, 0, 0, 1143, 1144, 7, 11, 0, 0, 1144, 223, 1, 0, 0, 0, 1145, 1146, 7, 14, 0, 0, 1146, 1147, 7, 10, 0, 0, 1147, 1148, 7, 18, 0, 0, 1148, 1149, 7, 7, 0, 0, 1149, 225, 1, 0, 0, 0, 1150, 1151, 7, 5, 0, 0, 1151, 1152, 7, 9, 0, 0, 1152, 1153, 7, 11, 0, 0, 1153, 227, 1, 0, 0, 0, 1154, 1155, 7, 5, 0, 0, 1155, 1156, 7, 22, 0, 0, 1156, 1157, 7, 14, 0, 0, 1157, 1158, 7, 14, 0, 0, 1158, 229, 1, 0, 0, 0, 1159, 1160, 7, 5, 0, 0, 1160, 1161, 7, 22, 0, 0, 1161, 1162, 7, 14, 0, 0, 1162, 1163, 7, 14, 0, 0, 1163, 1164, 7, 16, 0, 0, 1164, 231, 1, 0, 0, 0, 1165, 1166, 7, 9, 0, 0, 1166, 1167, 7, 12, 0, 0, 1167, 233, 1, 0, 0, 0, 1168, 1169, 5, 63, 0, 0, 1169, 235, 1, 0, 0, 0, 1170, 1171, 7, 12, 0, 0, 1171, 1172, 7, 14, 0, 0, 1172, 1173, 7, 10, 0, 0, 1173, 1174, 7, 18, 0, 0, 1174, 1175, 7, 7, 0, 0, 1175, 237, 1, 0, 0, 0, 1176, 1177, 7, 11, 0, 0, 1177, 1178, 7, 12, 0, 0, 1178, 1179, 7, 22, 0, 0, 1179, 1180, 7, 7, 0, 0, 1180, 239, 1, 0, 0, 0, 1181, 1182, 5, 61, 0, 0, 1182, 1183, 5, 61, 0, 0, 1183, 241, 1, 0, 0, 0, 1184, 1185, 5, 61, 0, 0, 1185, 1186, 5, 126, 0, 0, 1186, 243, 1, 0, 0, 0, 1187, 1188, 5, 33, 0, 0, 1188, 1189, 5, 61, 0, 0, 1189, 245, 1, 0, 0, 0, 1190, 1191, 5, 60, 0, 0, 1191, 247, 1, 0, 0, 0, 1192, 1193, 5, 60, 0, 0, 1193, 1194, 5, 61, 0, 0, 1194, 249, 1, 0, 0, 0, 1195, 1196, 5, 62, 0, 0, 1196, 251, 1, 0, 0, 0, 1197, 1198, 5, 62, 0, 0, 1198, 1199, 5, 61, 0, 0, 1199, 253, 1, 0, 0, 0, 1200, 1201, 5, 43, 0, 0, 1201, 255, 1, 0, 0, 0, 1202, 1203, 5, 45, 0, 0, 1203, 257, 1, 0, 0, 0, 1204, 1205, 5, 42, 0, 0, 1205, 259, 1, 0, 0, 0, 1206, 1207, 5, 47, 0, 0, 1207, 261, 1, 0, 0, 0, 1208, 1209, 5, 37, 0, 0, 1209, 263, 1, 0, 0, 0, 1210, 1211, 5, 123, 0, 0, 1211, 265, 1, 0, 0, 0, 1212, 1213, 5, 125, 0, 0, 1213, 267, 1, 0, 0, 0, 1214, 1215, 4, 126, 12, 0, 1215, 1216, 5, 63, 0, 0, 1216, 1217, 5, 63, 0, 0, 1217, 269, 1, 0, 0, 0, 1218, 1219, 3, 42, 13, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 6, 127, 35, 0, 1221, 271, 1, 0, 0, 0, 1222, 1225, 3, 234, 109, 0, 1223, 1226, 3, 172, 78, 0, 1224, 1226, 3, 186, 85, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1224, 1, 0, 0, 0, 1226, 1230, 1, 0, 0, 0, 1227, 1229, 3, 188, 86, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1232, 1, 0, 0, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1240, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1233, 1235, 3, 234, 109, 0, 1234, 1236, 3, 170, 77, 0, 1235, 1234, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1222, 1, 0, 0, 0, 1239, 1233, 1, 0, 0, 0, 1240, 273, 1, 0, 0, 0, 1241, 1244, 3, 268, 126, 0, 1242, 1245, 3, 172, 78, 0, 1243, 1245, 3, 186, 85, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1243, 1, 0, 0, 0, 1245, 1249, 1, 0, 0, 0, 1246, 1248, 3, 188, 86, 0, 1247, 1246, 1, 0, 0, 0, 1248, 1251, 1, 0, 0, 0, 1249, 1247, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1259, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1252, 1254, 3, 268, 126, 0, 1253, 1255, 3, 170, 77, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1256, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1259, 1, 0, 0, 0, 1258, 1241, 1, 0, 0, 0, 1258, 1252, 1, 0, 0, 0, 1259, 275, 1, 0, 0, 0, 1260, 1261, 5, 91, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 6, 130, 4, 0, 1263, 1264, 6, 130, 4, 0, 1264, 277, 1, 0, 0, 0, 1265, 1266, 5, 93, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 6, 131, 14, 0, 1268, 1269, 6, 131, 14, 0, 1269, 279, 1, 0, 0, 0, 1270, 1271, 5, 40, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1273, 6, 132, 4, 0, 1273, 1274, 6, 132, 4, 0, 1274, 281, 1, 0, 0, 0, 1275, 1276, 5, 41, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 6, 133, 14, 0, 1278, 1279, 6, 133, 14, 0, 1279, 283, 1, 0, 0, 0, 1280, 1284, 3, 172, 78, 0, 1281, 1283, 3, 188, 86, 0, 1282, 1281, 1, 0, 0, 0, 1283, 1286, 1, 0, 0, 0, 1284, 1282, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1297, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1287, 1290, 3, 186, 85, 0, 1288, 1290, 3, 180, 82, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1288, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 188, 86, 0, 1292, 1291, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1292, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1280, 1, 0, 0, 0, 1296, 1289, 1, 0, 0, 0, 1297, 285, 1, 0, 0, 0, 1298, 1300, 3, 182, 83, 0, 1299, 1301, 3, 184, 84, 0, 1300, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 3, 182, 83, 0, 1305, 287, 1, 0, 0, 0, 1306, 1307, 3, 286, 135, 0, 1307, 289, 1, 0, 0, 0, 1308, 1309, 3, 16, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1311, 6, 137, 0, 0, 1311, 291, 1, 0, 0, 0, 1312, 1313, 3, 18, 1, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1315, 6, 138, 0, 0, 1315, 293, 1, 0, 0, 0, 1316, 1317, 3, 20, 2, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1319, 6, 139, 0, 0, 1319, 295, 1, 0, 0, 0, 1320, 1321, 3, 168, 76, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 6, 140, 13, 0, 1323, 1324, 6, 140, 14, 0, 1324, 297, 1, 0, 0, 0, 1325, 1326, 3, 276, 130, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 6, 141, 21, 0, 1328, 299, 1, 0, 0, 0, 1329, 1330, 3, 278, 131, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 6, 142, 32, 0, 1332, 301, 1, 0, 0, 0, 1333, 1334, 3, 206, 95, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 6, 143, 33, 0, 1336, 303, 1, 0, 0, 0, 1337, 1338, 4, 144, 13, 0, 1338, 1339, 3, 204, 94, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 6, 144, 36, 0, 1341, 305, 1, 0, 0, 0, 1342, 1343, 3, 208, 96, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1345, 6, 145, 18, 0, 1345, 307, 1, 0, 0, 0, 1346, 1347, 3, 202, 93, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 146, 25, 0, 1349, 309, 1, 0, 0, 0, 1350, 1351, 7, 19, 0, 0, 1351, 1352, 7, 7, 0, 0, 1352, 1353, 7, 11, 0, 0, 1353, 1354, 7, 4, 0, 0, 1354, 1355, 7, 15, 0, 0, 1355, 1356, 7, 4, 0, 0, 1356, 1357, 7, 11, 0, 0, 1357, 1358, 7, 4, 0, 0, 1358, 311, 1, 0, 0, 0, 1359, 1363, 8, 33, 0, 0, 1360, 1361, 5, 47, 0, 0, 1361, 1363, 8, 34, 0, 0, 1362, 1359, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1363, 313, 1, 0, 0, 0, 1364, 1366, 3, 312, 148, 0, 1365, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1365, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 315, 1, 0, 0, 0, 1369, 1370, 3, 314, 149, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 6, 150, 37, 0, 1372, 317, 1, 0, 0, 0, 1373, 1374, 3, 190, 87, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 151, 38, 0, 1376, 319, 1, 0, 0, 0, 1377, 1378, 3, 16, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 6, 152, 0, 0, 1380, 321, 1, 0, 0, 0, 1381, 1382, 3, 18, 1, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 6, 153, 0, 0, 1384, 323, 1, 0, 0, 0, 1385, 1386, 3, 20, 2, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 6, 154, 0, 0, 1388, 325, 1, 0, 0, 0, 1389, 1390, 3, 280, 132, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 6, 155, 39, 0, 1392, 1393, 6, 155, 34, 0, 1393, 327, 1, 0, 0, 0, 1394, 1395, 3, 168, 76, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1397, 6, 156, 13, 0, 1397, 1398, 6, 156, 14, 0, 1398, 329, 1, 0, 0, 0, 1399, 1400, 3, 20, 2, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 6, 157, 0, 0, 1402, 331, 1, 0, 0, 0, 1403, 1404, 3, 16, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 6, 158, 0, 0, 1406, 333, 1, 0, 0, 0, 1407, 1408, 3, 18, 1, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1410, 6, 159, 0, 0, 1410, 335, 1, 0, 0, 0, 1411, 1412, 3, 168, 76, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 6, 160, 13, 0, 1414, 1415, 6, 160, 14, 0, 1415, 337, 1, 0, 0, 0, 1416, 1417, 7, 35, 0, 0, 1417, 1418, 7, 9, 0, 0, 1418, 1419, 7, 10, 0, 0, 1419, 1420, 7, 5, 0, 0, 1420, 339, 1, 0, 0, 0, 1421, 1422, 3, 460, 222, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 162, 16, 0, 1424, 341, 1, 0, 0, 0, 1425, 1426, 3, 102, 43, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 6, 163, 15, 0, 1428, 1429, 6, 163, 14, 0, 1429, 1430, 6, 163, 4, 0, 1430, 343, 1, 0, 0, 0, 1431, 1432, 7, 22, 0, 0, 1432, 1433, 7, 16, 0, 0, 1433, 1434, 7, 10, 0, 0, 1434, 1435, 7, 5, 0, 0, 1435, 1436, 7, 6, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 164, 14, 0, 1438, 1439, 6, 164, 4, 0, 1439, 345, 1, 0, 0, 0, 1440, 1441, 3, 314, 149, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 6, 165, 37, 0, 1443, 347, 1, 0, 0, 0, 1444, 1445, 3, 190, 87, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 6, 166, 38, 0, 1447, 349, 1, 0, 0, 0, 1448, 1449, 3, 206, 95, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 167, 33, 0, 1451, 351, 1, 0, 0, 0, 1452, 1453, 3, 284, 134, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 168, 20, 0, 1455, 353, 1, 0, 0, 0, 1456, 1457, 3, 288, 136, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 169, 19, 0, 1459, 355, 1, 0, 0, 0, 1460, 1461, 3, 16, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 170, 0, 0, 1463, 357, 1, 0, 0, 0, 1464, 1465, 3, 18, 1, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 6, 171, 0, 0, 1467, 359, 1, 0, 0, 0, 1468, 1469, 3, 20, 2, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 6, 172, 0, 0, 1471, 361, 1, 0, 0, 0, 1472, 1473, 3, 168, 76, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 6, 173, 13, 0, 1475, 1476, 6, 173, 14, 0, 1476, 363, 1, 0, 0, 0, 1477, 1478, 3, 206, 95, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 6, 174, 33, 0, 1480, 365, 1, 0, 0, 0, 1481, 1482, 3, 208, 96, 0, 1482, 1483, 1, 0, 0, 0, 1483, 1484, 6, 175, 18, 0, 1484, 367, 1, 0, 0, 0, 1485, 1486, 3, 212, 98, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 6, 176, 17, 0, 1488, 369, 1, 0, 0, 0, 1489, 1490, 3, 102, 43, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 6, 177, 15, 0, 1492, 1493, 6, 177, 40, 0, 1493, 371, 1, 0, 0, 0, 1494, 1495, 3, 314, 149, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1497, 6, 178, 37, 0, 1497, 373, 1, 0, 0, 0, 1498, 1499, 3, 190, 87, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 6, 179, 38, 0, 1501, 375, 1, 0, 0, 0, 1502, 1503, 3, 16, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1505, 6, 180, 0, 0, 1505, 377, 1, 0, 0, 0, 1506, 1507, 3, 18, 1, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 181, 0, 0, 1509, 379, 1, 0, 0, 0, 1510, 1511, 3, 20, 2, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 6, 182, 0, 0, 1513, 381, 1, 0, 0, 0, 1514, 1515, 3, 168, 76, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 6, 183, 13, 0, 1517, 1518, 6, 183, 14, 0, 1518, 1519, 6, 183, 14, 0, 1519, 383, 1, 0, 0, 0, 1520, 1521, 3, 208, 96, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 6, 184, 18, 0, 1523, 385, 1, 0, 0, 0, 1524, 1525, 3, 212, 98, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1527, 6, 185, 17, 0, 1527, 387, 1, 0, 0, 0, 1528, 1529, 3, 436, 210, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1531, 6, 186, 27, 0, 1531, 389, 1, 0, 0, 0, 1532, 1533, 3, 16, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 6, 187, 0, 0, 1535, 391, 1, 0, 0, 0, 1536, 1537, 3, 18, 1, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 6, 188, 0, 0, 1539, 393, 1, 0, 0, 0, 1540, 1541, 3, 20, 2, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 6, 189, 0, 0, 1543, 395, 1, 0, 0, 0, 1544, 1545, 3, 168, 76, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 6, 190, 13, 0, 1547, 1548, 6, 190, 14, 0, 1548, 397, 1, 0, 0, 0, 1549, 1550, 3, 212, 98, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1552, 6, 191, 17, 0, 1552, 399, 1, 0, 0, 0, 1553, 1554, 3, 234, 109, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 192, 28, 0, 1556, 401, 1, 0, 0, 0, 1557, 1558, 3, 272, 128, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 193, 29, 0, 1560, 403, 1, 0, 0, 0, 1561, 1562, 4, 194, 14, 0, 1562, 1563, 3, 268, 126, 0, 1563, 1564, 1, 0, 0, 0, 1564, 1565, 6, 194, 30, 0, 1565, 405, 1, 0, 0, 0, 1566, 1567, 4, 195, 15, 0, 1567, 1568, 3, 274, 129, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 6, 195, 31, 0, 1570, 407, 1, 0, 0, 0, 1571, 1572, 3, 288, 136, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 196, 19, 0, 1574, 409, 1, 0, 0, 0, 1575, 1576, 3, 284, 134, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 6, 197, 20, 0, 1578, 411, 1, 0, 0, 0, 1579, 1580, 3, 16, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 6, 198, 0, 0, 1582, 413, 1, 0, 0, 0, 1583, 1584, 3, 18, 1, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 6, 199, 0, 0, 1586, 415, 1, 0, 0, 0, 1587, 1588, 3, 20, 2, 0, 1588, 1589, 1, 0, 0, 0, 1589, 1590, 6, 200, 0, 0, 1590, 417, 1, 0, 0, 0, 1591, 1592, 3, 168, 76, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1594, 6, 201, 13, 0, 1594, 1595, 6, 201, 14, 0, 1595, 419, 1, 0, 0, 0, 1596, 1597, 3, 212, 98, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 6, 202, 17, 0, 1599, 421, 1, 0, 0, 0, 1600, 1601, 3, 208, 96, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 6, 203, 18, 0, 1603, 423, 1, 0, 0, 0, 1604, 1605, 3, 234, 109, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 6, 204, 28, 0, 1607, 425, 1, 0, 0, 0, 1608, 1609, 3, 272, 128, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 6, 205, 29, 0, 1611, 427, 1, 0, 0, 0, 1612, 1613, 4, 206, 16, 0, 1613, 1614, 3, 268, 126, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 6, 206, 30, 0, 1616, 429, 1, 0, 0, 0, 1617, 1618, 4, 207, 17, 0, 1618, 1619, 3, 274, 129, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 6, 207, 31, 0, 1621, 431, 1, 0, 0, 0, 1622, 1627, 3, 172, 78, 0, 1623, 1627, 3, 170, 77, 0, 1624, 1627, 3, 186, 85, 0, 1625, 1627, 3, 258, 121, 0, 1626, 1622, 1, 0, 0, 0, 1626, 1623, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1625, 1, 0, 0, 0, 1627, 433, 1, 0, 0, 0, 1628, 1631, 3, 172, 78, 0, 1629, 1631, 3, 258, 121, 0, 1630, 1628, 1, 0, 0, 0, 1630, 1629, 1, 0, 0, 0, 1631, 1635, 1, 0, 0, 0, 1632, 1634, 3, 432, 208, 0, 1633, 1632, 1, 0, 0, 0, 1634, 1637, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1648, 1, 0, 0, 0, 1637, 1635, 1, 0, 0, 0, 1638, 1641, 3, 186, 85, 0, 1639, 1641, 3, 180, 82, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1639, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1644, 3, 432, 208, 0, 1643, 1642, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1648, 1, 0, 0, 0, 1647, 1630, 1, 0, 0, 0, 1647, 1640, 1, 0, 0, 0, 1648, 435, 1, 0, 0, 0, 1649, 1652, 3, 434, 209, 0, 1650, 1652, 3, 286, 135, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 437, 1, 0, 0, 0, 1655, 1656, 3, 16, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1658, 6, 211, 0, 0, 1658, 439, 1, 0, 0, 0, 1659, 1660, 3, 18, 1, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1662, 6, 212, 0, 0, 1662, 441, 1, 0, 0, 0, 1663, 1664, 3, 20, 2, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 6, 213, 0, 0, 1666, 443, 1, 0, 0, 0, 1667, 1668, 3, 168, 76, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1670, 6, 214, 13, 0, 1670, 1671, 6, 214, 14, 0, 1671, 445, 1, 0, 0, 0, 1672, 1673, 3, 202, 93, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1675, 6, 215, 25, 0, 1675, 447, 1, 0, 0, 0, 1676, 1677, 3, 208, 96, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1679, 6, 216, 18, 0, 1679, 449, 1, 0, 0, 0, 1680, 1681, 3, 212, 98, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683, 6, 217, 17, 0, 1683, 451, 1, 0, 0, 0, 1684, 1685, 3, 234, 109, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1687, 6, 218, 28, 0, 1687, 453, 1, 0, 0, 0, 1688, 1689, 3, 272, 128, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 6, 219, 29, 0, 1691, 455, 1, 0, 0, 0, 1692, 1693, 4, 220, 18, 0, 1693, 1694, 3, 268, 126, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 6, 220, 30, 0, 1696, 457, 1, 0, 0, 0, 1697, 1698, 4, 221, 19, 0, 1698, 1699, 3, 274, 129, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 221, 31, 0, 1701, 459, 1, 0, 0, 0, 1702, 1703, 7, 4, 0, 0, 1703, 1704, 7, 16, 0, 0, 1704, 461, 1, 0, 0, 0, 1705, 1706, 3, 436, 210, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1708, 6, 223, 27, 0, 1708, 463, 1, 0, 0, 0, 1709, 1710, 3, 16, 0, 0, 1710, 1711, 1, 0, 0, 0, 1711, 1712, 6, 224, 0, 0, 1712, 465, 1, 0, 0, 0, 1713, 1714, 3, 18, 1, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 6, 225, 0, 0, 1716, 467, 1, 0, 0, 0, 1717, 1718, 3, 20, 2, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 6, 226, 0, 0, 1720, 469, 1, 0, 0, 0, 1721, 1722, 3, 168, 76, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 6, 227, 13, 0, 1724, 1725, 6, 227, 14, 0, 1725, 471, 1, 0, 0, 0, 1726, 1727, 7, 10, 0, 0, 1727, 1728, 7, 5, 0, 0, 1728, 1729, 7, 21, 0, 0, 1729, 1730, 7, 9, 0, 0, 1730, 473, 1, 0, 0, 0, 1731, 1732, 3, 16, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1734, 6, 229, 0, 0, 1734, 475, 1, 0, 0, 0, 1735, 1736, 3, 18, 1, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 6, 230, 0, 0, 1738, 477, 1, 0, 0, 0, 1739, 1740, 3, 20, 2, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 6, 231, 0, 0, 1742, 479, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 486, 490, 493, 502, 504, 515, 766, 838, 842, 847, 939, 941, 992, 997, 1006, 1013, 1018, 1020, 1031, 1039, 1042, 1044, 1049, 1054, 1060, 1067, 1072, 1078, 1081, 1089, 1093, 1225, 1230, 1237, 1239, 1244, 1249, 1256, 1258, 1284, 1289, 1294, 1296, 1302, 1362, 1367, 1626, 1630, 1635, 1640, 1645, 1647, 1651, 1653, 41, 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, 10, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 7, 51, 0, 4, 0, 0, 7, 35, 0, 7, 129, 0, 7, 63, 0, 7, 61, 0, 7, 99, 0, 7, 98, 0, 7, 94, 0, 5, 4, 0, 5, 3, 0, 7, 37, 0, 7, 58, 0, 7, 36, 0, 7, 125, 0, 7, 74, 0, 7, 92, 0, 7, 91, 0, 7, 93, 0, 7, 95, 0, 7, 60, 0, 5, 0, 0, 7, 14, 0, 7, 59, 0, 7, 104, 0, 7, 52, 0, 7, 96, 0, 5, 11, 0] \ No newline at end of file +[4, 0, 137, 1771, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 493, 8, 0, 10, 0, 12, 0, 496, 9, 0, 1, 0, 3, 0, 499, 8, 0, 1, 0, 3, 0, 502, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 511, 8, 1, 10, 1, 12, 1, 514, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 522, 8, 2, 11, 2, 12, 2, 523, 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, 15, 1, 15, 1, 15, 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, 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, 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, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 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, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 4, 31, 783, 8, 31, 11, 31, 12, 31, 784, 1, 31, 1, 31, 1, 32, 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, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 4, 47, 853, 8, 47, 11, 47, 12, 47, 854, 1, 47, 1, 47, 3, 47, 859, 8, 47, 1, 47, 4, 47, 862, 8, 47, 11, 47, 12, 47, 863, 1, 48, 1, 48, 1, 48, 1, 48, 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, 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, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 956, 8, 68, 11, 68, 12, 68, 957, 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, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1009, 8, 82, 1, 82, 4, 82, 1012, 8, 82, 11, 82, 12, 82, 1013, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1023, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1030, 8, 87, 1, 88, 1, 88, 1, 88, 5, 88, 1035, 8, 88, 10, 88, 12, 88, 1038, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1046, 8, 88, 10, 88, 12, 88, 1049, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1056, 8, 88, 1, 88, 3, 88, 1059, 8, 88, 3, 88, 1061, 8, 88, 1, 89, 4, 89, 1064, 8, 89, 11, 89, 12, 89, 1065, 1, 90, 4, 90, 1069, 8, 90, 11, 90, 12, 90, 1070, 1, 90, 1, 90, 5, 90, 1075, 8, 90, 10, 90, 12, 90, 1078, 9, 90, 1, 90, 1, 90, 4, 90, 1082, 8, 90, 11, 90, 12, 90, 1083, 1, 90, 4, 90, 1087, 8, 90, 11, 90, 12, 90, 1088, 1, 90, 1, 90, 5, 90, 1093, 8, 90, 10, 90, 12, 90, 1096, 9, 90, 3, 90, 1098, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 4, 90, 1104, 8, 90, 11, 90, 12, 90, 1105, 1, 90, 1, 90, 3, 90, 1110, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 3, 132, 1253, 8, 132, 1, 132, 5, 132, 1256, 8, 132, 10, 132, 12, 132, 1259, 9, 132, 1, 132, 1, 132, 4, 132, 1263, 8, 132, 11, 132, 12, 132, 1264, 3, 132, 1267, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1272, 8, 133, 1, 133, 5, 133, 1275, 8, 133, 10, 133, 12, 133, 1278, 9, 133, 1, 133, 1, 133, 4, 133, 1282, 8, 133, 11, 133, 12, 133, 1283, 3, 133, 1286, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 5, 138, 1310, 8, 138, 10, 138, 12, 138, 1313, 9, 138, 1, 138, 1, 138, 3, 138, 1317, 8, 138, 1, 138, 4, 138, 1320, 8, 138, 11, 138, 12, 138, 1321, 3, 138, 1324, 8, 138, 1, 139, 1, 139, 4, 139, 1328, 8, 139, 11, 139, 12, 139, 1329, 1, 139, 1, 139, 1, 140, 1, 140, 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, 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, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 3, 152, 1390, 8, 152, 1, 153, 4, 153, 1393, 8, 153, 11, 153, 12, 153, 1394, 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, 159, 1, 160, 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, 163, 1, 163, 1, 163, 1, 163, 1, 164, 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, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 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, 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, 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, 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, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 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, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 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, 198, 1, 199, 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, 204, 1, 204, 1, 204, 1, 204, 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, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 1654, 8, 212, 1, 213, 1, 213, 3, 213, 1658, 8, 213, 1, 213, 5, 213, 1661, 8, 213, 10, 213, 12, 213, 1664, 9, 213, 1, 213, 1, 213, 3, 213, 1668, 8, 213, 1, 213, 4, 213, 1671, 8, 213, 11, 213, 12, 213, 1672, 3, 213, 1675, 8, 213, 1, 214, 1, 214, 4, 214, 1679, 8, 214, 11, 214, 12, 214, 1680, 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, 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, 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, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 2, 512, 1047, 0, 236, 16, 1, 18, 2, 20, 3, 22, 4, 24, 5, 26, 6, 28, 7, 30, 8, 32, 9, 34, 10, 36, 11, 38, 12, 40, 13, 42, 14, 44, 15, 46, 16, 48, 17, 50, 18, 52, 19, 54, 20, 56, 21, 58, 22, 60, 23, 62, 24, 64, 25, 66, 26, 68, 27, 70, 28, 72, 29, 74, 30, 76, 31, 78, 32, 80, 0, 82, 0, 84, 0, 86, 0, 88, 0, 90, 0, 92, 0, 94, 33, 96, 34, 98, 35, 100, 0, 102, 0, 104, 0, 106, 0, 108, 0, 110, 36, 112, 0, 114, 37, 116, 38, 118, 39, 120, 0, 122, 0, 124, 0, 126, 0, 128, 0, 130, 0, 132, 0, 134, 0, 136, 0, 138, 0, 140, 0, 142, 40, 144, 41, 146, 42, 148, 0, 150, 0, 152, 43, 154, 44, 156, 45, 158, 46, 160, 0, 162, 0, 164, 47, 166, 48, 168, 49, 170, 50, 172, 0, 174, 0, 176, 0, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 51, 194, 52, 196, 53, 198, 54, 200, 55, 202, 56, 204, 57, 206, 58, 208, 59, 210, 60, 212, 61, 214, 62, 216, 63, 218, 64, 220, 65, 222, 66, 224, 67, 226, 68, 228, 69, 230, 70, 232, 71, 234, 72, 236, 73, 238, 74, 240, 75, 242, 76, 244, 77, 246, 78, 248, 79, 250, 80, 252, 81, 254, 82, 256, 83, 258, 84, 260, 85, 262, 86, 264, 87, 266, 88, 268, 89, 270, 90, 272, 91, 274, 92, 276, 93, 278, 0, 280, 94, 282, 95, 284, 96, 286, 97, 288, 98, 290, 99, 292, 100, 294, 0, 296, 101, 298, 102, 300, 103, 302, 104, 304, 0, 306, 0, 308, 0, 310, 0, 312, 0, 314, 0, 316, 0, 318, 105, 320, 0, 322, 106, 324, 0, 326, 0, 328, 107, 330, 108, 332, 109, 334, 0, 336, 0, 338, 110, 340, 111, 342, 112, 344, 0, 346, 113, 348, 0, 350, 0, 352, 114, 354, 0, 356, 0, 358, 0, 360, 0, 362, 0, 364, 115, 366, 116, 368, 117, 370, 0, 372, 0, 374, 0, 376, 0, 378, 0, 380, 0, 382, 0, 384, 118, 386, 119, 388, 120, 390, 0, 392, 0, 394, 0, 396, 0, 398, 121, 400, 122, 402, 123, 404, 0, 406, 0, 408, 0, 410, 0, 412, 0, 414, 0, 416, 0, 418, 0, 420, 124, 422, 125, 424, 126, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 0, 440, 0, 442, 0, 444, 127, 446, 128, 448, 129, 450, 130, 452, 0, 454, 0, 456, 0, 458, 0, 460, 0, 462, 0, 464, 0, 466, 0, 468, 0, 470, 0, 472, 131, 474, 132, 476, 133, 478, 0, 480, 134, 482, 135, 484, 136, 486, 137, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 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, 1802, 0, 16, 1, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 1, 80, 1, 0, 0, 0, 1, 82, 1, 0, 0, 0, 1, 84, 1, 0, 0, 0, 1, 86, 1, 0, 0, 0, 1, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 2, 100, 1, 0, 0, 0, 2, 102, 1, 0, 0, 0, 2, 104, 1, 0, 0, 0, 2, 106, 1, 0, 0, 0, 2, 110, 1, 0, 0, 0, 2, 112, 1, 0, 0, 0, 2, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 3, 120, 1, 0, 0, 0, 3, 122, 1, 0, 0, 0, 3, 124, 1, 0, 0, 0, 3, 126, 1, 0, 0, 0, 3, 128, 1, 0, 0, 0, 3, 130, 1, 0, 0, 0, 3, 132, 1, 0, 0, 0, 3, 134, 1, 0, 0, 0, 3, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 4, 148, 1, 0, 0, 0, 4, 150, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 4, 156, 1, 0, 0, 0, 4, 158, 1, 0, 0, 0, 5, 160, 1, 0, 0, 0, 5, 162, 1, 0, 0, 0, 5, 164, 1, 0, 0, 0, 5, 166, 1, 0, 0, 0, 5, 168, 1, 0, 0, 0, 6, 170, 1, 0, 0, 0, 6, 192, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 6, 200, 1, 0, 0, 0, 6, 202, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 6, 210, 1, 0, 0, 0, 6, 212, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 6, 220, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 6, 224, 1, 0, 0, 0, 6, 226, 1, 0, 0, 0, 6, 228, 1, 0, 0, 0, 6, 230, 1, 0, 0, 0, 6, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 6, 236, 1, 0, 0, 0, 6, 238, 1, 0, 0, 0, 6, 240, 1, 0, 0, 0, 6, 242, 1, 0, 0, 0, 6, 244, 1, 0, 0, 0, 6, 246, 1, 0, 0, 0, 6, 248, 1, 0, 0, 0, 6, 250, 1, 0, 0, 0, 6, 252, 1, 0, 0, 0, 6, 254, 1, 0, 0, 0, 6, 256, 1, 0, 0, 0, 6, 258, 1, 0, 0, 0, 6, 260, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 6, 264, 1, 0, 0, 0, 6, 266, 1, 0, 0, 0, 6, 268, 1, 0, 0, 0, 6, 270, 1, 0, 0, 0, 6, 272, 1, 0, 0, 0, 6, 274, 1, 0, 0, 0, 6, 276, 1, 0, 0, 0, 6, 278, 1, 0, 0, 0, 6, 280, 1, 0, 0, 0, 6, 282, 1, 0, 0, 0, 6, 284, 1, 0, 0, 0, 6, 286, 1, 0, 0, 0, 6, 288, 1, 0, 0, 0, 6, 290, 1, 0, 0, 0, 6, 292, 1, 0, 0, 0, 6, 296, 1, 0, 0, 0, 6, 298, 1, 0, 0, 0, 6, 300, 1, 0, 0, 0, 6, 302, 1, 0, 0, 0, 7, 304, 1, 0, 0, 0, 7, 306, 1, 0, 0, 0, 7, 308, 1, 0, 0, 0, 7, 310, 1, 0, 0, 0, 7, 312, 1, 0, 0, 0, 7, 314, 1, 0, 0, 0, 7, 316, 1, 0, 0, 0, 7, 318, 1, 0, 0, 0, 7, 322, 1, 0, 0, 0, 7, 324, 1, 0, 0, 0, 7, 326, 1, 0, 0, 0, 7, 328, 1, 0, 0, 0, 7, 330, 1, 0, 0, 0, 7, 332, 1, 0, 0, 0, 8, 334, 1, 0, 0, 0, 8, 336, 1, 0, 0, 0, 8, 338, 1, 0, 0, 0, 8, 340, 1, 0, 0, 0, 8, 342, 1, 0, 0, 0, 9, 344, 1, 0, 0, 0, 9, 346, 1, 0, 0, 0, 9, 348, 1, 0, 0, 0, 9, 350, 1, 0, 0, 0, 9, 352, 1, 0, 0, 0, 9, 354, 1, 0, 0, 0, 9, 356, 1, 0, 0, 0, 9, 358, 1, 0, 0, 0, 9, 360, 1, 0, 0, 0, 9, 362, 1, 0, 0, 0, 9, 364, 1, 0, 0, 0, 9, 366, 1, 0, 0, 0, 9, 368, 1, 0, 0, 0, 10, 370, 1, 0, 0, 0, 10, 372, 1, 0, 0, 0, 10, 374, 1, 0, 0, 0, 10, 376, 1, 0, 0, 0, 10, 378, 1, 0, 0, 0, 10, 380, 1, 0, 0, 0, 10, 382, 1, 0, 0, 0, 10, 384, 1, 0, 0, 0, 10, 386, 1, 0, 0, 0, 10, 388, 1, 0, 0, 0, 11, 390, 1, 0, 0, 0, 11, 392, 1, 0, 0, 0, 11, 394, 1, 0, 0, 0, 11, 396, 1, 0, 0, 0, 11, 398, 1, 0, 0, 0, 11, 400, 1, 0, 0, 0, 11, 402, 1, 0, 0, 0, 12, 404, 1, 0, 0, 0, 12, 406, 1, 0, 0, 0, 12, 408, 1, 0, 0, 0, 12, 410, 1, 0, 0, 0, 12, 412, 1, 0, 0, 0, 12, 414, 1, 0, 0, 0, 12, 416, 1, 0, 0, 0, 12, 418, 1, 0, 0, 0, 12, 420, 1, 0, 0, 0, 12, 422, 1, 0, 0, 0, 12, 424, 1, 0, 0, 0, 13, 426, 1, 0, 0, 0, 13, 428, 1, 0, 0, 0, 13, 430, 1, 0, 0, 0, 13, 432, 1, 0, 0, 0, 13, 434, 1, 0, 0, 0, 13, 436, 1, 0, 0, 0, 13, 438, 1, 0, 0, 0, 13, 444, 1, 0, 0, 0, 13, 446, 1, 0, 0, 0, 13, 448, 1, 0, 0, 0, 13, 450, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 14, 454, 1, 0, 0, 0, 14, 456, 1, 0, 0, 0, 14, 458, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 14, 462, 1, 0, 0, 0, 14, 464, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 14, 468, 1, 0, 0, 0, 14, 470, 1, 0, 0, 0, 14, 472, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 15, 478, 1, 0, 0, 0, 15, 480, 1, 0, 0, 0, 15, 482, 1, 0, 0, 0, 15, 484, 1, 0, 0, 0, 15, 486, 1, 0, 0, 0, 16, 488, 1, 0, 0, 0, 18, 505, 1, 0, 0, 0, 20, 521, 1, 0, 0, 0, 22, 527, 1, 0, 0, 0, 24, 543, 1, 0, 0, 0, 26, 552, 1, 0, 0, 0, 28, 562, 1, 0, 0, 0, 30, 572, 1, 0, 0, 0, 32, 579, 1, 0, 0, 0, 34, 586, 1, 0, 0, 0, 36, 594, 1, 0, 0, 0, 38, 600, 1, 0, 0, 0, 40, 607, 1, 0, 0, 0, 42, 615, 1, 0, 0, 0, 44, 623, 1, 0, 0, 0, 46, 638, 1, 0, 0, 0, 48, 648, 1, 0, 0, 0, 50, 655, 1, 0, 0, 0, 52, 666, 1, 0, 0, 0, 54, 674, 1, 0, 0, 0, 56, 683, 1, 0, 0, 0, 58, 691, 1, 0, 0, 0, 60, 699, 1, 0, 0, 0, 62, 708, 1, 0, 0, 0, 64, 720, 1, 0, 0, 0, 66, 732, 1, 0, 0, 0, 68, 739, 1, 0, 0, 0, 70, 746, 1, 0, 0, 0, 72, 758, 1, 0, 0, 0, 74, 765, 1, 0, 0, 0, 76, 774, 1, 0, 0, 0, 78, 782, 1, 0, 0, 0, 80, 788, 1, 0, 0, 0, 82, 793, 1, 0, 0, 0, 84, 797, 1, 0, 0, 0, 86, 801, 1, 0, 0, 0, 88, 805, 1, 0, 0, 0, 90, 809, 1, 0, 0, 0, 92, 813, 1, 0, 0, 0, 94, 817, 1, 0, 0, 0, 96, 821, 1, 0, 0, 0, 98, 825, 1, 0, 0, 0, 100, 829, 1, 0, 0, 0, 102, 834, 1, 0, 0, 0, 104, 839, 1, 0, 0, 0, 106, 844, 1, 0, 0, 0, 108, 849, 1, 0, 0, 0, 110, 858, 1, 0, 0, 0, 112, 865, 1, 0, 0, 0, 114, 869, 1, 0, 0, 0, 116, 873, 1, 0, 0, 0, 118, 877, 1, 0, 0, 0, 120, 881, 1, 0, 0, 0, 122, 887, 1, 0, 0, 0, 124, 891, 1, 0, 0, 0, 126, 895, 1, 0, 0, 0, 128, 899, 1, 0, 0, 0, 130, 903, 1, 0, 0, 0, 132, 907, 1, 0, 0, 0, 134, 911, 1, 0, 0, 0, 136, 915, 1, 0, 0, 0, 138, 919, 1, 0, 0, 0, 140, 924, 1, 0, 0, 0, 142, 929, 1, 0, 0, 0, 144, 933, 1, 0, 0, 0, 146, 937, 1, 0, 0, 0, 148, 941, 1, 0, 0, 0, 150, 946, 1, 0, 0, 0, 152, 955, 1, 0, 0, 0, 154, 959, 1, 0, 0, 0, 156, 963, 1, 0, 0, 0, 158, 967, 1, 0, 0, 0, 160, 971, 1, 0, 0, 0, 162, 976, 1, 0, 0, 0, 164, 981, 1, 0, 0, 0, 166, 985, 1, 0, 0, 0, 168, 989, 1, 0, 0, 0, 170, 993, 1, 0, 0, 0, 172, 997, 1, 0, 0, 0, 174, 999, 1, 0, 0, 0, 176, 1001, 1, 0, 0, 0, 178, 1004, 1, 0, 0, 0, 180, 1006, 1, 0, 0, 0, 182, 1015, 1, 0, 0, 0, 184, 1017, 1, 0, 0, 0, 186, 1022, 1, 0, 0, 0, 188, 1024, 1, 0, 0, 0, 190, 1029, 1, 0, 0, 0, 192, 1060, 1, 0, 0, 0, 194, 1063, 1, 0, 0, 0, 196, 1109, 1, 0, 0, 0, 198, 1111, 1, 0, 0, 0, 200, 1114, 1, 0, 0, 0, 202, 1117, 1, 0, 0, 0, 204, 1122, 1, 0, 0, 0, 206, 1125, 1, 0, 0, 0, 208, 1129, 1, 0, 0, 0, 210, 1133, 1, 0, 0, 0, 212, 1135, 1, 0, 0, 0, 214, 1138, 1, 0, 0, 0, 216, 1140, 1, 0, 0, 0, 218, 1142, 1, 0, 0, 0, 220, 1147, 1, 0, 0, 0, 222, 1149, 1, 0, 0, 0, 224, 1155, 1, 0, 0, 0, 226, 1161, 1, 0, 0, 0, 228, 1164, 1, 0, 0, 0, 230, 1167, 1, 0, 0, 0, 232, 1172, 1, 0, 0, 0, 234, 1177, 1, 0, 0, 0, 236, 1181, 1, 0, 0, 0, 238, 1186, 1, 0, 0, 0, 240, 1192, 1, 0, 0, 0, 242, 1195, 1, 0, 0, 0, 244, 1197, 1, 0, 0, 0, 246, 1203, 1, 0, 0, 0, 248, 1208, 1, 0, 0, 0, 250, 1211, 1, 0, 0, 0, 252, 1214, 1, 0, 0, 0, 254, 1217, 1, 0, 0, 0, 256, 1219, 1, 0, 0, 0, 258, 1222, 1, 0, 0, 0, 260, 1224, 1, 0, 0, 0, 262, 1227, 1, 0, 0, 0, 264, 1229, 1, 0, 0, 0, 266, 1231, 1, 0, 0, 0, 268, 1233, 1, 0, 0, 0, 270, 1235, 1, 0, 0, 0, 272, 1237, 1, 0, 0, 0, 274, 1239, 1, 0, 0, 0, 276, 1241, 1, 0, 0, 0, 278, 1245, 1, 0, 0, 0, 280, 1266, 1, 0, 0, 0, 282, 1285, 1, 0, 0, 0, 284, 1287, 1, 0, 0, 0, 286, 1292, 1, 0, 0, 0, 288, 1297, 1, 0, 0, 0, 290, 1302, 1, 0, 0, 0, 292, 1323, 1, 0, 0, 0, 294, 1325, 1, 0, 0, 0, 296, 1333, 1, 0, 0, 0, 298, 1335, 1, 0, 0, 0, 300, 1339, 1, 0, 0, 0, 302, 1343, 1, 0, 0, 0, 304, 1347, 1, 0, 0, 0, 306, 1352, 1, 0, 0, 0, 308, 1356, 1, 0, 0, 0, 310, 1360, 1, 0, 0, 0, 312, 1364, 1, 0, 0, 0, 314, 1369, 1, 0, 0, 0, 316, 1373, 1, 0, 0, 0, 318, 1377, 1, 0, 0, 0, 320, 1389, 1, 0, 0, 0, 322, 1392, 1, 0, 0, 0, 324, 1396, 1, 0, 0, 0, 326, 1400, 1, 0, 0, 0, 328, 1404, 1, 0, 0, 0, 330, 1408, 1, 0, 0, 0, 332, 1412, 1, 0, 0, 0, 334, 1416, 1, 0, 0, 0, 336, 1421, 1, 0, 0, 0, 338, 1426, 1, 0, 0, 0, 340, 1430, 1, 0, 0, 0, 342, 1434, 1, 0, 0, 0, 344, 1438, 1, 0, 0, 0, 346, 1443, 1, 0, 0, 0, 348, 1448, 1, 0, 0, 0, 350, 1452, 1, 0, 0, 0, 352, 1458, 1, 0, 0, 0, 354, 1467, 1, 0, 0, 0, 356, 1471, 1, 0, 0, 0, 358, 1475, 1, 0, 0, 0, 360, 1479, 1, 0, 0, 0, 362, 1483, 1, 0, 0, 0, 364, 1487, 1, 0, 0, 0, 366, 1491, 1, 0, 0, 0, 368, 1495, 1, 0, 0, 0, 370, 1499, 1, 0, 0, 0, 372, 1504, 1, 0, 0, 0, 374, 1508, 1, 0, 0, 0, 376, 1512, 1, 0, 0, 0, 378, 1516, 1, 0, 0, 0, 380, 1521, 1, 0, 0, 0, 382, 1525, 1, 0, 0, 0, 384, 1529, 1, 0, 0, 0, 386, 1533, 1, 0, 0, 0, 388, 1537, 1, 0, 0, 0, 390, 1541, 1, 0, 0, 0, 392, 1547, 1, 0, 0, 0, 394, 1551, 1, 0, 0, 0, 396, 1555, 1, 0, 0, 0, 398, 1559, 1, 0, 0, 0, 400, 1563, 1, 0, 0, 0, 402, 1567, 1, 0, 0, 0, 404, 1571, 1, 0, 0, 0, 406, 1576, 1, 0, 0, 0, 408, 1580, 1, 0, 0, 0, 410, 1584, 1, 0, 0, 0, 412, 1588, 1, 0, 0, 0, 414, 1593, 1, 0, 0, 0, 416, 1598, 1, 0, 0, 0, 418, 1602, 1, 0, 0, 0, 420, 1606, 1, 0, 0, 0, 422, 1610, 1, 0, 0, 0, 424, 1614, 1, 0, 0, 0, 426, 1618, 1, 0, 0, 0, 428, 1623, 1, 0, 0, 0, 430, 1627, 1, 0, 0, 0, 432, 1631, 1, 0, 0, 0, 434, 1635, 1, 0, 0, 0, 436, 1639, 1, 0, 0, 0, 438, 1644, 1, 0, 0, 0, 440, 1653, 1, 0, 0, 0, 442, 1674, 1, 0, 0, 0, 444, 1678, 1, 0, 0, 0, 446, 1682, 1, 0, 0, 0, 448, 1686, 1, 0, 0, 0, 450, 1690, 1, 0, 0, 0, 452, 1694, 1, 0, 0, 0, 454, 1699, 1, 0, 0, 0, 456, 1703, 1, 0, 0, 0, 458, 1707, 1, 0, 0, 0, 460, 1711, 1, 0, 0, 0, 462, 1715, 1, 0, 0, 0, 464, 1719, 1, 0, 0, 0, 466, 1724, 1, 0, 0, 0, 468, 1729, 1, 0, 0, 0, 470, 1733, 1, 0, 0, 0, 472, 1737, 1, 0, 0, 0, 474, 1741, 1, 0, 0, 0, 476, 1745, 1, 0, 0, 0, 478, 1749, 1, 0, 0, 0, 480, 1754, 1, 0, 0, 0, 482, 1759, 1, 0, 0, 0, 484, 1763, 1, 0, 0, 0, 486, 1767, 1, 0, 0, 0, 488, 489, 5, 47, 0, 0, 489, 490, 5, 47, 0, 0, 490, 494, 1, 0, 0, 0, 491, 493, 8, 0, 0, 0, 492, 491, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 499, 5, 13, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 5, 10, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 6, 0, 0, 0, 504, 17, 1, 0, 0, 0, 505, 506, 5, 47, 0, 0, 506, 507, 5, 42, 0, 0, 507, 512, 1, 0, 0, 0, 508, 511, 3, 18, 1, 0, 509, 511, 9, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 515, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 42, 0, 0, 516, 517, 5, 47, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 1, 0, 0, 519, 19, 1, 0, 0, 0, 520, 522, 7, 1, 0, 0, 521, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 6, 2, 0, 0, 526, 21, 1, 0, 0, 0, 527, 528, 4, 3, 0, 0, 528, 529, 7, 2, 0, 0, 529, 530, 7, 3, 0, 0, 530, 531, 7, 4, 0, 0, 531, 532, 7, 5, 0, 0, 532, 533, 7, 6, 0, 0, 533, 534, 7, 7, 0, 0, 534, 535, 5, 95, 0, 0, 535, 536, 7, 8, 0, 0, 536, 537, 7, 9, 0, 0, 537, 538, 7, 10, 0, 0, 538, 539, 7, 5, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 6, 3, 1, 0, 542, 23, 1, 0, 0, 0, 543, 544, 7, 7, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 7, 12, 0, 0, 546, 547, 7, 10, 0, 0, 547, 548, 7, 2, 0, 0, 548, 549, 7, 3, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 6, 4, 2, 0, 551, 25, 1, 0, 0, 0, 552, 553, 7, 7, 0, 0, 553, 554, 7, 13, 0, 0, 554, 555, 7, 8, 0, 0, 555, 556, 7, 14, 0, 0, 556, 557, 7, 4, 0, 0, 557, 558, 7, 10, 0, 0, 558, 559, 7, 5, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 6, 5, 3, 0, 561, 27, 1, 0, 0, 0, 562, 563, 7, 15, 0, 0, 563, 564, 7, 10, 0, 0, 564, 565, 7, 16, 0, 0, 565, 566, 7, 16, 0, 0, 566, 567, 7, 7, 0, 0, 567, 568, 7, 2, 0, 0, 568, 569, 7, 11, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 6, 6, 4, 0, 571, 29, 1, 0, 0, 0, 572, 573, 7, 7, 0, 0, 573, 574, 7, 17, 0, 0, 574, 575, 7, 4, 0, 0, 575, 576, 7, 14, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 6, 7, 4, 0, 578, 31, 1, 0, 0, 0, 579, 580, 7, 6, 0, 0, 580, 581, 7, 12, 0, 0, 581, 582, 7, 9, 0, 0, 582, 583, 7, 18, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 6, 8, 4, 0, 585, 33, 1, 0, 0, 0, 586, 587, 7, 14, 0, 0, 587, 588, 7, 10, 0, 0, 588, 589, 7, 19, 0, 0, 589, 590, 7, 10, 0, 0, 590, 591, 7, 11, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 6, 9, 4, 0, 593, 35, 1, 0, 0, 0, 594, 595, 7, 12, 0, 0, 595, 596, 7, 9, 0, 0, 596, 597, 7, 20, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 6, 10, 4, 0, 599, 37, 1, 0, 0, 0, 600, 601, 7, 16, 0, 0, 601, 602, 7, 9, 0, 0, 602, 603, 7, 12, 0, 0, 603, 604, 7, 11, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 6, 11, 4, 0, 606, 39, 1, 0, 0, 0, 607, 608, 7, 16, 0, 0, 608, 609, 7, 11, 0, 0, 609, 610, 7, 4, 0, 0, 610, 611, 7, 11, 0, 0, 611, 612, 7, 16, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 6, 12, 4, 0, 614, 41, 1, 0, 0, 0, 615, 616, 7, 20, 0, 0, 616, 617, 7, 3, 0, 0, 617, 618, 7, 7, 0, 0, 618, 619, 7, 12, 0, 0, 619, 620, 7, 7, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 6, 13, 4, 0, 622, 43, 1, 0, 0, 0, 623, 624, 4, 14, 1, 0, 624, 625, 7, 10, 0, 0, 625, 626, 7, 5, 0, 0, 626, 627, 7, 14, 0, 0, 627, 628, 7, 10, 0, 0, 628, 629, 7, 5, 0, 0, 629, 630, 7, 7, 0, 0, 630, 631, 7, 16, 0, 0, 631, 632, 7, 11, 0, 0, 632, 633, 7, 4, 0, 0, 633, 634, 7, 11, 0, 0, 634, 635, 7, 16, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 6, 14, 4, 0, 637, 45, 1, 0, 0, 0, 638, 639, 4, 15, 2, 0, 639, 640, 7, 12, 0, 0, 640, 641, 7, 7, 0, 0, 641, 642, 7, 12, 0, 0, 642, 643, 7, 4, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 7, 18, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 6, 15, 4, 0, 647, 47, 1, 0, 0, 0, 648, 649, 7, 21, 0, 0, 649, 650, 7, 12, 0, 0, 650, 651, 7, 9, 0, 0, 651, 652, 7, 19, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 6, 16, 5, 0, 654, 49, 1, 0, 0, 0, 655, 656, 4, 17, 3, 0, 656, 657, 7, 19, 0, 0, 657, 658, 7, 7, 0, 0, 658, 659, 7, 11, 0, 0, 659, 660, 7, 12, 0, 0, 660, 661, 7, 10, 0, 0, 661, 662, 7, 2, 0, 0, 662, 663, 7, 16, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 6, 17, 5, 0, 665, 51, 1, 0, 0, 0, 666, 667, 4, 18, 4, 0, 667, 668, 7, 21, 0, 0, 668, 669, 7, 9, 0, 0, 669, 670, 7, 12, 0, 0, 670, 671, 7, 18, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 6, 18, 6, 0, 673, 53, 1, 0, 0, 0, 674, 675, 7, 14, 0, 0, 675, 676, 7, 9, 0, 0, 676, 677, 7, 9, 0, 0, 677, 678, 7, 18, 0, 0, 678, 679, 7, 22, 0, 0, 679, 680, 7, 8, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 6, 19, 7, 0, 682, 55, 1, 0, 0, 0, 683, 684, 4, 20, 5, 0, 684, 685, 7, 21, 0, 0, 685, 686, 7, 22, 0, 0, 686, 687, 7, 14, 0, 0, 687, 688, 7, 14, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 6, 20, 7, 0, 690, 57, 1, 0, 0, 0, 691, 692, 4, 21, 6, 0, 692, 693, 7, 14, 0, 0, 693, 694, 7, 7, 0, 0, 694, 695, 7, 21, 0, 0, 695, 696, 7, 11, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 6, 21, 7, 0, 698, 59, 1, 0, 0, 0, 699, 700, 4, 22, 7, 0, 700, 701, 7, 12, 0, 0, 701, 702, 7, 10, 0, 0, 702, 703, 7, 6, 0, 0, 703, 704, 7, 3, 0, 0, 704, 705, 7, 11, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 6, 22, 7, 0, 707, 61, 1, 0, 0, 0, 708, 709, 4, 23, 8, 0, 709, 710, 7, 14, 0, 0, 710, 711, 7, 9, 0, 0, 711, 712, 7, 9, 0, 0, 712, 713, 7, 18, 0, 0, 713, 714, 7, 22, 0, 0, 714, 715, 7, 8, 0, 0, 715, 716, 5, 95, 0, 0, 716, 717, 5, 128020, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 6, 23, 8, 0, 719, 63, 1, 0, 0, 0, 720, 721, 7, 19, 0, 0, 721, 722, 7, 17, 0, 0, 722, 723, 5, 95, 0, 0, 723, 724, 7, 7, 0, 0, 724, 725, 7, 13, 0, 0, 725, 726, 7, 8, 0, 0, 726, 727, 7, 4, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 7, 15, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 6, 24, 9, 0, 731, 65, 1, 0, 0, 0, 732, 733, 7, 15, 0, 0, 733, 734, 7, 12, 0, 0, 734, 735, 7, 9, 0, 0, 735, 736, 7, 8, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 6, 25, 10, 0, 738, 67, 1, 0, 0, 0, 739, 740, 7, 18, 0, 0, 740, 741, 7, 7, 0, 0, 741, 742, 7, 7, 0, 0, 742, 743, 7, 8, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 6, 26, 10, 0, 745, 69, 1, 0, 0, 0, 746, 747, 4, 27, 9, 0, 747, 748, 7, 10, 0, 0, 748, 749, 7, 5, 0, 0, 749, 750, 7, 16, 0, 0, 750, 751, 7, 10, 0, 0, 751, 752, 7, 16, 0, 0, 752, 753, 7, 11, 0, 0, 753, 754, 5, 95, 0, 0, 754, 755, 5, 128020, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 6, 27, 10, 0, 757, 71, 1, 0, 0, 0, 758, 759, 4, 28, 10, 0, 759, 760, 7, 12, 0, 0, 760, 761, 7, 12, 0, 0, 761, 762, 7, 21, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 6, 28, 4, 0, 764, 73, 1, 0, 0, 0, 765, 766, 7, 12, 0, 0, 766, 767, 7, 7, 0, 0, 767, 768, 7, 5, 0, 0, 768, 769, 7, 4, 0, 0, 769, 770, 7, 19, 0, 0, 770, 771, 7, 7, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 6, 29, 11, 0, 773, 75, 1, 0, 0, 0, 774, 775, 7, 16, 0, 0, 775, 776, 7, 3, 0, 0, 776, 777, 7, 9, 0, 0, 777, 778, 7, 20, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 30, 12, 0, 780, 77, 1, 0, 0, 0, 781, 783, 8, 23, 0, 0, 782, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 6, 31, 4, 0, 787, 79, 1, 0, 0, 0, 788, 789, 3, 170, 77, 0, 789, 790, 1, 0, 0, 0, 790, 791, 6, 32, 13, 0, 791, 792, 6, 32, 14, 0, 792, 81, 1, 0, 0, 0, 793, 794, 3, 200, 92, 0, 794, 795, 1, 0, 0, 0, 795, 796, 6, 33, 15, 0, 796, 83, 1, 0, 0, 0, 797, 798, 3, 204, 94, 0, 798, 799, 1, 0, 0, 0, 799, 800, 6, 34, 16, 0, 800, 85, 1, 0, 0, 0, 801, 802, 3, 220, 102, 0, 802, 803, 1, 0, 0, 0, 803, 804, 6, 35, 17, 0, 804, 87, 1, 0, 0, 0, 805, 806, 3, 216, 100, 0, 806, 807, 1, 0, 0, 0, 807, 808, 6, 36, 18, 0, 808, 89, 1, 0, 0, 0, 809, 810, 3, 296, 140, 0, 810, 811, 1, 0, 0, 0, 811, 812, 6, 37, 19, 0, 812, 91, 1, 0, 0, 0, 813, 814, 3, 292, 138, 0, 814, 815, 1, 0, 0, 0, 815, 816, 6, 38, 20, 0, 816, 93, 1, 0, 0, 0, 817, 818, 3, 16, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 6, 39, 0, 0, 820, 95, 1, 0, 0, 0, 821, 822, 3, 18, 1, 0, 822, 823, 1, 0, 0, 0, 823, 824, 6, 40, 0, 0, 824, 97, 1, 0, 0, 0, 825, 826, 3, 20, 2, 0, 826, 827, 1, 0, 0, 0, 827, 828, 6, 41, 0, 0, 828, 99, 1, 0, 0, 0, 829, 830, 3, 170, 77, 0, 830, 831, 1, 0, 0, 0, 831, 832, 6, 42, 13, 0, 832, 833, 6, 42, 14, 0, 833, 101, 1, 0, 0, 0, 834, 835, 3, 284, 134, 0, 835, 836, 1, 0, 0, 0, 836, 837, 6, 43, 21, 0, 837, 838, 6, 43, 22, 0, 838, 103, 1, 0, 0, 0, 839, 840, 3, 200, 92, 0, 840, 841, 1, 0, 0, 0, 841, 842, 6, 44, 15, 0, 842, 843, 6, 44, 23, 0, 843, 105, 1, 0, 0, 0, 844, 845, 3, 202, 93, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 45, 24, 0, 847, 848, 6, 45, 23, 0, 848, 107, 1, 0, 0, 0, 849, 850, 8, 24, 0, 0, 850, 109, 1, 0, 0, 0, 851, 853, 3, 108, 46, 0, 852, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 3, 214, 99, 0, 857, 859, 1, 0, 0, 0, 858, 852, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 3, 108, 46, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 111, 1, 0, 0, 0, 865, 866, 3, 110, 47, 0, 866, 867, 1, 0, 0, 0, 867, 868, 6, 48, 25, 0, 868, 113, 1, 0, 0, 0, 869, 870, 3, 16, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 6, 49, 0, 0, 872, 115, 1, 0, 0, 0, 873, 874, 3, 18, 1, 0, 874, 875, 1, 0, 0, 0, 875, 876, 6, 50, 0, 0, 876, 117, 1, 0, 0, 0, 877, 878, 3, 20, 2, 0, 878, 879, 1, 0, 0, 0, 879, 880, 6, 51, 0, 0, 880, 119, 1, 0, 0, 0, 881, 882, 3, 170, 77, 0, 882, 883, 1, 0, 0, 0, 883, 884, 6, 52, 13, 0, 884, 885, 6, 52, 14, 0, 885, 886, 6, 52, 14, 0, 886, 121, 1, 0, 0, 0, 887, 888, 3, 210, 97, 0, 888, 889, 1, 0, 0, 0, 889, 890, 6, 53, 26, 0, 890, 123, 1, 0, 0, 0, 891, 892, 3, 216, 100, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 54, 18, 0, 894, 125, 1, 0, 0, 0, 895, 896, 3, 220, 102, 0, 896, 897, 1, 0, 0, 0, 897, 898, 6, 55, 17, 0, 898, 127, 1, 0, 0, 0, 899, 900, 3, 202, 93, 0, 900, 901, 1, 0, 0, 0, 901, 902, 6, 56, 24, 0, 902, 129, 1, 0, 0, 0, 903, 904, 3, 444, 214, 0, 904, 905, 1, 0, 0, 0, 905, 906, 6, 57, 27, 0, 906, 131, 1, 0, 0, 0, 907, 908, 3, 296, 140, 0, 908, 909, 1, 0, 0, 0, 909, 910, 6, 58, 19, 0, 910, 133, 1, 0, 0, 0, 911, 912, 3, 242, 113, 0, 912, 913, 1, 0, 0, 0, 913, 914, 6, 59, 28, 0, 914, 135, 1, 0, 0, 0, 915, 916, 3, 280, 132, 0, 916, 917, 1, 0, 0, 0, 917, 918, 6, 60, 29, 0, 918, 137, 1, 0, 0, 0, 919, 920, 4, 61, 11, 0, 920, 921, 3, 276, 130, 0, 921, 922, 1, 0, 0, 0, 922, 923, 6, 61, 30, 0, 923, 139, 1, 0, 0, 0, 924, 925, 4, 62, 12, 0, 925, 926, 3, 282, 133, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 62, 31, 0, 928, 141, 1, 0, 0, 0, 929, 930, 3, 16, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 6, 63, 0, 0, 932, 143, 1, 0, 0, 0, 933, 934, 3, 18, 1, 0, 934, 935, 1, 0, 0, 0, 935, 936, 6, 64, 0, 0, 936, 145, 1, 0, 0, 0, 937, 938, 3, 20, 2, 0, 938, 939, 1, 0, 0, 0, 939, 940, 6, 65, 0, 0, 940, 147, 1, 0, 0, 0, 941, 942, 3, 286, 135, 0, 942, 943, 1, 0, 0, 0, 943, 944, 6, 66, 32, 0, 944, 945, 6, 66, 14, 0, 945, 149, 1, 0, 0, 0, 946, 947, 3, 214, 99, 0, 947, 948, 1, 0, 0, 0, 948, 949, 6, 67, 33, 0, 949, 151, 1, 0, 0, 0, 950, 956, 3, 182, 83, 0, 951, 956, 3, 172, 78, 0, 952, 956, 3, 220, 102, 0, 953, 956, 3, 174, 79, 0, 954, 956, 3, 188, 86, 0, 955, 950, 1, 0, 0, 0, 955, 951, 1, 0, 0, 0, 955, 952, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 153, 1, 0, 0, 0, 959, 960, 3, 16, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 6, 69, 0, 0, 962, 155, 1, 0, 0, 0, 963, 964, 3, 18, 1, 0, 964, 965, 1, 0, 0, 0, 965, 966, 6, 70, 0, 0, 966, 157, 1, 0, 0, 0, 967, 968, 3, 20, 2, 0, 968, 969, 1, 0, 0, 0, 969, 970, 6, 71, 0, 0, 970, 159, 1, 0, 0, 0, 971, 972, 3, 284, 134, 0, 972, 973, 1, 0, 0, 0, 973, 974, 6, 72, 21, 0, 974, 975, 6, 72, 34, 0, 975, 161, 1, 0, 0, 0, 976, 977, 3, 170, 77, 0, 977, 978, 1, 0, 0, 0, 978, 979, 6, 73, 13, 0, 979, 980, 6, 73, 14, 0, 980, 163, 1, 0, 0, 0, 981, 982, 3, 20, 2, 0, 982, 983, 1, 0, 0, 0, 983, 984, 6, 74, 0, 0, 984, 165, 1, 0, 0, 0, 985, 986, 3, 16, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 6, 75, 0, 0, 988, 167, 1, 0, 0, 0, 989, 990, 3, 18, 1, 0, 990, 991, 1, 0, 0, 0, 991, 992, 6, 76, 0, 0, 992, 169, 1, 0, 0, 0, 993, 994, 5, 124, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 6, 77, 14, 0, 996, 171, 1, 0, 0, 0, 997, 998, 7, 25, 0, 0, 998, 173, 1, 0, 0, 0, 999, 1000, 7, 26, 0, 0, 1000, 175, 1, 0, 0, 0, 1001, 1002, 5, 92, 0, 0, 1002, 1003, 7, 27, 0, 0, 1003, 177, 1, 0, 0, 0, 1004, 1005, 8, 28, 0, 0, 1005, 179, 1, 0, 0, 0, 1006, 1008, 7, 7, 0, 0, 1007, 1009, 7, 29, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1012, 3, 172, 78, 0, 1011, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 181, 1, 0, 0, 0, 1015, 1016, 5, 64, 0, 0, 1016, 183, 1, 0, 0, 0, 1017, 1018, 5, 96, 0, 0, 1018, 185, 1, 0, 0, 0, 1019, 1023, 8, 30, 0, 0, 1020, 1021, 5, 96, 0, 0, 1021, 1023, 5, 96, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 187, 1, 0, 0, 0, 1024, 1025, 5, 95, 0, 0, 1025, 189, 1, 0, 0, 0, 1026, 1030, 3, 174, 79, 0, 1027, 1030, 3, 172, 78, 0, 1028, 1030, 3, 188, 86, 0, 1029, 1026, 1, 0, 0, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1028, 1, 0, 0, 0, 1030, 191, 1, 0, 0, 0, 1031, 1036, 5, 34, 0, 0, 1032, 1035, 3, 176, 80, 0, 1033, 1035, 3, 178, 81, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1038, 1, 0, 0, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1036, 1, 0, 0, 0, 1039, 1061, 5, 34, 0, 0, 1040, 1041, 5, 34, 0, 0, 1041, 1042, 5, 34, 0, 0, 1042, 1043, 5, 34, 0, 0, 1043, 1047, 1, 0, 0, 0, 1044, 1046, 8, 0, 0, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 34, 0, 0, 1051, 1052, 5, 34, 0, 0, 1052, 1053, 5, 34, 0, 0, 1053, 1055, 1, 0, 0, 0, 1054, 1056, 5, 34, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 1, 0, 0, 0, 1057, 1059, 5, 34, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1031, 1, 0, 0, 0, 1060, 1040, 1, 0, 0, 0, 1061, 193, 1, 0, 0, 0, 1062, 1064, 3, 172, 78, 0, 1063, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 195, 1, 0, 0, 0, 1067, 1069, 3, 172, 78, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 3, 220, 102, 0, 1073, 1075, 3, 172, 78, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1110, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1081, 3, 220, 102, 0, 1080, 1082, 3, 172, 78, 0, 1081, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1110, 1, 0, 0, 0, 1085, 1087, 3, 172, 78, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1097, 1, 0, 0, 0, 1090, 1094, 3, 220, 102, 0, 1091, 1093, 3, 172, 78, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1097, 1090, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 180, 82, 0, 1100, 1110, 1, 0, 0, 0, 1101, 1103, 3, 220, 102, 0, 1102, 1104, 3, 172, 78, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 180, 82, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1068, 1, 0, 0, 0, 1109, 1079, 1, 0, 0, 0, 1109, 1086, 1, 0, 0, 0, 1109, 1101, 1, 0, 0, 0, 1110, 197, 1, 0, 0, 0, 1111, 1112, 7, 31, 0, 0, 1112, 1113, 7, 32, 0, 0, 1113, 199, 1, 0, 0, 0, 1114, 1115, 7, 9, 0, 0, 1115, 1116, 7, 5, 0, 0, 1116, 201, 1, 0, 0, 0, 1117, 1118, 7, 20, 0, 0, 1118, 1119, 7, 10, 0, 0, 1119, 1120, 7, 11, 0, 0, 1120, 1121, 7, 3, 0, 0, 1121, 203, 1, 0, 0, 0, 1122, 1123, 7, 4, 0, 0, 1123, 1124, 7, 16, 0, 0, 1124, 205, 1, 0, 0, 0, 1125, 1126, 7, 4, 0, 0, 1126, 1127, 7, 5, 0, 0, 1127, 1128, 7, 15, 0, 0, 1128, 207, 1, 0, 0, 0, 1129, 1130, 7, 4, 0, 0, 1130, 1131, 7, 16, 0, 0, 1131, 1132, 7, 2, 0, 0, 1132, 209, 1, 0, 0, 0, 1133, 1134, 5, 61, 0, 0, 1134, 211, 1, 0, 0, 0, 1135, 1136, 5, 58, 0, 0, 1136, 1137, 5, 58, 0, 0, 1137, 213, 1, 0, 0, 0, 1138, 1139, 5, 58, 0, 0, 1139, 215, 1, 0, 0, 0, 1140, 1141, 5, 44, 0, 0, 1141, 217, 1, 0, 0, 0, 1142, 1143, 7, 15, 0, 0, 1143, 1144, 7, 7, 0, 0, 1144, 1145, 7, 16, 0, 0, 1145, 1146, 7, 2, 0, 0, 1146, 219, 1, 0, 0, 0, 1147, 1148, 5, 46, 0, 0, 1148, 221, 1, 0, 0, 0, 1149, 1150, 7, 21, 0, 0, 1150, 1151, 7, 4, 0, 0, 1151, 1152, 7, 14, 0, 0, 1152, 1153, 7, 16, 0, 0, 1153, 1154, 7, 7, 0, 0, 1154, 223, 1, 0, 0, 0, 1155, 1156, 7, 21, 0, 0, 1156, 1157, 7, 10, 0, 0, 1157, 1158, 7, 12, 0, 0, 1158, 1159, 7, 16, 0, 0, 1159, 1160, 7, 11, 0, 0, 1160, 225, 1, 0, 0, 0, 1161, 1162, 7, 10, 0, 0, 1162, 1163, 7, 5, 0, 0, 1163, 227, 1, 0, 0, 0, 1164, 1165, 7, 10, 0, 0, 1165, 1166, 7, 16, 0, 0, 1166, 229, 1, 0, 0, 0, 1167, 1168, 7, 14, 0, 0, 1168, 1169, 7, 4, 0, 0, 1169, 1170, 7, 16, 0, 0, 1170, 1171, 7, 11, 0, 0, 1171, 231, 1, 0, 0, 0, 1172, 1173, 7, 14, 0, 0, 1173, 1174, 7, 10, 0, 0, 1174, 1175, 7, 18, 0, 0, 1175, 1176, 7, 7, 0, 0, 1176, 233, 1, 0, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 9, 0, 0, 1179, 1180, 7, 11, 0, 0, 1180, 235, 1, 0, 0, 0, 1181, 1182, 7, 5, 0, 0, 1182, 1183, 7, 22, 0, 0, 1183, 1184, 7, 14, 0, 0, 1184, 1185, 7, 14, 0, 0, 1185, 237, 1, 0, 0, 0, 1186, 1187, 7, 5, 0, 0, 1187, 1188, 7, 22, 0, 0, 1188, 1189, 7, 14, 0, 0, 1189, 1190, 7, 14, 0, 0, 1190, 1191, 7, 16, 0, 0, 1191, 239, 1, 0, 0, 0, 1192, 1193, 7, 9, 0, 0, 1193, 1194, 7, 12, 0, 0, 1194, 241, 1, 0, 0, 0, 1195, 1196, 5, 63, 0, 0, 1196, 243, 1, 0, 0, 0, 1197, 1198, 7, 12, 0, 0, 1198, 1199, 7, 14, 0, 0, 1199, 1200, 7, 10, 0, 0, 1200, 1201, 7, 18, 0, 0, 1201, 1202, 7, 7, 0, 0, 1202, 245, 1, 0, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 12, 0, 0, 1205, 1206, 7, 22, 0, 0, 1206, 1207, 7, 7, 0, 0, 1207, 247, 1, 0, 0, 0, 1208, 1209, 5, 61, 0, 0, 1209, 1210, 5, 61, 0, 0, 1210, 249, 1, 0, 0, 0, 1211, 1212, 5, 61, 0, 0, 1212, 1213, 5, 126, 0, 0, 1213, 251, 1, 0, 0, 0, 1214, 1215, 5, 33, 0, 0, 1215, 1216, 5, 61, 0, 0, 1216, 253, 1, 0, 0, 0, 1217, 1218, 5, 60, 0, 0, 1218, 255, 1, 0, 0, 0, 1219, 1220, 5, 60, 0, 0, 1220, 1221, 5, 61, 0, 0, 1221, 257, 1, 0, 0, 0, 1222, 1223, 5, 62, 0, 0, 1223, 259, 1, 0, 0, 0, 1224, 1225, 5, 62, 0, 0, 1225, 1226, 5, 61, 0, 0, 1226, 261, 1, 0, 0, 0, 1227, 1228, 5, 43, 0, 0, 1228, 263, 1, 0, 0, 0, 1229, 1230, 5, 45, 0, 0, 1230, 265, 1, 0, 0, 0, 1231, 1232, 5, 42, 0, 0, 1232, 267, 1, 0, 0, 0, 1233, 1234, 5, 47, 0, 0, 1234, 269, 1, 0, 0, 0, 1235, 1236, 5, 37, 0, 0, 1236, 271, 1, 0, 0, 0, 1237, 1238, 5, 123, 0, 0, 1238, 273, 1, 0, 0, 0, 1239, 1240, 5, 125, 0, 0, 1240, 275, 1, 0, 0, 0, 1241, 1242, 4, 130, 13, 0, 1242, 1243, 5, 63, 0, 0, 1243, 1244, 5, 63, 0, 0, 1244, 277, 1, 0, 0, 0, 1245, 1246, 3, 42, 13, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 6, 131, 35, 0, 1248, 279, 1, 0, 0, 0, 1249, 1252, 3, 242, 113, 0, 1250, 1253, 3, 174, 79, 0, 1251, 1253, 3, 188, 86, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 1257, 1, 0, 0, 0, 1254, 1256, 3, 190, 87, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1267, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1262, 3, 242, 113, 0, 1261, 1263, 3, 172, 78, 0, 1262, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1249, 1, 0, 0, 0, 1266, 1260, 1, 0, 0, 0, 1267, 281, 1, 0, 0, 0, 1268, 1271, 3, 276, 130, 0, 1269, 1272, 3, 174, 79, 0, 1270, 1272, 3, 188, 86, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1276, 1, 0, 0, 0, 1273, 1275, 3, 190, 87, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1286, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1281, 3, 276, 130, 0, 1280, 1282, 3, 172, 78, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1268, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 283, 1, 0, 0, 0, 1287, 1288, 5, 91, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 6, 134, 4, 0, 1290, 1291, 6, 134, 4, 0, 1291, 285, 1, 0, 0, 0, 1292, 1293, 5, 93, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 135, 14, 0, 1295, 1296, 6, 135, 14, 0, 1296, 287, 1, 0, 0, 0, 1297, 1298, 5, 40, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 136, 4, 0, 1300, 1301, 6, 136, 4, 0, 1301, 289, 1, 0, 0, 0, 1302, 1303, 5, 41, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 137, 14, 0, 1305, 1306, 6, 137, 14, 0, 1306, 291, 1, 0, 0, 0, 1307, 1311, 3, 174, 79, 0, 1308, 1310, 3, 190, 87, 0, 1309, 1308, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1324, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1317, 3, 188, 86, 0, 1315, 1317, 3, 182, 83, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1320, 3, 190, 87, 0, 1319, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1323, 1316, 1, 0, 0, 0, 1324, 293, 1, 0, 0, 0, 1325, 1327, 3, 184, 84, 0, 1326, 1328, 3, 186, 85, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 3, 184, 84, 0, 1332, 295, 1, 0, 0, 0, 1333, 1334, 3, 294, 139, 0, 1334, 297, 1, 0, 0, 0, 1335, 1336, 3, 16, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 6, 141, 0, 0, 1338, 299, 1, 0, 0, 0, 1339, 1340, 3, 18, 1, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 6, 142, 0, 0, 1342, 301, 1, 0, 0, 0, 1343, 1344, 3, 20, 2, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1346, 6, 143, 0, 0, 1346, 303, 1, 0, 0, 0, 1347, 1348, 3, 170, 77, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 6, 144, 13, 0, 1350, 1351, 6, 144, 14, 0, 1351, 305, 1, 0, 0, 0, 1352, 1353, 3, 284, 134, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 6, 145, 21, 0, 1355, 307, 1, 0, 0, 0, 1356, 1357, 3, 286, 135, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 6, 146, 32, 0, 1359, 309, 1, 0, 0, 0, 1360, 1361, 3, 214, 99, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 6, 147, 33, 0, 1363, 311, 1, 0, 0, 0, 1364, 1365, 4, 148, 14, 0, 1365, 1366, 3, 212, 98, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 6, 148, 36, 0, 1368, 313, 1, 0, 0, 0, 1369, 1370, 3, 216, 100, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 6, 149, 18, 0, 1372, 315, 1, 0, 0, 0, 1373, 1374, 3, 210, 97, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 150, 26, 0, 1376, 317, 1, 0, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1379, 7, 7, 0, 0, 1379, 1380, 7, 11, 0, 0, 1380, 1381, 7, 4, 0, 0, 1381, 1382, 7, 15, 0, 0, 1382, 1383, 7, 4, 0, 0, 1383, 1384, 7, 11, 0, 0, 1384, 1385, 7, 4, 0, 0, 1385, 319, 1, 0, 0, 0, 1386, 1390, 8, 33, 0, 0, 1387, 1388, 5, 47, 0, 0, 1388, 1390, 8, 34, 0, 0, 1389, 1386, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1390, 321, 1, 0, 0, 0, 1391, 1393, 3, 320, 152, 0, 1392, 1391, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 323, 1, 0, 0, 0, 1396, 1397, 3, 322, 153, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 154, 37, 0, 1399, 325, 1, 0, 0, 0, 1400, 1401, 3, 192, 88, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 155, 38, 0, 1403, 327, 1, 0, 0, 0, 1404, 1405, 3, 16, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 156, 0, 0, 1407, 329, 1, 0, 0, 0, 1408, 1409, 3, 18, 1, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 157, 0, 0, 1411, 331, 1, 0, 0, 0, 1412, 1413, 3, 20, 2, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 158, 0, 0, 1415, 333, 1, 0, 0, 0, 1416, 1417, 3, 288, 136, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 6, 159, 39, 0, 1419, 1420, 6, 159, 34, 0, 1420, 335, 1, 0, 0, 0, 1421, 1422, 3, 170, 77, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 160, 13, 0, 1424, 1425, 6, 160, 14, 0, 1425, 337, 1, 0, 0, 0, 1426, 1427, 3, 20, 2, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 6, 161, 0, 0, 1429, 339, 1, 0, 0, 0, 1430, 1431, 3, 16, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 6, 162, 0, 0, 1433, 341, 1, 0, 0, 0, 1434, 1435, 3, 18, 1, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 6, 163, 0, 0, 1437, 343, 1, 0, 0, 0, 1438, 1439, 3, 170, 77, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 164, 13, 0, 1441, 1442, 6, 164, 14, 0, 1442, 345, 1, 0, 0, 0, 1443, 1444, 7, 35, 0, 0, 1444, 1445, 7, 9, 0, 0, 1445, 1446, 7, 10, 0, 0, 1446, 1447, 7, 5, 0, 0, 1447, 347, 1, 0, 0, 0, 1448, 1449, 3, 204, 94, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 166, 16, 0, 1451, 349, 1, 0, 0, 0, 1452, 1453, 3, 200, 92, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 167, 15, 0, 1455, 1456, 6, 167, 14, 0, 1456, 1457, 6, 167, 4, 0, 1457, 351, 1, 0, 0, 0, 1458, 1459, 7, 22, 0, 0, 1459, 1460, 7, 16, 0, 0, 1460, 1461, 7, 10, 0, 0, 1461, 1462, 7, 5, 0, 0, 1462, 1463, 7, 6, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 6, 168, 14, 0, 1465, 1466, 6, 168, 4, 0, 1466, 353, 1, 0, 0, 0, 1467, 1468, 3, 322, 153, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 169, 37, 0, 1470, 355, 1, 0, 0, 0, 1471, 1472, 3, 192, 88, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 170, 38, 0, 1474, 357, 1, 0, 0, 0, 1475, 1476, 3, 214, 99, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 6, 171, 33, 0, 1478, 359, 1, 0, 0, 0, 1479, 1480, 3, 292, 138, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 6, 172, 20, 0, 1482, 361, 1, 0, 0, 0, 1483, 1484, 3, 296, 140, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 6, 173, 19, 0, 1486, 363, 1, 0, 0, 0, 1487, 1488, 3, 16, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 6, 174, 0, 0, 1490, 365, 1, 0, 0, 0, 1491, 1492, 3, 18, 1, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 6, 175, 0, 0, 1494, 367, 1, 0, 0, 0, 1495, 1496, 3, 20, 2, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 6, 176, 0, 0, 1498, 369, 1, 0, 0, 0, 1499, 1500, 3, 170, 77, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 6, 177, 13, 0, 1502, 1503, 6, 177, 14, 0, 1503, 371, 1, 0, 0, 0, 1504, 1505, 3, 214, 99, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 178, 33, 0, 1507, 373, 1, 0, 0, 0, 1508, 1509, 3, 216, 100, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 179, 18, 0, 1511, 375, 1, 0, 0, 0, 1512, 1513, 3, 220, 102, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 180, 17, 0, 1515, 377, 1, 0, 0, 0, 1516, 1517, 3, 200, 92, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 6, 181, 15, 0, 1519, 1520, 6, 181, 40, 0, 1520, 379, 1, 0, 0, 0, 1521, 1522, 3, 322, 153, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 6, 182, 37, 0, 1524, 381, 1, 0, 0, 0, 1525, 1526, 3, 192, 88, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 6, 183, 38, 0, 1528, 383, 1, 0, 0, 0, 1529, 1530, 3, 16, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 184, 0, 0, 1532, 385, 1, 0, 0, 0, 1533, 1534, 3, 18, 1, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 6, 185, 0, 0, 1536, 387, 1, 0, 0, 0, 1537, 1538, 3, 20, 2, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 6, 186, 0, 0, 1540, 389, 1, 0, 0, 0, 1541, 1542, 3, 170, 77, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 6, 187, 13, 0, 1544, 1545, 6, 187, 14, 0, 1545, 1546, 6, 187, 14, 0, 1546, 391, 1, 0, 0, 0, 1547, 1548, 3, 216, 100, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 6, 188, 18, 0, 1550, 393, 1, 0, 0, 0, 1551, 1552, 3, 220, 102, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 6, 189, 17, 0, 1554, 395, 1, 0, 0, 0, 1555, 1556, 3, 444, 214, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 6, 190, 27, 0, 1558, 397, 1, 0, 0, 0, 1559, 1560, 3, 16, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 6, 191, 0, 0, 1562, 399, 1, 0, 0, 0, 1563, 1564, 3, 18, 1, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 192, 0, 0, 1566, 401, 1, 0, 0, 0, 1567, 1568, 3, 20, 2, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 6, 193, 0, 0, 1570, 403, 1, 0, 0, 0, 1571, 1572, 3, 170, 77, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 194, 13, 0, 1574, 1575, 6, 194, 14, 0, 1575, 405, 1, 0, 0, 0, 1576, 1577, 3, 220, 102, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 6, 195, 17, 0, 1579, 407, 1, 0, 0, 0, 1580, 1581, 3, 242, 113, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 6, 196, 28, 0, 1583, 409, 1, 0, 0, 0, 1584, 1585, 3, 280, 132, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 6, 197, 29, 0, 1587, 411, 1, 0, 0, 0, 1588, 1589, 4, 198, 15, 0, 1589, 1590, 3, 276, 130, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 6, 198, 30, 0, 1592, 413, 1, 0, 0, 0, 1593, 1594, 4, 199, 16, 0, 1594, 1595, 3, 282, 133, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 199, 31, 0, 1597, 415, 1, 0, 0, 0, 1598, 1599, 3, 296, 140, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 200, 19, 0, 1601, 417, 1, 0, 0, 0, 1602, 1603, 3, 292, 138, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 201, 20, 0, 1605, 419, 1, 0, 0, 0, 1606, 1607, 3, 16, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 202, 0, 0, 1609, 421, 1, 0, 0, 0, 1610, 1611, 3, 18, 1, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 203, 0, 0, 1613, 423, 1, 0, 0, 0, 1614, 1615, 3, 20, 2, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 6, 204, 0, 0, 1617, 425, 1, 0, 0, 0, 1618, 1619, 3, 170, 77, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 6, 205, 13, 0, 1621, 1622, 6, 205, 14, 0, 1622, 427, 1, 0, 0, 0, 1623, 1624, 3, 220, 102, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 6, 206, 17, 0, 1626, 429, 1, 0, 0, 0, 1627, 1628, 3, 216, 100, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 207, 18, 0, 1630, 431, 1, 0, 0, 0, 1631, 1632, 3, 242, 113, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 208, 28, 0, 1634, 433, 1, 0, 0, 0, 1635, 1636, 3, 280, 132, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 209, 29, 0, 1638, 435, 1, 0, 0, 0, 1639, 1640, 4, 210, 17, 0, 1640, 1641, 3, 276, 130, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 6, 210, 30, 0, 1643, 437, 1, 0, 0, 0, 1644, 1645, 4, 211, 18, 0, 1645, 1646, 3, 282, 133, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 6, 211, 31, 0, 1648, 439, 1, 0, 0, 0, 1649, 1654, 3, 174, 79, 0, 1650, 1654, 3, 172, 78, 0, 1651, 1654, 3, 188, 86, 0, 1652, 1654, 3, 266, 125, 0, 1653, 1649, 1, 0, 0, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 441, 1, 0, 0, 0, 1655, 1658, 3, 174, 79, 0, 1656, 1658, 3, 266, 125, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1656, 1, 0, 0, 0, 1658, 1662, 1, 0, 0, 0, 1659, 1661, 3, 440, 212, 0, 1660, 1659, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1675, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1668, 3, 188, 86, 0, 1666, 1668, 3, 182, 83, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1666, 1, 0, 0, 0, 1668, 1670, 1, 0, 0, 0, 1669, 1671, 3, 440, 212, 0, 1670, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1657, 1, 0, 0, 0, 1674, 1667, 1, 0, 0, 0, 1675, 443, 1, 0, 0, 0, 1676, 1679, 3, 442, 213, 0, 1677, 1679, 3, 294, 139, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 445, 1, 0, 0, 0, 1682, 1683, 3, 16, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 215, 0, 0, 1685, 447, 1, 0, 0, 0, 1686, 1687, 3, 18, 1, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 216, 0, 0, 1689, 449, 1, 0, 0, 0, 1690, 1691, 3, 20, 2, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 217, 0, 0, 1693, 451, 1, 0, 0, 0, 1694, 1695, 3, 170, 77, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 6, 218, 13, 0, 1697, 1698, 6, 218, 14, 0, 1698, 453, 1, 0, 0, 0, 1699, 1700, 3, 210, 97, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 6, 219, 26, 0, 1702, 455, 1, 0, 0, 0, 1703, 1704, 3, 216, 100, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1706, 6, 220, 18, 0, 1706, 457, 1, 0, 0, 0, 1707, 1708, 3, 220, 102, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 221, 17, 0, 1710, 459, 1, 0, 0, 0, 1711, 1712, 3, 242, 113, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 222, 28, 0, 1714, 461, 1, 0, 0, 0, 1715, 1716, 3, 280, 132, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 223, 29, 0, 1718, 463, 1, 0, 0, 0, 1719, 1720, 4, 224, 19, 0, 1720, 1721, 3, 276, 130, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 6, 224, 30, 0, 1723, 465, 1, 0, 0, 0, 1724, 1725, 4, 225, 20, 0, 1725, 1726, 3, 282, 133, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 225, 31, 0, 1728, 467, 1, 0, 0, 0, 1729, 1730, 3, 204, 94, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 226, 16, 0, 1732, 469, 1, 0, 0, 0, 1733, 1734, 3, 444, 214, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 227, 27, 0, 1736, 471, 1, 0, 0, 0, 1737, 1738, 3, 16, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 228, 0, 0, 1740, 473, 1, 0, 0, 0, 1741, 1742, 3, 18, 1, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 229, 0, 0, 1744, 475, 1, 0, 0, 0, 1745, 1746, 3, 20, 2, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 6, 230, 0, 0, 1748, 477, 1, 0, 0, 0, 1749, 1750, 3, 170, 77, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 231, 13, 0, 1752, 1753, 6, 231, 14, 0, 1753, 479, 1, 0, 0, 0, 1754, 1755, 7, 10, 0, 0, 1755, 1756, 7, 5, 0, 0, 1756, 1757, 7, 21, 0, 0, 1757, 1758, 7, 9, 0, 0, 1758, 481, 1, 0, 0, 0, 1759, 1760, 3, 16, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 6, 233, 0, 0, 1762, 483, 1, 0, 0, 0, 1763, 1764, 3, 18, 1, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 234, 0, 0, 1766, 485, 1, 0, 0, 0, 1767, 1768, 3, 20, 2, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 235, 0, 0, 1770, 487, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 494, 498, 501, 510, 512, 523, 784, 854, 858, 863, 955, 957, 1008, 1013, 1022, 1029, 1034, 1036, 1047, 1055, 1058, 1060, 1065, 1070, 1076, 1083, 1088, 1094, 1097, 1105, 1109, 1252, 1257, 1264, 1266, 1271, 1276, 1283, 1285, 1311, 1316, 1321, 1323, 1329, 1389, 1394, 1653, 1657, 1662, 1667, 1672, 1674, 1678, 1680, 41, 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, 10, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 7, 50, 0, 4, 0, 0, 7, 55, 0, 7, 57, 0, 7, 65, 0, 7, 63, 0, 7, 101, 0, 7, 100, 0, 7, 96, 0, 5, 4, 0, 5, 3, 0, 7, 56, 0, 7, 36, 0, 7, 60, 0, 7, 127, 0, 7, 76, 0, 7, 94, 0, 7, 93, 0, 7, 95, 0, 7, 97, 0, 7, 62, 0, 5, 0, 0, 7, 14, 0, 7, 61, 0, 7, 106, 0, 7, 51, 0, 7, 98, 0, 5, 11, 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 36b77a5dad38e..416b5e6046807 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 @@ -27,33 +27,33 @@ public class EsqlBaseLexer extends LexerConfig { public static final int 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, DEV_METRICS=17, DEV_FORK=18, JOIN_LOOKUP=19, - DEV_JOIN_FULL=20, DEV_JOIN_LEFT=21, DEV_JOIN_RIGHT=22, DEV_LOOKUP=23, - MV_EXPAND=24, DROP=25, KEEP=26, DEV_INSIST=27, DEV_RRF=28, RENAME=29, - SHOW=30, UNKNOWN_CMD=31, CHANGE_POINT_LINE_COMMENT=32, CHANGE_POINT_MULTILINE_COMMENT=33, - CHANGE_POINT_WS=34, ON=35, WITH=36, ENRICH_POLICY_NAME=37, ENRICH_LINE_COMMENT=38, - ENRICH_MULTILINE_COMMENT=39, ENRICH_WS=40, ENRICH_FIELD_LINE_COMMENT=41, - ENRICH_FIELD_MULTILINE_COMMENT=42, ENRICH_FIELD_WS=43, SETTING=44, SETTING_LINE_COMMENT=45, - SETTTING_MULTILINE_COMMENT=46, SETTING_WS=47, EXPLAIN_WS=48, EXPLAIN_LINE_COMMENT=49, - EXPLAIN_MULTILINE_COMMENT=50, PIPE=51, QUOTED_STRING=52, INTEGER_LITERAL=53, - DECIMAL_LITERAL=54, BY=55, AND=56, ASC=57, ASSIGN=58, CAST_OP=59, COLON=60, - COMMA=61, DESC=62, DOT=63, FALSE=64, FIRST=65, IN=66, IS=67, LAST=68, - LIKE=69, NOT=70, NULL=71, NULLS=72, OR=73, PARAM=74, RLIKE=75, TRUE=76, - EQ=77, CIEQ=78, NEQ=79, LT=80, LTE=81, GT=82, GTE=83, PLUS=84, MINUS=85, - ASTERISK=86, SLASH=87, PERCENT=88, LEFT_BRACES=89, RIGHT_BRACES=90, DOUBLE_PARAMS=91, - NAMED_OR_POSITIONAL_PARAM=92, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=93, OPENING_BRACKET=94, - CLOSING_BRACKET=95, LP=96, RP=97, UNQUOTED_IDENTIFIER=98, QUOTED_IDENTIFIER=99, - EXPR_LINE_COMMENT=100, EXPR_MULTILINE_COMMENT=101, EXPR_WS=102, METADATA=103, - UNQUOTED_SOURCE=104, FROM_LINE_COMMENT=105, FROM_MULTILINE_COMMENT=106, - FROM_WS=107, FORK_WS=108, FORK_LINE_COMMENT=109, FORK_MULTILINE_COMMENT=110, - JOIN=111, USING=112, JOIN_LINE_COMMENT=113, JOIN_MULTILINE_COMMENT=114, - JOIN_WS=115, LOOKUP_LINE_COMMENT=116, LOOKUP_MULTILINE_COMMENT=117, LOOKUP_WS=118, - LOOKUP_FIELD_LINE_COMMENT=119, LOOKUP_FIELD_MULTILINE_COMMENT=120, LOOKUP_FIELD_WS=121, - MVEXPAND_LINE_COMMENT=122, MVEXPAND_MULTILINE_COMMENT=123, MVEXPAND_WS=124, - ID_PATTERN=125, PROJECT_LINE_COMMENT=126, PROJECT_MULTILINE_COMMENT=127, - PROJECT_WS=128, AS=129, RENAME_LINE_COMMENT=130, RENAME_MULTILINE_COMMENT=131, - RENAME_WS=132, INFO=133, SHOW_LINE_COMMENT=134, SHOW_MULTILINE_COMMENT=135, - SHOW_WS=136; + WHERE=14, DEV_INLINESTATS=15, DEV_RERANK=16, FROM=17, DEV_METRICS=18, + DEV_FORK=19, JOIN_LOOKUP=20, DEV_JOIN_FULL=21, DEV_JOIN_LEFT=22, DEV_JOIN_RIGHT=23, + DEV_LOOKUP=24, MV_EXPAND=25, DROP=26, KEEP=27, DEV_INSIST=28, DEV_RRF=29, + RENAME=30, SHOW=31, UNKNOWN_CMD=32, CHANGE_POINT_LINE_COMMENT=33, CHANGE_POINT_MULTILINE_COMMENT=34, + CHANGE_POINT_WS=35, ENRICH_POLICY_NAME=36, ENRICH_LINE_COMMENT=37, ENRICH_MULTILINE_COMMENT=38, + ENRICH_WS=39, ENRICH_FIELD_LINE_COMMENT=40, ENRICH_FIELD_MULTILINE_COMMENT=41, + ENRICH_FIELD_WS=42, SETTING=43, SETTING_LINE_COMMENT=44, SETTTING_MULTILINE_COMMENT=45, + SETTING_WS=46, EXPLAIN_WS=47, EXPLAIN_LINE_COMMENT=48, EXPLAIN_MULTILINE_COMMENT=49, + PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, BY=54, + ON=55, WITH=56, AS=57, AND=58, ASC=59, ASSIGN=60, CAST_OP=61, COLON=62, + COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69, LAST=70, + LIKE=71, NOT=72, NULL=73, NULLS=74, OR=75, PARAM=76, RLIKE=77, TRUE=78, + EQ=79, CIEQ=80, NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, + ASTERISK=88, SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, + NAMED_OR_POSITIONAL_PARAM=94, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=95, OPENING_BRACKET=96, + CLOSING_BRACKET=97, LP=98, RP=99, UNQUOTED_IDENTIFIER=100, QUOTED_IDENTIFIER=101, + EXPR_LINE_COMMENT=102, EXPR_MULTILINE_COMMENT=103, EXPR_WS=104, METADATA=105, + UNQUOTED_SOURCE=106, FROM_LINE_COMMENT=107, FROM_MULTILINE_COMMENT=108, + FROM_WS=109, FORK_WS=110, FORK_LINE_COMMENT=111, FORK_MULTILINE_COMMENT=112, + JOIN=113, USING=114, JOIN_LINE_COMMENT=115, JOIN_MULTILINE_COMMENT=116, + JOIN_WS=117, LOOKUP_LINE_COMMENT=118, LOOKUP_MULTILINE_COMMENT=119, LOOKUP_WS=120, + LOOKUP_FIELD_LINE_COMMENT=121, LOOKUP_FIELD_MULTILINE_COMMENT=122, LOOKUP_FIELD_WS=123, + MVEXPAND_LINE_COMMENT=124, MVEXPAND_MULTILINE_COMMENT=125, MVEXPAND_WS=126, + ID_PATTERN=127, PROJECT_LINE_COMMENT=128, PROJECT_MULTILINE_COMMENT=129, + PROJECT_WS=130, RENAME_LINE_COMMENT=131, RENAME_MULTILINE_COMMENT=132, + RENAME_WS=133, INFO=134, SHOW_LINE_COMMENT=135, SHOW_MULTILINE_COMMENT=136, + SHOW_WS=137; public static final int CHANGE_POINT_MODE=1, ENRICH_MODE=2, ENRICH_FIELD_MODE=3, SETTING_MODE=4, EXPLAIN_MODE=5, EXPRESSION_MODE=6, FROM_MODE=7, FORK_MODE=8, JOIN_MODE=9, @@ -74,30 +74,31 @@ private static String[] makeRuleNames() { return new String[] { "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", "ENRICH", "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", "STATS", - "WHERE", "DEV_INLINESTATS", "FROM", "DEV_METRICS", "DEV_FORK", "JOIN_LOOKUP", - "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", "MV_EXPAND", - "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "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_DOUBLE_PARAMS", "ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "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", "DOUBLE_PARAMS", - "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", + "WHERE", "DEV_INLINESTATS", "DEV_RERANK", "FROM", "DEV_METRICS", "DEV_FORK", + "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", + "MV_EXPAND", "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "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", "ENRICH_ON", + "ENRICH_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_DOUBLE_PARAMS", + "ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", "ON", "WITH", "AS", "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", + "DOUBLE_PARAMS", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", @@ -121,7 +122,7 @@ private static String[] makeRuleNames() { "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", - "RENAME_DOUBLE_PARAMS", "RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "AS", + "RENAME_DOUBLE_PARAMS", "RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "RENAME_AS", "RENAME_ID_PATTERN", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "SHOW_PIPE", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" @@ -132,19 +133,19 @@ private static String[] makeRuleNames() { private static String[] makeLiteralNames() { return new String[] { null, null, null, null, null, "'enrich'", "'explain'", "'dissect'", "'eval'", - "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, "'from'", - null, null, "'lookup'", null, null, null, null, "'mv_expand'", "'drop'", - "'keep'", null, 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, null, null, "'metadata'", null, - null, null, null, null, null, null, "'join'", "'USING'", null, null, + "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, null, + "'from'", null, null, "'lookup'", null, null, null, null, "'mv_expand'", + "'drop'", "'keep'", null, null, "'rename'", "'show'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, "'as'", null, null, null, "'info'" + null, null, null, "'|'", null, null, null, "'by'", "'on'", "'with'", + "'as'", "'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, "'join'", + "'USING'", null, null, null, null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, "'info'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -152,31 +153,30 @@ private static String[] makeSymbolicNames() { return new String[] { null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", "ENRICH", "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", - "STATS", "WHERE", "DEV_INLINESTATS", "FROM", "DEV_METRICS", "DEV_FORK", - "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", - "MV_EXPAND", "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "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", - "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "TRUE", "EQ", "CIEQ", - "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", - "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", "FORK_WS", "FORK_LINE_COMMENT", - "FORK_MULTILINE_COMMENT", "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", - "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" + "STATS", "WHERE", "DEV_INLINESTATS", "DEV_RERANK", "FROM", "DEV_METRICS", + "DEV_FORK", "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", + "DEV_LOOKUP", "MV_EXPAND", "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "RENAME", + "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT", + "CHANGE_POINT_WS", "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", + "ON", "WITH", "AS", "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", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", + "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", "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", + "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", "MVEXPAND_LINE_COMMENT", + "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", + "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -245,41 +245,43 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return DEV_CHANGE_POINT_sempred((RuleContext)_localctx, predIndex); case 14: return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex); - case 16: - return DEV_METRICS_sempred((RuleContext)_localctx, predIndex); + case 15: + return DEV_RERANK_sempred((RuleContext)_localctx, predIndex); case 17: + return DEV_METRICS_sempred((RuleContext)_localctx, predIndex); + case 18: return DEV_FORK_sempred((RuleContext)_localctx, predIndex); - case 19: - return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); case 20: - return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex); case 21: - return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); + return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex); case 22: + return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex); + case 23: return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex); - case 26: - return DEV_INSIST_sempred((RuleContext)_localctx, predIndex); case 27: + return DEV_INSIST_sempred((RuleContext)_localctx, predIndex); + case 28: return DEV_RRF_sempred((RuleContext)_localctx, predIndex); - case 60: - return ENRICH_FIELD_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); case 61: + return ENRICH_FIELD_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); + case 62: return ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 126: + case 130: return DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 144: + case 148: return FROM_SELECTOR_sempred((RuleContext)_localctx, predIndex); - case 194: + case 198: return MVEXPAND_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 195: + case 199: return MVEXPAND_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 206: + case 210: return PROJECT_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 207: + case 211: return PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 220: + case 224: return RENAME_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); - case 221: + case 225: return RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred((RuleContext)_localctx, predIndex); } return true; @@ -298,135 +300,142 @@ private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) { } return true; } - private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 2: return this.isDevVersion(); } return true; } - private boolean DEV_FORK_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_METRICS_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_FORK_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_JOIN_FULL_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_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 6: return this.isDevVersion(); } return true; } - private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 7: return this.isDevVersion(); } return true; } - private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 8: return this.isDevVersion(); } return true; } - private boolean DEV_RRF_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_INSIST_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 9: return this.isDevVersion(); } return true; } - private boolean ENRICH_FIELD_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean DEV_RRF_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 10: return this.isDevVersion(); } return true; } - private boolean ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean ENRICH_FIELD_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 11: return this.isDevVersion(); } return true; } - private boolean DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 12: return this.isDevVersion(); } return true; } - private boolean FROM_SELECTOR_sempred(RuleContext _localctx, int predIndex) { + private boolean DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 13: return this.isDevVersion(); } return true; } - private boolean MVEXPAND_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean FROM_SELECTOR_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 14: return this.isDevVersion(); } return true; } - private boolean MVEXPAND_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean MVEXPAND_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 15: return this.isDevVersion(); } return true; } - private boolean PROJECT_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean MVEXPAND_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 16: return this.isDevVersion(); } return true; } - private boolean PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean PROJECT_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 17: return this.isDevVersion(); } return true; } - private boolean RENAME_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 18: return this.isDevVersion(); } return true; } - private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + private boolean RENAME_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { switch (predIndex) { case 19: return this.isDevVersion(); } return true; } + private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _localctx, int predIndex) { + switch (predIndex) { + case 20: + return this.isDevVersion(); + } + return true; + } public static final String _serializedATN = - "\u0004\u0000\u0088\u06cf\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+ + "\u0004\u0000\u0089\u06eb\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"+ @@ -494,1090 +503,1109 @@ private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _lo "\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\u0002\u00e5\u0007\u00e5\u0002\u00e6\u0007"+ - "\u00e6\u0002\u00e7\u0007\u00e7\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ - "\u0000\u0005\u0000\u01e5\b\u0000\n\u0000\f\u0000\u01e8\t\u0000\u0001\u0000"+ - "\u0003\u0000\u01eb\b\u0000\u0001\u0000\u0003\u0000\u01ee\b\u0000\u0001"+ - "\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0005\u0001\u01f7\b\u0001\n\u0001\f\u0001\u01fa\t\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0002\u0004\u0002"+ - "\u0202\b\u0002\u000b\u0002\f\u0002\u0203\u0001\u0002\u0001\u0002\u0001"+ + "\u00e6\u0002\u00e7\u0007\u00e7\u0002\u00e8\u0007\u00e8\u0002\u00e9\u0007"+ + "\u00e9\u0002\u00ea\u0007\u00ea\u0002\u00eb\u0007\u00eb\u0001\u0000\u0001"+ + "\u0000\u0001\u0000\u0001\u0000\u0005\u0000\u01ed\b\u0000\n\u0000\f\u0000"+ + "\u01f0\t\u0000\u0001\u0000\u0003\u0000\u01f3\b\u0000\u0001\u0000\u0003"+ + "\u0000\u01f6\b\u0000\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0001\u0005\u0001\u01ff\b\u0001\n\u0001\f\u0001"+ + "\u0202\t\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0002\u0004\u0002\u020a\b\u0002\u000b\u0002\f\u0002\u020b\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\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\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"+ - "\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"+ + "\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\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\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\u0010\u0001\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0011\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\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001"+ - "\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001"+ - "\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\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"+ + "\u000f\u0001\u000f\u0001\u000f\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\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\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001"+ + "\u0014\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"+ "\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\u001a\u0001"+ - "\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001"+ + "\u0018\u0001\u0018\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\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"+ + "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001"+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ - "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0004\u001e\u02fd"+ - "\b\u001e\u000b\u001e\f\u001e\u02fe\u0001\u001e\u0001\u001e\u0001\u001f"+ - "\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"+ - ",\u0001,\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001.\u0004.\u0345"+ - "\b.\u000b.\f.\u0346\u0001.\u0001.\u0003.\u034b\b.\u0001.\u0004.\u034e"+ - "\b.\u000b.\f.\u034f\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u0001"+ + "\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001d\u0001"+ + "\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+ + "\u001e\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0004\u001f\u030f"+ + "\b\u001f\u000b\u001f\f\u001f\u0310\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,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001-\u0001-\u0001"+ + ".\u0001.\u0001/\u0004/\u0355\b/\u000b/\f/\u0356\u0001/\u0001/\u0003/\u035b"+ + "\b/\u0001/\u0004/\u035e\b/\u000b/\f/\u035f\u00010\u00010\u00010\u0001"+ "0\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00012\u00013\u0001"+ - "3\u00013\u00013\u00013\u00013\u00014\u00014\u00014\u00014\u00015\u0001"+ + "3\u00013\u00013\u00014\u00014\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=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001"+ ">\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0001A\u0001"+ - "A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001"+ - "C\u0001C\u0001C\u0004C\u03ac\bC\u000bC\fC\u03ad\u0001D\u0001D\u0001D\u0001"+ - "D\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G\u0001"+ - "G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001I\u0001"+ - "I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001K\u0001"+ - "K\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001O\u0001"+ - "O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0003Q\u03e1\bQ\u0001Q\u0004Q\u03e4"+ - "\bQ\u000bQ\fQ\u03e5\u0001R\u0001R\u0001S\u0001S\u0001T\u0001T\u0001T\u0003"+ - "T\u03ef\bT\u0001U\u0001U\u0001V\u0001V\u0001V\u0003V\u03f6\bV\u0001W\u0001"+ - "W\u0001W\u0005W\u03fb\bW\nW\fW\u03fe\tW\u0001W\u0001W\u0001W\u0001W\u0001"+ - "W\u0001W\u0005W\u0406\bW\nW\fW\u0409\tW\u0001W\u0001W\u0001W\u0001W\u0001"+ - "W\u0003W\u0410\bW\u0001W\u0003W\u0413\bW\u0003W\u0415\bW\u0001X\u0004"+ - "X\u0418\bX\u000bX\fX\u0419\u0001Y\u0004Y\u041d\bY\u000bY\fY\u041e\u0001"+ - "Y\u0001Y\u0005Y\u0423\bY\nY\fY\u0426\tY\u0001Y\u0001Y\u0004Y\u042a\bY"+ - "\u000bY\fY\u042b\u0001Y\u0004Y\u042f\bY\u000bY\fY\u0430\u0001Y\u0001Y"+ - "\u0005Y\u0435\bY\nY\fY\u0438\tY\u0003Y\u043a\bY\u0001Y\u0001Y\u0001Y\u0001"+ - "Y\u0004Y\u0440\bY\u000bY\fY\u0441\u0001Y\u0001Y\u0003Y\u0446\bY\u0001"+ - "Z\u0001Z\u0001Z\u0001[\u0001[\u0001[\u0001[\u0001\\\u0001\\\u0001\\\u0001"+ - "\\\u0001]\u0001]\u0001^\u0001^\u0001^\u0001_\u0001_\u0001`\u0001`\u0001"+ - "a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001c\u0001c\u0001c\u0001"+ - "c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001d\u0001d\u0001e\u0001"+ - "e\u0001e\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001g\u0001"+ - "h\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001j\u0001"+ - "j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001k\u0001"+ - "l\u0001l\u0001l\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001n\u0001"+ - "n\u0001o\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001q\u0001"+ - "q\u0001q\u0001r\u0001r\u0001r\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+ - "u\u0001u\u0001v\u0001v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001y\u0001"+ - "y\u0001z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001~\u0001"+ - "~\u0001~\u0001~\u0001\u007f\u0001\u007f\u0001\u007f\u0001\u007f\u0001"+ - "\u0080\u0001\u0080\u0001\u0080\u0003\u0080\u04ca\b\u0080\u0001\u0080\u0005"+ - "\u0080\u04cd\b\u0080\n\u0080\f\u0080\u04d0\t\u0080\u0001\u0080\u0001\u0080"+ - "\u0004\u0080\u04d4\b\u0080\u000b\u0080\f\u0080\u04d5\u0003\u0080\u04d8"+ - "\b\u0080\u0001\u0081\u0001\u0081\u0001\u0081\u0003\u0081\u04dd\b\u0081"+ - "\u0001\u0081\u0005\u0081\u04e0\b\u0081\n\u0081\f\u0081\u04e3\t\u0081\u0001"+ - "\u0081\u0001\u0081\u0004\u0081\u04e7\b\u0081\u000b\u0081\f\u0081\u04e8"+ - "\u0003\u0081\u04eb\b\u0081\u0001\u0082\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"+ - "\u0005\u0086\u0503\b\u0086\n\u0086\f\u0086\u0506\t\u0086\u0001\u0086\u0001"+ - "\u0086\u0003\u0086\u050a\b\u0086\u0001\u0086\u0004\u0086\u050d\b\u0086"+ - "\u000b\u0086\f\u0086\u050e\u0003\u0086\u0511\b\u0086\u0001\u0087\u0001"+ - "\u0087\u0004\u0087\u0515\b\u0087\u000b\u0087\f\u0087\u0516\u0001\u0087"+ - "\u0001\u0087\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\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\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\u0093\u0001\u0093\u0001\u0093\u0001\u0093\u0001\u0093"+ - "\u0001\u0094\u0001\u0094\u0001\u0094\u0003\u0094\u0553\b\u0094\u0001\u0095"+ - "\u0004\u0095\u0556\b\u0095\u000b\u0095\f\u0095\u0557\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"+ - "\u0099\u0001\u0099\u0001\u0099\u0001\u009a\u0001\u009a\u0001\u009a\u0001"+ - "\u009a\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009b\u0001"+ - "\u009c\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\u00a0\u0001\u00a1\u0001\u00a1\u0001"+ - "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+ - "\u00a2\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001\u00a3\u0001"+ - "\u00a3\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\u0001"+ - "\u00a4\u0001\u00a4\u0001\u00a4\u0001\u00a4\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\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\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\u00c0\u0001\u00c0\u0001\u00c0\u0001"+ - "\u00c0\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c1\u0001\u00c2\u0001"+ - "\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\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\u00c9\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"+ - "\u00ce\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001"+ - "\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d0\u0003\u00d0\u065b\b\u00d0\u0001"+ - "\u00d1\u0001\u00d1\u0003\u00d1\u065f\b\u00d1\u0001\u00d1\u0005\u00d1\u0662"+ - "\b\u00d1\n\u00d1\f\u00d1\u0665\t\u00d1\u0001\u00d1\u0001\u00d1\u0003\u00d1"+ - "\u0669\b\u00d1\u0001\u00d1\u0004\u00d1\u066c\b\u00d1\u000b\u00d1\f\u00d1"+ - "\u066d\u0003\u00d1\u0670\b\u00d1\u0001\u00d2\u0001\u00d2\u0004\u00d2\u0674"+ - "\b\u00d2\u000b\u00d2\f\u00d2\u0675\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\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\u00db\u0001\u00dc\u0001\u00dc"+ - "\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd"+ - "\u0001\u00dd\u0001\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df"+ - "\u0001\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0"+ - "\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e2"+ + "A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001"+ + "C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001D\u0004D\u03bc\bD\u000bD\fD"+ + "\u03bd\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001G"+ + "\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001H\u0001I\u0001"+ + "I\u0001I\u0001I\u0001I\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001"+ + "K\u0001K\u0001L\u0001L\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0001"+ + "N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001"+ + "R\u0003R\u03f1\bR\u0001R\u0004R\u03f4\bR\u000bR\fR\u03f5\u0001S\u0001"+ + "S\u0001T\u0001T\u0001U\u0001U\u0001U\u0003U\u03ff\bU\u0001V\u0001V\u0001"+ + "W\u0001W\u0001W\u0003W\u0406\bW\u0001X\u0001X\u0001X\u0005X\u040b\bX\n"+ + "X\fX\u040e\tX\u0001X\u0001X\u0001X\u0001X\u0001X\u0001X\u0005X\u0416\b"+ + "X\nX\fX\u0419\tX\u0001X\u0001X\u0001X\u0001X\u0001X\u0003X\u0420\bX\u0001"+ + "X\u0003X\u0423\bX\u0003X\u0425\bX\u0001Y\u0004Y\u0428\bY\u000bY\fY\u0429"+ + "\u0001Z\u0004Z\u042d\bZ\u000bZ\fZ\u042e\u0001Z\u0001Z\u0005Z\u0433\bZ"+ + "\nZ\fZ\u0436\tZ\u0001Z\u0001Z\u0004Z\u043a\bZ\u000bZ\fZ\u043b\u0001Z\u0004"+ + "Z\u043f\bZ\u000bZ\fZ\u0440\u0001Z\u0001Z\u0005Z\u0445\bZ\nZ\fZ\u0448\t"+ + "Z\u0003Z\u044a\bZ\u0001Z\u0001Z\u0001Z\u0001Z\u0004Z\u0450\bZ\u000bZ\f"+ + "Z\u0451\u0001Z\u0001Z\u0003Z\u0456\bZ\u0001[\u0001[\u0001[\u0001\\\u0001"+ + "\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001"+ + "_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001"+ + "b\u0001b\u0001b\u0001c\u0001c\u0001d\u0001d\u0001e\u0001e\u0001e\u0001"+ + "e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001g\u0001g\u0001"+ + "h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001j\u0001"+ + "j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+ + "l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001"+ + "n\u0001o\u0001o\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001"+ + "q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001"+ + "s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001"+ + "v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001x\u0001y\u0001y\u0001z\u0001"+ + "z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001~\u0001~\u0001"+ + "\u007f\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0081\u0001\u0081\u0001"+ + "\u0082\u0001\u0082\u0001\u0082\u0001\u0082\u0001\u0083\u0001\u0083\u0001"+ + "\u0083\u0001\u0083\u0001\u0084\u0001\u0084\u0001\u0084\u0003\u0084\u04e5"+ + "\b\u0084\u0001\u0084\u0005\u0084\u04e8\b\u0084\n\u0084\f\u0084\u04eb\t"+ + "\u0084\u0001\u0084\u0001\u0084\u0004\u0084\u04ef\b\u0084\u000b\u0084\f"+ + "\u0084\u04f0\u0003\u0084\u04f3\b\u0084\u0001\u0085\u0001\u0085\u0001\u0085"+ + "\u0003\u0085\u04f8\b\u0085\u0001\u0085\u0005\u0085\u04fb\b\u0085\n\u0085"+ + "\f\u0085\u04fe\t\u0085\u0001\u0085\u0001\u0085\u0004\u0085\u0502\b\u0085"+ + "\u000b\u0085\f\u0085\u0503\u0003\u0085\u0506\b\u0085\u0001\u0086\u0001"+ + "\u0086\u0001\u0086\u0001\u0086\u0001\u0086\u0001\u0087\u0001\u0087\u0001"+ + "\u0087\u0001\u0087\u0001\u0087\u0001\u0088\u0001\u0088\u0001\u0088\u0001"+ + "\u0088\u0001\u0088\u0001\u0089\u0001\u0089\u0001\u0089\u0001\u0089\u0001"+ + "\u0089\u0001\u008a\u0001\u008a\u0005\u008a\u051e\b\u008a\n\u008a\f\u008a"+ + "\u0521\t\u008a\u0001\u008a\u0001\u008a\u0003\u008a\u0525\b\u008a\u0001"+ + "\u008a\u0004\u008a\u0528\b\u008a\u000b\u008a\f\u008a\u0529\u0003\u008a"+ + "\u052c\b\u008a\u0001\u008b\u0001\u008b\u0004\u008b\u0530\b\u008b\u000b"+ + "\u008b\f\u008b\u0531\u0001\u008b\u0001\u008b\u0001\u008c\u0001\u008c\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\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\u0096\u0001\u0096\u0001\u0096\u0001\u0096\u0001"+ + "\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001\u0097\u0001"+ + "\u0097\u0001\u0097\u0001\u0097\u0001\u0098\u0001\u0098\u0001\u0098\u0003"+ + "\u0098\u056e\b\u0098\u0001\u0099\u0004\u0099\u0571\b\u0099\u000b\u0099"+ + "\f\u0099\u0572\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\u009f\u0001\u00a0\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\u00a3\u0001\u00a3\u0001\u00a3"+ + "\u0001\u00a3\u0001\u00a4\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\u00a7\u0001\u00a8\u0001\u00a8\u0001\u00a8"+ + "\u0001\u00a8\u0001\u00a8\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\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\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\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\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00b9\u0001\u00ba\u0001\u00ba"+ + "\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001\u00bb\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\u00bf\u0001\u00bf\u0001\u00bf\u0001\u00bf"+ + "\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c0\u0001\u00c1\u0001\u00c1"+ + "\u0001\u00c1\u0001\u00c1\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\u00c6"+ + "\u0001\u00c7\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\u00cc\u0001\u00cc\u0001\u00cc"+ + "\u0001\u00cc\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\u00d2\u0001\u00d2"+ + "\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d3\u0001\u00d3\u0001\u00d3"+ + "\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001\u00d4\u0001\u00d4"+ + "\u0003\u00d4\u0676\b\u00d4\u0001\u00d5\u0001\u00d5\u0003\u00d5\u067a\b"+ + "\u00d5\u0001\u00d5\u0005\u00d5\u067d\b\u00d5\n\u00d5\f\u00d5\u0680\t\u00d5"+ + "\u0001\u00d5\u0001\u00d5\u0003\u00d5\u0684\b\u00d5\u0001\u00d5\u0004\u00d5"+ + "\u0687\b\u00d5\u000b\u00d5\f\u00d5\u0688\u0003\u00d5\u068b\b\u00d5\u0001"+ + "\u00d6\u0001\u00d6\u0004\u00d6\u068f\b\u00d6\u000b\u00d6\f\u00d6\u0690"+ + "\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\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\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\u00e3\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4"+ - "\u0001\u00e4\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6"+ - "\u0001\u00e6\u0001\u00e6\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7"+ - "\u0001\u00e7\u0002\u01f8\u0407\u0000\u00e8\u0010\u0001\u0012\u0002\u0014"+ - "\u0003\u0016\u0004\u0018\u0005\u001a\u0006\u001c\u0007\u001e\b \t\"\n"+ - "$\u000b&\f(\r*\u000e,\u000f.\u00100\u00112\u00124\u00136\u00148\u0015"+ - ":\u0016<\u0017>\u0018@\u0019B\u001aD\u001bF\u001cH\u001dJ\u001eL\u001f"+ - "N\u0000P\u0000R\u0000T\u0000V\u0000X\u0000Z\u0000\\ ^!`\"b\u0000d\u0000"+ - "f#h$j\u0000l%n\u0000p&r\'t(v\u0000x\u0000z\u0000|\u0000~\u0000\u0080\u0000"+ - "\u0082\u0000\u0084\u0000\u0086\u0000\u0088\u0000\u008a\u0000\u008c)\u008e"+ - "*\u0090+\u0092\u0000\u0094\u0000\u0096,\u0098-\u009a.\u009c/\u009e\u0000"+ - "\u00a0\u0000\u00a20\u00a41\u00a62\u00a83\u00aa\u0000\u00ac\u0000\u00ae"+ - "\u0000\u00b0\u0000\u00b2\u0000\u00b4\u0000\u00b6\u0000\u00b8\u0000\u00ba"+ - "\u0000\u00bc\u0000\u00be4\u00c05\u00c26\u00c47\u00c68\u00c89\u00ca:\u00cc"+ - ";\u00ce<\u00d0=\u00d2>\u00d4?\u00d6@\u00d8A\u00daB\u00dcC\u00deD\u00e0"+ - "E\u00e2F\u00e4G\u00e6H\u00e8I\u00eaJ\u00ecK\u00eeL\u00f0M\u00f2N\u00f4"+ - "O\u00f6P\u00f8Q\u00faR\u00fcS\u00feT\u0100U\u0102V\u0104W\u0106X\u0108"+ - "Y\u010aZ\u010c[\u010e\u0000\u0110\\\u0112]\u0114^\u0116_\u0118`\u011a"+ - "a\u011cb\u011e\u0000\u0120c\u0122d\u0124e\u0126f\u0128\u0000\u012a\u0000"+ - "\u012c\u0000\u012e\u0000\u0130\u0000\u0132\u0000\u0134\u0000\u0136g\u0138"+ - "\u0000\u013ah\u013c\u0000\u013e\u0000\u0140i\u0142j\u0144k\u0146\u0000"+ - "\u0148\u0000\u014al\u014cm\u014en\u0150\u0000\u0152o\u0154\u0000\u0156"+ - "\u0000\u0158p\u015a\u0000\u015c\u0000\u015e\u0000\u0160\u0000\u0162\u0000"+ - "\u0164q\u0166r\u0168s\u016a\u0000\u016c\u0000\u016e\u0000\u0170\u0000"+ - "\u0172\u0000\u0174\u0000\u0176\u0000\u0178t\u017au\u017cv\u017e\u0000"+ - "\u0180\u0000\u0182\u0000\u0184\u0000\u0186w\u0188x\u018ay\u018c\u0000"+ - "\u018e\u0000\u0190\u0000\u0192\u0000\u0194\u0000\u0196\u0000\u0198\u0000"+ - "\u019a\u0000\u019cz\u019e{\u01a0|\u01a2\u0000\u01a4\u0000\u01a6\u0000"+ - "\u01a8\u0000\u01aa\u0000\u01ac\u0000\u01ae\u0000\u01b0\u0000\u01b2\u0000"+ - "\u01b4}\u01b6~\u01b8\u007f\u01ba\u0080\u01bc\u0000\u01be\u0000\u01c0\u0000"+ - "\u01c2\u0000\u01c4\u0000\u01c6\u0000\u01c8\u0000\u01ca\u0000\u01cc\u0081"+ - "\u01ce\u0000\u01d0\u0082\u01d2\u0083\u01d4\u0084\u01d6\u0000\u01d8\u0085"+ - "\u01da\u0086\u01dc\u0087\u01de\u0088\u0010\u0000\u0001\u0002\u0003\u0004"+ - "\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f$\u0002\u0000\n\n\r\r\u0003"+ - "\u0000\t\n\r\r \u0002\u0000CCcc\u0002\u0000HHhh\u0002\u0000AAaa\u0002"+ - "\u0000NNnn\u0002\u0000GGgg\u0002\u0000EEee\u0002\u0000PPpp\u0002\u0000"+ - "OOoo\u0002\u0000IIii\u0002\u0000TTtt\u0002\u0000RRrr\u0002\u0000XXxx\u0002"+ - "\u0000LLll\u0002\u0000DDdd\u0002\u0000SSss\u0002\u0000VVvv\u0002\u0000"+ - "KKkk\u0002\u0000MMmm\u0002\u0000WWww\u0002\u0000FFff\u0002\u0000UUuu\u0006"+ - "\u0000\t\n\r\r //[[]]\u000b\u0000\t\n\r\r \"#,,//::<<>?\\\\||\u0001"+ - "\u000009\u0002\u0000AZaz\b\u0000\"\"NNRRTT\\\\nnrrtt\u0004\u0000\n\n\r"+ - "\r\"\"\\\\\u0002\u0000++--\u0001\u0000``\u0002\u0000BBbb\u0002\u0000Y"+ - "Yyy\u000b\u0000\t\n\r\r \"\",,//::==[[]]||\u0002\u0000**//\u0002\u0000"+ - "JJjj\u06ee\u0000\u0010\u0001\u0000\u0000\u0000\u0000\u0012\u0001\u0000"+ - "\u0000\u0000\u0000\u0014\u0001\u0000\u0000\u0000\u0000\u0016\u0001\u0000"+ - "\u0000\u0000\u0000\u0018\u0001\u0000\u0000\u0000\u0000\u001a\u0001\u0000"+ - "\u0000\u0000\u0000\u001c\u0001\u0000\u0000\u0000\u0000\u001e\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\u00000\u0001\u0000\u0000"+ - "\u0000\u00002\u0001\u0000\u0000\u0000\u00004\u0001\u0000\u0000\u0000\u0000"+ - "6\u0001\u0000\u0000\u0000\u00008\u0001\u0000\u0000\u0000\u0000:\u0001"+ - "\u0000\u0000\u0000\u0000<\u0001\u0000\u0000\u0000\u0000>\u0001\u0000\u0000"+ - "\u0000\u0000@\u0001\u0000\u0000\u0000\u0000B\u0001\u0000\u0000\u0000\u0000"+ - "D\u0001\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\u0000\u0000H\u0001"+ - "\u0000\u0000\u0000\u0000J\u0001\u0000\u0000\u0000\u0000L\u0001\u0000\u0000"+ - "\u0000\u0001N\u0001\u0000\u0000\u0000\u0001P\u0001\u0000\u0000\u0000\u0001"+ - "R\u0001\u0000\u0000\u0000\u0001T\u0001\u0000\u0000\u0000\u0001V\u0001"+ - "\u0000\u0000\u0000\u0001X\u0001\u0000\u0000\u0000\u0001Z\u0001\u0000\u0000"+ - "\u0000\u0001\\\u0001\u0000\u0000\u0000\u0001^\u0001\u0000\u0000\u0000"+ - "\u0001`\u0001\u0000\u0000\u0000\u0002b\u0001\u0000\u0000\u0000\u0002d"+ - "\u0001\u0000\u0000\u0000\u0002f\u0001\u0000\u0000\u0000\u0002h\u0001\u0000"+ - "\u0000\u0000\u0002l\u0001\u0000\u0000\u0000\u0002n\u0001\u0000\u0000\u0000"+ - "\u0002p\u0001\u0000\u0000\u0000\u0002r\u0001\u0000\u0000\u0000\u0002t"+ - "\u0001\u0000\u0000\u0000\u0003v\u0001\u0000\u0000\u0000\u0003x\u0001\u0000"+ - "\u0000\u0000\u0003z\u0001\u0000\u0000\u0000\u0003|\u0001\u0000\u0000\u0000"+ - "\u0003~\u0001\u0000\u0000\u0000\u0003\u0080\u0001\u0000\u0000\u0000\u0003"+ - "\u0082\u0001\u0000\u0000\u0000\u0003\u0084\u0001\u0000\u0000\u0000\u0003"+ - "\u0086\u0001\u0000\u0000\u0000\u0003\u0088\u0001\u0000\u0000\u0000\u0003"+ - "\u008a\u0001\u0000\u0000\u0000\u0003\u008c\u0001\u0000\u0000\u0000\u0003"+ - "\u008e\u0001\u0000\u0000\u0000\u0003\u0090\u0001\u0000\u0000\u0000\u0004"+ - "\u0092\u0001\u0000\u0000\u0000\u0004\u0094\u0001\u0000\u0000\u0000\u0004"+ - "\u0096\u0001\u0000\u0000\u0000\u0004\u0098\u0001\u0000\u0000\u0000\u0004"+ - "\u009a\u0001\u0000\u0000\u0000\u0004\u009c\u0001\u0000\u0000\u0000\u0005"+ - "\u009e\u0001\u0000\u0000\u0000\u0005\u00a0\u0001\u0000\u0000\u0000\u0005"+ - "\u00a2\u0001\u0000\u0000\u0000\u0005\u00a4\u0001\u0000\u0000\u0000\u0005"+ - "\u00a6\u0001\u0000\u0000\u0000\u0006\u00a8\u0001\u0000\u0000\u0000\u0006"+ - "\u00be\u0001\u0000\u0000\u0000\u0006\u00c0\u0001\u0000\u0000\u0000\u0006"+ - "\u00c2\u0001\u0000\u0000\u0000\u0006\u00c4\u0001\u0000\u0000\u0000\u0006"+ - "\u00c6\u0001\u0000\u0000\u0000\u0006\u00c8\u0001\u0000\u0000\u0000\u0006"+ - "\u00ca\u0001\u0000\u0000\u0000\u0006\u00cc\u0001\u0000\u0000\u0000\u0006"+ - "\u00ce\u0001\u0000\u0000\u0000\u0006\u00d0\u0001\u0000\u0000\u0000\u0006"+ - "\u00d2\u0001\u0000\u0000\u0000\u0006\u00d4\u0001\u0000\u0000\u0000\u0006"+ - "\u00d6\u0001\u0000\u0000\u0000\u0006\u00d8\u0001\u0000\u0000\u0000\u0006"+ - "\u00da\u0001\u0000\u0000\u0000\u0006\u00dc\u0001\u0000\u0000\u0000\u0006"+ - "\u00de\u0001\u0000\u0000\u0000\u0006\u00e0\u0001\u0000\u0000\u0000\u0006"+ - "\u00e2\u0001\u0000\u0000\u0000\u0006\u00e4\u0001\u0000\u0000\u0000\u0006"+ - "\u00e6\u0001\u0000\u0000\u0000\u0006\u00e8\u0001\u0000\u0000\u0000\u0006"+ - "\u00ea\u0001\u0000\u0000\u0000\u0006\u00ec\u0001\u0000\u0000\u0000\u0006"+ - "\u00ee\u0001\u0000\u0000\u0000\u0006\u00f0\u0001\u0000\u0000\u0000\u0006"+ - "\u00f2\u0001\u0000\u0000\u0000\u0006\u00f4\u0001\u0000\u0000\u0000\u0006"+ - "\u00f6\u0001\u0000\u0000\u0000\u0006\u00f8\u0001\u0000\u0000\u0000\u0006"+ - "\u00fa\u0001\u0000\u0000\u0000\u0006\u00fc\u0001\u0000\u0000\u0000\u0006"+ - "\u00fe\u0001\u0000\u0000\u0000\u0006\u0100\u0001\u0000\u0000\u0000\u0006"+ - "\u0102\u0001\u0000\u0000\u0000\u0006\u0104\u0001\u0000\u0000\u0000\u0006"+ - "\u0106\u0001\u0000\u0000\u0000\u0006\u0108\u0001\u0000\u0000\u0000\u0006"+ - "\u010a\u0001\u0000\u0000\u0000\u0006\u010c\u0001\u0000\u0000\u0000\u0006"+ - "\u010e\u0001\u0000\u0000\u0000\u0006\u0110\u0001\u0000\u0000\u0000\u0006"+ - "\u0112\u0001\u0000\u0000\u0000\u0006\u0114\u0001\u0000\u0000\u0000\u0006"+ - "\u0116\u0001\u0000\u0000\u0000\u0006\u0118\u0001\u0000\u0000\u0000\u0006"+ - "\u011a\u0001\u0000\u0000\u0000\u0006\u011c\u0001\u0000\u0000\u0000\u0006"+ - "\u0120\u0001\u0000\u0000\u0000\u0006\u0122\u0001\u0000\u0000\u0000\u0006"+ - "\u0124\u0001\u0000\u0000\u0000\u0006\u0126\u0001\u0000\u0000\u0000\u0007"+ - "\u0128\u0001\u0000\u0000\u0000\u0007\u012a\u0001\u0000\u0000\u0000\u0007"+ - "\u012c\u0001\u0000\u0000\u0000\u0007\u012e\u0001\u0000\u0000\u0000\u0007"+ - "\u0130\u0001\u0000\u0000\u0000\u0007\u0132\u0001\u0000\u0000\u0000\u0007"+ - "\u0134\u0001\u0000\u0000\u0000\u0007\u0136\u0001\u0000\u0000\u0000\u0007"+ - "\u013a\u0001\u0000\u0000\u0000\u0007\u013c\u0001\u0000\u0000\u0000\u0007"+ - "\u013e\u0001\u0000\u0000\u0000\u0007\u0140\u0001\u0000\u0000\u0000\u0007"+ - "\u0142\u0001\u0000\u0000\u0000\u0007\u0144\u0001\u0000\u0000\u0000\b\u0146"+ - "\u0001\u0000\u0000\u0000\b\u0148\u0001\u0000\u0000\u0000\b\u014a\u0001"+ - "\u0000\u0000\u0000\b\u014c\u0001\u0000\u0000\u0000\b\u014e\u0001\u0000"+ - "\u0000\u0000\t\u0150\u0001\u0000\u0000\u0000\t\u0152\u0001\u0000\u0000"+ - "\u0000\t\u0154\u0001\u0000\u0000\u0000\t\u0156\u0001\u0000\u0000\u0000"+ - "\t\u0158\u0001\u0000\u0000\u0000\t\u015a\u0001\u0000\u0000\u0000\t\u015c"+ - "\u0001\u0000\u0000\u0000\t\u015e\u0001\u0000\u0000\u0000\t\u0160\u0001"+ - "\u0000\u0000\u0000\t\u0162\u0001\u0000\u0000\u0000\t\u0164\u0001\u0000"+ - "\u0000\u0000\t\u0166\u0001\u0000\u0000\u0000\t\u0168\u0001\u0000\u0000"+ - "\u0000\n\u016a\u0001\u0000\u0000\u0000\n\u016c\u0001\u0000\u0000\u0000"+ - "\n\u016e\u0001\u0000\u0000\u0000\n\u0170\u0001\u0000\u0000\u0000\n\u0172"+ - "\u0001\u0000\u0000\u0000\n\u0174\u0001\u0000\u0000\u0000\n\u0176\u0001"+ - "\u0000\u0000\u0000\n\u0178\u0001\u0000\u0000\u0000\n\u017a\u0001\u0000"+ - "\u0000\u0000\n\u017c\u0001\u0000\u0000\u0000\u000b\u017e\u0001\u0000\u0000"+ - "\u0000\u000b\u0180\u0001\u0000\u0000\u0000\u000b\u0182\u0001\u0000\u0000"+ - "\u0000\u000b\u0184\u0001\u0000\u0000\u0000\u000b\u0186\u0001\u0000\u0000"+ - "\u0000\u000b\u0188\u0001\u0000\u0000\u0000\u000b\u018a\u0001\u0000\u0000"+ - "\u0000\f\u018c\u0001\u0000\u0000\u0000\f\u018e\u0001\u0000\u0000\u0000"+ - "\f\u0190\u0001\u0000\u0000\u0000\f\u0192\u0001\u0000\u0000\u0000\f\u0194"+ - "\u0001\u0000\u0000\u0000\f\u0196\u0001\u0000\u0000\u0000\f\u0198\u0001"+ - "\u0000\u0000\u0000\f\u019a\u0001\u0000\u0000\u0000\f\u019c\u0001\u0000"+ - "\u0000\u0000\f\u019e\u0001\u0000\u0000\u0000\f\u01a0\u0001\u0000\u0000"+ - "\u0000\r\u01a2\u0001\u0000\u0000\u0000\r\u01a4\u0001\u0000\u0000\u0000"+ - "\r\u01a6\u0001\u0000\u0000\u0000\r\u01a8\u0001\u0000\u0000\u0000\r\u01aa"+ - "\u0001\u0000\u0000\u0000\r\u01ac\u0001\u0000\u0000\u0000\r\u01ae\u0001"+ - "\u0000\u0000\u0000\r\u01b4\u0001\u0000\u0000\u0000\r\u01b6\u0001\u0000"+ - "\u0000\u0000\r\u01b8\u0001\u0000\u0000\u0000\r\u01ba\u0001\u0000\u0000"+ - "\u0000\u000e\u01bc\u0001\u0000\u0000\u0000\u000e\u01be\u0001\u0000\u0000"+ - "\u0000\u000e\u01c0\u0001\u0000\u0000\u0000\u000e\u01c2\u0001\u0000\u0000"+ - "\u0000\u000e\u01c4\u0001\u0000\u0000\u0000\u000e\u01c6\u0001\u0000\u0000"+ - "\u0000\u000e\u01c8\u0001\u0000\u0000\u0000\u000e\u01ca\u0001\u0000\u0000"+ - "\u0000\u000e\u01cc\u0001\u0000\u0000\u0000\u000e\u01ce\u0001\u0000\u0000"+ - "\u0000\u000e\u01d0\u0001\u0000\u0000\u0000\u000e\u01d2\u0001\u0000\u0000"+ - "\u0000\u000e\u01d4\u0001\u0000\u0000\u0000\u000f\u01d6\u0001\u0000\u0000"+ - "\u0000\u000f\u01d8\u0001\u0000\u0000\u0000\u000f\u01da\u0001\u0000\u0000"+ - "\u0000\u000f\u01dc\u0001\u0000\u0000\u0000\u000f\u01de\u0001\u0000\u0000"+ - "\u0000\u0010\u01e0\u0001\u0000\u0000\u0000\u0012\u01f1\u0001\u0000\u0000"+ - "\u0000\u0014\u0201\u0001\u0000\u0000\u0000\u0016\u0207\u0001\u0000\u0000"+ - "\u0000\u0018\u0217\u0001\u0000\u0000\u0000\u001a\u0220\u0001\u0000\u0000"+ - "\u0000\u001c\u022a\u0001\u0000\u0000\u0000\u001e\u0234\u0001\u0000\u0000"+ - "\u0000 \u023b\u0001\u0000\u0000\u0000\"\u0242\u0001\u0000\u0000\u0000"+ - "$\u024a\u0001\u0000\u0000\u0000&\u0250\u0001\u0000\u0000\u0000(\u0257"+ - "\u0001\u0000\u0000\u0000*\u025f\u0001\u0000\u0000\u0000,\u0267\u0001\u0000"+ - "\u0000\u0000.\u0276\u0001\u0000\u0000\u00000\u027d\u0001\u0000\u0000\u0000"+ - "2\u0288\u0001\u0000\u0000\u00004\u0290\u0001\u0000\u0000\u00006\u0299"+ - "\u0001\u0000\u0000\u00008\u02a1\u0001\u0000\u0000\u0000:\u02a9\u0001\u0000"+ - "\u0000\u0000<\u02b2\u0001\u0000\u0000\u0000>\u02be\u0001\u0000\u0000\u0000"+ - "@\u02ca\u0001\u0000\u0000\u0000B\u02d1\u0001\u0000\u0000\u0000D\u02d8"+ - "\u0001\u0000\u0000\u0000F\u02e4\u0001\u0000\u0000\u0000H\u02eb\u0001\u0000"+ - "\u0000\u0000J\u02f4\u0001\u0000\u0000\u0000L\u02fc\u0001\u0000\u0000\u0000"+ - "N\u0302\u0001\u0000\u0000\u0000P\u0307\u0001\u0000\u0000\u0000R\u030b"+ - "\u0001\u0000\u0000\u0000T\u030f\u0001\u0000\u0000\u0000V\u0313\u0001\u0000"+ - "\u0000\u0000X\u0317\u0001\u0000\u0000\u0000Z\u031b\u0001\u0000\u0000\u0000"+ - "\\\u031f\u0001\u0000\u0000\u0000^\u0323\u0001\u0000\u0000\u0000`\u0327"+ - "\u0001\u0000\u0000\u0000b\u032b\u0001\u0000\u0000\u0000d\u0330\u0001\u0000"+ - "\u0000\u0000f\u0335\u0001\u0000\u0000\u0000h\u033a\u0001\u0000\u0000\u0000"+ - "j\u0341\u0001\u0000\u0000\u0000l\u034a\u0001\u0000\u0000\u0000n\u0351"+ - "\u0001\u0000\u0000\u0000p\u0355\u0001\u0000\u0000\u0000r\u0359\u0001\u0000"+ - "\u0000\u0000t\u035d\u0001\u0000\u0000\u0000v\u0361\u0001\u0000\u0000\u0000"+ - "x\u0367\u0001\u0000\u0000\u0000z\u036b\u0001\u0000\u0000\u0000|\u036f"+ - "\u0001\u0000\u0000\u0000~\u0373\u0001\u0000\u0000\u0000\u0080\u0377\u0001"+ - "\u0000\u0000\u0000\u0082\u037b\u0001\u0000\u0000\u0000\u0084\u037f\u0001"+ - "\u0000\u0000\u0000\u0086\u0383\u0001\u0000\u0000\u0000\u0088\u0387\u0001"+ - "\u0000\u0000\u0000\u008a\u038c\u0001\u0000\u0000\u0000\u008c\u0391\u0001"+ - "\u0000\u0000\u0000\u008e\u0395\u0001\u0000\u0000\u0000\u0090\u0399\u0001"+ - "\u0000\u0000\u0000\u0092\u039d\u0001\u0000\u0000\u0000\u0094\u03a2\u0001"+ - "\u0000\u0000\u0000\u0096\u03ab\u0001\u0000\u0000\u0000\u0098\u03af\u0001"+ - "\u0000\u0000\u0000\u009a\u03b3\u0001\u0000\u0000\u0000\u009c\u03b7\u0001"+ - "\u0000\u0000\u0000\u009e\u03bb\u0001\u0000\u0000\u0000\u00a0\u03c0\u0001"+ - "\u0000\u0000\u0000\u00a2\u03c5\u0001\u0000\u0000\u0000\u00a4\u03c9\u0001"+ - "\u0000\u0000\u0000\u00a6\u03cd\u0001\u0000\u0000\u0000\u00a8\u03d1\u0001"+ - "\u0000\u0000\u0000\u00aa\u03d5\u0001\u0000\u0000\u0000\u00ac\u03d7\u0001"+ - "\u0000\u0000\u0000\u00ae\u03d9\u0001\u0000\u0000\u0000\u00b0\u03dc\u0001"+ - "\u0000\u0000\u0000\u00b2\u03de\u0001\u0000\u0000\u0000\u00b4\u03e7\u0001"+ - "\u0000\u0000\u0000\u00b6\u03e9\u0001\u0000\u0000\u0000\u00b8\u03ee\u0001"+ - "\u0000\u0000\u0000\u00ba\u03f0\u0001\u0000\u0000\u0000\u00bc\u03f5\u0001"+ - "\u0000\u0000\u0000\u00be\u0414\u0001\u0000\u0000\u0000\u00c0\u0417\u0001"+ - "\u0000\u0000\u0000\u00c2\u0445\u0001\u0000\u0000\u0000\u00c4\u0447\u0001"+ - "\u0000\u0000\u0000\u00c6\u044a\u0001\u0000\u0000\u0000\u00c8\u044e\u0001"+ - "\u0000\u0000\u0000\u00ca\u0452\u0001\u0000\u0000\u0000\u00cc\u0454\u0001"+ - "\u0000\u0000\u0000\u00ce\u0457\u0001\u0000\u0000\u0000\u00d0\u0459\u0001"+ - "\u0000\u0000\u0000\u00d2\u045b\u0001\u0000\u0000\u0000\u00d4\u0460\u0001"+ - "\u0000\u0000\u0000\u00d6\u0462\u0001\u0000\u0000\u0000\u00d8\u0468\u0001"+ - "\u0000\u0000\u0000\u00da\u046e\u0001\u0000\u0000\u0000\u00dc\u0471\u0001"+ - "\u0000\u0000\u0000\u00de\u0474\u0001\u0000\u0000\u0000\u00e0\u0479\u0001"+ - "\u0000\u0000\u0000\u00e2\u047e\u0001\u0000\u0000\u0000\u00e4\u0482\u0001"+ - "\u0000\u0000\u0000\u00e6\u0487\u0001\u0000\u0000\u0000\u00e8\u048d\u0001"+ - "\u0000\u0000\u0000\u00ea\u0490\u0001\u0000\u0000\u0000\u00ec\u0492\u0001"+ - "\u0000\u0000\u0000\u00ee\u0498\u0001\u0000\u0000\u0000\u00f0\u049d\u0001"+ - "\u0000\u0000\u0000\u00f2\u04a0\u0001\u0000\u0000\u0000\u00f4\u04a3\u0001"+ - "\u0000\u0000\u0000\u00f6\u04a6\u0001\u0000\u0000\u0000\u00f8\u04a8\u0001"+ - "\u0000\u0000\u0000\u00fa\u04ab\u0001\u0000\u0000\u0000\u00fc\u04ad\u0001"+ - "\u0000\u0000\u0000\u00fe\u04b0\u0001\u0000\u0000\u0000\u0100\u04b2\u0001"+ - "\u0000\u0000\u0000\u0102\u04b4\u0001\u0000\u0000\u0000\u0104\u04b6\u0001"+ - "\u0000\u0000\u0000\u0106\u04b8\u0001\u0000\u0000\u0000\u0108\u04ba\u0001"+ - "\u0000\u0000\u0000\u010a\u04bc\u0001\u0000\u0000\u0000\u010c\u04be\u0001"+ - "\u0000\u0000\u0000\u010e\u04c2\u0001\u0000\u0000\u0000\u0110\u04d7\u0001"+ - "\u0000\u0000\u0000\u0112\u04ea\u0001\u0000\u0000\u0000\u0114\u04ec\u0001"+ - "\u0000\u0000\u0000\u0116\u04f1\u0001\u0000\u0000\u0000\u0118\u04f6\u0001"+ - "\u0000\u0000\u0000\u011a\u04fb\u0001\u0000\u0000\u0000\u011c\u0510\u0001"+ - "\u0000\u0000\u0000\u011e\u0512\u0001\u0000\u0000\u0000\u0120\u051a\u0001"+ - "\u0000\u0000\u0000\u0122\u051c\u0001\u0000\u0000\u0000\u0124\u0520\u0001"+ - "\u0000\u0000\u0000\u0126\u0524\u0001\u0000\u0000\u0000\u0128\u0528\u0001"+ - "\u0000\u0000\u0000\u012a\u052d\u0001\u0000\u0000\u0000\u012c\u0531\u0001"+ - "\u0000\u0000\u0000\u012e\u0535\u0001\u0000\u0000\u0000\u0130\u0539\u0001"+ - "\u0000\u0000\u0000\u0132\u053e\u0001\u0000\u0000\u0000\u0134\u0542\u0001"+ - "\u0000\u0000\u0000\u0136\u0546\u0001\u0000\u0000\u0000\u0138\u0552\u0001"+ - "\u0000\u0000\u0000\u013a\u0555\u0001\u0000\u0000\u0000\u013c\u0559\u0001"+ - "\u0000\u0000\u0000\u013e\u055d\u0001\u0000\u0000\u0000\u0140\u0561\u0001"+ - "\u0000\u0000\u0000\u0142\u0565\u0001\u0000\u0000\u0000\u0144\u0569\u0001"+ - "\u0000\u0000\u0000\u0146\u056d\u0001\u0000\u0000\u0000\u0148\u0572\u0001"+ - "\u0000\u0000\u0000\u014a\u0577\u0001\u0000\u0000\u0000\u014c\u057b\u0001"+ - "\u0000\u0000\u0000\u014e\u057f\u0001\u0000\u0000\u0000\u0150\u0583\u0001"+ - "\u0000\u0000\u0000\u0152\u0588\u0001\u0000\u0000\u0000\u0154\u058d\u0001"+ - "\u0000\u0000\u0000\u0156\u0591\u0001\u0000\u0000\u0000\u0158\u0597\u0001"+ - "\u0000\u0000\u0000\u015a\u05a0\u0001\u0000\u0000\u0000\u015c\u05a4\u0001"+ - "\u0000\u0000\u0000\u015e\u05a8\u0001\u0000\u0000\u0000\u0160\u05ac\u0001"+ - "\u0000\u0000\u0000\u0162\u05b0\u0001\u0000\u0000\u0000\u0164\u05b4\u0001"+ - "\u0000\u0000\u0000\u0166\u05b8\u0001\u0000\u0000\u0000\u0168\u05bc\u0001"+ - "\u0000\u0000\u0000\u016a\u05c0\u0001\u0000\u0000\u0000\u016c\u05c5\u0001"+ - "\u0000\u0000\u0000\u016e\u05c9\u0001\u0000\u0000\u0000\u0170\u05cd\u0001"+ - "\u0000\u0000\u0000\u0172\u05d1\u0001\u0000\u0000\u0000\u0174\u05d6\u0001"+ - "\u0000\u0000\u0000\u0176\u05da\u0001\u0000\u0000\u0000\u0178\u05de\u0001"+ - "\u0000\u0000\u0000\u017a\u05e2\u0001\u0000\u0000\u0000\u017c\u05e6\u0001"+ - "\u0000\u0000\u0000\u017e\u05ea\u0001\u0000\u0000\u0000\u0180\u05f0\u0001"+ - "\u0000\u0000\u0000\u0182\u05f4\u0001\u0000\u0000\u0000\u0184\u05f8\u0001"+ - "\u0000\u0000\u0000\u0186\u05fc\u0001\u0000\u0000\u0000\u0188\u0600\u0001"+ - "\u0000\u0000\u0000\u018a\u0604\u0001\u0000\u0000\u0000\u018c\u0608\u0001"+ - "\u0000\u0000\u0000\u018e\u060d\u0001\u0000\u0000\u0000\u0190\u0611\u0001"+ - "\u0000\u0000\u0000\u0192\u0615\u0001\u0000\u0000\u0000\u0194\u0619\u0001"+ - "\u0000\u0000\u0000\u0196\u061e\u0001\u0000\u0000\u0000\u0198\u0623\u0001"+ - "\u0000\u0000\u0000\u019a\u0627\u0001\u0000\u0000\u0000\u019c\u062b\u0001"+ - "\u0000\u0000\u0000\u019e\u062f\u0001\u0000\u0000\u0000\u01a0\u0633\u0001"+ - "\u0000\u0000\u0000\u01a2\u0637\u0001\u0000\u0000\u0000\u01a4\u063c\u0001"+ - "\u0000\u0000\u0000\u01a6\u0640\u0001\u0000\u0000\u0000\u01a8\u0644\u0001"+ - "\u0000\u0000\u0000\u01aa\u0648\u0001\u0000\u0000\u0000\u01ac\u064c\u0001"+ - "\u0000\u0000\u0000\u01ae\u0651\u0001\u0000\u0000\u0000\u01b0\u065a\u0001"+ - "\u0000\u0000\u0000\u01b2\u066f\u0001\u0000\u0000\u0000\u01b4\u0673\u0001"+ - "\u0000\u0000\u0000\u01b6\u0677\u0001\u0000\u0000\u0000\u01b8\u067b\u0001"+ - "\u0000\u0000\u0000\u01ba\u067f\u0001\u0000\u0000\u0000\u01bc\u0683\u0001"+ - "\u0000\u0000\u0000\u01be\u0688\u0001\u0000\u0000\u0000\u01c0\u068c\u0001"+ - "\u0000\u0000\u0000\u01c2\u0690\u0001\u0000\u0000\u0000\u01c4\u0694\u0001"+ - "\u0000\u0000\u0000\u01c6\u0698\u0001\u0000\u0000\u0000\u01c8\u069c\u0001"+ - "\u0000\u0000\u0000\u01ca\u06a1\u0001\u0000\u0000\u0000\u01cc\u06a6\u0001"+ - "\u0000\u0000\u0000\u01ce\u06a9\u0001\u0000\u0000\u0000\u01d0\u06ad\u0001"+ - "\u0000\u0000\u0000\u01d2\u06b1\u0001\u0000\u0000\u0000\u01d4\u06b5\u0001"+ - "\u0000\u0000\u0000\u01d6\u06b9\u0001\u0000\u0000\u0000\u01d8\u06be\u0001"+ - "\u0000\u0000\u0000\u01da\u06c3\u0001\u0000\u0000\u0000\u01dc\u06c7\u0001"+ - "\u0000\u0000\u0000\u01de\u06cb\u0001\u0000\u0000\u0000\u01e0\u01e1\u0005"+ - "/\u0000\u0000\u01e1\u01e2\u0005/\u0000\u0000\u01e2\u01e6\u0001\u0000\u0000"+ - "\u0000\u01e3\u01e5\b\u0000\u0000\u0000\u01e4\u01e3\u0001\u0000\u0000\u0000"+ - "\u01e5\u01e8\u0001\u0000\u0000\u0000\u01e6\u01e4\u0001\u0000\u0000\u0000"+ - "\u01e6\u01e7\u0001\u0000\u0000\u0000\u01e7\u01ea\u0001\u0000\u0000\u0000"+ - "\u01e8\u01e6\u0001\u0000\u0000\u0000\u01e9\u01eb\u0005\r\u0000\u0000\u01ea"+ - "\u01e9\u0001\u0000\u0000\u0000\u01ea\u01eb\u0001\u0000\u0000\u0000\u01eb"+ - "\u01ed\u0001\u0000\u0000\u0000\u01ec\u01ee\u0005\n\u0000\u0000\u01ed\u01ec"+ - "\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000\u0000\u0000\u01ee\u01ef"+ - "\u0001\u0000\u0000\u0000\u01ef\u01f0\u0006\u0000\u0000\u0000\u01f0\u0011"+ - "\u0001\u0000\u0000\u0000\u01f1\u01f2\u0005/\u0000\u0000\u01f2\u01f3\u0005"+ - "*\u0000\u0000\u01f3\u01f8\u0001\u0000\u0000\u0000\u01f4\u01f7\u0003\u0012"+ - "\u0001\u0000\u01f5\u01f7\t\u0000\u0000\u0000\u01f6\u01f4\u0001\u0000\u0000"+ - "\u0000\u01f6\u01f5\u0001\u0000\u0000\u0000\u01f7\u01fa\u0001\u0000\u0000"+ - "\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f8\u01f6\u0001\u0000\u0000"+ - "\u0000\u01f9\u01fb\u0001\u0000\u0000\u0000\u01fa\u01f8\u0001\u0000\u0000"+ - "\u0000\u01fb\u01fc\u0005*\u0000\u0000\u01fc\u01fd\u0005/\u0000\u0000\u01fd"+ - "\u01fe\u0001\u0000\u0000\u0000\u01fe\u01ff\u0006\u0001\u0000\u0000\u01ff"+ - "\u0013\u0001\u0000\u0000\u0000\u0200\u0202\u0007\u0001\u0000\u0000\u0201"+ - "\u0200\u0001\u0000\u0000\u0000\u0202\u0203\u0001\u0000\u0000\u0000\u0203"+ - "\u0201\u0001\u0000\u0000\u0000\u0203\u0204\u0001\u0000\u0000\u0000\u0204"+ - "\u0205\u0001\u0000\u0000\u0000\u0205\u0206\u0006\u0002\u0000\u0000\u0206"+ - "\u0015\u0001\u0000\u0000\u0000\u0207\u0208\u0004\u0003\u0000\u0000\u0208"+ - "\u0209\u0007\u0002\u0000\u0000\u0209\u020a\u0007\u0003\u0000\u0000\u020a"+ - "\u020b\u0007\u0004\u0000\u0000\u020b\u020c\u0007\u0005\u0000\u0000\u020c"+ - "\u020d\u0007\u0006\u0000\u0000\u020d\u020e\u0007\u0007\u0000\u0000\u020e"+ - "\u020f\u0005_\u0000\u0000\u020f\u0210\u0007\b\u0000\u0000\u0210\u0211"+ - "\u0007\t\u0000\u0000\u0211\u0212\u0007\n\u0000\u0000\u0212\u0213\u0007"+ - "\u0005\u0000\u0000\u0213\u0214\u0007\u000b\u0000\u0000\u0214\u0215\u0001"+ - "\u0000\u0000\u0000\u0215\u0216\u0006\u0003\u0001\u0000\u0216\u0017\u0001"+ - "\u0000\u0000\u0000\u0217\u0218\u0007\u0007\u0000\u0000\u0218\u0219\u0007"+ - "\u0005\u0000\u0000\u0219\u021a\u0007\f\u0000\u0000\u021a\u021b\u0007\n"+ - "\u0000\u0000\u021b\u021c\u0007\u0002\u0000\u0000\u021c\u021d\u0007\u0003"+ - "\u0000\u0000\u021d\u021e\u0001\u0000\u0000\u0000\u021e\u021f\u0006\u0004"+ - "\u0002\u0000\u021f\u0019\u0001\u0000\u0000\u0000\u0220\u0221\u0007\u0007"+ - "\u0000\u0000\u0221\u0222\u0007\r\u0000\u0000\u0222\u0223\u0007\b\u0000"+ - "\u0000\u0223\u0224\u0007\u000e\u0000\u0000\u0224\u0225\u0007\u0004\u0000"+ - "\u0000\u0225\u0226\u0007\n\u0000\u0000\u0226\u0227\u0007\u0005\u0000\u0000"+ - "\u0227\u0228\u0001\u0000\u0000\u0000\u0228\u0229\u0006\u0005\u0003\u0000"+ - "\u0229\u001b\u0001\u0000\u0000\u0000\u022a\u022b\u0007\u000f\u0000\u0000"+ - "\u022b\u022c\u0007\n\u0000\u0000\u022c\u022d\u0007\u0010\u0000\u0000\u022d"+ - "\u022e\u0007\u0010\u0000\u0000\u022e\u022f\u0007\u0007\u0000\u0000\u022f"+ - "\u0230\u0007\u0002\u0000\u0000\u0230\u0231\u0007\u000b\u0000\u0000\u0231"+ - "\u0232\u0001\u0000\u0000\u0000\u0232\u0233\u0006\u0006\u0004\u0000\u0233"+ - "\u001d\u0001\u0000\u0000\u0000\u0234\u0235\u0007\u0007\u0000\u0000\u0235"+ - "\u0236\u0007\u0011\u0000\u0000\u0236\u0237\u0007\u0004\u0000\u0000\u0237"+ - "\u0238\u0007\u000e\u0000\u0000\u0238\u0239\u0001\u0000\u0000\u0000\u0239"+ - "\u023a\u0006\u0007\u0004\u0000\u023a\u001f\u0001\u0000\u0000\u0000\u023b"+ - "\u023c\u0007\u0006\u0000\u0000\u023c\u023d\u0007\f\u0000\u0000\u023d\u023e"+ - "\u0007\t\u0000\u0000\u023e\u023f\u0007\u0012\u0000\u0000\u023f\u0240\u0001"+ - "\u0000\u0000\u0000\u0240\u0241\u0006\b\u0004\u0000\u0241!\u0001\u0000"+ - "\u0000\u0000\u0242\u0243\u0007\u000e\u0000\u0000\u0243\u0244\u0007\n\u0000"+ - "\u0000\u0244\u0245\u0007\u0013\u0000\u0000\u0245\u0246\u0007\n\u0000\u0000"+ - "\u0246\u0247\u0007\u000b\u0000\u0000\u0247\u0248\u0001\u0000\u0000\u0000"+ - "\u0248\u0249\u0006\t\u0004\u0000\u0249#\u0001\u0000\u0000\u0000\u024a"+ - "\u024b\u0007\f\u0000\u0000\u024b\u024c\u0007\t\u0000\u0000\u024c\u024d"+ - "\u0007\u0014\u0000\u0000\u024d\u024e\u0001\u0000\u0000\u0000\u024e\u024f"+ - "\u0006\n\u0004\u0000\u024f%\u0001\u0000\u0000\u0000\u0250\u0251\u0007"+ - "\u0010\u0000\u0000\u0251\u0252\u0007\t\u0000\u0000\u0252\u0253\u0007\f"+ - "\u0000\u0000\u0253\u0254\u0007\u000b\u0000\u0000\u0254\u0255\u0001\u0000"+ - "\u0000\u0000\u0255\u0256\u0006\u000b\u0004\u0000\u0256\'\u0001\u0000\u0000"+ - "\u0000\u0257\u0258\u0007\u0010\u0000\u0000\u0258\u0259\u0007\u000b\u0000"+ - "\u0000\u0259\u025a\u0007\u0004\u0000\u0000\u025a\u025b\u0007\u000b\u0000"+ - "\u0000\u025b\u025c\u0007\u0010\u0000\u0000\u025c\u025d\u0001\u0000\u0000"+ - "\u0000\u025d\u025e\u0006\f\u0004\u0000\u025e)\u0001\u0000\u0000\u0000"+ - "\u025f\u0260\u0007\u0014\u0000\u0000\u0260\u0261\u0007\u0003\u0000\u0000"+ - "\u0261\u0262\u0007\u0007\u0000\u0000\u0262\u0263\u0007\f\u0000\u0000\u0263"+ - "\u0264\u0007\u0007\u0000\u0000\u0264\u0265\u0001\u0000\u0000\u0000\u0265"+ - "\u0266\u0006\r\u0004\u0000\u0266+\u0001\u0000\u0000\u0000\u0267\u0268"+ - "\u0004\u000e\u0001\u0000\u0268\u0269\u0007\n\u0000\u0000\u0269\u026a\u0007"+ - "\u0005\u0000\u0000\u026a\u026b\u0007\u000e\u0000\u0000\u026b\u026c\u0007"+ - "\n\u0000\u0000\u026c\u026d\u0007\u0005\u0000\u0000\u026d\u026e\u0007\u0007"+ - "\u0000\u0000\u026e\u026f\u0007\u0010\u0000\u0000\u026f\u0270\u0007\u000b"+ - "\u0000\u0000\u0270\u0271\u0007\u0004\u0000\u0000\u0271\u0272\u0007\u000b"+ - "\u0000\u0000\u0272\u0273\u0007\u0010\u0000\u0000\u0273\u0274\u0001\u0000"+ - "\u0000\u0000\u0274\u0275\u0006\u000e\u0004\u0000\u0275-\u0001\u0000\u0000"+ - "\u0000\u0276\u0277\u0007\u0015\u0000\u0000\u0277\u0278\u0007\f\u0000\u0000"+ - "\u0278\u0279\u0007\t\u0000\u0000\u0279\u027a\u0007\u0013\u0000\u0000\u027a"+ - "\u027b\u0001\u0000\u0000\u0000\u027b\u027c\u0006\u000f\u0005\u0000\u027c"+ - "/\u0001\u0000\u0000\u0000\u027d\u027e\u0004\u0010\u0002\u0000\u027e\u027f"+ - "\u0007\u0013\u0000\u0000\u027f\u0280\u0007\u0007\u0000\u0000\u0280\u0281"+ - "\u0007\u000b\u0000\u0000\u0281\u0282\u0007\f\u0000\u0000\u0282\u0283\u0007"+ - "\n\u0000\u0000\u0283\u0284\u0007\u0002\u0000\u0000\u0284\u0285\u0007\u0010"+ - "\u0000\u0000\u0285\u0286\u0001\u0000\u0000\u0000\u0286\u0287\u0006\u0010"+ - "\u0005\u0000\u02871\u0001\u0000\u0000\u0000\u0288\u0289\u0004\u0011\u0003"+ - "\u0000\u0289\u028a\u0007\u0015\u0000\u0000\u028a\u028b\u0007\t\u0000\u0000"+ - "\u028b\u028c\u0007\f\u0000\u0000\u028c\u028d\u0007\u0012\u0000\u0000\u028d"+ - "\u028e\u0001\u0000\u0000\u0000\u028e\u028f\u0006\u0011\u0006\u0000\u028f"+ - "3\u0001\u0000\u0000\u0000\u0290\u0291\u0007\u000e\u0000\u0000\u0291\u0292"+ - "\u0007\t\u0000\u0000\u0292\u0293\u0007\t\u0000\u0000\u0293\u0294\u0007"+ - "\u0012\u0000\u0000\u0294\u0295\u0007\u0016\u0000\u0000\u0295\u0296\u0007"+ - "\b\u0000\u0000\u0296\u0297\u0001\u0000\u0000\u0000\u0297\u0298\u0006\u0012"+ - "\u0007\u0000\u02985\u0001\u0000\u0000\u0000\u0299\u029a\u0004\u0013\u0004"+ - "\u0000\u029a\u029b\u0007\u0015\u0000\u0000\u029b\u029c\u0007\u0016\u0000"+ - "\u0000\u029c\u029d\u0007\u000e\u0000\u0000\u029d\u029e\u0007\u000e\u0000"+ - "\u0000\u029e\u029f\u0001\u0000\u0000\u0000\u029f\u02a0\u0006\u0013\u0007"+ - "\u0000\u02a07\u0001\u0000\u0000\u0000\u02a1\u02a2\u0004\u0014\u0005\u0000"+ - "\u02a2\u02a3\u0007\u000e\u0000\u0000\u02a3\u02a4\u0007\u0007\u0000\u0000"+ - "\u02a4\u02a5\u0007\u0015\u0000\u0000\u02a5\u02a6\u0007\u000b\u0000\u0000"+ - "\u02a6\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a8\u0006\u0014\u0007\u0000"+ - "\u02a89\u0001\u0000\u0000\u0000\u02a9\u02aa\u0004\u0015\u0006\u0000\u02aa"+ - "\u02ab\u0007\f\u0000\u0000\u02ab\u02ac\u0007\n\u0000\u0000\u02ac\u02ad"+ - "\u0007\u0006\u0000\u0000\u02ad\u02ae\u0007\u0003\u0000\u0000\u02ae\u02af"+ - "\u0007\u000b\u0000\u0000\u02af\u02b0\u0001\u0000\u0000\u0000\u02b0\u02b1"+ - "\u0006\u0015\u0007\u0000\u02b1;\u0001\u0000\u0000\u0000\u02b2\u02b3\u0004"+ - "\u0016\u0007\u0000\u02b3\u02b4\u0007\u000e\u0000\u0000\u02b4\u02b5\u0007"+ - "\t\u0000\u0000\u02b5\u02b6\u0007\t\u0000\u0000\u02b6\u02b7\u0007\u0012"+ - "\u0000\u0000\u02b7\u02b8\u0007\u0016\u0000\u0000\u02b8\u02b9\u0007\b\u0000"+ - "\u0000\u02b9\u02ba\u0005_\u0000\u0000\u02ba\u02bb\u0005\u8001\uf414\u0000"+ - "\u0000\u02bb\u02bc\u0001\u0000\u0000\u0000\u02bc\u02bd\u0006\u0016\b\u0000"+ - "\u02bd=\u0001\u0000\u0000\u0000\u02be\u02bf\u0007\u0013\u0000\u0000\u02bf"+ - "\u02c0\u0007\u0011\u0000\u0000\u02c0\u02c1\u0005_\u0000\u0000\u02c1\u02c2"+ - "\u0007\u0007\u0000\u0000\u02c2\u02c3\u0007\r\u0000\u0000\u02c3\u02c4\u0007"+ - "\b\u0000\u0000\u02c4\u02c5\u0007\u0004\u0000\u0000\u02c5\u02c6\u0007\u0005"+ - "\u0000\u0000\u02c6\u02c7\u0007\u000f\u0000\u0000\u02c7\u02c8\u0001\u0000"+ - "\u0000\u0000\u02c8\u02c9\u0006\u0017\t\u0000\u02c9?\u0001\u0000\u0000"+ - "\u0000\u02ca\u02cb\u0007\u000f\u0000\u0000\u02cb\u02cc\u0007\f\u0000\u0000"+ - "\u02cc\u02cd\u0007\t\u0000\u0000\u02cd\u02ce\u0007\b\u0000\u0000\u02ce"+ - "\u02cf\u0001\u0000\u0000\u0000\u02cf\u02d0\u0006\u0018\n\u0000\u02d0A"+ - "\u0001\u0000\u0000\u0000\u02d1\u02d2\u0007\u0012\u0000\u0000\u02d2\u02d3"+ - "\u0007\u0007\u0000\u0000\u02d3\u02d4\u0007\u0007\u0000\u0000\u02d4\u02d5"+ - "\u0007\b\u0000\u0000\u02d5\u02d6\u0001\u0000\u0000\u0000\u02d6\u02d7\u0006"+ - "\u0019\n\u0000\u02d7C\u0001\u0000\u0000\u0000\u02d8\u02d9\u0004\u001a"+ - "\b\u0000\u02d9\u02da\u0007\n\u0000\u0000\u02da\u02db\u0007\u0005\u0000"+ - "\u0000\u02db\u02dc\u0007\u0010\u0000\u0000\u02dc\u02dd\u0007\n\u0000\u0000"+ - "\u02dd\u02de\u0007\u0010\u0000\u0000\u02de\u02df\u0007\u000b\u0000\u0000"+ - "\u02df\u02e0\u0005_\u0000\u0000\u02e0\u02e1\u0005\u8001\uf414\u0000\u0000"+ - "\u02e1\u02e2\u0001\u0000\u0000\u0000\u02e2\u02e3\u0006\u001a\n\u0000\u02e3"+ - "E\u0001\u0000\u0000\u0000\u02e4\u02e5\u0004\u001b\t\u0000\u02e5\u02e6"+ - "\u0007\f\u0000\u0000\u02e6\u02e7\u0007\f\u0000\u0000\u02e7\u02e8\u0007"+ - "\u0015\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ea\u0006"+ - "\u001b\u0004\u0000\u02eaG\u0001\u0000\u0000\u0000\u02eb\u02ec\u0007\f"+ - "\u0000\u0000\u02ec\u02ed\u0007\u0007\u0000\u0000\u02ed\u02ee\u0007\u0005"+ - "\u0000\u0000\u02ee\u02ef\u0007\u0004\u0000\u0000\u02ef\u02f0\u0007\u0013"+ - "\u0000\u0000\u02f0\u02f1\u0007\u0007\u0000\u0000\u02f1\u02f2\u0001\u0000"+ - "\u0000\u0000\u02f2\u02f3\u0006\u001c\u000b\u0000\u02f3I\u0001\u0000\u0000"+ - "\u0000\u02f4\u02f5\u0007\u0010\u0000\u0000\u02f5\u02f6\u0007\u0003\u0000"+ - "\u0000\u02f6\u02f7\u0007\t\u0000\u0000\u02f7\u02f8\u0007\u0014\u0000\u0000"+ - "\u02f8\u02f9\u0001\u0000\u0000\u0000\u02f9\u02fa\u0006\u001d\f\u0000\u02fa"+ - "K\u0001\u0000\u0000\u0000\u02fb\u02fd\b\u0017\u0000\u0000\u02fc\u02fb"+ - "\u0001\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000\u0000\u0000\u02fe\u02fc"+ - "\u0001\u0000\u0000\u0000\u02fe\u02ff\u0001\u0000\u0000\u0000\u02ff\u0300"+ - "\u0001\u0000\u0000\u0000\u0300\u0301\u0006\u001e\u0004\u0000\u0301M\u0001"+ - "\u0000\u0000\u0000\u0302\u0303\u0003\u00a8L\u0000\u0303\u0304\u0001\u0000"+ - "\u0000\u0000\u0304\u0305\u0006\u001f\r\u0000\u0305\u0306\u0006\u001f\u000e"+ - "\u0000\u0306O\u0001\u0000\u0000\u0000\u0307\u0308\u0003f+\u0000\u0308"+ - "\u0309\u0001\u0000\u0000\u0000\u0309\u030a\u0006 \u000f\u0000\u030aQ\u0001"+ - "\u0000\u0000\u0000\u030b\u030c\u0003\u01cc\u00de\u0000\u030c\u030d\u0001"+ - "\u0000\u0000\u0000\u030d\u030e\u0006!\u0010\u0000\u030eS\u0001\u0000\u0000"+ - "\u0000\u030f\u0310\u0003\u00d4b\u0000\u0310\u0311\u0001\u0000\u0000\u0000"+ - "\u0311\u0312\u0006\"\u0011\u0000\u0312U\u0001\u0000\u0000\u0000\u0313"+ - "\u0314\u0003\u00d0`\u0000\u0314\u0315\u0001\u0000\u0000\u0000\u0315\u0316"+ - "\u0006#\u0012\u0000\u0316W\u0001\u0000\u0000\u0000\u0317\u0318\u0003\u0120"+ - "\u0088\u0000\u0318\u0319\u0001\u0000\u0000\u0000\u0319\u031a\u0006$\u0013"+ - "\u0000\u031aY\u0001\u0000\u0000\u0000\u031b\u031c\u0003\u011c\u0086\u0000"+ - "\u031c\u031d\u0001\u0000\u0000\u0000\u031d\u031e\u0006%\u0014\u0000\u031e"+ - "[\u0001\u0000\u0000\u0000\u031f\u0320\u0003\u0010\u0000\u0000\u0320\u0321"+ - "\u0001\u0000\u0000\u0000\u0321\u0322\u0006&\u0000\u0000\u0322]\u0001\u0000"+ - "\u0000\u0000\u0323\u0324\u0003\u0012\u0001\u0000\u0324\u0325\u0001\u0000"+ - "\u0000\u0000\u0325\u0326\u0006\'\u0000\u0000\u0326_\u0001\u0000\u0000"+ - "\u0000\u0327\u0328\u0003\u0014\u0002\u0000\u0328\u0329\u0001\u0000\u0000"+ - "\u0000\u0329\u032a\u0006(\u0000\u0000\u032aa\u0001\u0000\u0000\u0000\u032b"+ - "\u032c\u0003\u00a8L\u0000\u032c\u032d\u0001\u0000\u0000\u0000\u032d\u032e"+ - "\u0006)\r\u0000\u032e\u032f\u0006)\u000e\u0000\u032fc\u0001\u0000\u0000"+ - "\u0000\u0330\u0331\u0003\u0114\u0082\u0000\u0331\u0332\u0001\u0000\u0000"+ - "\u0000\u0332\u0333\u0006*\u0015\u0000\u0333\u0334\u0006*\u0016\u0000\u0334"+ - "e\u0001\u0000\u0000\u0000\u0335\u0336\u0007\t\u0000\u0000\u0336\u0337"+ - "\u0007\u0005\u0000\u0000\u0337\u0338\u0001\u0000\u0000\u0000\u0338\u0339"+ - "\u0006+\u0017\u0000\u0339g\u0001\u0000\u0000\u0000\u033a\u033b\u0007\u0014"+ - "\u0000\u0000\u033b\u033c\u0007\n\u0000\u0000\u033c\u033d\u0007\u000b\u0000"+ - "\u0000\u033d\u033e\u0007\u0003\u0000\u0000\u033e\u033f\u0001\u0000\u0000"+ - "\u0000\u033f\u0340\u0006,\u0017\u0000\u0340i\u0001\u0000\u0000\u0000\u0341"+ - "\u0342\b\u0018\u0000\u0000\u0342k\u0001\u0000\u0000\u0000\u0343\u0345"+ - "\u0003j-\u0000\u0344\u0343\u0001\u0000\u0000\u0000\u0345\u0346\u0001\u0000"+ - "\u0000\u0000\u0346\u0344\u0001\u0000\u0000\u0000\u0346\u0347\u0001\u0000"+ - "\u0000\u0000\u0347\u0348\u0001\u0000\u0000\u0000\u0348\u0349\u0003\u00ce"+ - "_\u0000\u0349\u034b\u0001\u0000\u0000\u0000\u034a\u0344\u0001\u0000\u0000"+ - "\u0000\u034a\u034b\u0001\u0000\u0000\u0000\u034b\u034d\u0001\u0000\u0000"+ - "\u0000\u034c\u034e\u0003j-\u0000\u034d\u034c\u0001\u0000\u0000\u0000\u034e"+ - "\u034f\u0001\u0000\u0000\u0000\u034f\u034d\u0001\u0000\u0000\u0000\u034f"+ - "\u0350\u0001\u0000\u0000\u0000\u0350m\u0001\u0000\u0000\u0000\u0351\u0352"+ - "\u0003l.\u0000\u0352\u0353\u0001\u0000\u0000\u0000\u0353\u0354\u0006/"+ - "\u0018\u0000\u0354o\u0001\u0000\u0000\u0000\u0355\u0356\u0003\u0010\u0000"+ - "\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357\u0358\u00060\u0000\u0000"+ - "\u0358q\u0001\u0000\u0000\u0000\u0359\u035a\u0003\u0012\u0001\u0000\u035a"+ - "\u035b\u0001\u0000\u0000\u0000\u035b\u035c\u00061\u0000\u0000\u035cs\u0001"+ - "\u0000\u0000\u0000\u035d\u035e\u0003\u0014\u0002\u0000\u035e\u035f\u0001"+ - "\u0000\u0000\u0000\u035f\u0360\u00062\u0000\u0000\u0360u\u0001\u0000\u0000"+ - "\u0000\u0361\u0362\u0003\u00a8L\u0000\u0362\u0363\u0001\u0000\u0000\u0000"+ - "\u0363\u0364\u00063\r\u0000\u0364\u0365\u00063\u000e\u0000\u0365\u0366"+ - "\u00063\u000e\u0000\u0366w\u0001\u0000\u0000\u0000\u0367\u0368\u0003\u00ca"+ - "]\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u036a\u00064\u0019\u0000"+ - "\u036ay\u0001\u0000\u0000\u0000\u036b\u036c\u0003\u00d0`\u0000\u036c\u036d"+ - "\u0001\u0000\u0000\u0000\u036d\u036e\u00065\u0012\u0000\u036e{\u0001\u0000"+ - "\u0000\u0000\u036f\u0370\u0003\u00d4b\u0000\u0370\u0371\u0001\u0000\u0000"+ - "\u0000\u0371\u0372\u00066\u0011\u0000\u0372}\u0001\u0000\u0000\u0000\u0373"+ - "\u0374\u0003h,\u0000\u0374\u0375\u0001\u0000\u0000\u0000\u0375\u0376\u0006"+ - "7\u001a\u0000\u0376\u007f\u0001\u0000\u0000\u0000\u0377\u0378\u0003\u01b4"+ - "\u00d2\u0000\u0378\u0379\u0001\u0000\u0000\u0000\u0379\u037a\u00068\u001b"+ - "\u0000\u037a\u0081\u0001\u0000\u0000\u0000\u037b\u037c\u0003\u0120\u0088"+ - "\u0000\u037c\u037d\u0001\u0000\u0000\u0000\u037d\u037e\u00069\u0013\u0000"+ - "\u037e\u0083\u0001\u0000\u0000\u0000\u037f\u0380\u0003\u00eam\u0000\u0380"+ - "\u0381\u0001\u0000\u0000\u0000\u0381\u0382\u0006:\u001c\u0000\u0382\u0085"+ - "\u0001\u0000\u0000\u0000\u0383\u0384\u0003\u0110\u0080\u0000\u0384\u0385"+ - "\u0001\u0000\u0000\u0000\u0385\u0386\u0006;\u001d\u0000\u0386\u0087\u0001"+ - "\u0000\u0000\u0000\u0387\u0388\u0004<\n\u0000\u0388\u0389\u0003\u010c"+ - "~\u0000\u0389\u038a\u0001\u0000\u0000\u0000\u038a\u038b\u0006<\u001e\u0000"+ - "\u038b\u0089\u0001\u0000\u0000\u0000\u038c\u038d\u0004=\u000b\u0000\u038d"+ - "\u038e\u0003\u0112\u0081\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f"+ - "\u0390\u0006=\u001f\u0000\u0390\u008b\u0001\u0000\u0000\u0000\u0391\u0392"+ - "\u0003\u0010\u0000\u0000\u0392\u0393\u0001\u0000\u0000\u0000\u0393\u0394"+ - "\u0006>\u0000\u0000\u0394\u008d\u0001\u0000\u0000\u0000\u0395\u0396\u0003"+ - "\u0012\u0001\u0000\u0396\u0397\u0001\u0000\u0000\u0000\u0397\u0398\u0006"+ - "?\u0000\u0000\u0398\u008f\u0001\u0000\u0000\u0000\u0399\u039a\u0003\u0014"+ - "\u0002\u0000\u039a\u039b\u0001\u0000\u0000\u0000\u039b\u039c\u0006@\u0000"+ - "\u0000\u039c\u0091\u0001\u0000\u0000\u0000\u039d\u039e\u0003\u0116\u0083"+ - "\u0000\u039e\u039f\u0001\u0000\u0000\u0000\u039f\u03a0\u0006A \u0000\u03a0"+ - "\u03a1\u0006A\u000e\u0000\u03a1\u0093\u0001\u0000\u0000\u0000\u03a2\u03a3"+ - "\u0003\u00ce_\u0000\u03a3\u03a4\u0001\u0000\u0000\u0000\u03a4\u03a5\u0006"+ - "B!\u0000\u03a5\u0095\u0001\u0000\u0000\u0000\u03a6\u03ac\u0003\u00b4R"+ - "\u0000\u03a7\u03ac\u0003\u00aaM\u0000\u03a8\u03ac\u0003\u00d4b\u0000\u03a9"+ - "\u03ac\u0003\u00acN\u0000\u03aa\u03ac\u0003\u00baU\u0000\u03ab\u03a6\u0001"+ - "\u0000\u0000\u0000\u03ab\u03a7\u0001\u0000\u0000\u0000\u03ab\u03a8\u0001"+ - "\u0000\u0000\u0000\u03ab\u03a9\u0001\u0000\u0000\u0000\u03ab\u03aa\u0001"+ - "\u0000\u0000\u0000\u03ac\u03ad\u0001\u0000\u0000\u0000\u03ad\u03ab\u0001"+ - "\u0000\u0000\u0000\u03ad\u03ae\u0001\u0000\u0000\u0000\u03ae\u0097\u0001"+ - "\u0000\u0000\u0000\u03af\u03b0\u0003\u0010\u0000\u0000\u03b0\u03b1\u0001"+ - "\u0000\u0000\u0000\u03b1\u03b2\u0006D\u0000\u0000\u03b2\u0099\u0001\u0000"+ - "\u0000\u0000\u03b3\u03b4\u0003\u0012\u0001\u0000\u03b4\u03b5\u0001\u0000"+ - "\u0000\u0000\u03b5\u03b6\u0006E\u0000\u0000\u03b6\u009b\u0001\u0000\u0000"+ - "\u0000\u03b7\u03b8\u0003\u0014\u0002\u0000\u03b8\u03b9\u0001\u0000\u0000"+ - "\u0000\u03b9\u03ba\u0006F\u0000\u0000\u03ba\u009d\u0001\u0000\u0000\u0000"+ - "\u03bb\u03bc\u0003\u0114\u0082\u0000\u03bc\u03bd\u0001\u0000\u0000\u0000"+ - "\u03bd\u03be\u0006G\u0015\u0000\u03be\u03bf\u0006G\"\u0000\u03bf\u009f"+ - "\u0001\u0000\u0000\u0000\u03c0\u03c1\u0003\u00a8L\u0000\u03c1\u03c2\u0001"+ - "\u0000\u0000\u0000\u03c2\u03c3\u0006H\r\u0000\u03c3\u03c4\u0006H\u000e"+ - "\u0000\u03c4\u00a1\u0001\u0000\u0000\u0000\u03c5\u03c6\u0003\u0014\u0002"+ - "\u0000\u03c6\u03c7\u0001\u0000\u0000\u0000\u03c7\u03c8\u0006I\u0000\u0000"+ - "\u03c8\u00a3\u0001\u0000\u0000\u0000\u03c9\u03ca\u0003\u0010\u0000\u0000"+ - "\u03ca\u03cb\u0001\u0000\u0000\u0000\u03cb\u03cc\u0006J\u0000\u0000\u03cc"+ - "\u00a5\u0001\u0000\u0000\u0000\u03cd\u03ce\u0003\u0012\u0001\u0000\u03ce"+ - "\u03cf\u0001\u0000\u0000\u0000\u03cf\u03d0\u0006K\u0000\u0000\u03d0\u00a7"+ - "\u0001\u0000\u0000\u0000\u03d1\u03d2\u0005|\u0000\u0000\u03d2\u03d3\u0001"+ - "\u0000\u0000\u0000\u03d3\u03d4\u0006L\u000e\u0000\u03d4\u00a9\u0001\u0000"+ - "\u0000\u0000\u03d5\u03d6\u0007\u0019\u0000\u0000\u03d6\u00ab\u0001\u0000"+ - "\u0000\u0000\u03d7\u03d8\u0007\u001a\u0000\u0000\u03d8\u00ad\u0001\u0000"+ - "\u0000\u0000\u03d9\u03da\u0005\\\u0000\u0000\u03da\u03db\u0007\u001b\u0000"+ - "\u0000\u03db\u00af\u0001\u0000\u0000\u0000\u03dc\u03dd\b\u001c\u0000\u0000"+ - "\u03dd\u00b1\u0001\u0000\u0000\u0000\u03de\u03e0\u0007\u0007\u0000\u0000"+ - "\u03df\u03e1\u0007\u001d\u0000\u0000\u03e0\u03df\u0001\u0000\u0000\u0000"+ - "\u03e0\u03e1\u0001\u0000\u0000\u0000\u03e1\u03e3\u0001\u0000\u0000\u0000"+ - "\u03e2\u03e4\u0003\u00aaM\u0000\u03e3\u03e2\u0001\u0000\u0000\u0000\u03e4"+ - "\u03e5\u0001\u0000\u0000\u0000\u03e5\u03e3\u0001\u0000\u0000\u0000\u03e5"+ - "\u03e6\u0001\u0000\u0000\u0000\u03e6\u00b3\u0001\u0000\u0000\u0000\u03e7"+ - "\u03e8\u0005@\u0000\u0000\u03e8\u00b5\u0001\u0000\u0000\u0000\u03e9\u03ea"+ - "\u0005`\u0000\u0000\u03ea\u00b7\u0001\u0000\u0000\u0000\u03eb\u03ef\b"+ - "\u001e\u0000\u0000\u03ec\u03ed\u0005`\u0000\u0000\u03ed\u03ef\u0005`\u0000"+ - "\u0000\u03ee\u03eb\u0001\u0000\u0000\u0000\u03ee\u03ec\u0001\u0000\u0000"+ - "\u0000\u03ef\u00b9\u0001\u0000\u0000\u0000\u03f0\u03f1\u0005_\u0000\u0000"+ - "\u03f1\u00bb\u0001\u0000\u0000\u0000\u03f2\u03f6\u0003\u00acN\u0000\u03f3"+ - "\u03f6\u0003\u00aaM\u0000\u03f4\u03f6\u0003\u00baU\u0000\u03f5\u03f2\u0001"+ - "\u0000\u0000\u0000\u03f5\u03f3\u0001\u0000\u0000\u0000\u03f5\u03f4\u0001"+ - "\u0000\u0000\u0000\u03f6\u00bd\u0001\u0000\u0000\u0000\u03f7\u03fc\u0005"+ - "\"\u0000\u0000\u03f8\u03fb\u0003\u00aeO\u0000\u03f9\u03fb\u0003\u00b0"+ - "P\u0000\u03fa\u03f8\u0001\u0000\u0000\u0000\u03fa\u03f9\u0001\u0000\u0000"+ - "\u0000\u03fb\u03fe\u0001\u0000\u0000\u0000\u03fc\u03fa\u0001\u0000\u0000"+ - "\u0000\u03fc\u03fd\u0001\u0000\u0000\u0000\u03fd\u03ff\u0001\u0000\u0000"+ - "\u0000\u03fe\u03fc\u0001\u0000\u0000\u0000\u03ff\u0415\u0005\"\u0000\u0000"+ - "\u0400\u0401\u0005\"\u0000\u0000\u0401\u0402\u0005\"\u0000\u0000\u0402"+ - "\u0403\u0005\"\u0000\u0000\u0403\u0407\u0001\u0000\u0000\u0000\u0404\u0406"+ - "\b\u0000\u0000\u0000\u0405\u0404\u0001\u0000\u0000\u0000\u0406\u0409\u0001"+ - "\u0000\u0000\u0000\u0407\u0408\u0001\u0000\u0000\u0000\u0407\u0405\u0001"+ - "\u0000\u0000\u0000\u0408\u040a\u0001\u0000\u0000\u0000\u0409\u0407\u0001"+ - "\u0000\u0000\u0000\u040a\u040b\u0005\"\u0000\u0000\u040b\u040c\u0005\""+ - "\u0000\u0000\u040c\u040d\u0005\"\u0000\u0000\u040d\u040f\u0001\u0000\u0000"+ - "\u0000\u040e\u0410\u0005\"\u0000\u0000\u040f\u040e\u0001\u0000\u0000\u0000"+ - "\u040f\u0410\u0001\u0000\u0000\u0000\u0410\u0412\u0001\u0000\u0000\u0000"+ - "\u0411\u0413\u0005\"\u0000\u0000\u0412\u0411\u0001\u0000\u0000\u0000\u0412"+ - "\u0413\u0001\u0000\u0000\u0000\u0413\u0415\u0001\u0000\u0000\u0000\u0414"+ - "\u03f7\u0001\u0000\u0000\u0000\u0414\u0400\u0001\u0000\u0000\u0000\u0415"+ - "\u00bf\u0001\u0000\u0000\u0000\u0416\u0418\u0003\u00aaM\u0000\u0417\u0416"+ - "\u0001\u0000\u0000\u0000\u0418\u0419\u0001\u0000\u0000\u0000\u0419\u0417"+ - "\u0001\u0000\u0000\u0000\u0419\u041a\u0001\u0000\u0000\u0000\u041a\u00c1"+ - "\u0001\u0000\u0000\u0000\u041b\u041d\u0003\u00aaM\u0000\u041c\u041b\u0001"+ - "\u0000\u0000\u0000\u041d\u041e\u0001\u0000\u0000\u0000\u041e\u041c\u0001"+ - "\u0000\u0000\u0000\u041e\u041f\u0001\u0000\u0000\u0000\u041f\u0420\u0001"+ - "\u0000\u0000\u0000\u0420\u0424\u0003\u00d4b\u0000\u0421\u0423\u0003\u00aa"+ - "M\u0000\u0422\u0421\u0001\u0000\u0000\u0000\u0423\u0426\u0001\u0000\u0000"+ - "\u0000\u0424\u0422\u0001\u0000\u0000\u0000\u0424\u0425\u0001\u0000\u0000"+ - "\u0000\u0425\u0446\u0001\u0000\u0000\u0000\u0426\u0424\u0001\u0000\u0000"+ - "\u0000\u0427\u0429\u0003\u00d4b\u0000\u0428\u042a\u0003\u00aaM\u0000\u0429"+ - "\u0428\u0001\u0000\u0000\u0000\u042a\u042b\u0001\u0000\u0000\u0000\u042b"+ - "\u0429\u0001\u0000\u0000\u0000\u042b\u042c\u0001\u0000\u0000\u0000\u042c"+ - "\u0446\u0001\u0000\u0000\u0000\u042d\u042f\u0003\u00aaM\u0000\u042e\u042d"+ - "\u0001\u0000\u0000\u0000\u042f\u0430\u0001\u0000\u0000\u0000\u0430\u042e"+ - "\u0001\u0000\u0000\u0000\u0430\u0431\u0001\u0000\u0000\u0000\u0431\u0439"+ - "\u0001\u0000\u0000\u0000\u0432\u0436\u0003\u00d4b\u0000\u0433\u0435\u0003"+ - "\u00aaM\u0000\u0434\u0433\u0001\u0000\u0000\u0000\u0435\u0438\u0001\u0000"+ - "\u0000\u0000\u0436\u0434\u0001\u0000\u0000\u0000\u0436\u0437\u0001\u0000"+ - "\u0000\u0000\u0437\u043a\u0001\u0000\u0000\u0000\u0438\u0436\u0001\u0000"+ - "\u0000\u0000\u0439\u0432\u0001\u0000\u0000\u0000\u0439\u043a\u0001\u0000"+ - "\u0000\u0000\u043a\u043b\u0001\u0000\u0000\u0000\u043b\u043c\u0003\u00b2"+ - "Q\u0000\u043c\u0446\u0001\u0000\u0000\u0000\u043d\u043f\u0003\u00d4b\u0000"+ - "\u043e\u0440\u0003\u00aaM\u0000\u043f\u043e\u0001\u0000\u0000\u0000\u0440"+ - "\u0441\u0001\u0000\u0000\u0000\u0441\u043f\u0001\u0000\u0000\u0000\u0441"+ - "\u0442\u0001\u0000\u0000\u0000\u0442\u0443\u0001\u0000\u0000\u0000\u0443"+ - "\u0444\u0003\u00b2Q\u0000\u0444\u0446\u0001\u0000\u0000\u0000\u0445\u041c"+ - "\u0001\u0000\u0000\u0000\u0445\u0427\u0001\u0000\u0000\u0000\u0445\u042e"+ - "\u0001\u0000\u0000\u0000\u0445\u043d\u0001\u0000\u0000\u0000\u0446\u00c3"+ - "\u0001\u0000\u0000\u0000\u0447\u0448\u0007\u001f\u0000\u0000\u0448\u0449"+ - "\u0007 \u0000\u0000\u0449\u00c5\u0001\u0000\u0000\u0000\u044a\u044b\u0007"+ - "\u0004\u0000\u0000\u044b\u044c\u0007\u0005\u0000\u0000\u044c\u044d\u0007"+ - "\u000f\u0000\u0000\u044d\u00c7\u0001\u0000\u0000\u0000\u044e\u044f\u0007"+ - "\u0004\u0000\u0000\u044f\u0450\u0007\u0010\u0000\u0000\u0450\u0451\u0007"+ - "\u0002\u0000\u0000\u0451\u00c9\u0001\u0000\u0000\u0000\u0452\u0453\u0005"+ - "=\u0000\u0000\u0453\u00cb\u0001\u0000\u0000\u0000\u0454\u0455\u0005:\u0000"+ - "\u0000\u0455\u0456\u0005:\u0000\u0000\u0456\u00cd\u0001\u0000\u0000\u0000"+ - "\u0457\u0458\u0005:\u0000\u0000\u0458\u00cf\u0001\u0000\u0000\u0000\u0459"+ - "\u045a\u0005,\u0000\u0000\u045a\u00d1\u0001\u0000\u0000\u0000\u045b\u045c"+ - "\u0007\u000f\u0000\u0000\u045c\u045d\u0007\u0007\u0000\u0000\u045d\u045e"+ - "\u0007\u0010\u0000\u0000\u045e\u045f\u0007\u0002\u0000\u0000\u045f\u00d3"+ - "\u0001\u0000\u0000\u0000\u0460\u0461\u0005.\u0000\u0000\u0461\u00d5\u0001"+ - "\u0000\u0000\u0000\u0462\u0463\u0007\u0015\u0000\u0000\u0463\u0464\u0007"+ - "\u0004\u0000\u0000\u0464\u0465\u0007\u000e\u0000\u0000\u0465\u0466\u0007"+ - "\u0010\u0000\u0000\u0466\u0467\u0007\u0007\u0000\u0000\u0467\u00d7\u0001"+ - "\u0000\u0000\u0000\u0468\u0469\u0007\u0015\u0000\u0000\u0469\u046a\u0007"+ - "\n\u0000\u0000\u046a\u046b\u0007\f\u0000\u0000\u046b\u046c\u0007\u0010"+ - "\u0000\u0000\u046c\u046d\u0007\u000b\u0000\u0000\u046d\u00d9\u0001\u0000"+ - "\u0000\u0000\u046e\u046f\u0007\n\u0000\u0000\u046f\u0470\u0007\u0005\u0000"+ - "\u0000\u0470\u00db\u0001\u0000\u0000\u0000\u0471\u0472\u0007\n\u0000\u0000"+ - "\u0472\u0473\u0007\u0010\u0000\u0000\u0473\u00dd\u0001\u0000\u0000\u0000"+ - "\u0474\u0475\u0007\u000e\u0000\u0000\u0475\u0476\u0007\u0004\u0000\u0000"+ - "\u0476\u0477\u0007\u0010\u0000\u0000\u0477\u0478\u0007\u000b\u0000\u0000"+ - "\u0478\u00df\u0001\u0000\u0000\u0000\u0479\u047a\u0007\u000e\u0000\u0000"+ - "\u047a\u047b\u0007\n\u0000\u0000\u047b\u047c\u0007\u0012\u0000\u0000\u047c"+ - "\u047d\u0007\u0007\u0000\u0000\u047d\u00e1\u0001\u0000\u0000\u0000\u047e"+ - "\u047f\u0007\u0005\u0000\u0000\u047f\u0480\u0007\t\u0000\u0000\u0480\u0481"+ - "\u0007\u000b\u0000\u0000\u0481\u00e3\u0001\u0000\u0000\u0000\u0482\u0483"+ - "\u0007\u0005\u0000\u0000\u0483\u0484\u0007\u0016\u0000\u0000\u0484\u0485"+ - "\u0007\u000e\u0000\u0000\u0485\u0486\u0007\u000e\u0000\u0000\u0486\u00e5"+ - "\u0001\u0000\u0000\u0000\u0487\u0488\u0007\u0005\u0000\u0000\u0488\u0489"+ - "\u0007\u0016\u0000\u0000\u0489\u048a\u0007\u000e\u0000\u0000\u048a\u048b"+ - "\u0007\u000e\u0000\u0000\u048b\u048c\u0007\u0010\u0000\u0000\u048c\u00e7"+ - "\u0001\u0000\u0000\u0000\u048d\u048e\u0007\t\u0000\u0000\u048e\u048f\u0007"+ - "\f\u0000\u0000\u048f\u00e9\u0001\u0000\u0000\u0000\u0490\u0491\u0005?"+ - "\u0000\u0000\u0491\u00eb\u0001\u0000\u0000\u0000\u0492\u0493\u0007\f\u0000"+ - "\u0000\u0493\u0494\u0007\u000e\u0000\u0000\u0494\u0495\u0007\n\u0000\u0000"+ - "\u0495\u0496\u0007\u0012\u0000\u0000\u0496\u0497\u0007\u0007\u0000\u0000"+ - "\u0497\u00ed\u0001\u0000\u0000\u0000\u0498\u0499\u0007\u000b\u0000\u0000"+ - "\u0499\u049a\u0007\f\u0000\u0000\u049a\u049b\u0007\u0016\u0000\u0000\u049b"+ - "\u049c\u0007\u0007\u0000\u0000\u049c\u00ef\u0001\u0000\u0000\u0000\u049d"+ - "\u049e\u0005=\u0000\u0000\u049e\u049f\u0005=\u0000\u0000\u049f\u00f1\u0001"+ - "\u0000\u0000\u0000\u04a0\u04a1\u0005=\u0000\u0000\u04a1\u04a2\u0005~\u0000"+ - "\u0000\u04a2\u00f3\u0001\u0000\u0000\u0000\u04a3\u04a4\u0005!\u0000\u0000"+ - "\u04a4\u04a5\u0005=\u0000\u0000\u04a5\u00f5\u0001\u0000\u0000\u0000\u04a6"+ - "\u04a7\u0005<\u0000\u0000\u04a7\u00f7\u0001\u0000\u0000\u0000\u04a8\u04a9"+ - "\u0005<\u0000\u0000\u04a9\u04aa\u0005=\u0000\u0000\u04aa\u00f9\u0001\u0000"+ - "\u0000\u0000\u04ab\u04ac\u0005>\u0000\u0000\u04ac\u00fb\u0001\u0000\u0000"+ - "\u0000\u04ad\u04ae\u0005>\u0000\u0000\u04ae\u04af\u0005=\u0000\u0000\u04af"+ - "\u00fd\u0001\u0000\u0000\u0000\u04b0\u04b1\u0005+\u0000\u0000\u04b1\u00ff"+ - "\u0001\u0000\u0000\u0000\u04b2\u04b3\u0005-\u0000\u0000\u04b3\u0101\u0001"+ - "\u0000\u0000\u0000\u04b4\u04b5\u0005*\u0000\u0000\u04b5\u0103\u0001\u0000"+ - "\u0000\u0000\u04b6\u04b7\u0005/\u0000\u0000\u04b7\u0105\u0001\u0000\u0000"+ - "\u0000\u04b8\u04b9\u0005%\u0000\u0000\u04b9\u0107\u0001\u0000\u0000\u0000"+ - "\u04ba\u04bb\u0005{\u0000\u0000\u04bb\u0109\u0001\u0000\u0000\u0000\u04bc"+ - "\u04bd\u0005}\u0000\u0000\u04bd\u010b\u0001\u0000\u0000\u0000\u04be\u04bf"+ - "\u0004~\f\u0000\u04bf\u04c0\u0005?\u0000\u0000\u04c0\u04c1\u0005?\u0000"+ - "\u0000\u04c1\u010d\u0001\u0000\u0000\u0000\u04c2\u04c3\u0003*\r\u0000"+ - "\u04c3\u04c4\u0001\u0000\u0000\u0000\u04c4\u04c5\u0006\u007f#\u0000\u04c5"+ - "\u010f\u0001\u0000\u0000\u0000\u04c6\u04c9\u0003\u00eam\u0000\u04c7\u04ca"+ - "\u0003\u00acN\u0000\u04c8\u04ca\u0003\u00baU\u0000\u04c9\u04c7\u0001\u0000"+ - "\u0000\u0000\u04c9\u04c8\u0001\u0000\u0000\u0000\u04ca\u04ce\u0001\u0000"+ - "\u0000\u0000\u04cb\u04cd\u0003\u00bcV\u0000\u04cc\u04cb\u0001\u0000\u0000"+ - "\u0000\u04cd\u04d0\u0001\u0000\u0000\u0000\u04ce\u04cc\u0001\u0000\u0000"+ - "\u0000\u04ce\u04cf\u0001\u0000\u0000\u0000\u04cf\u04d8\u0001\u0000\u0000"+ - "\u0000\u04d0\u04ce\u0001\u0000\u0000\u0000\u04d1\u04d3\u0003\u00eam\u0000"+ - "\u04d2\u04d4\u0003\u00aaM\u0000\u04d3\u04d2\u0001\u0000\u0000\u0000\u04d4"+ - "\u04d5\u0001\u0000\u0000\u0000\u04d5\u04d3\u0001\u0000\u0000\u0000\u04d5"+ - "\u04d6\u0001\u0000\u0000\u0000\u04d6\u04d8\u0001\u0000\u0000\u0000\u04d7"+ - "\u04c6\u0001\u0000\u0000\u0000\u04d7\u04d1\u0001\u0000\u0000\u0000\u04d8"+ - "\u0111\u0001\u0000\u0000\u0000\u04d9\u04dc\u0003\u010c~\u0000\u04da\u04dd"+ - "\u0003\u00acN\u0000\u04db\u04dd\u0003\u00baU\u0000\u04dc\u04da\u0001\u0000"+ - "\u0000\u0000\u04dc\u04db\u0001\u0000\u0000\u0000\u04dd\u04e1\u0001\u0000"+ - "\u0000\u0000\u04de\u04e0\u0003\u00bcV\u0000\u04df\u04de\u0001\u0000\u0000"+ - "\u0000\u04e0\u04e3\u0001\u0000\u0000\u0000\u04e1\u04df\u0001\u0000\u0000"+ - "\u0000\u04e1\u04e2\u0001\u0000\u0000\u0000\u04e2\u04eb\u0001\u0000\u0000"+ - "\u0000\u04e3\u04e1\u0001\u0000\u0000\u0000\u04e4\u04e6\u0003\u010c~\u0000"+ - "\u04e5\u04e7\u0003\u00aaM\u0000\u04e6\u04e5\u0001\u0000\u0000\u0000\u04e7"+ - "\u04e8\u0001\u0000\u0000\u0000\u04e8\u04e6\u0001\u0000\u0000\u0000\u04e8"+ - "\u04e9\u0001\u0000\u0000\u0000\u04e9\u04eb\u0001\u0000\u0000\u0000\u04ea"+ - "\u04d9\u0001\u0000\u0000\u0000\u04ea\u04e4\u0001\u0000\u0000\u0000\u04eb"+ - "\u0113\u0001\u0000\u0000\u0000\u04ec\u04ed\u0005[\u0000\u0000\u04ed\u04ee"+ - "\u0001\u0000\u0000\u0000\u04ee\u04ef\u0006\u0082\u0004\u0000\u04ef\u04f0"+ - "\u0006\u0082\u0004\u0000\u04f0\u0115\u0001\u0000\u0000\u0000\u04f1\u04f2"+ - "\u0005]\u0000\u0000\u04f2\u04f3\u0001\u0000\u0000\u0000\u04f3\u04f4\u0006"+ - "\u0083\u000e\u0000\u04f4\u04f5\u0006\u0083\u000e\u0000\u04f5\u0117\u0001"+ - "\u0000\u0000\u0000\u04f6\u04f7\u0005(\u0000\u0000\u04f7\u04f8\u0001\u0000"+ - "\u0000\u0000\u04f8\u04f9\u0006\u0084\u0004\u0000\u04f9\u04fa\u0006\u0084"+ - "\u0004\u0000\u04fa\u0119\u0001\u0000\u0000\u0000\u04fb\u04fc\u0005)\u0000"+ - "\u0000\u04fc\u04fd\u0001\u0000\u0000\u0000\u04fd\u04fe\u0006\u0085\u000e"+ - "\u0000\u04fe\u04ff\u0006\u0085\u000e\u0000\u04ff\u011b\u0001\u0000\u0000"+ - "\u0000\u0500\u0504\u0003\u00acN\u0000\u0501\u0503\u0003\u00bcV\u0000\u0502"+ - "\u0501\u0001\u0000\u0000\u0000\u0503\u0506\u0001\u0000\u0000\u0000\u0504"+ - "\u0502\u0001\u0000\u0000\u0000\u0504\u0505\u0001\u0000\u0000\u0000\u0505"+ - "\u0511\u0001\u0000\u0000\u0000\u0506\u0504\u0001\u0000\u0000\u0000\u0507"+ - "\u050a\u0003\u00baU\u0000\u0508\u050a\u0003\u00b4R\u0000\u0509\u0507\u0001"+ - "\u0000\u0000\u0000\u0509\u0508\u0001\u0000\u0000\u0000\u050a\u050c\u0001"+ - "\u0000\u0000\u0000\u050b\u050d\u0003\u00bcV\u0000\u050c\u050b\u0001\u0000"+ - "\u0000\u0000\u050d\u050e\u0001\u0000\u0000\u0000\u050e\u050c\u0001\u0000"+ - "\u0000\u0000\u050e\u050f\u0001\u0000\u0000\u0000\u050f\u0511\u0001\u0000"+ - "\u0000\u0000\u0510\u0500\u0001\u0000\u0000\u0000\u0510\u0509\u0001\u0000"+ - "\u0000\u0000\u0511\u011d\u0001\u0000\u0000\u0000\u0512\u0514\u0003\u00b6"+ - "S\u0000\u0513\u0515\u0003\u00b8T\u0000\u0514\u0513\u0001\u0000\u0000\u0000"+ - "\u0515\u0516\u0001\u0000\u0000\u0000\u0516\u0514\u0001\u0000\u0000\u0000"+ - "\u0516\u0517\u0001\u0000\u0000\u0000\u0517\u0518\u0001\u0000\u0000\u0000"+ - "\u0518\u0519\u0003\u00b6S\u0000\u0519\u011f\u0001\u0000\u0000\u0000\u051a"+ - "\u051b\u0003\u011e\u0087\u0000\u051b\u0121\u0001\u0000\u0000\u0000\u051c"+ - "\u051d\u0003\u0010\u0000\u0000\u051d\u051e\u0001\u0000\u0000\u0000\u051e"+ - "\u051f\u0006\u0089\u0000\u0000\u051f\u0123\u0001\u0000\u0000\u0000\u0520"+ - "\u0521\u0003\u0012\u0001\u0000\u0521\u0522\u0001\u0000\u0000\u0000\u0522"+ - "\u0523\u0006\u008a\u0000\u0000\u0523\u0125\u0001\u0000\u0000\u0000\u0524"+ - "\u0525\u0003\u0014\u0002\u0000\u0525\u0526\u0001\u0000\u0000\u0000\u0526"+ - "\u0527\u0006\u008b\u0000\u0000\u0527\u0127\u0001\u0000\u0000\u0000\u0528"+ - "\u0529\u0003\u00a8L\u0000\u0529\u052a\u0001\u0000\u0000\u0000\u052a\u052b"+ - "\u0006\u008c\r\u0000\u052b\u052c\u0006\u008c\u000e\u0000\u052c\u0129\u0001"+ - "\u0000\u0000\u0000\u052d\u052e\u0003\u0114\u0082\u0000\u052e\u052f\u0001"+ - "\u0000\u0000\u0000\u052f\u0530\u0006\u008d\u0015\u0000\u0530\u012b\u0001"+ - "\u0000\u0000\u0000\u0531\u0532\u0003\u0116\u0083\u0000\u0532\u0533\u0001"+ - "\u0000\u0000\u0000\u0533\u0534\u0006\u008e \u0000\u0534\u012d\u0001\u0000"+ - "\u0000\u0000\u0535\u0536\u0003\u00ce_\u0000\u0536\u0537\u0001\u0000\u0000"+ - "\u0000\u0537\u0538\u0006\u008f!\u0000\u0538\u012f\u0001\u0000\u0000\u0000"+ - "\u0539\u053a\u0004\u0090\r\u0000\u053a\u053b\u0003\u00cc^\u0000\u053b"+ - "\u053c\u0001\u0000\u0000\u0000\u053c\u053d\u0006\u0090$\u0000\u053d\u0131"+ - "\u0001\u0000\u0000\u0000\u053e\u053f\u0003\u00d0`\u0000\u053f\u0540\u0001"+ - "\u0000\u0000\u0000\u0540\u0541\u0006\u0091\u0012\u0000\u0541\u0133\u0001"+ - "\u0000\u0000\u0000\u0542\u0543\u0003\u00ca]\u0000\u0543\u0544\u0001\u0000"+ - "\u0000\u0000\u0544\u0545\u0006\u0092\u0019\u0000\u0545\u0135\u0001\u0000"+ - "\u0000\u0000\u0546\u0547\u0007\u0013\u0000\u0000\u0547\u0548\u0007\u0007"+ - "\u0000\u0000\u0548\u0549\u0007\u000b\u0000\u0000\u0549\u054a\u0007\u0004"+ - "\u0000\u0000\u054a\u054b\u0007\u000f\u0000\u0000\u054b\u054c\u0007\u0004"+ - "\u0000\u0000\u054c\u054d\u0007\u000b\u0000\u0000\u054d\u054e\u0007\u0004"+ - "\u0000\u0000\u054e\u0137\u0001\u0000\u0000\u0000\u054f\u0553\b!\u0000"+ - "\u0000\u0550\u0551\u0005/\u0000\u0000\u0551\u0553\b\"\u0000\u0000\u0552"+ - "\u054f\u0001\u0000\u0000\u0000\u0552\u0550\u0001\u0000\u0000\u0000\u0553"+ - "\u0139\u0001\u0000\u0000\u0000\u0554\u0556\u0003\u0138\u0094\u0000\u0555"+ - "\u0554\u0001\u0000\u0000\u0000\u0556\u0557\u0001\u0000\u0000\u0000\u0557"+ - "\u0555\u0001\u0000\u0000\u0000\u0557\u0558\u0001\u0000\u0000\u0000\u0558"+ - "\u013b\u0001\u0000\u0000\u0000\u0559\u055a\u0003\u013a\u0095\u0000\u055a"+ - "\u055b\u0001\u0000\u0000\u0000\u055b\u055c\u0006\u0096%\u0000\u055c\u013d"+ - "\u0001\u0000\u0000\u0000\u055d\u055e\u0003\u00beW\u0000\u055e\u055f\u0001"+ - "\u0000\u0000\u0000\u055f\u0560\u0006\u0097&\u0000\u0560\u013f\u0001\u0000"+ - "\u0000\u0000\u0561\u0562\u0003\u0010\u0000\u0000\u0562\u0563\u0001\u0000"+ - "\u0000\u0000\u0563\u0564\u0006\u0098\u0000\u0000\u0564\u0141\u0001\u0000"+ - "\u0000\u0000\u0565\u0566\u0003\u0012\u0001\u0000\u0566\u0567\u0001\u0000"+ - "\u0000\u0000\u0567\u0568\u0006\u0099\u0000\u0000\u0568\u0143\u0001\u0000"+ - "\u0000\u0000\u0569\u056a\u0003\u0014\u0002\u0000\u056a\u056b\u0001\u0000"+ - "\u0000\u0000\u056b\u056c\u0006\u009a\u0000\u0000\u056c\u0145\u0001\u0000"+ - "\u0000\u0000\u056d\u056e\u0003\u0118\u0084\u0000\u056e\u056f\u0001\u0000"+ - "\u0000\u0000\u056f\u0570\u0006\u009b\'\u0000\u0570\u0571\u0006\u009b\""+ - "\u0000\u0571\u0147\u0001\u0000\u0000\u0000\u0572\u0573\u0003\u00a8L\u0000"+ - "\u0573\u0574\u0001\u0000\u0000\u0000\u0574\u0575\u0006\u009c\r\u0000\u0575"+ - "\u0576\u0006\u009c\u000e\u0000\u0576\u0149\u0001\u0000\u0000\u0000\u0577"+ - "\u0578\u0003\u0014\u0002\u0000\u0578\u0579\u0001\u0000\u0000\u0000\u0579"+ - "\u057a\u0006\u009d\u0000\u0000\u057a\u014b\u0001\u0000\u0000\u0000\u057b"+ - "\u057c\u0003\u0010\u0000\u0000\u057c\u057d\u0001\u0000\u0000\u0000\u057d"+ - "\u057e\u0006\u009e\u0000\u0000\u057e\u014d\u0001\u0000\u0000\u0000\u057f"+ - "\u0580\u0003\u0012\u0001\u0000\u0580\u0581\u0001\u0000\u0000\u0000\u0581"+ - "\u0582\u0006\u009f\u0000\u0000\u0582\u014f\u0001\u0000\u0000\u0000\u0583"+ - "\u0584\u0003\u00a8L\u0000\u0584\u0585\u0001\u0000\u0000\u0000\u0585\u0586"+ - "\u0006\u00a0\r\u0000\u0586\u0587\u0006\u00a0\u000e\u0000\u0587\u0151\u0001"+ - "\u0000\u0000\u0000\u0588\u0589\u0007#\u0000\u0000\u0589\u058a\u0007\t"+ - "\u0000\u0000\u058a\u058b\u0007\n\u0000\u0000\u058b\u058c\u0007\u0005\u0000"+ - "\u0000\u058c\u0153\u0001\u0000\u0000\u0000\u058d\u058e\u0003\u01cc\u00de"+ - "\u0000\u058e\u058f\u0001\u0000\u0000\u0000\u058f\u0590\u0006\u00a2\u0010"+ - "\u0000\u0590\u0155\u0001\u0000\u0000\u0000\u0591\u0592\u0003f+\u0000\u0592"+ - "\u0593\u0001\u0000\u0000\u0000\u0593\u0594\u0006\u00a3\u000f\u0000\u0594"+ - "\u0595\u0006\u00a3\u000e\u0000\u0595\u0596\u0006\u00a3\u0004\u0000\u0596"+ - "\u0157\u0001\u0000\u0000\u0000\u0597\u0598\u0007\u0016\u0000\u0000\u0598"+ - "\u0599\u0007\u0010\u0000\u0000\u0599\u059a\u0007\n\u0000\u0000\u059a\u059b"+ - "\u0007\u0005\u0000\u0000\u059b\u059c\u0007\u0006\u0000\u0000\u059c\u059d"+ - "\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u00a4\u000e\u0000\u059e\u059f"+ - "\u0006\u00a4\u0004\u0000\u059f\u0159\u0001\u0000\u0000\u0000\u05a0\u05a1"+ - "\u0003\u013a\u0095\u0000\u05a1\u05a2\u0001\u0000\u0000\u0000\u05a2\u05a3"+ - "\u0006\u00a5%\u0000\u05a3\u015b\u0001\u0000\u0000\u0000\u05a4\u05a5\u0003"+ - "\u00beW\u0000\u05a5\u05a6\u0001\u0000\u0000\u0000\u05a6\u05a7\u0006\u00a6"+ - "&\u0000\u05a7\u015d\u0001\u0000\u0000\u0000\u05a8\u05a9\u0003\u00ce_\u0000"+ - "\u05a9\u05aa\u0001\u0000\u0000\u0000\u05aa\u05ab\u0006\u00a7!\u0000\u05ab"+ - "\u015f\u0001\u0000\u0000\u0000\u05ac\u05ad\u0003\u011c\u0086\u0000\u05ad"+ - "\u05ae\u0001\u0000\u0000\u0000\u05ae\u05af\u0006\u00a8\u0014\u0000\u05af"+ - "\u0161\u0001\u0000\u0000\u0000\u05b0\u05b1\u0003\u0120\u0088\u0000\u05b1"+ - "\u05b2\u0001\u0000\u0000\u0000\u05b2\u05b3\u0006\u00a9\u0013\u0000\u05b3"+ - "\u0163\u0001\u0000\u0000\u0000\u05b4\u05b5\u0003\u0010\u0000\u0000\u05b5"+ - "\u05b6\u0001\u0000\u0000\u0000\u05b6\u05b7\u0006\u00aa\u0000\u0000\u05b7"+ - "\u0165\u0001\u0000\u0000\u0000\u05b8\u05b9\u0003\u0012\u0001\u0000\u05b9"+ - "\u05ba\u0001\u0000\u0000\u0000\u05ba\u05bb\u0006\u00ab\u0000\u0000\u05bb"+ - "\u0167\u0001\u0000\u0000\u0000\u05bc\u05bd\u0003\u0014\u0002\u0000\u05bd"+ - "\u05be\u0001\u0000\u0000\u0000\u05be\u05bf\u0006\u00ac\u0000\u0000\u05bf"+ - "\u0169\u0001\u0000\u0000\u0000\u05c0\u05c1\u0003\u00a8L\u0000\u05c1\u05c2"+ - "\u0001\u0000\u0000\u0000\u05c2\u05c3\u0006\u00ad\r\u0000\u05c3\u05c4\u0006"+ - "\u00ad\u000e\u0000\u05c4\u016b\u0001\u0000\u0000\u0000\u05c5\u05c6\u0003"+ - "\u00ce_\u0000\u05c6\u05c7\u0001\u0000\u0000\u0000\u05c7\u05c8\u0006\u00ae"+ - "!\u0000\u05c8\u016d\u0001\u0000\u0000\u0000\u05c9\u05ca\u0003\u00d0`\u0000"+ - "\u05ca\u05cb\u0001\u0000\u0000\u0000\u05cb\u05cc\u0006\u00af\u0012\u0000"+ - "\u05cc\u016f\u0001\u0000\u0000\u0000\u05cd\u05ce\u0003\u00d4b\u0000\u05ce"+ - "\u05cf\u0001\u0000\u0000\u0000\u05cf\u05d0\u0006\u00b0\u0011\u0000\u05d0"+ - "\u0171\u0001\u0000\u0000\u0000\u05d1\u05d2\u0003f+\u0000\u05d2\u05d3\u0001"+ - "\u0000\u0000\u0000\u05d3\u05d4\u0006\u00b1\u000f\u0000\u05d4\u05d5\u0006"+ - "\u00b1(\u0000\u05d5\u0173\u0001\u0000\u0000\u0000\u05d6\u05d7\u0003\u013a"+ - "\u0095\u0000\u05d7\u05d8\u0001\u0000\u0000\u0000\u05d8\u05d9\u0006\u00b2"+ - "%\u0000\u05d9\u0175\u0001\u0000\u0000\u0000\u05da\u05db\u0003\u00beW\u0000"+ - "\u05db\u05dc\u0001\u0000\u0000\u0000\u05dc\u05dd\u0006\u00b3&\u0000\u05dd"+ - "\u0177\u0001\u0000\u0000\u0000\u05de\u05df\u0003\u0010\u0000\u0000\u05df"+ - "\u05e0\u0001\u0000\u0000\u0000\u05e0\u05e1\u0006\u00b4\u0000\u0000\u05e1"+ - "\u0179\u0001\u0000\u0000\u0000\u05e2\u05e3\u0003\u0012\u0001\u0000\u05e3"+ - "\u05e4\u0001\u0000\u0000\u0000\u05e4\u05e5\u0006\u00b5\u0000\u0000\u05e5"+ - "\u017b\u0001\u0000\u0000\u0000\u05e6\u05e7\u0003\u0014\u0002\u0000\u05e7"+ - "\u05e8\u0001\u0000\u0000\u0000\u05e8\u05e9\u0006\u00b6\u0000\u0000\u05e9"+ - "\u017d\u0001\u0000\u0000\u0000\u05ea\u05eb\u0003\u00a8L\u0000\u05eb\u05ec"+ - "\u0001\u0000\u0000\u0000\u05ec\u05ed\u0006\u00b7\r\u0000\u05ed\u05ee\u0006"+ - "\u00b7\u000e\u0000\u05ee\u05ef\u0006\u00b7\u000e\u0000\u05ef\u017f\u0001"+ - "\u0000\u0000\u0000\u05f0\u05f1\u0003\u00d0`\u0000\u05f1\u05f2\u0001\u0000"+ - "\u0000\u0000\u05f2\u05f3\u0006\u00b8\u0012\u0000\u05f3\u0181\u0001\u0000"+ - "\u0000\u0000\u05f4\u05f5\u0003\u00d4b\u0000\u05f5\u05f6\u0001\u0000\u0000"+ - "\u0000\u05f6\u05f7\u0006\u00b9\u0011\u0000\u05f7\u0183\u0001\u0000\u0000"+ - "\u0000\u05f8\u05f9\u0003\u01b4\u00d2\u0000\u05f9\u05fa\u0001\u0000\u0000"+ - "\u0000\u05fa\u05fb\u0006\u00ba\u001b\u0000\u05fb\u0185\u0001\u0000\u0000"+ - "\u0000\u05fc\u05fd\u0003\u0010\u0000\u0000\u05fd\u05fe\u0001\u0000\u0000"+ - "\u0000\u05fe\u05ff\u0006\u00bb\u0000\u0000\u05ff\u0187\u0001\u0000\u0000"+ - "\u0000\u0600\u0601\u0003\u0012\u0001\u0000\u0601\u0602\u0001\u0000\u0000"+ - "\u0000\u0602\u0603\u0006\u00bc\u0000\u0000\u0603\u0189\u0001\u0000\u0000"+ - "\u0000\u0604\u0605\u0003\u0014\u0002\u0000\u0605\u0606\u0001\u0000\u0000"+ - "\u0000\u0606\u0607\u0006\u00bd\u0000\u0000\u0607\u018b\u0001\u0000\u0000"+ - "\u0000\u0608\u0609\u0003\u00a8L\u0000\u0609\u060a\u0001\u0000\u0000\u0000"+ - "\u060a\u060b\u0006\u00be\r\u0000\u060b\u060c\u0006\u00be\u000e\u0000\u060c"+ - "\u018d\u0001\u0000\u0000\u0000\u060d\u060e\u0003\u00d4b\u0000\u060e\u060f"+ - "\u0001\u0000\u0000\u0000\u060f\u0610\u0006\u00bf\u0011\u0000\u0610\u018f"+ - "\u0001\u0000\u0000\u0000\u0611\u0612\u0003\u00eam\u0000\u0612\u0613\u0001"+ - "\u0000\u0000\u0000\u0613\u0614\u0006\u00c0\u001c\u0000\u0614\u0191\u0001"+ - "\u0000\u0000\u0000\u0615\u0616\u0003\u0110\u0080\u0000\u0616\u0617\u0001"+ - "\u0000\u0000\u0000\u0617\u0618\u0006\u00c1\u001d\u0000\u0618\u0193\u0001"+ - "\u0000\u0000\u0000\u0619\u061a\u0004\u00c2\u000e\u0000\u061a\u061b\u0003"+ - "\u010c~\u0000\u061b\u061c\u0001\u0000\u0000\u0000\u061c\u061d\u0006\u00c2"+ - "\u001e\u0000\u061d\u0195\u0001\u0000\u0000\u0000\u061e\u061f\u0004\u00c3"+ - "\u000f\u0000\u061f\u0620\u0003\u0112\u0081\u0000\u0620\u0621\u0001\u0000"+ - "\u0000\u0000\u0621\u0622\u0006\u00c3\u001f\u0000\u0622\u0197\u0001\u0000"+ - "\u0000\u0000\u0623\u0624\u0003\u0120\u0088\u0000\u0624\u0625\u0001\u0000"+ - "\u0000\u0000\u0625\u0626\u0006\u00c4\u0013\u0000\u0626\u0199\u0001\u0000"+ - "\u0000\u0000\u0627\u0628\u0003\u011c\u0086\u0000\u0628\u0629\u0001\u0000"+ - "\u0000\u0000\u0629\u062a\u0006\u00c5\u0014\u0000\u062a\u019b\u0001\u0000"+ - "\u0000\u0000\u062b\u062c\u0003\u0010\u0000\u0000\u062c\u062d\u0001\u0000"+ - "\u0000\u0000\u062d\u062e\u0006\u00c6\u0000\u0000\u062e\u019d\u0001\u0000"+ - "\u0000\u0000\u062f\u0630\u0003\u0012\u0001\u0000\u0630\u0631\u0001\u0000"+ - "\u0000\u0000\u0631\u0632\u0006\u00c7\u0000\u0000\u0632\u019f\u0001\u0000"+ - "\u0000\u0000\u0633\u0634\u0003\u0014\u0002\u0000\u0634\u0635\u0001\u0000"+ - "\u0000\u0000\u0635\u0636\u0006\u00c8\u0000\u0000\u0636\u01a1\u0001\u0000"+ - "\u0000\u0000\u0637\u0638\u0003\u00a8L\u0000\u0638\u0639\u0001\u0000\u0000"+ - "\u0000\u0639\u063a\u0006\u00c9\r\u0000\u063a\u063b\u0006\u00c9\u000e\u0000"+ - "\u063b\u01a3\u0001\u0000\u0000\u0000\u063c\u063d\u0003\u00d4b\u0000\u063d"+ - "\u063e\u0001\u0000\u0000\u0000\u063e\u063f\u0006\u00ca\u0011\u0000\u063f"+ - "\u01a5\u0001\u0000\u0000\u0000\u0640\u0641\u0003\u00d0`\u0000\u0641\u0642"+ - "\u0001\u0000\u0000\u0000\u0642\u0643\u0006\u00cb\u0012\u0000\u0643\u01a7"+ - "\u0001\u0000\u0000\u0000\u0644\u0645\u0003\u00eam\u0000\u0645\u0646\u0001"+ - "\u0000\u0000\u0000\u0646\u0647\u0006\u00cc\u001c\u0000\u0647\u01a9\u0001"+ - "\u0000\u0000\u0000\u0648\u0649\u0003\u0110\u0080\u0000\u0649\u064a\u0001"+ - "\u0000\u0000\u0000\u064a\u064b\u0006\u00cd\u001d\u0000\u064b\u01ab\u0001"+ - "\u0000\u0000\u0000\u064c\u064d\u0004\u00ce\u0010\u0000\u064d\u064e\u0003"+ - "\u010c~\u0000\u064e\u064f\u0001\u0000\u0000\u0000\u064f\u0650\u0006\u00ce"+ - "\u001e\u0000\u0650\u01ad\u0001\u0000\u0000\u0000\u0651\u0652\u0004\u00cf"+ - "\u0011\u0000\u0652\u0653\u0003\u0112\u0081\u0000\u0653\u0654\u0001\u0000"+ - "\u0000\u0000\u0654\u0655\u0006\u00cf\u001f\u0000\u0655\u01af\u0001\u0000"+ - "\u0000\u0000\u0656\u065b\u0003\u00acN\u0000\u0657\u065b\u0003\u00aaM\u0000"+ - "\u0658\u065b\u0003\u00baU\u0000\u0659\u065b\u0003\u0102y\u0000\u065a\u0656"+ - "\u0001\u0000\u0000\u0000\u065a\u0657\u0001\u0000\u0000\u0000\u065a\u0658"+ - "\u0001\u0000\u0000\u0000\u065a\u0659\u0001\u0000\u0000\u0000\u065b\u01b1"+ - "\u0001\u0000\u0000\u0000\u065c\u065f\u0003\u00acN\u0000\u065d\u065f\u0003"+ - "\u0102y\u0000\u065e\u065c\u0001\u0000\u0000\u0000\u065e\u065d\u0001\u0000"+ - "\u0000\u0000\u065f\u0663\u0001\u0000\u0000\u0000\u0660\u0662\u0003\u01b0"+ - "\u00d0\u0000\u0661\u0660\u0001\u0000\u0000\u0000\u0662\u0665\u0001\u0000"+ - "\u0000\u0000\u0663\u0661\u0001\u0000\u0000\u0000\u0663\u0664\u0001\u0000"+ - "\u0000\u0000\u0664\u0670\u0001\u0000\u0000\u0000\u0665\u0663\u0001\u0000"+ - "\u0000\u0000\u0666\u0669\u0003\u00baU\u0000\u0667\u0669\u0003\u00b4R\u0000"+ - "\u0668\u0666\u0001\u0000\u0000\u0000\u0668\u0667\u0001\u0000\u0000\u0000"+ - "\u0669\u066b\u0001\u0000\u0000\u0000\u066a\u066c\u0003\u01b0\u00d0\u0000"+ - "\u066b\u066a\u0001\u0000\u0000\u0000\u066c\u066d\u0001\u0000\u0000\u0000"+ - "\u066d\u066b\u0001\u0000\u0000\u0000\u066d\u066e\u0001\u0000\u0000\u0000"+ - "\u066e\u0670\u0001\u0000\u0000\u0000\u066f\u065e\u0001\u0000\u0000\u0000"+ - "\u066f\u0668\u0001\u0000\u0000\u0000\u0670\u01b3\u0001\u0000\u0000\u0000"+ - "\u0671\u0674\u0003\u01b2\u00d1\u0000\u0672\u0674\u0003\u011e\u0087\u0000"+ - "\u0673\u0671\u0001\u0000\u0000\u0000\u0673\u0672\u0001\u0000\u0000\u0000"+ - "\u0674\u0675\u0001\u0000\u0000\u0000\u0675\u0673\u0001\u0000\u0000\u0000"+ - "\u0675\u0676\u0001\u0000\u0000\u0000\u0676\u01b5\u0001\u0000\u0000\u0000"+ - "\u0677\u0678\u0003\u0010\u0000\u0000\u0678\u0679\u0001\u0000\u0000\u0000"+ - "\u0679\u067a\u0006\u00d3\u0000\u0000\u067a\u01b7\u0001\u0000\u0000\u0000"+ - "\u067b\u067c\u0003\u0012\u0001\u0000\u067c\u067d\u0001\u0000\u0000\u0000"+ - "\u067d\u067e\u0006\u00d4\u0000\u0000\u067e\u01b9\u0001\u0000\u0000\u0000"+ - "\u067f\u0680\u0003\u0014\u0002\u0000\u0680\u0681\u0001\u0000\u0000\u0000"+ - "\u0681\u0682\u0006\u00d5\u0000\u0000\u0682\u01bb\u0001\u0000\u0000\u0000"+ - "\u0683\u0684\u0003\u00a8L\u0000\u0684\u0685\u0001\u0000\u0000\u0000\u0685"+ - "\u0686\u0006\u00d6\r\u0000\u0686\u0687\u0006\u00d6\u000e\u0000\u0687\u01bd"+ - "\u0001\u0000\u0000\u0000\u0688\u0689\u0003\u00ca]\u0000\u0689\u068a\u0001"+ - "\u0000\u0000\u0000\u068a\u068b\u0006\u00d7\u0019\u0000\u068b\u01bf\u0001"+ - "\u0000\u0000\u0000\u068c\u068d\u0003\u00d0`\u0000\u068d\u068e\u0001\u0000"+ - "\u0000\u0000\u068e\u068f\u0006\u00d8\u0012\u0000\u068f\u01c1\u0001\u0000"+ - "\u0000\u0000\u0690\u0691\u0003\u00d4b\u0000\u0691\u0692\u0001\u0000\u0000"+ - "\u0000\u0692\u0693\u0006\u00d9\u0011\u0000\u0693\u01c3\u0001\u0000\u0000"+ - "\u0000\u0694\u0695\u0003\u00eam\u0000\u0695\u0696\u0001\u0000\u0000\u0000"+ - "\u0696\u0697\u0006\u00da\u001c\u0000\u0697\u01c5\u0001\u0000\u0000\u0000"+ - "\u0698\u0699\u0003\u0110\u0080\u0000\u0699\u069a\u0001\u0000\u0000\u0000"+ - "\u069a\u069b\u0006\u00db\u001d\u0000\u069b\u01c7\u0001\u0000\u0000\u0000"+ - "\u069c\u069d\u0004\u00dc\u0012\u0000\u069d\u069e\u0003\u010c~\u0000\u069e"+ - "\u069f\u0001\u0000\u0000\u0000\u069f\u06a0\u0006\u00dc\u001e\u0000\u06a0"+ - "\u01c9\u0001\u0000\u0000\u0000\u06a1\u06a2\u0004\u00dd\u0013\u0000\u06a2"+ - "\u06a3\u0003\u0112\u0081\u0000\u06a3\u06a4\u0001\u0000\u0000\u0000\u06a4"+ - "\u06a5\u0006\u00dd\u001f\u0000\u06a5\u01cb\u0001\u0000\u0000\u0000\u06a6"+ - "\u06a7\u0007\u0004\u0000\u0000\u06a7\u06a8\u0007\u0010\u0000\u0000\u06a8"+ - "\u01cd\u0001\u0000\u0000\u0000\u06a9\u06aa\u0003\u01b4\u00d2\u0000\u06aa"+ - "\u06ab\u0001\u0000\u0000\u0000\u06ab\u06ac\u0006\u00df\u001b\u0000\u06ac"+ - "\u01cf\u0001\u0000\u0000\u0000\u06ad\u06ae\u0003\u0010\u0000\u0000\u06ae"+ - "\u06af\u0001\u0000\u0000\u0000\u06af\u06b0\u0006\u00e0\u0000\u0000\u06b0"+ - "\u01d1\u0001\u0000\u0000\u0000\u06b1\u06b2\u0003\u0012\u0001\u0000\u06b2"+ - "\u06b3\u0001\u0000\u0000\u0000\u06b3\u06b4\u0006\u00e1\u0000\u0000\u06b4"+ - "\u01d3\u0001\u0000\u0000\u0000\u06b5\u06b6\u0003\u0014\u0002\u0000\u06b6"+ - "\u06b7\u0001\u0000\u0000\u0000\u06b7\u06b8\u0006\u00e2\u0000\u0000\u06b8"+ - "\u01d5\u0001\u0000\u0000\u0000\u06b9\u06ba\u0003\u00a8L\u0000\u06ba\u06bb"+ - "\u0001\u0000\u0000\u0000\u06bb\u06bc\u0006\u00e3\r\u0000\u06bc\u06bd\u0006"+ - "\u00e3\u000e\u0000\u06bd\u01d7\u0001\u0000\u0000\u0000\u06be\u06bf\u0007"+ - "\n\u0000\u0000\u06bf\u06c0\u0007\u0005\u0000\u0000\u06c0\u06c1\u0007\u0015"+ - "\u0000\u0000\u06c1\u06c2\u0007\t\u0000\u0000\u06c2\u01d9\u0001\u0000\u0000"+ - "\u0000\u06c3\u06c4\u0003\u0010\u0000\u0000\u06c4\u06c5\u0001\u0000\u0000"+ - "\u0000\u06c5\u06c6\u0006\u00e5\u0000\u0000\u06c6\u01db\u0001\u0000\u0000"+ - "\u0000\u06c7\u06c8\u0003\u0012\u0001\u0000\u06c8\u06c9\u0001\u0000\u0000"+ - "\u0000\u06c9\u06ca\u0006\u00e6\u0000\u0000\u06ca\u01dd\u0001\u0000\u0000"+ - "\u0000\u06cb\u06cc\u0003\u0014\u0002\u0000\u06cc\u06cd\u0001\u0000\u0000"+ - "\u0000\u06cd\u06ce\u0006\u00e7\u0000\u0000\u06ce\u01df\u0001\u0000\u0000"+ - "\u0000F\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f"+ - "\r\u000e\u000f\u01e6\u01ea\u01ed\u01f6\u01f8\u0203\u02fe\u0346\u034a\u034f"+ - "\u03ab\u03ad\u03e0\u03e5\u03ee\u03f5\u03fa\u03fc\u0407\u040f\u0412\u0414"+ - "\u0419\u041e\u0424\u042b\u0430\u0436\u0439\u0441\u0445\u04c9\u04ce\u04d5"+ - "\u04d7\u04dc\u04e1\u04e8\u04ea\u0504\u0509\u050e\u0510\u0516\u0552\u0557"+ - "\u065a\u065e\u0663\u0668\u066d\u066f\u0673\u0675)\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\n\u0000\u0005\f\u0000\u0005"+ - "\r\u0000\u0005\u000e\u0000\u0005\u000f\u0000\u00073\u0000\u0004\u0000"+ - "\u0000\u0007#\u0000\u0007\u0081\u0000\u0007?\u0000\u0007=\u0000\u0007"+ - "c\u0000\u0007b\u0000\u0007^\u0000\u0005\u0004\u0000\u0005\u0003\u0000"+ - "\u0007%\u0000\u0007:\u0000\u0007$\u0000\u0007}\u0000\u0007J\u0000\u0007"+ - "\\\u0000\u0007[\u0000\u0007]\u0000\u0007_\u0000\u0007<\u0000\u0005\u0000"+ - "\u0000\u0007\u000e\u0000\u0007;\u0000\u0007h\u0000\u00074\u0000\u0007"+ - "`\u0000\u0005\u000b\u0000"; + "\u0001\u00e3\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e4\u0001\u00e5"+ + "\u0001\u00e5\u0001\u00e5\u0001\u00e5\u0001\u00e6\u0001\u00e6\u0001\u00e6"+ + "\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7"+ + "\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e9"+ + "\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00ea\u0001\u00ea\u0001\u00ea"+ + "\u0001\u00ea\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0001\u00eb\u0002\u0200"+ + "\u0417\u0000\u00ec\u0010\u0001\u0012\u0002\u0014\u0003\u0016\u0004\u0018"+ + "\u0005\u001a\u0006\u001c\u0007\u001e\b \t\"\n$\u000b&\f(\r*\u000e,\u000f"+ + ".\u00100\u00112\u00124\u00136\u00148\u0015:\u0016<\u0017>\u0018@\u0019"+ + "B\u001aD\u001bF\u001cH\u001dJ\u001eL\u001fN P\u0000R\u0000T\u0000V\u0000"+ + "X\u0000Z\u0000\\\u0000^!`\"b#d\u0000f\u0000h\u0000j\u0000l\u0000n$p\u0000"+ + "r%t&v\'x\u0000z\u0000|\u0000~\u0000\u0080\u0000\u0082\u0000\u0084\u0000"+ + "\u0086\u0000\u0088\u0000\u008a\u0000\u008c\u0000\u008e(\u0090)\u0092*"+ + "\u0094\u0000\u0096\u0000\u0098+\u009a,\u009c-\u009e.\u00a0\u0000\u00a2"+ + "\u0000\u00a4/\u00a60\u00a81\u00aa2\u00ac\u0000\u00ae\u0000\u00b0\u0000"+ + "\u00b2\u0000\u00b4\u0000\u00b6\u0000\u00b8\u0000\u00ba\u0000\u00bc\u0000"+ + "\u00be\u0000\u00c03\u00c24\u00c45\u00c66\u00c87\u00ca8\u00cc9\u00ce:\u00d0"+ + ";\u00d2<\u00d4=\u00d6>\u00d8?\u00da@\u00dcA\u00deB\u00e0C\u00e2D\u00e4"+ + "E\u00e6F\u00e8G\u00eaH\u00ecI\u00eeJ\u00f0K\u00f2L\u00f4M\u00f6N\u00f8"+ + "O\u00faP\u00fcQ\u00feR\u0100S\u0102T\u0104U\u0106V\u0108W\u010aX\u010c"+ + "Y\u010eZ\u0110[\u0112\\\u0114]\u0116\u0000\u0118^\u011a_\u011c`\u011e"+ + "a\u0120b\u0122c\u0124d\u0126\u0000\u0128e\u012af\u012cg\u012eh\u0130\u0000"+ + "\u0132\u0000\u0134\u0000\u0136\u0000\u0138\u0000\u013a\u0000\u013c\u0000"+ + "\u013ei\u0140\u0000\u0142j\u0144\u0000\u0146\u0000\u0148k\u014al\u014c"+ + "m\u014e\u0000\u0150\u0000\u0152n\u0154o\u0156p\u0158\u0000\u015aq\u015c"+ + "\u0000\u015e\u0000\u0160r\u0162\u0000\u0164\u0000\u0166\u0000\u0168\u0000"+ + "\u016a\u0000\u016cs\u016et\u0170u\u0172\u0000\u0174\u0000\u0176\u0000"+ + "\u0178\u0000\u017a\u0000\u017c\u0000\u017e\u0000\u0180v\u0182w\u0184x"+ + "\u0186\u0000\u0188\u0000\u018a\u0000\u018c\u0000\u018ey\u0190z\u0192{"+ + "\u0194\u0000\u0196\u0000\u0198\u0000\u019a\u0000\u019c\u0000\u019e\u0000"+ + "\u01a0\u0000\u01a2\u0000\u01a4|\u01a6}\u01a8~\u01aa\u0000\u01ac\u0000"+ + "\u01ae\u0000\u01b0\u0000\u01b2\u0000\u01b4\u0000\u01b6\u0000\u01b8\u0000"+ + "\u01ba\u0000\u01bc\u007f\u01be\u0080\u01c0\u0081\u01c2\u0082\u01c4\u0000"+ + "\u01c6\u0000\u01c8\u0000\u01ca\u0000\u01cc\u0000\u01ce\u0000\u01d0\u0000"+ + "\u01d2\u0000\u01d4\u0000\u01d6\u0000\u01d8\u0083\u01da\u0084\u01dc\u0085"+ + "\u01de\u0000\u01e0\u0086\u01e2\u0087\u01e4\u0088\u01e6\u0089\u0010\u0000"+ + "\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f"+ + "$\u0002\u0000\n\n\r\r\u0003\u0000\t\n\r\r \u0002\u0000CCcc\u0002\u0000"+ + "HHhh\u0002\u0000AAaa\u0002\u0000NNnn\u0002\u0000GGgg\u0002\u0000EEee\u0002"+ + "\u0000PPpp\u0002\u0000OOoo\u0002\u0000IIii\u0002\u0000TTtt\u0002\u0000"+ + "RRrr\u0002\u0000XXxx\u0002\u0000LLll\u0002\u0000DDdd\u0002\u0000SSss\u0002"+ + "\u0000VVvv\u0002\u0000KKkk\u0002\u0000MMmm\u0002\u0000WWww\u0002\u0000"+ + "FFff\u0002\u0000UUuu\u0006\u0000\t\n\r\r //[[]]\u000b\u0000\t\n\r\r "+ + " \"#,,//::<<>?\\\\||\u0001\u000009\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**//\u0002\u0000JJjj\u070a\u0000\u0010\u0001\u0000\u0000\u0000\u0000"+ + "\u0012\u0001\u0000\u0000\u0000\u0000\u0014\u0001\u0000\u0000\u0000\u0000"+ + "\u0016\u0001\u0000\u0000\u0000\u0000\u0018\u0001\u0000\u0000\u0000\u0000"+ + "\u001a\u0001\u0000\u0000\u0000\u0000\u001c\u0001\u0000\u0000\u0000\u0000"+ + "\u001e\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\u00000"+ + "\u0001\u0000\u0000\u0000\u00002\u0001\u0000\u0000\u0000\u00004\u0001\u0000"+ + "\u0000\u0000\u00006\u0001\u0000\u0000\u0000\u00008\u0001\u0000\u0000\u0000"+ + "\u0000:\u0001\u0000\u0000\u0000\u0000<\u0001\u0000\u0000\u0000\u0000>"+ + "\u0001\u0000\u0000\u0000\u0000@\u0001\u0000\u0000\u0000\u0000B\u0001\u0000"+ + "\u0000\u0000\u0000D\u0001\u0000\u0000\u0000\u0000F\u0001\u0000\u0000\u0000"+ + "\u0000H\u0001\u0000\u0000\u0000\u0000J\u0001\u0000\u0000\u0000\u0000L"+ + "\u0001\u0000\u0000\u0000\u0000N\u0001\u0000\u0000\u0000\u0001P\u0001\u0000"+ + "\u0000\u0000\u0001R\u0001\u0000\u0000\u0000\u0001T\u0001\u0000\u0000\u0000"+ + "\u0001V\u0001\u0000\u0000\u0000\u0001X\u0001\u0000\u0000\u0000\u0001Z"+ + "\u0001\u0000\u0000\u0000\u0001\\\u0001\u0000\u0000\u0000\u0001^\u0001"+ + "\u0000\u0000\u0000\u0001`\u0001\u0000\u0000\u0000\u0001b\u0001\u0000\u0000"+ + "\u0000\u0002d\u0001\u0000\u0000\u0000\u0002f\u0001\u0000\u0000\u0000\u0002"+ + "h\u0001\u0000\u0000\u0000\u0002j\u0001\u0000\u0000\u0000\u0002n\u0001"+ + "\u0000\u0000\u0000\u0002p\u0001\u0000\u0000\u0000\u0002r\u0001\u0000\u0000"+ + "\u0000\u0002t\u0001\u0000\u0000\u0000\u0002v\u0001\u0000\u0000\u0000\u0003"+ + "x\u0001\u0000\u0000\u0000\u0003z\u0001\u0000\u0000\u0000\u0003|\u0001"+ + "\u0000\u0000\u0000\u0003~\u0001\u0000\u0000\u0000\u0003\u0080\u0001\u0000"+ + "\u0000\u0000\u0003\u0082\u0001\u0000\u0000\u0000\u0003\u0084\u0001\u0000"+ + "\u0000\u0000\u0003\u0086\u0001\u0000\u0000\u0000\u0003\u0088\u0001\u0000"+ + "\u0000\u0000\u0003\u008a\u0001\u0000\u0000\u0000\u0003\u008c\u0001\u0000"+ + "\u0000\u0000\u0003\u008e\u0001\u0000\u0000\u0000\u0003\u0090\u0001\u0000"+ + "\u0000\u0000\u0003\u0092\u0001\u0000\u0000\u0000\u0004\u0094\u0001\u0000"+ + "\u0000\u0000\u0004\u0096\u0001\u0000\u0000\u0000\u0004\u0098\u0001\u0000"+ + "\u0000\u0000\u0004\u009a\u0001\u0000\u0000\u0000\u0004\u009c\u0001\u0000"+ + "\u0000\u0000\u0004\u009e\u0001\u0000\u0000\u0000\u0005\u00a0\u0001\u0000"+ + "\u0000\u0000\u0005\u00a2\u0001\u0000\u0000\u0000\u0005\u00a4\u0001\u0000"+ + "\u0000\u0000\u0005\u00a6\u0001\u0000\u0000\u0000\u0005\u00a8\u0001\u0000"+ + "\u0000\u0000\u0006\u00aa\u0001\u0000\u0000\u0000\u0006\u00c0\u0001\u0000"+ + "\u0000\u0000\u0006\u00c2\u0001\u0000\u0000\u0000\u0006\u00c4\u0001\u0000"+ + "\u0000\u0000\u0006\u00c6\u0001\u0000\u0000\u0000\u0006\u00c8\u0001\u0000"+ + "\u0000\u0000\u0006\u00ca\u0001\u0000\u0000\u0000\u0006\u00cc\u0001\u0000"+ + "\u0000\u0000\u0006\u00ce\u0001\u0000\u0000\u0000\u0006\u00d0\u0001\u0000"+ + "\u0000\u0000\u0006\u00d2\u0001\u0000\u0000\u0000\u0006\u00d4\u0001\u0000"+ + "\u0000\u0000\u0006\u00d6\u0001\u0000\u0000\u0000\u0006\u00d8\u0001\u0000"+ + "\u0000\u0000\u0006\u00da\u0001\u0000\u0000\u0000\u0006\u00dc\u0001\u0000"+ + "\u0000\u0000\u0006\u00de\u0001\u0000\u0000\u0000\u0006\u00e0\u0001\u0000"+ + "\u0000\u0000\u0006\u00e2\u0001\u0000\u0000\u0000\u0006\u00e4\u0001\u0000"+ + "\u0000\u0000\u0006\u00e6\u0001\u0000\u0000\u0000\u0006\u00e8\u0001\u0000"+ + "\u0000\u0000\u0006\u00ea\u0001\u0000\u0000\u0000\u0006\u00ec\u0001\u0000"+ + "\u0000\u0000\u0006\u00ee\u0001\u0000\u0000\u0000\u0006\u00f0\u0001\u0000"+ + "\u0000\u0000\u0006\u00f2\u0001\u0000\u0000\u0000\u0006\u00f4\u0001\u0000"+ + "\u0000\u0000\u0006\u00f6\u0001\u0000\u0000\u0000\u0006\u00f8\u0001\u0000"+ + "\u0000\u0000\u0006\u00fa\u0001\u0000\u0000\u0000\u0006\u00fc\u0001\u0000"+ + "\u0000\u0000\u0006\u00fe\u0001\u0000\u0000\u0000\u0006\u0100\u0001\u0000"+ + "\u0000\u0000\u0006\u0102\u0001\u0000\u0000\u0000\u0006\u0104\u0001\u0000"+ + "\u0000\u0000\u0006\u0106\u0001\u0000\u0000\u0000\u0006\u0108\u0001\u0000"+ + "\u0000\u0000\u0006\u010a\u0001\u0000\u0000\u0000\u0006\u010c\u0001\u0000"+ + "\u0000\u0000\u0006\u010e\u0001\u0000\u0000\u0000\u0006\u0110\u0001\u0000"+ + "\u0000\u0000\u0006\u0112\u0001\u0000\u0000\u0000\u0006\u0114\u0001\u0000"+ + "\u0000\u0000\u0006\u0116\u0001\u0000\u0000\u0000\u0006\u0118\u0001\u0000"+ + "\u0000\u0000\u0006\u011a\u0001\u0000\u0000\u0000\u0006\u011c\u0001\u0000"+ + "\u0000\u0000\u0006\u011e\u0001\u0000\u0000\u0000\u0006\u0120\u0001\u0000"+ + "\u0000\u0000\u0006\u0122\u0001\u0000\u0000\u0000\u0006\u0124\u0001\u0000"+ + "\u0000\u0000\u0006\u0128\u0001\u0000\u0000\u0000\u0006\u012a\u0001\u0000"+ + "\u0000\u0000\u0006\u012c\u0001\u0000\u0000\u0000\u0006\u012e\u0001\u0000"+ + "\u0000\u0000\u0007\u0130\u0001\u0000\u0000\u0000\u0007\u0132\u0001\u0000"+ + "\u0000\u0000\u0007\u0134\u0001\u0000\u0000\u0000\u0007\u0136\u0001\u0000"+ + "\u0000\u0000\u0007\u0138\u0001\u0000\u0000\u0000\u0007\u013a\u0001\u0000"+ + "\u0000\u0000\u0007\u013c\u0001\u0000\u0000\u0000\u0007\u013e\u0001\u0000"+ + "\u0000\u0000\u0007\u0142\u0001\u0000\u0000\u0000\u0007\u0144\u0001\u0000"+ + "\u0000\u0000\u0007\u0146\u0001\u0000\u0000\u0000\u0007\u0148\u0001\u0000"+ + "\u0000\u0000\u0007\u014a\u0001\u0000\u0000\u0000\u0007\u014c\u0001\u0000"+ + "\u0000\u0000\b\u014e\u0001\u0000\u0000\u0000\b\u0150\u0001\u0000\u0000"+ + "\u0000\b\u0152\u0001\u0000\u0000\u0000\b\u0154\u0001\u0000\u0000\u0000"+ + "\b\u0156\u0001\u0000\u0000\u0000\t\u0158\u0001\u0000\u0000\u0000\t\u015a"+ + "\u0001\u0000\u0000\u0000\t\u015c\u0001\u0000\u0000\u0000\t\u015e\u0001"+ + "\u0000\u0000\u0000\t\u0160\u0001\u0000\u0000\u0000\t\u0162\u0001\u0000"+ + "\u0000\u0000\t\u0164\u0001\u0000\u0000\u0000\t\u0166\u0001\u0000\u0000"+ + "\u0000\t\u0168\u0001\u0000\u0000\u0000\t\u016a\u0001\u0000\u0000\u0000"+ + "\t\u016c\u0001\u0000\u0000\u0000\t\u016e\u0001\u0000\u0000\u0000\t\u0170"+ + "\u0001\u0000\u0000\u0000\n\u0172\u0001\u0000\u0000\u0000\n\u0174\u0001"+ + "\u0000\u0000\u0000\n\u0176\u0001\u0000\u0000\u0000\n\u0178\u0001\u0000"+ + "\u0000\u0000\n\u017a\u0001\u0000\u0000\u0000\n\u017c\u0001\u0000\u0000"+ + "\u0000\n\u017e\u0001\u0000\u0000\u0000\n\u0180\u0001\u0000\u0000\u0000"+ + "\n\u0182\u0001\u0000\u0000\u0000\n\u0184\u0001\u0000\u0000\u0000\u000b"+ + "\u0186\u0001\u0000\u0000\u0000\u000b\u0188\u0001\u0000\u0000\u0000\u000b"+ + "\u018a\u0001\u0000\u0000\u0000\u000b\u018c\u0001\u0000\u0000\u0000\u000b"+ + "\u018e\u0001\u0000\u0000\u0000\u000b\u0190\u0001\u0000\u0000\u0000\u000b"+ + "\u0192\u0001\u0000\u0000\u0000\f\u0194\u0001\u0000\u0000\u0000\f\u0196"+ + "\u0001\u0000\u0000\u0000\f\u0198\u0001\u0000\u0000\u0000\f\u019a\u0001"+ + "\u0000\u0000\u0000\f\u019c\u0001\u0000\u0000\u0000\f\u019e\u0001\u0000"+ + "\u0000\u0000\f\u01a0\u0001\u0000\u0000\u0000\f\u01a2\u0001\u0000\u0000"+ + "\u0000\f\u01a4\u0001\u0000\u0000\u0000\f\u01a6\u0001\u0000\u0000\u0000"+ + "\f\u01a8\u0001\u0000\u0000\u0000\r\u01aa\u0001\u0000\u0000\u0000\r\u01ac"+ + "\u0001\u0000\u0000\u0000\r\u01ae\u0001\u0000\u0000\u0000\r\u01b0\u0001"+ + "\u0000\u0000\u0000\r\u01b2\u0001\u0000\u0000\u0000\r\u01b4\u0001\u0000"+ + "\u0000\u0000\r\u01b6\u0001\u0000\u0000\u0000\r\u01bc\u0001\u0000\u0000"+ + "\u0000\r\u01be\u0001\u0000\u0000\u0000\r\u01c0\u0001\u0000\u0000\u0000"+ + "\r\u01c2\u0001\u0000\u0000\u0000\u000e\u01c4\u0001\u0000\u0000\u0000\u000e"+ + "\u01c6\u0001\u0000\u0000\u0000\u000e\u01c8\u0001\u0000\u0000\u0000\u000e"+ + "\u01ca\u0001\u0000\u0000\u0000\u000e\u01cc\u0001\u0000\u0000\u0000\u000e"+ + "\u01ce\u0001\u0000\u0000\u0000\u000e\u01d0\u0001\u0000\u0000\u0000\u000e"+ + "\u01d2\u0001\u0000\u0000\u0000\u000e\u01d4\u0001\u0000\u0000\u0000\u000e"+ + "\u01d6\u0001\u0000\u0000\u0000\u000e\u01d8\u0001\u0000\u0000\u0000\u000e"+ + "\u01da\u0001\u0000\u0000\u0000\u000e\u01dc\u0001\u0000\u0000\u0000\u000f"+ + "\u01de\u0001\u0000\u0000\u0000\u000f\u01e0\u0001\u0000\u0000\u0000\u000f"+ + "\u01e2\u0001\u0000\u0000\u0000\u000f\u01e4\u0001\u0000\u0000\u0000\u000f"+ + "\u01e6\u0001\u0000\u0000\u0000\u0010\u01e8\u0001\u0000\u0000\u0000\u0012"+ + "\u01f9\u0001\u0000\u0000\u0000\u0014\u0209\u0001\u0000\u0000\u0000\u0016"+ + "\u020f\u0001\u0000\u0000\u0000\u0018\u021f\u0001\u0000\u0000\u0000\u001a"+ + "\u0228\u0001\u0000\u0000\u0000\u001c\u0232\u0001\u0000\u0000\u0000\u001e"+ + "\u023c\u0001\u0000\u0000\u0000 \u0243\u0001\u0000\u0000\u0000\"\u024a"+ + "\u0001\u0000\u0000\u0000$\u0252\u0001\u0000\u0000\u0000&\u0258\u0001\u0000"+ + "\u0000\u0000(\u025f\u0001\u0000\u0000\u0000*\u0267\u0001\u0000\u0000\u0000"+ + ",\u026f\u0001\u0000\u0000\u0000.\u027e\u0001\u0000\u0000\u00000\u0288"+ + "\u0001\u0000\u0000\u00002\u028f\u0001\u0000\u0000\u00004\u029a\u0001\u0000"+ + "\u0000\u00006\u02a2\u0001\u0000\u0000\u00008\u02ab\u0001\u0000\u0000\u0000"+ + ":\u02b3\u0001\u0000\u0000\u0000<\u02bb\u0001\u0000\u0000\u0000>\u02c4"+ + "\u0001\u0000\u0000\u0000@\u02d0\u0001\u0000\u0000\u0000B\u02dc\u0001\u0000"+ + "\u0000\u0000D\u02e3\u0001\u0000\u0000\u0000F\u02ea\u0001\u0000\u0000\u0000"+ + "H\u02f6\u0001\u0000\u0000\u0000J\u02fd\u0001\u0000\u0000\u0000L\u0306"+ + "\u0001\u0000\u0000\u0000N\u030e\u0001\u0000\u0000\u0000P\u0314\u0001\u0000"+ + "\u0000\u0000R\u0319\u0001\u0000\u0000\u0000T\u031d\u0001\u0000\u0000\u0000"+ + "V\u0321\u0001\u0000\u0000\u0000X\u0325\u0001\u0000\u0000\u0000Z\u0329"+ + "\u0001\u0000\u0000\u0000\\\u032d\u0001\u0000\u0000\u0000^\u0331\u0001"+ + "\u0000\u0000\u0000`\u0335\u0001\u0000\u0000\u0000b\u0339\u0001\u0000\u0000"+ + "\u0000d\u033d\u0001\u0000\u0000\u0000f\u0342\u0001\u0000\u0000\u0000h"+ + "\u0347\u0001\u0000\u0000\u0000j\u034c\u0001\u0000\u0000\u0000l\u0351\u0001"+ + "\u0000\u0000\u0000n\u035a\u0001\u0000\u0000\u0000p\u0361\u0001\u0000\u0000"+ + "\u0000r\u0365\u0001\u0000\u0000\u0000t\u0369\u0001\u0000\u0000\u0000v"+ + "\u036d\u0001\u0000\u0000\u0000x\u0371\u0001\u0000\u0000\u0000z\u0377\u0001"+ + "\u0000\u0000\u0000|\u037b\u0001\u0000\u0000\u0000~\u037f\u0001\u0000\u0000"+ + "\u0000\u0080\u0383\u0001\u0000\u0000\u0000\u0082\u0387\u0001\u0000\u0000"+ + "\u0000\u0084\u038b\u0001\u0000\u0000\u0000\u0086\u038f\u0001\u0000\u0000"+ + "\u0000\u0088\u0393\u0001\u0000\u0000\u0000\u008a\u0397\u0001\u0000\u0000"+ + "\u0000\u008c\u039c\u0001\u0000\u0000\u0000\u008e\u03a1\u0001\u0000\u0000"+ + "\u0000\u0090\u03a5\u0001\u0000\u0000\u0000\u0092\u03a9\u0001\u0000\u0000"+ + "\u0000\u0094\u03ad\u0001\u0000\u0000\u0000\u0096\u03b2\u0001\u0000\u0000"+ + "\u0000\u0098\u03bb\u0001\u0000\u0000\u0000\u009a\u03bf\u0001\u0000\u0000"+ + "\u0000\u009c\u03c3\u0001\u0000\u0000\u0000\u009e\u03c7\u0001\u0000\u0000"+ + "\u0000\u00a0\u03cb\u0001\u0000\u0000\u0000\u00a2\u03d0\u0001\u0000\u0000"+ + "\u0000\u00a4\u03d5\u0001\u0000\u0000\u0000\u00a6\u03d9\u0001\u0000\u0000"+ + "\u0000\u00a8\u03dd\u0001\u0000\u0000\u0000\u00aa\u03e1\u0001\u0000\u0000"+ + "\u0000\u00ac\u03e5\u0001\u0000\u0000\u0000\u00ae\u03e7\u0001\u0000\u0000"+ + "\u0000\u00b0\u03e9\u0001\u0000\u0000\u0000\u00b2\u03ec\u0001\u0000\u0000"+ + "\u0000\u00b4\u03ee\u0001\u0000\u0000\u0000\u00b6\u03f7\u0001\u0000\u0000"+ + "\u0000\u00b8\u03f9\u0001\u0000\u0000\u0000\u00ba\u03fe\u0001\u0000\u0000"+ + "\u0000\u00bc\u0400\u0001\u0000\u0000\u0000\u00be\u0405\u0001\u0000\u0000"+ + "\u0000\u00c0\u0424\u0001\u0000\u0000\u0000\u00c2\u0427\u0001\u0000\u0000"+ + "\u0000\u00c4\u0455\u0001\u0000\u0000\u0000\u00c6\u0457\u0001\u0000\u0000"+ + "\u0000\u00c8\u045a\u0001\u0000\u0000\u0000\u00ca\u045d\u0001\u0000\u0000"+ + "\u0000\u00cc\u0462\u0001\u0000\u0000\u0000\u00ce\u0465\u0001\u0000\u0000"+ + "\u0000\u00d0\u0469\u0001\u0000\u0000\u0000\u00d2\u046d\u0001\u0000\u0000"+ + "\u0000\u00d4\u046f\u0001\u0000\u0000\u0000\u00d6\u0472\u0001\u0000\u0000"+ + "\u0000\u00d8\u0474\u0001\u0000\u0000\u0000\u00da\u0476\u0001\u0000\u0000"+ + "\u0000\u00dc\u047b\u0001\u0000\u0000\u0000\u00de\u047d\u0001\u0000\u0000"+ + "\u0000\u00e0\u0483\u0001\u0000\u0000\u0000\u00e2\u0489\u0001\u0000\u0000"+ + "\u0000\u00e4\u048c\u0001\u0000\u0000\u0000\u00e6\u048f\u0001\u0000\u0000"+ + "\u0000\u00e8\u0494\u0001\u0000\u0000\u0000\u00ea\u0499\u0001\u0000\u0000"+ + "\u0000\u00ec\u049d\u0001\u0000\u0000\u0000\u00ee\u04a2\u0001\u0000\u0000"+ + "\u0000\u00f0\u04a8\u0001\u0000\u0000\u0000\u00f2\u04ab\u0001\u0000\u0000"+ + "\u0000\u00f4\u04ad\u0001\u0000\u0000\u0000\u00f6\u04b3\u0001\u0000\u0000"+ + "\u0000\u00f8\u04b8\u0001\u0000\u0000\u0000\u00fa\u04bb\u0001\u0000\u0000"+ + "\u0000\u00fc\u04be\u0001\u0000\u0000\u0000\u00fe\u04c1\u0001\u0000\u0000"+ + "\u0000\u0100\u04c3\u0001\u0000\u0000\u0000\u0102\u04c6\u0001\u0000\u0000"+ + "\u0000\u0104\u04c8\u0001\u0000\u0000\u0000\u0106\u04cb\u0001\u0000\u0000"+ + "\u0000\u0108\u04cd\u0001\u0000\u0000\u0000\u010a\u04cf\u0001\u0000\u0000"+ + "\u0000\u010c\u04d1\u0001\u0000\u0000\u0000\u010e\u04d3\u0001\u0000\u0000"+ + "\u0000\u0110\u04d5\u0001\u0000\u0000\u0000\u0112\u04d7\u0001\u0000\u0000"+ + "\u0000\u0114\u04d9\u0001\u0000\u0000\u0000\u0116\u04dd\u0001\u0000\u0000"+ + "\u0000\u0118\u04f2\u0001\u0000\u0000\u0000\u011a\u0505\u0001\u0000\u0000"+ + "\u0000\u011c\u0507\u0001\u0000\u0000\u0000\u011e\u050c\u0001\u0000\u0000"+ + "\u0000\u0120\u0511\u0001\u0000\u0000\u0000\u0122\u0516\u0001\u0000\u0000"+ + "\u0000\u0124\u052b\u0001\u0000\u0000\u0000\u0126\u052d\u0001\u0000\u0000"+ + "\u0000\u0128\u0535\u0001\u0000\u0000\u0000\u012a\u0537\u0001\u0000\u0000"+ + "\u0000\u012c\u053b\u0001\u0000\u0000\u0000\u012e\u053f\u0001\u0000\u0000"+ + "\u0000\u0130\u0543\u0001\u0000\u0000\u0000\u0132\u0548\u0001\u0000\u0000"+ + "\u0000\u0134\u054c\u0001\u0000\u0000\u0000\u0136\u0550\u0001\u0000\u0000"+ + "\u0000\u0138\u0554\u0001\u0000\u0000\u0000\u013a\u0559\u0001\u0000\u0000"+ + "\u0000\u013c\u055d\u0001\u0000\u0000\u0000\u013e\u0561\u0001\u0000\u0000"+ + "\u0000\u0140\u056d\u0001\u0000\u0000\u0000\u0142\u0570\u0001\u0000\u0000"+ + "\u0000\u0144\u0574\u0001\u0000\u0000\u0000\u0146\u0578\u0001\u0000\u0000"+ + "\u0000\u0148\u057c\u0001\u0000\u0000\u0000\u014a\u0580\u0001\u0000\u0000"+ + "\u0000\u014c\u0584\u0001\u0000\u0000\u0000\u014e\u0588\u0001\u0000\u0000"+ + "\u0000\u0150\u058d\u0001\u0000\u0000\u0000\u0152\u0592\u0001\u0000\u0000"+ + "\u0000\u0154\u0596\u0001\u0000\u0000\u0000\u0156\u059a\u0001\u0000\u0000"+ + "\u0000\u0158\u059e\u0001\u0000\u0000\u0000\u015a\u05a3\u0001\u0000\u0000"+ + "\u0000\u015c\u05a8\u0001\u0000\u0000\u0000\u015e\u05ac\u0001\u0000\u0000"+ + "\u0000\u0160\u05b2\u0001\u0000\u0000\u0000\u0162\u05bb\u0001\u0000\u0000"+ + "\u0000\u0164\u05bf\u0001\u0000\u0000\u0000\u0166\u05c3\u0001\u0000\u0000"+ + "\u0000\u0168\u05c7\u0001\u0000\u0000\u0000\u016a\u05cb\u0001\u0000\u0000"+ + "\u0000\u016c\u05cf\u0001\u0000\u0000\u0000\u016e\u05d3\u0001\u0000\u0000"+ + "\u0000\u0170\u05d7\u0001\u0000\u0000\u0000\u0172\u05db\u0001\u0000\u0000"+ + "\u0000\u0174\u05e0\u0001\u0000\u0000\u0000\u0176\u05e4\u0001\u0000\u0000"+ + "\u0000\u0178\u05e8\u0001\u0000\u0000\u0000\u017a\u05ec\u0001\u0000\u0000"+ + "\u0000\u017c\u05f1\u0001\u0000\u0000\u0000\u017e\u05f5\u0001\u0000\u0000"+ + "\u0000\u0180\u05f9\u0001\u0000\u0000\u0000\u0182\u05fd\u0001\u0000\u0000"+ + "\u0000\u0184\u0601\u0001\u0000\u0000\u0000\u0186\u0605\u0001\u0000\u0000"+ + "\u0000\u0188\u060b\u0001\u0000\u0000\u0000\u018a\u060f\u0001\u0000\u0000"+ + "\u0000\u018c\u0613\u0001\u0000\u0000\u0000\u018e\u0617\u0001\u0000\u0000"+ + "\u0000\u0190\u061b\u0001\u0000\u0000\u0000\u0192\u061f\u0001\u0000\u0000"+ + "\u0000\u0194\u0623\u0001\u0000\u0000\u0000\u0196\u0628\u0001\u0000\u0000"+ + "\u0000\u0198\u062c\u0001\u0000\u0000\u0000\u019a\u0630\u0001\u0000\u0000"+ + "\u0000\u019c\u0634\u0001\u0000\u0000\u0000\u019e\u0639\u0001\u0000\u0000"+ + "\u0000\u01a0\u063e\u0001\u0000\u0000\u0000\u01a2\u0642\u0001\u0000\u0000"+ + "\u0000\u01a4\u0646\u0001\u0000\u0000\u0000\u01a6\u064a\u0001\u0000\u0000"+ + "\u0000\u01a8\u064e\u0001\u0000\u0000\u0000\u01aa\u0652\u0001\u0000\u0000"+ + "\u0000\u01ac\u0657\u0001\u0000\u0000\u0000\u01ae\u065b\u0001\u0000\u0000"+ + "\u0000\u01b0\u065f\u0001\u0000\u0000\u0000\u01b2\u0663\u0001\u0000\u0000"+ + "\u0000\u01b4\u0667\u0001\u0000\u0000\u0000\u01b6\u066c\u0001\u0000\u0000"+ + "\u0000\u01b8\u0675\u0001\u0000\u0000\u0000\u01ba\u068a\u0001\u0000\u0000"+ + "\u0000\u01bc\u068e\u0001\u0000\u0000\u0000\u01be\u0692\u0001\u0000\u0000"+ + "\u0000\u01c0\u0696\u0001\u0000\u0000\u0000\u01c2\u069a\u0001\u0000\u0000"+ + "\u0000\u01c4\u069e\u0001\u0000\u0000\u0000\u01c6\u06a3\u0001\u0000\u0000"+ + "\u0000\u01c8\u06a7\u0001\u0000\u0000\u0000\u01ca\u06ab\u0001\u0000\u0000"+ + "\u0000\u01cc\u06af\u0001\u0000\u0000\u0000\u01ce\u06b3\u0001\u0000\u0000"+ + "\u0000\u01d0\u06b7\u0001\u0000\u0000\u0000\u01d2\u06bc\u0001\u0000\u0000"+ + "\u0000\u01d4\u06c1\u0001\u0000\u0000\u0000\u01d6\u06c5\u0001\u0000\u0000"+ + "\u0000\u01d8\u06c9\u0001\u0000\u0000\u0000\u01da\u06cd\u0001\u0000\u0000"+ + "\u0000\u01dc\u06d1\u0001\u0000\u0000\u0000\u01de\u06d5\u0001\u0000\u0000"+ + "\u0000\u01e0\u06da\u0001\u0000\u0000\u0000\u01e2\u06df\u0001\u0000\u0000"+ + "\u0000\u01e4\u06e3\u0001\u0000\u0000\u0000\u01e6\u06e7\u0001\u0000\u0000"+ + "\u0000\u01e8\u01e9\u0005/\u0000\u0000\u01e9\u01ea\u0005/\u0000\u0000\u01ea"+ + "\u01ee\u0001\u0000\u0000\u0000\u01eb\u01ed\b\u0000\u0000\u0000\u01ec\u01eb"+ + "\u0001\u0000\u0000\u0000\u01ed\u01f0\u0001\u0000\u0000\u0000\u01ee\u01ec"+ + "\u0001\u0000\u0000\u0000\u01ee\u01ef\u0001\u0000\u0000\u0000\u01ef\u01f2"+ + "\u0001\u0000\u0000\u0000\u01f0\u01ee\u0001\u0000\u0000\u0000\u01f1\u01f3"+ + "\u0005\r\u0000\u0000\u01f2\u01f1\u0001\u0000\u0000\u0000\u01f2\u01f3\u0001"+ + "\u0000\u0000\u0000\u01f3\u01f5\u0001\u0000\u0000\u0000\u01f4\u01f6\u0005"+ + "\n\u0000\u0000\u01f5\u01f4\u0001\u0000\u0000\u0000\u01f5\u01f6\u0001\u0000"+ + "\u0000\u0000\u01f6\u01f7\u0001\u0000\u0000\u0000\u01f7\u01f8\u0006\u0000"+ + "\u0000\u0000\u01f8\u0011\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005/\u0000"+ + "\u0000\u01fa\u01fb\u0005*\u0000\u0000\u01fb\u0200\u0001\u0000\u0000\u0000"+ + "\u01fc\u01ff\u0003\u0012\u0001\u0000\u01fd\u01ff\t\u0000\u0000\u0000\u01fe"+ + "\u01fc\u0001\u0000\u0000\u0000\u01fe\u01fd\u0001\u0000\u0000\u0000\u01ff"+ + "\u0202\u0001\u0000\u0000\u0000\u0200\u0201\u0001\u0000\u0000\u0000\u0200"+ + "\u01fe\u0001\u0000\u0000\u0000\u0201\u0203\u0001\u0000\u0000\u0000\u0202"+ + "\u0200\u0001\u0000\u0000\u0000\u0203\u0204\u0005*\u0000\u0000\u0204\u0205"+ + "\u0005/\u0000\u0000\u0205\u0206\u0001\u0000\u0000\u0000\u0206\u0207\u0006"+ + "\u0001\u0000\u0000\u0207\u0013\u0001\u0000\u0000\u0000\u0208\u020a\u0007"+ + "\u0001\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u020a\u020b\u0001"+ + "\u0000\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020b\u020c\u0001"+ + "\u0000\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000\u020d\u020e\u0006"+ + "\u0002\u0000\u0000\u020e\u0015\u0001\u0000\u0000\u0000\u020f\u0210\u0004"+ + "\u0003\u0000\u0000\u0210\u0211\u0007\u0002\u0000\u0000\u0211\u0212\u0007"+ + "\u0003\u0000\u0000\u0212\u0213\u0007\u0004\u0000\u0000\u0213\u0214\u0007"+ + "\u0005\u0000\u0000\u0214\u0215\u0007\u0006\u0000\u0000\u0215\u0216\u0007"+ + "\u0007\u0000\u0000\u0216\u0217\u0005_\u0000\u0000\u0217\u0218\u0007\b"+ + "\u0000\u0000\u0218\u0219\u0007\t\u0000\u0000\u0219\u021a\u0007\n\u0000"+ + "\u0000\u021a\u021b\u0007\u0005\u0000\u0000\u021b\u021c\u0007\u000b\u0000"+ + "\u0000\u021c\u021d\u0001\u0000\u0000\u0000\u021d\u021e\u0006\u0003\u0001"+ + "\u0000\u021e\u0017\u0001\u0000\u0000\u0000\u021f\u0220\u0007\u0007\u0000"+ + "\u0000\u0220\u0221\u0007\u0005\u0000\u0000\u0221\u0222\u0007\f\u0000\u0000"+ + "\u0222\u0223\u0007\n\u0000\u0000\u0223\u0224\u0007\u0002\u0000\u0000\u0224"+ + "\u0225\u0007\u0003\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+ + "\u0227\u0006\u0004\u0002\u0000\u0227\u0019\u0001\u0000\u0000\u0000\u0228"+ + "\u0229\u0007\u0007\u0000\u0000\u0229\u022a\u0007\r\u0000\u0000\u022a\u022b"+ + "\u0007\b\u0000\u0000\u022b\u022c\u0007\u000e\u0000\u0000\u022c\u022d\u0007"+ + "\u0004\u0000\u0000\u022d\u022e\u0007\n\u0000\u0000\u022e\u022f\u0007\u0005"+ + "\u0000\u0000\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0006\u0005"+ + "\u0003\u0000\u0231\u001b\u0001\u0000\u0000\u0000\u0232\u0233\u0007\u000f"+ + "\u0000\u0000\u0233\u0234\u0007\n\u0000\u0000\u0234\u0235\u0007\u0010\u0000"+ + "\u0000\u0235\u0236\u0007\u0010\u0000\u0000\u0236\u0237\u0007\u0007\u0000"+ + "\u0000\u0237\u0238\u0007\u0002\u0000\u0000\u0238\u0239\u0007\u000b\u0000"+ + "\u0000\u0239\u023a\u0001\u0000\u0000\u0000\u023a\u023b\u0006\u0006\u0004"+ + "\u0000\u023b\u001d\u0001\u0000\u0000\u0000\u023c\u023d\u0007\u0007\u0000"+ + "\u0000\u023d\u023e\u0007\u0011\u0000\u0000\u023e\u023f\u0007\u0004\u0000"+ + "\u0000\u023f\u0240\u0007\u000e\u0000\u0000\u0240\u0241\u0001\u0000\u0000"+ + "\u0000\u0241\u0242\u0006\u0007\u0004\u0000\u0242\u001f\u0001\u0000\u0000"+ + "\u0000\u0243\u0244\u0007\u0006\u0000\u0000\u0244\u0245\u0007\f\u0000\u0000"+ + "\u0245\u0246\u0007\t\u0000\u0000\u0246\u0247\u0007\u0012\u0000\u0000\u0247"+ + "\u0248\u0001\u0000\u0000\u0000\u0248\u0249\u0006\b\u0004\u0000\u0249!"+ + "\u0001\u0000\u0000\u0000\u024a\u024b\u0007\u000e\u0000\u0000\u024b\u024c"+ + "\u0007\n\u0000\u0000\u024c\u024d\u0007\u0013\u0000\u0000\u024d\u024e\u0007"+ + "\n\u0000\u0000\u024e\u024f\u0007\u000b\u0000\u0000\u024f\u0250\u0001\u0000"+ + "\u0000\u0000\u0250\u0251\u0006\t\u0004\u0000\u0251#\u0001\u0000\u0000"+ + "\u0000\u0252\u0253\u0007\f\u0000\u0000\u0253\u0254\u0007\t\u0000\u0000"+ + "\u0254\u0255\u0007\u0014\u0000\u0000\u0255\u0256\u0001\u0000\u0000\u0000"+ + "\u0256\u0257\u0006\n\u0004\u0000\u0257%\u0001\u0000\u0000\u0000\u0258"+ + "\u0259\u0007\u0010\u0000\u0000\u0259\u025a\u0007\t\u0000\u0000\u025a\u025b"+ + "\u0007\f\u0000\u0000\u025b\u025c\u0007\u000b\u0000\u0000\u025c\u025d\u0001"+ + "\u0000\u0000\u0000\u025d\u025e\u0006\u000b\u0004\u0000\u025e\'\u0001\u0000"+ + "\u0000\u0000\u025f\u0260\u0007\u0010\u0000\u0000\u0260\u0261\u0007\u000b"+ + "\u0000\u0000\u0261\u0262\u0007\u0004\u0000\u0000\u0262\u0263\u0007\u000b"+ + "\u0000\u0000\u0263\u0264\u0007\u0010\u0000\u0000\u0264\u0265\u0001\u0000"+ + "\u0000\u0000\u0265\u0266\u0006\f\u0004\u0000\u0266)\u0001\u0000\u0000"+ + "\u0000\u0267\u0268\u0007\u0014\u0000\u0000\u0268\u0269\u0007\u0003\u0000"+ + "\u0000\u0269\u026a\u0007\u0007\u0000\u0000\u026a\u026b\u0007\f\u0000\u0000"+ + "\u026b\u026c\u0007\u0007\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000"+ + "\u026d\u026e\u0006\r\u0004\u0000\u026e+\u0001\u0000\u0000\u0000\u026f"+ + "\u0270\u0004\u000e\u0001\u0000\u0270\u0271\u0007\n\u0000\u0000\u0271\u0272"+ + "\u0007\u0005\u0000\u0000\u0272\u0273\u0007\u000e\u0000\u0000\u0273\u0274"+ + "\u0007\n\u0000\u0000\u0274\u0275\u0007\u0005\u0000\u0000\u0275\u0276\u0007"+ + "\u0007\u0000\u0000\u0276\u0277\u0007\u0010\u0000\u0000\u0277\u0278\u0007"+ + "\u000b\u0000\u0000\u0278\u0279\u0007\u0004\u0000\u0000\u0279\u027a\u0007"+ + "\u000b\u0000\u0000\u027a\u027b\u0007\u0010\u0000\u0000\u027b\u027c\u0001"+ + "\u0000\u0000\u0000\u027c\u027d\u0006\u000e\u0004\u0000\u027d-\u0001\u0000"+ + "\u0000\u0000\u027e\u027f\u0004\u000f\u0002\u0000\u027f\u0280\u0007\f\u0000"+ + "\u0000\u0280\u0281\u0007\u0007\u0000\u0000\u0281\u0282\u0007\f\u0000\u0000"+ + "\u0282\u0283\u0007\u0004\u0000\u0000\u0283\u0284\u0007\u0005\u0000\u0000"+ + "\u0284\u0285\u0007\u0012\u0000\u0000\u0285\u0286\u0001\u0000\u0000\u0000"+ + "\u0286\u0287\u0006\u000f\u0004\u0000\u0287/\u0001\u0000\u0000\u0000\u0288"+ + "\u0289\u0007\u0015\u0000\u0000\u0289\u028a\u0007\f\u0000\u0000\u028a\u028b"+ + "\u0007\t\u0000\u0000\u028b\u028c\u0007\u0013\u0000\u0000\u028c\u028d\u0001"+ + "\u0000\u0000\u0000\u028d\u028e\u0006\u0010\u0005\u0000\u028e1\u0001\u0000"+ + "\u0000\u0000\u028f\u0290\u0004\u0011\u0003\u0000\u0290\u0291\u0007\u0013"+ + "\u0000\u0000\u0291\u0292\u0007\u0007\u0000\u0000\u0292\u0293\u0007\u000b"+ + "\u0000\u0000\u0293\u0294\u0007\f\u0000\u0000\u0294\u0295\u0007\n\u0000"+ + "\u0000\u0295\u0296\u0007\u0002\u0000\u0000\u0296\u0297\u0007\u0010\u0000"+ + "\u0000\u0297\u0298\u0001\u0000\u0000\u0000\u0298\u0299\u0006\u0011\u0005"+ + "\u0000\u02993\u0001\u0000\u0000\u0000\u029a\u029b\u0004\u0012\u0004\u0000"+ + "\u029b\u029c\u0007\u0015\u0000\u0000\u029c\u029d\u0007\t\u0000\u0000\u029d"+ + "\u029e\u0007\f\u0000\u0000\u029e\u029f\u0007\u0012\u0000\u0000\u029f\u02a0"+ + "\u0001\u0000\u0000\u0000\u02a0\u02a1\u0006\u0012\u0006\u0000\u02a15\u0001"+ + "\u0000\u0000\u0000\u02a2\u02a3\u0007\u000e\u0000\u0000\u02a3\u02a4\u0007"+ + "\t\u0000\u0000\u02a4\u02a5\u0007\t\u0000\u0000\u02a5\u02a6\u0007\u0012"+ + "\u0000\u0000\u02a6\u02a7\u0007\u0016\u0000\u0000\u02a7\u02a8\u0007\b\u0000"+ + "\u0000\u02a8\u02a9\u0001\u0000\u0000\u0000\u02a9\u02aa\u0006\u0013\u0007"+ + "\u0000\u02aa7\u0001\u0000\u0000\u0000\u02ab\u02ac\u0004\u0014\u0005\u0000"+ + "\u02ac\u02ad\u0007\u0015\u0000\u0000\u02ad\u02ae\u0007\u0016\u0000\u0000"+ + "\u02ae\u02af\u0007\u000e\u0000\u0000\u02af\u02b0\u0007\u000e\u0000\u0000"+ + "\u02b0\u02b1\u0001\u0000\u0000\u0000\u02b1\u02b2\u0006\u0014\u0007\u0000"+ + "\u02b29\u0001\u0000\u0000\u0000\u02b3\u02b4\u0004\u0015\u0006\u0000\u02b4"+ + "\u02b5\u0007\u000e\u0000\u0000\u02b5\u02b6\u0007\u0007\u0000\u0000\u02b6"+ + "\u02b7\u0007\u0015\u0000\u0000\u02b7\u02b8\u0007\u000b\u0000\u0000\u02b8"+ + "\u02b9\u0001\u0000\u0000\u0000\u02b9\u02ba\u0006\u0015\u0007\u0000\u02ba"+ + ";\u0001\u0000\u0000\u0000\u02bb\u02bc\u0004\u0016\u0007\u0000\u02bc\u02bd"+ + "\u0007\f\u0000\u0000\u02bd\u02be\u0007\n\u0000\u0000\u02be\u02bf\u0007"+ + "\u0006\u0000\u0000\u02bf\u02c0\u0007\u0003\u0000\u0000\u02c0\u02c1\u0007"+ + "\u000b\u0000\u0000\u02c1\u02c2\u0001\u0000\u0000\u0000\u02c2\u02c3\u0006"+ + "\u0016\u0007\u0000\u02c3=\u0001\u0000\u0000\u0000\u02c4\u02c5\u0004\u0017"+ + "\b\u0000\u02c5\u02c6\u0007\u000e\u0000\u0000\u02c6\u02c7\u0007\t\u0000"+ + "\u0000\u02c7\u02c8\u0007\t\u0000\u0000\u02c8\u02c9\u0007\u0012\u0000\u0000"+ + "\u02c9\u02ca\u0007\u0016\u0000\u0000\u02ca\u02cb\u0007\b\u0000\u0000\u02cb"+ + "\u02cc\u0005_\u0000\u0000\u02cc\u02cd\u0005\u8001\uf414\u0000\u0000\u02cd"+ + "\u02ce\u0001\u0000\u0000\u0000\u02ce\u02cf\u0006\u0017\b\u0000\u02cf?"+ + "\u0001\u0000\u0000\u0000\u02d0\u02d1\u0007\u0013\u0000\u0000\u02d1\u02d2"+ + "\u0007\u0011\u0000\u0000\u02d2\u02d3\u0005_\u0000\u0000\u02d3\u02d4\u0007"+ + "\u0007\u0000\u0000\u02d4\u02d5\u0007\r\u0000\u0000\u02d5\u02d6\u0007\b"+ + "\u0000\u0000\u02d6\u02d7\u0007\u0004\u0000\u0000\u02d7\u02d8\u0007\u0005"+ + "\u0000\u0000\u02d8\u02d9\u0007\u000f\u0000\u0000\u02d9\u02da\u0001\u0000"+ + "\u0000\u0000\u02da\u02db\u0006\u0018\t\u0000\u02dbA\u0001\u0000\u0000"+ + "\u0000\u02dc\u02dd\u0007\u000f\u0000\u0000\u02dd\u02de\u0007\f\u0000\u0000"+ + "\u02de\u02df\u0007\t\u0000\u0000\u02df\u02e0\u0007\b\u0000\u0000\u02e0"+ + "\u02e1\u0001\u0000\u0000\u0000\u02e1\u02e2\u0006\u0019\n\u0000\u02e2C"+ + "\u0001\u0000\u0000\u0000\u02e3\u02e4\u0007\u0012\u0000\u0000\u02e4\u02e5"+ + "\u0007\u0007\u0000\u0000\u02e5\u02e6\u0007\u0007\u0000\u0000\u02e6\u02e7"+ + "\u0007\b\u0000\u0000\u02e7\u02e8\u0001\u0000\u0000\u0000\u02e8\u02e9\u0006"+ + "\u001a\n\u0000\u02e9E\u0001\u0000\u0000\u0000\u02ea\u02eb\u0004\u001b"+ + "\t\u0000\u02eb\u02ec\u0007\n\u0000\u0000\u02ec\u02ed\u0007\u0005\u0000"+ + "\u0000\u02ed\u02ee\u0007\u0010\u0000\u0000\u02ee\u02ef\u0007\n\u0000\u0000"+ + "\u02ef\u02f0\u0007\u0010\u0000\u0000\u02f0\u02f1\u0007\u000b\u0000\u0000"+ + "\u02f1\u02f2\u0005_\u0000\u0000\u02f2\u02f3\u0005\u8001\uf414\u0000\u0000"+ + "\u02f3\u02f4\u0001\u0000\u0000\u0000\u02f4\u02f5\u0006\u001b\n\u0000\u02f5"+ + "G\u0001\u0000\u0000\u0000\u02f6\u02f7\u0004\u001c\n\u0000\u02f7\u02f8"+ + "\u0007\f\u0000\u0000\u02f8\u02f9\u0007\f\u0000\u0000\u02f9\u02fa\u0007"+ + "\u0015\u0000\u0000\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fb\u02fc\u0006"+ + "\u001c\u0004\u0000\u02fcI\u0001\u0000\u0000\u0000\u02fd\u02fe\u0007\f"+ + "\u0000\u0000\u02fe\u02ff\u0007\u0007\u0000\u0000\u02ff\u0300\u0007\u0005"+ + "\u0000\u0000\u0300\u0301\u0007\u0004\u0000\u0000\u0301\u0302\u0007\u0013"+ + "\u0000\u0000\u0302\u0303\u0007\u0007\u0000\u0000\u0303\u0304\u0001\u0000"+ + "\u0000\u0000\u0304\u0305\u0006\u001d\u000b\u0000\u0305K\u0001\u0000\u0000"+ + "\u0000\u0306\u0307\u0007\u0010\u0000\u0000\u0307\u0308\u0007\u0003\u0000"+ + "\u0000\u0308\u0309\u0007\t\u0000\u0000\u0309\u030a\u0007\u0014\u0000\u0000"+ + "\u030a\u030b\u0001\u0000\u0000\u0000\u030b\u030c\u0006\u001e\f\u0000\u030c"+ + "M\u0001\u0000\u0000\u0000\u030d\u030f\b\u0017\u0000\u0000\u030e\u030d"+ + "\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000\u0000\u0000\u0310\u030e"+ + "\u0001\u0000\u0000\u0000\u0310\u0311\u0001\u0000\u0000\u0000\u0311\u0312"+ + "\u0001\u0000\u0000\u0000\u0312\u0313\u0006\u001f\u0004\u0000\u0313O\u0001"+ + "\u0000\u0000\u0000\u0314\u0315\u0003\u00aaM\u0000\u0315\u0316\u0001\u0000"+ + "\u0000\u0000\u0316\u0317\u0006 \r\u0000\u0317\u0318\u0006 \u000e\u0000"+ + "\u0318Q\u0001\u0000\u0000\u0000\u0319\u031a\u0003\u00c8\\\u0000\u031a"+ + "\u031b\u0001\u0000\u0000\u0000\u031b\u031c\u0006!\u000f\u0000\u031cS\u0001"+ + "\u0000\u0000\u0000\u031d\u031e\u0003\u00cc^\u0000\u031e\u031f\u0001\u0000"+ + "\u0000\u0000\u031f\u0320\u0006\"\u0010\u0000\u0320U\u0001\u0000\u0000"+ + "\u0000\u0321\u0322\u0003\u00dcf\u0000\u0322\u0323\u0001\u0000\u0000\u0000"+ + "\u0323\u0324\u0006#\u0011\u0000\u0324W\u0001\u0000\u0000\u0000\u0325\u0326"+ + "\u0003\u00d8d\u0000\u0326\u0327\u0001\u0000\u0000\u0000\u0327\u0328\u0006"+ + "$\u0012\u0000\u0328Y\u0001\u0000\u0000\u0000\u0329\u032a\u0003\u0128\u008c"+ + "\u0000\u032a\u032b\u0001\u0000\u0000\u0000\u032b\u032c\u0006%\u0013\u0000"+ + "\u032c[\u0001\u0000\u0000\u0000\u032d\u032e\u0003\u0124\u008a\u0000\u032e"+ + "\u032f\u0001\u0000\u0000\u0000\u032f\u0330\u0006&\u0014\u0000\u0330]\u0001"+ + "\u0000\u0000\u0000\u0331\u0332\u0003\u0010\u0000\u0000\u0332\u0333\u0001"+ + "\u0000\u0000\u0000\u0333\u0334\u0006\'\u0000\u0000\u0334_\u0001\u0000"+ + "\u0000\u0000\u0335\u0336\u0003\u0012\u0001\u0000\u0336\u0337\u0001\u0000"+ + "\u0000\u0000\u0337\u0338\u0006(\u0000\u0000\u0338a\u0001\u0000\u0000\u0000"+ + "\u0339\u033a\u0003\u0014\u0002\u0000\u033a\u033b\u0001\u0000\u0000\u0000"+ + "\u033b\u033c\u0006)\u0000\u0000\u033cc\u0001\u0000\u0000\u0000\u033d\u033e"+ + "\u0003\u00aaM\u0000\u033e\u033f\u0001\u0000\u0000\u0000\u033f\u0340\u0006"+ + "*\r\u0000\u0340\u0341\u0006*\u000e\u0000\u0341e\u0001\u0000\u0000\u0000"+ + "\u0342\u0343\u0003\u011c\u0086\u0000\u0343\u0344\u0001\u0000\u0000\u0000"+ + "\u0344\u0345\u0006+\u0015\u0000\u0345\u0346\u0006+\u0016\u0000\u0346g"+ + "\u0001\u0000\u0000\u0000\u0347\u0348\u0003\u00c8\\\u0000\u0348\u0349\u0001"+ + "\u0000\u0000\u0000\u0349\u034a\u0006,\u000f\u0000\u034a\u034b\u0006,\u0017"+ + "\u0000\u034bi\u0001\u0000\u0000\u0000\u034c\u034d\u0003\u00ca]\u0000\u034d"+ + "\u034e\u0001\u0000\u0000\u0000\u034e\u034f\u0006-\u0018\u0000\u034f\u0350"+ + "\u0006-\u0017\u0000\u0350k\u0001\u0000\u0000\u0000\u0351\u0352\b\u0018"+ + "\u0000\u0000\u0352m\u0001\u0000\u0000\u0000\u0353\u0355\u0003l.\u0000"+ + "\u0354\u0353\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000"+ + "\u0356\u0354\u0001\u0000\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000"+ + "\u0357\u0358\u0001\u0000\u0000\u0000\u0358\u0359\u0003\u00d6c\u0000\u0359"+ + "\u035b\u0001\u0000\u0000\u0000\u035a\u0354\u0001\u0000\u0000\u0000\u035a"+ + "\u035b\u0001\u0000\u0000\u0000\u035b\u035d\u0001\u0000\u0000\u0000\u035c"+ + "\u035e\u0003l.\u0000\u035d\u035c\u0001\u0000\u0000\u0000\u035e\u035f\u0001"+ + "\u0000\u0000\u0000\u035f\u035d\u0001\u0000\u0000\u0000\u035f\u0360\u0001"+ + "\u0000\u0000\u0000\u0360o\u0001\u0000\u0000\u0000\u0361\u0362\u0003n/"+ + "\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0364\u00060\u0019\u0000"+ + "\u0364q\u0001\u0000\u0000\u0000\u0365\u0366\u0003\u0010\u0000\u0000\u0366"+ + "\u0367\u0001\u0000\u0000\u0000\u0367\u0368\u00061\u0000\u0000\u0368s\u0001"+ + "\u0000\u0000\u0000\u0369\u036a\u0003\u0012\u0001\u0000\u036a\u036b\u0001"+ + "\u0000\u0000\u0000\u036b\u036c\u00062\u0000\u0000\u036cu\u0001\u0000\u0000"+ + "\u0000\u036d\u036e\u0003\u0014\u0002\u0000\u036e\u036f\u0001\u0000\u0000"+ + "\u0000\u036f\u0370\u00063\u0000\u0000\u0370w\u0001\u0000\u0000\u0000\u0371"+ + "\u0372\u0003\u00aaM\u0000\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0374"+ + "\u00064\r\u0000\u0374\u0375\u00064\u000e\u0000\u0375\u0376\u00064\u000e"+ + "\u0000\u0376y\u0001\u0000\u0000\u0000\u0377\u0378\u0003\u00d2a\u0000\u0378"+ + "\u0379\u0001\u0000\u0000\u0000\u0379\u037a\u00065\u001a\u0000\u037a{\u0001"+ + "\u0000\u0000\u0000\u037b\u037c\u0003\u00d8d\u0000\u037c\u037d\u0001\u0000"+ + "\u0000\u0000\u037d\u037e\u00066\u0012\u0000\u037e}\u0001\u0000\u0000\u0000"+ + "\u037f\u0380\u0003\u00dcf\u0000\u0380\u0381\u0001\u0000\u0000\u0000\u0381"+ + "\u0382\u00067\u0011\u0000\u0382\u007f\u0001\u0000\u0000\u0000\u0383\u0384"+ + "\u0003\u00ca]\u0000\u0384\u0385\u0001\u0000\u0000\u0000\u0385\u0386\u0006"+ + "8\u0018\u0000\u0386\u0081\u0001\u0000\u0000\u0000\u0387\u0388\u0003\u01bc"+ + "\u00d6\u0000\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u00069\u001b"+ + "\u0000\u038a\u0083\u0001\u0000\u0000\u0000\u038b\u038c\u0003\u0128\u008c"+ + "\u0000\u038c\u038d\u0001\u0000\u0000\u0000\u038d\u038e\u0006:\u0013\u0000"+ + "\u038e\u0085\u0001\u0000\u0000\u0000\u038f\u0390\u0003\u00f2q\u0000\u0390"+ + "\u0391\u0001\u0000\u0000\u0000\u0391\u0392\u0006;\u001c\u0000\u0392\u0087"+ + "\u0001\u0000\u0000\u0000\u0393\u0394\u0003\u0118\u0084\u0000\u0394\u0395"+ + "\u0001\u0000\u0000\u0000\u0395\u0396\u0006<\u001d\u0000\u0396\u0089\u0001"+ + "\u0000\u0000\u0000\u0397\u0398\u0004=\u000b\u0000\u0398\u0399\u0003\u0114"+ + "\u0082\u0000\u0399\u039a\u0001\u0000\u0000\u0000\u039a\u039b\u0006=\u001e"+ + "\u0000\u039b\u008b\u0001\u0000\u0000\u0000\u039c\u039d\u0004>\f\u0000"+ + "\u039d\u039e\u0003\u011a\u0085\u0000\u039e\u039f\u0001\u0000\u0000\u0000"+ + "\u039f\u03a0\u0006>\u001f\u0000\u03a0\u008d\u0001\u0000\u0000\u0000\u03a1"+ + "\u03a2\u0003\u0010\u0000\u0000\u03a2\u03a3\u0001\u0000\u0000\u0000\u03a3"+ + "\u03a4\u0006?\u0000\u0000\u03a4\u008f\u0001\u0000\u0000\u0000\u03a5\u03a6"+ + "\u0003\u0012\u0001\u0000\u03a6\u03a7\u0001\u0000\u0000\u0000\u03a7\u03a8"+ + "\u0006@\u0000\u0000\u03a8\u0091\u0001\u0000\u0000\u0000\u03a9\u03aa\u0003"+ + "\u0014\u0002\u0000\u03aa\u03ab\u0001\u0000\u0000\u0000\u03ab\u03ac\u0006"+ + "A\u0000\u0000\u03ac\u0093\u0001\u0000\u0000\u0000\u03ad\u03ae\u0003\u011e"+ + "\u0087\u0000\u03ae\u03af\u0001\u0000\u0000\u0000\u03af\u03b0\u0006B \u0000"+ + "\u03b0\u03b1\u0006B\u000e\u0000\u03b1\u0095\u0001\u0000\u0000\u0000\u03b2"+ + "\u03b3\u0003\u00d6c\u0000\u03b3\u03b4\u0001\u0000\u0000\u0000\u03b4\u03b5"+ + "\u0006C!\u0000\u03b5\u0097\u0001\u0000\u0000\u0000\u03b6\u03bc\u0003\u00b6"+ + "S\u0000\u03b7\u03bc\u0003\u00acN\u0000\u03b8\u03bc\u0003\u00dcf\u0000"+ + "\u03b9\u03bc\u0003\u00aeO\u0000\u03ba\u03bc\u0003\u00bcV\u0000\u03bb\u03b6"+ + "\u0001\u0000\u0000\u0000\u03bb\u03b7\u0001\u0000\u0000\u0000\u03bb\u03b8"+ + "\u0001\u0000\u0000\u0000\u03bb\u03b9\u0001\u0000\u0000\u0000\u03bb\u03ba"+ + "\u0001\u0000\u0000\u0000\u03bc\u03bd\u0001\u0000\u0000\u0000\u03bd\u03bb"+ + "\u0001\u0000\u0000\u0000\u03bd\u03be\u0001\u0000\u0000\u0000\u03be\u0099"+ + "\u0001\u0000\u0000\u0000\u03bf\u03c0\u0003\u0010\u0000\u0000\u03c0\u03c1"+ + "\u0001\u0000\u0000\u0000\u03c1\u03c2\u0006E\u0000\u0000\u03c2\u009b\u0001"+ + "\u0000\u0000\u0000\u03c3\u03c4\u0003\u0012\u0001\u0000\u03c4\u03c5\u0001"+ + "\u0000\u0000\u0000\u03c5\u03c6\u0006F\u0000\u0000\u03c6\u009d\u0001\u0000"+ + "\u0000\u0000\u03c7\u03c8\u0003\u0014\u0002\u0000\u03c8\u03c9\u0001\u0000"+ + "\u0000\u0000\u03c9\u03ca\u0006G\u0000\u0000\u03ca\u009f\u0001\u0000\u0000"+ + "\u0000\u03cb\u03cc\u0003\u011c\u0086\u0000\u03cc\u03cd\u0001\u0000\u0000"+ + "\u0000\u03cd\u03ce\u0006H\u0015\u0000\u03ce\u03cf\u0006H\"\u0000\u03cf"+ + "\u00a1\u0001\u0000\u0000\u0000\u03d0\u03d1\u0003\u00aaM\u0000\u03d1\u03d2"+ + "\u0001\u0000\u0000\u0000\u03d2\u03d3\u0006I\r\u0000\u03d3\u03d4\u0006"+ + "I\u000e\u0000\u03d4\u00a3\u0001\u0000\u0000\u0000\u03d5\u03d6\u0003\u0014"+ + "\u0002\u0000\u03d6\u03d7\u0001\u0000\u0000\u0000\u03d7\u03d8\u0006J\u0000"+ + "\u0000\u03d8\u00a5\u0001\u0000\u0000\u0000\u03d9\u03da\u0003\u0010\u0000"+ + "\u0000\u03da\u03db\u0001\u0000\u0000\u0000\u03db\u03dc\u0006K\u0000\u0000"+ + "\u03dc\u00a7\u0001\u0000\u0000\u0000\u03dd\u03de\u0003\u0012\u0001\u0000"+ + "\u03de\u03df\u0001\u0000\u0000\u0000\u03df\u03e0\u0006L\u0000\u0000\u03e0"+ + "\u00a9\u0001\u0000\u0000\u0000\u03e1\u03e2\u0005|\u0000\u0000\u03e2\u03e3"+ + "\u0001\u0000\u0000\u0000\u03e3\u03e4\u0006M\u000e\u0000\u03e4\u00ab\u0001"+ + "\u0000\u0000\u0000\u03e5\u03e6\u0007\u0019\u0000\u0000\u03e6\u00ad\u0001"+ + "\u0000\u0000\u0000\u03e7\u03e8\u0007\u001a\u0000\u0000\u03e8\u00af\u0001"+ + "\u0000\u0000\u0000\u03e9\u03ea\u0005\\\u0000\u0000\u03ea\u03eb\u0007\u001b"+ + "\u0000\u0000\u03eb\u00b1\u0001\u0000\u0000\u0000\u03ec\u03ed\b\u001c\u0000"+ + "\u0000\u03ed\u00b3\u0001\u0000\u0000\u0000\u03ee\u03f0\u0007\u0007\u0000"+ + "\u0000\u03ef\u03f1\u0007\u001d\u0000\u0000\u03f0\u03ef\u0001\u0000\u0000"+ + "\u0000\u03f0\u03f1\u0001\u0000\u0000\u0000\u03f1\u03f3\u0001\u0000\u0000"+ + "\u0000\u03f2\u03f4\u0003\u00acN\u0000\u03f3\u03f2\u0001\u0000\u0000\u0000"+ + "\u03f4\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f3\u0001\u0000\u0000\u0000"+ + "\u03f5\u03f6\u0001\u0000\u0000\u0000\u03f6\u00b5\u0001\u0000\u0000\u0000"+ + "\u03f7\u03f8\u0005@\u0000\u0000\u03f8\u00b7\u0001\u0000\u0000\u0000\u03f9"+ + "\u03fa\u0005`\u0000\u0000\u03fa\u00b9\u0001\u0000\u0000\u0000\u03fb\u03ff"+ + "\b\u001e\u0000\u0000\u03fc\u03fd\u0005`\u0000\u0000\u03fd\u03ff\u0005"+ + "`\u0000\u0000\u03fe\u03fb\u0001\u0000\u0000\u0000\u03fe\u03fc\u0001\u0000"+ + "\u0000\u0000\u03ff\u00bb\u0001\u0000\u0000\u0000\u0400\u0401\u0005_\u0000"+ + "\u0000\u0401\u00bd\u0001\u0000\u0000\u0000\u0402\u0406\u0003\u00aeO\u0000"+ + "\u0403\u0406\u0003\u00acN\u0000\u0404\u0406\u0003\u00bcV\u0000\u0405\u0402"+ + "\u0001\u0000\u0000\u0000\u0405\u0403\u0001\u0000\u0000\u0000\u0405\u0404"+ + "\u0001\u0000\u0000\u0000\u0406\u00bf\u0001\u0000\u0000\u0000\u0407\u040c"+ + "\u0005\"\u0000\u0000\u0408\u040b\u0003\u00b0P\u0000\u0409\u040b\u0003"+ + "\u00b2Q\u0000\u040a\u0408\u0001\u0000\u0000\u0000\u040a\u0409\u0001\u0000"+ + "\u0000\u0000\u040b\u040e\u0001\u0000\u0000\u0000\u040c\u040a\u0001\u0000"+ + "\u0000\u0000\u040c\u040d\u0001\u0000\u0000\u0000\u040d\u040f\u0001\u0000"+ + "\u0000\u0000\u040e\u040c\u0001\u0000\u0000\u0000\u040f\u0425\u0005\"\u0000"+ + "\u0000\u0410\u0411\u0005\"\u0000\u0000\u0411\u0412\u0005\"\u0000\u0000"+ + "\u0412\u0413\u0005\"\u0000\u0000\u0413\u0417\u0001\u0000\u0000\u0000\u0414"+ + "\u0416\b\u0000\u0000\u0000\u0415\u0414\u0001\u0000\u0000\u0000\u0416\u0419"+ + "\u0001\u0000\u0000\u0000\u0417\u0418\u0001\u0000\u0000\u0000\u0417\u0415"+ + "\u0001\u0000\u0000\u0000\u0418\u041a\u0001\u0000\u0000\u0000\u0419\u0417"+ + "\u0001\u0000\u0000\u0000\u041a\u041b\u0005\"\u0000\u0000\u041b\u041c\u0005"+ + "\"\u0000\u0000\u041c\u041d\u0005\"\u0000\u0000\u041d\u041f\u0001\u0000"+ + "\u0000\u0000\u041e\u0420\u0005\"\u0000\u0000\u041f\u041e\u0001\u0000\u0000"+ + "\u0000\u041f\u0420\u0001\u0000\u0000\u0000\u0420\u0422\u0001\u0000\u0000"+ + "\u0000\u0421\u0423\u0005\"\u0000\u0000\u0422\u0421\u0001\u0000\u0000\u0000"+ + "\u0422\u0423\u0001\u0000\u0000\u0000\u0423\u0425\u0001\u0000\u0000\u0000"+ + "\u0424\u0407\u0001\u0000\u0000\u0000\u0424\u0410\u0001\u0000\u0000\u0000"+ + "\u0425\u00c1\u0001\u0000\u0000\u0000\u0426\u0428\u0003\u00acN\u0000\u0427"+ + "\u0426\u0001\u0000\u0000\u0000\u0428\u0429\u0001\u0000\u0000\u0000\u0429"+ + "\u0427\u0001\u0000\u0000\u0000\u0429\u042a\u0001\u0000\u0000\u0000\u042a"+ + "\u00c3\u0001\u0000\u0000\u0000\u042b\u042d\u0003\u00acN\u0000\u042c\u042b"+ + "\u0001\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000\u042e\u042c"+ + "\u0001\u0000\u0000\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0430"+ + "\u0001\u0000\u0000\u0000\u0430\u0434\u0003\u00dcf\u0000\u0431\u0433\u0003"+ + "\u00acN\u0000\u0432\u0431\u0001\u0000\u0000\u0000\u0433\u0436\u0001\u0000"+ + "\u0000\u0000\u0434\u0432\u0001\u0000\u0000\u0000\u0434\u0435\u0001\u0000"+ + "\u0000\u0000\u0435\u0456\u0001\u0000\u0000\u0000\u0436\u0434\u0001\u0000"+ + "\u0000\u0000\u0437\u0439\u0003\u00dcf\u0000\u0438\u043a\u0003\u00acN\u0000"+ + "\u0439\u0438\u0001\u0000\u0000\u0000\u043a\u043b\u0001\u0000\u0000\u0000"+ + "\u043b\u0439\u0001\u0000\u0000\u0000\u043b\u043c\u0001\u0000\u0000\u0000"+ + "\u043c\u0456\u0001\u0000\u0000\u0000\u043d\u043f\u0003\u00acN\u0000\u043e"+ + "\u043d\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000\u0000\u0000\u0440"+ + "\u043e\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000\u0000\u0000\u0441"+ + "\u0449\u0001\u0000\u0000\u0000\u0442\u0446\u0003\u00dcf\u0000\u0443\u0445"+ + "\u0003\u00acN\u0000\u0444\u0443\u0001\u0000\u0000\u0000\u0445\u0448\u0001"+ + "\u0000\u0000\u0000\u0446\u0444\u0001\u0000\u0000\u0000\u0446\u0447\u0001"+ + "\u0000\u0000\u0000\u0447\u044a\u0001\u0000\u0000\u0000\u0448\u0446\u0001"+ + "\u0000\u0000\u0000\u0449\u0442\u0001\u0000\u0000\u0000\u0449\u044a\u0001"+ + "\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044c\u0003"+ + "\u00b4R\u0000\u044c\u0456\u0001\u0000\u0000\u0000\u044d\u044f\u0003\u00dc"+ + "f\u0000\u044e\u0450\u0003\u00acN\u0000\u044f\u044e\u0001\u0000\u0000\u0000"+ + "\u0450\u0451\u0001\u0000\u0000\u0000\u0451\u044f\u0001\u0000\u0000\u0000"+ + "\u0451\u0452\u0001\u0000\u0000\u0000\u0452\u0453\u0001\u0000\u0000\u0000"+ + "\u0453\u0454\u0003\u00b4R\u0000\u0454\u0456\u0001\u0000\u0000\u0000\u0455"+ + "\u042c\u0001\u0000\u0000\u0000\u0455\u0437\u0001\u0000\u0000\u0000\u0455"+ + "\u043e\u0001\u0000\u0000\u0000\u0455\u044d\u0001\u0000\u0000\u0000\u0456"+ + "\u00c5\u0001\u0000\u0000\u0000\u0457\u0458\u0007\u001f\u0000\u0000\u0458"+ + "\u0459\u0007 \u0000\u0000\u0459\u00c7\u0001\u0000\u0000\u0000\u045a\u045b"+ + "\u0007\t\u0000\u0000\u045b\u045c\u0007\u0005\u0000\u0000\u045c\u00c9\u0001"+ + "\u0000\u0000\u0000\u045d\u045e\u0007\u0014\u0000\u0000\u045e\u045f\u0007"+ + "\n\u0000\u0000\u045f\u0460\u0007\u000b\u0000\u0000\u0460\u0461\u0007\u0003"+ + "\u0000\u0000\u0461\u00cb\u0001\u0000\u0000\u0000\u0462\u0463\u0007\u0004"+ + "\u0000\u0000\u0463\u0464\u0007\u0010\u0000\u0000\u0464\u00cd\u0001\u0000"+ + "\u0000\u0000\u0465\u0466\u0007\u0004\u0000\u0000\u0466\u0467\u0007\u0005"+ + "\u0000\u0000\u0467\u0468\u0007\u000f\u0000\u0000\u0468\u00cf\u0001\u0000"+ + "\u0000\u0000\u0469\u046a\u0007\u0004\u0000\u0000\u046a\u046b\u0007\u0010"+ + "\u0000\u0000\u046b\u046c\u0007\u0002\u0000\u0000\u046c\u00d1\u0001\u0000"+ + "\u0000\u0000\u046d\u046e\u0005=\u0000\u0000\u046e\u00d3\u0001\u0000\u0000"+ + "\u0000\u046f\u0470\u0005:\u0000\u0000\u0470\u0471\u0005:\u0000\u0000\u0471"+ + "\u00d5\u0001\u0000\u0000\u0000\u0472\u0473\u0005:\u0000\u0000\u0473\u00d7"+ + "\u0001\u0000\u0000\u0000\u0474\u0475\u0005,\u0000\u0000\u0475\u00d9\u0001"+ + "\u0000\u0000\u0000\u0476\u0477\u0007\u000f\u0000\u0000\u0477\u0478\u0007"+ + "\u0007\u0000\u0000\u0478\u0479\u0007\u0010\u0000\u0000\u0479\u047a\u0007"+ + "\u0002\u0000\u0000\u047a\u00db\u0001\u0000\u0000\u0000\u047b\u047c\u0005"+ + ".\u0000\u0000\u047c\u00dd\u0001\u0000\u0000\u0000\u047d\u047e\u0007\u0015"+ + "\u0000\u0000\u047e\u047f\u0007\u0004\u0000\u0000\u047f\u0480\u0007\u000e"+ + "\u0000\u0000\u0480\u0481\u0007\u0010\u0000\u0000\u0481\u0482\u0007\u0007"+ + "\u0000\u0000\u0482\u00df\u0001\u0000\u0000\u0000\u0483\u0484\u0007\u0015"+ + "\u0000\u0000\u0484\u0485\u0007\n\u0000\u0000\u0485\u0486\u0007\f\u0000"+ + "\u0000\u0486\u0487\u0007\u0010\u0000\u0000\u0487\u0488\u0007\u000b\u0000"+ + "\u0000\u0488\u00e1\u0001\u0000\u0000\u0000\u0489\u048a\u0007\n\u0000\u0000"+ + "\u048a\u048b\u0007\u0005\u0000\u0000\u048b\u00e3\u0001\u0000\u0000\u0000"+ + "\u048c\u048d\u0007\n\u0000\u0000\u048d\u048e\u0007\u0010\u0000\u0000\u048e"+ + "\u00e5\u0001\u0000\u0000\u0000\u048f\u0490\u0007\u000e\u0000\u0000\u0490"+ + "\u0491\u0007\u0004\u0000\u0000\u0491\u0492\u0007\u0010\u0000\u0000\u0492"+ + "\u0493\u0007\u000b\u0000\u0000\u0493\u00e7\u0001\u0000\u0000\u0000\u0494"+ + "\u0495\u0007\u000e\u0000\u0000\u0495\u0496\u0007\n\u0000\u0000\u0496\u0497"+ + "\u0007\u0012\u0000\u0000\u0497\u0498\u0007\u0007\u0000\u0000\u0498\u00e9"+ + "\u0001\u0000\u0000\u0000\u0499\u049a\u0007\u0005\u0000\u0000\u049a\u049b"+ + "\u0007\t\u0000\u0000\u049b\u049c\u0007\u000b\u0000\u0000\u049c\u00eb\u0001"+ + "\u0000\u0000\u0000\u049d\u049e\u0007\u0005\u0000\u0000\u049e\u049f\u0007"+ + "\u0016\u0000\u0000\u049f\u04a0\u0007\u000e\u0000\u0000\u04a0\u04a1\u0007"+ + "\u000e\u0000\u0000\u04a1\u00ed\u0001\u0000\u0000\u0000\u04a2\u04a3\u0007"+ + "\u0005\u0000\u0000\u04a3\u04a4\u0007\u0016\u0000\u0000\u04a4\u04a5\u0007"+ + "\u000e\u0000\u0000\u04a5\u04a6\u0007\u000e\u0000\u0000\u04a6\u04a7\u0007"+ + "\u0010\u0000\u0000\u04a7\u00ef\u0001\u0000\u0000\u0000\u04a8\u04a9\u0007"+ + "\t\u0000\u0000\u04a9\u04aa\u0007\f\u0000\u0000\u04aa\u00f1\u0001\u0000"+ + "\u0000\u0000\u04ab\u04ac\u0005?\u0000\u0000\u04ac\u00f3\u0001\u0000\u0000"+ + "\u0000\u04ad\u04ae\u0007\f\u0000\u0000\u04ae\u04af\u0007\u000e\u0000\u0000"+ + "\u04af\u04b0\u0007\n\u0000\u0000\u04b0\u04b1\u0007\u0012\u0000\u0000\u04b1"+ + "\u04b2\u0007\u0007\u0000\u0000\u04b2\u00f5\u0001\u0000\u0000\u0000\u04b3"+ + "\u04b4\u0007\u000b\u0000\u0000\u04b4\u04b5\u0007\f\u0000\u0000\u04b5\u04b6"+ + "\u0007\u0016\u0000\u0000\u04b6\u04b7\u0007\u0007\u0000\u0000\u04b7\u00f7"+ + "\u0001\u0000\u0000\u0000\u04b8\u04b9\u0005=\u0000\u0000\u04b9\u04ba\u0005"+ + "=\u0000\u0000\u04ba\u00f9\u0001\u0000\u0000\u0000\u04bb\u04bc\u0005=\u0000"+ + "\u0000\u04bc\u04bd\u0005~\u0000\u0000\u04bd\u00fb\u0001\u0000\u0000\u0000"+ + "\u04be\u04bf\u0005!\u0000\u0000\u04bf\u04c0\u0005=\u0000\u0000\u04c0\u00fd"+ + "\u0001\u0000\u0000\u0000\u04c1\u04c2\u0005<\u0000\u0000\u04c2\u00ff\u0001"+ + "\u0000\u0000\u0000\u04c3\u04c4\u0005<\u0000\u0000\u04c4\u04c5\u0005=\u0000"+ + "\u0000\u04c5\u0101\u0001\u0000\u0000\u0000\u04c6\u04c7\u0005>\u0000\u0000"+ + "\u04c7\u0103\u0001\u0000\u0000\u0000\u04c8\u04c9\u0005>\u0000\u0000\u04c9"+ + "\u04ca\u0005=\u0000\u0000\u04ca\u0105\u0001\u0000\u0000\u0000\u04cb\u04cc"+ + "\u0005+\u0000\u0000\u04cc\u0107\u0001\u0000\u0000\u0000\u04cd\u04ce\u0005"+ + "-\u0000\u0000\u04ce\u0109\u0001\u0000\u0000\u0000\u04cf\u04d0\u0005*\u0000"+ + "\u0000\u04d0\u010b\u0001\u0000\u0000\u0000\u04d1\u04d2\u0005/\u0000\u0000"+ + "\u04d2\u010d\u0001\u0000\u0000\u0000\u04d3\u04d4\u0005%\u0000\u0000\u04d4"+ + "\u010f\u0001\u0000\u0000\u0000\u04d5\u04d6\u0005{\u0000\u0000\u04d6\u0111"+ + "\u0001\u0000\u0000\u0000\u04d7\u04d8\u0005}\u0000\u0000\u04d8\u0113\u0001"+ + "\u0000\u0000\u0000\u04d9\u04da\u0004\u0082\r\u0000\u04da\u04db\u0005?"+ + "\u0000\u0000\u04db\u04dc\u0005?\u0000\u0000\u04dc\u0115\u0001\u0000\u0000"+ + "\u0000\u04dd\u04de\u0003*\r\u0000\u04de\u04df\u0001\u0000\u0000\u0000"+ + "\u04df\u04e0\u0006\u0083#\u0000\u04e0\u0117\u0001\u0000\u0000\u0000\u04e1"+ + "\u04e4\u0003\u00f2q\u0000\u04e2\u04e5\u0003\u00aeO\u0000\u04e3\u04e5\u0003"+ + "\u00bcV\u0000\u04e4\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e3\u0001\u0000"+ + "\u0000\u0000\u04e5\u04e9\u0001\u0000\u0000\u0000\u04e6\u04e8\u0003\u00be"+ + "W\u0000\u04e7\u04e6\u0001\u0000\u0000\u0000\u04e8\u04eb\u0001\u0000\u0000"+ + "\u0000\u04e9\u04e7\u0001\u0000\u0000\u0000\u04e9\u04ea\u0001\u0000\u0000"+ + "\u0000\u04ea\u04f3\u0001\u0000\u0000\u0000\u04eb\u04e9\u0001\u0000\u0000"+ + "\u0000\u04ec\u04ee\u0003\u00f2q\u0000\u04ed\u04ef\u0003\u00acN\u0000\u04ee"+ + "\u04ed\u0001\u0000\u0000\u0000\u04ef\u04f0\u0001\u0000\u0000\u0000\u04f0"+ + "\u04ee\u0001\u0000\u0000\u0000\u04f0\u04f1\u0001\u0000\u0000\u0000\u04f1"+ + "\u04f3\u0001\u0000\u0000\u0000\u04f2\u04e1\u0001\u0000\u0000\u0000\u04f2"+ + "\u04ec\u0001\u0000\u0000\u0000\u04f3\u0119\u0001\u0000\u0000\u0000\u04f4"+ + "\u04f7\u0003\u0114\u0082\u0000\u04f5\u04f8\u0003\u00aeO\u0000\u04f6\u04f8"+ + "\u0003\u00bcV\u0000\u04f7\u04f5\u0001\u0000\u0000\u0000\u04f7\u04f6\u0001"+ + "\u0000\u0000\u0000\u04f8\u04fc\u0001\u0000\u0000\u0000\u04f9\u04fb\u0003"+ + "\u00beW\u0000\u04fa\u04f9\u0001\u0000\u0000\u0000\u04fb\u04fe\u0001\u0000"+ + "\u0000\u0000\u04fc\u04fa\u0001\u0000\u0000\u0000\u04fc\u04fd\u0001\u0000"+ + "\u0000\u0000\u04fd\u0506\u0001\u0000\u0000\u0000\u04fe\u04fc\u0001\u0000"+ + "\u0000\u0000\u04ff\u0501\u0003\u0114\u0082\u0000\u0500\u0502\u0003\u00ac"+ + "N\u0000\u0501\u0500\u0001\u0000\u0000\u0000\u0502\u0503\u0001\u0000\u0000"+ + "\u0000\u0503\u0501\u0001\u0000\u0000\u0000\u0503\u0504\u0001\u0000\u0000"+ + "\u0000\u0504\u0506\u0001\u0000\u0000\u0000\u0505\u04f4\u0001\u0000\u0000"+ + "\u0000\u0505\u04ff\u0001\u0000\u0000\u0000\u0506\u011b\u0001\u0000\u0000"+ + "\u0000\u0507\u0508\u0005[\u0000\u0000\u0508\u0509\u0001\u0000\u0000\u0000"+ + "\u0509\u050a\u0006\u0086\u0004\u0000\u050a\u050b\u0006\u0086\u0004\u0000"+ + "\u050b\u011d\u0001\u0000\u0000\u0000\u050c\u050d\u0005]\u0000\u0000\u050d"+ + "\u050e\u0001\u0000\u0000\u0000\u050e\u050f\u0006\u0087\u000e\u0000\u050f"+ + "\u0510\u0006\u0087\u000e\u0000\u0510\u011f\u0001\u0000\u0000\u0000\u0511"+ + "\u0512\u0005(\u0000\u0000\u0512\u0513\u0001\u0000\u0000\u0000\u0513\u0514"+ + "\u0006\u0088\u0004\u0000\u0514\u0515\u0006\u0088\u0004\u0000\u0515\u0121"+ + "\u0001\u0000\u0000\u0000\u0516\u0517\u0005)\u0000\u0000\u0517\u0518\u0001"+ + "\u0000\u0000\u0000\u0518\u0519\u0006\u0089\u000e\u0000\u0519\u051a\u0006"+ + "\u0089\u000e\u0000\u051a\u0123\u0001\u0000\u0000\u0000\u051b\u051f\u0003"+ + "\u00aeO\u0000\u051c\u051e\u0003\u00beW\u0000\u051d\u051c\u0001\u0000\u0000"+ + "\u0000\u051e\u0521\u0001\u0000\u0000\u0000\u051f\u051d\u0001\u0000\u0000"+ + "\u0000\u051f\u0520\u0001\u0000\u0000\u0000\u0520\u052c\u0001\u0000\u0000"+ + "\u0000\u0521\u051f\u0001\u0000\u0000\u0000\u0522\u0525\u0003\u00bcV\u0000"+ + "\u0523\u0525\u0003\u00b6S\u0000\u0524\u0522\u0001\u0000\u0000\u0000\u0524"+ + "\u0523\u0001\u0000\u0000\u0000\u0525\u0527\u0001\u0000\u0000\u0000\u0526"+ + "\u0528\u0003\u00beW\u0000\u0527\u0526\u0001\u0000\u0000\u0000\u0528\u0529"+ + "\u0001\u0000\u0000\u0000\u0529\u0527\u0001\u0000\u0000\u0000\u0529\u052a"+ + "\u0001\u0000\u0000\u0000\u052a\u052c\u0001\u0000\u0000\u0000\u052b\u051b"+ + "\u0001\u0000\u0000\u0000\u052b\u0524\u0001\u0000\u0000\u0000\u052c\u0125"+ + "\u0001\u0000\u0000\u0000\u052d\u052f\u0003\u00b8T\u0000\u052e\u0530\u0003"+ + "\u00baU\u0000\u052f\u052e\u0001\u0000\u0000\u0000\u0530\u0531\u0001\u0000"+ + "\u0000\u0000\u0531\u052f\u0001\u0000\u0000\u0000\u0531\u0532\u0001\u0000"+ + "\u0000\u0000\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0003\u00b8"+ + "T\u0000\u0534\u0127\u0001\u0000\u0000\u0000\u0535\u0536\u0003\u0126\u008b"+ + "\u0000\u0536\u0129\u0001\u0000\u0000\u0000\u0537\u0538\u0003\u0010\u0000"+ + "\u0000\u0538\u0539\u0001\u0000\u0000\u0000\u0539\u053a\u0006\u008d\u0000"+ + "\u0000\u053a\u012b\u0001\u0000\u0000\u0000\u053b\u053c\u0003\u0012\u0001"+ + "\u0000\u053c\u053d\u0001\u0000\u0000\u0000\u053d\u053e\u0006\u008e\u0000"+ + "\u0000\u053e\u012d\u0001\u0000\u0000\u0000\u053f\u0540\u0003\u0014\u0002"+ + "\u0000\u0540\u0541\u0001\u0000\u0000\u0000\u0541\u0542\u0006\u008f\u0000"+ + "\u0000\u0542\u012f\u0001\u0000\u0000\u0000\u0543\u0544\u0003\u00aaM\u0000"+ + "\u0544\u0545\u0001\u0000\u0000\u0000\u0545\u0546\u0006\u0090\r\u0000\u0546"+ + "\u0547\u0006\u0090\u000e\u0000\u0547\u0131\u0001\u0000\u0000\u0000\u0548"+ + "\u0549\u0003\u011c\u0086\u0000\u0549\u054a\u0001\u0000\u0000\u0000\u054a"+ + "\u054b\u0006\u0091\u0015\u0000\u054b\u0133\u0001\u0000\u0000\u0000\u054c"+ + "\u054d\u0003\u011e\u0087\u0000\u054d\u054e\u0001\u0000\u0000\u0000\u054e"+ + "\u054f\u0006\u0092 \u0000\u054f\u0135\u0001\u0000\u0000\u0000\u0550\u0551"+ + "\u0003\u00d6c\u0000\u0551\u0552\u0001\u0000\u0000\u0000\u0552\u0553\u0006"+ + "\u0093!\u0000\u0553\u0137\u0001\u0000\u0000\u0000\u0554\u0555\u0004\u0094"+ + "\u000e\u0000\u0555\u0556\u0003\u00d4b\u0000\u0556\u0557\u0001\u0000\u0000"+ + "\u0000\u0557\u0558\u0006\u0094$\u0000\u0558\u0139\u0001\u0000\u0000\u0000"+ + "\u0559\u055a\u0003\u00d8d\u0000\u055a\u055b\u0001\u0000\u0000\u0000\u055b"+ + "\u055c\u0006\u0095\u0012\u0000\u055c\u013b\u0001\u0000\u0000\u0000\u055d"+ + "\u055e\u0003\u00d2a\u0000\u055e\u055f\u0001\u0000\u0000\u0000\u055f\u0560"+ + "\u0006\u0096\u001a\u0000\u0560\u013d\u0001\u0000\u0000\u0000\u0561\u0562"+ + "\u0007\u0013\u0000\u0000\u0562\u0563\u0007\u0007\u0000\u0000\u0563\u0564"+ + "\u0007\u000b\u0000\u0000\u0564\u0565\u0007\u0004\u0000\u0000\u0565\u0566"+ + "\u0007\u000f\u0000\u0000\u0566\u0567\u0007\u0004\u0000\u0000\u0567\u0568"+ + "\u0007\u000b\u0000\u0000\u0568\u0569\u0007\u0004\u0000\u0000\u0569\u013f"+ + "\u0001\u0000\u0000\u0000\u056a\u056e\b!\u0000\u0000\u056b\u056c\u0005"+ + "/\u0000\u0000\u056c\u056e\b\"\u0000\u0000\u056d\u056a\u0001\u0000\u0000"+ + "\u0000\u056d\u056b\u0001\u0000\u0000\u0000\u056e\u0141\u0001\u0000\u0000"+ + "\u0000\u056f\u0571\u0003\u0140\u0098\u0000\u0570\u056f\u0001\u0000\u0000"+ + "\u0000\u0571\u0572\u0001\u0000\u0000\u0000\u0572\u0570\u0001\u0000\u0000"+ + "\u0000\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0143\u0001\u0000\u0000"+ + "\u0000\u0574\u0575\u0003\u0142\u0099\u0000\u0575\u0576\u0001\u0000\u0000"+ + "\u0000\u0576\u0577\u0006\u009a%\u0000\u0577\u0145\u0001\u0000\u0000\u0000"+ + "\u0578\u0579\u0003\u00c0X\u0000\u0579\u057a\u0001\u0000\u0000\u0000\u057a"+ + "\u057b\u0006\u009b&\u0000\u057b\u0147\u0001\u0000\u0000\u0000\u057c\u057d"+ + "\u0003\u0010\u0000\u0000\u057d\u057e\u0001\u0000\u0000\u0000\u057e\u057f"+ + "\u0006\u009c\u0000\u0000\u057f\u0149\u0001\u0000\u0000\u0000\u0580\u0581"+ + "\u0003\u0012\u0001\u0000\u0581\u0582\u0001\u0000\u0000\u0000\u0582\u0583"+ + "\u0006\u009d\u0000\u0000\u0583\u014b\u0001\u0000\u0000\u0000\u0584\u0585"+ + "\u0003\u0014\u0002\u0000\u0585\u0586\u0001\u0000\u0000\u0000\u0586\u0587"+ + "\u0006\u009e\u0000\u0000\u0587\u014d\u0001\u0000\u0000\u0000\u0588\u0589"+ + "\u0003\u0120\u0088\u0000\u0589\u058a\u0001\u0000\u0000\u0000\u058a\u058b"+ + "\u0006\u009f\'\u0000\u058b\u058c\u0006\u009f\"\u0000\u058c\u014f\u0001"+ + "\u0000\u0000\u0000\u058d\u058e\u0003\u00aaM\u0000\u058e\u058f\u0001\u0000"+ + "\u0000\u0000\u058f\u0590\u0006\u00a0\r\u0000\u0590\u0591\u0006\u00a0\u000e"+ + "\u0000\u0591\u0151\u0001\u0000\u0000\u0000\u0592\u0593\u0003\u0014\u0002"+ + "\u0000\u0593\u0594\u0001\u0000\u0000\u0000\u0594\u0595\u0006\u00a1\u0000"+ + "\u0000\u0595\u0153\u0001\u0000\u0000\u0000\u0596\u0597\u0003\u0010\u0000"+ + "\u0000\u0597\u0598\u0001\u0000\u0000\u0000\u0598\u0599\u0006\u00a2\u0000"+ + "\u0000\u0599\u0155\u0001\u0000\u0000\u0000\u059a\u059b\u0003\u0012\u0001"+ + "\u0000\u059b\u059c\u0001\u0000\u0000\u0000\u059c\u059d\u0006\u00a3\u0000"+ + "\u0000\u059d\u0157\u0001\u0000\u0000\u0000\u059e\u059f\u0003\u00aaM\u0000"+ + "\u059f\u05a0\u0001\u0000\u0000\u0000\u05a0\u05a1\u0006\u00a4\r\u0000\u05a1"+ + "\u05a2\u0006\u00a4\u000e\u0000\u05a2\u0159\u0001\u0000\u0000\u0000\u05a3"+ + "\u05a4\u0007#\u0000\u0000\u05a4\u05a5\u0007\t\u0000\u0000\u05a5\u05a6"+ + "\u0007\n\u0000\u0000\u05a6\u05a7\u0007\u0005\u0000\u0000\u05a7\u015b\u0001"+ + "\u0000\u0000\u0000\u05a8\u05a9\u0003\u00cc^\u0000\u05a9\u05aa\u0001\u0000"+ + "\u0000\u0000\u05aa\u05ab\u0006\u00a6\u0010\u0000\u05ab\u015d\u0001\u0000"+ + "\u0000\u0000\u05ac\u05ad\u0003\u00c8\\\u0000\u05ad\u05ae\u0001\u0000\u0000"+ + "\u0000\u05ae\u05af\u0006\u00a7\u000f\u0000\u05af\u05b0\u0006\u00a7\u000e"+ + "\u0000\u05b0\u05b1\u0006\u00a7\u0004\u0000\u05b1\u015f\u0001\u0000\u0000"+ + "\u0000\u05b2\u05b3\u0007\u0016\u0000\u0000\u05b3\u05b4\u0007\u0010\u0000"+ + "\u0000\u05b4\u05b5\u0007\n\u0000\u0000\u05b5\u05b6\u0007\u0005\u0000\u0000"+ + "\u05b6\u05b7\u0007\u0006\u0000\u0000\u05b7\u05b8\u0001\u0000\u0000\u0000"+ + "\u05b8\u05b9\u0006\u00a8\u000e\u0000\u05b9\u05ba\u0006\u00a8\u0004\u0000"+ + "\u05ba\u0161\u0001\u0000\u0000\u0000\u05bb\u05bc\u0003\u0142\u0099\u0000"+ + "\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be\u0006\u00a9%\u0000\u05be"+ + "\u0163\u0001\u0000\u0000\u0000\u05bf\u05c0\u0003\u00c0X\u0000\u05c0\u05c1"+ + "\u0001\u0000\u0000\u0000\u05c1\u05c2\u0006\u00aa&\u0000\u05c2\u0165\u0001"+ + "\u0000\u0000\u0000\u05c3\u05c4\u0003\u00d6c\u0000\u05c4\u05c5\u0001\u0000"+ + "\u0000\u0000\u05c5\u05c6\u0006\u00ab!\u0000\u05c6\u0167\u0001\u0000\u0000"+ + "\u0000\u05c7\u05c8\u0003\u0124\u008a\u0000\u05c8\u05c9\u0001\u0000\u0000"+ + "\u0000\u05c9\u05ca\u0006\u00ac\u0014\u0000\u05ca\u0169\u0001\u0000\u0000"+ + "\u0000\u05cb\u05cc\u0003\u0128\u008c\u0000\u05cc\u05cd\u0001\u0000\u0000"+ + "\u0000\u05cd\u05ce\u0006\u00ad\u0013\u0000\u05ce\u016b\u0001\u0000\u0000"+ + "\u0000\u05cf\u05d0\u0003\u0010\u0000\u0000\u05d0\u05d1\u0001\u0000\u0000"+ + "\u0000\u05d1\u05d2\u0006\u00ae\u0000\u0000\u05d2\u016d\u0001\u0000\u0000"+ + "\u0000\u05d3\u05d4\u0003\u0012\u0001\u0000\u05d4\u05d5\u0001\u0000\u0000"+ + "\u0000\u05d5\u05d6\u0006\u00af\u0000\u0000\u05d6\u016f\u0001\u0000\u0000"+ + "\u0000\u05d7\u05d8\u0003\u0014\u0002\u0000\u05d8\u05d9\u0001\u0000\u0000"+ + "\u0000\u05d9\u05da\u0006\u00b0\u0000\u0000\u05da\u0171\u0001\u0000\u0000"+ + "\u0000\u05db\u05dc\u0003\u00aaM\u0000\u05dc\u05dd\u0001\u0000\u0000\u0000"+ + "\u05dd\u05de\u0006\u00b1\r\u0000\u05de\u05df\u0006\u00b1\u000e\u0000\u05df"+ + "\u0173\u0001\u0000\u0000\u0000\u05e0\u05e1\u0003\u00d6c\u0000\u05e1\u05e2"+ + "\u0001\u0000\u0000\u0000\u05e2\u05e3\u0006\u00b2!\u0000\u05e3\u0175\u0001"+ + "\u0000\u0000\u0000\u05e4\u05e5\u0003\u00d8d\u0000\u05e5\u05e6\u0001\u0000"+ + "\u0000\u0000\u05e6\u05e7\u0006\u00b3\u0012\u0000\u05e7\u0177\u0001\u0000"+ + "\u0000\u0000\u05e8\u05e9\u0003\u00dcf\u0000\u05e9\u05ea\u0001\u0000\u0000"+ + "\u0000\u05ea\u05eb\u0006\u00b4\u0011\u0000\u05eb\u0179\u0001\u0000\u0000"+ + "\u0000\u05ec\u05ed\u0003\u00c8\\\u0000\u05ed\u05ee\u0001\u0000\u0000\u0000"+ + "\u05ee\u05ef\u0006\u00b5\u000f\u0000\u05ef\u05f0\u0006\u00b5(\u0000\u05f0"+ + "\u017b\u0001\u0000\u0000\u0000\u05f1\u05f2\u0003\u0142\u0099\u0000\u05f2"+ + "\u05f3\u0001\u0000\u0000\u0000\u05f3\u05f4\u0006\u00b6%\u0000\u05f4\u017d"+ + "\u0001\u0000\u0000\u0000\u05f5\u05f6\u0003\u00c0X\u0000\u05f6\u05f7\u0001"+ + "\u0000\u0000\u0000\u05f7\u05f8\u0006\u00b7&\u0000\u05f8\u017f\u0001\u0000"+ + "\u0000\u0000\u05f9\u05fa\u0003\u0010\u0000\u0000\u05fa\u05fb\u0001\u0000"+ + "\u0000\u0000\u05fb\u05fc\u0006\u00b8\u0000\u0000\u05fc\u0181\u0001\u0000"+ + "\u0000\u0000\u05fd\u05fe\u0003\u0012\u0001\u0000\u05fe\u05ff\u0001\u0000"+ + "\u0000\u0000\u05ff\u0600\u0006\u00b9\u0000\u0000\u0600\u0183\u0001\u0000"+ + "\u0000\u0000\u0601\u0602\u0003\u0014\u0002\u0000\u0602\u0603\u0001\u0000"+ + "\u0000\u0000\u0603\u0604\u0006\u00ba\u0000\u0000\u0604\u0185\u0001\u0000"+ + "\u0000\u0000\u0605\u0606\u0003\u00aaM\u0000\u0606\u0607\u0001\u0000\u0000"+ + "\u0000\u0607\u0608\u0006\u00bb\r\u0000\u0608\u0609\u0006\u00bb\u000e\u0000"+ + "\u0609\u060a\u0006\u00bb\u000e\u0000\u060a\u0187\u0001\u0000\u0000\u0000"+ + "\u060b\u060c\u0003\u00d8d\u0000\u060c\u060d\u0001\u0000\u0000\u0000\u060d"+ + "\u060e\u0006\u00bc\u0012\u0000\u060e\u0189\u0001\u0000\u0000\u0000\u060f"+ + "\u0610\u0003\u00dcf\u0000\u0610\u0611\u0001\u0000\u0000\u0000\u0611\u0612"+ + "\u0006\u00bd\u0011\u0000\u0612\u018b\u0001\u0000\u0000\u0000\u0613\u0614"+ + "\u0003\u01bc\u00d6\u0000\u0614\u0615\u0001\u0000\u0000\u0000\u0615\u0616"+ + "\u0006\u00be\u001b\u0000\u0616\u018d\u0001\u0000\u0000\u0000\u0617\u0618"+ + "\u0003\u0010\u0000\u0000\u0618\u0619\u0001\u0000\u0000\u0000\u0619\u061a"+ + "\u0006\u00bf\u0000\u0000\u061a\u018f\u0001\u0000\u0000\u0000\u061b\u061c"+ + "\u0003\u0012\u0001\u0000\u061c\u061d\u0001\u0000\u0000\u0000\u061d\u061e"+ + "\u0006\u00c0\u0000\u0000\u061e\u0191\u0001\u0000\u0000\u0000\u061f\u0620"+ + "\u0003\u0014\u0002\u0000\u0620\u0621\u0001\u0000\u0000\u0000\u0621\u0622"+ + "\u0006\u00c1\u0000\u0000\u0622\u0193\u0001\u0000\u0000\u0000\u0623\u0624"+ + "\u0003\u00aaM\u0000\u0624\u0625\u0001\u0000\u0000\u0000\u0625\u0626\u0006"+ + "\u00c2\r\u0000\u0626\u0627\u0006\u00c2\u000e\u0000\u0627\u0195\u0001\u0000"+ + "\u0000\u0000\u0628\u0629\u0003\u00dcf\u0000\u0629\u062a\u0001\u0000\u0000"+ + "\u0000\u062a\u062b\u0006\u00c3\u0011\u0000\u062b\u0197\u0001\u0000\u0000"+ + "\u0000\u062c\u062d\u0003\u00f2q\u0000\u062d\u062e\u0001\u0000\u0000\u0000"+ + "\u062e\u062f\u0006\u00c4\u001c\u0000\u062f\u0199\u0001\u0000\u0000\u0000"+ + "\u0630\u0631\u0003\u0118\u0084\u0000\u0631\u0632\u0001\u0000\u0000\u0000"+ + "\u0632\u0633\u0006\u00c5\u001d\u0000\u0633\u019b\u0001\u0000\u0000\u0000"+ + "\u0634\u0635\u0004\u00c6\u000f\u0000\u0635\u0636\u0003\u0114\u0082\u0000"+ + "\u0636\u0637\u0001\u0000\u0000\u0000\u0637\u0638\u0006\u00c6\u001e\u0000"+ + "\u0638\u019d\u0001\u0000\u0000\u0000\u0639\u063a\u0004\u00c7\u0010\u0000"+ + "\u063a\u063b\u0003\u011a\u0085\u0000\u063b\u063c\u0001\u0000\u0000\u0000"+ + "\u063c\u063d\u0006\u00c7\u001f\u0000\u063d\u019f\u0001\u0000\u0000\u0000"+ + "\u063e\u063f\u0003\u0128\u008c\u0000\u063f\u0640\u0001\u0000\u0000\u0000"+ + "\u0640\u0641\u0006\u00c8\u0013\u0000\u0641\u01a1\u0001\u0000\u0000\u0000"+ + "\u0642\u0643\u0003\u0124\u008a\u0000\u0643\u0644\u0001\u0000\u0000\u0000"+ + "\u0644\u0645\u0006\u00c9\u0014\u0000\u0645\u01a3\u0001\u0000\u0000\u0000"+ + "\u0646\u0647\u0003\u0010\u0000\u0000\u0647\u0648\u0001\u0000\u0000\u0000"+ + "\u0648\u0649\u0006\u00ca\u0000\u0000\u0649\u01a5\u0001\u0000\u0000\u0000"+ + "\u064a\u064b\u0003\u0012\u0001\u0000\u064b\u064c\u0001\u0000\u0000\u0000"+ + "\u064c\u064d\u0006\u00cb\u0000\u0000\u064d\u01a7\u0001\u0000\u0000\u0000"+ + "\u064e\u064f\u0003\u0014\u0002\u0000\u064f\u0650\u0001\u0000\u0000\u0000"+ + "\u0650\u0651\u0006\u00cc\u0000\u0000\u0651\u01a9\u0001\u0000\u0000\u0000"+ + "\u0652\u0653\u0003\u00aaM\u0000\u0653\u0654\u0001\u0000\u0000\u0000\u0654"+ + "\u0655\u0006\u00cd\r\u0000\u0655\u0656\u0006\u00cd\u000e\u0000\u0656\u01ab"+ + "\u0001\u0000\u0000\u0000\u0657\u0658\u0003\u00dcf\u0000\u0658\u0659\u0001"+ + "\u0000\u0000\u0000\u0659\u065a\u0006\u00ce\u0011\u0000\u065a\u01ad\u0001"+ + "\u0000\u0000\u0000\u065b\u065c\u0003\u00d8d\u0000\u065c\u065d\u0001\u0000"+ + "\u0000\u0000\u065d\u065e\u0006\u00cf\u0012\u0000\u065e\u01af\u0001\u0000"+ + "\u0000\u0000\u065f\u0660\u0003\u00f2q\u0000\u0660\u0661\u0001\u0000\u0000"+ + "\u0000\u0661\u0662\u0006\u00d0\u001c\u0000\u0662\u01b1\u0001\u0000\u0000"+ + "\u0000\u0663\u0664\u0003\u0118\u0084\u0000\u0664\u0665\u0001\u0000\u0000"+ + "\u0000\u0665\u0666\u0006\u00d1\u001d\u0000\u0666\u01b3\u0001\u0000\u0000"+ + "\u0000\u0667\u0668\u0004\u00d2\u0011\u0000\u0668\u0669\u0003\u0114\u0082"+ + "\u0000\u0669\u066a\u0001\u0000\u0000\u0000\u066a\u066b\u0006\u00d2\u001e"+ + "\u0000\u066b\u01b5\u0001\u0000\u0000\u0000\u066c\u066d\u0004\u00d3\u0012"+ + "\u0000\u066d\u066e\u0003\u011a\u0085\u0000\u066e\u066f\u0001\u0000\u0000"+ + "\u0000\u066f\u0670\u0006\u00d3\u001f\u0000\u0670\u01b7\u0001\u0000\u0000"+ + "\u0000\u0671\u0676\u0003\u00aeO\u0000\u0672\u0676\u0003\u00acN\u0000\u0673"+ + "\u0676\u0003\u00bcV\u0000\u0674\u0676\u0003\u010a}\u0000\u0675\u0671\u0001"+ + "\u0000\u0000\u0000\u0675\u0672\u0001\u0000\u0000\u0000\u0675\u0673\u0001"+ + "\u0000\u0000\u0000\u0675\u0674\u0001\u0000\u0000\u0000\u0676\u01b9\u0001"+ + "\u0000\u0000\u0000\u0677\u067a\u0003\u00aeO\u0000\u0678\u067a\u0003\u010a"+ + "}\u0000\u0679\u0677\u0001\u0000\u0000\u0000\u0679\u0678\u0001\u0000\u0000"+ + "\u0000\u067a\u067e\u0001\u0000\u0000\u0000\u067b\u067d\u0003\u01b8\u00d4"+ + "\u0000\u067c\u067b\u0001\u0000\u0000\u0000\u067d\u0680\u0001\u0000\u0000"+ + "\u0000\u067e\u067c\u0001\u0000\u0000\u0000\u067e\u067f\u0001\u0000\u0000"+ + "\u0000\u067f\u068b\u0001\u0000\u0000\u0000\u0680\u067e\u0001\u0000\u0000"+ + "\u0000\u0681\u0684\u0003\u00bcV\u0000\u0682\u0684\u0003\u00b6S\u0000\u0683"+ + "\u0681\u0001\u0000\u0000\u0000\u0683\u0682\u0001\u0000\u0000\u0000\u0684"+ + "\u0686\u0001\u0000\u0000\u0000\u0685\u0687\u0003\u01b8\u00d4\u0000\u0686"+ + "\u0685\u0001\u0000\u0000\u0000\u0687\u0688\u0001\u0000\u0000\u0000\u0688"+ + "\u0686\u0001\u0000\u0000\u0000\u0688\u0689\u0001\u0000\u0000\u0000\u0689"+ + "\u068b\u0001\u0000\u0000\u0000\u068a\u0679\u0001\u0000\u0000\u0000\u068a"+ + "\u0683\u0001\u0000\u0000\u0000\u068b\u01bb\u0001\u0000\u0000\u0000\u068c"+ + "\u068f\u0003\u01ba\u00d5\u0000\u068d\u068f\u0003\u0126\u008b\u0000\u068e"+ + "\u068c\u0001\u0000\u0000\u0000\u068e\u068d\u0001\u0000\u0000\u0000\u068f"+ + "\u0690\u0001\u0000\u0000\u0000\u0690\u068e\u0001\u0000\u0000\u0000\u0690"+ + "\u0691\u0001\u0000\u0000\u0000\u0691\u01bd\u0001\u0000\u0000\u0000\u0692"+ + "\u0693\u0003\u0010\u0000\u0000\u0693\u0694\u0001\u0000\u0000\u0000\u0694"+ + "\u0695\u0006\u00d7\u0000\u0000\u0695\u01bf\u0001\u0000\u0000\u0000\u0696"+ + "\u0697\u0003\u0012\u0001\u0000\u0697\u0698\u0001\u0000\u0000\u0000\u0698"+ + "\u0699\u0006\u00d8\u0000\u0000\u0699\u01c1\u0001\u0000\u0000\u0000\u069a"+ + "\u069b\u0003\u0014\u0002\u0000\u069b\u069c\u0001\u0000\u0000\u0000\u069c"+ + "\u069d\u0006\u00d9\u0000\u0000\u069d\u01c3\u0001\u0000\u0000\u0000\u069e"+ + "\u069f\u0003\u00aaM\u0000\u069f\u06a0\u0001\u0000\u0000\u0000\u06a0\u06a1"+ + "\u0006\u00da\r\u0000\u06a1\u06a2\u0006\u00da\u000e\u0000\u06a2\u01c5\u0001"+ + "\u0000\u0000\u0000\u06a3\u06a4\u0003\u00d2a\u0000\u06a4\u06a5\u0001\u0000"+ + "\u0000\u0000\u06a5\u06a6\u0006\u00db\u001a\u0000\u06a6\u01c7\u0001\u0000"+ + "\u0000\u0000\u06a7\u06a8\u0003\u00d8d\u0000\u06a8\u06a9\u0001\u0000\u0000"+ + "\u0000\u06a9\u06aa\u0006\u00dc\u0012\u0000\u06aa\u01c9\u0001\u0000\u0000"+ + "\u0000\u06ab\u06ac\u0003\u00dcf\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000"+ + "\u06ad\u06ae\u0006\u00dd\u0011\u0000\u06ae\u01cb\u0001\u0000\u0000\u0000"+ + "\u06af\u06b0\u0003\u00f2q\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1"+ + "\u06b2\u0006\u00de\u001c\u0000\u06b2\u01cd\u0001\u0000\u0000\u0000\u06b3"+ + "\u06b4\u0003\u0118\u0084\u0000\u06b4\u06b5\u0001\u0000\u0000\u0000\u06b5"+ + "\u06b6\u0006\u00df\u001d\u0000\u06b6\u01cf\u0001\u0000\u0000\u0000\u06b7"+ + "\u06b8\u0004\u00e0\u0013\u0000\u06b8\u06b9\u0003\u0114\u0082\u0000\u06b9"+ + "\u06ba\u0001\u0000\u0000\u0000\u06ba\u06bb\u0006\u00e0\u001e\u0000\u06bb"+ + "\u01d1\u0001\u0000\u0000\u0000\u06bc\u06bd\u0004\u00e1\u0014\u0000\u06bd"+ + "\u06be\u0003\u011a\u0085\u0000\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf"+ + "\u06c0\u0006\u00e1\u001f\u0000\u06c0\u01d3\u0001\u0000\u0000\u0000\u06c1"+ + "\u06c2\u0003\u00cc^\u0000\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4"+ + "\u0006\u00e2\u0010\u0000\u06c4\u01d5\u0001\u0000\u0000\u0000\u06c5\u06c6"+ + "\u0003\u01bc\u00d6\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8"+ + "\u0006\u00e3\u001b\u0000\u06c8\u01d7\u0001\u0000\u0000\u0000\u06c9\u06ca"+ + "\u0003\u0010\u0000\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc"+ + "\u0006\u00e4\u0000\u0000\u06cc\u01d9\u0001\u0000\u0000\u0000\u06cd\u06ce"+ + "\u0003\u0012\u0001\u0000\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0"+ + "\u0006\u00e5\u0000\u0000\u06d0\u01db\u0001\u0000\u0000\u0000\u06d1\u06d2"+ + "\u0003\u0014\u0002\u0000\u06d2\u06d3\u0001\u0000\u0000\u0000\u06d3\u06d4"+ + "\u0006\u00e6\u0000\u0000\u06d4\u01dd\u0001\u0000\u0000\u0000\u06d5\u06d6"+ + "\u0003\u00aaM\u0000\u06d6\u06d7\u0001\u0000\u0000\u0000\u06d7\u06d8\u0006"+ + "\u00e7\r\u0000\u06d8\u06d9\u0006\u00e7\u000e\u0000\u06d9\u01df\u0001\u0000"+ + "\u0000\u0000\u06da\u06db\u0007\n\u0000\u0000\u06db\u06dc\u0007\u0005\u0000"+ + "\u0000\u06dc\u06dd\u0007\u0015\u0000\u0000\u06dd\u06de\u0007\t\u0000\u0000"+ + "\u06de\u01e1\u0001\u0000\u0000\u0000\u06df\u06e0\u0003\u0010\u0000\u0000"+ + "\u06e0\u06e1\u0001\u0000\u0000\u0000\u06e1\u06e2\u0006\u00e9\u0000\u0000"+ + "\u06e2\u01e3\u0001\u0000\u0000\u0000\u06e3\u06e4\u0003\u0012\u0001\u0000"+ + "\u06e4\u06e5\u0001\u0000\u0000\u0000\u06e5\u06e6\u0006\u00ea\u0000\u0000"+ + "\u06e6\u01e5\u0001\u0000\u0000\u0000\u06e7\u06e8\u0003\u0014\u0002\u0000"+ + "\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea\u0006\u00eb\u0000\u0000"+ + "\u06ea\u01e7\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005"+ + "\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u01ee\u01f2\u01f5\u01fe\u0200"+ + "\u020b\u0310\u0356\u035a\u035f\u03bb\u03bd\u03f0\u03f5\u03fe\u0405\u040a"+ + "\u040c\u0417\u041f\u0422\u0424\u0429\u042e\u0434\u043b\u0440\u0446\u0449"+ + "\u0451\u0455\u04e4\u04e9\u04f0\u04f2\u04f7\u04fc\u0503\u0505\u051f\u0524"+ + "\u0529\u052b\u0531\u056d\u0572\u0675\u0679\u067e\u0683\u0688\u068a\u068e"+ + "\u0690)\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\n\u0000\u0005\f\u0000\u0005\r\u0000\u0005\u000e\u0000\u0005\u000f"+ + "\u0000\u00072\u0000\u0004\u0000\u0000\u00077\u0000\u00079\u0000\u0007"+ + "A\u0000\u0007?\u0000\u0007e\u0000\u0007d\u0000\u0007`\u0000\u0005\u0004"+ + "\u0000\u0005\u0003\u0000\u00078\u0000\u0007$\u0000\u0007<\u0000\u0007"+ + "\u007f\u0000\u0007L\u0000\u0007^\u0000\u0007]\u0000\u0007_\u0000\u0007"+ + "a\u0000\u0007>\u0000\u0005\u0000\u0000\u0007\u000e\u0000\u0007=\u0000"+ + "\u0007j\u0000\u00073\u0000\u0007b\u0000\u0005\u000b\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 56b4046cd2075..e6464bbe94ebd 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 @@ -15,6 +15,7 @@ null 'stats' 'where' null +null 'from' null null @@ -34,8 +35,6 @@ null null null null -'on' -'with' null null null @@ -55,6 +54,9 @@ null null null 'by' +'on' +'with' +'as' 'and' 'asc' '=' @@ -128,7 +130,6 @@ null null null null -'as' null null null @@ -154,6 +155,7 @@ SORT STATS WHERE DEV_INLINESTATS +DEV_RERANK FROM DEV_METRICS DEV_FORK @@ -173,8 +175,6 @@ UNKNOWN_CMD CHANGE_POINT_LINE_COMMENT CHANGE_POINT_MULTILINE_COMMENT CHANGE_POINT_WS -ON -WITH ENRICH_POLICY_NAME ENRICH_LINE_COMMENT ENRICH_MULTILINE_COMMENT @@ -194,6 +194,9 @@ QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL BY +ON +WITH +AS AND ASC ASSIGN @@ -267,7 +270,6 @@ ID_PATTERN PROJECT_LINE_COMMENT PROJECT_MULTILINE_COMMENT PROJECT_WS -AS RENAME_LINE_COMMENT RENAME_MULTILINE_COMMENT RENAME_WS @@ -306,6 +308,7 @@ identifierPattern parameter doubleParameter identifierOrParameter +stringOrParameter limitCommand sortCommand orderExpression @@ -333,6 +336,7 @@ forkSubQuery forkSubQueryCommand forkSubQueryProcessingCommand rrfCommand +rerankCommand booleanExpression regexBooleanExpression matchBooleanExpression @@ -357,4 +361,4 @@ joinPredicate atn: -[4, 1, 136, 724, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 164, 8, 1, 10, 1, 12, 1, 167, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 175, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 202, 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, 215, 8, 7, 10, 7, 12, 7, 218, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 223, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 236, 8, 11, 10, 11, 12, 11, 239, 9, 11, 1, 11, 3, 11, 242, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 247, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 254, 8, 12, 3, 12, 256, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 268, 8, 16, 10, 16, 12, 16, 271, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 278, 8, 18, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 287, 8, 19, 10, 19, 12, 19, 290, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 295, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 300, 8, 21, 10, 21, 12, 21, 303, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 308, 8, 22, 10, 22, 12, 22, 311, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 316, 8, 23, 10, 23, 12, 23, 319, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 327, 8, 25, 1, 26, 1, 26, 3, 26, 331, 8, 26, 1, 27, 1, 27, 3, 27, 335, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 341, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 350, 8, 30, 10, 30, 12, 30, 353, 9, 30, 1, 31, 1, 31, 3, 31, 357, 8, 31, 1, 31, 1, 31, 3, 31, 361, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 373, 8, 34, 10, 34, 12, 34, 376, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 386, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 398, 8, 39, 10, 39, 12, 39, 401, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 421, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 427, 8, 44, 10, 44, 12, 44, 430, 9, 44, 3, 44, 432, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 437, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 450, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 456, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 463, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 472, 8, 51, 11, 51, 12, 51, 473, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 486, 8, 53, 10, 53, 12, 53, 489, 9, 53, 1, 54, 1, 54, 1, 54, 3, 54, 494, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 505, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 512, 8, 56, 10, 56, 12, 56, 515, 9, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 522, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 527, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 535, 8, 56, 10, 56, 12, 56, 538, 9, 56, 1, 57, 1, 57, 3, 57, 542, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 549, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 554, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 559, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 569, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 575, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 583, 8, 60, 10, 60, 12, 60, 586, 9, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 596, 8, 61, 1, 61, 1, 61, 1, 61, 5, 61, 601, 8, 61, 10, 61, 12, 61, 604, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 612, 8, 62, 10, 62, 12, 62, 615, 9, 62, 1, 62, 1, 62, 3, 62, 619, 8, 62, 3, 62, 621, 8, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 631, 8, 64, 10, 64, 12, 64, 634, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 655, 8, 66, 10, 66, 12, 66, 658, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 666, 8, 66, 10, 66, 12, 66, 669, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 677, 8, 66, 10, 66, 12, 66, 680, 9, 66, 1, 66, 1, 66, 3, 66, 684, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 690, 8, 68, 1, 69, 3, 69, 693, 8, 69, 1, 69, 1, 69, 1, 70, 3, 70, 698, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 717, 8, 75, 10, 75, 12, 75, 720, 9, 75, 1, 76, 1, 76, 1, 76, 0, 5, 2, 106, 112, 120, 122, 77, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 0, 9, 2, 0, 52, 52, 104, 104, 1, 0, 98, 99, 2, 0, 57, 57, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 84, 85, 1, 0, 86, 88, 2, 0, 64, 64, 76, 76, 2, 0, 77, 77, 79, 83, 2, 0, 19, 19, 21, 22, 750, 0, 154, 1, 0, 0, 0, 2, 157, 1, 0, 0, 0, 4, 174, 1, 0, 0, 0, 6, 201, 1, 0, 0, 0, 8, 203, 1, 0, 0, 0, 10, 206, 1, 0, 0, 0, 12, 208, 1, 0, 0, 0, 14, 211, 1, 0, 0, 0, 16, 222, 1, 0, 0, 0, 18, 226, 1, 0, 0, 0, 20, 229, 1, 0, 0, 0, 22, 232, 1, 0, 0, 0, 24, 255, 1, 0, 0, 0, 26, 257, 1, 0, 0, 0, 28, 259, 1, 0, 0, 0, 30, 261, 1, 0, 0, 0, 32, 263, 1, 0, 0, 0, 34, 272, 1, 0, 0, 0, 36, 275, 1, 0, 0, 0, 38, 283, 1, 0, 0, 0, 40, 291, 1, 0, 0, 0, 42, 296, 1, 0, 0, 0, 44, 304, 1, 0, 0, 0, 46, 312, 1, 0, 0, 0, 48, 320, 1, 0, 0, 0, 50, 326, 1, 0, 0, 0, 52, 330, 1, 0, 0, 0, 54, 334, 1, 0, 0, 0, 56, 340, 1, 0, 0, 0, 58, 342, 1, 0, 0, 0, 60, 345, 1, 0, 0, 0, 62, 354, 1, 0, 0, 0, 64, 362, 1, 0, 0, 0, 66, 365, 1, 0, 0, 0, 68, 368, 1, 0, 0, 0, 70, 377, 1, 0, 0, 0, 72, 381, 1, 0, 0, 0, 74, 387, 1, 0, 0, 0, 76, 391, 1, 0, 0, 0, 78, 394, 1, 0, 0, 0, 80, 402, 1, 0, 0, 0, 82, 406, 1, 0, 0, 0, 84, 409, 1, 0, 0, 0, 86, 413, 1, 0, 0, 0, 88, 416, 1, 0, 0, 0, 90, 436, 1, 0, 0, 0, 92, 440, 1, 0, 0, 0, 94, 445, 1, 0, 0, 0, 96, 451, 1, 0, 0, 0, 98, 464, 1, 0, 0, 0, 100, 467, 1, 0, 0, 0, 102, 471, 1, 0, 0, 0, 104, 475, 1, 0, 0, 0, 106, 479, 1, 0, 0, 0, 108, 493, 1, 0, 0, 0, 110, 495, 1, 0, 0, 0, 112, 526, 1, 0, 0, 0, 114, 553, 1, 0, 0, 0, 116, 555, 1, 0, 0, 0, 118, 568, 1, 0, 0, 0, 120, 574, 1, 0, 0, 0, 122, 595, 1, 0, 0, 0, 124, 605, 1, 0, 0, 0, 126, 624, 1, 0, 0, 0, 128, 626, 1, 0, 0, 0, 130, 637, 1, 0, 0, 0, 132, 683, 1, 0, 0, 0, 134, 685, 1, 0, 0, 0, 136, 689, 1, 0, 0, 0, 138, 692, 1, 0, 0, 0, 140, 697, 1, 0, 0, 0, 142, 701, 1, 0, 0, 0, 144, 703, 1, 0, 0, 0, 146, 705, 1, 0, 0, 0, 148, 710, 1, 0, 0, 0, 150, 712, 1, 0, 0, 0, 152, 721, 1, 0, 0, 0, 154, 155, 3, 2, 1, 0, 155, 156, 5, 0, 0, 1, 156, 1, 1, 0, 0, 0, 157, 158, 6, 1, -1, 0, 158, 159, 3, 4, 2, 0, 159, 165, 1, 0, 0, 0, 160, 161, 10, 1, 0, 0, 161, 162, 5, 51, 0, 0, 162, 164, 3, 6, 3, 0, 163, 160, 1, 0, 0, 0, 164, 167, 1, 0, 0, 0, 165, 163, 1, 0, 0, 0, 165, 166, 1, 0, 0, 0, 166, 3, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 168, 175, 3, 82, 41, 0, 169, 175, 3, 18, 9, 0, 170, 175, 3, 12, 6, 0, 171, 175, 3, 86, 43, 0, 172, 173, 4, 2, 1, 0, 173, 175, 3, 20, 10, 0, 174, 168, 1, 0, 0, 0, 174, 169, 1, 0, 0, 0, 174, 170, 1, 0, 0, 0, 174, 171, 1, 0, 0, 0, 174, 172, 1, 0, 0, 0, 175, 5, 1, 0, 0, 0, 176, 202, 3, 34, 17, 0, 177, 202, 3, 8, 4, 0, 178, 202, 3, 64, 32, 0, 179, 202, 3, 58, 29, 0, 180, 202, 3, 36, 18, 0, 181, 202, 3, 60, 30, 0, 182, 202, 3, 66, 33, 0, 183, 202, 3, 68, 34, 0, 184, 202, 3, 72, 36, 0, 185, 202, 3, 74, 37, 0, 186, 202, 3, 88, 44, 0, 187, 202, 3, 76, 38, 0, 188, 202, 3, 146, 73, 0, 189, 190, 4, 3, 2, 0, 190, 202, 3, 94, 47, 0, 191, 192, 4, 3, 3, 0, 192, 202, 3, 92, 46, 0, 193, 194, 4, 3, 4, 0, 194, 202, 3, 96, 48, 0, 195, 196, 4, 3, 5, 0, 196, 202, 3, 98, 49, 0, 197, 198, 4, 3, 6, 0, 198, 202, 3, 100, 50, 0, 199, 200, 4, 3, 7, 0, 200, 202, 3, 110, 55, 0, 201, 176, 1, 0, 0, 0, 201, 177, 1, 0, 0, 0, 201, 178, 1, 0, 0, 0, 201, 179, 1, 0, 0, 0, 201, 180, 1, 0, 0, 0, 201, 181, 1, 0, 0, 0, 201, 182, 1, 0, 0, 0, 201, 183, 1, 0, 0, 0, 201, 184, 1, 0, 0, 0, 201, 185, 1, 0, 0, 0, 201, 186, 1, 0, 0, 0, 201, 187, 1, 0, 0, 0, 201, 188, 1, 0, 0, 0, 201, 189, 1, 0, 0, 0, 201, 191, 1, 0, 0, 0, 201, 193, 1, 0, 0, 0, 201, 195, 1, 0, 0, 0, 201, 197, 1, 0, 0, 0, 201, 199, 1, 0, 0, 0, 202, 7, 1, 0, 0, 0, 203, 204, 5, 14, 0, 0, 204, 205, 3, 112, 56, 0, 205, 9, 1, 0, 0, 0, 206, 207, 3, 48, 24, 0, 207, 11, 1, 0, 0, 0, 208, 209, 5, 11, 0, 0, 209, 210, 3, 14, 7, 0, 210, 13, 1, 0, 0, 0, 211, 216, 3, 16, 8, 0, 212, 213, 5, 61, 0, 0, 213, 215, 3, 16, 8, 0, 214, 212, 1, 0, 0, 0, 215, 218, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 15, 1, 0, 0, 0, 218, 216, 1, 0, 0, 0, 219, 220, 3, 42, 21, 0, 220, 221, 5, 58, 0, 0, 221, 223, 1, 0, 0, 0, 222, 219, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 3, 112, 56, 0, 225, 17, 1, 0, 0, 0, 226, 227, 5, 16, 0, 0, 227, 228, 3, 22, 11, 0, 228, 19, 1, 0, 0, 0, 229, 230, 5, 17, 0, 0, 230, 231, 3, 22, 11, 0, 231, 21, 1, 0, 0, 0, 232, 237, 3, 24, 12, 0, 233, 234, 5, 61, 0, 0, 234, 236, 3, 24, 12, 0, 235, 233, 1, 0, 0, 0, 236, 239, 1, 0, 0, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 241, 1, 0, 0, 0, 239, 237, 1, 0, 0, 0, 240, 242, 3, 32, 16, 0, 241, 240, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 23, 1, 0, 0, 0, 243, 244, 3, 26, 13, 0, 244, 245, 5, 60, 0, 0, 245, 247, 1, 0, 0, 0, 246, 243, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 256, 3, 30, 15, 0, 249, 250, 4, 12, 8, 0, 250, 253, 3, 30, 15, 0, 251, 252, 5, 59, 0, 0, 252, 254, 3, 28, 14, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 256, 1, 0, 0, 0, 255, 246, 1, 0, 0, 0, 255, 249, 1, 0, 0, 0, 256, 25, 1, 0, 0, 0, 257, 258, 7, 0, 0, 0, 258, 27, 1, 0, 0, 0, 259, 260, 7, 0, 0, 0, 260, 29, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 31, 1, 0, 0, 0, 263, 264, 5, 103, 0, 0, 264, 269, 5, 104, 0, 0, 265, 266, 5, 61, 0, 0, 266, 268, 5, 104, 0, 0, 267, 265, 1, 0, 0, 0, 268, 271, 1, 0, 0, 0, 269, 267, 1, 0, 0, 0, 269, 270, 1, 0, 0, 0, 270, 33, 1, 0, 0, 0, 271, 269, 1, 0, 0, 0, 272, 273, 5, 8, 0, 0, 273, 274, 3, 14, 7, 0, 274, 35, 1, 0, 0, 0, 275, 277, 5, 13, 0, 0, 276, 278, 3, 38, 19, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 281, 1, 0, 0, 0, 279, 280, 5, 55, 0, 0, 280, 282, 3, 14, 7, 0, 281, 279, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 37, 1, 0, 0, 0, 283, 288, 3, 40, 20, 0, 284, 285, 5, 61, 0, 0, 285, 287, 3, 40, 20, 0, 286, 284, 1, 0, 0, 0, 287, 290, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 39, 1, 0, 0, 0, 290, 288, 1, 0, 0, 0, 291, 294, 3, 16, 8, 0, 292, 293, 5, 14, 0, 0, 293, 295, 3, 112, 56, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 41, 1, 0, 0, 0, 296, 301, 3, 56, 28, 0, 297, 298, 5, 63, 0, 0, 298, 300, 3, 56, 28, 0, 299, 297, 1, 0, 0, 0, 300, 303, 1, 0, 0, 0, 301, 299, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 43, 1, 0, 0, 0, 303, 301, 1, 0, 0, 0, 304, 309, 3, 50, 25, 0, 305, 306, 5, 63, 0, 0, 306, 308, 3, 50, 25, 0, 307, 305, 1, 0, 0, 0, 308, 311, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 45, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 312, 317, 3, 44, 22, 0, 313, 314, 5, 61, 0, 0, 314, 316, 3, 44, 22, 0, 315, 313, 1, 0, 0, 0, 316, 319, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 47, 1, 0, 0, 0, 319, 317, 1, 0, 0, 0, 320, 321, 7, 1, 0, 0, 321, 49, 1, 0, 0, 0, 322, 327, 5, 125, 0, 0, 323, 327, 3, 52, 26, 0, 324, 325, 4, 25, 9, 0, 325, 327, 3, 54, 27, 0, 326, 322, 1, 0, 0, 0, 326, 323, 1, 0, 0, 0, 326, 324, 1, 0, 0, 0, 327, 51, 1, 0, 0, 0, 328, 331, 5, 74, 0, 0, 329, 331, 5, 92, 0, 0, 330, 328, 1, 0, 0, 0, 330, 329, 1, 0, 0, 0, 331, 53, 1, 0, 0, 0, 332, 335, 5, 91, 0, 0, 333, 335, 5, 93, 0, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 55, 1, 0, 0, 0, 336, 341, 3, 48, 24, 0, 337, 341, 3, 52, 26, 0, 338, 339, 4, 28, 10, 0, 339, 341, 3, 54, 27, 0, 340, 336, 1, 0, 0, 0, 340, 337, 1, 0, 0, 0, 340, 338, 1, 0, 0, 0, 341, 57, 1, 0, 0, 0, 342, 343, 5, 10, 0, 0, 343, 344, 5, 53, 0, 0, 344, 59, 1, 0, 0, 0, 345, 346, 5, 12, 0, 0, 346, 351, 3, 62, 31, 0, 347, 348, 5, 61, 0, 0, 348, 350, 3, 62, 31, 0, 349, 347, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 61, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 354, 356, 3, 112, 56, 0, 355, 357, 7, 2, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 360, 1, 0, 0, 0, 358, 359, 5, 72, 0, 0, 359, 361, 7, 3, 0, 0, 360, 358, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 63, 1, 0, 0, 0, 362, 363, 5, 26, 0, 0, 363, 364, 3, 46, 23, 0, 364, 65, 1, 0, 0, 0, 365, 366, 5, 25, 0, 0, 366, 367, 3, 46, 23, 0, 367, 67, 1, 0, 0, 0, 368, 369, 5, 29, 0, 0, 369, 374, 3, 70, 35, 0, 370, 371, 5, 61, 0, 0, 371, 373, 3, 70, 35, 0, 372, 370, 1, 0, 0, 0, 373, 376, 1, 0, 0, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 69, 1, 0, 0, 0, 376, 374, 1, 0, 0, 0, 377, 378, 3, 44, 22, 0, 378, 379, 5, 129, 0, 0, 379, 380, 3, 44, 22, 0, 380, 71, 1, 0, 0, 0, 381, 382, 5, 7, 0, 0, 382, 383, 3, 122, 61, 0, 383, 385, 3, 142, 71, 0, 384, 386, 3, 78, 39, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 73, 1, 0, 0, 0, 387, 388, 5, 9, 0, 0, 388, 389, 3, 122, 61, 0, 389, 390, 3, 142, 71, 0, 390, 75, 1, 0, 0, 0, 391, 392, 5, 24, 0, 0, 392, 393, 3, 42, 21, 0, 393, 77, 1, 0, 0, 0, 394, 399, 3, 80, 40, 0, 395, 396, 5, 61, 0, 0, 396, 398, 3, 80, 40, 0, 397, 395, 1, 0, 0, 0, 398, 401, 1, 0, 0, 0, 399, 397, 1, 0, 0, 0, 399, 400, 1, 0, 0, 0, 400, 79, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 402, 403, 3, 48, 24, 0, 403, 404, 5, 58, 0, 0, 404, 405, 3, 132, 66, 0, 405, 81, 1, 0, 0, 0, 406, 407, 5, 6, 0, 0, 407, 408, 3, 84, 42, 0, 408, 83, 1, 0, 0, 0, 409, 410, 5, 94, 0, 0, 410, 411, 3, 2, 1, 0, 411, 412, 5, 95, 0, 0, 412, 85, 1, 0, 0, 0, 413, 414, 5, 30, 0, 0, 414, 415, 5, 133, 0, 0, 415, 87, 1, 0, 0, 0, 416, 417, 5, 5, 0, 0, 417, 420, 5, 37, 0, 0, 418, 419, 5, 35, 0, 0, 419, 421, 3, 44, 22, 0, 420, 418, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 431, 1, 0, 0, 0, 422, 423, 5, 36, 0, 0, 423, 428, 3, 90, 45, 0, 424, 425, 5, 61, 0, 0, 425, 427, 3, 90, 45, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 422, 1, 0, 0, 0, 431, 432, 1, 0, 0, 0, 432, 89, 1, 0, 0, 0, 433, 434, 3, 44, 22, 0, 434, 435, 5, 58, 0, 0, 435, 437, 1, 0, 0, 0, 436, 433, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 439, 3, 44, 22, 0, 439, 91, 1, 0, 0, 0, 440, 441, 5, 23, 0, 0, 441, 442, 3, 24, 12, 0, 442, 443, 5, 35, 0, 0, 443, 444, 3, 46, 23, 0, 444, 93, 1, 0, 0, 0, 445, 446, 5, 15, 0, 0, 446, 449, 3, 38, 19, 0, 447, 448, 5, 55, 0, 0, 448, 450, 3, 14, 7, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 95, 1, 0, 0, 0, 451, 452, 5, 4, 0, 0, 452, 455, 3, 42, 21, 0, 453, 454, 5, 35, 0, 0, 454, 456, 3, 42, 21, 0, 455, 453, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 462, 1, 0, 0, 0, 457, 458, 5, 129, 0, 0, 458, 459, 3, 42, 21, 0, 459, 460, 5, 61, 0, 0, 460, 461, 3, 42, 21, 0, 461, 463, 1, 0, 0, 0, 462, 457, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 97, 1, 0, 0, 0, 464, 465, 5, 27, 0, 0, 465, 466, 3, 46, 23, 0, 466, 99, 1, 0, 0, 0, 467, 468, 5, 18, 0, 0, 468, 469, 3, 102, 51, 0, 469, 101, 1, 0, 0, 0, 470, 472, 3, 104, 52, 0, 471, 470, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 471, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 103, 1, 0, 0, 0, 475, 476, 5, 96, 0, 0, 476, 477, 3, 106, 53, 0, 477, 478, 5, 97, 0, 0, 478, 105, 1, 0, 0, 0, 479, 480, 6, 53, -1, 0, 480, 481, 3, 108, 54, 0, 481, 487, 1, 0, 0, 0, 482, 483, 10, 1, 0, 0, 483, 484, 5, 51, 0, 0, 484, 486, 3, 108, 54, 0, 485, 482, 1, 0, 0, 0, 486, 489, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 488, 107, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 490, 494, 3, 8, 4, 0, 491, 494, 3, 60, 30, 0, 492, 494, 3, 58, 29, 0, 493, 490, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 492, 1, 0, 0, 0, 494, 109, 1, 0, 0, 0, 495, 496, 5, 28, 0, 0, 496, 111, 1, 0, 0, 0, 497, 498, 6, 56, -1, 0, 498, 499, 5, 70, 0, 0, 499, 527, 3, 112, 56, 8, 500, 527, 3, 118, 59, 0, 501, 527, 3, 114, 57, 0, 502, 504, 3, 118, 59, 0, 503, 505, 5, 70, 0, 0, 504, 503, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 5, 66, 0, 0, 507, 508, 5, 96, 0, 0, 508, 513, 3, 118, 59, 0, 509, 510, 5, 61, 0, 0, 510, 512, 3, 118, 59, 0, 511, 509, 1, 0, 0, 0, 512, 515, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 516, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 516, 517, 5, 97, 0, 0, 517, 527, 1, 0, 0, 0, 518, 519, 3, 118, 59, 0, 519, 521, 5, 67, 0, 0, 520, 522, 5, 70, 0, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 71, 0, 0, 524, 527, 1, 0, 0, 0, 525, 527, 3, 116, 58, 0, 526, 497, 1, 0, 0, 0, 526, 500, 1, 0, 0, 0, 526, 501, 1, 0, 0, 0, 526, 502, 1, 0, 0, 0, 526, 518, 1, 0, 0, 0, 526, 525, 1, 0, 0, 0, 527, 536, 1, 0, 0, 0, 528, 529, 10, 5, 0, 0, 529, 530, 5, 56, 0, 0, 530, 535, 3, 112, 56, 6, 531, 532, 10, 4, 0, 0, 532, 533, 5, 73, 0, 0, 533, 535, 3, 112, 56, 5, 534, 528, 1, 0, 0, 0, 534, 531, 1, 0, 0, 0, 535, 538, 1, 0, 0, 0, 536, 534, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 113, 1, 0, 0, 0, 538, 536, 1, 0, 0, 0, 539, 541, 3, 118, 59, 0, 540, 542, 5, 70, 0, 0, 541, 540, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 544, 5, 69, 0, 0, 544, 545, 3, 142, 71, 0, 545, 554, 1, 0, 0, 0, 546, 548, 3, 118, 59, 0, 547, 549, 5, 70, 0, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 75, 0, 0, 551, 552, 3, 142, 71, 0, 552, 554, 1, 0, 0, 0, 553, 539, 1, 0, 0, 0, 553, 546, 1, 0, 0, 0, 554, 115, 1, 0, 0, 0, 555, 558, 3, 42, 21, 0, 556, 557, 5, 59, 0, 0, 557, 559, 3, 10, 5, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 60, 0, 0, 561, 562, 3, 132, 66, 0, 562, 117, 1, 0, 0, 0, 563, 569, 3, 120, 60, 0, 564, 565, 3, 120, 60, 0, 565, 566, 3, 144, 72, 0, 566, 567, 3, 120, 60, 0, 567, 569, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 564, 1, 0, 0, 0, 569, 119, 1, 0, 0, 0, 570, 571, 6, 60, -1, 0, 571, 575, 3, 122, 61, 0, 572, 573, 7, 4, 0, 0, 573, 575, 3, 120, 60, 3, 574, 570, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 575, 584, 1, 0, 0, 0, 576, 577, 10, 2, 0, 0, 577, 578, 7, 5, 0, 0, 578, 583, 3, 120, 60, 3, 579, 580, 10, 1, 0, 0, 580, 581, 7, 4, 0, 0, 581, 583, 3, 120, 60, 2, 582, 576, 1, 0, 0, 0, 582, 579, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 121, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 588, 6, 61, -1, 0, 588, 596, 3, 132, 66, 0, 589, 596, 3, 42, 21, 0, 590, 596, 3, 124, 62, 0, 591, 592, 5, 96, 0, 0, 592, 593, 3, 112, 56, 0, 593, 594, 5, 97, 0, 0, 594, 596, 1, 0, 0, 0, 595, 587, 1, 0, 0, 0, 595, 589, 1, 0, 0, 0, 595, 590, 1, 0, 0, 0, 595, 591, 1, 0, 0, 0, 596, 602, 1, 0, 0, 0, 597, 598, 10, 1, 0, 0, 598, 599, 5, 59, 0, 0, 599, 601, 3, 10, 5, 0, 600, 597, 1, 0, 0, 0, 601, 604, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 123, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 606, 3, 126, 63, 0, 606, 620, 5, 96, 0, 0, 607, 621, 5, 86, 0, 0, 608, 613, 3, 112, 56, 0, 609, 610, 5, 61, 0, 0, 610, 612, 3, 112, 56, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 618, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 5, 61, 0, 0, 617, 619, 3, 128, 64, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 621, 1, 0, 0, 0, 620, 607, 1, 0, 0, 0, 620, 608, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 1, 0, 0, 0, 622, 623, 5, 97, 0, 0, 623, 125, 1, 0, 0, 0, 624, 625, 3, 56, 28, 0, 625, 127, 1, 0, 0, 0, 626, 627, 5, 89, 0, 0, 627, 632, 3, 130, 65, 0, 628, 629, 5, 61, 0, 0, 629, 631, 3, 130, 65, 0, 630, 628, 1, 0, 0, 0, 631, 634, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 635, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 636, 5, 90, 0, 0, 636, 129, 1, 0, 0, 0, 637, 638, 3, 142, 71, 0, 638, 639, 5, 60, 0, 0, 639, 640, 3, 132, 66, 0, 640, 131, 1, 0, 0, 0, 641, 684, 5, 71, 0, 0, 642, 643, 3, 140, 70, 0, 643, 644, 5, 98, 0, 0, 644, 684, 1, 0, 0, 0, 645, 684, 3, 138, 69, 0, 646, 684, 3, 140, 70, 0, 647, 684, 3, 134, 67, 0, 648, 684, 3, 52, 26, 0, 649, 684, 3, 142, 71, 0, 650, 651, 5, 94, 0, 0, 651, 656, 3, 136, 68, 0, 652, 653, 5, 61, 0, 0, 653, 655, 3, 136, 68, 0, 654, 652, 1, 0, 0, 0, 655, 658, 1, 0, 0, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 659, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 659, 660, 5, 95, 0, 0, 660, 684, 1, 0, 0, 0, 661, 662, 5, 94, 0, 0, 662, 667, 3, 134, 67, 0, 663, 664, 5, 61, 0, 0, 664, 666, 3, 134, 67, 0, 665, 663, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 670, 671, 5, 95, 0, 0, 671, 684, 1, 0, 0, 0, 672, 673, 5, 94, 0, 0, 673, 678, 3, 142, 71, 0, 674, 675, 5, 61, 0, 0, 675, 677, 3, 142, 71, 0, 676, 674, 1, 0, 0, 0, 677, 680, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 681, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 681, 682, 5, 95, 0, 0, 682, 684, 1, 0, 0, 0, 683, 641, 1, 0, 0, 0, 683, 642, 1, 0, 0, 0, 683, 645, 1, 0, 0, 0, 683, 646, 1, 0, 0, 0, 683, 647, 1, 0, 0, 0, 683, 648, 1, 0, 0, 0, 683, 649, 1, 0, 0, 0, 683, 650, 1, 0, 0, 0, 683, 661, 1, 0, 0, 0, 683, 672, 1, 0, 0, 0, 684, 133, 1, 0, 0, 0, 685, 686, 7, 6, 0, 0, 686, 135, 1, 0, 0, 0, 687, 690, 3, 138, 69, 0, 688, 690, 3, 140, 70, 0, 689, 687, 1, 0, 0, 0, 689, 688, 1, 0, 0, 0, 690, 137, 1, 0, 0, 0, 691, 693, 7, 4, 0, 0, 692, 691, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 54, 0, 0, 695, 139, 1, 0, 0, 0, 696, 698, 7, 4, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 53, 0, 0, 700, 141, 1, 0, 0, 0, 701, 702, 5, 52, 0, 0, 702, 143, 1, 0, 0, 0, 703, 704, 7, 7, 0, 0, 704, 145, 1, 0, 0, 0, 705, 706, 7, 8, 0, 0, 706, 707, 5, 111, 0, 0, 707, 708, 3, 148, 74, 0, 708, 709, 3, 150, 75, 0, 709, 147, 1, 0, 0, 0, 710, 711, 3, 24, 12, 0, 711, 149, 1, 0, 0, 0, 712, 713, 5, 35, 0, 0, 713, 718, 3, 152, 76, 0, 714, 715, 5, 61, 0, 0, 715, 717, 3, 152, 76, 0, 716, 714, 1, 0, 0, 0, 717, 720, 1, 0, 0, 0, 718, 716, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 151, 1, 0, 0, 0, 720, 718, 1, 0, 0, 0, 721, 722, 3, 118, 59, 0, 722, 153, 1, 0, 0, 0, 66, 165, 174, 201, 216, 222, 237, 241, 246, 253, 255, 269, 277, 281, 288, 294, 301, 309, 317, 326, 330, 334, 340, 351, 356, 360, 374, 385, 399, 420, 428, 431, 436, 449, 455, 462, 473, 487, 493, 504, 513, 521, 526, 534, 536, 541, 548, 553, 558, 568, 574, 582, 584, 595, 602, 613, 618, 620, 632, 656, 667, 678, 683, 689, 692, 697, 718] \ No newline at end of file +[4, 1, 137, 741, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 168, 8, 1, 10, 1, 12, 1, 171, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 179, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 208, 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, 221, 8, 7, 10, 7, 12, 7, 224, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 229, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 242, 8, 11, 10, 11, 12, 11, 245, 9, 11, 1, 11, 3, 11, 248, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 253, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 260, 8, 12, 3, 12, 262, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 274, 8, 16, 10, 16, 12, 16, 277, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 284, 8, 18, 1, 18, 1, 18, 3, 18, 288, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 293, 8, 19, 10, 19, 12, 19, 296, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 301, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 306, 8, 21, 10, 21, 12, 21, 309, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 314, 8, 22, 10, 22, 12, 22, 317, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 322, 8, 23, 10, 23, 12, 23, 325, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 333, 8, 25, 1, 26, 1, 26, 3, 26, 337, 8, 26, 1, 27, 1, 27, 3, 27, 341, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 347, 8, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 360, 8, 31, 10, 31, 12, 31, 363, 9, 31, 1, 32, 1, 32, 3, 32, 367, 8, 32, 1, 32, 1, 32, 3, 32, 371, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 383, 8, 35, 10, 35, 12, 35, 386, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 396, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 5, 40, 408, 8, 40, 10, 40, 12, 40, 411, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 431, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 437, 8, 45, 10, 45, 12, 45, 440, 9, 45, 3, 45, 442, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 447, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 460, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 466, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 473, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 4, 52, 482, 8, 52, 11, 52, 12, 52, 483, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 496, 8, 54, 10, 54, 12, 54, 499, 9, 54, 1, 55, 1, 55, 1, 55, 3, 55, 504, 8, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 522, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 529, 8, 58, 10, 58, 12, 58, 532, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 539, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 544, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 552, 8, 58, 10, 58, 12, 58, 555, 9, 58, 1, 59, 1, 59, 3, 59, 559, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 566, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 586, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 592, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 600, 8, 62, 10, 62, 12, 62, 603, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 613, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 618, 8, 63, 10, 63, 12, 63, 621, 9, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 629, 8, 64, 10, 64, 12, 64, 632, 9, 64, 1, 64, 1, 64, 3, 64, 636, 8, 64, 3, 64, 638, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 648, 8, 66, 10, 66, 12, 66, 651, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 672, 8, 68, 10, 68, 12, 68, 675, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 683, 8, 68, 10, 68, 12, 68, 686, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 694, 8, 68, 10, 68, 12, 68, 697, 9, 68, 1, 68, 1, 68, 3, 68, 701, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 707, 8, 70, 1, 71, 3, 71, 710, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 715, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 734, 8, 77, 10, 77, 12, 77, 737, 9, 77, 1, 78, 1, 78, 1, 78, 0, 5, 2, 108, 116, 124, 126, 79, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 0, 9, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 59, 59, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 66, 66, 78, 78, 2, 0, 79, 79, 81, 85, 2, 0, 20, 20, 22, 23, 767, 0, 158, 1, 0, 0, 0, 2, 161, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 8, 209, 1, 0, 0, 0, 10, 212, 1, 0, 0, 0, 12, 214, 1, 0, 0, 0, 14, 217, 1, 0, 0, 0, 16, 228, 1, 0, 0, 0, 18, 232, 1, 0, 0, 0, 20, 235, 1, 0, 0, 0, 22, 238, 1, 0, 0, 0, 24, 261, 1, 0, 0, 0, 26, 263, 1, 0, 0, 0, 28, 265, 1, 0, 0, 0, 30, 267, 1, 0, 0, 0, 32, 269, 1, 0, 0, 0, 34, 278, 1, 0, 0, 0, 36, 281, 1, 0, 0, 0, 38, 289, 1, 0, 0, 0, 40, 297, 1, 0, 0, 0, 42, 302, 1, 0, 0, 0, 44, 310, 1, 0, 0, 0, 46, 318, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 332, 1, 0, 0, 0, 52, 336, 1, 0, 0, 0, 54, 340, 1, 0, 0, 0, 56, 346, 1, 0, 0, 0, 58, 350, 1, 0, 0, 0, 60, 352, 1, 0, 0, 0, 62, 355, 1, 0, 0, 0, 64, 364, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 378, 1, 0, 0, 0, 72, 387, 1, 0, 0, 0, 74, 391, 1, 0, 0, 0, 76, 397, 1, 0, 0, 0, 78, 401, 1, 0, 0, 0, 80, 404, 1, 0, 0, 0, 82, 412, 1, 0, 0, 0, 84, 416, 1, 0, 0, 0, 86, 419, 1, 0, 0, 0, 88, 423, 1, 0, 0, 0, 90, 426, 1, 0, 0, 0, 92, 446, 1, 0, 0, 0, 94, 450, 1, 0, 0, 0, 96, 455, 1, 0, 0, 0, 98, 461, 1, 0, 0, 0, 100, 474, 1, 0, 0, 0, 102, 477, 1, 0, 0, 0, 104, 481, 1, 0, 0, 0, 106, 485, 1, 0, 0, 0, 108, 489, 1, 0, 0, 0, 110, 503, 1, 0, 0, 0, 112, 505, 1, 0, 0, 0, 114, 507, 1, 0, 0, 0, 116, 543, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 572, 1, 0, 0, 0, 122, 585, 1, 0, 0, 0, 124, 591, 1, 0, 0, 0, 126, 612, 1, 0, 0, 0, 128, 622, 1, 0, 0, 0, 130, 641, 1, 0, 0, 0, 132, 643, 1, 0, 0, 0, 134, 654, 1, 0, 0, 0, 136, 700, 1, 0, 0, 0, 138, 702, 1, 0, 0, 0, 140, 706, 1, 0, 0, 0, 142, 709, 1, 0, 0, 0, 144, 714, 1, 0, 0, 0, 146, 718, 1, 0, 0, 0, 148, 720, 1, 0, 0, 0, 150, 722, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 729, 1, 0, 0, 0, 156, 738, 1, 0, 0, 0, 158, 159, 3, 2, 1, 0, 159, 160, 5, 0, 0, 1, 160, 1, 1, 0, 0, 0, 161, 162, 6, 1, -1, 0, 162, 163, 3, 4, 2, 0, 163, 169, 1, 0, 0, 0, 164, 165, 10, 1, 0, 0, 165, 166, 5, 50, 0, 0, 166, 168, 3, 6, 3, 0, 167, 164, 1, 0, 0, 0, 168, 171, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 169, 170, 1, 0, 0, 0, 170, 3, 1, 0, 0, 0, 171, 169, 1, 0, 0, 0, 172, 179, 3, 84, 42, 0, 173, 179, 3, 18, 9, 0, 174, 179, 3, 12, 6, 0, 175, 179, 3, 88, 44, 0, 176, 177, 4, 2, 1, 0, 177, 179, 3, 20, 10, 0, 178, 172, 1, 0, 0, 0, 178, 173, 1, 0, 0, 0, 178, 174, 1, 0, 0, 0, 178, 175, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 179, 5, 1, 0, 0, 0, 180, 208, 3, 34, 17, 0, 181, 208, 3, 8, 4, 0, 182, 208, 3, 66, 33, 0, 183, 208, 3, 60, 30, 0, 184, 208, 3, 36, 18, 0, 185, 208, 3, 62, 31, 0, 186, 208, 3, 68, 34, 0, 187, 208, 3, 70, 35, 0, 188, 208, 3, 74, 37, 0, 189, 208, 3, 76, 38, 0, 190, 208, 3, 90, 45, 0, 191, 208, 3, 78, 39, 0, 192, 208, 3, 150, 75, 0, 193, 194, 4, 3, 2, 0, 194, 208, 3, 96, 48, 0, 195, 196, 4, 3, 3, 0, 196, 208, 3, 94, 47, 0, 197, 198, 4, 3, 4, 0, 198, 208, 3, 98, 49, 0, 199, 200, 4, 3, 5, 0, 200, 208, 3, 100, 50, 0, 201, 202, 4, 3, 6, 0, 202, 208, 3, 102, 51, 0, 203, 204, 4, 3, 7, 0, 204, 208, 3, 114, 57, 0, 205, 206, 4, 3, 8, 0, 206, 208, 3, 112, 56, 0, 207, 180, 1, 0, 0, 0, 207, 181, 1, 0, 0, 0, 207, 182, 1, 0, 0, 0, 207, 183, 1, 0, 0, 0, 207, 184, 1, 0, 0, 0, 207, 185, 1, 0, 0, 0, 207, 186, 1, 0, 0, 0, 207, 187, 1, 0, 0, 0, 207, 188, 1, 0, 0, 0, 207, 189, 1, 0, 0, 0, 207, 190, 1, 0, 0, 0, 207, 191, 1, 0, 0, 0, 207, 192, 1, 0, 0, 0, 207, 193, 1, 0, 0, 0, 207, 195, 1, 0, 0, 0, 207, 197, 1, 0, 0, 0, 207, 199, 1, 0, 0, 0, 207, 201, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 7, 1, 0, 0, 0, 209, 210, 5, 14, 0, 0, 210, 211, 3, 116, 58, 0, 211, 9, 1, 0, 0, 0, 212, 213, 3, 48, 24, 0, 213, 11, 1, 0, 0, 0, 214, 215, 5, 11, 0, 0, 215, 216, 3, 14, 7, 0, 216, 13, 1, 0, 0, 0, 217, 222, 3, 16, 8, 0, 218, 219, 5, 63, 0, 0, 219, 221, 3, 16, 8, 0, 220, 218, 1, 0, 0, 0, 221, 224, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 15, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 225, 226, 3, 42, 21, 0, 226, 227, 5, 60, 0, 0, 227, 229, 1, 0, 0, 0, 228, 225, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 3, 116, 58, 0, 231, 17, 1, 0, 0, 0, 232, 233, 5, 17, 0, 0, 233, 234, 3, 22, 11, 0, 234, 19, 1, 0, 0, 0, 235, 236, 5, 18, 0, 0, 236, 237, 3, 22, 11, 0, 237, 21, 1, 0, 0, 0, 238, 243, 3, 24, 12, 0, 239, 240, 5, 63, 0, 0, 240, 242, 3, 24, 12, 0, 241, 239, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 32, 16, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 23, 1, 0, 0, 0, 249, 250, 3, 26, 13, 0, 250, 251, 5, 62, 0, 0, 251, 253, 1, 0, 0, 0, 252, 249, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 262, 3, 30, 15, 0, 255, 256, 4, 12, 9, 0, 256, 259, 3, 30, 15, 0, 257, 258, 5, 61, 0, 0, 258, 260, 3, 28, 14, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 252, 1, 0, 0, 0, 261, 255, 1, 0, 0, 0, 262, 25, 1, 0, 0, 0, 263, 264, 7, 0, 0, 0, 264, 27, 1, 0, 0, 0, 265, 266, 7, 0, 0, 0, 266, 29, 1, 0, 0, 0, 267, 268, 7, 0, 0, 0, 268, 31, 1, 0, 0, 0, 269, 270, 5, 105, 0, 0, 270, 275, 5, 106, 0, 0, 271, 272, 5, 63, 0, 0, 272, 274, 5, 106, 0, 0, 273, 271, 1, 0, 0, 0, 274, 277, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 33, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 278, 279, 5, 8, 0, 0, 279, 280, 3, 14, 7, 0, 280, 35, 1, 0, 0, 0, 281, 283, 5, 13, 0, 0, 282, 284, 3, 38, 19, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 286, 5, 54, 0, 0, 286, 288, 3, 14, 7, 0, 287, 285, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 37, 1, 0, 0, 0, 289, 294, 3, 40, 20, 0, 290, 291, 5, 63, 0, 0, 291, 293, 3, 40, 20, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 39, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 3, 16, 8, 0, 298, 299, 5, 14, 0, 0, 299, 301, 3, 116, 58, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 41, 1, 0, 0, 0, 302, 307, 3, 56, 28, 0, 303, 304, 5, 65, 0, 0, 304, 306, 3, 56, 28, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 43, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 50, 25, 0, 311, 312, 5, 65, 0, 0, 312, 314, 3, 50, 25, 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, 45, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 323, 3, 44, 22, 0, 319, 320, 5, 63, 0, 0, 320, 322, 3, 44, 22, 0, 321, 319, 1, 0, 0, 0, 322, 325, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 326, 327, 7, 1, 0, 0, 327, 49, 1, 0, 0, 0, 328, 333, 5, 127, 0, 0, 329, 333, 3, 52, 26, 0, 330, 331, 4, 25, 10, 0, 331, 333, 3, 54, 27, 0, 332, 328, 1, 0, 0, 0, 332, 329, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 51, 1, 0, 0, 0, 334, 337, 5, 76, 0, 0, 335, 337, 5, 94, 0, 0, 336, 334, 1, 0, 0, 0, 336, 335, 1, 0, 0, 0, 337, 53, 1, 0, 0, 0, 338, 341, 5, 93, 0, 0, 339, 341, 5, 95, 0, 0, 340, 338, 1, 0, 0, 0, 340, 339, 1, 0, 0, 0, 341, 55, 1, 0, 0, 0, 342, 347, 3, 48, 24, 0, 343, 347, 3, 52, 26, 0, 344, 345, 4, 28, 11, 0, 345, 347, 3, 54, 27, 0, 346, 342, 1, 0, 0, 0, 346, 343, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 57, 1, 0, 0, 0, 348, 351, 3, 146, 73, 0, 349, 351, 3, 52, 26, 0, 350, 348, 1, 0, 0, 0, 350, 349, 1, 0, 0, 0, 351, 59, 1, 0, 0, 0, 352, 353, 5, 10, 0, 0, 353, 354, 5, 52, 0, 0, 354, 61, 1, 0, 0, 0, 355, 356, 5, 12, 0, 0, 356, 361, 3, 64, 32, 0, 357, 358, 5, 63, 0, 0, 358, 360, 3, 64, 32, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 63, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 366, 3, 116, 58, 0, 365, 367, 7, 2, 0, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 369, 5, 74, 0, 0, 369, 371, 7, 3, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 27, 0, 0, 373, 374, 3, 46, 23, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 26, 0, 0, 376, 377, 3, 46, 23, 0, 377, 69, 1, 0, 0, 0, 378, 379, 5, 30, 0, 0, 379, 384, 3, 72, 36, 0, 380, 381, 5, 63, 0, 0, 381, 383, 3, 72, 36, 0, 382, 380, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 71, 1, 0, 0, 0, 386, 384, 1, 0, 0, 0, 387, 388, 3, 44, 22, 0, 388, 389, 5, 57, 0, 0, 389, 390, 3, 44, 22, 0, 390, 73, 1, 0, 0, 0, 391, 392, 5, 7, 0, 0, 392, 393, 3, 126, 63, 0, 393, 395, 3, 146, 73, 0, 394, 396, 3, 80, 40, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 75, 1, 0, 0, 0, 397, 398, 5, 9, 0, 0, 398, 399, 3, 126, 63, 0, 399, 400, 3, 146, 73, 0, 400, 77, 1, 0, 0, 0, 401, 402, 5, 25, 0, 0, 402, 403, 3, 42, 21, 0, 403, 79, 1, 0, 0, 0, 404, 409, 3, 82, 41, 0, 405, 406, 5, 63, 0, 0, 406, 408, 3, 82, 41, 0, 407, 405, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 81, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 3, 48, 24, 0, 413, 414, 5, 60, 0, 0, 414, 415, 3, 136, 68, 0, 415, 83, 1, 0, 0, 0, 416, 417, 5, 6, 0, 0, 417, 418, 3, 86, 43, 0, 418, 85, 1, 0, 0, 0, 419, 420, 5, 96, 0, 0, 420, 421, 3, 2, 1, 0, 421, 422, 5, 97, 0, 0, 422, 87, 1, 0, 0, 0, 423, 424, 5, 31, 0, 0, 424, 425, 5, 134, 0, 0, 425, 89, 1, 0, 0, 0, 426, 427, 5, 5, 0, 0, 427, 430, 5, 36, 0, 0, 428, 429, 5, 55, 0, 0, 429, 431, 3, 44, 22, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 441, 1, 0, 0, 0, 432, 433, 5, 56, 0, 0, 433, 438, 3, 92, 46, 0, 434, 435, 5, 63, 0, 0, 435, 437, 3, 92, 46, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 432, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 91, 1, 0, 0, 0, 443, 444, 3, 44, 22, 0, 444, 445, 5, 60, 0, 0, 445, 447, 1, 0, 0, 0, 446, 443, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 3, 44, 22, 0, 449, 93, 1, 0, 0, 0, 450, 451, 5, 24, 0, 0, 451, 452, 3, 24, 12, 0, 452, 453, 5, 55, 0, 0, 453, 454, 3, 46, 23, 0, 454, 95, 1, 0, 0, 0, 455, 456, 5, 15, 0, 0, 456, 459, 3, 38, 19, 0, 457, 458, 5, 54, 0, 0, 458, 460, 3, 14, 7, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 97, 1, 0, 0, 0, 461, 462, 5, 4, 0, 0, 462, 465, 3, 42, 21, 0, 463, 464, 5, 55, 0, 0, 464, 466, 3, 42, 21, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 472, 1, 0, 0, 0, 467, 468, 5, 57, 0, 0, 468, 469, 3, 42, 21, 0, 469, 470, 5, 63, 0, 0, 470, 471, 3, 42, 21, 0, 471, 473, 1, 0, 0, 0, 472, 467, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 99, 1, 0, 0, 0, 474, 475, 5, 28, 0, 0, 475, 476, 3, 46, 23, 0, 476, 101, 1, 0, 0, 0, 477, 478, 5, 19, 0, 0, 478, 479, 3, 104, 52, 0, 479, 103, 1, 0, 0, 0, 480, 482, 3, 106, 53, 0, 481, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 105, 1, 0, 0, 0, 485, 486, 5, 98, 0, 0, 486, 487, 3, 108, 54, 0, 487, 488, 5, 99, 0, 0, 488, 107, 1, 0, 0, 0, 489, 490, 6, 54, -1, 0, 490, 491, 3, 110, 55, 0, 491, 497, 1, 0, 0, 0, 492, 493, 10, 1, 0, 0, 493, 494, 5, 50, 0, 0, 494, 496, 3, 110, 55, 0, 495, 492, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 109, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 3, 8, 4, 0, 501, 504, 3, 62, 31, 0, 502, 504, 3, 60, 30, 0, 503, 500, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 111, 1, 0, 0, 0, 505, 506, 5, 29, 0, 0, 506, 113, 1, 0, 0, 0, 507, 508, 5, 16, 0, 0, 508, 509, 3, 58, 29, 0, 509, 510, 5, 55, 0, 0, 510, 511, 3, 14, 7, 0, 511, 512, 5, 56, 0, 0, 512, 513, 3, 58, 29, 0, 513, 115, 1, 0, 0, 0, 514, 515, 6, 58, -1, 0, 515, 516, 5, 72, 0, 0, 516, 544, 3, 116, 58, 8, 517, 544, 3, 122, 61, 0, 518, 544, 3, 118, 59, 0, 519, 521, 3, 122, 61, 0, 520, 522, 5, 72, 0, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 68, 0, 0, 524, 525, 5, 98, 0, 0, 525, 530, 3, 122, 61, 0, 526, 527, 5, 63, 0, 0, 527, 529, 3, 122, 61, 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, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 99, 0, 0, 534, 544, 1, 0, 0, 0, 535, 536, 3, 122, 61, 0, 536, 538, 5, 69, 0, 0, 537, 539, 5, 72, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 5, 73, 0, 0, 541, 544, 1, 0, 0, 0, 542, 544, 3, 120, 60, 0, 543, 514, 1, 0, 0, 0, 543, 517, 1, 0, 0, 0, 543, 518, 1, 0, 0, 0, 543, 519, 1, 0, 0, 0, 543, 535, 1, 0, 0, 0, 543, 542, 1, 0, 0, 0, 544, 553, 1, 0, 0, 0, 545, 546, 10, 5, 0, 0, 546, 547, 5, 58, 0, 0, 547, 552, 3, 116, 58, 6, 548, 549, 10, 4, 0, 0, 549, 550, 5, 75, 0, 0, 550, 552, 3, 116, 58, 5, 551, 545, 1, 0, 0, 0, 551, 548, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 117, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 558, 3, 122, 61, 0, 557, 559, 5, 72, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 71, 0, 0, 561, 562, 3, 146, 73, 0, 562, 571, 1, 0, 0, 0, 563, 565, 3, 122, 61, 0, 564, 566, 5, 72, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 77, 0, 0, 568, 569, 3, 146, 73, 0, 569, 571, 1, 0, 0, 0, 570, 556, 1, 0, 0, 0, 570, 563, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 575, 3, 42, 21, 0, 573, 574, 5, 61, 0, 0, 574, 576, 3, 10, 5, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 62, 0, 0, 578, 579, 3, 136, 68, 0, 579, 121, 1, 0, 0, 0, 580, 586, 3, 124, 62, 0, 581, 582, 3, 124, 62, 0, 582, 583, 3, 148, 74, 0, 583, 584, 3, 124, 62, 0, 584, 586, 1, 0, 0, 0, 585, 580, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 586, 123, 1, 0, 0, 0, 587, 588, 6, 62, -1, 0, 588, 592, 3, 126, 63, 0, 589, 590, 7, 4, 0, 0, 590, 592, 3, 124, 62, 3, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 594, 10, 2, 0, 0, 594, 595, 7, 5, 0, 0, 595, 600, 3, 124, 62, 3, 596, 597, 10, 1, 0, 0, 597, 598, 7, 4, 0, 0, 598, 600, 3, 124, 62, 2, 599, 593, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 125, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 6, 63, -1, 0, 605, 613, 3, 136, 68, 0, 606, 613, 3, 42, 21, 0, 607, 613, 3, 128, 64, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 116, 58, 0, 610, 611, 5, 99, 0, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 606, 1, 0, 0, 0, 612, 607, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 619, 1, 0, 0, 0, 614, 615, 10, 1, 0, 0, 615, 616, 5, 61, 0, 0, 616, 618, 3, 10, 5, 0, 617, 614, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 127, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 3, 130, 65, 0, 623, 637, 5, 98, 0, 0, 624, 638, 5, 88, 0, 0, 625, 630, 3, 116, 58, 0, 626, 627, 5, 63, 0, 0, 627, 629, 3, 116, 58, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 635, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 63, 0, 0, 634, 636, 3, 132, 66, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0, 0, 0, 637, 624, 1, 0, 0, 0, 637, 625, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 99, 0, 0, 640, 129, 1, 0, 0, 0, 641, 642, 3, 56, 28, 0, 642, 131, 1, 0, 0, 0, 643, 644, 5, 91, 0, 0, 644, 649, 3, 134, 67, 0, 645, 646, 5, 63, 0, 0, 646, 648, 3, 134, 67, 0, 647, 645, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 653, 5, 92, 0, 0, 653, 133, 1, 0, 0, 0, 654, 655, 3, 146, 73, 0, 655, 656, 5, 62, 0, 0, 656, 657, 3, 136, 68, 0, 657, 135, 1, 0, 0, 0, 658, 701, 5, 73, 0, 0, 659, 660, 3, 144, 72, 0, 660, 661, 5, 100, 0, 0, 661, 701, 1, 0, 0, 0, 662, 701, 3, 142, 71, 0, 663, 701, 3, 144, 72, 0, 664, 701, 3, 138, 69, 0, 665, 701, 3, 52, 26, 0, 666, 701, 3, 146, 73, 0, 667, 668, 5, 96, 0, 0, 668, 673, 3, 140, 70, 0, 669, 670, 5, 63, 0, 0, 670, 672, 3, 140, 70, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 97, 0, 0, 677, 701, 1, 0, 0, 0, 678, 679, 5, 96, 0, 0, 679, 684, 3, 138, 69, 0, 680, 681, 5, 63, 0, 0, 681, 683, 3, 138, 69, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 97, 0, 0, 688, 701, 1, 0, 0, 0, 689, 690, 5, 96, 0, 0, 690, 695, 3, 146, 73, 0, 691, 692, 5, 63, 0, 0, 692, 694, 3, 146, 73, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 97, 0, 0, 699, 701, 1, 0, 0, 0, 700, 658, 1, 0, 0, 0, 700, 659, 1, 0, 0, 0, 700, 662, 1, 0, 0, 0, 700, 663, 1, 0, 0, 0, 700, 664, 1, 0, 0, 0, 700, 665, 1, 0, 0, 0, 700, 666, 1, 0, 0, 0, 700, 667, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 689, 1, 0, 0, 0, 701, 137, 1, 0, 0, 0, 702, 703, 7, 6, 0, 0, 703, 139, 1, 0, 0, 0, 704, 707, 3, 142, 71, 0, 705, 707, 3, 144, 72, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 141, 1, 0, 0, 0, 708, 710, 7, 4, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 53, 0, 0, 712, 143, 1, 0, 0, 0, 713, 715, 7, 4, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 52, 0, 0, 717, 145, 1, 0, 0, 0, 718, 719, 5, 51, 0, 0, 719, 147, 1, 0, 0, 0, 720, 721, 7, 7, 0, 0, 721, 149, 1, 0, 0, 0, 722, 723, 7, 8, 0, 0, 723, 724, 5, 113, 0, 0, 724, 725, 3, 152, 76, 0, 725, 726, 3, 154, 77, 0, 726, 151, 1, 0, 0, 0, 727, 728, 3, 24, 12, 0, 728, 153, 1, 0, 0, 0, 729, 730, 5, 55, 0, 0, 730, 735, 3, 156, 78, 0, 731, 732, 5, 63, 0, 0, 732, 734, 3, 156, 78, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 155, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 739, 3, 122, 61, 0, 739, 157, 1, 0, 0, 0, 67, 169, 178, 207, 222, 228, 243, 247, 252, 259, 261, 275, 283, 287, 294, 300, 307, 315, 323, 332, 336, 340, 346, 350, 361, 366, 370, 384, 395, 409, 430, 438, 441, 446, 459, 465, 472, 483, 497, 503, 521, 530, 538, 543, 551, 553, 558, 565, 570, 575, 585, 591, 599, 601, 612, 619, 630, 635, 637, 649, 673, 684, 695, 700, 706, 709, 714, 735] \ 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 14daf5c500d81..0fb807be92ed2 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 @@ -27,33 +27,33 @@ public class EsqlBaseParser extends ParserConfig { public static final int 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, DEV_METRICS=17, DEV_FORK=18, JOIN_LOOKUP=19, - DEV_JOIN_FULL=20, DEV_JOIN_LEFT=21, DEV_JOIN_RIGHT=22, DEV_LOOKUP=23, - MV_EXPAND=24, DROP=25, KEEP=26, DEV_INSIST=27, DEV_RRF=28, RENAME=29, - SHOW=30, UNKNOWN_CMD=31, CHANGE_POINT_LINE_COMMENT=32, CHANGE_POINT_MULTILINE_COMMENT=33, - CHANGE_POINT_WS=34, ON=35, WITH=36, ENRICH_POLICY_NAME=37, ENRICH_LINE_COMMENT=38, - ENRICH_MULTILINE_COMMENT=39, ENRICH_WS=40, ENRICH_FIELD_LINE_COMMENT=41, - ENRICH_FIELD_MULTILINE_COMMENT=42, ENRICH_FIELD_WS=43, SETTING=44, SETTING_LINE_COMMENT=45, - SETTTING_MULTILINE_COMMENT=46, SETTING_WS=47, EXPLAIN_WS=48, EXPLAIN_LINE_COMMENT=49, - EXPLAIN_MULTILINE_COMMENT=50, PIPE=51, QUOTED_STRING=52, INTEGER_LITERAL=53, - DECIMAL_LITERAL=54, BY=55, AND=56, ASC=57, ASSIGN=58, CAST_OP=59, COLON=60, - COMMA=61, DESC=62, DOT=63, FALSE=64, FIRST=65, IN=66, IS=67, LAST=68, - LIKE=69, NOT=70, NULL=71, NULLS=72, OR=73, PARAM=74, RLIKE=75, TRUE=76, - EQ=77, CIEQ=78, NEQ=79, LT=80, LTE=81, GT=82, GTE=83, PLUS=84, MINUS=85, - ASTERISK=86, SLASH=87, PERCENT=88, LEFT_BRACES=89, RIGHT_BRACES=90, DOUBLE_PARAMS=91, - NAMED_OR_POSITIONAL_PARAM=92, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=93, OPENING_BRACKET=94, - CLOSING_BRACKET=95, LP=96, RP=97, UNQUOTED_IDENTIFIER=98, QUOTED_IDENTIFIER=99, - EXPR_LINE_COMMENT=100, EXPR_MULTILINE_COMMENT=101, EXPR_WS=102, METADATA=103, - UNQUOTED_SOURCE=104, FROM_LINE_COMMENT=105, FROM_MULTILINE_COMMENT=106, - FROM_WS=107, FORK_WS=108, FORK_LINE_COMMENT=109, FORK_MULTILINE_COMMENT=110, - JOIN=111, USING=112, JOIN_LINE_COMMENT=113, JOIN_MULTILINE_COMMENT=114, - JOIN_WS=115, LOOKUP_LINE_COMMENT=116, LOOKUP_MULTILINE_COMMENT=117, LOOKUP_WS=118, - LOOKUP_FIELD_LINE_COMMENT=119, LOOKUP_FIELD_MULTILINE_COMMENT=120, LOOKUP_FIELD_WS=121, - MVEXPAND_LINE_COMMENT=122, MVEXPAND_MULTILINE_COMMENT=123, MVEXPAND_WS=124, - ID_PATTERN=125, PROJECT_LINE_COMMENT=126, PROJECT_MULTILINE_COMMENT=127, - PROJECT_WS=128, AS=129, RENAME_LINE_COMMENT=130, RENAME_MULTILINE_COMMENT=131, - RENAME_WS=132, INFO=133, SHOW_LINE_COMMENT=134, SHOW_MULTILINE_COMMENT=135, - SHOW_WS=136; + WHERE=14, DEV_INLINESTATS=15, DEV_RERANK=16, FROM=17, DEV_METRICS=18, + DEV_FORK=19, JOIN_LOOKUP=20, DEV_JOIN_FULL=21, DEV_JOIN_LEFT=22, DEV_JOIN_RIGHT=23, + DEV_LOOKUP=24, MV_EXPAND=25, DROP=26, KEEP=27, DEV_INSIST=28, DEV_RRF=29, + RENAME=30, SHOW=31, UNKNOWN_CMD=32, CHANGE_POINT_LINE_COMMENT=33, CHANGE_POINT_MULTILINE_COMMENT=34, + CHANGE_POINT_WS=35, ENRICH_POLICY_NAME=36, ENRICH_LINE_COMMENT=37, ENRICH_MULTILINE_COMMENT=38, + ENRICH_WS=39, ENRICH_FIELD_LINE_COMMENT=40, ENRICH_FIELD_MULTILINE_COMMENT=41, + ENRICH_FIELD_WS=42, SETTING=43, SETTING_LINE_COMMENT=44, SETTTING_MULTILINE_COMMENT=45, + SETTING_WS=46, EXPLAIN_WS=47, EXPLAIN_LINE_COMMENT=48, EXPLAIN_MULTILINE_COMMENT=49, + PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, BY=54, + ON=55, WITH=56, AS=57, AND=58, ASC=59, ASSIGN=60, CAST_OP=61, COLON=62, + COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69, LAST=70, + LIKE=71, NOT=72, NULL=73, NULLS=74, OR=75, PARAM=76, RLIKE=77, TRUE=78, + EQ=79, CIEQ=80, NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, + ASTERISK=88, SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, + NAMED_OR_POSITIONAL_PARAM=94, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=95, OPENING_BRACKET=96, + CLOSING_BRACKET=97, LP=98, RP=99, UNQUOTED_IDENTIFIER=100, QUOTED_IDENTIFIER=101, + EXPR_LINE_COMMENT=102, EXPR_MULTILINE_COMMENT=103, EXPR_WS=104, METADATA=105, + UNQUOTED_SOURCE=106, FROM_LINE_COMMENT=107, FROM_MULTILINE_COMMENT=108, + FROM_WS=109, FORK_WS=110, FORK_LINE_COMMENT=111, FORK_MULTILINE_COMMENT=112, + JOIN=113, USING=114, JOIN_LINE_COMMENT=115, JOIN_MULTILINE_COMMENT=116, + JOIN_WS=117, LOOKUP_LINE_COMMENT=118, LOOKUP_MULTILINE_COMMENT=119, LOOKUP_WS=120, + LOOKUP_FIELD_LINE_COMMENT=121, LOOKUP_FIELD_MULTILINE_COMMENT=122, LOOKUP_FIELD_WS=123, + MVEXPAND_LINE_COMMENT=124, MVEXPAND_MULTILINE_COMMENT=125, MVEXPAND_WS=126, + ID_PATTERN=127, PROJECT_LINE_COMMENT=128, PROJECT_MULTILINE_COMMENT=129, + PROJECT_WS=130, RENAME_LINE_COMMENT=131, RENAME_MULTILINE_COMMENT=132, + RENAME_WS=133, INFO=134, SHOW_LINE_COMMENT=135, SHOW_MULTILINE_COMMENT=136, + SHOW_WS=137; public static final int RULE_singleStatement = 0, RULE_query = 1, RULE_sourceCommand = 2, RULE_processingCommand = 3, RULE_whereCommand = 4, RULE_dataType = 5, RULE_rowCommand = 6, RULE_fields = 7, @@ -63,23 +63,23 @@ public class EsqlBaseParser extends ParserConfig { RULE_aggFields = 19, RULE_aggField = 20, RULE_qualifiedName = 21, RULE_qualifiedNamePattern = 22, RULE_qualifiedNamePatterns = 23, RULE_identifier = 24, RULE_identifierPattern = 25, RULE_parameter = 26, RULE_doubleParameter = 27, RULE_identifierOrParameter = 28, - RULE_limitCommand = 29, RULE_sortCommand = 30, RULE_orderExpression = 31, - RULE_keepCommand = 32, RULE_dropCommand = 33, RULE_renameCommand = 34, - RULE_renameClause = 35, RULE_dissectCommand = 36, RULE_grokCommand = 37, - RULE_mvExpandCommand = 38, RULE_commandOptions = 39, RULE_commandOption = 40, - RULE_explainCommand = 41, RULE_subqueryExpression = 42, RULE_showCommand = 43, - RULE_enrichCommand = 44, RULE_enrichWithClause = 45, RULE_lookupCommand = 46, - RULE_inlinestatsCommand = 47, RULE_changePointCommand = 48, RULE_insistCommand = 49, - RULE_forkCommand = 50, RULE_forkSubQueries = 51, RULE_forkSubQuery = 52, - RULE_forkSubQueryCommand = 53, RULE_forkSubQueryProcessingCommand = 54, - RULE_rrfCommand = 55, RULE_booleanExpression = 56, RULE_regexBooleanExpression = 57, - RULE_matchBooleanExpression = 58, RULE_valueExpression = 59, RULE_operatorExpression = 60, - RULE_primaryExpression = 61, RULE_functionExpression = 62, RULE_functionName = 63, - RULE_mapExpression = 64, RULE_entryExpression = 65, RULE_constant = 66, - RULE_booleanValue = 67, RULE_numericValue = 68, RULE_decimalValue = 69, - RULE_integerValue = 70, RULE_string = 71, RULE_comparisonOperator = 72, - RULE_joinCommand = 73, RULE_joinTarget = 74, RULE_joinCondition = 75, - RULE_joinPredicate = 76; + RULE_stringOrParameter = 29, RULE_limitCommand = 30, RULE_sortCommand = 31, + RULE_orderExpression = 32, RULE_keepCommand = 33, RULE_dropCommand = 34, + RULE_renameCommand = 35, RULE_renameClause = 36, RULE_dissectCommand = 37, + RULE_grokCommand = 38, RULE_mvExpandCommand = 39, RULE_commandOptions = 40, + RULE_commandOption = 41, RULE_explainCommand = 42, RULE_subqueryExpression = 43, + RULE_showCommand = 44, RULE_enrichCommand = 45, RULE_enrichWithClause = 46, + RULE_lookupCommand = 47, RULE_inlinestatsCommand = 48, RULE_changePointCommand = 49, + RULE_insistCommand = 50, RULE_forkCommand = 51, RULE_forkSubQueries = 52, + RULE_forkSubQuery = 53, RULE_forkSubQueryCommand = 54, RULE_forkSubQueryProcessingCommand = 55, + RULE_rrfCommand = 56, RULE_rerankCommand = 57, RULE_booleanExpression = 58, + RULE_regexBooleanExpression = 59, RULE_matchBooleanExpression = 60, RULE_valueExpression = 61, + RULE_operatorExpression = 62, RULE_primaryExpression = 63, RULE_functionExpression = 64, + RULE_functionName = 65, RULE_mapExpression = 66, RULE_entryExpression = 67, + RULE_constant = 68, RULE_booleanValue = 69, RULE_numericValue = 70, RULE_decimalValue = 71, + RULE_integerValue = 72, RULE_string = 73, RULE_comparisonOperator = 74, + RULE_joinCommand = 75, RULE_joinTarget = 76, RULE_joinCondition = 77, + RULE_joinPredicate = 78; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -88,17 +88,18 @@ private static String[] makeRuleNames() { "indexString", "metadata", "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", "identifier", "identifierPattern", "parameter", "doubleParameter", "identifierOrParameter", - "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", - "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", - "commandOptions", "commandOption", "explainCommand", "subqueryExpression", - "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand", - "inlinestatsCommand", "changePointCommand", "insistCommand", "forkCommand", - "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand", - "rrfCommand", "booleanExpression", "regexBooleanExpression", "matchBooleanExpression", - "valueExpression", "operatorExpression", "primaryExpression", "functionExpression", - "functionName", "mapExpression", "entryExpression", "constant", "booleanValue", - "numericValue", "decimalValue", "integerValue", "string", "comparisonOperator", - "joinCommand", "joinTarget", "joinCondition", "joinPredicate" + "stringOrParameter", "limitCommand", "sortCommand", "orderExpression", + "keepCommand", "dropCommand", "renameCommand", "renameClause", "dissectCommand", + "grokCommand", "mvExpandCommand", "commandOptions", "commandOption", + "explainCommand", "subqueryExpression", "showCommand", "enrichCommand", + "enrichWithClause", "lookupCommand", "inlinestatsCommand", "changePointCommand", + "insistCommand", "forkCommand", "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", + "forkSubQueryProcessingCommand", "rrfCommand", "rerankCommand", "booleanExpression", + "regexBooleanExpression", "matchBooleanExpression", "valueExpression", + "operatorExpression", "primaryExpression", "functionExpression", "functionName", + "mapExpression", "entryExpression", "constant", "booleanValue", "numericValue", + "decimalValue", "integerValue", "string", "comparisonOperator", "joinCommand", + "joinTarget", "joinCondition", "joinPredicate" }; } public static final String[] ruleNames = makeRuleNames(); @@ -106,19 +107,19 @@ private static String[] makeRuleNames() { private static String[] makeLiteralNames() { return new String[] { null, null, null, null, null, "'enrich'", "'explain'", "'dissect'", "'eval'", - "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, "'from'", - null, null, "'lookup'", null, null, null, null, "'mv_expand'", "'drop'", - "'keep'", null, 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, null, null, "'metadata'", null, - null, null, null, null, null, null, "'join'", "'USING'", null, null, + "'grok'", "'limit'", "'row'", "'sort'", "'stats'", "'where'", null, null, + "'from'", null, null, "'lookup'", null, null, null, null, "'mv_expand'", + "'drop'", "'keep'", null, null, "'rename'", "'show'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, "'as'", null, null, null, "'info'" + null, null, null, "'|'", null, null, null, "'by'", "'on'", "'with'", + "'as'", "'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, "'join'", + "'USING'", null, null, null, null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, "'info'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -126,31 +127,30 @@ private static String[] makeSymbolicNames() { return new String[] { null, "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "DEV_CHANGE_POINT", "ENRICH", "EXPLAIN", "DISSECT", "EVAL", "GROK", "LIMIT", "ROW", "SORT", - "STATS", "WHERE", "DEV_INLINESTATS", "FROM", "DEV_METRICS", "DEV_FORK", - "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "DEV_LOOKUP", - "MV_EXPAND", "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "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", - "NOT", "NULL", "NULLS", "OR", "PARAM", "RLIKE", "TRUE", "EQ", "CIEQ", - "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", - "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", "FORK_WS", "FORK_LINE_COMMENT", - "FORK_MULTILINE_COMMENT", "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", - "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" + "STATS", "WHERE", "DEV_INLINESTATS", "DEV_RERANK", "FROM", "DEV_METRICS", + "DEV_FORK", "JOIN_LOOKUP", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", + "DEV_LOOKUP", "MV_EXPAND", "DROP", "KEEP", "DEV_INSIST", "DEV_RRF", "RENAME", + "SHOW", "UNKNOWN_CMD", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT", + "CHANGE_POINT_WS", "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", + "ON", "WITH", "AS", "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", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", + "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", "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", + "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", "MVEXPAND_LINE_COMMENT", + "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", + "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", + "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -237,9 +237,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(154); + setState(158); query(0); - setState(155); + setState(159); match(EOF); } } @@ -335,11 +335,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(158); + setState(162); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(165); + setState(169); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -350,16 +350,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(160); + setState(164); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(161); + setState(165); match(PIPE); - setState(162); + setState(166); processingCommand(); } } } - setState(167); + setState(171); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -417,43 +417,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(174); + setState(178); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(168); + setState(172); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(169); + setState(173); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(170); + setState(174); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(171); + setState(175); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(172); + setState(176); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(173); + setState(177); metricsCommand(); } break; @@ -526,6 +526,9 @@ public InsistCommandContext insistCommand() { public ForkCommandContext forkCommand() { return getRuleContext(ForkCommandContext.class,0); } + public RerankCommandContext rerankCommand() { + return getRuleContext(RerankCommandContext.class,0); + } public RrfCommandContext rrfCommand() { return getRuleContext(RrfCommandContext.class,0); } @@ -553,151 +556,160 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(201); + setState(207); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(176); + setState(180); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(177); + setState(181); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(178); + setState(182); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(179); + setState(183); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(180); + setState(184); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(181); + setState(185); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(182); + setState(186); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(183); + setState(187); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(184); + setState(188); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(185); + setState(189); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(186); + setState(190); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(187); + setState(191); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(188); + setState(192); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(189); + setState(193); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(190); + setState(194); inlinestatsCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(191); + setState(195); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(192); + setState(196); lookupCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(193); + setState(197); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(194); + setState(198); changePointCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(195); + setState(199); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(196); + setState(200); insistCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(197); + setState(201); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(198); + setState(202); forkCommand(); } break; case 19: enterOuterAlt(_localctx, 19); { - setState(199); + setState(203); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(200); + setState(204); + rerankCommand(); + } + break; + case 20: + enterOuterAlt(_localctx, 20); + { + setState(205); + if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); + setState(206); rrfCommand(); } break; @@ -746,9 +758,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(203); + setState(209); match(WHERE); - setState(204); + setState(210); booleanExpression(0); } } @@ -806,7 +818,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(206); + setState(212); identifier(); } } @@ -853,9 +865,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(208); + setState(214); match(ROW); - setState(209); + setState(215); fields(); } } @@ -909,23 +921,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(211); + setState(217); field(); - setState(216); + setState(222); _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(212); + setState(218); match(COMMA); - setState(213); + setState(219); field(); } } } - setState(218); + setState(224); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,3,_ctx); } @@ -977,19 +989,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(222); + setState(228); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) { case 1: { - setState(219); + setState(225); qualifiedName(); - setState(220); + setState(226); match(ASSIGN); } break; } - setState(224); + setState(230); booleanExpression(0); } } @@ -1036,9 +1048,9 @@ public final FromCommandContext fromCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(226); + setState(232); match(FROM); - setState(227); + setState(233); indexPatternAndMetadataFields(); } } @@ -1085,9 +1097,9 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(229); + setState(235); match(DEV_METRICS); - setState(230); + setState(236); indexPatternAndMetadataFields(); } } @@ -1144,32 +1156,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields( int _alt; enterOuterAlt(_localctx, 1); { - setState(232); + setState(238); indexPattern(); - setState(237); + setState(243); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(233); + setState(239); match(COMMA); - setState(234); + setState(240); indexPattern(); } } } - setState(239); + setState(245); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); } - setState(241); + setState(247); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: { - setState(240); + setState(246); metadata(); } break; @@ -1224,43 +1236,43 @@ public final IndexPatternContext indexPattern() throws RecognitionException { IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); enterRule(_localctx, 24, RULE_indexPattern); try { - setState(255); + setState(261); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(246); + setState(252); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: { - setState(243); + setState(249); clusterString(); - setState(244); + setState(250); match(COLON); } break; } - setState(248); + setState(254); indexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(249); + setState(255); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(250); + setState(256); indexString(); - setState(253); + setState(259); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) { case 1: { - setState(251); + setState(257); match(CAST_OP); - setState(252); + setState(258); selectorString(); } break; @@ -1311,7 +1323,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(257); + setState(263); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1365,7 +1377,7 @@ public final SelectorStringContext selectorString() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(259); + setState(265); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1419,7 +1431,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(261); + setState(267); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1480,25 +1492,25 @@ public final MetadataContext metadata() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(263); + setState(269); match(METADATA); - setState(264); + setState(270); match(UNQUOTED_SOURCE); - setState(269); + setState(275); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(265); + setState(271); match(COMMA); - setState(266); + setState(272); match(UNQUOTED_SOURCE); } } } - setState(271); + setState(277); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); } @@ -1547,9 +1559,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(272); + setState(278); match(EVAL); - setState(273); + setState(279); fields(); } } @@ -1602,26 +1614,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(275); + setState(281); match(STATS); - setState(277); + setState(283); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { case 1: { - setState(276); + setState(282); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(281); + setState(287); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: { - setState(279); + setState(285); match(BY); - setState(280); + setState(286); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -1678,23 +1690,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(283); + setState(289); aggField(); - setState(288); + setState(294); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(284); + setState(290); match(COMMA); - setState(285); + setState(291); aggField(); } } } - setState(290); + setState(296); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); } @@ -1746,16 +1758,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(291); + setState(297); field(); - setState(294); + setState(300); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: { - setState(292); + setState(298); match(WHERE); - setState(293); + setState(299); booleanExpression(0); } break; @@ -1812,23 +1824,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(296); + setState(302); identifierOrParameter(); - setState(301); + setState(307); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(297); + setState(303); match(DOT); - setState(298); + setState(304); identifierOrParameter(); } } } - setState(303); + setState(309); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); } @@ -1884,23 +1896,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(304); + setState(310); identifierPattern(); - setState(309); + setState(315); _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(305); + setState(311); match(DOT); - setState(306); + setState(312); identifierPattern(); } } } - setState(311); + setState(317); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); } @@ -1956,23 +1968,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(312); + setState(318); qualifiedNamePattern(); - setState(317); + setState(323); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(313); + setState(319); match(COMMA); - setState(314); + setState(320); qualifiedNamePattern(); } } } - setState(319); + setState(325); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } @@ -2020,7 +2032,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(320); + setState(326); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -2076,29 +2088,29 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 50, RULE_identifierPattern); try { - setState(326); + setState(332); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(322); + setState(328); match(ID_PATTERN); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(323); + setState(329); parameter(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(324); + setState(330); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(325); + setState(331); doubleParameter(); } break; @@ -2172,14 +2184,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 52, RULE_parameter); try { - setState(330); + setState(336); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(328); + setState(334); match(PARAM); } break; @@ -2187,7 +2199,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(329); + setState(335); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -2263,14 +2275,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); enterRule(_localctx, 54, RULE_doubleParameter); try { - setState(334); + setState(340); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(332); + setState(338); match(DOUBLE_PARAMS); } break; @@ -2278,7 +2290,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(333); + setState(339); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -2332,29 +2344,29 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 56, RULE_identifierOrParameter); try { - setState(340); + setState(346); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(336); + setState(342); identifier(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(337); + setState(343); parameter(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(338); + setState(344); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(339); + setState(345); doubleParameter(); } break; @@ -2371,6 +2383,71 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni return _localctx; } + @SuppressWarnings("CheckReturnValue") + public static class StringOrParameterContext extends ParserRuleContext { + public StringContext string() { + return getRuleContext(StringContext.class,0); + } + public ParameterContext parameter() { + return getRuleContext(ParameterContext.class,0); + } + @SuppressWarnings("this-escape") + public StringOrParameterContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_stringOrParameter; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringOrParameter(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringOrParameter(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringOrParameter(this); + else return visitor.visitChildren(this); + } + } + + public final StringOrParameterContext stringOrParameter() throws RecognitionException { + StringOrParameterContext _localctx = new StringOrParameterContext(_ctx, getState()); + enterRule(_localctx, 58, RULE_stringOrParameter); + try { + setState(350); + _errHandler.sync(this); + switch (_input.LA(1)) { + case QUOTED_STRING: + enterOuterAlt(_localctx, 1); + { + setState(348); + string(); + } + break; + case PARAM: + case NAMED_OR_POSITIONAL_PARAM: + enterOuterAlt(_localctx, 2); + { + setState(349); + parameter(); + } + break; + default: + throw new NoViableAltException(this); + } + } + 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); } @@ -2397,13 +2474,13 @@ public T accept(ParseTreeVisitor visitor) { public final LimitCommandContext limitCommand() throws RecognitionException { LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_limitCommand); + enterRule(_localctx, 60, RULE_limitCommand); try { enterOuterAlt(_localctx, 1); { - setState(342); + setState(352); match(LIMIT); - setState(343); + setState(353); match(INTEGER_LITERAL); } } @@ -2453,32 +2530,32 @@ public T accept(ParseTreeVisitor visitor) { public final SortCommandContext sortCommand() throws RecognitionException { SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_sortCommand); + enterRule(_localctx, 62, RULE_sortCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(345); + setState(355); match(SORT); - setState(346); + setState(356); orderExpression(); - setState(351); + setState(361); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,22,_ctx); + _alt = getInterpreter().adaptivePredict(_input,23,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(347); + setState(357); match(COMMA); - setState(348); + setState(358); orderExpression(); } } } - setState(353); + setState(363); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,22,_ctx); + _alt = getInterpreter().adaptivePredict(_input,23,_ctx); } } } @@ -2527,19 +2604,19 @@ public T accept(ParseTreeVisitor visitor) { public final OrderExpressionContext orderExpression() throws RecognitionException { OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_orderExpression); + enterRule(_localctx, 64, RULE_orderExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(354); + setState(364); booleanExpression(0); - setState(356); + setState(366); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: { - setState(355); + setState(365); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -2553,14 +2630,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(360); + setState(370); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { case 1: { - setState(358); + setState(368); match(NULLS); - setState(359); + setState(369); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -2615,13 +2692,13 @@ public T accept(ParseTreeVisitor visitor) { public final KeepCommandContext keepCommand() throws RecognitionException { KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_keepCommand); + enterRule(_localctx, 66, RULE_keepCommand); try { enterOuterAlt(_localctx, 1); { - setState(362); + setState(372); match(KEEP); - setState(363); + setState(373); qualifiedNamePatterns(); } } @@ -2664,13 +2741,13 @@ public T accept(ParseTreeVisitor visitor) { public final DropCommandContext dropCommand() throws RecognitionException { DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_dropCommand); + enterRule(_localctx, 68, RULE_dropCommand); try { enterOuterAlt(_localctx, 1); { - setState(365); + setState(375); match(DROP); - setState(366); + setState(376); qualifiedNamePatterns(); } } @@ -2720,32 +2797,32 @@ public T accept(ParseTreeVisitor visitor) { public final RenameCommandContext renameCommand() throws RecognitionException { RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_renameCommand); + enterRule(_localctx, 70, RULE_renameCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(368); + setState(378); match(RENAME); - setState(369); + setState(379); renameClause(); - setState(374); + setState(384); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); + _alt = getInterpreter().adaptivePredict(_input,26,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(370); + setState(380); match(COMMA); - setState(371); + setState(381); renameClause(); } } } - setState(376); + setState(386); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,25,_ctx); + _alt = getInterpreter().adaptivePredict(_input,26,_ctx); } } } @@ -2793,15 +2870,15 @@ public T accept(ParseTreeVisitor visitor) { public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_renameClause); + enterRule(_localctx, 72, RULE_renameClause); try { enterOuterAlt(_localctx, 1); { - setState(377); + setState(387); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(378); + setState(388); match(AS); - setState(379); + setState(389); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } } @@ -2850,22 +2927,22 @@ public T accept(ParseTreeVisitor visitor) { public final DissectCommandContext dissectCommand() throws RecognitionException { DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_dissectCommand); + enterRule(_localctx, 74, RULE_dissectCommand); try { enterOuterAlt(_localctx, 1); { - setState(381); + setState(391); match(DISSECT); - setState(382); + setState(392); primaryExpression(0); - setState(383); + setState(393); string(); - setState(385); + setState(395); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { case 1: { - setState(384); + setState(394); commandOptions(); } break; @@ -2914,15 +2991,15 @@ public T accept(ParseTreeVisitor visitor) { public final GrokCommandContext grokCommand() throws RecognitionException { GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_grokCommand); + enterRule(_localctx, 76, RULE_grokCommand); try { enterOuterAlt(_localctx, 1); { - setState(387); + setState(397); match(GROK); - setState(388); + setState(398); primaryExpression(0); - setState(389); + setState(399); string(); } } @@ -2965,13 +3042,13 @@ public T accept(ParseTreeVisitor visitor) { public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_mvExpandCommand); + enterRule(_localctx, 78, RULE_mvExpandCommand); try { enterOuterAlt(_localctx, 1); { - setState(391); + setState(401); match(MV_EXPAND); - setState(392); + setState(402); qualifiedName(); } } @@ -3020,30 +3097,30 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionsContext commandOptions() throws RecognitionException { CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_commandOptions); + enterRule(_localctx, 80, RULE_commandOptions); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(394); + setState(404); commandOption(); - setState(399); + setState(409); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(395); + setState(405); match(COMMA); - setState(396); + setState(406); commandOption(); } } } - setState(401); + setState(411); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,27,_ctx); + _alt = getInterpreter().adaptivePredict(_input,28,_ctx); } } } @@ -3089,15 +3166,15 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionContext commandOption() throws RecognitionException { CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_commandOption); + enterRule(_localctx, 82, RULE_commandOption); try { enterOuterAlt(_localctx, 1); { - setState(402); + setState(412); identifier(); - setState(403); + setState(413); match(ASSIGN); - setState(404); + setState(414); constant(); } } @@ -3140,13 +3217,13 @@ public T accept(ParseTreeVisitor visitor) { public final ExplainCommandContext explainCommand() throws RecognitionException { ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_explainCommand); + enterRule(_localctx, 84, RULE_explainCommand); try { enterOuterAlt(_localctx, 1); { - setState(406); + setState(416); match(EXPLAIN); - setState(407); + setState(417); subqueryExpression(); } } @@ -3190,15 +3267,15 @@ public T accept(ParseTreeVisitor visitor) { public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_subqueryExpression); + enterRule(_localctx, 86, RULE_subqueryExpression); try { enterOuterAlt(_localctx, 1); { - setState(409); + setState(419); match(OPENING_BRACKET); - setState(410); + setState(420); query(0); - setState(411); + setState(421); match(CLOSING_BRACKET); } } @@ -3250,14 +3327,14 @@ public T accept(ParseTreeVisitor visitor) { public final ShowCommandContext showCommand() throws RecognitionException { ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_showCommand); + enterRule(_localctx, 88, RULE_showCommand); try { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(413); + setState(423); match(SHOW); - setState(414); + setState(424); match(INFO); } } @@ -3315,53 +3392,53 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichCommandContext enrichCommand() throws RecognitionException { EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_enrichCommand); + enterRule(_localctx, 90, RULE_enrichCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(416); + setState(426); match(ENRICH); - setState(417); + setState(427); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(420); + setState(430); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { case 1: { - setState(418); + setState(428); match(ON); - setState(419); + setState(429); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(431); + setState(441); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: { - setState(422); + setState(432); match(WITH); - setState(423); + setState(433); enrichWithClause(); - setState(428); + setState(438); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + _alt = getInterpreter().adaptivePredict(_input,30,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(424); + setState(434); match(COMMA); - setState(425); + setState(435); enrichWithClause(); } } } - setState(430); + setState(440); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,29,_ctx); + _alt = getInterpreter().adaptivePredict(_input,30,_ctx); } } break; @@ -3412,23 +3489,23 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_enrichWithClause); + enterRule(_localctx, 92, RULE_enrichWithClause); try { enterOuterAlt(_localctx, 1); { - setState(436); + setState(446); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(433); + setState(443); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(434); + setState(444); match(ASSIGN); } break; } - setState(438); + setState(448); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -3477,17 +3554,17 @@ public T accept(ParseTreeVisitor visitor) { public final LookupCommandContext lookupCommand() throws RecognitionException { LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_lookupCommand); + enterRule(_localctx, 94, RULE_lookupCommand); try { enterOuterAlt(_localctx, 1); { - setState(440); + setState(450); match(DEV_LOOKUP); - setState(441); + setState(451); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(442); + setState(452); match(ON); - setState(443); + setState(453); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -3536,22 +3613,22 @@ public T accept(ParseTreeVisitor visitor) { public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_inlinestatsCommand); + enterRule(_localctx, 96, RULE_inlinestatsCommand); try { enterOuterAlt(_localctx, 1); { - setState(445); + setState(455); match(DEV_INLINESTATS); - setState(446); + setState(456); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(449); + setState(459); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(447); + setState(457); match(BY); - setState(448); + setState(458); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -3607,38 +3684,38 @@ public T accept(ParseTreeVisitor visitor) { public final ChangePointCommandContext changePointCommand() throws RecognitionException { ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_changePointCommand); + enterRule(_localctx, 98, RULE_changePointCommand); try { enterOuterAlt(_localctx, 1); { - setState(451); + setState(461); match(DEV_CHANGE_POINT); - setState(452); + setState(462); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(455); + setState(465); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: { - setState(453); + setState(463); match(ON); - setState(454); + setState(464); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(462); + setState(472); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { case 1: { - setState(457); + setState(467); match(AS); - setState(458); + setState(468); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(459); + setState(469); match(COMMA); - setState(460); + setState(470); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -3684,13 +3761,13 @@ public T accept(ParseTreeVisitor visitor) { public final InsistCommandContext insistCommand() throws RecognitionException { InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_insistCommand); + enterRule(_localctx, 100, RULE_insistCommand); try { enterOuterAlt(_localctx, 1); { - setState(464); + setState(474); match(DEV_INSIST); - setState(465); + setState(475); qualifiedNamePatterns(); } } @@ -3733,13 +3810,13 @@ public T accept(ParseTreeVisitor visitor) { public final ForkCommandContext forkCommand() throws RecognitionException { ForkCommandContext _localctx = new ForkCommandContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_forkCommand); + enterRule(_localctx, 102, RULE_forkCommand); try { enterOuterAlt(_localctx, 1); { - setState(467); + setState(477); match(DEV_FORK); - setState(468); + setState(478); forkSubQueries(); } } @@ -3784,12 +3861,12 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueriesContext forkSubQueries() throws RecognitionException { ForkSubQueriesContext _localctx = new ForkSubQueriesContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_forkSubQueries); + enterRule(_localctx, 104, RULE_forkSubQueries); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(471); + setState(481); _errHandler.sync(this); _alt = 1; do { @@ -3797,7 +3874,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(470); + setState(480); forkSubQuery(); } } @@ -3805,9 +3882,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(473); + setState(483); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,35,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } } @@ -3851,15 +3928,15 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryContext forkSubQuery() throws RecognitionException { ForkSubQueryContext _localctx = new ForkSubQueryContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_forkSubQuery); + enterRule(_localctx, 106, RULE_forkSubQuery); try { enterOuterAlt(_localctx, 1); { - setState(475); + setState(485); match(LP); - setState(476); + setState(486); forkSubQueryCommand(0); - setState(477); + setState(487); match(RP); } } @@ -3944,8 +4021,8 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio int _parentState = getState(); ForkSubQueryCommandContext _localctx = new ForkSubQueryCommandContext(_ctx, _parentState); ForkSubQueryCommandContext _prevctx = _localctx; - int _startState = 106; - enterRecursionRule(_localctx, 106, RULE_forkSubQueryCommand, _p); + int _startState = 108; + enterRecursionRule(_localctx, 108, RULE_forkSubQueryCommand, _p); try { int _alt; enterOuterAlt(_localctx, 1); @@ -3955,13 +4032,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(480); + setState(490); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(487); + setState(497); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -3970,18 +4047,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(482); + setState(492); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(483); + setState(493); match(PIPE); - setState(484); + setState(494); forkSubQueryProcessingCommand(); } } } - setState(489); + setState(499); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,37,_ctx); } } } @@ -4029,29 +4106,29 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand() throws RecognitionException { ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); - enterRule(_localctx, 108, RULE_forkSubQueryProcessingCommand); + enterRule(_localctx, 110, RULE_forkSubQueryProcessingCommand); try { - setState(493); + setState(503); _errHandler.sync(this); switch (_input.LA(1)) { case WHERE: enterOuterAlt(_localctx, 1); { - setState(490); + setState(500); whereCommand(); } break; case SORT: enterOuterAlt(_localctx, 2); { - setState(491); + setState(501); sortCommand(); } break; case LIMIT: enterOuterAlt(_localctx, 3); { - setState(492); + setState(502); limitCommand(); } break; @@ -4095,11 +4172,11 @@ public T accept(ParseTreeVisitor visitor) { public final RrfCommandContext rrfCommand() throws RecognitionException { RrfCommandContext _localctx = new RrfCommandContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_rrfCommand); + enterRule(_localctx, 112, RULE_rrfCommand); try { enterOuterAlt(_localctx, 1); { - setState(495); + setState(505); match(DEV_RRF); } } @@ -4114,6 +4191,73 @@ public final RrfCommandContext rrfCommand() throws RecognitionException { return _localctx; } + @SuppressWarnings("CheckReturnValue") + public static class RerankCommandContext extends ParserRuleContext { + public StringOrParameterContext queryText; + public StringOrParameterContext inferenceId; + public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); } + public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } + public FieldsContext fields() { + return getRuleContext(FieldsContext.class,0); + } + public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } + public List stringOrParameter() { + return getRuleContexts(StringOrParameterContext.class); + } + public StringOrParameterContext stringOrParameter(int i) { + return getRuleContext(StringOrParameterContext.class,i); + } + @SuppressWarnings("this-escape") + public RerankCommandContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_rerankCommand; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRerankCommand(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRerankCommand(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitRerankCommand(this); + else return visitor.visitChildren(this); + } + } + + public final RerankCommandContext rerankCommand() throws RecognitionException { + RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); + enterRule(_localctx, 114, RULE_rerankCommand); + try { + enterOuterAlt(_localctx, 1); + { + setState(507); + match(DEV_RERANK); + setState(508); + ((RerankCommandContext)_localctx).queryText = stringOrParameter(); + setState(509); + match(ON); + setState(510); + fields(); + setState(511); + match(WITH); + setState(512); + ((RerankCommandContext)_localctx).inferenceId = stringOrParameter(); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + @SuppressWarnings("CheckReturnValue") public static class BooleanExpressionContext extends ParserRuleContext { @SuppressWarnings("this-escape") @@ -4308,25 +4452,25 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _parentState = getState(); BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState); BooleanExpressionContext _prevctx = _localctx; - int _startState = 112; - enterRecursionRule(_localctx, 112, RULE_booleanExpression, _p); + int _startState = 116; + enterRecursionRule(_localctx, 116, RULE_booleanExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(526); + setState(543); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { _localctx = new LogicalNotContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(498); + setState(515); match(NOT); - setState(499); + setState(516); booleanExpression(8); } break; @@ -4335,7 +4479,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(500); + setState(517); valueExpression(); } break; @@ -4344,7 +4488,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(501); + setState(518); regexBooleanExpression(); } break; @@ -4353,41 +4497,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(502); + setState(519); valueExpression(); - setState(504); + setState(521); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(503); + setState(520); match(NOT); } } - setState(506); + setState(523); match(IN); - setState(507); + setState(524); match(LP); - setState(508); + setState(525); valueExpression(); - setState(513); + setState(530); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(509); + setState(526); match(COMMA); - setState(510); + setState(527); valueExpression(); } } - setState(515); + setState(532); _errHandler.sync(this); _la = _input.LA(1); } - setState(516); + setState(533); match(RP); } break; @@ -4396,21 +4540,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(518); + setState(535); valueExpression(); - setState(519); + setState(536); match(IS); - setState(521); + setState(538); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(520); + setState(537); match(NOT); } } - setState(523); + setState(540); match(NULL); } break; @@ -4419,33 +4563,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(525); + setState(542); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(536); + setState(553); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(534); + setState(551); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { case 1: { _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(528); + setState(545); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(529); + setState(546); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(530); + setState(547); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4454,20 +4598,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(531); + setState(548); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(532); + setState(549); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(533); + setState(550); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(538); + setState(555); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } } } @@ -4517,51 +4661,51 @@ public T accept(ParseTreeVisitor visitor) { public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException { RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_regexBooleanExpression); + enterRule(_localctx, 118, RULE_regexBooleanExpression); int _la; try { - setState(553); + setState(570); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(539); + setState(556); valueExpression(); - setState(541); + setState(558); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(540); + setState(557); match(NOT); } } - setState(543); + setState(560); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(544); + setState(561); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(546); + setState(563); valueExpression(); - setState(548); + setState(565); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(547); + setState(564); match(NOT); } } - setState(550); + setState(567); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(551); + setState(568); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4616,28 +4760,28 @@ public T accept(ParseTreeVisitor visitor) { public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 116, RULE_matchBooleanExpression); + enterRule(_localctx, 120, RULE_matchBooleanExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(555); + setState(572); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(558); + setState(575); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(556); + setState(573); match(CAST_OP); - setState(557); + setState(574); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(560); + setState(577); match(COLON); - setState(561); + setState(578); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4719,16 +4863,16 @@ public T accept(ParseTreeVisitor visitor) { public final ValueExpressionContext valueExpression() throws RecognitionException { ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_valueExpression); + enterRule(_localctx, 122, RULE_valueExpression); try { - setState(568); + setState(585); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(563); + setState(580); operatorExpression(0); } break; @@ -4736,11 +4880,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(564); + setState(581); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(565); + setState(582); comparisonOperator(); - setState(566); + setState(583); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -4858,23 +5002,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _parentState = getState(); OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState); OperatorExpressionContext _prevctx = _localctx; - int _startState = 120; - enterRecursionRule(_localctx, 120, RULE_operatorExpression, _p); + int _startState = 124; + enterRecursionRule(_localctx, 124, RULE_operatorExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(574); + setState(591); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(571); + setState(588); primaryExpression(0); } break; @@ -4883,7 +5027,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(572); + setState(589); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4894,34 +5038,34 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(573); + setState(590); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(584); + setState(601); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(582); + setState(599); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(576); + setState(593); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(577); + setState(594); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); - if ( !(((((_la - 86)) & ~0x3f) == 0 && ((1L << (_la - 86)) & 7L) != 0)) ) { + if ( !(((((_la - 88)) & ~0x3f) == 0 && ((1L << (_la - 88)) & 7L) != 0)) ) { ((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this); } else { @@ -4929,7 +5073,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(578); + setState(595); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -4938,9 +5082,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(579); + setState(596); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(580); + setState(597); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -4951,16 +5095,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(581); + setState(598); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(586); + setState(603); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,51,_ctx); + _alt = getInterpreter().adaptivePredict(_input,52,_ctx); } } } @@ -5110,22 +5254,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _parentState = getState(); PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState); PrimaryExpressionContext _prevctx = _localctx; - int _startState = 122; - enterRecursionRule(_localctx, 122, RULE_primaryExpression, _p); + int _startState = 126; + enterRecursionRule(_localctx, 126, RULE_primaryExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(595); + setState(612); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(588); + setState(605); constant(); } break; @@ -5134,7 +5278,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(589); + setState(606); qualifiedName(); } break; @@ -5143,7 +5287,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(590); + setState(607); functionExpression(); } break; @@ -5152,19 +5296,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(591); + setState(608); match(LP); - setState(592); + setState(609); booleanExpression(0); - setState(593); + setState(610); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(602); + setState(619); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,53,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -5173,18 +5317,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(597); + setState(614); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(598); + setState(615); match(CAST_OP); - setState(599); + setState(616); dataType(); } } } - setState(604); + setState(621); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,53,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } } } @@ -5242,56 +5386,56 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionExpressionContext functionExpression() throws RecognitionException { FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState()); - enterRule(_localctx, 124, RULE_functionExpression); + enterRule(_localctx, 128, RULE_functionExpression); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(605); + setState(622); functionName(); - setState(606); + setState(623); match(LP); - setState(620); + setState(637); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { - setState(607); + setState(624); match(ASTERISK); } break; case 2: { { - setState(608); + setState(625); booleanExpression(0); - setState(613); + setState(630); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(609); + setState(626); match(COMMA); - setState(610); + setState(627); booleanExpression(0); } } } - setState(615); + setState(632); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,55,_ctx); } - setState(618); + setState(635); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(616); + setState(633); match(COMMA); - setState(617); + setState(634); mapExpression(); } } @@ -5300,7 +5444,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } break; } - setState(622); + setState(639); match(RP); } } @@ -5342,11 +5486,11 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionNameContext functionName() throws RecognitionException { FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); - enterRule(_localctx, 126, RULE_functionName); + enterRule(_localctx, 130, RULE_functionName); try { enterOuterAlt(_localctx, 1); { - setState(624); + setState(641); identifierOrParameter(); } } @@ -5397,32 +5541,32 @@ public T accept(ParseTreeVisitor visitor) { public final MapExpressionContext mapExpression() throws RecognitionException { MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_mapExpression); + enterRule(_localctx, 132, RULE_mapExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(626); + setState(643); match(LEFT_BRACES); - setState(627); + setState(644); entryExpression(); - setState(632); + setState(649); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(628); + setState(645); match(COMMA); - setState(629); + setState(646); entryExpression(); } } - setState(634); + setState(651); _errHandler.sync(this); _la = _input.LA(1); } - setState(635); + setState(652); match(RIGHT_BRACES); } } @@ -5470,15 +5614,15 @@ public T accept(ParseTreeVisitor visitor) { public final EntryExpressionContext entryExpression() throws RecognitionException { EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_entryExpression); + enterRule(_localctx, 134, RULE_entryExpression); try { enterOuterAlt(_localctx, 1); { - setState(637); + setState(654); ((EntryExpressionContext)_localctx).key = string(); - setState(638); + setState(655); match(COLON); - setState(639); + setState(656); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5746,17 +5890,17 @@ public T accept(ParseTreeVisitor visitor) { public final ConstantContext constant() throws RecognitionException { ConstantContext _localctx = new ConstantContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_constant); + enterRule(_localctx, 136, RULE_constant); int _la; try { - setState(683); + setState(700); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(641); + setState(658); match(NULL); } break; @@ -5764,9 +5908,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(642); + setState(659); integerValue(); - setState(643); + setState(660); match(UNQUOTED_IDENTIFIER); } break; @@ -5774,7 +5918,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(645); + setState(662); decimalValue(); } break; @@ -5782,7 +5926,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(646); + setState(663); integerValue(); } break; @@ -5790,7 +5934,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(647); + setState(664); booleanValue(); } break; @@ -5798,7 +5942,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(648); + setState(665); parameter(); } break; @@ -5806,7 +5950,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(649); + setState(666); string(); } break; @@ -5814,27 +5958,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(650); + setState(667); match(OPENING_BRACKET); - setState(651); + setState(668); numericValue(); - setState(656); + setState(673); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(652); + setState(669); match(COMMA); - setState(653); + setState(670); numericValue(); } } - setState(658); + setState(675); _errHandler.sync(this); _la = _input.LA(1); } - setState(659); + setState(676); match(CLOSING_BRACKET); } break; @@ -5842,27 +5986,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(661); + setState(678); match(OPENING_BRACKET); - setState(662); + setState(679); booleanValue(); - setState(667); + setState(684); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(663); + setState(680); match(COMMA); - setState(664); + setState(681); booleanValue(); } } - setState(669); + setState(686); _errHandler.sync(this); _la = _input.LA(1); } - setState(670); + setState(687); match(CLOSING_BRACKET); } break; @@ -5870,27 +6014,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(672); + setState(689); match(OPENING_BRACKET); - setState(673); + setState(690); string(); - setState(678); + setState(695); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(674); + setState(691); match(COMMA); - setState(675); + setState(692); string(); } } - setState(680); + setState(697); _errHandler.sync(this); _la = _input.LA(1); } - setState(681); + setState(698); match(CLOSING_BRACKET); } break; @@ -5933,12 +6077,12 @@ public T accept(ParseTreeVisitor visitor) { public final BooleanValueContext booleanValue() throws RecognitionException { BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_booleanValue); + enterRule(_localctx, 138, RULE_booleanValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(685); + setState(702); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -5991,22 +6135,22 @@ public T accept(ParseTreeVisitor visitor) { public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_numericValue); + enterRule(_localctx, 140, RULE_numericValue); try { - setState(689); + setState(706); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(687); + setState(704); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(688); + setState(705); integerValue(); } break; @@ -6050,17 +6194,17 @@ public T accept(ParseTreeVisitor visitor) { public final DecimalValueContext decimalValue() throws RecognitionException { DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_decimalValue); + enterRule(_localctx, 142, RULE_decimalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(692); + setState(709); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(691); + setState(708); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6073,7 +6217,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(694); + setState(711); match(DECIMAL_LITERAL); } } @@ -6115,17 +6259,17 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerValueContext integerValue() throws RecognitionException { IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_integerValue); + enterRule(_localctx, 144, RULE_integerValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(697); + setState(714); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(696); + setState(713); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6138,7 +6282,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(699); + setState(716); match(INTEGER_LITERAL); } } @@ -6178,11 +6322,11 @@ public T accept(ParseTreeVisitor visitor) { public final StringContext string() throws RecognitionException { StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_string); + enterRule(_localctx, 146, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(701); + setState(718); match(QUOTED_STRING); } } @@ -6227,14 +6371,14 @@ public T accept(ParseTreeVisitor visitor) { public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_comparisonOperator); + enterRule(_localctx, 148, RULE_comparisonOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(703); + setState(720); _la = _input.LA(1); - if ( !(((((_la - 77)) & ~0x3f) == 0 && ((1L << (_la - 77)) & 125L) != 0)) ) { + if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 125L) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -6290,15 +6434,15 @@ public T accept(ParseTreeVisitor visitor) { public final JoinCommandContext joinCommand() throws RecognitionException { JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_joinCommand); + enterRule(_localctx, 150, RULE_joinCommand); int _la; try { enterOuterAlt(_localctx, 1); { - setState(705); + setState(722); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); - if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 6815744L) != 0)) ) { + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 13631488L) != 0)) ) { ((JoinCommandContext)_localctx).type = (Token)_errHandler.recoverInline(this); } else { @@ -6306,11 +6450,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(706); + setState(723); match(JOIN); - setState(707); + setState(724); joinTarget(); - setState(708); + setState(725); joinCondition(); } } @@ -6353,11 +6497,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinTargetContext joinTarget() throws RecognitionException { JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_joinTarget); + enterRule(_localctx, 152, RULE_joinTarget); try { enterOuterAlt(_localctx, 1); { - setState(710); + setState(727); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6407,32 +6551,32 @@ public T accept(ParseTreeVisitor visitor) { public final JoinConditionContext joinCondition() throws RecognitionException { JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_joinCondition); + enterRule(_localctx, 154, RULE_joinCondition); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(712); + setState(729); match(ON); - setState(713); + setState(730); joinPredicate(); - setState(718); + setState(735); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + _alt = getInterpreter().adaptivePredict(_input,66,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(714); + setState(731); match(COMMA); - setState(715); + setState(732); joinPredicate(); } } } - setState(720); + setState(737); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + _alt = getInterpreter().adaptivePredict(_input,66,_ctx); } } } @@ -6474,11 +6618,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinPredicateContext joinPredicate() throws RecognitionException { JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_joinPredicate); + enterRule(_localctx, 156, RULE_joinPredicate); try { enterOuterAlt(_localctx, 1); { - setState(721); + setState(738); valueExpression(); } } @@ -6507,13 +6651,13 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return identifierPattern_sempred((IdentifierPatternContext)_localctx, predIndex); case 28: return identifierOrParameter_sempred((IdentifierOrParameterContext)_localctx, predIndex); - case 53: + case 54: return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex); - case 56: + case 58: return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex); - case 60: + case 62: return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); - case 61: + case 63: return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex); } return true; @@ -6546,65 +6690,67 @@ private boolean processingCommand_sempred(ProcessingCommandContext _localctx, in return this.isDevVersion(); case 7: return this.isDevVersion(); + case 8: + return this.isDevVersion(); } return true; } private boolean indexPattern_sempred(IndexPatternContext _localctx, int predIndex) { switch (predIndex) { - case 8: + case 9: return this.isDevVersion(); } return true; } private boolean identifierPattern_sempred(IdentifierPatternContext _localctx, int predIndex) { switch (predIndex) { - case 9: + case 10: return this.isDevVersion(); } return true; } private boolean identifierOrParameter_sempred(IdentifierOrParameterContext _localctx, int predIndex) { switch (predIndex) { - case 10: + case 11: return this.isDevVersion(); } return true; } private boolean forkSubQueryCommand_sempred(ForkSubQueryCommandContext _localctx, int predIndex) { switch (predIndex) { - case 11: + case 12: return precpred(_ctx, 1); } return true; } private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 12: - return precpred(_ctx, 5); case 13: + return precpred(_ctx, 5); + case 14: return precpred(_ctx, 4); } return true; } private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 14: - return precpred(_ctx, 2); case 15: + return precpred(_ctx, 2); + case 16: return precpred(_ctx, 1); } return true; } private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) { switch (predIndex) { - case 16: + case 17: return precpred(_ctx, 1); } return true; } public static final String _serializedATN = - "\u0004\u0001\u0088\u02d4\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0089\u02e5\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"+ @@ -6623,432 +6769,442 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+ "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ - "J\u0002K\u0007K\u0002L\u0007L\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+ - "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+ - "\u0001\u00a4\b\u0001\n\u0001\f\u0001\u00a7\t\u0001\u0001\u0002\u0001\u0002"+ - "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00af\b\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\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\u00ca\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004"+ - "\u0001\u0005\u0001\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007"+ - "\u0001\u0007\u0001\u0007\u0005\u0007\u00d7\b\u0007\n\u0007\f\u0007\u00da"+ - "\t\u0007\u0001\b\u0001\b\u0001\b\u0003\b\u00df\b\b\u0001\b\u0001\b\u0001"+ - "\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+ - "\u000b\u0005\u000b\u00ec\b\u000b\n\u000b\f\u000b\u00ef\t\u000b\u0001\u000b"+ - "\u0003\u000b\u00f2\b\u000b\u0001\f\u0001\f\u0001\f\u0003\f\u00f7\b\f\u0001"+ - "\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003\f\u00fe\b\f\u0003\f\u0100\b\f"+ - "\u0001\r\u0001\r\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001"+ - "\u0010\u0001\u0010\u0001\u0010\u0001\u0010\u0005\u0010\u010c\b\u0010\n"+ - "\u0010\f\u0010\u010f\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001"+ - "\u0012\u0001\u0012\u0003\u0012\u0116\b\u0012\u0001\u0012\u0001\u0012\u0003"+ - "\u0012\u011a\b\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u011f"+ - "\b\u0013\n\u0013\f\u0013\u0122\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014"+ - "\u0003\u0014\u0127\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015"+ - "\u012c\b\u0015\n\u0015\f\u0015\u012f\t\u0015\u0001\u0016\u0001\u0016\u0001"+ - "\u0016\u0005\u0016\u0134\b\u0016\n\u0016\f\u0016\u0137\t\u0016\u0001\u0017"+ - "\u0001\u0017\u0001\u0017\u0005\u0017\u013c\b\u0017\n\u0017\f\u0017\u013f"+ - "\t\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001"+ - "\u0019\u0003\u0019\u0147\b\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u014b"+ - "\b\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u014f\b\u001b\u0001\u001c"+ - "\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u0155\b\u001c\u0001\u001d"+ - "\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001e"+ - "\u0005\u001e\u015e\b\u001e\n\u001e\f\u001e\u0161\t\u001e\u0001\u001f\u0001"+ - "\u001f\u0003\u001f\u0165\b\u001f\u0001\u001f\u0001\u001f\u0003\u001f\u0169"+ - "\b\u001f\u0001 \u0001 \u0001 \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001"+ - "\"\u0001\"\u0005\"\u0175\b\"\n\"\f\"\u0178\t\"\u0001#\u0001#\u0001#\u0001"+ - "#\u0001$\u0001$\u0001$\u0001$\u0003$\u0182\b$\u0001%\u0001%\u0001%\u0001"+ - "%\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001\'\u0005\'\u018e\b\'\n\'\f"+ - "\'\u0191\t\'\u0001(\u0001(\u0001(\u0001(\u0001)\u0001)\u0001)\u0001*\u0001"+ - "*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001,\u0003"+ - ",\u01a5\b,\u0001,\u0001,\u0001,\u0001,\u0005,\u01ab\b,\n,\f,\u01ae\t,"+ - "\u0003,\u01b0\b,\u0001-\u0001-\u0001-\u0003-\u01b5\b-\u0001-\u0001-\u0001"+ - ".\u0001.\u0001.\u0001.\u0001.\u0001/\u0001/\u0001/\u0001/\u0003/\u01c2"+ - "\b/\u00010\u00010\u00010\u00010\u00030\u01c8\b0\u00010\u00010\u00010\u0001"+ - "0\u00010\u00030\u01cf\b0\u00011\u00011\u00011\u00012\u00012\u00012\u0001"+ - "3\u00043\u01d8\b3\u000b3\f3\u01d9\u00014\u00014\u00014\u00014\u00015\u0001"+ - "5\u00015\u00015\u00015\u00015\u00055\u01e6\b5\n5\f5\u01e9\t5\u00016\u0001"+ - "6\u00016\u00036\u01ee\b6\u00017\u00017\u00018\u00018\u00018\u00018\u0001"+ - "8\u00018\u00018\u00038\u01f9\b8\u00018\u00018\u00018\u00018\u00018\u0005"+ - "8\u0200\b8\n8\f8\u0203\t8\u00018\u00018\u00018\u00018\u00018\u00038\u020a"+ - "\b8\u00018\u00018\u00018\u00038\u020f\b8\u00018\u00018\u00018\u00018\u0001"+ - "8\u00018\u00058\u0217\b8\n8\f8\u021a\t8\u00019\u00019\u00039\u021e\b9"+ - "\u00019\u00019\u00019\u00019\u00019\u00039\u0225\b9\u00019\u00019\u0001"+ - "9\u00039\u022a\b9\u0001:\u0001:\u0001:\u0003:\u022f\b:\u0001:\u0001:\u0001"+ - ":\u0001;\u0001;\u0001;\u0001;\u0001;\u0003;\u0239\b;\u0001<\u0001<\u0001"+ - "<\u0001<\u0003<\u023f\b<\u0001<\u0001<\u0001<\u0001<\u0001<\u0001<\u0005"+ - "<\u0247\b<\n<\f<\u024a\t<\u0001=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ - "=\u0001=\u0003=\u0254\b=\u0001=\u0001=\u0001=\u0005=\u0259\b=\n=\f=\u025c"+ - "\t=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0264\b>\n>\f>\u0267"+ - "\t>\u0001>\u0001>\u0003>\u026b\b>\u0003>\u026d\b>\u0001>\u0001>\u0001"+ - "?\u0001?\u0001@\u0001@\u0001@\u0001@\u0005@\u0277\b@\n@\f@\u027a\t@\u0001"+ - "@\u0001@\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u028f"+ - "\bB\nB\fB\u0292\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u029a"+ - "\bB\nB\fB\u029d\tB\u0001B\u0001B\u0001B\u0001B\u0001B\u0001B\u0005B\u02a5"+ - "\bB\nB\fB\u02a8\tB\u0001B\u0001B\u0003B\u02ac\bB\u0001C\u0001C\u0001D"+ - "\u0001D\u0003D\u02b2\bD\u0001E\u0003E\u02b5\bE\u0001E\u0001E\u0001F\u0003"+ - "F\u02ba\bF\u0001F\u0001F\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001"+ - "I\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001K\u0005K\u02cd"+ - "\bK\nK\fK\u02d0\tK\u0001L\u0001L\u0001L\u0000\u0005\u0002jpxzM\u0000\u0002"+ + "J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0001\u0000"+ + "\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0001\u0001\u0001\u0005\u0001\u00a8\b\u0001\n\u0001\f\u0001\u00ab"+ + "\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ + "\u0002\u0003\u0002\u00b3\b\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\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\u0001\u0003\u0001\u0003\u0003"+ + "\u0003\u00d0\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001"+ + "\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001"+ + "\u0007\u0005\u0007\u00dd\b\u0007\n\u0007\f\u0007\u00e0\t\u0007\u0001\b"+ + "\u0001\b\u0001\b\u0003\b\u00e5\b\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001"+ + "\t\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b"+ + "\u00f2\b\u000b\n\u000b\f\u000b\u00f5\t\u000b\u0001\u000b\u0003\u000b\u00f8"+ + "\b\u000b\u0001\f\u0001\f\u0001\f\u0003\f\u00fd\b\f\u0001\f\u0001\f\u0001"+ + "\f\u0001\f\u0001\f\u0003\f\u0104\b\f\u0003\f\u0106\b\f\u0001\r\u0001\r"+ + "\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010"+ + "\u0001\u0010\u0001\u0010\u0005\u0010\u0112\b\u0010\n\u0010\f\u0010\u0115"+ + "\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0003"+ + "\u0012\u011c\b\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u0120\b\u0012"+ + "\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0125\b\u0013\n\u0013"+ + "\f\u0013\u0128\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014"+ + "\u012d\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u0132\b"+ + "\u0015\n\u0015\f\u0015\u0135\t\u0015\u0001\u0016\u0001\u0016\u0001\u0016"+ + "\u0005\u0016\u013a\b\u0016\n\u0016\f\u0016\u013d\t\u0016\u0001\u0017\u0001"+ + "\u0017\u0001\u0017\u0005\u0017\u0142\b\u0017\n\u0017\f\u0017\u0145\t\u0017"+ + "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ + "\u0003\u0019\u014d\b\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u0151\b"+ + "\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u0155\b\u001b\u0001\u001c\u0001"+ + "\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u015b\b\u001c\u0001\u001d\u0001"+ + "\u001d\u0003\u001d\u015f\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+ + "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f\u0168\b\u001f\n"+ + "\u001f\f\u001f\u016b\t\u001f\u0001 \u0001 \u0003 \u016f\b \u0001 \u0001"+ + " \u0003 \u0173\b \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001#"+ + "\u0001#\u0001#\u0001#\u0005#\u017f\b#\n#\f#\u0182\t#\u0001$\u0001$\u0001"+ + "$\u0001$\u0001%\u0001%\u0001%\u0001%\u0003%\u018c\b%\u0001&\u0001&\u0001"+ + "&\u0001&\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0005(\u0198\b("+ + "\n(\f(\u019b\t(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001"+ + "+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001"+ + "-\u0003-\u01af\b-\u0001-\u0001-\u0001-\u0001-\u0005-\u01b5\b-\n-\f-\u01b8"+ + "\t-\u0003-\u01ba\b-\u0001.\u0001.\u0001.\u0003.\u01bf\b.\u0001.\u0001"+ + ".\u0001/\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u0003"+ + "0\u01cc\b0\u00011\u00011\u00011\u00011\u00031\u01d2\b1\u00011\u00011\u0001"+ + "1\u00011\u00011\u00031\u01d9\b1\u00012\u00012\u00012\u00013\u00013\u0001"+ + "3\u00014\u00044\u01e2\b4\u000b4\f4\u01e3\u00015\u00015\u00015\u00015\u0001"+ + "6\u00016\u00016\u00016\u00016\u00016\u00056\u01f0\b6\n6\f6\u01f3\t6\u0001"+ + "7\u00017\u00017\u00037\u01f8\b7\u00018\u00018\u00019\u00019\u00019\u0001"+ + "9\u00019\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ + ":\u0003:\u020a\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0005:\u0211\b:\n"+ + ":\f:\u0214\t:\u0001:\u0001:\u0001:\u0001:\u0001:\u0003:\u021b\b:\u0001"+ + ":\u0001:\u0001:\u0003:\u0220\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ + ":\u0005:\u0228\b:\n:\f:\u022b\t:\u0001;\u0001;\u0003;\u022f\b;\u0001;"+ + "\u0001;\u0001;\u0001;\u0001;\u0003;\u0236\b;\u0001;\u0001;\u0001;\u0003"+ + ";\u023b\b;\u0001<\u0001<\u0001<\u0003<\u0240\b<\u0001<\u0001<\u0001<\u0001"+ + "=\u0001=\u0001=\u0001=\u0001=\u0003=\u024a\b=\u0001>\u0001>\u0001>\u0001"+ + ">\u0003>\u0250\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0258"+ + "\b>\n>\f>\u025b\t>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001"+ + "?\u0003?\u0265\b?\u0001?\u0001?\u0001?\u0005?\u026a\b?\n?\f?\u026d\t?"+ + "\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u0275\b@\n@\f@\u0278"+ + "\t@\u0001@\u0001@\u0003@\u027c\b@\u0003@\u027e\b@\u0001@\u0001@\u0001"+ + "A\u0001A\u0001B\u0001B\u0001B\u0001B\u0005B\u0288\bB\nB\fB\u028b\tB\u0001"+ + "B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+ + "D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02a0"+ + "\bD\nD\fD\u02a3\tD\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02ab"+ + "\bD\nD\fD\u02ae\tD\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02b6"+ + "\bD\nD\fD\u02b9\tD\u0001D\u0001D\u0003D\u02bd\bD\u0001E\u0001E\u0001F"+ + "\u0001F\u0003F\u02c3\bF\u0001G\u0003G\u02c6\bG\u0001G\u0001G\u0001H\u0003"+ + "H\u02cb\bH\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001"+ + "K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0005M\u02de"+ + "\bM\nM\fM\u02e1\tM\u0001N\u0001N\u0001N\u0000\u0005\u0002lt|~O\u0000\u0002"+ "\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e"+ " \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ - "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u0000\t\u0002\u0000"+ - "44hh\u0001\u0000bc\u0002\u000099>>\u0002\u0000AADD\u0001\u0000TU\u0001"+ - "\u0000VX\u0002\u0000@@LL\u0002\u0000MMOS\u0002\u0000\u0013\u0013\u0015"+ - "\u0016\u02ee\u0000\u009a\u0001\u0000\u0000\u0000\u0002\u009d\u0001\u0000"+ - "\u0000\u0000\u0004\u00ae\u0001\u0000\u0000\u0000\u0006\u00c9\u0001\u0000"+ - "\u0000\u0000\b\u00cb\u0001\u0000\u0000\u0000\n\u00ce\u0001\u0000\u0000"+ - "\u0000\f\u00d0\u0001\u0000\u0000\u0000\u000e\u00d3\u0001\u0000\u0000\u0000"+ - "\u0010\u00de\u0001\u0000\u0000\u0000\u0012\u00e2\u0001\u0000\u0000\u0000"+ - "\u0014\u00e5\u0001\u0000\u0000\u0000\u0016\u00e8\u0001\u0000\u0000\u0000"+ - "\u0018\u00ff\u0001\u0000\u0000\u0000\u001a\u0101\u0001\u0000\u0000\u0000"+ - "\u001c\u0103\u0001\u0000\u0000\u0000\u001e\u0105\u0001\u0000\u0000\u0000"+ - " \u0107\u0001\u0000\u0000\u0000\"\u0110\u0001\u0000\u0000\u0000$\u0113"+ - "\u0001\u0000\u0000\u0000&\u011b\u0001\u0000\u0000\u0000(\u0123\u0001\u0000"+ - "\u0000\u0000*\u0128\u0001\u0000\u0000\u0000,\u0130\u0001\u0000\u0000\u0000"+ - ".\u0138\u0001\u0000\u0000\u00000\u0140\u0001\u0000\u0000\u00002\u0146"+ - "\u0001\u0000\u0000\u00004\u014a\u0001\u0000\u0000\u00006\u014e\u0001\u0000"+ - "\u0000\u00008\u0154\u0001\u0000\u0000\u0000:\u0156\u0001\u0000\u0000\u0000"+ - "<\u0159\u0001\u0000\u0000\u0000>\u0162\u0001\u0000\u0000\u0000@\u016a"+ - "\u0001\u0000\u0000\u0000B\u016d\u0001\u0000\u0000\u0000D\u0170\u0001\u0000"+ - "\u0000\u0000F\u0179\u0001\u0000\u0000\u0000H\u017d\u0001\u0000\u0000\u0000"+ - "J\u0183\u0001\u0000\u0000\u0000L\u0187\u0001\u0000\u0000\u0000N\u018a"+ - "\u0001\u0000\u0000\u0000P\u0192\u0001\u0000\u0000\u0000R\u0196\u0001\u0000"+ - "\u0000\u0000T\u0199\u0001\u0000\u0000\u0000V\u019d\u0001\u0000\u0000\u0000"+ - "X\u01a0\u0001\u0000\u0000\u0000Z\u01b4\u0001\u0000\u0000\u0000\\\u01b8"+ - "\u0001\u0000\u0000\u0000^\u01bd\u0001\u0000\u0000\u0000`\u01c3\u0001\u0000"+ - "\u0000\u0000b\u01d0\u0001\u0000\u0000\u0000d\u01d3\u0001\u0000\u0000\u0000"+ - "f\u01d7\u0001\u0000\u0000\u0000h\u01db\u0001\u0000\u0000\u0000j\u01df"+ - "\u0001\u0000\u0000\u0000l\u01ed\u0001\u0000\u0000\u0000n\u01ef\u0001\u0000"+ - "\u0000\u0000p\u020e\u0001\u0000\u0000\u0000r\u0229\u0001\u0000\u0000\u0000"+ - "t\u022b\u0001\u0000\u0000\u0000v\u0238\u0001\u0000\u0000\u0000x\u023e"+ - "\u0001\u0000\u0000\u0000z\u0253\u0001\u0000\u0000\u0000|\u025d\u0001\u0000"+ - "\u0000\u0000~\u0270\u0001\u0000\u0000\u0000\u0080\u0272\u0001\u0000\u0000"+ - "\u0000\u0082\u027d\u0001\u0000\u0000\u0000\u0084\u02ab\u0001\u0000\u0000"+ - "\u0000\u0086\u02ad\u0001\u0000\u0000\u0000\u0088\u02b1\u0001\u0000\u0000"+ - "\u0000\u008a\u02b4\u0001\u0000\u0000\u0000\u008c\u02b9\u0001\u0000\u0000"+ - "\u0000\u008e\u02bd\u0001\u0000\u0000\u0000\u0090\u02bf\u0001\u0000\u0000"+ - "\u0000\u0092\u02c1\u0001\u0000\u0000\u0000\u0094\u02c6\u0001\u0000\u0000"+ - "\u0000\u0096\u02c8\u0001\u0000\u0000\u0000\u0098\u02d1\u0001\u0000\u0000"+ - "\u0000\u009a\u009b\u0003\u0002\u0001\u0000\u009b\u009c\u0005\u0000\u0000"+ - "\u0001\u009c\u0001\u0001\u0000\u0000\u0000\u009d\u009e\u0006\u0001\uffff"+ - "\uffff\u0000\u009e\u009f\u0003\u0004\u0002\u0000\u009f\u00a5\u0001\u0000"+ - "\u0000\u0000\u00a0\u00a1\n\u0001\u0000\u0000\u00a1\u00a2\u00053\u0000"+ - "\u0000\u00a2\u00a4\u0003\u0006\u0003\u0000\u00a3\u00a0\u0001\u0000\u0000"+ - "\u0000\u00a4\u00a7\u0001\u0000\u0000\u0000\u00a5\u00a3\u0001\u0000\u0000"+ - "\u0000\u00a5\u00a6\u0001\u0000\u0000\u0000\u00a6\u0003\u0001\u0000\u0000"+ - "\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000\u00a8\u00af\u0003R)\u0000\u00a9"+ - "\u00af\u0003\u0012\t\u0000\u00aa\u00af\u0003\f\u0006\u0000\u00ab\u00af"+ - "\u0003V+\u0000\u00ac\u00ad\u0004\u0002\u0001\u0000\u00ad\u00af\u0003\u0014"+ - "\n\u0000\u00ae\u00a8\u0001\u0000\u0000\u0000\u00ae\u00a9\u0001\u0000\u0000"+ - "\u0000\u00ae\u00aa\u0001\u0000\u0000\u0000\u00ae\u00ab\u0001\u0000\u0000"+ - "\u0000\u00ae\u00ac\u0001\u0000\u0000\u0000\u00af\u0005\u0001\u0000\u0000"+ - "\u0000\u00b0\u00ca\u0003\"\u0011\u0000\u00b1\u00ca\u0003\b\u0004\u0000"+ - "\u00b2\u00ca\u0003@ \u0000\u00b3\u00ca\u0003:\u001d\u0000\u00b4\u00ca"+ - "\u0003$\u0012\u0000\u00b5\u00ca\u0003<\u001e\u0000\u00b6\u00ca\u0003B"+ - "!\u0000\u00b7\u00ca\u0003D\"\u0000\u00b8\u00ca\u0003H$\u0000\u00b9\u00ca"+ - "\u0003J%\u0000\u00ba\u00ca\u0003X,\u0000\u00bb\u00ca\u0003L&\u0000\u00bc"+ - "\u00ca\u0003\u0092I\u0000\u00bd\u00be\u0004\u0003\u0002\u0000\u00be\u00ca"+ - "\u0003^/\u0000\u00bf\u00c0\u0004\u0003\u0003\u0000\u00c0\u00ca\u0003\\"+ - ".\u0000\u00c1\u00c2\u0004\u0003\u0004\u0000\u00c2\u00ca\u0003`0\u0000"+ - "\u00c3\u00c4\u0004\u0003\u0005\u0000\u00c4\u00ca\u0003b1\u0000\u00c5\u00c6"+ - "\u0004\u0003\u0006\u0000\u00c6\u00ca\u0003d2\u0000\u00c7\u00c8\u0004\u0003"+ - "\u0007\u0000\u00c8\u00ca\u0003n7\u0000\u00c9\u00b0\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b1\u0001\u0000\u0000\u0000\u00c9\u00b2\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b3\u0001\u0000\u0000\u0000\u00c9\u00b4\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b5\u0001\u0000\u0000\u0000\u00c9\u00b6\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b7\u0001\u0000\u0000\u0000\u00c9\u00b8\u0001\u0000\u0000\u0000"+ - "\u00c9\u00b9\u0001\u0000\u0000\u0000\u00c9\u00ba\u0001\u0000\u0000\u0000"+ - "\u00c9\u00bb\u0001\u0000\u0000\u0000\u00c9\u00bc\u0001\u0000\u0000\u0000"+ - "\u00c9\u00bd\u0001\u0000\u0000\u0000\u00c9\u00bf\u0001\u0000\u0000\u0000"+ - "\u00c9\u00c1\u0001\u0000\u0000\u0000\u00c9\u00c3\u0001\u0000\u0000\u0000"+ - "\u00c9\u00c5\u0001\u0000\u0000\u0000\u00c9\u00c7\u0001\u0000\u0000\u0000"+ - "\u00ca\u0007\u0001\u0000\u0000\u0000\u00cb\u00cc\u0005\u000e\u0000\u0000"+ - "\u00cc\u00cd\u0003p8\u0000\u00cd\t\u0001\u0000\u0000\u0000\u00ce\u00cf"+ - "\u00030\u0018\u0000\u00cf\u000b\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005"+ - "\u000b\u0000\u0000\u00d1\u00d2\u0003\u000e\u0007\u0000\u00d2\r\u0001\u0000"+ - "\u0000\u0000\u00d3\u00d8\u0003\u0010\b\u0000\u00d4\u00d5\u0005=\u0000"+ - "\u0000\u00d5\u00d7\u0003\u0010\b\u0000\u00d6\u00d4\u0001\u0000\u0000\u0000"+ - "\u00d7\u00da\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000\u0000"+ - "\u00d8\u00d9\u0001\u0000\u0000\u0000\u00d9\u000f\u0001\u0000\u0000\u0000"+ - "\u00da\u00d8\u0001\u0000\u0000\u0000\u00db\u00dc\u0003*\u0015\u0000\u00dc"+ - "\u00dd\u0005:\u0000\u0000\u00dd\u00df\u0001\u0000\u0000\u0000\u00de\u00db"+ - "\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df\u00e0"+ - "\u0001\u0000\u0000\u0000\u00e0\u00e1\u0003p8\u0000\u00e1\u0011\u0001\u0000"+ - "\u0000\u0000\u00e2\u00e3\u0005\u0010\u0000\u0000\u00e3\u00e4\u0003\u0016"+ - "\u000b\u0000\u00e4\u0013\u0001\u0000\u0000\u0000\u00e5\u00e6\u0005\u0011"+ - "\u0000\u0000\u00e6\u00e7\u0003\u0016\u000b\u0000\u00e7\u0015\u0001\u0000"+ - "\u0000\u0000\u00e8\u00ed\u0003\u0018\f\u0000\u00e9\u00ea\u0005=\u0000"+ - "\u0000\u00ea\u00ec\u0003\u0018\f\u0000\u00eb\u00e9\u0001\u0000\u0000\u0000"+ - "\u00ec\u00ef\u0001\u0000\u0000\u0000\u00ed\u00eb\u0001\u0000\u0000\u0000"+ - "\u00ed\u00ee\u0001\u0000\u0000\u0000\u00ee\u00f1\u0001\u0000\u0000\u0000"+ - "\u00ef\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003 \u0010\u0000\u00f1"+ - "\u00f0\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2"+ - "\u0017\u0001\u0000\u0000\u0000\u00f3\u00f4\u0003\u001a\r\u0000\u00f4\u00f5"+ - "\u0005<\u0000\u0000\u00f5\u00f7\u0001\u0000\u0000\u0000\u00f6\u00f3\u0001"+ - "\u0000\u0000\u0000\u00f6\u00f7\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001"+ - "\u0000\u0000\u0000\u00f8\u0100\u0003\u001e\u000f\u0000\u00f9\u00fa\u0004"+ - "\f\b\u0000\u00fa\u00fd\u0003\u001e\u000f\u0000\u00fb\u00fc\u0005;\u0000"+ - "\u0000\u00fc\u00fe\u0003\u001c\u000e\u0000\u00fd\u00fb\u0001\u0000\u0000"+ - "\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0100\u0001\u0000\u0000"+ - "\u0000\u00ff\u00f6\u0001\u0000\u0000\u0000\u00ff\u00f9\u0001\u0000\u0000"+ - "\u0000\u0100\u0019\u0001\u0000\u0000\u0000\u0101\u0102\u0007\u0000\u0000"+ - "\u0000\u0102\u001b\u0001\u0000\u0000\u0000\u0103\u0104\u0007\u0000\u0000"+ - "\u0000\u0104\u001d\u0001\u0000\u0000\u0000\u0105\u0106\u0007\u0000\u0000"+ - "\u0000\u0106\u001f\u0001\u0000\u0000\u0000\u0107\u0108\u0005g\u0000\u0000"+ - "\u0108\u010d\u0005h\u0000\u0000\u0109\u010a\u0005=\u0000\u0000\u010a\u010c"+ - "\u0005h\u0000\u0000\u010b\u0109\u0001\u0000\u0000\u0000\u010c\u010f\u0001"+ - "\u0000\u0000\u0000\u010d\u010b\u0001\u0000\u0000\u0000\u010d\u010e\u0001"+ - "\u0000\u0000\u0000\u010e!\u0001\u0000\u0000\u0000\u010f\u010d\u0001\u0000"+ - "\u0000\u0000\u0110\u0111\u0005\b\u0000\u0000\u0111\u0112\u0003\u000e\u0007"+ - "\u0000\u0112#\u0001\u0000\u0000\u0000\u0113\u0115\u0005\r\u0000\u0000"+ - "\u0114\u0116\u0003&\u0013\u0000\u0115\u0114\u0001\u0000\u0000\u0000\u0115"+ - "\u0116\u0001\u0000\u0000\u0000\u0116\u0119\u0001\u0000\u0000\u0000\u0117"+ - "\u0118\u00057\u0000\u0000\u0118\u011a\u0003\u000e\u0007\u0000\u0119\u0117"+ - "\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a%\u0001"+ - "\u0000\u0000\u0000\u011b\u0120\u0003(\u0014\u0000\u011c\u011d\u0005=\u0000"+ - "\u0000\u011d\u011f\u0003(\u0014\u0000\u011e\u011c\u0001\u0000\u0000\u0000"+ - "\u011f\u0122\u0001\u0000\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000"+ - "\u0120\u0121\u0001\u0000\u0000\u0000\u0121\'\u0001\u0000\u0000\u0000\u0122"+ - "\u0120\u0001\u0000\u0000\u0000\u0123\u0126\u0003\u0010\b\u0000\u0124\u0125"+ - "\u0005\u000e\u0000\u0000\u0125\u0127\u0003p8\u0000\u0126\u0124\u0001\u0000"+ - "\u0000\u0000\u0126\u0127\u0001\u0000\u0000\u0000\u0127)\u0001\u0000\u0000"+ - "\u0000\u0128\u012d\u00038\u001c\u0000\u0129\u012a\u0005?\u0000\u0000\u012a"+ - "\u012c\u00038\u001c\u0000\u012b\u0129\u0001\u0000\u0000\u0000\u012c\u012f"+ - "\u0001\u0000\u0000\u0000\u012d\u012b\u0001\u0000\u0000\u0000\u012d\u012e"+ - "\u0001\u0000\u0000\u0000\u012e+\u0001\u0000\u0000\u0000\u012f\u012d\u0001"+ - "\u0000\u0000\u0000\u0130\u0135\u00032\u0019\u0000\u0131\u0132\u0005?\u0000"+ - "\u0000\u0132\u0134\u00032\u0019\u0000\u0133\u0131\u0001\u0000\u0000\u0000"+ - "\u0134\u0137\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000"+ - "\u0135\u0136\u0001\u0000\u0000\u0000\u0136-\u0001\u0000\u0000\u0000\u0137"+ - "\u0135\u0001\u0000\u0000\u0000\u0138\u013d\u0003,\u0016\u0000\u0139\u013a"+ - "\u0005=\u0000\u0000\u013a\u013c\u0003,\u0016\u0000\u013b\u0139\u0001\u0000"+ - "\u0000\u0000\u013c\u013f\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000"+ - "\u0000\u0000\u013d\u013e\u0001\u0000\u0000\u0000\u013e/\u0001\u0000\u0000"+ - "\u0000\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0141\u0007\u0001\u0000"+ - "\u0000\u01411\u0001\u0000\u0000\u0000\u0142\u0147\u0005}\u0000\u0000\u0143"+ - "\u0147\u00034\u001a\u0000\u0144\u0145\u0004\u0019\t\u0000\u0145\u0147"+ - "\u00036\u001b\u0000\u0146\u0142\u0001\u0000\u0000\u0000\u0146\u0143\u0001"+ - "\u0000\u0000\u0000\u0146\u0144\u0001\u0000\u0000\u0000\u01473\u0001\u0000"+ - "\u0000\u0000\u0148\u014b\u0005J\u0000\u0000\u0149\u014b\u0005\\\u0000"+ - "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a\u0149\u0001\u0000\u0000"+ - "\u0000\u014b5\u0001\u0000\u0000\u0000\u014c\u014f\u0005[\u0000\u0000\u014d"+ - "\u014f\u0005]\u0000\u0000\u014e\u014c\u0001\u0000\u0000\u0000\u014e\u014d"+ - "\u0001\u0000\u0000\u0000\u014f7\u0001\u0000\u0000\u0000\u0150\u0155\u0003"+ - "0\u0018\u0000\u0151\u0155\u00034\u001a\u0000\u0152\u0153\u0004\u001c\n"+ - "\u0000\u0153\u0155\u00036\u001b\u0000\u0154\u0150\u0001\u0000\u0000\u0000"+ - "\u0154\u0151\u0001\u0000\u0000\u0000\u0154\u0152\u0001\u0000\u0000\u0000"+ - "\u01559\u0001\u0000\u0000\u0000\u0156\u0157\u0005\n\u0000\u0000\u0157"+ - "\u0158\u00055\u0000\u0000\u0158;\u0001\u0000\u0000\u0000\u0159\u015a\u0005"+ - "\f\u0000\u0000\u015a\u015f\u0003>\u001f\u0000\u015b\u015c\u0005=\u0000"+ - "\u0000\u015c\u015e\u0003>\u001f\u0000\u015d\u015b\u0001\u0000\u0000\u0000"+ - "\u015e\u0161\u0001\u0000\u0000\u0000\u015f\u015d\u0001\u0000\u0000\u0000"+ - "\u015f\u0160\u0001\u0000\u0000\u0000\u0160=\u0001\u0000\u0000\u0000\u0161"+ - "\u015f\u0001\u0000\u0000\u0000\u0162\u0164\u0003p8\u0000\u0163\u0165\u0007"+ - "\u0002\u0000\u0000\u0164\u0163\u0001\u0000\u0000\u0000\u0164\u0165\u0001"+ - "\u0000\u0000\u0000\u0165\u0168\u0001\u0000\u0000\u0000\u0166\u0167\u0005"+ - "H\u0000\u0000\u0167\u0169\u0007\u0003\u0000\u0000\u0168\u0166\u0001\u0000"+ - "\u0000\u0000\u0168\u0169\u0001\u0000\u0000\u0000\u0169?\u0001\u0000\u0000"+ - "\u0000\u016a\u016b\u0005\u001a\u0000\u0000\u016b\u016c\u0003.\u0017\u0000"+ - "\u016cA\u0001\u0000\u0000\u0000\u016d\u016e\u0005\u0019\u0000\u0000\u016e"+ - "\u016f\u0003.\u0017\u0000\u016fC\u0001\u0000\u0000\u0000\u0170\u0171\u0005"+ - "\u001d\u0000\u0000\u0171\u0176\u0003F#\u0000\u0172\u0173\u0005=\u0000"+ - "\u0000\u0173\u0175\u0003F#\u0000\u0174\u0172\u0001\u0000\u0000\u0000\u0175"+ - "\u0178\u0001\u0000\u0000\u0000\u0176\u0174\u0001\u0000\u0000\u0000\u0176"+ - "\u0177\u0001\u0000\u0000\u0000\u0177E\u0001\u0000\u0000\u0000\u0178\u0176"+ - "\u0001\u0000\u0000\u0000\u0179\u017a\u0003,\u0016\u0000\u017a\u017b\u0005"+ - "\u0081\u0000\u0000\u017b\u017c\u0003,\u0016\u0000\u017cG\u0001\u0000\u0000"+ - "\u0000\u017d\u017e\u0005\u0007\u0000\u0000\u017e\u017f\u0003z=\u0000\u017f"+ - "\u0181\u0003\u008eG\u0000\u0180\u0182\u0003N\'\u0000\u0181\u0180\u0001"+ - "\u0000\u0000\u0000\u0181\u0182\u0001\u0000\u0000\u0000\u0182I\u0001\u0000"+ - "\u0000\u0000\u0183\u0184\u0005\t\u0000\u0000\u0184\u0185\u0003z=\u0000"+ - "\u0185\u0186\u0003\u008eG\u0000\u0186K\u0001\u0000\u0000\u0000\u0187\u0188"+ - "\u0005\u0018\u0000\u0000\u0188\u0189\u0003*\u0015\u0000\u0189M\u0001\u0000"+ - "\u0000\u0000\u018a\u018f\u0003P(\u0000\u018b\u018c\u0005=\u0000\u0000"+ - "\u018c\u018e\u0003P(\u0000\u018d\u018b\u0001\u0000\u0000\u0000\u018e\u0191"+ - "\u0001\u0000\u0000\u0000\u018f\u018d\u0001\u0000\u0000\u0000\u018f\u0190"+ - "\u0001\u0000\u0000\u0000\u0190O\u0001\u0000\u0000\u0000\u0191\u018f\u0001"+ - "\u0000\u0000\u0000\u0192\u0193\u00030\u0018\u0000\u0193\u0194\u0005:\u0000"+ - "\u0000\u0194\u0195\u0003\u0084B\u0000\u0195Q\u0001\u0000\u0000\u0000\u0196"+ - "\u0197\u0005\u0006\u0000\u0000\u0197\u0198\u0003T*\u0000\u0198S\u0001"+ - "\u0000\u0000\u0000\u0199\u019a\u0005^\u0000\u0000\u019a\u019b\u0003\u0002"+ - "\u0001\u0000\u019b\u019c\u0005_\u0000\u0000\u019cU\u0001\u0000\u0000\u0000"+ - "\u019d\u019e\u0005\u001e\u0000\u0000\u019e\u019f\u0005\u0085\u0000\u0000"+ - "\u019fW\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005\u0005\u0000\u0000\u01a1"+ - "\u01a4\u0005%\u0000\u0000\u01a2\u01a3\u0005#\u0000\u0000\u01a3\u01a5\u0003"+ - ",\u0016\u0000\u01a4\u01a2\u0001\u0000\u0000\u0000\u01a4\u01a5\u0001\u0000"+ - "\u0000\u0000\u01a5\u01af\u0001\u0000\u0000\u0000\u01a6\u01a7\u0005$\u0000"+ - "\u0000\u01a7\u01ac\u0003Z-\u0000\u01a8\u01a9\u0005=\u0000\u0000\u01a9"+ - "\u01ab\u0003Z-\u0000\u01aa\u01a8\u0001\u0000\u0000\u0000\u01ab\u01ae\u0001"+ - "\u0000\u0000\u0000\u01ac\u01aa\u0001\u0000\u0000\u0000\u01ac\u01ad\u0001"+ - "\u0000\u0000\u0000\u01ad\u01b0\u0001\u0000\u0000\u0000\u01ae\u01ac\u0001"+ - "\u0000\u0000\u0000\u01af\u01a6\u0001\u0000\u0000\u0000\u01af\u01b0\u0001"+ - "\u0000\u0000\u0000\u01b0Y\u0001\u0000\u0000\u0000\u01b1\u01b2\u0003,\u0016"+ - "\u0000\u01b2\u01b3\u0005:\u0000\u0000\u01b3\u01b5\u0001\u0000\u0000\u0000"+ - "\u01b4\u01b1\u0001\u0000\u0000\u0000\u01b4\u01b5\u0001\u0000\u0000\u0000"+ - "\u01b5\u01b6\u0001\u0000\u0000\u0000\u01b6\u01b7\u0003,\u0016\u0000\u01b7"+ - "[\u0001\u0000\u0000\u0000\u01b8\u01b9\u0005\u0017\u0000\u0000\u01b9\u01ba"+ - "\u0003\u0018\f\u0000\u01ba\u01bb\u0005#\u0000\u0000\u01bb\u01bc\u0003"+ - ".\u0017\u0000\u01bc]\u0001\u0000\u0000\u0000\u01bd\u01be\u0005\u000f\u0000"+ - "\u0000\u01be\u01c1\u0003&\u0013\u0000\u01bf\u01c0\u00057\u0000\u0000\u01c0"+ - "\u01c2\u0003\u000e\u0007\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c1"+ - "\u01c2\u0001\u0000\u0000\u0000\u01c2_\u0001\u0000\u0000\u0000\u01c3\u01c4"+ - "\u0005\u0004\u0000\u0000\u01c4\u01c7\u0003*\u0015\u0000\u01c5\u01c6\u0005"+ - "#\u0000\u0000\u01c6\u01c8\u0003*\u0015\u0000\u01c7\u01c5\u0001\u0000\u0000"+ - "\u0000\u01c7\u01c8\u0001\u0000\u0000\u0000\u01c8\u01ce\u0001\u0000\u0000"+ - "\u0000\u01c9\u01ca\u0005\u0081\u0000\u0000\u01ca\u01cb\u0003*\u0015\u0000"+ - "\u01cb\u01cc\u0005=\u0000\u0000\u01cc\u01cd\u0003*\u0015\u0000\u01cd\u01cf"+ - "\u0001\u0000\u0000\u0000\u01ce\u01c9\u0001\u0000\u0000\u0000\u01ce\u01cf"+ - "\u0001\u0000\u0000\u0000\u01cfa\u0001\u0000\u0000\u0000\u01d0\u01d1\u0005"+ - "\u001b\u0000\u0000\u01d1\u01d2\u0003.\u0017\u0000\u01d2c\u0001\u0000\u0000"+ - "\u0000\u01d3\u01d4\u0005\u0012\u0000\u0000\u01d4\u01d5\u0003f3\u0000\u01d5"+ - "e\u0001\u0000\u0000\u0000\u01d6\u01d8\u0003h4\u0000\u01d7\u01d6\u0001"+ - "\u0000\u0000\u0000\u01d8\u01d9\u0001\u0000\u0000\u0000\u01d9\u01d7\u0001"+ - "\u0000\u0000\u0000\u01d9\u01da\u0001\u0000\u0000\u0000\u01dag\u0001\u0000"+ - "\u0000\u0000\u01db\u01dc\u0005`\u0000\u0000\u01dc\u01dd\u0003j5\u0000"+ - "\u01dd\u01de\u0005a\u0000\u0000\u01dei\u0001\u0000\u0000\u0000\u01df\u01e0"+ - "\u00065\uffff\uffff\u0000\u01e0\u01e1\u0003l6\u0000\u01e1\u01e7\u0001"+ - "\u0000\u0000\u0000\u01e2\u01e3\n\u0001\u0000\u0000\u01e3\u01e4\u00053"+ - "\u0000\u0000\u01e4\u01e6\u0003l6\u0000\u01e5\u01e2\u0001\u0000\u0000\u0000"+ - "\u01e6\u01e9\u0001\u0000\u0000\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000"+ - "\u01e7\u01e8\u0001\u0000\u0000\u0000\u01e8k\u0001\u0000\u0000\u0000\u01e9"+ - "\u01e7\u0001\u0000\u0000\u0000\u01ea\u01ee\u0003\b\u0004\u0000\u01eb\u01ee"+ - "\u0003<\u001e\u0000\u01ec\u01ee\u0003:\u001d\u0000\u01ed\u01ea\u0001\u0000"+ - "\u0000\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ed\u01ec\u0001\u0000"+ - "\u0000\u0000\u01eem\u0001\u0000\u0000\u0000\u01ef\u01f0\u0005\u001c\u0000"+ - "\u0000\u01f0o\u0001\u0000\u0000\u0000\u01f1\u01f2\u00068\uffff\uffff\u0000"+ - "\u01f2\u01f3\u0005F\u0000\u0000\u01f3\u020f\u0003p8\b\u01f4\u020f\u0003"+ - "v;\u0000\u01f5\u020f\u0003r9\u0000\u01f6\u01f8\u0003v;\u0000\u01f7\u01f9"+ - "\u0005F\u0000\u0000\u01f8\u01f7\u0001\u0000\u0000\u0000\u01f8\u01f9\u0001"+ - "\u0000\u0000\u0000\u01f9\u01fa\u0001\u0000\u0000\u0000\u01fa\u01fb\u0005"+ - "B\u0000\u0000\u01fb\u01fc\u0005`\u0000\u0000\u01fc\u0201\u0003v;\u0000"+ - "\u01fd\u01fe\u0005=\u0000\u0000\u01fe\u0200\u0003v;\u0000\u01ff\u01fd"+ - "\u0001\u0000\u0000\u0000\u0200\u0203\u0001\u0000\u0000\u0000\u0201\u01ff"+ - "\u0001\u0000\u0000\u0000\u0201\u0202\u0001\u0000\u0000\u0000\u0202\u0204"+ - "\u0001\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0204\u0205"+ - "\u0005a\u0000\u0000\u0205\u020f\u0001\u0000\u0000\u0000\u0206\u0207\u0003"+ - "v;\u0000\u0207\u0209\u0005C\u0000\u0000\u0208\u020a\u0005F\u0000\u0000"+ - "\u0209\u0208\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000\u0000\u0000"+ - "\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0005G\u0000\u0000\u020c"+ - "\u020f\u0001\u0000\u0000\u0000\u020d\u020f\u0003t:\u0000\u020e\u01f1\u0001"+ - "\u0000\u0000\u0000\u020e\u01f4\u0001\u0000\u0000\u0000\u020e\u01f5\u0001"+ - "\u0000\u0000\u0000\u020e\u01f6\u0001\u0000\u0000\u0000\u020e\u0206\u0001"+ - "\u0000\u0000\u0000\u020e\u020d\u0001\u0000\u0000\u0000\u020f\u0218\u0001"+ - "\u0000\u0000\u0000\u0210\u0211\n\u0005\u0000\u0000\u0211\u0212\u00058"+ - "\u0000\u0000\u0212\u0217\u0003p8\u0006\u0213\u0214\n\u0004\u0000\u0000"+ - "\u0214\u0215\u0005I\u0000\u0000\u0215\u0217\u0003p8\u0005\u0216\u0210"+ - "\u0001\u0000\u0000\u0000\u0216\u0213\u0001\u0000\u0000\u0000\u0217\u021a"+ - "\u0001\u0000\u0000\u0000\u0218\u0216\u0001\u0000\u0000\u0000\u0218\u0219"+ - "\u0001\u0000\u0000\u0000\u0219q\u0001\u0000\u0000\u0000\u021a\u0218\u0001"+ - "\u0000\u0000\u0000\u021b\u021d\u0003v;\u0000\u021c\u021e\u0005F\u0000"+ - "\u0000\u021d\u021c\u0001\u0000\u0000\u0000\u021d\u021e\u0001\u0000\u0000"+ - "\u0000\u021e\u021f\u0001\u0000\u0000\u0000\u021f\u0220\u0005E\u0000\u0000"+ - "\u0220\u0221\u0003\u008eG\u0000\u0221\u022a\u0001\u0000\u0000\u0000\u0222"+ - "\u0224\u0003v;\u0000\u0223\u0225\u0005F\u0000\u0000\u0224\u0223\u0001"+ - "\u0000\u0000\u0000\u0224\u0225\u0001\u0000\u0000\u0000\u0225\u0226\u0001"+ - "\u0000\u0000\u0000\u0226\u0227\u0005K\u0000\u0000\u0227\u0228\u0003\u008e"+ - "G\u0000\u0228\u022a\u0001\u0000\u0000\u0000\u0229\u021b\u0001\u0000\u0000"+ - "\u0000\u0229\u0222\u0001\u0000\u0000\u0000\u022as\u0001\u0000\u0000\u0000"+ - "\u022b\u022e\u0003*\u0015\u0000\u022c\u022d\u0005;\u0000\u0000\u022d\u022f"+ - "\u0003\n\u0005\u0000\u022e\u022c\u0001\u0000\u0000\u0000\u022e\u022f\u0001"+ - "\u0000\u0000\u0000\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0005"+ - "<\u0000\u0000\u0231\u0232\u0003\u0084B\u0000\u0232u\u0001\u0000\u0000"+ - "\u0000\u0233\u0239\u0003x<\u0000\u0234\u0235\u0003x<\u0000\u0235\u0236"+ - "\u0003\u0090H\u0000\u0236\u0237\u0003x<\u0000\u0237\u0239\u0001\u0000"+ - "\u0000\u0000\u0238\u0233\u0001\u0000\u0000\u0000\u0238\u0234\u0001\u0000"+ - "\u0000\u0000\u0239w\u0001\u0000\u0000\u0000\u023a\u023b\u0006<\uffff\uffff"+ - "\u0000\u023b\u023f\u0003z=\u0000\u023c\u023d\u0007\u0004\u0000\u0000\u023d"+ - "\u023f\u0003x<\u0003\u023e\u023a\u0001\u0000\u0000\u0000\u023e\u023c\u0001"+ - "\u0000\u0000\u0000\u023f\u0248\u0001\u0000\u0000\u0000\u0240\u0241\n\u0002"+ - "\u0000\u0000\u0241\u0242\u0007\u0005\u0000\u0000\u0242\u0247\u0003x<\u0003"+ - "\u0243\u0244\n\u0001\u0000\u0000\u0244\u0245\u0007\u0004\u0000\u0000\u0245"+ - "\u0247\u0003x<\u0002\u0246\u0240\u0001\u0000\u0000\u0000\u0246\u0243\u0001"+ - "\u0000\u0000\u0000\u0247\u024a\u0001\u0000\u0000\u0000\u0248\u0246\u0001"+ - "\u0000\u0000\u0000\u0248\u0249\u0001\u0000\u0000\u0000\u0249y\u0001\u0000"+ - "\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024b\u024c\u0006=\uffff"+ - "\uffff\u0000\u024c\u0254\u0003\u0084B\u0000\u024d\u0254\u0003*\u0015\u0000"+ - "\u024e\u0254\u0003|>\u0000\u024f\u0250\u0005`\u0000\u0000\u0250\u0251"+ - "\u0003p8\u0000\u0251\u0252\u0005a\u0000\u0000\u0252\u0254\u0001\u0000"+ - "\u0000\u0000\u0253\u024b\u0001\u0000\u0000\u0000\u0253\u024d\u0001\u0000"+ - "\u0000\u0000\u0253\u024e\u0001\u0000\u0000\u0000\u0253\u024f\u0001\u0000"+ - "\u0000\u0000\u0254\u025a\u0001\u0000\u0000\u0000\u0255\u0256\n\u0001\u0000"+ - "\u0000\u0256\u0257\u0005;\u0000\u0000\u0257\u0259\u0003\n\u0005\u0000"+ - "\u0258\u0255\u0001\u0000\u0000\u0000\u0259\u025c\u0001\u0000\u0000\u0000"+ - "\u025a\u0258\u0001\u0000\u0000\u0000\u025a\u025b\u0001\u0000\u0000\u0000"+ - "\u025b{\u0001\u0000\u0000\u0000\u025c\u025a\u0001\u0000\u0000\u0000\u025d"+ - "\u025e\u0003~?\u0000\u025e\u026c\u0005`\u0000\u0000\u025f\u026d\u0005"+ - "V\u0000\u0000\u0260\u0265\u0003p8\u0000\u0261\u0262\u0005=\u0000\u0000"+ - "\u0262\u0264\u0003p8\u0000\u0263\u0261\u0001\u0000\u0000\u0000\u0264\u0267"+ - "\u0001\u0000\u0000\u0000\u0265\u0263\u0001\u0000\u0000\u0000\u0265\u0266"+ - "\u0001\u0000\u0000\u0000\u0266\u026a\u0001\u0000\u0000\u0000\u0267\u0265"+ - "\u0001\u0000\u0000\u0000\u0268\u0269\u0005=\u0000\u0000\u0269\u026b\u0003"+ - "\u0080@\u0000\u026a\u0268\u0001\u0000\u0000\u0000\u026a\u026b\u0001\u0000"+ - "\u0000\u0000\u026b\u026d\u0001\u0000\u0000\u0000\u026c\u025f\u0001\u0000"+ - "\u0000\u0000\u026c\u0260\u0001\u0000\u0000\u0000\u026c\u026d\u0001\u0000"+ - "\u0000\u0000\u026d\u026e\u0001\u0000\u0000\u0000\u026e\u026f\u0005a\u0000"+ - "\u0000\u026f}\u0001\u0000\u0000\u0000\u0270\u0271\u00038\u001c\u0000\u0271"+ - "\u007f\u0001\u0000\u0000\u0000\u0272\u0273\u0005Y\u0000\u0000\u0273\u0278"+ - "\u0003\u0082A\u0000\u0274\u0275\u0005=\u0000\u0000\u0275\u0277\u0003\u0082"+ - "A\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0277\u027a\u0001\u0000\u0000"+ - "\u0000\u0278\u0276\u0001\u0000\u0000\u0000\u0278\u0279\u0001\u0000\u0000"+ - "\u0000\u0279\u027b\u0001\u0000\u0000\u0000\u027a\u0278\u0001\u0000\u0000"+ - "\u0000\u027b\u027c\u0005Z\u0000\u0000\u027c\u0081\u0001\u0000\u0000\u0000"+ - "\u027d\u027e\u0003\u008eG\u0000\u027e\u027f\u0005<\u0000\u0000\u027f\u0280"+ - "\u0003\u0084B\u0000\u0280\u0083\u0001\u0000\u0000\u0000\u0281\u02ac\u0005"+ - "G\u0000\u0000\u0282\u0283\u0003\u008cF\u0000\u0283\u0284\u0005b\u0000"+ - "\u0000\u0284\u02ac\u0001\u0000\u0000\u0000\u0285\u02ac\u0003\u008aE\u0000"+ - "\u0286\u02ac\u0003\u008cF\u0000\u0287\u02ac\u0003\u0086C\u0000\u0288\u02ac"+ - "\u00034\u001a\u0000\u0289\u02ac\u0003\u008eG\u0000\u028a\u028b\u0005^"+ - "\u0000\u0000\u028b\u0290\u0003\u0088D\u0000\u028c\u028d\u0005=\u0000\u0000"+ - "\u028d\u028f\u0003\u0088D\u0000\u028e\u028c\u0001\u0000\u0000\u0000\u028f"+ - "\u0292\u0001\u0000\u0000\u0000\u0290\u028e\u0001\u0000\u0000\u0000\u0290"+ - "\u0291\u0001\u0000\u0000\u0000\u0291\u0293\u0001\u0000\u0000\u0000\u0292"+ - "\u0290\u0001\u0000\u0000\u0000\u0293\u0294\u0005_\u0000\u0000\u0294\u02ac"+ - "\u0001\u0000\u0000\u0000\u0295\u0296\u0005^\u0000\u0000\u0296\u029b\u0003"+ - "\u0086C\u0000\u0297\u0298\u0005=\u0000\u0000\u0298\u029a\u0003\u0086C"+ - "\u0000\u0299\u0297\u0001\u0000\u0000\u0000\u029a\u029d\u0001\u0000\u0000"+ - "\u0000\u029b\u0299\u0001\u0000\u0000\u0000\u029b\u029c\u0001\u0000\u0000"+ - "\u0000\u029c\u029e\u0001\u0000\u0000\u0000\u029d\u029b\u0001\u0000\u0000"+ - "\u0000\u029e\u029f\u0005_\u0000\u0000\u029f\u02ac\u0001\u0000\u0000\u0000"+ - "\u02a0\u02a1\u0005^\u0000\u0000\u02a1\u02a6\u0003\u008eG\u0000\u02a2\u02a3"+ - "\u0005=\u0000\u0000\u02a3\u02a5\u0003\u008eG\u0000\u02a4\u02a2\u0001\u0000"+ - "\u0000\u0000\u02a5\u02a8\u0001\u0000\u0000\u0000\u02a6\u02a4\u0001\u0000"+ - "\u0000\u0000\u02a6\u02a7\u0001\u0000\u0000\u0000\u02a7\u02a9\u0001\u0000"+ - "\u0000\u0000\u02a8\u02a6\u0001\u0000\u0000\u0000\u02a9\u02aa\u0005_\u0000"+ - "\u0000\u02aa\u02ac\u0001\u0000\u0000\u0000\u02ab\u0281\u0001\u0000\u0000"+ - "\u0000\u02ab\u0282\u0001\u0000\u0000\u0000\u02ab\u0285\u0001\u0000\u0000"+ - "\u0000\u02ab\u0286\u0001\u0000\u0000\u0000\u02ab\u0287\u0001\u0000\u0000"+ - "\u0000\u02ab\u0288\u0001\u0000\u0000\u0000\u02ab\u0289\u0001\u0000\u0000"+ - "\u0000\u02ab\u028a\u0001\u0000\u0000\u0000\u02ab\u0295\u0001\u0000\u0000"+ - "\u0000\u02ab\u02a0\u0001\u0000\u0000\u0000\u02ac\u0085\u0001\u0000\u0000"+ - "\u0000\u02ad\u02ae\u0007\u0006\u0000\u0000\u02ae\u0087\u0001\u0000\u0000"+ - "\u0000\u02af\u02b2\u0003\u008aE\u0000\u02b0\u02b2\u0003\u008cF\u0000\u02b1"+ - "\u02af\u0001\u0000\u0000\u0000\u02b1\u02b0\u0001\u0000\u0000\u0000\u02b2"+ - "\u0089\u0001\u0000\u0000\u0000\u02b3\u02b5\u0007\u0004\u0000\u0000\u02b4"+ - "\u02b3\u0001\u0000\u0000\u0000\u02b4\u02b5\u0001\u0000\u0000\u0000\u02b5"+ - "\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7\u00056\u0000\u0000\u02b7\u008b"+ - "\u0001\u0000\u0000\u0000\u02b8\u02ba\u0007\u0004\u0000\u0000\u02b9\u02b8"+ - "\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000\u02ba\u02bb"+ - "\u0001\u0000\u0000\u0000\u02bb\u02bc\u00055\u0000\u0000\u02bc\u008d\u0001"+ - "\u0000\u0000\u0000\u02bd\u02be\u00054\u0000\u0000\u02be\u008f\u0001\u0000"+ - "\u0000\u0000\u02bf\u02c0\u0007\u0007\u0000\u0000\u02c0\u0091\u0001\u0000"+ - "\u0000\u0000\u02c1\u02c2\u0007\b\u0000\u0000\u02c2\u02c3\u0005o\u0000"+ - "\u0000\u02c3\u02c4\u0003\u0094J\u0000\u02c4\u02c5\u0003\u0096K\u0000\u02c5"+ - "\u0093\u0001\u0000\u0000\u0000\u02c6\u02c7\u0003\u0018\f\u0000\u02c7\u0095"+ - "\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005#\u0000\u0000\u02c9\u02ce\u0003"+ - "\u0098L\u0000\u02ca\u02cb\u0005=\u0000\u0000\u02cb\u02cd\u0003\u0098L"+ - "\u0000\u02cc\u02ca\u0001\u0000\u0000\u0000\u02cd\u02d0\u0001\u0000\u0000"+ - "\u0000\u02ce\u02cc\u0001\u0000\u0000\u0000\u02ce\u02cf\u0001\u0000\u0000"+ - "\u0000\u02cf\u0097\u0001\u0000\u0000\u0000\u02d0\u02ce\u0001\u0000\u0000"+ - "\u0000\u02d1\u02d2\u0003v;\u0000\u02d2\u0099\u0001\u0000\u0000\u0000B"+ - "\u00a5\u00ae\u00c9\u00d8\u00de\u00ed\u00f1\u00f6\u00fd\u00ff\u010d\u0115"+ - "\u0119\u0120\u0126\u012d\u0135\u013d\u0146\u014a\u014e\u0154\u015f\u0164"+ - "\u0168\u0176\u0181\u018f\u01a4\u01ac\u01af\u01b4\u01c1\u01c7\u01ce\u01d9"+ - "\u01e7\u01ed\u01f8\u0201\u0209\u020e\u0216\u0218\u021d\u0224\u0229\u022e"+ - "\u0238\u023e\u0246\u0248\u0253\u025a\u0265\u026a\u026c\u0278\u0290\u029b"+ - "\u02a6\u02ab\u02b1\u02b4\u02b9\u02ce"; + "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u0000"+ + "\t\u0002\u000033jj\u0001\u0000de\u0002\u0000;;@@\u0002\u0000CCFF\u0001"+ + "\u0000VW\u0001\u0000XZ\u0002\u0000BBNN\u0002\u0000OOQU\u0002\u0000\u0014"+ + "\u0014\u0016\u0017\u02ff\u0000\u009e\u0001\u0000\u0000\u0000\u0002\u00a1"+ + "\u0001\u0000\u0000\u0000\u0004\u00b2\u0001\u0000\u0000\u0000\u0006\u00cf"+ + "\u0001\u0000\u0000\u0000\b\u00d1\u0001\u0000\u0000\u0000\n\u00d4\u0001"+ + "\u0000\u0000\u0000\f\u00d6\u0001\u0000\u0000\u0000\u000e\u00d9\u0001\u0000"+ + "\u0000\u0000\u0010\u00e4\u0001\u0000\u0000\u0000\u0012\u00e8\u0001\u0000"+ + "\u0000\u0000\u0014\u00eb\u0001\u0000\u0000\u0000\u0016\u00ee\u0001\u0000"+ + "\u0000\u0000\u0018\u0105\u0001\u0000\u0000\u0000\u001a\u0107\u0001\u0000"+ + "\u0000\u0000\u001c\u0109\u0001\u0000\u0000\u0000\u001e\u010b\u0001\u0000"+ + "\u0000\u0000 \u010d\u0001\u0000\u0000\u0000\"\u0116\u0001\u0000\u0000"+ + "\u0000$\u0119\u0001\u0000\u0000\u0000&\u0121\u0001\u0000\u0000\u0000("+ + "\u0129\u0001\u0000\u0000\u0000*\u012e\u0001\u0000\u0000\u0000,\u0136\u0001"+ + "\u0000\u0000\u0000.\u013e\u0001\u0000\u0000\u00000\u0146\u0001\u0000\u0000"+ + "\u00002\u014c\u0001\u0000\u0000\u00004\u0150\u0001\u0000\u0000\u00006"+ + "\u0154\u0001\u0000\u0000\u00008\u015a\u0001\u0000\u0000\u0000:\u015e\u0001"+ + "\u0000\u0000\u0000<\u0160\u0001\u0000\u0000\u0000>\u0163\u0001\u0000\u0000"+ + "\u0000@\u016c\u0001\u0000\u0000\u0000B\u0174\u0001\u0000\u0000\u0000D"+ + "\u0177\u0001\u0000\u0000\u0000F\u017a\u0001\u0000\u0000\u0000H\u0183\u0001"+ + "\u0000\u0000\u0000J\u0187\u0001\u0000\u0000\u0000L\u018d\u0001\u0000\u0000"+ + "\u0000N\u0191\u0001\u0000\u0000\u0000P\u0194\u0001\u0000\u0000\u0000R"+ + "\u019c\u0001\u0000\u0000\u0000T\u01a0\u0001\u0000\u0000\u0000V\u01a3\u0001"+ + "\u0000\u0000\u0000X\u01a7\u0001\u0000\u0000\u0000Z\u01aa\u0001\u0000\u0000"+ + "\u0000\\\u01be\u0001\u0000\u0000\u0000^\u01c2\u0001\u0000\u0000\u0000"+ + "`\u01c7\u0001\u0000\u0000\u0000b\u01cd\u0001\u0000\u0000\u0000d\u01da"+ + "\u0001\u0000\u0000\u0000f\u01dd\u0001\u0000\u0000\u0000h\u01e1\u0001\u0000"+ + "\u0000\u0000j\u01e5\u0001\u0000\u0000\u0000l\u01e9\u0001\u0000\u0000\u0000"+ + "n\u01f7\u0001\u0000\u0000\u0000p\u01f9\u0001\u0000\u0000\u0000r\u01fb"+ + "\u0001\u0000\u0000\u0000t\u021f\u0001\u0000\u0000\u0000v\u023a\u0001\u0000"+ + "\u0000\u0000x\u023c\u0001\u0000\u0000\u0000z\u0249\u0001\u0000\u0000\u0000"+ + "|\u024f\u0001\u0000\u0000\u0000~\u0264\u0001\u0000\u0000\u0000\u0080\u026e"+ + "\u0001\u0000\u0000\u0000\u0082\u0281\u0001\u0000\u0000\u0000\u0084\u0283"+ + "\u0001\u0000\u0000\u0000\u0086\u028e\u0001\u0000\u0000\u0000\u0088\u02bc"+ + "\u0001\u0000\u0000\u0000\u008a\u02be\u0001\u0000\u0000\u0000\u008c\u02c2"+ + "\u0001\u0000\u0000\u0000\u008e\u02c5\u0001\u0000\u0000\u0000\u0090\u02ca"+ + "\u0001\u0000\u0000\u0000\u0092\u02ce\u0001\u0000\u0000\u0000\u0094\u02d0"+ + "\u0001\u0000\u0000\u0000\u0096\u02d2\u0001\u0000\u0000\u0000\u0098\u02d7"+ + "\u0001\u0000\u0000\u0000\u009a\u02d9\u0001\u0000\u0000\u0000\u009c\u02e2"+ + "\u0001\u0000\u0000\u0000\u009e\u009f\u0003\u0002\u0001\u0000\u009f\u00a0"+ + "\u0005\u0000\u0000\u0001\u00a0\u0001\u0001\u0000\u0000\u0000\u00a1\u00a2"+ + "\u0006\u0001\uffff\uffff\u0000\u00a2\u00a3\u0003\u0004\u0002\u0000\u00a3"+ + "\u00a9\u0001\u0000\u0000\u0000\u00a4\u00a5\n\u0001\u0000\u0000\u00a5\u00a6"+ + "\u00052\u0000\u0000\u00a6\u00a8\u0003\u0006\u0003\u0000\u00a7\u00a4\u0001"+ + "\u0000\u0000\u0000\u00a8\u00ab\u0001\u0000\u0000\u0000\u00a9\u00a7\u0001"+ + "\u0000\u0000\u0000\u00a9\u00aa\u0001\u0000\u0000\u0000\u00aa\u0003\u0001"+ + "\u0000\u0000\u0000\u00ab\u00a9\u0001\u0000\u0000\u0000\u00ac\u00b3\u0003"+ + "T*\u0000\u00ad\u00b3\u0003\u0012\t\u0000\u00ae\u00b3\u0003\f\u0006\u0000"+ + "\u00af\u00b3\u0003X,\u0000\u00b0\u00b1\u0004\u0002\u0001\u0000\u00b1\u00b3"+ + "\u0003\u0014\n\u0000\u00b2\u00ac\u0001\u0000\u0000\u0000\u00b2\u00ad\u0001"+ + "\u0000\u0000\u0000\u00b2\u00ae\u0001\u0000\u0000\u0000\u00b2\u00af\u0001"+ + "\u0000\u0000\u0000\u00b2\u00b0\u0001\u0000\u0000\u0000\u00b3\u0005\u0001"+ + "\u0000\u0000\u0000\u00b4\u00d0\u0003\"\u0011\u0000\u00b5\u00d0\u0003\b"+ + "\u0004\u0000\u00b6\u00d0\u0003B!\u0000\u00b7\u00d0\u0003<\u001e\u0000"+ + "\u00b8\u00d0\u0003$\u0012\u0000\u00b9\u00d0\u0003>\u001f\u0000\u00ba\u00d0"+ + "\u0003D\"\u0000\u00bb\u00d0\u0003F#\u0000\u00bc\u00d0\u0003J%\u0000\u00bd"+ + "\u00d0\u0003L&\u0000\u00be\u00d0\u0003Z-\u0000\u00bf\u00d0\u0003N\'\u0000"+ + "\u00c0\u00d0\u0003\u0096K\u0000\u00c1\u00c2\u0004\u0003\u0002\u0000\u00c2"+ + "\u00d0\u0003`0\u0000\u00c3\u00c4\u0004\u0003\u0003\u0000\u00c4\u00d0\u0003"+ + "^/\u0000\u00c5\u00c6\u0004\u0003\u0004\u0000\u00c6\u00d0\u0003b1\u0000"+ + "\u00c7\u00c8\u0004\u0003\u0005\u0000\u00c8\u00d0\u0003d2\u0000\u00c9\u00ca"+ + "\u0004\u0003\u0006\u0000\u00ca\u00d0\u0003f3\u0000\u00cb\u00cc\u0004\u0003"+ + "\u0007\u0000\u00cc\u00d0\u0003r9\u0000\u00cd\u00ce\u0004\u0003\b\u0000"+ + "\u00ce\u00d0\u0003p8\u0000\u00cf\u00b4\u0001\u0000\u0000\u0000\u00cf\u00b5"+ + "\u0001\u0000\u0000\u0000\u00cf\u00b6\u0001\u0000\u0000\u0000\u00cf\u00b7"+ + "\u0001\u0000\u0000\u0000\u00cf\u00b8\u0001\u0000\u0000\u0000\u00cf\u00b9"+ + "\u0001\u0000\u0000\u0000\u00cf\u00ba\u0001\u0000\u0000\u0000\u00cf\u00bb"+ + "\u0001\u0000\u0000\u0000\u00cf\u00bc\u0001\u0000\u0000\u0000\u00cf\u00bd"+ + "\u0001\u0000\u0000\u0000\u00cf\u00be\u0001\u0000\u0000\u0000\u00cf\u00bf"+ + "\u0001\u0000\u0000\u0000\u00cf\u00c0\u0001\u0000\u0000\u0000\u00cf\u00c1"+ + "\u0001\u0000\u0000\u0000\u00cf\u00c3\u0001\u0000\u0000\u0000\u00cf\u00c5"+ + "\u0001\u0000\u0000\u0000\u00cf\u00c7\u0001\u0000\u0000\u0000\u00cf\u00c9"+ + "\u0001\u0000\u0000\u0000\u00cf\u00cb\u0001\u0000\u0000\u0000\u00cf\u00cd"+ + "\u0001\u0000\u0000\u0000\u00d0\u0007\u0001\u0000\u0000\u0000\u00d1\u00d2"+ + "\u0005\u000e\u0000\u0000\u00d2\u00d3\u0003t:\u0000\u00d3\t\u0001\u0000"+ + "\u0000\u0000\u00d4\u00d5\u00030\u0018\u0000\u00d5\u000b\u0001\u0000\u0000"+ + "\u0000\u00d6\u00d7\u0005\u000b\u0000\u0000\u00d7\u00d8\u0003\u000e\u0007"+ + "\u0000\u00d8\r\u0001\u0000\u0000\u0000\u00d9\u00de\u0003\u0010\b\u0000"+ + "\u00da\u00db\u0005?\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc"+ + "\u00da\u0001\u0000\u0000\u0000\u00dd\u00e0\u0001\u0000\u0000\u0000\u00de"+ + "\u00dc\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df"+ + "\u000f\u0001\u0000\u0000\u0000\u00e0\u00de\u0001\u0000\u0000\u0000\u00e1"+ + "\u00e2\u0003*\u0015\u0000\u00e2\u00e3\u0005<\u0000\u0000\u00e3\u00e5\u0001"+ + "\u0000\u0000\u0000\u00e4\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001"+ + "\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6\u00e7\u0003"+ + "t:\u0000\u00e7\u0011\u0001\u0000\u0000\u0000\u00e8\u00e9\u0005\u0011\u0000"+ + "\u0000\u00e9\u00ea\u0003\u0016\u000b\u0000\u00ea\u0013\u0001\u0000\u0000"+ + "\u0000\u00eb\u00ec\u0005\u0012\u0000\u0000\u00ec\u00ed\u0003\u0016\u000b"+ + "\u0000\u00ed\u0015\u0001\u0000\u0000\u0000\u00ee\u00f3\u0003\u0018\f\u0000"+ + "\u00ef\u00f0\u0005?\u0000\u0000\u00f0\u00f2\u0003\u0018\f\u0000\u00f1"+ + "\u00ef\u0001\u0000\u0000\u0000\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3"+ + "\u00f1\u0001\u0000\u0000\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4"+ + "\u00f7\u0001\u0000\u0000\u0000\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6"+ + "\u00f8\u0003 \u0010\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8"+ + "\u0001\u0000\u0000\u0000\u00f8\u0017\u0001\u0000\u0000\u0000\u00f9\u00fa"+ + "\u0003\u001a\r\u0000\u00fa\u00fb\u0005>\u0000\u0000\u00fb\u00fd\u0001"+ + "\u0000\u0000\u0000\u00fc\u00f9\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001"+ + "\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0106\u0003"+ + "\u001e\u000f\u0000\u00ff\u0100\u0004\f\t\u0000\u0100\u0103\u0003\u001e"+ + "\u000f\u0000\u0101\u0102\u0005=\u0000\u0000\u0102\u0104\u0003\u001c\u000e"+ + "\u0000\u0103\u0101\u0001\u0000\u0000\u0000\u0103\u0104\u0001\u0000\u0000"+ + "\u0000\u0104\u0106\u0001\u0000\u0000\u0000\u0105\u00fc\u0001\u0000\u0000"+ + "\u0000\u0105\u00ff\u0001\u0000\u0000\u0000\u0106\u0019\u0001\u0000\u0000"+ + "\u0000\u0107\u0108\u0007\u0000\u0000\u0000\u0108\u001b\u0001\u0000\u0000"+ + "\u0000\u0109\u010a\u0007\u0000\u0000\u0000\u010a\u001d\u0001\u0000\u0000"+ + "\u0000\u010b\u010c\u0007\u0000\u0000\u0000\u010c\u001f\u0001\u0000\u0000"+ + "\u0000\u010d\u010e\u0005i\u0000\u0000\u010e\u0113\u0005j\u0000\u0000\u010f"+ + "\u0110\u0005?\u0000\u0000\u0110\u0112\u0005j\u0000\u0000\u0111\u010f\u0001"+ + "\u0000\u0000\u0000\u0112\u0115\u0001\u0000\u0000\u0000\u0113\u0111\u0001"+ + "\u0000\u0000\u0000\u0113\u0114\u0001\u0000\u0000\u0000\u0114!\u0001\u0000"+ + "\u0000\u0000\u0115\u0113\u0001\u0000\u0000\u0000\u0116\u0117\u0005\b\u0000"+ + "\u0000\u0117\u0118\u0003\u000e\u0007\u0000\u0118#\u0001\u0000\u0000\u0000"+ + "\u0119\u011b\u0005\r\u0000\u0000\u011a\u011c\u0003&\u0013\u0000\u011b"+ + "\u011a\u0001\u0000\u0000\u0000\u011b\u011c\u0001\u0000\u0000\u0000\u011c"+ + "\u011f\u0001\u0000\u0000\u0000\u011d\u011e\u00056\u0000\u0000\u011e\u0120"+ + "\u0003\u000e\u0007\u0000\u011f\u011d\u0001\u0000\u0000\u0000\u011f\u0120"+ + "\u0001\u0000\u0000\u0000\u0120%\u0001\u0000\u0000\u0000\u0121\u0126\u0003"+ + "(\u0014\u0000\u0122\u0123\u0005?\u0000\u0000\u0123\u0125\u0003(\u0014"+ + "\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0125\u0128\u0001\u0000\u0000"+ + "\u0000\u0126\u0124\u0001\u0000\u0000\u0000\u0126\u0127\u0001\u0000\u0000"+ + "\u0000\u0127\'\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000"+ + "\u0129\u012c\u0003\u0010\b\u0000\u012a\u012b\u0005\u000e\u0000\u0000\u012b"+ + "\u012d\u0003t:\u0000\u012c\u012a\u0001\u0000\u0000\u0000\u012c\u012d\u0001"+ + "\u0000\u0000\u0000\u012d)\u0001\u0000\u0000\u0000\u012e\u0133\u00038\u001c"+ + "\u0000\u012f\u0130\u0005A\u0000\u0000\u0130\u0132\u00038\u001c\u0000\u0131"+ + "\u012f\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133"+ + "\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134"+ + "+\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u013b"+ + "\u00032\u0019\u0000\u0137\u0138\u0005A\u0000\u0000\u0138\u013a\u00032"+ + "\u0019\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-\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000"+ + "\u0000\u013e\u0143\u0003,\u0016\u0000\u013f\u0140\u0005?\u0000\u0000\u0140"+ + "\u0142\u0003,\u0016\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0142\u0145"+ + "\u0001\u0000\u0000\u0000\u0143\u0141\u0001\u0000\u0000\u0000\u0143\u0144"+ + "\u0001\u0000\u0000\u0000\u0144/\u0001\u0000\u0000\u0000\u0145\u0143\u0001"+ + "\u0000\u0000\u0000\u0146\u0147\u0007\u0001\u0000\u0000\u01471\u0001\u0000"+ + "\u0000\u0000\u0148\u014d\u0005\u007f\u0000\u0000\u0149\u014d\u00034\u001a"+ + "\u0000\u014a\u014b\u0004\u0019\n\u0000\u014b\u014d\u00036\u001b\u0000"+ + "\u014c\u0148\u0001\u0000\u0000\u0000\u014c\u0149\u0001\u0000\u0000\u0000"+ + "\u014c\u014a\u0001\u0000\u0000\u0000\u014d3\u0001\u0000\u0000\u0000\u014e"+ + "\u0151\u0005L\u0000\u0000\u014f\u0151\u0005^\u0000\u0000\u0150\u014e\u0001"+ + "\u0000\u0000\u0000\u0150\u014f\u0001\u0000\u0000\u0000\u01515\u0001\u0000"+ + "\u0000\u0000\u0152\u0155\u0005]\u0000\u0000\u0153\u0155\u0005_\u0000\u0000"+ + "\u0154\u0152\u0001\u0000\u0000\u0000\u0154\u0153\u0001\u0000\u0000\u0000"+ + "\u01557\u0001\u0000\u0000\u0000\u0156\u015b\u00030\u0018\u0000\u0157\u015b"+ + "\u00034\u001a\u0000\u0158\u0159\u0004\u001c\u000b\u0000\u0159\u015b\u0003"+ + "6\u001b\u0000\u015a\u0156\u0001\u0000\u0000\u0000\u015a\u0157\u0001\u0000"+ + "\u0000\u0000\u015a\u0158\u0001\u0000\u0000\u0000\u015b9\u0001\u0000\u0000"+ + "\u0000\u015c\u015f\u0003\u0092I\u0000\u015d\u015f\u00034\u001a\u0000\u015e"+ + "\u015c\u0001\u0000\u0000\u0000\u015e\u015d\u0001\u0000\u0000\u0000\u015f"+ + ";\u0001\u0000\u0000\u0000\u0160\u0161\u0005\n\u0000\u0000\u0161\u0162"+ + "\u00054\u0000\u0000\u0162=\u0001\u0000\u0000\u0000\u0163\u0164\u0005\f"+ + "\u0000\u0000\u0164\u0169\u0003@ \u0000\u0165\u0166\u0005?\u0000\u0000"+ + "\u0166\u0168\u0003@ \u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0168\u016b"+ + "\u0001\u0000\u0000\u0000\u0169\u0167\u0001\u0000\u0000\u0000\u0169\u016a"+ + "\u0001\u0000\u0000\u0000\u016a?\u0001\u0000\u0000\u0000\u016b\u0169\u0001"+ + "\u0000\u0000\u0000\u016c\u016e\u0003t:\u0000\u016d\u016f\u0007\u0002\u0000"+ + "\u0000\u016e\u016d\u0001\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000"+ + "\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u0171\u0005J\u0000\u0000"+ + "\u0171\u0173\u0007\u0003\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000"+ + "\u0172\u0173\u0001\u0000\u0000\u0000\u0173A\u0001\u0000\u0000\u0000\u0174"+ + "\u0175\u0005\u001b\u0000\u0000\u0175\u0176\u0003.\u0017\u0000\u0176C\u0001"+ + "\u0000\u0000\u0000\u0177\u0178\u0005\u001a\u0000\u0000\u0178\u0179\u0003"+ + ".\u0017\u0000\u0179E\u0001\u0000\u0000\u0000\u017a\u017b\u0005\u001e\u0000"+ + "\u0000\u017b\u0180\u0003H$\u0000\u017c\u017d\u0005?\u0000\u0000\u017d"+ + "\u017f\u0003H$\u0000\u017e\u017c\u0001\u0000\u0000\u0000\u017f\u0182\u0001"+ + "\u0000\u0000\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0180\u0181\u0001"+ + "\u0000\u0000\u0000\u0181G\u0001\u0000\u0000\u0000\u0182\u0180\u0001\u0000"+ + "\u0000\u0000\u0183\u0184\u0003,\u0016\u0000\u0184\u0185\u00059\u0000\u0000"+ + "\u0185\u0186\u0003,\u0016\u0000\u0186I\u0001\u0000\u0000\u0000\u0187\u0188"+ + "\u0005\u0007\u0000\u0000\u0188\u0189\u0003~?\u0000\u0189\u018b\u0003\u0092"+ + "I\u0000\u018a\u018c\u0003P(\u0000\u018b\u018a\u0001\u0000\u0000\u0000"+ + "\u018b\u018c\u0001\u0000\u0000\u0000\u018cK\u0001\u0000\u0000\u0000\u018d"+ + "\u018e\u0005\t\u0000\u0000\u018e\u018f\u0003~?\u0000\u018f\u0190\u0003"+ + "\u0092I\u0000\u0190M\u0001\u0000\u0000\u0000\u0191\u0192\u0005\u0019\u0000"+ + "\u0000\u0192\u0193\u0003*\u0015\u0000\u0193O\u0001\u0000\u0000\u0000\u0194"+ + "\u0199\u0003R)\u0000\u0195\u0196\u0005?\u0000\u0000\u0196\u0198\u0003"+ + "R)\u0000\u0197\u0195\u0001\u0000\u0000\u0000\u0198\u019b\u0001\u0000\u0000"+ + "\u0000\u0199\u0197\u0001\u0000\u0000\u0000\u0199\u019a\u0001\u0000\u0000"+ + "\u0000\u019aQ\u0001\u0000\u0000\u0000\u019b\u0199\u0001\u0000\u0000\u0000"+ + "\u019c\u019d\u00030\u0018\u0000\u019d\u019e\u0005<\u0000\u0000\u019e\u019f"+ + "\u0003\u0088D\u0000\u019fS\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005\u0006"+ + "\u0000\u0000\u01a1\u01a2\u0003V+\u0000\u01a2U\u0001\u0000\u0000\u0000"+ + "\u01a3\u01a4\u0005`\u0000\u0000\u01a4\u01a5\u0003\u0002\u0001\u0000\u01a5"+ + "\u01a6\u0005a\u0000\u0000\u01a6W\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005"+ + "\u001f\u0000\u0000\u01a8\u01a9\u0005\u0086\u0000\u0000\u01a9Y\u0001\u0000"+ + "\u0000\u0000\u01aa\u01ab\u0005\u0005\u0000\u0000\u01ab\u01ae\u0005$\u0000"+ + "\u0000\u01ac\u01ad\u00057\u0000\u0000\u01ad\u01af\u0003,\u0016\u0000\u01ae"+ + "\u01ac\u0001\u0000\u0000\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01af"+ + "\u01b9\u0001\u0000\u0000\u0000\u01b0\u01b1\u00058\u0000\u0000\u01b1\u01b6"+ + "\u0003\\.\u0000\u01b2\u01b3\u0005?\u0000\u0000\u01b3\u01b5\u0003\\.\u0000"+ + "\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b8\u0001\u0000\u0000\u0000"+ + "\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000\u0000\u0000"+ + "\u01b7\u01ba\u0001\u0000\u0000\u0000\u01b8\u01b6\u0001\u0000\u0000\u0000"+ + "\u01b9\u01b0\u0001\u0000\u0000\u0000\u01b9\u01ba\u0001\u0000\u0000\u0000"+ + "\u01ba[\u0001\u0000\u0000\u0000\u01bb\u01bc\u0003,\u0016\u0000\u01bc\u01bd"+ + "\u0005<\u0000\u0000\u01bd\u01bf\u0001\u0000\u0000\u0000\u01be\u01bb\u0001"+ + "\u0000\u0000\u0000\u01be\u01bf\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001"+ + "\u0000\u0000\u0000\u01c0\u01c1\u0003,\u0016\u0000\u01c1]\u0001\u0000\u0000"+ + "\u0000\u01c2\u01c3\u0005\u0018\u0000\u0000\u01c3\u01c4\u0003\u0018\f\u0000"+ + "\u01c4\u01c5\u00057\u0000\u0000\u01c5\u01c6\u0003.\u0017\u0000\u01c6_"+ + "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005\u000f\u0000\u0000\u01c8\u01cb"+ + "\u0003&\u0013\u0000\u01c9\u01ca\u00056\u0000\u0000\u01ca\u01cc\u0003\u000e"+ + "\u0007\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000"+ + "\u0000\u0000\u01cca\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0004\u0000"+ + "\u0000\u01ce\u01d1\u0003*\u0015\u0000\u01cf\u01d0\u00057\u0000\u0000\u01d0"+ + "\u01d2\u0003*\u0015\u0000\u01d1\u01cf\u0001\u0000\u0000\u0000\u01d1\u01d2"+ + "\u0001\u0000\u0000\u0000\u01d2\u01d8\u0001\u0000\u0000\u0000\u01d3\u01d4"+ + "\u00059\u0000\u0000\u01d4\u01d5\u0003*\u0015\u0000\u01d5\u01d6\u0005?"+ + "\u0000\u0000\u01d6\u01d7\u0003*\u0015\u0000\u01d7\u01d9\u0001\u0000\u0000"+ + "\u0000\u01d8\u01d3\u0001\u0000\u0000\u0000\u01d8\u01d9\u0001\u0000\u0000"+ + "\u0000\u01d9c\u0001\u0000\u0000\u0000\u01da\u01db\u0005\u001c\u0000\u0000"+ + "\u01db\u01dc\u0003.\u0017\u0000\u01dce\u0001\u0000\u0000\u0000\u01dd\u01de"+ + "\u0005\u0013\u0000\u0000\u01de\u01df\u0003h4\u0000\u01dfg\u0001\u0000"+ + "\u0000\u0000\u01e0\u01e2\u0003j5\u0000\u01e1\u01e0\u0001\u0000\u0000\u0000"+ + "\u01e2\u01e3\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001\u0000\u0000\u0000"+ + "\u01e3\u01e4\u0001\u0000\u0000\u0000\u01e4i\u0001\u0000\u0000\u0000\u01e5"+ + "\u01e6\u0005b\u0000\u0000\u01e6\u01e7\u0003l6\u0000\u01e7\u01e8\u0005"+ + "c\u0000\u0000\u01e8k\u0001\u0000\u0000\u0000\u01e9\u01ea\u00066\uffff"+ + "\uffff\u0000\u01ea\u01eb\u0003n7\u0000\u01eb\u01f1\u0001\u0000\u0000\u0000"+ + "\u01ec\u01ed\n\u0001\u0000\u0000\u01ed\u01ee\u00052\u0000\u0000\u01ee"+ + "\u01f0\u0003n7\u0000\u01ef\u01ec\u0001\u0000\u0000\u0000\u01f0\u01f3\u0001"+ + "\u0000\u0000\u0000\u01f1\u01ef\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001"+ + "\u0000\u0000\u0000\u01f2m\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000"+ + "\u0000\u0000\u01f4\u01f8\u0003\b\u0004\u0000\u01f5\u01f8\u0003>\u001f"+ + "\u0000\u01f6\u01f8\u0003<\u001e\u0000\u01f7\u01f4\u0001\u0000\u0000\u0000"+ + "\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f7\u01f6\u0001\u0000\u0000\u0000"+ + "\u01f8o\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\u001d\u0000\u0000\u01fa"+ + "q\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005\u0010\u0000\u0000\u01fc\u01fd"+ + "\u0003:\u001d\u0000\u01fd\u01fe\u00057\u0000\u0000\u01fe\u01ff\u0003\u000e"+ + "\u0007\u0000\u01ff\u0200\u00058\u0000\u0000\u0200\u0201\u0003:\u001d\u0000"+ + "\u0201s\u0001\u0000\u0000\u0000\u0202\u0203\u0006:\uffff\uffff\u0000\u0203"+ + "\u0204\u0005H\u0000\u0000\u0204\u0220\u0003t:\b\u0205\u0220\u0003z=\u0000"+ + "\u0206\u0220\u0003v;\u0000\u0207\u0209\u0003z=\u0000\u0208\u020a\u0005"+ + "H\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000"+ + "\u0000\u0000\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0005D\u0000"+ + "\u0000\u020c\u020d\u0005b\u0000\u0000\u020d\u0212\u0003z=\u0000\u020e"+ + "\u020f\u0005?\u0000\u0000\u020f\u0211\u0003z=\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\u0213\u0215\u0001"+ + "\u0000\u0000\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0215\u0216\u0005"+ + "c\u0000\u0000\u0216\u0220\u0001\u0000\u0000\u0000\u0217\u0218\u0003z="+ + "\u0000\u0218\u021a\u0005E\u0000\u0000\u0219\u021b\u0005H\u0000\u0000\u021a"+ + "\u0219\u0001\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021b"+ + "\u021c\u0001\u0000\u0000\u0000\u021c\u021d\u0005I\u0000\u0000\u021d\u0220"+ + "\u0001\u0000\u0000\u0000\u021e\u0220\u0003x<\u0000\u021f\u0202\u0001\u0000"+ + "\u0000\u0000\u021f\u0205\u0001\u0000\u0000\u0000\u021f\u0206\u0001\u0000"+ + "\u0000\u0000\u021f\u0207\u0001\u0000\u0000\u0000\u021f\u0217\u0001\u0000"+ + "\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u0220\u0229\u0001\u0000"+ + "\u0000\u0000\u0221\u0222\n\u0005\u0000\u0000\u0222\u0223\u0005:\u0000"+ + "\u0000\u0223\u0228\u0003t:\u0006\u0224\u0225\n\u0004\u0000\u0000\u0225"+ + "\u0226\u0005K\u0000\u0000\u0226\u0228\u0003t:\u0005\u0227\u0221\u0001"+ + "\u0000\u0000\u0000\u0227\u0224\u0001\u0000\u0000\u0000\u0228\u022b\u0001"+ + "\u0000\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001"+ + "\u0000\u0000\u0000\u022au\u0001\u0000\u0000\u0000\u022b\u0229\u0001\u0000"+ + "\u0000\u0000\u022c\u022e\u0003z=\u0000\u022d\u022f\u0005H\u0000\u0000"+ + "\u022e\u022d\u0001\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000"+ + "\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0005G\u0000\u0000\u0231"+ + "\u0232\u0003\u0092I\u0000\u0232\u023b\u0001\u0000\u0000\u0000\u0233\u0235"+ + "\u0003z=\u0000\u0234\u0236\u0005H\u0000\u0000\u0235\u0234\u0001\u0000"+ + "\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0001\u0000"+ + "\u0000\u0000\u0237\u0238\u0005M\u0000\u0000\u0238\u0239\u0003\u0092I\u0000"+ + "\u0239\u023b\u0001\u0000\u0000\u0000\u023a\u022c\u0001\u0000\u0000\u0000"+ + "\u023a\u0233\u0001\u0000\u0000\u0000\u023bw\u0001\u0000\u0000\u0000\u023c"+ + "\u023f\u0003*\u0015\u0000\u023d\u023e\u0005=\u0000\u0000\u023e\u0240\u0003"+ + "\n\u0005\u0000\u023f\u023d\u0001\u0000\u0000\u0000\u023f\u0240\u0001\u0000"+ + "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0005>\u0000"+ + "\u0000\u0242\u0243\u0003\u0088D\u0000\u0243y\u0001\u0000\u0000\u0000\u0244"+ + "\u024a\u0003|>\u0000\u0245\u0246\u0003|>\u0000\u0246\u0247\u0003\u0094"+ + "J\u0000\u0247\u0248\u0003|>\u0000\u0248\u024a\u0001\u0000\u0000\u0000"+ + "\u0249\u0244\u0001\u0000\u0000\u0000\u0249\u0245\u0001\u0000\u0000\u0000"+ + "\u024a{\u0001\u0000\u0000\u0000\u024b\u024c\u0006>\uffff\uffff\u0000\u024c"+ + "\u0250\u0003~?\u0000\u024d\u024e\u0007\u0004\u0000\u0000\u024e\u0250\u0003"+ + "|>\u0003\u024f\u024b\u0001\u0000\u0000\u0000\u024f\u024d\u0001\u0000\u0000"+ + "\u0000\u0250\u0259\u0001\u0000\u0000\u0000\u0251\u0252\n\u0002\u0000\u0000"+ + "\u0252\u0253\u0007\u0005\u0000\u0000\u0253\u0258\u0003|>\u0003\u0254\u0255"+ + "\n\u0001\u0000\u0000\u0255\u0256\u0007\u0004\u0000\u0000\u0256\u0258\u0003"+ + "|>\u0002\u0257\u0251\u0001\u0000\u0000\u0000\u0257\u0254\u0001\u0000\u0000"+ + "\u0000\u0258\u025b\u0001\u0000\u0000\u0000\u0259\u0257\u0001\u0000\u0000"+ + "\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a}\u0001\u0000\u0000\u0000"+ + "\u025b\u0259\u0001\u0000\u0000\u0000\u025c\u025d\u0006?\uffff\uffff\u0000"+ + "\u025d\u0265\u0003\u0088D\u0000\u025e\u0265\u0003*\u0015\u0000\u025f\u0265"+ + "\u0003\u0080@\u0000\u0260\u0261\u0005b\u0000\u0000\u0261\u0262\u0003t"+ + ":\u0000\u0262\u0263\u0005c\u0000\u0000\u0263\u0265\u0001\u0000\u0000\u0000"+ + "\u0264\u025c\u0001\u0000\u0000\u0000\u0264\u025e\u0001\u0000\u0000\u0000"+ + "\u0264\u025f\u0001\u0000\u0000\u0000\u0264\u0260\u0001\u0000\u0000\u0000"+ + "\u0265\u026b\u0001\u0000\u0000\u0000\u0266\u0267\n\u0001\u0000\u0000\u0267"+ + "\u0268\u0005=\u0000\u0000\u0268\u026a\u0003\n\u0005\u0000\u0269\u0266"+ + "\u0001\u0000\u0000\u0000\u026a\u026d\u0001\u0000\u0000\u0000\u026b\u0269"+ + "\u0001\u0000\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u007f"+ + "\u0001\u0000\u0000\u0000\u026d\u026b\u0001\u0000\u0000\u0000\u026e\u026f"+ + "\u0003\u0082A\u0000\u026f\u027d\u0005b\u0000\u0000\u0270\u027e\u0005X"+ + "\u0000\u0000\u0271\u0276\u0003t:\u0000\u0272\u0273\u0005?\u0000\u0000"+ + "\u0273\u0275\u0003t:\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0275\u0278"+ + "\u0001\u0000\u0000\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0276\u0277"+ + "\u0001\u0000\u0000\u0000\u0277\u027b\u0001\u0000\u0000\u0000\u0278\u0276"+ + "\u0001\u0000\u0000\u0000\u0279\u027a\u0005?\u0000\u0000\u027a\u027c\u0003"+ + "\u0084B\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000"+ + "\u0000\u0000\u027c\u027e\u0001\u0000\u0000\u0000\u027d\u0270\u0001\u0000"+ + "\u0000\u0000\u027d\u0271\u0001\u0000\u0000\u0000\u027d\u027e\u0001\u0000"+ + "\u0000\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0005c\u0000"+ + "\u0000\u0280\u0081\u0001\u0000\u0000\u0000\u0281\u0282\u00038\u001c\u0000"+ + "\u0282\u0083\u0001\u0000\u0000\u0000\u0283\u0284\u0005[\u0000\u0000\u0284"+ + "\u0289\u0003\u0086C\u0000\u0285\u0286\u0005?\u0000\u0000\u0286\u0288\u0003"+ + "\u0086C\u0000\u0287\u0285\u0001\u0000\u0000\u0000\u0288\u028b\u0001\u0000"+ + "\u0000\u0000\u0289\u0287\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000"+ + "\u0000\u0000\u028a\u028c\u0001\u0000\u0000\u0000\u028b\u0289\u0001\u0000"+ + "\u0000\u0000\u028c\u028d\u0005\\\u0000\u0000\u028d\u0085\u0001\u0000\u0000"+ + "\u0000\u028e\u028f\u0003\u0092I\u0000\u028f\u0290\u0005>\u0000\u0000\u0290"+ + "\u0291\u0003\u0088D\u0000\u0291\u0087\u0001\u0000\u0000\u0000\u0292\u02bd"+ + "\u0005I\u0000\u0000\u0293\u0294\u0003\u0090H\u0000\u0294\u0295\u0005d"+ + "\u0000\u0000\u0295\u02bd\u0001\u0000\u0000\u0000\u0296\u02bd\u0003\u008e"+ + "G\u0000\u0297\u02bd\u0003\u0090H\u0000\u0298\u02bd\u0003\u008aE\u0000"+ + "\u0299\u02bd\u00034\u001a\u0000\u029a\u02bd\u0003\u0092I\u0000\u029b\u029c"+ + "\u0005`\u0000\u0000\u029c\u02a1\u0003\u008cF\u0000\u029d\u029e\u0005?"+ + "\u0000\u0000\u029e\u02a0\u0003\u008cF\u0000\u029f\u029d\u0001\u0000\u0000"+ + "\u0000\u02a0\u02a3\u0001\u0000\u0000\u0000\u02a1\u029f\u0001\u0000\u0000"+ + "\u0000\u02a1\u02a2\u0001\u0000\u0000\u0000\u02a2\u02a4\u0001\u0000\u0000"+ + "\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005a\u0000\u0000"+ + "\u02a5\u02bd\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005`\u0000\u0000\u02a7"+ + "\u02ac\u0003\u008aE\u0000\u02a8\u02a9\u0005?\u0000\u0000\u02a9\u02ab\u0003"+ + "\u008aE\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02ab\u02ae\u0001\u0000"+ + "\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001\u0000"+ + "\u0000\u0000\u02ad\u02af\u0001\u0000\u0000\u0000\u02ae\u02ac\u0001\u0000"+ + "\u0000\u0000\u02af\u02b0\u0005a\u0000\u0000\u02b0\u02bd\u0001\u0000\u0000"+ + "\u0000\u02b1\u02b2\u0005`\u0000\u0000\u02b2\u02b7\u0003\u0092I\u0000\u02b3"+ + "\u02b4\u0005?\u0000\u0000\u02b4\u02b6\u0003\u0092I\u0000\u02b5\u02b3\u0001"+ + "\u0000\u0000\u0000\u02b6\u02b9\u0001\u0000\u0000\u0000\u02b7\u02b5\u0001"+ + "\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02ba\u0001"+ + "\u0000\u0000\u0000\u02b9\u02b7\u0001\u0000\u0000\u0000\u02ba\u02bb\u0005"+ + "a\u0000\u0000\u02bb\u02bd\u0001\u0000\u0000\u0000\u02bc\u0292\u0001\u0000"+ + "\u0000\u0000\u02bc\u0293\u0001\u0000\u0000\u0000\u02bc\u0296\u0001\u0000"+ + "\u0000\u0000\u02bc\u0297\u0001\u0000\u0000\u0000\u02bc\u0298\u0001\u0000"+ + "\u0000\u0000\u02bc\u0299\u0001\u0000\u0000\u0000\u02bc\u029a\u0001\u0000"+ + "\u0000\u0000\u02bc\u029b\u0001\u0000\u0000\u0000\u02bc\u02a6\u0001\u0000"+ + "\u0000\u0000\u02bc\u02b1\u0001\u0000\u0000\u0000\u02bd\u0089\u0001\u0000"+ + "\u0000\u0000\u02be\u02bf\u0007\u0006\u0000\u0000\u02bf\u008b\u0001\u0000"+ + "\u0000\u0000\u02c0\u02c3\u0003\u008eG\u0000\u02c1\u02c3\u0003\u0090H\u0000"+ + "\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2\u02c1\u0001\u0000\u0000\u0000"+ + "\u02c3\u008d\u0001\u0000\u0000\u0000\u02c4\u02c6\u0007\u0004\u0000\u0000"+ + "\u02c5\u02c4\u0001\u0000\u0000\u0000\u02c5\u02c6\u0001\u0000\u0000\u0000"+ + "\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u02c8\u00055\u0000\u0000\u02c8"+ + "\u008f\u0001\u0000\u0000\u0000\u02c9\u02cb\u0007\u0004\u0000\u0000\u02ca"+ + "\u02c9\u0001\u0000\u0000\u0000\u02ca\u02cb\u0001\u0000\u0000\u0000\u02cb"+ + "\u02cc\u0001\u0000\u0000\u0000\u02cc\u02cd\u00054\u0000\u0000\u02cd\u0091"+ + "\u0001\u0000\u0000\u0000\u02ce\u02cf\u00053\u0000\u0000\u02cf\u0093\u0001"+ + "\u0000\u0000\u0000\u02d0\u02d1\u0007\u0007\u0000\u0000\u02d1\u0095\u0001"+ + "\u0000\u0000\u0000\u02d2\u02d3\u0007\b\u0000\u0000\u02d3\u02d4\u0005q"+ + "\u0000\u0000\u02d4\u02d5\u0003\u0098L\u0000\u02d5\u02d6\u0003\u009aM\u0000"+ + "\u02d6\u0097\u0001\u0000\u0000\u0000\u02d7\u02d8\u0003\u0018\f\u0000\u02d8"+ + "\u0099\u0001\u0000\u0000\u0000\u02d9\u02da\u00057\u0000\u0000\u02da\u02df"+ + "\u0003\u009cN\u0000\u02db\u02dc\u0005?\u0000\u0000\u02dc\u02de\u0003\u009c"+ + "N\u0000\u02dd\u02db\u0001\u0000\u0000\u0000\u02de\u02e1\u0001\u0000\u0000"+ + "\u0000\u02df\u02dd\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000"+ + "\u0000\u02e0\u009b\u0001\u0000\u0000\u0000\u02e1\u02df\u0001\u0000\u0000"+ + "\u0000\u02e2\u02e3\u0003z=\u0000\u02e3\u009d\u0001\u0000\u0000\u0000C"+ + "\u00a9\u00b2\u00cf\u00de\u00e4\u00f3\u00f7\u00fc\u0103\u0105\u0113\u011b"+ + "\u011f\u0126\u012c\u0133\u013b\u0143\u014c\u0150\u0154\u015a\u015e\u0169"+ + "\u016e\u0172\u0180\u018b\u0199\u01ae\u01b6\u01b9\u01be\u01cb\u01d1\u01d8"+ + "\u01e3\u01f1\u01f7\u0209\u0212\u021a\u021f\u0227\u0229\u022e\u0235\u023a"+ + "\u023f\u0249\u024f\u0257\u0259\u0264\u026b\u0276\u027b\u027d\u0289\u02a1"+ + "\u02ac\u02b7\u02bc\u02c2\u02c5\u02ca\u02df"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { From 7ff6b27e34ee4e32bcaf56dbff3073cd200c4e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?= Date: Wed, 26 Mar 2025 09:45:25 +0100 Subject: [PATCH 54/75] Update docs/changelog/123074.yaml --- docs/changelog/123074.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/changelog/123074.yaml b/docs/changelog/123074.yaml index 2210942ecdaf8..59ca1524893f8 100644 --- a/docs/changelog/123074.yaml +++ b/docs/changelog/123074.yaml @@ -2,5 +2,4 @@ pr: 123074 summary: Adding ES|QL Reranker command in snapshot builds area: Ranking type: feature -issues: [124337] - +issues: [] From 279291bae940d8bc1a66f9b4f481c036f4cf14b4 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 26 Mar 2025 10:53:35 +0100 Subject: [PATCH 55/75] Using enum string representation for serioalization. --- .../esql/inference/ResolvedInference.java | 4 +- .../inference/ResolvedInferenceTests.java | 47 +++++++++++++++++++ 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java index 63767a6286e3e..455ed6488379a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java @@ -17,12 +17,12 @@ public record ResolvedInference(String inferenceId, TaskType taskType) implements Writeable { public ResolvedInference(StreamInput in) throws IOException { - this(in.readString(), in.readEnum(TaskType.class)); + this(in.readString(), TaskType.valueOf(in.readString())); } @Override public void writeTo(StreamOutput out) throws IOException { out.writeString(inferenceId); - out.writeEnum(taskType); + out.writeString(taskType.name()); } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java new file mode 100644 index 0000000000000..216969c79a378 --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java @@ -0,0 +1,47 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.elasticsearch.TransportVersion; +import org.elasticsearch.inference.TaskType; +import org.elasticsearch.test.AbstractWireTestCase; +import org.elasticsearch.test.ESTestCase; + +import java.io.IOException; + +public class ResolvedInferenceTests extends AbstractWireTestCase { + + @Override + protected ResolvedInference createTestInstance() { + return new ResolvedInference(randomIdentifier(), randomTaskType()); + } + + @Override + protected ResolvedInference mutateInstance(ResolvedInference instance) throws IOException { + if (randomBoolean()) { + return new ResolvedInference(randomValueOtherThan(instance.inferenceId(), ESTestCase::randomIdentifier), instance.taskType()); + } + + return new ResolvedInference(instance.inferenceId(), randomValueOtherThan(instance.taskType(), this::randomTaskType)); + } + + @Override + protected ResolvedInference copyInstance(ResolvedInference instance, TransportVersion version) throws IOException { + return copyInstance( + instance, + getNamedWriteableRegistry(), + (out, v) -> v.writeTo(out), + in -> new ResolvedInference(in), + version + ); + } + + private TaskType randomTaskType() { + return randomFrom(TaskType.values()); + } + } From 04c7516eba7cc1ebf2b8d96da86ad2598708cd5d Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Wed, 26 Mar 2025 09:59:48 +0000 Subject: [PATCH 56/75] [CI] Auto commit changes from spotless --- .../xpack/esql/inference/ResolvedInferenceTests.java | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java index 216969c79a378..b4dfd87224a3a 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java @@ -32,16 +32,10 @@ protected ResolvedInference mutateInstance(ResolvedInference instance) throws IO @Override protected ResolvedInference copyInstance(ResolvedInference instance, TransportVersion version) throws IOException { - return copyInstance( - instance, - getNamedWriteableRegistry(), - (out, v) -> v.writeTo(out), - in -> new ResolvedInference(in), - version - ); + return copyInstance(instance, getNamedWriteableRegistry(), (out, v) -> v.writeTo(out), in -> new ResolvedInference(in), version); } private TaskType randomTaskType() { return randomFrom(TaskType.values()); } - } +} From 5ab46d96f5bc6b7e15a7e3a1a680450af5eabca4 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 26 Mar 2025 11:39:39 +0100 Subject: [PATCH 57/75] Fix bug introduced during merge. --- .../elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index 0f6c5edf863ce..aa085a2d81cb8 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -563,7 +563,7 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon for (var rerankField : rerank.rerankFields()) { rerankFieldsEvaluatorSuppliers.put( - new ColumnInfoImpl(rerankField.name(), rerankField.dataType()), + new ColumnInfoImpl(rerankField.name(), rerankField.dataType(), null), EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout) ); } From 4e1732477f3cfc459757364e78cc1d8e04e38540 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 26 Mar 2025 11:40:02 +0100 Subject: [PATCH 58/75] Reorder the Lexer tokens. --- .../esql/src/main/antlr/EsqlBaseLexer.tokens | 100 +- .../esql/src/main/antlr/EsqlBaseParser.tokens | 100 +- .../esql/src/main/antlr/lexer/Expression.g4 | 8 +- .../xpack/esql/parser/EsqlBaseLexer.interp | 26 +- .../xpack/esql/parser/EsqlBaseLexer.java | 1123 +++++++++-------- .../xpack/esql/parser/EsqlBaseParser.interp | 18 +- .../xpack/esql/parser/EsqlBaseParser.java | 163 +-- 7 files changed, 770 insertions(+), 768 deletions(-) diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens index 84809c193f627..06f8ce2861292 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens @@ -51,31 +51,31 @@ PIPE=50 QUOTED_STRING=51 INTEGER_LITERAL=52 DECIMAL_LITERAL=53 -BY=54 -ON=55 -WITH=56 -AS=57 -AND=58 -ASC=59 -ASSIGN=60 -CAST_OP=61 -COLON=62 -COMMA=63 -DESC=64 -DOT=65 -FALSE=66 -FIRST=67 -IN=68 -IS=69 -LAST=70 -LIKE=71 -NOT=72 -NULL=73 -NULLS=74 -OR=75 -PARAM=76 -RLIKE=77 -TRUE=78 +AND=54 +AS=55 +ASC=56 +ASSIGN=57 +BY=58 +CAST_OP=59 +COLON=60 +COMMA=61 +DESC=62 +DOT=63 +FALSE=64 +FIRST=65 +IN=66 +IS=67 +LAST=68 +LIKE=69 +NOT=70 +NULL=71 +NULLS=72 +ON=73 +OR=74 +PARAM=75 +RLIKE=76 +TRUE=77 +WITH=78 EQ=79 CIEQ=80 NEQ=81 @@ -153,31 +153,31 @@ SHOW_WS=137 'rename'=30 'show'=31 '|'=50 -'by'=54 -'on'=55 -'with'=56 -'as'=57 -'and'=58 -'asc'=59 -'='=60 -'::'=61 -':'=62 -','=63 -'desc'=64 -'.'=65 -'false'=66 -'first'=67 -'in'=68 -'is'=69 -'last'=70 -'like'=71 -'not'=72 -'null'=73 -'nulls'=74 -'or'=75 -'?'=76 -'rlike'=77 -'true'=78 +'and'=54 +'as'=55 +'asc'=56 +'='=57 +'by'=58 +'::'=59 +':'=60 +','=61 +'desc'=62 +'.'=63 +'false'=64 +'first'=65 +'in'=66 +'is'=67 +'last'=68 +'like'=69 +'not'=70 +'null'=71 +'nulls'=72 +'on'=73 +'or'=74 +'?'=75 +'rlike'=76 +'true'=77 +'with'=78 '=='=79 '=~'=80 '!='=81 diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens index 84809c193f627..06f8ce2861292 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens @@ -51,31 +51,31 @@ PIPE=50 QUOTED_STRING=51 INTEGER_LITERAL=52 DECIMAL_LITERAL=53 -BY=54 -ON=55 -WITH=56 -AS=57 -AND=58 -ASC=59 -ASSIGN=60 -CAST_OP=61 -COLON=62 -COMMA=63 -DESC=64 -DOT=65 -FALSE=66 -FIRST=67 -IN=68 -IS=69 -LAST=70 -LIKE=71 -NOT=72 -NULL=73 -NULLS=74 -OR=75 -PARAM=76 -RLIKE=77 -TRUE=78 +AND=54 +AS=55 +ASC=56 +ASSIGN=57 +BY=58 +CAST_OP=59 +COLON=60 +COMMA=61 +DESC=62 +DOT=63 +FALSE=64 +FIRST=65 +IN=66 +IS=67 +LAST=68 +LIKE=69 +NOT=70 +NULL=71 +NULLS=72 +ON=73 +OR=74 +PARAM=75 +RLIKE=76 +TRUE=77 +WITH=78 EQ=79 CIEQ=80 NEQ=81 @@ -153,31 +153,31 @@ SHOW_WS=137 'rename'=30 'show'=31 '|'=50 -'by'=54 -'on'=55 -'with'=56 -'as'=57 -'and'=58 -'asc'=59 -'='=60 -'::'=61 -':'=62 -','=63 -'desc'=64 -'.'=65 -'false'=66 -'first'=67 -'in'=68 -'is'=69 -'last'=70 -'like'=71 -'not'=72 -'null'=73 -'nulls'=74 -'or'=75 -'?'=76 -'rlike'=77 -'true'=78 +'and'=54 +'as'=55 +'asc'=56 +'='=57 +'by'=58 +'::'=59 +':'=60 +','=61 +'desc'=62 +'.'=63 +'false'=64 +'first'=65 +'in'=66 +'is'=67 +'last'=68 +'like'=69 +'not'=70 +'null'=71 +'nulls'=72 +'on'=73 +'or'=74 +'?'=75 +'rlike'=76 +'true'=77 +'with'=78 '=='=79 '=~'=80 '!='=81 diff --git a/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 b/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 index 4bf63a3ba8600..3146646dc4dfa 100644 --- a/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 +++ b/x-pack/plugin/esql/src/main/antlr/lexer/Expression.g4 @@ -83,14 +83,12 @@ DECIMAL_LITERAL | DOT DIGIT+ EXPONENT ; -BY : 'by'; -ON: 'on'; -WITH: 'with'; -AS: 'as'; AND : 'and'; +AS: 'as'; ASC : 'asc'; ASSIGN : '='; +BY : 'by'; CAST_OP : '::'; COLON : ':'; COMMA : ','; @@ -105,10 +103,12 @@ LIKE: 'like'; NOT : 'not'; NULL : 'null'; NULLS : 'nulls'; +ON: 'on'; OR : 'or'; PARAM: '?'; RLIKE: 'rlike'; TRUE : 'true'; +WITH: 'with'; EQ : '=='; CIEQ : '=~'; 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 2935c3bb76cfa..e622541b13452 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 @@ -53,13 +53,11 @@ null null null null -'by' -'on' -'with' -'as' 'and' +'as' 'asc' '=' +'by' '::' ':' ',' @@ -74,10 +72,12 @@ null 'not' 'null' 'nulls' +'on' 'or' '?' 'rlike' 'true' +'with' '==' '=~' '!=' @@ -193,13 +193,11 @@ PIPE QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL -BY -ON -WITH -AS AND +AS ASC ASSIGN +BY CAST_OP COLON COMMA @@ -214,10 +212,12 @@ LIKE NOT NULL NULLS +ON OR PARAM RLIKE TRUE +WITH EQ CIEQ NEQ @@ -370,13 +370,11 @@ UNQUOTED_ID_BODY QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL -BY -ON -WITH -AS AND +AS ASC ASSIGN +BY CAST_OP COLON COMMA @@ -391,10 +389,12 @@ LIKE NOT NULL NULLS +ON OR PARAM RLIKE TRUE +WITH EQ CIEQ NEQ @@ -539,4 +539,4 @@ RENAME_MODE SHOW_MODE atn: -[4, 0, 137, 1771, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 493, 8, 0, 10, 0, 12, 0, 496, 9, 0, 1, 0, 3, 0, 499, 8, 0, 1, 0, 3, 0, 502, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 511, 8, 1, 10, 1, 12, 1, 514, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 522, 8, 2, 11, 2, 12, 2, 523, 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, 15, 1, 15, 1, 15, 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, 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, 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, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 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, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 4, 31, 783, 8, 31, 11, 31, 12, 31, 784, 1, 31, 1, 31, 1, 32, 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, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 4, 47, 853, 8, 47, 11, 47, 12, 47, 854, 1, 47, 1, 47, 3, 47, 859, 8, 47, 1, 47, 4, 47, 862, 8, 47, 11, 47, 12, 47, 863, 1, 48, 1, 48, 1, 48, 1, 48, 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, 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, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 956, 8, 68, 11, 68, 12, 68, 957, 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, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1009, 8, 82, 1, 82, 4, 82, 1012, 8, 82, 11, 82, 12, 82, 1013, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1023, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1030, 8, 87, 1, 88, 1, 88, 1, 88, 5, 88, 1035, 8, 88, 10, 88, 12, 88, 1038, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1046, 8, 88, 10, 88, 12, 88, 1049, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1056, 8, 88, 1, 88, 3, 88, 1059, 8, 88, 3, 88, 1061, 8, 88, 1, 89, 4, 89, 1064, 8, 89, 11, 89, 12, 89, 1065, 1, 90, 4, 90, 1069, 8, 90, 11, 90, 12, 90, 1070, 1, 90, 1, 90, 5, 90, 1075, 8, 90, 10, 90, 12, 90, 1078, 9, 90, 1, 90, 1, 90, 4, 90, 1082, 8, 90, 11, 90, 12, 90, 1083, 1, 90, 4, 90, 1087, 8, 90, 11, 90, 12, 90, 1088, 1, 90, 1, 90, 5, 90, 1093, 8, 90, 10, 90, 12, 90, 1096, 9, 90, 3, 90, 1098, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 4, 90, 1104, 8, 90, 11, 90, 12, 90, 1105, 1, 90, 1, 90, 3, 90, 1110, 8, 90, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 3, 132, 1253, 8, 132, 1, 132, 5, 132, 1256, 8, 132, 10, 132, 12, 132, 1259, 9, 132, 1, 132, 1, 132, 4, 132, 1263, 8, 132, 11, 132, 12, 132, 1264, 3, 132, 1267, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1272, 8, 133, 1, 133, 5, 133, 1275, 8, 133, 10, 133, 12, 133, 1278, 9, 133, 1, 133, 1, 133, 4, 133, 1282, 8, 133, 11, 133, 12, 133, 1283, 3, 133, 1286, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 5, 138, 1310, 8, 138, 10, 138, 12, 138, 1313, 9, 138, 1, 138, 1, 138, 3, 138, 1317, 8, 138, 1, 138, 4, 138, 1320, 8, 138, 11, 138, 12, 138, 1321, 3, 138, 1324, 8, 138, 1, 139, 1, 139, 4, 139, 1328, 8, 139, 11, 139, 12, 139, 1329, 1, 139, 1, 139, 1, 140, 1, 140, 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, 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, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 3, 152, 1390, 8, 152, 1, 153, 4, 153, 1393, 8, 153, 11, 153, 12, 153, 1394, 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, 159, 1, 160, 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, 163, 1, 163, 1, 163, 1, 163, 1, 164, 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, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 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, 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, 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, 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, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 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, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 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, 198, 1, 199, 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, 204, 1, 204, 1, 204, 1, 204, 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, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 1654, 8, 212, 1, 213, 1, 213, 3, 213, 1658, 8, 213, 1, 213, 5, 213, 1661, 8, 213, 10, 213, 12, 213, 1664, 9, 213, 1, 213, 1, 213, 3, 213, 1668, 8, 213, 1, 213, 4, 213, 1671, 8, 213, 11, 213, 12, 213, 1672, 3, 213, 1675, 8, 213, 1, 214, 1, 214, 4, 214, 1679, 8, 214, 11, 214, 12, 214, 1680, 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, 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, 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, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 2, 512, 1047, 0, 236, 16, 1, 18, 2, 20, 3, 22, 4, 24, 5, 26, 6, 28, 7, 30, 8, 32, 9, 34, 10, 36, 11, 38, 12, 40, 13, 42, 14, 44, 15, 46, 16, 48, 17, 50, 18, 52, 19, 54, 20, 56, 21, 58, 22, 60, 23, 62, 24, 64, 25, 66, 26, 68, 27, 70, 28, 72, 29, 74, 30, 76, 31, 78, 32, 80, 0, 82, 0, 84, 0, 86, 0, 88, 0, 90, 0, 92, 0, 94, 33, 96, 34, 98, 35, 100, 0, 102, 0, 104, 0, 106, 0, 108, 0, 110, 36, 112, 0, 114, 37, 116, 38, 118, 39, 120, 0, 122, 0, 124, 0, 126, 0, 128, 0, 130, 0, 132, 0, 134, 0, 136, 0, 138, 0, 140, 0, 142, 40, 144, 41, 146, 42, 148, 0, 150, 0, 152, 43, 154, 44, 156, 45, 158, 46, 160, 0, 162, 0, 164, 47, 166, 48, 168, 49, 170, 50, 172, 0, 174, 0, 176, 0, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 51, 194, 52, 196, 53, 198, 54, 200, 55, 202, 56, 204, 57, 206, 58, 208, 59, 210, 60, 212, 61, 214, 62, 216, 63, 218, 64, 220, 65, 222, 66, 224, 67, 226, 68, 228, 69, 230, 70, 232, 71, 234, 72, 236, 73, 238, 74, 240, 75, 242, 76, 244, 77, 246, 78, 248, 79, 250, 80, 252, 81, 254, 82, 256, 83, 258, 84, 260, 85, 262, 86, 264, 87, 266, 88, 268, 89, 270, 90, 272, 91, 274, 92, 276, 93, 278, 0, 280, 94, 282, 95, 284, 96, 286, 97, 288, 98, 290, 99, 292, 100, 294, 0, 296, 101, 298, 102, 300, 103, 302, 104, 304, 0, 306, 0, 308, 0, 310, 0, 312, 0, 314, 0, 316, 0, 318, 105, 320, 0, 322, 106, 324, 0, 326, 0, 328, 107, 330, 108, 332, 109, 334, 0, 336, 0, 338, 110, 340, 111, 342, 112, 344, 0, 346, 113, 348, 0, 350, 0, 352, 114, 354, 0, 356, 0, 358, 0, 360, 0, 362, 0, 364, 115, 366, 116, 368, 117, 370, 0, 372, 0, 374, 0, 376, 0, 378, 0, 380, 0, 382, 0, 384, 118, 386, 119, 388, 120, 390, 0, 392, 0, 394, 0, 396, 0, 398, 121, 400, 122, 402, 123, 404, 0, 406, 0, 408, 0, 410, 0, 412, 0, 414, 0, 416, 0, 418, 0, 420, 124, 422, 125, 424, 126, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 0, 440, 0, 442, 0, 444, 127, 446, 128, 448, 129, 450, 130, 452, 0, 454, 0, 456, 0, 458, 0, 460, 0, 462, 0, 464, 0, 466, 0, 468, 0, 470, 0, 472, 131, 474, 132, 476, 133, 478, 0, 480, 134, 482, 135, 484, 136, 486, 137, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 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, 1802, 0, 16, 1, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 1, 80, 1, 0, 0, 0, 1, 82, 1, 0, 0, 0, 1, 84, 1, 0, 0, 0, 1, 86, 1, 0, 0, 0, 1, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 2, 100, 1, 0, 0, 0, 2, 102, 1, 0, 0, 0, 2, 104, 1, 0, 0, 0, 2, 106, 1, 0, 0, 0, 2, 110, 1, 0, 0, 0, 2, 112, 1, 0, 0, 0, 2, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 3, 120, 1, 0, 0, 0, 3, 122, 1, 0, 0, 0, 3, 124, 1, 0, 0, 0, 3, 126, 1, 0, 0, 0, 3, 128, 1, 0, 0, 0, 3, 130, 1, 0, 0, 0, 3, 132, 1, 0, 0, 0, 3, 134, 1, 0, 0, 0, 3, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 4, 148, 1, 0, 0, 0, 4, 150, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 4, 156, 1, 0, 0, 0, 4, 158, 1, 0, 0, 0, 5, 160, 1, 0, 0, 0, 5, 162, 1, 0, 0, 0, 5, 164, 1, 0, 0, 0, 5, 166, 1, 0, 0, 0, 5, 168, 1, 0, 0, 0, 6, 170, 1, 0, 0, 0, 6, 192, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 6, 200, 1, 0, 0, 0, 6, 202, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 6, 210, 1, 0, 0, 0, 6, 212, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 6, 220, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 6, 224, 1, 0, 0, 0, 6, 226, 1, 0, 0, 0, 6, 228, 1, 0, 0, 0, 6, 230, 1, 0, 0, 0, 6, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 6, 236, 1, 0, 0, 0, 6, 238, 1, 0, 0, 0, 6, 240, 1, 0, 0, 0, 6, 242, 1, 0, 0, 0, 6, 244, 1, 0, 0, 0, 6, 246, 1, 0, 0, 0, 6, 248, 1, 0, 0, 0, 6, 250, 1, 0, 0, 0, 6, 252, 1, 0, 0, 0, 6, 254, 1, 0, 0, 0, 6, 256, 1, 0, 0, 0, 6, 258, 1, 0, 0, 0, 6, 260, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 6, 264, 1, 0, 0, 0, 6, 266, 1, 0, 0, 0, 6, 268, 1, 0, 0, 0, 6, 270, 1, 0, 0, 0, 6, 272, 1, 0, 0, 0, 6, 274, 1, 0, 0, 0, 6, 276, 1, 0, 0, 0, 6, 278, 1, 0, 0, 0, 6, 280, 1, 0, 0, 0, 6, 282, 1, 0, 0, 0, 6, 284, 1, 0, 0, 0, 6, 286, 1, 0, 0, 0, 6, 288, 1, 0, 0, 0, 6, 290, 1, 0, 0, 0, 6, 292, 1, 0, 0, 0, 6, 296, 1, 0, 0, 0, 6, 298, 1, 0, 0, 0, 6, 300, 1, 0, 0, 0, 6, 302, 1, 0, 0, 0, 7, 304, 1, 0, 0, 0, 7, 306, 1, 0, 0, 0, 7, 308, 1, 0, 0, 0, 7, 310, 1, 0, 0, 0, 7, 312, 1, 0, 0, 0, 7, 314, 1, 0, 0, 0, 7, 316, 1, 0, 0, 0, 7, 318, 1, 0, 0, 0, 7, 322, 1, 0, 0, 0, 7, 324, 1, 0, 0, 0, 7, 326, 1, 0, 0, 0, 7, 328, 1, 0, 0, 0, 7, 330, 1, 0, 0, 0, 7, 332, 1, 0, 0, 0, 8, 334, 1, 0, 0, 0, 8, 336, 1, 0, 0, 0, 8, 338, 1, 0, 0, 0, 8, 340, 1, 0, 0, 0, 8, 342, 1, 0, 0, 0, 9, 344, 1, 0, 0, 0, 9, 346, 1, 0, 0, 0, 9, 348, 1, 0, 0, 0, 9, 350, 1, 0, 0, 0, 9, 352, 1, 0, 0, 0, 9, 354, 1, 0, 0, 0, 9, 356, 1, 0, 0, 0, 9, 358, 1, 0, 0, 0, 9, 360, 1, 0, 0, 0, 9, 362, 1, 0, 0, 0, 9, 364, 1, 0, 0, 0, 9, 366, 1, 0, 0, 0, 9, 368, 1, 0, 0, 0, 10, 370, 1, 0, 0, 0, 10, 372, 1, 0, 0, 0, 10, 374, 1, 0, 0, 0, 10, 376, 1, 0, 0, 0, 10, 378, 1, 0, 0, 0, 10, 380, 1, 0, 0, 0, 10, 382, 1, 0, 0, 0, 10, 384, 1, 0, 0, 0, 10, 386, 1, 0, 0, 0, 10, 388, 1, 0, 0, 0, 11, 390, 1, 0, 0, 0, 11, 392, 1, 0, 0, 0, 11, 394, 1, 0, 0, 0, 11, 396, 1, 0, 0, 0, 11, 398, 1, 0, 0, 0, 11, 400, 1, 0, 0, 0, 11, 402, 1, 0, 0, 0, 12, 404, 1, 0, 0, 0, 12, 406, 1, 0, 0, 0, 12, 408, 1, 0, 0, 0, 12, 410, 1, 0, 0, 0, 12, 412, 1, 0, 0, 0, 12, 414, 1, 0, 0, 0, 12, 416, 1, 0, 0, 0, 12, 418, 1, 0, 0, 0, 12, 420, 1, 0, 0, 0, 12, 422, 1, 0, 0, 0, 12, 424, 1, 0, 0, 0, 13, 426, 1, 0, 0, 0, 13, 428, 1, 0, 0, 0, 13, 430, 1, 0, 0, 0, 13, 432, 1, 0, 0, 0, 13, 434, 1, 0, 0, 0, 13, 436, 1, 0, 0, 0, 13, 438, 1, 0, 0, 0, 13, 444, 1, 0, 0, 0, 13, 446, 1, 0, 0, 0, 13, 448, 1, 0, 0, 0, 13, 450, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 14, 454, 1, 0, 0, 0, 14, 456, 1, 0, 0, 0, 14, 458, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 14, 462, 1, 0, 0, 0, 14, 464, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 14, 468, 1, 0, 0, 0, 14, 470, 1, 0, 0, 0, 14, 472, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 15, 478, 1, 0, 0, 0, 15, 480, 1, 0, 0, 0, 15, 482, 1, 0, 0, 0, 15, 484, 1, 0, 0, 0, 15, 486, 1, 0, 0, 0, 16, 488, 1, 0, 0, 0, 18, 505, 1, 0, 0, 0, 20, 521, 1, 0, 0, 0, 22, 527, 1, 0, 0, 0, 24, 543, 1, 0, 0, 0, 26, 552, 1, 0, 0, 0, 28, 562, 1, 0, 0, 0, 30, 572, 1, 0, 0, 0, 32, 579, 1, 0, 0, 0, 34, 586, 1, 0, 0, 0, 36, 594, 1, 0, 0, 0, 38, 600, 1, 0, 0, 0, 40, 607, 1, 0, 0, 0, 42, 615, 1, 0, 0, 0, 44, 623, 1, 0, 0, 0, 46, 638, 1, 0, 0, 0, 48, 648, 1, 0, 0, 0, 50, 655, 1, 0, 0, 0, 52, 666, 1, 0, 0, 0, 54, 674, 1, 0, 0, 0, 56, 683, 1, 0, 0, 0, 58, 691, 1, 0, 0, 0, 60, 699, 1, 0, 0, 0, 62, 708, 1, 0, 0, 0, 64, 720, 1, 0, 0, 0, 66, 732, 1, 0, 0, 0, 68, 739, 1, 0, 0, 0, 70, 746, 1, 0, 0, 0, 72, 758, 1, 0, 0, 0, 74, 765, 1, 0, 0, 0, 76, 774, 1, 0, 0, 0, 78, 782, 1, 0, 0, 0, 80, 788, 1, 0, 0, 0, 82, 793, 1, 0, 0, 0, 84, 797, 1, 0, 0, 0, 86, 801, 1, 0, 0, 0, 88, 805, 1, 0, 0, 0, 90, 809, 1, 0, 0, 0, 92, 813, 1, 0, 0, 0, 94, 817, 1, 0, 0, 0, 96, 821, 1, 0, 0, 0, 98, 825, 1, 0, 0, 0, 100, 829, 1, 0, 0, 0, 102, 834, 1, 0, 0, 0, 104, 839, 1, 0, 0, 0, 106, 844, 1, 0, 0, 0, 108, 849, 1, 0, 0, 0, 110, 858, 1, 0, 0, 0, 112, 865, 1, 0, 0, 0, 114, 869, 1, 0, 0, 0, 116, 873, 1, 0, 0, 0, 118, 877, 1, 0, 0, 0, 120, 881, 1, 0, 0, 0, 122, 887, 1, 0, 0, 0, 124, 891, 1, 0, 0, 0, 126, 895, 1, 0, 0, 0, 128, 899, 1, 0, 0, 0, 130, 903, 1, 0, 0, 0, 132, 907, 1, 0, 0, 0, 134, 911, 1, 0, 0, 0, 136, 915, 1, 0, 0, 0, 138, 919, 1, 0, 0, 0, 140, 924, 1, 0, 0, 0, 142, 929, 1, 0, 0, 0, 144, 933, 1, 0, 0, 0, 146, 937, 1, 0, 0, 0, 148, 941, 1, 0, 0, 0, 150, 946, 1, 0, 0, 0, 152, 955, 1, 0, 0, 0, 154, 959, 1, 0, 0, 0, 156, 963, 1, 0, 0, 0, 158, 967, 1, 0, 0, 0, 160, 971, 1, 0, 0, 0, 162, 976, 1, 0, 0, 0, 164, 981, 1, 0, 0, 0, 166, 985, 1, 0, 0, 0, 168, 989, 1, 0, 0, 0, 170, 993, 1, 0, 0, 0, 172, 997, 1, 0, 0, 0, 174, 999, 1, 0, 0, 0, 176, 1001, 1, 0, 0, 0, 178, 1004, 1, 0, 0, 0, 180, 1006, 1, 0, 0, 0, 182, 1015, 1, 0, 0, 0, 184, 1017, 1, 0, 0, 0, 186, 1022, 1, 0, 0, 0, 188, 1024, 1, 0, 0, 0, 190, 1029, 1, 0, 0, 0, 192, 1060, 1, 0, 0, 0, 194, 1063, 1, 0, 0, 0, 196, 1109, 1, 0, 0, 0, 198, 1111, 1, 0, 0, 0, 200, 1114, 1, 0, 0, 0, 202, 1117, 1, 0, 0, 0, 204, 1122, 1, 0, 0, 0, 206, 1125, 1, 0, 0, 0, 208, 1129, 1, 0, 0, 0, 210, 1133, 1, 0, 0, 0, 212, 1135, 1, 0, 0, 0, 214, 1138, 1, 0, 0, 0, 216, 1140, 1, 0, 0, 0, 218, 1142, 1, 0, 0, 0, 220, 1147, 1, 0, 0, 0, 222, 1149, 1, 0, 0, 0, 224, 1155, 1, 0, 0, 0, 226, 1161, 1, 0, 0, 0, 228, 1164, 1, 0, 0, 0, 230, 1167, 1, 0, 0, 0, 232, 1172, 1, 0, 0, 0, 234, 1177, 1, 0, 0, 0, 236, 1181, 1, 0, 0, 0, 238, 1186, 1, 0, 0, 0, 240, 1192, 1, 0, 0, 0, 242, 1195, 1, 0, 0, 0, 244, 1197, 1, 0, 0, 0, 246, 1203, 1, 0, 0, 0, 248, 1208, 1, 0, 0, 0, 250, 1211, 1, 0, 0, 0, 252, 1214, 1, 0, 0, 0, 254, 1217, 1, 0, 0, 0, 256, 1219, 1, 0, 0, 0, 258, 1222, 1, 0, 0, 0, 260, 1224, 1, 0, 0, 0, 262, 1227, 1, 0, 0, 0, 264, 1229, 1, 0, 0, 0, 266, 1231, 1, 0, 0, 0, 268, 1233, 1, 0, 0, 0, 270, 1235, 1, 0, 0, 0, 272, 1237, 1, 0, 0, 0, 274, 1239, 1, 0, 0, 0, 276, 1241, 1, 0, 0, 0, 278, 1245, 1, 0, 0, 0, 280, 1266, 1, 0, 0, 0, 282, 1285, 1, 0, 0, 0, 284, 1287, 1, 0, 0, 0, 286, 1292, 1, 0, 0, 0, 288, 1297, 1, 0, 0, 0, 290, 1302, 1, 0, 0, 0, 292, 1323, 1, 0, 0, 0, 294, 1325, 1, 0, 0, 0, 296, 1333, 1, 0, 0, 0, 298, 1335, 1, 0, 0, 0, 300, 1339, 1, 0, 0, 0, 302, 1343, 1, 0, 0, 0, 304, 1347, 1, 0, 0, 0, 306, 1352, 1, 0, 0, 0, 308, 1356, 1, 0, 0, 0, 310, 1360, 1, 0, 0, 0, 312, 1364, 1, 0, 0, 0, 314, 1369, 1, 0, 0, 0, 316, 1373, 1, 0, 0, 0, 318, 1377, 1, 0, 0, 0, 320, 1389, 1, 0, 0, 0, 322, 1392, 1, 0, 0, 0, 324, 1396, 1, 0, 0, 0, 326, 1400, 1, 0, 0, 0, 328, 1404, 1, 0, 0, 0, 330, 1408, 1, 0, 0, 0, 332, 1412, 1, 0, 0, 0, 334, 1416, 1, 0, 0, 0, 336, 1421, 1, 0, 0, 0, 338, 1426, 1, 0, 0, 0, 340, 1430, 1, 0, 0, 0, 342, 1434, 1, 0, 0, 0, 344, 1438, 1, 0, 0, 0, 346, 1443, 1, 0, 0, 0, 348, 1448, 1, 0, 0, 0, 350, 1452, 1, 0, 0, 0, 352, 1458, 1, 0, 0, 0, 354, 1467, 1, 0, 0, 0, 356, 1471, 1, 0, 0, 0, 358, 1475, 1, 0, 0, 0, 360, 1479, 1, 0, 0, 0, 362, 1483, 1, 0, 0, 0, 364, 1487, 1, 0, 0, 0, 366, 1491, 1, 0, 0, 0, 368, 1495, 1, 0, 0, 0, 370, 1499, 1, 0, 0, 0, 372, 1504, 1, 0, 0, 0, 374, 1508, 1, 0, 0, 0, 376, 1512, 1, 0, 0, 0, 378, 1516, 1, 0, 0, 0, 380, 1521, 1, 0, 0, 0, 382, 1525, 1, 0, 0, 0, 384, 1529, 1, 0, 0, 0, 386, 1533, 1, 0, 0, 0, 388, 1537, 1, 0, 0, 0, 390, 1541, 1, 0, 0, 0, 392, 1547, 1, 0, 0, 0, 394, 1551, 1, 0, 0, 0, 396, 1555, 1, 0, 0, 0, 398, 1559, 1, 0, 0, 0, 400, 1563, 1, 0, 0, 0, 402, 1567, 1, 0, 0, 0, 404, 1571, 1, 0, 0, 0, 406, 1576, 1, 0, 0, 0, 408, 1580, 1, 0, 0, 0, 410, 1584, 1, 0, 0, 0, 412, 1588, 1, 0, 0, 0, 414, 1593, 1, 0, 0, 0, 416, 1598, 1, 0, 0, 0, 418, 1602, 1, 0, 0, 0, 420, 1606, 1, 0, 0, 0, 422, 1610, 1, 0, 0, 0, 424, 1614, 1, 0, 0, 0, 426, 1618, 1, 0, 0, 0, 428, 1623, 1, 0, 0, 0, 430, 1627, 1, 0, 0, 0, 432, 1631, 1, 0, 0, 0, 434, 1635, 1, 0, 0, 0, 436, 1639, 1, 0, 0, 0, 438, 1644, 1, 0, 0, 0, 440, 1653, 1, 0, 0, 0, 442, 1674, 1, 0, 0, 0, 444, 1678, 1, 0, 0, 0, 446, 1682, 1, 0, 0, 0, 448, 1686, 1, 0, 0, 0, 450, 1690, 1, 0, 0, 0, 452, 1694, 1, 0, 0, 0, 454, 1699, 1, 0, 0, 0, 456, 1703, 1, 0, 0, 0, 458, 1707, 1, 0, 0, 0, 460, 1711, 1, 0, 0, 0, 462, 1715, 1, 0, 0, 0, 464, 1719, 1, 0, 0, 0, 466, 1724, 1, 0, 0, 0, 468, 1729, 1, 0, 0, 0, 470, 1733, 1, 0, 0, 0, 472, 1737, 1, 0, 0, 0, 474, 1741, 1, 0, 0, 0, 476, 1745, 1, 0, 0, 0, 478, 1749, 1, 0, 0, 0, 480, 1754, 1, 0, 0, 0, 482, 1759, 1, 0, 0, 0, 484, 1763, 1, 0, 0, 0, 486, 1767, 1, 0, 0, 0, 488, 489, 5, 47, 0, 0, 489, 490, 5, 47, 0, 0, 490, 494, 1, 0, 0, 0, 491, 493, 8, 0, 0, 0, 492, 491, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 499, 5, 13, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 5, 10, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 6, 0, 0, 0, 504, 17, 1, 0, 0, 0, 505, 506, 5, 47, 0, 0, 506, 507, 5, 42, 0, 0, 507, 512, 1, 0, 0, 0, 508, 511, 3, 18, 1, 0, 509, 511, 9, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 515, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 42, 0, 0, 516, 517, 5, 47, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 1, 0, 0, 519, 19, 1, 0, 0, 0, 520, 522, 7, 1, 0, 0, 521, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 6, 2, 0, 0, 526, 21, 1, 0, 0, 0, 527, 528, 4, 3, 0, 0, 528, 529, 7, 2, 0, 0, 529, 530, 7, 3, 0, 0, 530, 531, 7, 4, 0, 0, 531, 532, 7, 5, 0, 0, 532, 533, 7, 6, 0, 0, 533, 534, 7, 7, 0, 0, 534, 535, 5, 95, 0, 0, 535, 536, 7, 8, 0, 0, 536, 537, 7, 9, 0, 0, 537, 538, 7, 10, 0, 0, 538, 539, 7, 5, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 6, 3, 1, 0, 542, 23, 1, 0, 0, 0, 543, 544, 7, 7, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 7, 12, 0, 0, 546, 547, 7, 10, 0, 0, 547, 548, 7, 2, 0, 0, 548, 549, 7, 3, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 6, 4, 2, 0, 551, 25, 1, 0, 0, 0, 552, 553, 7, 7, 0, 0, 553, 554, 7, 13, 0, 0, 554, 555, 7, 8, 0, 0, 555, 556, 7, 14, 0, 0, 556, 557, 7, 4, 0, 0, 557, 558, 7, 10, 0, 0, 558, 559, 7, 5, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 6, 5, 3, 0, 561, 27, 1, 0, 0, 0, 562, 563, 7, 15, 0, 0, 563, 564, 7, 10, 0, 0, 564, 565, 7, 16, 0, 0, 565, 566, 7, 16, 0, 0, 566, 567, 7, 7, 0, 0, 567, 568, 7, 2, 0, 0, 568, 569, 7, 11, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 6, 6, 4, 0, 571, 29, 1, 0, 0, 0, 572, 573, 7, 7, 0, 0, 573, 574, 7, 17, 0, 0, 574, 575, 7, 4, 0, 0, 575, 576, 7, 14, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 6, 7, 4, 0, 578, 31, 1, 0, 0, 0, 579, 580, 7, 6, 0, 0, 580, 581, 7, 12, 0, 0, 581, 582, 7, 9, 0, 0, 582, 583, 7, 18, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 6, 8, 4, 0, 585, 33, 1, 0, 0, 0, 586, 587, 7, 14, 0, 0, 587, 588, 7, 10, 0, 0, 588, 589, 7, 19, 0, 0, 589, 590, 7, 10, 0, 0, 590, 591, 7, 11, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 6, 9, 4, 0, 593, 35, 1, 0, 0, 0, 594, 595, 7, 12, 0, 0, 595, 596, 7, 9, 0, 0, 596, 597, 7, 20, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 6, 10, 4, 0, 599, 37, 1, 0, 0, 0, 600, 601, 7, 16, 0, 0, 601, 602, 7, 9, 0, 0, 602, 603, 7, 12, 0, 0, 603, 604, 7, 11, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 6, 11, 4, 0, 606, 39, 1, 0, 0, 0, 607, 608, 7, 16, 0, 0, 608, 609, 7, 11, 0, 0, 609, 610, 7, 4, 0, 0, 610, 611, 7, 11, 0, 0, 611, 612, 7, 16, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 6, 12, 4, 0, 614, 41, 1, 0, 0, 0, 615, 616, 7, 20, 0, 0, 616, 617, 7, 3, 0, 0, 617, 618, 7, 7, 0, 0, 618, 619, 7, 12, 0, 0, 619, 620, 7, 7, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 6, 13, 4, 0, 622, 43, 1, 0, 0, 0, 623, 624, 4, 14, 1, 0, 624, 625, 7, 10, 0, 0, 625, 626, 7, 5, 0, 0, 626, 627, 7, 14, 0, 0, 627, 628, 7, 10, 0, 0, 628, 629, 7, 5, 0, 0, 629, 630, 7, 7, 0, 0, 630, 631, 7, 16, 0, 0, 631, 632, 7, 11, 0, 0, 632, 633, 7, 4, 0, 0, 633, 634, 7, 11, 0, 0, 634, 635, 7, 16, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 6, 14, 4, 0, 637, 45, 1, 0, 0, 0, 638, 639, 4, 15, 2, 0, 639, 640, 7, 12, 0, 0, 640, 641, 7, 7, 0, 0, 641, 642, 7, 12, 0, 0, 642, 643, 7, 4, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 7, 18, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 6, 15, 4, 0, 647, 47, 1, 0, 0, 0, 648, 649, 7, 21, 0, 0, 649, 650, 7, 12, 0, 0, 650, 651, 7, 9, 0, 0, 651, 652, 7, 19, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 6, 16, 5, 0, 654, 49, 1, 0, 0, 0, 655, 656, 4, 17, 3, 0, 656, 657, 7, 19, 0, 0, 657, 658, 7, 7, 0, 0, 658, 659, 7, 11, 0, 0, 659, 660, 7, 12, 0, 0, 660, 661, 7, 10, 0, 0, 661, 662, 7, 2, 0, 0, 662, 663, 7, 16, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 6, 17, 5, 0, 665, 51, 1, 0, 0, 0, 666, 667, 4, 18, 4, 0, 667, 668, 7, 21, 0, 0, 668, 669, 7, 9, 0, 0, 669, 670, 7, 12, 0, 0, 670, 671, 7, 18, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 6, 18, 6, 0, 673, 53, 1, 0, 0, 0, 674, 675, 7, 14, 0, 0, 675, 676, 7, 9, 0, 0, 676, 677, 7, 9, 0, 0, 677, 678, 7, 18, 0, 0, 678, 679, 7, 22, 0, 0, 679, 680, 7, 8, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 6, 19, 7, 0, 682, 55, 1, 0, 0, 0, 683, 684, 4, 20, 5, 0, 684, 685, 7, 21, 0, 0, 685, 686, 7, 22, 0, 0, 686, 687, 7, 14, 0, 0, 687, 688, 7, 14, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 6, 20, 7, 0, 690, 57, 1, 0, 0, 0, 691, 692, 4, 21, 6, 0, 692, 693, 7, 14, 0, 0, 693, 694, 7, 7, 0, 0, 694, 695, 7, 21, 0, 0, 695, 696, 7, 11, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 6, 21, 7, 0, 698, 59, 1, 0, 0, 0, 699, 700, 4, 22, 7, 0, 700, 701, 7, 12, 0, 0, 701, 702, 7, 10, 0, 0, 702, 703, 7, 6, 0, 0, 703, 704, 7, 3, 0, 0, 704, 705, 7, 11, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 6, 22, 7, 0, 707, 61, 1, 0, 0, 0, 708, 709, 4, 23, 8, 0, 709, 710, 7, 14, 0, 0, 710, 711, 7, 9, 0, 0, 711, 712, 7, 9, 0, 0, 712, 713, 7, 18, 0, 0, 713, 714, 7, 22, 0, 0, 714, 715, 7, 8, 0, 0, 715, 716, 5, 95, 0, 0, 716, 717, 5, 128020, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 6, 23, 8, 0, 719, 63, 1, 0, 0, 0, 720, 721, 7, 19, 0, 0, 721, 722, 7, 17, 0, 0, 722, 723, 5, 95, 0, 0, 723, 724, 7, 7, 0, 0, 724, 725, 7, 13, 0, 0, 725, 726, 7, 8, 0, 0, 726, 727, 7, 4, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 7, 15, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 6, 24, 9, 0, 731, 65, 1, 0, 0, 0, 732, 733, 7, 15, 0, 0, 733, 734, 7, 12, 0, 0, 734, 735, 7, 9, 0, 0, 735, 736, 7, 8, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 6, 25, 10, 0, 738, 67, 1, 0, 0, 0, 739, 740, 7, 18, 0, 0, 740, 741, 7, 7, 0, 0, 741, 742, 7, 7, 0, 0, 742, 743, 7, 8, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 6, 26, 10, 0, 745, 69, 1, 0, 0, 0, 746, 747, 4, 27, 9, 0, 747, 748, 7, 10, 0, 0, 748, 749, 7, 5, 0, 0, 749, 750, 7, 16, 0, 0, 750, 751, 7, 10, 0, 0, 751, 752, 7, 16, 0, 0, 752, 753, 7, 11, 0, 0, 753, 754, 5, 95, 0, 0, 754, 755, 5, 128020, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 6, 27, 10, 0, 757, 71, 1, 0, 0, 0, 758, 759, 4, 28, 10, 0, 759, 760, 7, 12, 0, 0, 760, 761, 7, 12, 0, 0, 761, 762, 7, 21, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 6, 28, 4, 0, 764, 73, 1, 0, 0, 0, 765, 766, 7, 12, 0, 0, 766, 767, 7, 7, 0, 0, 767, 768, 7, 5, 0, 0, 768, 769, 7, 4, 0, 0, 769, 770, 7, 19, 0, 0, 770, 771, 7, 7, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 6, 29, 11, 0, 773, 75, 1, 0, 0, 0, 774, 775, 7, 16, 0, 0, 775, 776, 7, 3, 0, 0, 776, 777, 7, 9, 0, 0, 777, 778, 7, 20, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 30, 12, 0, 780, 77, 1, 0, 0, 0, 781, 783, 8, 23, 0, 0, 782, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 6, 31, 4, 0, 787, 79, 1, 0, 0, 0, 788, 789, 3, 170, 77, 0, 789, 790, 1, 0, 0, 0, 790, 791, 6, 32, 13, 0, 791, 792, 6, 32, 14, 0, 792, 81, 1, 0, 0, 0, 793, 794, 3, 200, 92, 0, 794, 795, 1, 0, 0, 0, 795, 796, 6, 33, 15, 0, 796, 83, 1, 0, 0, 0, 797, 798, 3, 204, 94, 0, 798, 799, 1, 0, 0, 0, 799, 800, 6, 34, 16, 0, 800, 85, 1, 0, 0, 0, 801, 802, 3, 220, 102, 0, 802, 803, 1, 0, 0, 0, 803, 804, 6, 35, 17, 0, 804, 87, 1, 0, 0, 0, 805, 806, 3, 216, 100, 0, 806, 807, 1, 0, 0, 0, 807, 808, 6, 36, 18, 0, 808, 89, 1, 0, 0, 0, 809, 810, 3, 296, 140, 0, 810, 811, 1, 0, 0, 0, 811, 812, 6, 37, 19, 0, 812, 91, 1, 0, 0, 0, 813, 814, 3, 292, 138, 0, 814, 815, 1, 0, 0, 0, 815, 816, 6, 38, 20, 0, 816, 93, 1, 0, 0, 0, 817, 818, 3, 16, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 6, 39, 0, 0, 820, 95, 1, 0, 0, 0, 821, 822, 3, 18, 1, 0, 822, 823, 1, 0, 0, 0, 823, 824, 6, 40, 0, 0, 824, 97, 1, 0, 0, 0, 825, 826, 3, 20, 2, 0, 826, 827, 1, 0, 0, 0, 827, 828, 6, 41, 0, 0, 828, 99, 1, 0, 0, 0, 829, 830, 3, 170, 77, 0, 830, 831, 1, 0, 0, 0, 831, 832, 6, 42, 13, 0, 832, 833, 6, 42, 14, 0, 833, 101, 1, 0, 0, 0, 834, 835, 3, 284, 134, 0, 835, 836, 1, 0, 0, 0, 836, 837, 6, 43, 21, 0, 837, 838, 6, 43, 22, 0, 838, 103, 1, 0, 0, 0, 839, 840, 3, 200, 92, 0, 840, 841, 1, 0, 0, 0, 841, 842, 6, 44, 15, 0, 842, 843, 6, 44, 23, 0, 843, 105, 1, 0, 0, 0, 844, 845, 3, 202, 93, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 45, 24, 0, 847, 848, 6, 45, 23, 0, 848, 107, 1, 0, 0, 0, 849, 850, 8, 24, 0, 0, 850, 109, 1, 0, 0, 0, 851, 853, 3, 108, 46, 0, 852, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 3, 214, 99, 0, 857, 859, 1, 0, 0, 0, 858, 852, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 3, 108, 46, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 111, 1, 0, 0, 0, 865, 866, 3, 110, 47, 0, 866, 867, 1, 0, 0, 0, 867, 868, 6, 48, 25, 0, 868, 113, 1, 0, 0, 0, 869, 870, 3, 16, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 6, 49, 0, 0, 872, 115, 1, 0, 0, 0, 873, 874, 3, 18, 1, 0, 874, 875, 1, 0, 0, 0, 875, 876, 6, 50, 0, 0, 876, 117, 1, 0, 0, 0, 877, 878, 3, 20, 2, 0, 878, 879, 1, 0, 0, 0, 879, 880, 6, 51, 0, 0, 880, 119, 1, 0, 0, 0, 881, 882, 3, 170, 77, 0, 882, 883, 1, 0, 0, 0, 883, 884, 6, 52, 13, 0, 884, 885, 6, 52, 14, 0, 885, 886, 6, 52, 14, 0, 886, 121, 1, 0, 0, 0, 887, 888, 3, 210, 97, 0, 888, 889, 1, 0, 0, 0, 889, 890, 6, 53, 26, 0, 890, 123, 1, 0, 0, 0, 891, 892, 3, 216, 100, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 54, 18, 0, 894, 125, 1, 0, 0, 0, 895, 896, 3, 220, 102, 0, 896, 897, 1, 0, 0, 0, 897, 898, 6, 55, 17, 0, 898, 127, 1, 0, 0, 0, 899, 900, 3, 202, 93, 0, 900, 901, 1, 0, 0, 0, 901, 902, 6, 56, 24, 0, 902, 129, 1, 0, 0, 0, 903, 904, 3, 444, 214, 0, 904, 905, 1, 0, 0, 0, 905, 906, 6, 57, 27, 0, 906, 131, 1, 0, 0, 0, 907, 908, 3, 296, 140, 0, 908, 909, 1, 0, 0, 0, 909, 910, 6, 58, 19, 0, 910, 133, 1, 0, 0, 0, 911, 912, 3, 242, 113, 0, 912, 913, 1, 0, 0, 0, 913, 914, 6, 59, 28, 0, 914, 135, 1, 0, 0, 0, 915, 916, 3, 280, 132, 0, 916, 917, 1, 0, 0, 0, 917, 918, 6, 60, 29, 0, 918, 137, 1, 0, 0, 0, 919, 920, 4, 61, 11, 0, 920, 921, 3, 276, 130, 0, 921, 922, 1, 0, 0, 0, 922, 923, 6, 61, 30, 0, 923, 139, 1, 0, 0, 0, 924, 925, 4, 62, 12, 0, 925, 926, 3, 282, 133, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 62, 31, 0, 928, 141, 1, 0, 0, 0, 929, 930, 3, 16, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 6, 63, 0, 0, 932, 143, 1, 0, 0, 0, 933, 934, 3, 18, 1, 0, 934, 935, 1, 0, 0, 0, 935, 936, 6, 64, 0, 0, 936, 145, 1, 0, 0, 0, 937, 938, 3, 20, 2, 0, 938, 939, 1, 0, 0, 0, 939, 940, 6, 65, 0, 0, 940, 147, 1, 0, 0, 0, 941, 942, 3, 286, 135, 0, 942, 943, 1, 0, 0, 0, 943, 944, 6, 66, 32, 0, 944, 945, 6, 66, 14, 0, 945, 149, 1, 0, 0, 0, 946, 947, 3, 214, 99, 0, 947, 948, 1, 0, 0, 0, 948, 949, 6, 67, 33, 0, 949, 151, 1, 0, 0, 0, 950, 956, 3, 182, 83, 0, 951, 956, 3, 172, 78, 0, 952, 956, 3, 220, 102, 0, 953, 956, 3, 174, 79, 0, 954, 956, 3, 188, 86, 0, 955, 950, 1, 0, 0, 0, 955, 951, 1, 0, 0, 0, 955, 952, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 153, 1, 0, 0, 0, 959, 960, 3, 16, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 6, 69, 0, 0, 962, 155, 1, 0, 0, 0, 963, 964, 3, 18, 1, 0, 964, 965, 1, 0, 0, 0, 965, 966, 6, 70, 0, 0, 966, 157, 1, 0, 0, 0, 967, 968, 3, 20, 2, 0, 968, 969, 1, 0, 0, 0, 969, 970, 6, 71, 0, 0, 970, 159, 1, 0, 0, 0, 971, 972, 3, 284, 134, 0, 972, 973, 1, 0, 0, 0, 973, 974, 6, 72, 21, 0, 974, 975, 6, 72, 34, 0, 975, 161, 1, 0, 0, 0, 976, 977, 3, 170, 77, 0, 977, 978, 1, 0, 0, 0, 978, 979, 6, 73, 13, 0, 979, 980, 6, 73, 14, 0, 980, 163, 1, 0, 0, 0, 981, 982, 3, 20, 2, 0, 982, 983, 1, 0, 0, 0, 983, 984, 6, 74, 0, 0, 984, 165, 1, 0, 0, 0, 985, 986, 3, 16, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 6, 75, 0, 0, 988, 167, 1, 0, 0, 0, 989, 990, 3, 18, 1, 0, 990, 991, 1, 0, 0, 0, 991, 992, 6, 76, 0, 0, 992, 169, 1, 0, 0, 0, 993, 994, 5, 124, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 6, 77, 14, 0, 996, 171, 1, 0, 0, 0, 997, 998, 7, 25, 0, 0, 998, 173, 1, 0, 0, 0, 999, 1000, 7, 26, 0, 0, 1000, 175, 1, 0, 0, 0, 1001, 1002, 5, 92, 0, 0, 1002, 1003, 7, 27, 0, 0, 1003, 177, 1, 0, 0, 0, 1004, 1005, 8, 28, 0, 0, 1005, 179, 1, 0, 0, 0, 1006, 1008, 7, 7, 0, 0, 1007, 1009, 7, 29, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1012, 3, 172, 78, 0, 1011, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 181, 1, 0, 0, 0, 1015, 1016, 5, 64, 0, 0, 1016, 183, 1, 0, 0, 0, 1017, 1018, 5, 96, 0, 0, 1018, 185, 1, 0, 0, 0, 1019, 1023, 8, 30, 0, 0, 1020, 1021, 5, 96, 0, 0, 1021, 1023, 5, 96, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 187, 1, 0, 0, 0, 1024, 1025, 5, 95, 0, 0, 1025, 189, 1, 0, 0, 0, 1026, 1030, 3, 174, 79, 0, 1027, 1030, 3, 172, 78, 0, 1028, 1030, 3, 188, 86, 0, 1029, 1026, 1, 0, 0, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1028, 1, 0, 0, 0, 1030, 191, 1, 0, 0, 0, 1031, 1036, 5, 34, 0, 0, 1032, 1035, 3, 176, 80, 0, 1033, 1035, 3, 178, 81, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1038, 1, 0, 0, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1036, 1, 0, 0, 0, 1039, 1061, 5, 34, 0, 0, 1040, 1041, 5, 34, 0, 0, 1041, 1042, 5, 34, 0, 0, 1042, 1043, 5, 34, 0, 0, 1043, 1047, 1, 0, 0, 0, 1044, 1046, 8, 0, 0, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 34, 0, 0, 1051, 1052, 5, 34, 0, 0, 1052, 1053, 5, 34, 0, 0, 1053, 1055, 1, 0, 0, 0, 1054, 1056, 5, 34, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 1, 0, 0, 0, 1057, 1059, 5, 34, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1031, 1, 0, 0, 0, 1060, 1040, 1, 0, 0, 0, 1061, 193, 1, 0, 0, 0, 1062, 1064, 3, 172, 78, 0, 1063, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 195, 1, 0, 0, 0, 1067, 1069, 3, 172, 78, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 3, 220, 102, 0, 1073, 1075, 3, 172, 78, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1110, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1081, 3, 220, 102, 0, 1080, 1082, 3, 172, 78, 0, 1081, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1110, 1, 0, 0, 0, 1085, 1087, 3, 172, 78, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1097, 1, 0, 0, 0, 1090, 1094, 3, 220, 102, 0, 1091, 1093, 3, 172, 78, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1097, 1090, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 180, 82, 0, 1100, 1110, 1, 0, 0, 0, 1101, 1103, 3, 220, 102, 0, 1102, 1104, 3, 172, 78, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 180, 82, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1068, 1, 0, 0, 0, 1109, 1079, 1, 0, 0, 0, 1109, 1086, 1, 0, 0, 0, 1109, 1101, 1, 0, 0, 0, 1110, 197, 1, 0, 0, 0, 1111, 1112, 7, 31, 0, 0, 1112, 1113, 7, 32, 0, 0, 1113, 199, 1, 0, 0, 0, 1114, 1115, 7, 9, 0, 0, 1115, 1116, 7, 5, 0, 0, 1116, 201, 1, 0, 0, 0, 1117, 1118, 7, 20, 0, 0, 1118, 1119, 7, 10, 0, 0, 1119, 1120, 7, 11, 0, 0, 1120, 1121, 7, 3, 0, 0, 1121, 203, 1, 0, 0, 0, 1122, 1123, 7, 4, 0, 0, 1123, 1124, 7, 16, 0, 0, 1124, 205, 1, 0, 0, 0, 1125, 1126, 7, 4, 0, 0, 1126, 1127, 7, 5, 0, 0, 1127, 1128, 7, 15, 0, 0, 1128, 207, 1, 0, 0, 0, 1129, 1130, 7, 4, 0, 0, 1130, 1131, 7, 16, 0, 0, 1131, 1132, 7, 2, 0, 0, 1132, 209, 1, 0, 0, 0, 1133, 1134, 5, 61, 0, 0, 1134, 211, 1, 0, 0, 0, 1135, 1136, 5, 58, 0, 0, 1136, 1137, 5, 58, 0, 0, 1137, 213, 1, 0, 0, 0, 1138, 1139, 5, 58, 0, 0, 1139, 215, 1, 0, 0, 0, 1140, 1141, 5, 44, 0, 0, 1141, 217, 1, 0, 0, 0, 1142, 1143, 7, 15, 0, 0, 1143, 1144, 7, 7, 0, 0, 1144, 1145, 7, 16, 0, 0, 1145, 1146, 7, 2, 0, 0, 1146, 219, 1, 0, 0, 0, 1147, 1148, 5, 46, 0, 0, 1148, 221, 1, 0, 0, 0, 1149, 1150, 7, 21, 0, 0, 1150, 1151, 7, 4, 0, 0, 1151, 1152, 7, 14, 0, 0, 1152, 1153, 7, 16, 0, 0, 1153, 1154, 7, 7, 0, 0, 1154, 223, 1, 0, 0, 0, 1155, 1156, 7, 21, 0, 0, 1156, 1157, 7, 10, 0, 0, 1157, 1158, 7, 12, 0, 0, 1158, 1159, 7, 16, 0, 0, 1159, 1160, 7, 11, 0, 0, 1160, 225, 1, 0, 0, 0, 1161, 1162, 7, 10, 0, 0, 1162, 1163, 7, 5, 0, 0, 1163, 227, 1, 0, 0, 0, 1164, 1165, 7, 10, 0, 0, 1165, 1166, 7, 16, 0, 0, 1166, 229, 1, 0, 0, 0, 1167, 1168, 7, 14, 0, 0, 1168, 1169, 7, 4, 0, 0, 1169, 1170, 7, 16, 0, 0, 1170, 1171, 7, 11, 0, 0, 1171, 231, 1, 0, 0, 0, 1172, 1173, 7, 14, 0, 0, 1173, 1174, 7, 10, 0, 0, 1174, 1175, 7, 18, 0, 0, 1175, 1176, 7, 7, 0, 0, 1176, 233, 1, 0, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 9, 0, 0, 1179, 1180, 7, 11, 0, 0, 1180, 235, 1, 0, 0, 0, 1181, 1182, 7, 5, 0, 0, 1182, 1183, 7, 22, 0, 0, 1183, 1184, 7, 14, 0, 0, 1184, 1185, 7, 14, 0, 0, 1185, 237, 1, 0, 0, 0, 1186, 1187, 7, 5, 0, 0, 1187, 1188, 7, 22, 0, 0, 1188, 1189, 7, 14, 0, 0, 1189, 1190, 7, 14, 0, 0, 1190, 1191, 7, 16, 0, 0, 1191, 239, 1, 0, 0, 0, 1192, 1193, 7, 9, 0, 0, 1193, 1194, 7, 12, 0, 0, 1194, 241, 1, 0, 0, 0, 1195, 1196, 5, 63, 0, 0, 1196, 243, 1, 0, 0, 0, 1197, 1198, 7, 12, 0, 0, 1198, 1199, 7, 14, 0, 0, 1199, 1200, 7, 10, 0, 0, 1200, 1201, 7, 18, 0, 0, 1201, 1202, 7, 7, 0, 0, 1202, 245, 1, 0, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1205, 7, 12, 0, 0, 1205, 1206, 7, 22, 0, 0, 1206, 1207, 7, 7, 0, 0, 1207, 247, 1, 0, 0, 0, 1208, 1209, 5, 61, 0, 0, 1209, 1210, 5, 61, 0, 0, 1210, 249, 1, 0, 0, 0, 1211, 1212, 5, 61, 0, 0, 1212, 1213, 5, 126, 0, 0, 1213, 251, 1, 0, 0, 0, 1214, 1215, 5, 33, 0, 0, 1215, 1216, 5, 61, 0, 0, 1216, 253, 1, 0, 0, 0, 1217, 1218, 5, 60, 0, 0, 1218, 255, 1, 0, 0, 0, 1219, 1220, 5, 60, 0, 0, 1220, 1221, 5, 61, 0, 0, 1221, 257, 1, 0, 0, 0, 1222, 1223, 5, 62, 0, 0, 1223, 259, 1, 0, 0, 0, 1224, 1225, 5, 62, 0, 0, 1225, 1226, 5, 61, 0, 0, 1226, 261, 1, 0, 0, 0, 1227, 1228, 5, 43, 0, 0, 1228, 263, 1, 0, 0, 0, 1229, 1230, 5, 45, 0, 0, 1230, 265, 1, 0, 0, 0, 1231, 1232, 5, 42, 0, 0, 1232, 267, 1, 0, 0, 0, 1233, 1234, 5, 47, 0, 0, 1234, 269, 1, 0, 0, 0, 1235, 1236, 5, 37, 0, 0, 1236, 271, 1, 0, 0, 0, 1237, 1238, 5, 123, 0, 0, 1238, 273, 1, 0, 0, 0, 1239, 1240, 5, 125, 0, 0, 1240, 275, 1, 0, 0, 0, 1241, 1242, 4, 130, 13, 0, 1242, 1243, 5, 63, 0, 0, 1243, 1244, 5, 63, 0, 0, 1244, 277, 1, 0, 0, 0, 1245, 1246, 3, 42, 13, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 6, 131, 35, 0, 1248, 279, 1, 0, 0, 0, 1249, 1252, 3, 242, 113, 0, 1250, 1253, 3, 174, 79, 0, 1251, 1253, 3, 188, 86, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 1257, 1, 0, 0, 0, 1254, 1256, 3, 190, 87, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1267, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1262, 3, 242, 113, 0, 1261, 1263, 3, 172, 78, 0, 1262, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1249, 1, 0, 0, 0, 1266, 1260, 1, 0, 0, 0, 1267, 281, 1, 0, 0, 0, 1268, 1271, 3, 276, 130, 0, 1269, 1272, 3, 174, 79, 0, 1270, 1272, 3, 188, 86, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1276, 1, 0, 0, 0, 1273, 1275, 3, 190, 87, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1286, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1281, 3, 276, 130, 0, 1280, 1282, 3, 172, 78, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1268, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 283, 1, 0, 0, 0, 1287, 1288, 5, 91, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 6, 134, 4, 0, 1290, 1291, 6, 134, 4, 0, 1291, 285, 1, 0, 0, 0, 1292, 1293, 5, 93, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 135, 14, 0, 1295, 1296, 6, 135, 14, 0, 1296, 287, 1, 0, 0, 0, 1297, 1298, 5, 40, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 136, 4, 0, 1300, 1301, 6, 136, 4, 0, 1301, 289, 1, 0, 0, 0, 1302, 1303, 5, 41, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 137, 14, 0, 1305, 1306, 6, 137, 14, 0, 1306, 291, 1, 0, 0, 0, 1307, 1311, 3, 174, 79, 0, 1308, 1310, 3, 190, 87, 0, 1309, 1308, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1324, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1317, 3, 188, 86, 0, 1315, 1317, 3, 182, 83, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1320, 3, 190, 87, 0, 1319, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1323, 1316, 1, 0, 0, 0, 1324, 293, 1, 0, 0, 0, 1325, 1327, 3, 184, 84, 0, 1326, 1328, 3, 186, 85, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 3, 184, 84, 0, 1332, 295, 1, 0, 0, 0, 1333, 1334, 3, 294, 139, 0, 1334, 297, 1, 0, 0, 0, 1335, 1336, 3, 16, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 6, 141, 0, 0, 1338, 299, 1, 0, 0, 0, 1339, 1340, 3, 18, 1, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 6, 142, 0, 0, 1342, 301, 1, 0, 0, 0, 1343, 1344, 3, 20, 2, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1346, 6, 143, 0, 0, 1346, 303, 1, 0, 0, 0, 1347, 1348, 3, 170, 77, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 6, 144, 13, 0, 1350, 1351, 6, 144, 14, 0, 1351, 305, 1, 0, 0, 0, 1352, 1353, 3, 284, 134, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 6, 145, 21, 0, 1355, 307, 1, 0, 0, 0, 1356, 1357, 3, 286, 135, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 6, 146, 32, 0, 1359, 309, 1, 0, 0, 0, 1360, 1361, 3, 214, 99, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 6, 147, 33, 0, 1363, 311, 1, 0, 0, 0, 1364, 1365, 4, 148, 14, 0, 1365, 1366, 3, 212, 98, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 6, 148, 36, 0, 1368, 313, 1, 0, 0, 0, 1369, 1370, 3, 216, 100, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 6, 149, 18, 0, 1372, 315, 1, 0, 0, 0, 1373, 1374, 3, 210, 97, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 150, 26, 0, 1376, 317, 1, 0, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1379, 7, 7, 0, 0, 1379, 1380, 7, 11, 0, 0, 1380, 1381, 7, 4, 0, 0, 1381, 1382, 7, 15, 0, 0, 1382, 1383, 7, 4, 0, 0, 1383, 1384, 7, 11, 0, 0, 1384, 1385, 7, 4, 0, 0, 1385, 319, 1, 0, 0, 0, 1386, 1390, 8, 33, 0, 0, 1387, 1388, 5, 47, 0, 0, 1388, 1390, 8, 34, 0, 0, 1389, 1386, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1390, 321, 1, 0, 0, 0, 1391, 1393, 3, 320, 152, 0, 1392, 1391, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 323, 1, 0, 0, 0, 1396, 1397, 3, 322, 153, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 154, 37, 0, 1399, 325, 1, 0, 0, 0, 1400, 1401, 3, 192, 88, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 155, 38, 0, 1403, 327, 1, 0, 0, 0, 1404, 1405, 3, 16, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 156, 0, 0, 1407, 329, 1, 0, 0, 0, 1408, 1409, 3, 18, 1, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 157, 0, 0, 1411, 331, 1, 0, 0, 0, 1412, 1413, 3, 20, 2, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 158, 0, 0, 1415, 333, 1, 0, 0, 0, 1416, 1417, 3, 288, 136, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 6, 159, 39, 0, 1419, 1420, 6, 159, 34, 0, 1420, 335, 1, 0, 0, 0, 1421, 1422, 3, 170, 77, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 160, 13, 0, 1424, 1425, 6, 160, 14, 0, 1425, 337, 1, 0, 0, 0, 1426, 1427, 3, 20, 2, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 6, 161, 0, 0, 1429, 339, 1, 0, 0, 0, 1430, 1431, 3, 16, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 6, 162, 0, 0, 1433, 341, 1, 0, 0, 0, 1434, 1435, 3, 18, 1, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 6, 163, 0, 0, 1437, 343, 1, 0, 0, 0, 1438, 1439, 3, 170, 77, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 164, 13, 0, 1441, 1442, 6, 164, 14, 0, 1442, 345, 1, 0, 0, 0, 1443, 1444, 7, 35, 0, 0, 1444, 1445, 7, 9, 0, 0, 1445, 1446, 7, 10, 0, 0, 1446, 1447, 7, 5, 0, 0, 1447, 347, 1, 0, 0, 0, 1448, 1449, 3, 204, 94, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 166, 16, 0, 1451, 349, 1, 0, 0, 0, 1452, 1453, 3, 200, 92, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 167, 15, 0, 1455, 1456, 6, 167, 14, 0, 1456, 1457, 6, 167, 4, 0, 1457, 351, 1, 0, 0, 0, 1458, 1459, 7, 22, 0, 0, 1459, 1460, 7, 16, 0, 0, 1460, 1461, 7, 10, 0, 0, 1461, 1462, 7, 5, 0, 0, 1462, 1463, 7, 6, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 6, 168, 14, 0, 1465, 1466, 6, 168, 4, 0, 1466, 353, 1, 0, 0, 0, 1467, 1468, 3, 322, 153, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 169, 37, 0, 1470, 355, 1, 0, 0, 0, 1471, 1472, 3, 192, 88, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 170, 38, 0, 1474, 357, 1, 0, 0, 0, 1475, 1476, 3, 214, 99, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 6, 171, 33, 0, 1478, 359, 1, 0, 0, 0, 1479, 1480, 3, 292, 138, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 6, 172, 20, 0, 1482, 361, 1, 0, 0, 0, 1483, 1484, 3, 296, 140, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 6, 173, 19, 0, 1486, 363, 1, 0, 0, 0, 1487, 1488, 3, 16, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 6, 174, 0, 0, 1490, 365, 1, 0, 0, 0, 1491, 1492, 3, 18, 1, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 6, 175, 0, 0, 1494, 367, 1, 0, 0, 0, 1495, 1496, 3, 20, 2, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 6, 176, 0, 0, 1498, 369, 1, 0, 0, 0, 1499, 1500, 3, 170, 77, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 6, 177, 13, 0, 1502, 1503, 6, 177, 14, 0, 1503, 371, 1, 0, 0, 0, 1504, 1505, 3, 214, 99, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 178, 33, 0, 1507, 373, 1, 0, 0, 0, 1508, 1509, 3, 216, 100, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 179, 18, 0, 1511, 375, 1, 0, 0, 0, 1512, 1513, 3, 220, 102, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 180, 17, 0, 1515, 377, 1, 0, 0, 0, 1516, 1517, 3, 200, 92, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 6, 181, 15, 0, 1519, 1520, 6, 181, 40, 0, 1520, 379, 1, 0, 0, 0, 1521, 1522, 3, 322, 153, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 6, 182, 37, 0, 1524, 381, 1, 0, 0, 0, 1525, 1526, 3, 192, 88, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 6, 183, 38, 0, 1528, 383, 1, 0, 0, 0, 1529, 1530, 3, 16, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 184, 0, 0, 1532, 385, 1, 0, 0, 0, 1533, 1534, 3, 18, 1, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 6, 185, 0, 0, 1536, 387, 1, 0, 0, 0, 1537, 1538, 3, 20, 2, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 6, 186, 0, 0, 1540, 389, 1, 0, 0, 0, 1541, 1542, 3, 170, 77, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 6, 187, 13, 0, 1544, 1545, 6, 187, 14, 0, 1545, 1546, 6, 187, 14, 0, 1546, 391, 1, 0, 0, 0, 1547, 1548, 3, 216, 100, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 6, 188, 18, 0, 1550, 393, 1, 0, 0, 0, 1551, 1552, 3, 220, 102, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 6, 189, 17, 0, 1554, 395, 1, 0, 0, 0, 1555, 1556, 3, 444, 214, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 6, 190, 27, 0, 1558, 397, 1, 0, 0, 0, 1559, 1560, 3, 16, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 6, 191, 0, 0, 1562, 399, 1, 0, 0, 0, 1563, 1564, 3, 18, 1, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 192, 0, 0, 1566, 401, 1, 0, 0, 0, 1567, 1568, 3, 20, 2, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 6, 193, 0, 0, 1570, 403, 1, 0, 0, 0, 1571, 1572, 3, 170, 77, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 194, 13, 0, 1574, 1575, 6, 194, 14, 0, 1575, 405, 1, 0, 0, 0, 1576, 1577, 3, 220, 102, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 6, 195, 17, 0, 1579, 407, 1, 0, 0, 0, 1580, 1581, 3, 242, 113, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 6, 196, 28, 0, 1583, 409, 1, 0, 0, 0, 1584, 1585, 3, 280, 132, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 6, 197, 29, 0, 1587, 411, 1, 0, 0, 0, 1588, 1589, 4, 198, 15, 0, 1589, 1590, 3, 276, 130, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 6, 198, 30, 0, 1592, 413, 1, 0, 0, 0, 1593, 1594, 4, 199, 16, 0, 1594, 1595, 3, 282, 133, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 199, 31, 0, 1597, 415, 1, 0, 0, 0, 1598, 1599, 3, 296, 140, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 200, 19, 0, 1601, 417, 1, 0, 0, 0, 1602, 1603, 3, 292, 138, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 201, 20, 0, 1605, 419, 1, 0, 0, 0, 1606, 1607, 3, 16, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 202, 0, 0, 1609, 421, 1, 0, 0, 0, 1610, 1611, 3, 18, 1, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 203, 0, 0, 1613, 423, 1, 0, 0, 0, 1614, 1615, 3, 20, 2, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 6, 204, 0, 0, 1617, 425, 1, 0, 0, 0, 1618, 1619, 3, 170, 77, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 6, 205, 13, 0, 1621, 1622, 6, 205, 14, 0, 1622, 427, 1, 0, 0, 0, 1623, 1624, 3, 220, 102, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 6, 206, 17, 0, 1626, 429, 1, 0, 0, 0, 1627, 1628, 3, 216, 100, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 207, 18, 0, 1630, 431, 1, 0, 0, 0, 1631, 1632, 3, 242, 113, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 208, 28, 0, 1634, 433, 1, 0, 0, 0, 1635, 1636, 3, 280, 132, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 209, 29, 0, 1638, 435, 1, 0, 0, 0, 1639, 1640, 4, 210, 17, 0, 1640, 1641, 3, 276, 130, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 6, 210, 30, 0, 1643, 437, 1, 0, 0, 0, 1644, 1645, 4, 211, 18, 0, 1645, 1646, 3, 282, 133, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 6, 211, 31, 0, 1648, 439, 1, 0, 0, 0, 1649, 1654, 3, 174, 79, 0, 1650, 1654, 3, 172, 78, 0, 1651, 1654, 3, 188, 86, 0, 1652, 1654, 3, 266, 125, 0, 1653, 1649, 1, 0, 0, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 441, 1, 0, 0, 0, 1655, 1658, 3, 174, 79, 0, 1656, 1658, 3, 266, 125, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1656, 1, 0, 0, 0, 1658, 1662, 1, 0, 0, 0, 1659, 1661, 3, 440, 212, 0, 1660, 1659, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1675, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1668, 3, 188, 86, 0, 1666, 1668, 3, 182, 83, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1666, 1, 0, 0, 0, 1668, 1670, 1, 0, 0, 0, 1669, 1671, 3, 440, 212, 0, 1670, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1657, 1, 0, 0, 0, 1674, 1667, 1, 0, 0, 0, 1675, 443, 1, 0, 0, 0, 1676, 1679, 3, 442, 213, 0, 1677, 1679, 3, 294, 139, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 445, 1, 0, 0, 0, 1682, 1683, 3, 16, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 215, 0, 0, 1685, 447, 1, 0, 0, 0, 1686, 1687, 3, 18, 1, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 216, 0, 0, 1689, 449, 1, 0, 0, 0, 1690, 1691, 3, 20, 2, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 217, 0, 0, 1693, 451, 1, 0, 0, 0, 1694, 1695, 3, 170, 77, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 6, 218, 13, 0, 1697, 1698, 6, 218, 14, 0, 1698, 453, 1, 0, 0, 0, 1699, 1700, 3, 210, 97, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 6, 219, 26, 0, 1702, 455, 1, 0, 0, 0, 1703, 1704, 3, 216, 100, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1706, 6, 220, 18, 0, 1706, 457, 1, 0, 0, 0, 1707, 1708, 3, 220, 102, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 221, 17, 0, 1710, 459, 1, 0, 0, 0, 1711, 1712, 3, 242, 113, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 222, 28, 0, 1714, 461, 1, 0, 0, 0, 1715, 1716, 3, 280, 132, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 223, 29, 0, 1718, 463, 1, 0, 0, 0, 1719, 1720, 4, 224, 19, 0, 1720, 1721, 3, 276, 130, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 6, 224, 30, 0, 1723, 465, 1, 0, 0, 0, 1724, 1725, 4, 225, 20, 0, 1725, 1726, 3, 282, 133, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 225, 31, 0, 1728, 467, 1, 0, 0, 0, 1729, 1730, 3, 204, 94, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 226, 16, 0, 1732, 469, 1, 0, 0, 0, 1733, 1734, 3, 444, 214, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 227, 27, 0, 1736, 471, 1, 0, 0, 0, 1737, 1738, 3, 16, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 228, 0, 0, 1740, 473, 1, 0, 0, 0, 1741, 1742, 3, 18, 1, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 229, 0, 0, 1744, 475, 1, 0, 0, 0, 1745, 1746, 3, 20, 2, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 6, 230, 0, 0, 1748, 477, 1, 0, 0, 0, 1749, 1750, 3, 170, 77, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 231, 13, 0, 1752, 1753, 6, 231, 14, 0, 1753, 479, 1, 0, 0, 0, 1754, 1755, 7, 10, 0, 0, 1755, 1756, 7, 5, 0, 0, 1756, 1757, 7, 21, 0, 0, 1757, 1758, 7, 9, 0, 0, 1758, 481, 1, 0, 0, 0, 1759, 1760, 3, 16, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 6, 233, 0, 0, 1762, 483, 1, 0, 0, 0, 1763, 1764, 3, 18, 1, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 234, 0, 0, 1766, 485, 1, 0, 0, 0, 1767, 1768, 3, 20, 2, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 235, 0, 0, 1770, 487, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 494, 498, 501, 510, 512, 523, 784, 854, 858, 863, 955, 957, 1008, 1013, 1022, 1029, 1034, 1036, 1047, 1055, 1058, 1060, 1065, 1070, 1076, 1083, 1088, 1094, 1097, 1105, 1109, 1252, 1257, 1264, 1266, 1271, 1276, 1283, 1285, 1311, 1316, 1321, 1323, 1329, 1389, 1394, 1653, 1657, 1662, 1667, 1672, 1674, 1678, 1680, 41, 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, 10, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 7, 50, 0, 4, 0, 0, 7, 55, 0, 7, 57, 0, 7, 65, 0, 7, 63, 0, 7, 101, 0, 7, 100, 0, 7, 96, 0, 5, 4, 0, 5, 3, 0, 7, 56, 0, 7, 36, 0, 7, 60, 0, 7, 127, 0, 7, 76, 0, 7, 94, 0, 7, 93, 0, 7, 95, 0, 7, 97, 0, 7, 62, 0, 5, 0, 0, 7, 14, 0, 7, 61, 0, 7, 106, 0, 7, 51, 0, 7, 98, 0, 5, 11, 0] \ No newline at end of file +[4, 0, 137, 1771, 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, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 1, 0, 1, 0, 1, 0, 1, 0, 5, 0, 493, 8, 0, 10, 0, 12, 0, 496, 9, 0, 1, 0, 3, 0, 499, 8, 0, 1, 0, 3, 0, 502, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 511, 8, 1, 10, 1, 12, 1, 514, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 2, 522, 8, 2, 11, 2, 12, 2, 523, 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, 15, 1, 15, 1, 15, 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, 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, 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, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 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, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 4, 31, 783, 8, 31, 11, 31, 12, 31, 784, 1, 31, 1, 31, 1, 32, 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, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 4, 47, 853, 8, 47, 11, 47, 12, 47, 854, 1, 47, 1, 47, 3, 47, 859, 8, 47, 1, 47, 4, 47, 862, 8, 47, 11, 47, 12, 47, 863, 1, 48, 1, 48, 1, 48, 1, 48, 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, 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, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 4, 68, 956, 8, 68, 11, 68, 12, 68, 957, 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, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1009, 8, 82, 1, 82, 4, 82, 1012, 8, 82, 11, 82, 12, 82, 1013, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1023, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1030, 8, 87, 1, 88, 1, 88, 1, 88, 5, 88, 1035, 8, 88, 10, 88, 12, 88, 1038, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1046, 8, 88, 10, 88, 12, 88, 1049, 9, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1056, 8, 88, 1, 88, 3, 88, 1059, 8, 88, 3, 88, 1061, 8, 88, 1, 89, 4, 89, 1064, 8, 89, 11, 89, 12, 89, 1065, 1, 90, 4, 90, 1069, 8, 90, 11, 90, 12, 90, 1070, 1, 90, 1, 90, 5, 90, 1075, 8, 90, 10, 90, 12, 90, 1078, 9, 90, 1, 90, 1, 90, 4, 90, 1082, 8, 90, 11, 90, 12, 90, 1083, 1, 90, 4, 90, 1087, 8, 90, 11, 90, 12, 90, 1088, 1, 90, 1, 90, 5, 90, 1093, 8, 90, 10, 90, 12, 90, 1096, 9, 90, 3, 90, 1098, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 4, 90, 1104, 8, 90, 11, 90, 12, 90, 1105, 1, 90, 1, 90, 3, 90, 1110, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 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, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 124, 1, 124, 1, 125, 1, 125, 1, 126, 1, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 3, 132, 1253, 8, 132, 1, 132, 5, 132, 1256, 8, 132, 10, 132, 12, 132, 1259, 9, 132, 1, 132, 1, 132, 4, 132, 1263, 8, 132, 11, 132, 12, 132, 1264, 3, 132, 1267, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1272, 8, 133, 1, 133, 5, 133, 1275, 8, 133, 10, 133, 12, 133, 1278, 9, 133, 1, 133, 1, 133, 4, 133, 1282, 8, 133, 11, 133, 12, 133, 1283, 3, 133, 1286, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 5, 138, 1310, 8, 138, 10, 138, 12, 138, 1313, 9, 138, 1, 138, 1, 138, 3, 138, 1317, 8, 138, 1, 138, 4, 138, 1320, 8, 138, 11, 138, 12, 138, 1321, 3, 138, 1324, 8, 138, 1, 139, 1, 139, 4, 139, 1328, 8, 139, 11, 139, 12, 139, 1329, 1, 139, 1, 139, 1, 140, 1, 140, 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, 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, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 3, 152, 1390, 8, 152, 1, 153, 4, 153, 1393, 8, 153, 11, 153, 12, 153, 1394, 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, 159, 1, 160, 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, 163, 1, 163, 1, 163, 1, 163, 1, 164, 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, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 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, 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, 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, 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, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 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, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 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, 198, 1, 199, 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, 204, 1, 204, 1, 204, 1, 204, 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, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 1654, 8, 212, 1, 213, 1, 213, 3, 213, 1658, 8, 213, 1, 213, 5, 213, 1661, 8, 213, 10, 213, 12, 213, 1664, 9, 213, 1, 213, 1, 213, 3, 213, 1668, 8, 213, 1, 213, 4, 213, 1671, 8, 213, 11, 213, 12, 213, 1672, 3, 213, 1675, 8, 213, 1, 214, 1, 214, 4, 214, 1679, 8, 214, 11, 214, 12, 214, 1680, 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, 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, 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, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 2, 512, 1047, 0, 236, 16, 1, 18, 2, 20, 3, 22, 4, 24, 5, 26, 6, 28, 7, 30, 8, 32, 9, 34, 10, 36, 11, 38, 12, 40, 13, 42, 14, 44, 15, 46, 16, 48, 17, 50, 18, 52, 19, 54, 20, 56, 21, 58, 22, 60, 23, 62, 24, 64, 25, 66, 26, 68, 27, 70, 28, 72, 29, 74, 30, 76, 31, 78, 32, 80, 0, 82, 0, 84, 0, 86, 0, 88, 0, 90, 0, 92, 0, 94, 33, 96, 34, 98, 35, 100, 0, 102, 0, 104, 0, 106, 0, 108, 0, 110, 36, 112, 0, 114, 37, 116, 38, 118, 39, 120, 0, 122, 0, 124, 0, 126, 0, 128, 0, 130, 0, 132, 0, 134, 0, 136, 0, 138, 0, 140, 0, 142, 40, 144, 41, 146, 42, 148, 0, 150, 0, 152, 43, 154, 44, 156, 45, 158, 46, 160, 0, 162, 0, 164, 47, 166, 48, 168, 49, 170, 50, 172, 0, 174, 0, 176, 0, 178, 0, 180, 0, 182, 0, 184, 0, 186, 0, 188, 0, 190, 0, 192, 51, 194, 52, 196, 53, 198, 54, 200, 55, 202, 56, 204, 57, 206, 58, 208, 59, 210, 60, 212, 61, 214, 62, 216, 63, 218, 64, 220, 65, 222, 66, 224, 67, 226, 68, 228, 69, 230, 70, 232, 71, 234, 72, 236, 73, 238, 74, 240, 75, 242, 76, 244, 77, 246, 78, 248, 79, 250, 80, 252, 81, 254, 82, 256, 83, 258, 84, 260, 85, 262, 86, 264, 87, 266, 88, 268, 89, 270, 90, 272, 91, 274, 92, 276, 93, 278, 0, 280, 94, 282, 95, 284, 96, 286, 97, 288, 98, 290, 99, 292, 100, 294, 0, 296, 101, 298, 102, 300, 103, 302, 104, 304, 0, 306, 0, 308, 0, 310, 0, 312, 0, 314, 0, 316, 0, 318, 105, 320, 0, 322, 106, 324, 0, 326, 0, 328, 107, 330, 108, 332, 109, 334, 0, 336, 0, 338, 110, 340, 111, 342, 112, 344, 0, 346, 113, 348, 0, 350, 0, 352, 114, 354, 0, 356, 0, 358, 0, 360, 0, 362, 0, 364, 115, 366, 116, 368, 117, 370, 0, 372, 0, 374, 0, 376, 0, 378, 0, 380, 0, 382, 0, 384, 118, 386, 119, 388, 120, 390, 0, 392, 0, 394, 0, 396, 0, 398, 121, 400, 122, 402, 123, 404, 0, 406, 0, 408, 0, 410, 0, 412, 0, 414, 0, 416, 0, 418, 0, 420, 124, 422, 125, 424, 126, 426, 0, 428, 0, 430, 0, 432, 0, 434, 0, 436, 0, 438, 0, 440, 0, 442, 0, 444, 127, 446, 128, 448, 129, 450, 130, 452, 0, 454, 0, 456, 0, 458, 0, 460, 0, 462, 0, 464, 0, 466, 0, 468, 0, 470, 0, 472, 131, 474, 132, 476, 133, 478, 0, 480, 134, 482, 135, 484, 136, 486, 137, 16, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 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, 1802, 0, 16, 1, 0, 0, 0, 0, 18, 1, 0, 0, 0, 0, 20, 1, 0, 0, 0, 0, 22, 1, 0, 0, 0, 0, 24, 1, 0, 0, 0, 0, 26, 1, 0, 0, 0, 0, 28, 1, 0, 0, 0, 0, 30, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 34, 1, 0, 0, 0, 0, 36, 1, 0, 0, 0, 0, 38, 1, 0, 0, 0, 0, 40, 1, 0, 0, 0, 0, 42, 1, 0, 0, 0, 0, 44, 1, 0, 0, 0, 0, 46, 1, 0, 0, 0, 0, 48, 1, 0, 0, 0, 0, 50, 1, 0, 0, 0, 0, 52, 1, 0, 0, 0, 0, 54, 1, 0, 0, 0, 0, 56, 1, 0, 0, 0, 0, 58, 1, 0, 0, 0, 0, 60, 1, 0, 0, 0, 0, 62, 1, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 66, 1, 0, 0, 0, 0, 68, 1, 0, 0, 0, 0, 70, 1, 0, 0, 0, 0, 72, 1, 0, 0, 0, 0, 74, 1, 0, 0, 0, 0, 76, 1, 0, 0, 0, 0, 78, 1, 0, 0, 0, 1, 80, 1, 0, 0, 0, 1, 82, 1, 0, 0, 0, 1, 84, 1, 0, 0, 0, 1, 86, 1, 0, 0, 0, 1, 88, 1, 0, 0, 0, 1, 90, 1, 0, 0, 0, 1, 92, 1, 0, 0, 0, 1, 94, 1, 0, 0, 0, 1, 96, 1, 0, 0, 0, 1, 98, 1, 0, 0, 0, 2, 100, 1, 0, 0, 0, 2, 102, 1, 0, 0, 0, 2, 104, 1, 0, 0, 0, 2, 106, 1, 0, 0, 0, 2, 110, 1, 0, 0, 0, 2, 112, 1, 0, 0, 0, 2, 114, 1, 0, 0, 0, 2, 116, 1, 0, 0, 0, 2, 118, 1, 0, 0, 0, 3, 120, 1, 0, 0, 0, 3, 122, 1, 0, 0, 0, 3, 124, 1, 0, 0, 0, 3, 126, 1, 0, 0, 0, 3, 128, 1, 0, 0, 0, 3, 130, 1, 0, 0, 0, 3, 132, 1, 0, 0, 0, 3, 134, 1, 0, 0, 0, 3, 136, 1, 0, 0, 0, 3, 138, 1, 0, 0, 0, 3, 140, 1, 0, 0, 0, 3, 142, 1, 0, 0, 0, 3, 144, 1, 0, 0, 0, 3, 146, 1, 0, 0, 0, 4, 148, 1, 0, 0, 0, 4, 150, 1, 0, 0, 0, 4, 152, 1, 0, 0, 0, 4, 154, 1, 0, 0, 0, 4, 156, 1, 0, 0, 0, 4, 158, 1, 0, 0, 0, 5, 160, 1, 0, 0, 0, 5, 162, 1, 0, 0, 0, 5, 164, 1, 0, 0, 0, 5, 166, 1, 0, 0, 0, 5, 168, 1, 0, 0, 0, 6, 170, 1, 0, 0, 0, 6, 192, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 6, 196, 1, 0, 0, 0, 6, 198, 1, 0, 0, 0, 6, 200, 1, 0, 0, 0, 6, 202, 1, 0, 0, 0, 6, 204, 1, 0, 0, 0, 6, 206, 1, 0, 0, 0, 6, 208, 1, 0, 0, 0, 6, 210, 1, 0, 0, 0, 6, 212, 1, 0, 0, 0, 6, 214, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 6, 218, 1, 0, 0, 0, 6, 220, 1, 0, 0, 0, 6, 222, 1, 0, 0, 0, 6, 224, 1, 0, 0, 0, 6, 226, 1, 0, 0, 0, 6, 228, 1, 0, 0, 0, 6, 230, 1, 0, 0, 0, 6, 232, 1, 0, 0, 0, 6, 234, 1, 0, 0, 0, 6, 236, 1, 0, 0, 0, 6, 238, 1, 0, 0, 0, 6, 240, 1, 0, 0, 0, 6, 242, 1, 0, 0, 0, 6, 244, 1, 0, 0, 0, 6, 246, 1, 0, 0, 0, 6, 248, 1, 0, 0, 0, 6, 250, 1, 0, 0, 0, 6, 252, 1, 0, 0, 0, 6, 254, 1, 0, 0, 0, 6, 256, 1, 0, 0, 0, 6, 258, 1, 0, 0, 0, 6, 260, 1, 0, 0, 0, 6, 262, 1, 0, 0, 0, 6, 264, 1, 0, 0, 0, 6, 266, 1, 0, 0, 0, 6, 268, 1, 0, 0, 0, 6, 270, 1, 0, 0, 0, 6, 272, 1, 0, 0, 0, 6, 274, 1, 0, 0, 0, 6, 276, 1, 0, 0, 0, 6, 278, 1, 0, 0, 0, 6, 280, 1, 0, 0, 0, 6, 282, 1, 0, 0, 0, 6, 284, 1, 0, 0, 0, 6, 286, 1, 0, 0, 0, 6, 288, 1, 0, 0, 0, 6, 290, 1, 0, 0, 0, 6, 292, 1, 0, 0, 0, 6, 296, 1, 0, 0, 0, 6, 298, 1, 0, 0, 0, 6, 300, 1, 0, 0, 0, 6, 302, 1, 0, 0, 0, 7, 304, 1, 0, 0, 0, 7, 306, 1, 0, 0, 0, 7, 308, 1, 0, 0, 0, 7, 310, 1, 0, 0, 0, 7, 312, 1, 0, 0, 0, 7, 314, 1, 0, 0, 0, 7, 316, 1, 0, 0, 0, 7, 318, 1, 0, 0, 0, 7, 322, 1, 0, 0, 0, 7, 324, 1, 0, 0, 0, 7, 326, 1, 0, 0, 0, 7, 328, 1, 0, 0, 0, 7, 330, 1, 0, 0, 0, 7, 332, 1, 0, 0, 0, 8, 334, 1, 0, 0, 0, 8, 336, 1, 0, 0, 0, 8, 338, 1, 0, 0, 0, 8, 340, 1, 0, 0, 0, 8, 342, 1, 0, 0, 0, 9, 344, 1, 0, 0, 0, 9, 346, 1, 0, 0, 0, 9, 348, 1, 0, 0, 0, 9, 350, 1, 0, 0, 0, 9, 352, 1, 0, 0, 0, 9, 354, 1, 0, 0, 0, 9, 356, 1, 0, 0, 0, 9, 358, 1, 0, 0, 0, 9, 360, 1, 0, 0, 0, 9, 362, 1, 0, 0, 0, 9, 364, 1, 0, 0, 0, 9, 366, 1, 0, 0, 0, 9, 368, 1, 0, 0, 0, 10, 370, 1, 0, 0, 0, 10, 372, 1, 0, 0, 0, 10, 374, 1, 0, 0, 0, 10, 376, 1, 0, 0, 0, 10, 378, 1, 0, 0, 0, 10, 380, 1, 0, 0, 0, 10, 382, 1, 0, 0, 0, 10, 384, 1, 0, 0, 0, 10, 386, 1, 0, 0, 0, 10, 388, 1, 0, 0, 0, 11, 390, 1, 0, 0, 0, 11, 392, 1, 0, 0, 0, 11, 394, 1, 0, 0, 0, 11, 396, 1, 0, 0, 0, 11, 398, 1, 0, 0, 0, 11, 400, 1, 0, 0, 0, 11, 402, 1, 0, 0, 0, 12, 404, 1, 0, 0, 0, 12, 406, 1, 0, 0, 0, 12, 408, 1, 0, 0, 0, 12, 410, 1, 0, 0, 0, 12, 412, 1, 0, 0, 0, 12, 414, 1, 0, 0, 0, 12, 416, 1, 0, 0, 0, 12, 418, 1, 0, 0, 0, 12, 420, 1, 0, 0, 0, 12, 422, 1, 0, 0, 0, 12, 424, 1, 0, 0, 0, 13, 426, 1, 0, 0, 0, 13, 428, 1, 0, 0, 0, 13, 430, 1, 0, 0, 0, 13, 432, 1, 0, 0, 0, 13, 434, 1, 0, 0, 0, 13, 436, 1, 0, 0, 0, 13, 438, 1, 0, 0, 0, 13, 444, 1, 0, 0, 0, 13, 446, 1, 0, 0, 0, 13, 448, 1, 0, 0, 0, 13, 450, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 14, 454, 1, 0, 0, 0, 14, 456, 1, 0, 0, 0, 14, 458, 1, 0, 0, 0, 14, 460, 1, 0, 0, 0, 14, 462, 1, 0, 0, 0, 14, 464, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 14, 468, 1, 0, 0, 0, 14, 470, 1, 0, 0, 0, 14, 472, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 15, 478, 1, 0, 0, 0, 15, 480, 1, 0, 0, 0, 15, 482, 1, 0, 0, 0, 15, 484, 1, 0, 0, 0, 15, 486, 1, 0, 0, 0, 16, 488, 1, 0, 0, 0, 18, 505, 1, 0, 0, 0, 20, 521, 1, 0, 0, 0, 22, 527, 1, 0, 0, 0, 24, 543, 1, 0, 0, 0, 26, 552, 1, 0, 0, 0, 28, 562, 1, 0, 0, 0, 30, 572, 1, 0, 0, 0, 32, 579, 1, 0, 0, 0, 34, 586, 1, 0, 0, 0, 36, 594, 1, 0, 0, 0, 38, 600, 1, 0, 0, 0, 40, 607, 1, 0, 0, 0, 42, 615, 1, 0, 0, 0, 44, 623, 1, 0, 0, 0, 46, 638, 1, 0, 0, 0, 48, 648, 1, 0, 0, 0, 50, 655, 1, 0, 0, 0, 52, 666, 1, 0, 0, 0, 54, 674, 1, 0, 0, 0, 56, 683, 1, 0, 0, 0, 58, 691, 1, 0, 0, 0, 60, 699, 1, 0, 0, 0, 62, 708, 1, 0, 0, 0, 64, 720, 1, 0, 0, 0, 66, 732, 1, 0, 0, 0, 68, 739, 1, 0, 0, 0, 70, 746, 1, 0, 0, 0, 72, 758, 1, 0, 0, 0, 74, 765, 1, 0, 0, 0, 76, 774, 1, 0, 0, 0, 78, 782, 1, 0, 0, 0, 80, 788, 1, 0, 0, 0, 82, 793, 1, 0, 0, 0, 84, 797, 1, 0, 0, 0, 86, 801, 1, 0, 0, 0, 88, 805, 1, 0, 0, 0, 90, 809, 1, 0, 0, 0, 92, 813, 1, 0, 0, 0, 94, 817, 1, 0, 0, 0, 96, 821, 1, 0, 0, 0, 98, 825, 1, 0, 0, 0, 100, 829, 1, 0, 0, 0, 102, 834, 1, 0, 0, 0, 104, 839, 1, 0, 0, 0, 106, 844, 1, 0, 0, 0, 108, 849, 1, 0, 0, 0, 110, 858, 1, 0, 0, 0, 112, 865, 1, 0, 0, 0, 114, 869, 1, 0, 0, 0, 116, 873, 1, 0, 0, 0, 118, 877, 1, 0, 0, 0, 120, 881, 1, 0, 0, 0, 122, 887, 1, 0, 0, 0, 124, 891, 1, 0, 0, 0, 126, 895, 1, 0, 0, 0, 128, 899, 1, 0, 0, 0, 130, 903, 1, 0, 0, 0, 132, 907, 1, 0, 0, 0, 134, 911, 1, 0, 0, 0, 136, 915, 1, 0, 0, 0, 138, 919, 1, 0, 0, 0, 140, 924, 1, 0, 0, 0, 142, 929, 1, 0, 0, 0, 144, 933, 1, 0, 0, 0, 146, 937, 1, 0, 0, 0, 148, 941, 1, 0, 0, 0, 150, 946, 1, 0, 0, 0, 152, 955, 1, 0, 0, 0, 154, 959, 1, 0, 0, 0, 156, 963, 1, 0, 0, 0, 158, 967, 1, 0, 0, 0, 160, 971, 1, 0, 0, 0, 162, 976, 1, 0, 0, 0, 164, 981, 1, 0, 0, 0, 166, 985, 1, 0, 0, 0, 168, 989, 1, 0, 0, 0, 170, 993, 1, 0, 0, 0, 172, 997, 1, 0, 0, 0, 174, 999, 1, 0, 0, 0, 176, 1001, 1, 0, 0, 0, 178, 1004, 1, 0, 0, 0, 180, 1006, 1, 0, 0, 0, 182, 1015, 1, 0, 0, 0, 184, 1017, 1, 0, 0, 0, 186, 1022, 1, 0, 0, 0, 188, 1024, 1, 0, 0, 0, 190, 1029, 1, 0, 0, 0, 192, 1060, 1, 0, 0, 0, 194, 1063, 1, 0, 0, 0, 196, 1109, 1, 0, 0, 0, 198, 1111, 1, 0, 0, 0, 200, 1115, 1, 0, 0, 0, 202, 1118, 1, 0, 0, 0, 204, 1122, 1, 0, 0, 0, 206, 1124, 1, 0, 0, 0, 208, 1127, 1, 0, 0, 0, 210, 1130, 1, 0, 0, 0, 212, 1132, 1, 0, 0, 0, 214, 1134, 1, 0, 0, 0, 216, 1139, 1, 0, 0, 0, 218, 1141, 1, 0, 0, 0, 220, 1147, 1, 0, 0, 0, 222, 1153, 1, 0, 0, 0, 224, 1156, 1, 0, 0, 0, 226, 1159, 1, 0, 0, 0, 228, 1164, 1, 0, 0, 0, 230, 1169, 1, 0, 0, 0, 232, 1173, 1, 0, 0, 0, 234, 1178, 1, 0, 0, 0, 236, 1184, 1, 0, 0, 0, 238, 1187, 1, 0, 0, 0, 240, 1190, 1, 0, 0, 0, 242, 1192, 1, 0, 0, 0, 244, 1198, 1, 0, 0, 0, 246, 1203, 1, 0, 0, 0, 248, 1208, 1, 0, 0, 0, 250, 1211, 1, 0, 0, 0, 252, 1214, 1, 0, 0, 0, 254, 1217, 1, 0, 0, 0, 256, 1219, 1, 0, 0, 0, 258, 1222, 1, 0, 0, 0, 260, 1224, 1, 0, 0, 0, 262, 1227, 1, 0, 0, 0, 264, 1229, 1, 0, 0, 0, 266, 1231, 1, 0, 0, 0, 268, 1233, 1, 0, 0, 0, 270, 1235, 1, 0, 0, 0, 272, 1237, 1, 0, 0, 0, 274, 1239, 1, 0, 0, 0, 276, 1241, 1, 0, 0, 0, 278, 1245, 1, 0, 0, 0, 280, 1266, 1, 0, 0, 0, 282, 1285, 1, 0, 0, 0, 284, 1287, 1, 0, 0, 0, 286, 1292, 1, 0, 0, 0, 288, 1297, 1, 0, 0, 0, 290, 1302, 1, 0, 0, 0, 292, 1323, 1, 0, 0, 0, 294, 1325, 1, 0, 0, 0, 296, 1333, 1, 0, 0, 0, 298, 1335, 1, 0, 0, 0, 300, 1339, 1, 0, 0, 0, 302, 1343, 1, 0, 0, 0, 304, 1347, 1, 0, 0, 0, 306, 1352, 1, 0, 0, 0, 308, 1356, 1, 0, 0, 0, 310, 1360, 1, 0, 0, 0, 312, 1364, 1, 0, 0, 0, 314, 1369, 1, 0, 0, 0, 316, 1373, 1, 0, 0, 0, 318, 1377, 1, 0, 0, 0, 320, 1389, 1, 0, 0, 0, 322, 1392, 1, 0, 0, 0, 324, 1396, 1, 0, 0, 0, 326, 1400, 1, 0, 0, 0, 328, 1404, 1, 0, 0, 0, 330, 1408, 1, 0, 0, 0, 332, 1412, 1, 0, 0, 0, 334, 1416, 1, 0, 0, 0, 336, 1421, 1, 0, 0, 0, 338, 1426, 1, 0, 0, 0, 340, 1430, 1, 0, 0, 0, 342, 1434, 1, 0, 0, 0, 344, 1438, 1, 0, 0, 0, 346, 1443, 1, 0, 0, 0, 348, 1448, 1, 0, 0, 0, 350, 1452, 1, 0, 0, 0, 352, 1458, 1, 0, 0, 0, 354, 1467, 1, 0, 0, 0, 356, 1471, 1, 0, 0, 0, 358, 1475, 1, 0, 0, 0, 360, 1479, 1, 0, 0, 0, 362, 1483, 1, 0, 0, 0, 364, 1487, 1, 0, 0, 0, 366, 1491, 1, 0, 0, 0, 368, 1495, 1, 0, 0, 0, 370, 1499, 1, 0, 0, 0, 372, 1504, 1, 0, 0, 0, 374, 1508, 1, 0, 0, 0, 376, 1512, 1, 0, 0, 0, 378, 1516, 1, 0, 0, 0, 380, 1521, 1, 0, 0, 0, 382, 1525, 1, 0, 0, 0, 384, 1529, 1, 0, 0, 0, 386, 1533, 1, 0, 0, 0, 388, 1537, 1, 0, 0, 0, 390, 1541, 1, 0, 0, 0, 392, 1547, 1, 0, 0, 0, 394, 1551, 1, 0, 0, 0, 396, 1555, 1, 0, 0, 0, 398, 1559, 1, 0, 0, 0, 400, 1563, 1, 0, 0, 0, 402, 1567, 1, 0, 0, 0, 404, 1571, 1, 0, 0, 0, 406, 1576, 1, 0, 0, 0, 408, 1580, 1, 0, 0, 0, 410, 1584, 1, 0, 0, 0, 412, 1588, 1, 0, 0, 0, 414, 1593, 1, 0, 0, 0, 416, 1598, 1, 0, 0, 0, 418, 1602, 1, 0, 0, 0, 420, 1606, 1, 0, 0, 0, 422, 1610, 1, 0, 0, 0, 424, 1614, 1, 0, 0, 0, 426, 1618, 1, 0, 0, 0, 428, 1623, 1, 0, 0, 0, 430, 1627, 1, 0, 0, 0, 432, 1631, 1, 0, 0, 0, 434, 1635, 1, 0, 0, 0, 436, 1639, 1, 0, 0, 0, 438, 1644, 1, 0, 0, 0, 440, 1653, 1, 0, 0, 0, 442, 1674, 1, 0, 0, 0, 444, 1678, 1, 0, 0, 0, 446, 1682, 1, 0, 0, 0, 448, 1686, 1, 0, 0, 0, 450, 1690, 1, 0, 0, 0, 452, 1694, 1, 0, 0, 0, 454, 1699, 1, 0, 0, 0, 456, 1703, 1, 0, 0, 0, 458, 1707, 1, 0, 0, 0, 460, 1711, 1, 0, 0, 0, 462, 1715, 1, 0, 0, 0, 464, 1719, 1, 0, 0, 0, 466, 1724, 1, 0, 0, 0, 468, 1729, 1, 0, 0, 0, 470, 1733, 1, 0, 0, 0, 472, 1737, 1, 0, 0, 0, 474, 1741, 1, 0, 0, 0, 476, 1745, 1, 0, 0, 0, 478, 1749, 1, 0, 0, 0, 480, 1754, 1, 0, 0, 0, 482, 1759, 1, 0, 0, 0, 484, 1763, 1, 0, 0, 0, 486, 1767, 1, 0, 0, 0, 488, 489, 5, 47, 0, 0, 489, 490, 5, 47, 0, 0, 490, 494, 1, 0, 0, 0, 491, 493, 8, 0, 0, 0, 492, 491, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 494, 495, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 497, 499, 5, 13, 0, 0, 498, 497, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 501, 1, 0, 0, 0, 500, 502, 5, 10, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 6, 0, 0, 0, 504, 17, 1, 0, 0, 0, 505, 506, 5, 47, 0, 0, 506, 507, 5, 42, 0, 0, 507, 512, 1, 0, 0, 0, 508, 511, 3, 18, 1, 0, 509, 511, 9, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 514, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 515, 1, 0, 0, 0, 514, 512, 1, 0, 0, 0, 515, 516, 5, 42, 0, 0, 516, 517, 5, 47, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 6, 1, 0, 0, 519, 19, 1, 0, 0, 0, 520, 522, 7, 1, 0, 0, 521, 520, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 526, 6, 2, 0, 0, 526, 21, 1, 0, 0, 0, 527, 528, 4, 3, 0, 0, 528, 529, 7, 2, 0, 0, 529, 530, 7, 3, 0, 0, 530, 531, 7, 4, 0, 0, 531, 532, 7, 5, 0, 0, 532, 533, 7, 6, 0, 0, 533, 534, 7, 7, 0, 0, 534, 535, 5, 95, 0, 0, 535, 536, 7, 8, 0, 0, 536, 537, 7, 9, 0, 0, 537, 538, 7, 10, 0, 0, 538, 539, 7, 5, 0, 0, 539, 540, 7, 11, 0, 0, 540, 541, 1, 0, 0, 0, 541, 542, 6, 3, 1, 0, 542, 23, 1, 0, 0, 0, 543, 544, 7, 7, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 7, 12, 0, 0, 546, 547, 7, 10, 0, 0, 547, 548, 7, 2, 0, 0, 548, 549, 7, 3, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 6, 4, 2, 0, 551, 25, 1, 0, 0, 0, 552, 553, 7, 7, 0, 0, 553, 554, 7, 13, 0, 0, 554, 555, 7, 8, 0, 0, 555, 556, 7, 14, 0, 0, 556, 557, 7, 4, 0, 0, 557, 558, 7, 10, 0, 0, 558, 559, 7, 5, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 6, 5, 3, 0, 561, 27, 1, 0, 0, 0, 562, 563, 7, 15, 0, 0, 563, 564, 7, 10, 0, 0, 564, 565, 7, 16, 0, 0, 565, 566, 7, 16, 0, 0, 566, 567, 7, 7, 0, 0, 567, 568, 7, 2, 0, 0, 568, 569, 7, 11, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 6, 6, 4, 0, 571, 29, 1, 0, 0, 0, 572, 573, 7, 7, 0, 0, 573, 574, 7, 17, 0, 0, 574, 575, 7, 4, 0, 0, 575, 576, 7, 14, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 6, 7, 4, 0, 578, 31, 1, 0, 0, 0, 579, 580, 7, 6, 0, 0, 580, 581, 7, 12, 0, 0, 581, 582, 7, 9, 0, 0, 582, 583, 7, 18, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 6, 8, 4, 0, 585, 33, 1, 0, 0, 0, 586, 587, 7, 14, 0, 0, 587, 588, 7, 10, 0, 0, 588, 589, 7, 19, 0, 0, 589, 590, 7, 10, 0, 0, 590, 591, 7, 11, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 6, 9, 4, 0, 593, 35, 1, 0, 0, 0, 594, 595, 7, 12, 0, 0, 595, 596, 7, 9, 0, 0, 596, 597, 7, 20, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 6, 10, 4, 0, 599, 37, 1, 0, 0, 0, 600, 601, 7, 16, 0, 0, 601, 602, 7, 9, 0, 0, 602, 603, 7, 12, 0, 0, 603, 604, 7, 11, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 6, 11, 4, 0, 606, 39, 1, 0, 0, 0, 607, 608, 7, 16, 0, 0, 608, 609, 7, 11, 0, 0, 609, 610, 7, 4, 0, 0, 610, 611, 7, 11, 0, 0, 611, 612, 7, 16, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 6, 12, 4, 0, 614, 41, 1, 0, 0, 0, 615, 616, 7, 20, 0, 0, 616, 617, 7, 3, 0, 0, 617, 618, 7, 7, 0, 0, 618, 619, 7, 12, 0, 0, 619, 620, 7, 7, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 6, 13, 4, 0, 622, 43, 1, 0, 0, 0, 623, 624, 4, 14, 1, 0, 624, 625, 7, 10, 0, 0, 625, 626, 7, 5, 0, 0, 626, 627, 7, 14, 0, 0, 627, 628, 7, 10, 0, 0, 628, 629, 7, 5, 0, 0, 629, 630, 7, 7, 0, 0, 630, 631, 7, 16, 0, 0, 631, 632, 7, 11, 0, 0, 632, 633, 7, 4, 0, 0, 633, 634, 7, 11, 0, 0, 634, 635, 7, 16, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 6, 14, 4, 0, 637, 45, 1, 0, 0, 0, 638, 639, 4, 15, 2, 0, 639, 640, 7, 12, 0, 0, 640, 641, 7, 7, 0, 0, 641, 642, 7, 12, 0, 0, 642, 643, 7, 4, 0, 0, 643, 644, 7, 5, 0, 0, 644, 645, 7, 18, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 6, 15, 4, 0, 647, 47, 1, 0, 0, 0, 648, 649, 7, 21, 0, 0, 649, 650, 7, 12, 0, 0, 650, 651, 7, 9, 0, 0, 651, 652, 7, 19, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 6, 16, 5, 0, 654, 49, 1, 0, 0, 0, 655, 656, 4, 17, 3, 0, 656, 657, 7, 19, 0, 0, 657, 658, 7, 7, 0, 0, 658, 659, 7, 11, 0, 0, 659, 660, 7, 12, 0, 0, 660, 661, 7, 10, 0, 0, 661, 662, 7, 2, 0, 0, 662, 663, 7, 16, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 6, 17, 5, 0, 665, 51, 1, 0, 0, 0, 666, 667, 4, 18, 4, 0, 667, 668, 7, 21, 0, 0, 668, 669, 7, 9, 0, 0, 669, 670, 7, 12, 0, 0, 670, 671, 7, 18, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 6, 18, 6, 0, 673, 53, 1, 0, 0, 0, 674, 675, 7, 14, 0, 0, 675, 676, 7, 9, 0, 0, 676, 677, 7, 9, 0, 0, 677, 678, 7, 18, 0, 0, 678, 679, 7, 22, 0, 0, 679, 680, 7, 8, 0, 0, 680, 681, 1, 0, 0, 0, 681, 682, 6, 19, 7, 0, 682, 55, 1, 0, 0, 0, 683, 684, 4, 20, 5, 0, 684, 685, 7, 21, 0, 0, 685, 686, 7, 22, 0, 0, 686, 687, 7, 14, 0, 0, 687, 688, 7, 14, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 6, 20, 7, 0, 690, 57, 1, 0, 0, 0, 691, 692, 4, 21, 6, 0, 692, 693, 7, 14, 0, 0, 693, 694, 7, 7, 0, 0, 694, 695, 7, 21, 0, 0, 695, 696, 7, 11, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 6, 21, 7, 0, 698, 59, 1, 0, 0, 0, 699, 700, 4, 22, 7, 0, 700, 701, 7, 12, 0, 0, 701, 702, 7, 10, 0, 0, 702, 703, 7, 6, 0, 0, 703, 704, 7, 3, 0, 0, 704, 705, 7, 11, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 6, 22, 7, 0, 707, 61, 1, 0, 0, 0, 708, 709, 4, 23, 8, 0, 709, 710, 7, 14, 0, 0, 710, 711, 7, 9, 0, 0, 711, 712, 7, 9, 0, 0, 712, 713, 7, 18, 0, 0, 713, 714, 7, 22, 0, 0, 714, 715, 7, 8, 0, 0, 715, 716, 5, 95, 0, 0, 716, 717, 5, 128020, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 6, 23, 8, 0, 719, 63, 1, 0, 0, 0, 720, 721, 7, 19, 0, 0, 721, 722, 7, 17, 0, 0, 722, 723, 5, 95, 0, 0, 723, 724, 7, 7, 0, 0, 724, 725, 7, 13, 0, 0, 725, 726, 7, 8, 0, 0, 726, 727, 7, 4, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 7, 15, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 6, 24, 9, 0, 731, 65, 1, 0, 0, 0, 732, 733, 7, 15, 0, 0, 733, 734, 7, 12, 0, 0, 734, 735, 7, 9, 0, 0, 735, 736, 7, 8, 0, 0, 736, 737, 1, 0, 0, 0, 737, 738, 6, 25, 10, 0, 738, 67, 1, 0, 0, 0, 739, 740, 7, 18, 0, 0, 740, 741, 7, 7, 0, 0, 741, 742, 7, 7, 0, 0, 742, 743, 7, 8, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 6, 26, 10, 0, 745, 69, 1, 0, 0, 0, 746, 747, 4, 27, 9, 0, 747, 748, 7, 10, 0, 0, 748, 749, 7, 5, 0, 0, 749, 750, 7, 16, 0, 0, 750, 751, 7, 10, 0, 0, 751, 752, 7, 16, 0, 0, 752, 753, 7, 11, 0, 0, 753, 754, 5, 95, 0, 0, 754, 755, 5, 128020, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 6, 27, 10, 0, 757, 71, 1, 0, 0, 0, 758, 759, 4, 28, 10, 0, 759, 760, 7, 12, 0, 0, 760, 761, 7, 12, 0, 0, 761, 762, 7, 21, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 6, 28, 4, 0, 764, 73, 1, 0, 0, 0, 765, 766, 7, 12, 0, 0, 766, 767, 7, 7, 0, 0, 767, 768, 7, 5, 0, 0, 768, 769, 7, 4, 0, 0, 769, 770, 7, 19, 0, 0, 770, 771, 7, 7, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 6, 29, 11, 0, 773, 75, 1, 0, 0, 0, 774, 775, 7, 16, 0, 0, 775, 776, 7, 3, 0, 0, 776, 777, 7, 9, 0, 0, 777, 778, 7, 20, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 30, 12, 0, 780, 77, 1, 0, 0, 0, 781, 783, 8, 23, 0, 0, 782, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 784, 785, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 787, 6, 31, 4, 0, 787, 79, 1, 0, 0, 0, 788, 789, 3, 170, 77, 0, 789, 790, 1, 0, 0, 0, 790, 791, 6, 32, 13, 0, 791, 792, 6, 32, 14, 0, 792, 81, 1, 0, 0, 0, 793, 794, 3, 236, 110, 0, 794, 795, 1, 0, 0, 0, 795, 796, 6, 33, 15, 0, 796, 83, 1, 0, 0, 0, 797, 798, 3, 200, 92, 0, 798, 799, 1, 0, 0, 0, 799, 800, 6, 34, 16, 0, 800, 85, 1, 0, 0, 0, 801, 802, 3, 216, 100, 0, 802, 803, 1, 0, 0, 0, 803, 804, 6, 35, 17, 0, 804, 87, 1, 0, 0, 0, 805, 806, 3, 212, 98, 0, 806, 807, 1, 0, 0, 0, 807, 808, 6, 36, 18, 0, 808, 89, 1, 0, 0, 0, 809, 810, 3, 296, 140, 0, 810, 811, 1, 0, 0, 0, 811, 812, 6, 37, 19, 0, 812, 91, 1, 0, 0, 0, 813, 814, 3, 292, 138, 0, 814, 815, 1, 0, 0, 0, 815, 816, 6, 38, 20, 0, 816, 93, 1, 0, 0, 0, 817, 818, 3, 16, 0, 0, 818, 819, 1, 0, 0, 0, 819, 820, 6, 39, 0, 0, 820, 95, 1, 0, 0, 0, 821, 822, 3, 18, 1, 0, 822, 823, 1, 0, 0, 0, 823, 824, 6, 40, 0, 0, 824, 97, 1, 0, 0, 0, 825, 826, 3, 20, 2, 0, 826, 827, 1, 0, 0, 0, 827, 828, 6, 41, 0, 0, 828, 99, 1, 0, 0, 0, 829, 830, 3, 170, 77, 0, 830, 831, 1, 0, 0, 0, 831, 832, 6, 42, 13, 0, 832, 833, 6, 42, 14, 0, 833, 101, 1, 0, 0, 0, 834, 835, 3, 284, 134, 0, 835, 836, 1, 0, 0, 0, 836, 837, 6, 43, 21, 0, 837, 838, 6, 43, 22, 0, 838, 103, 1, 0, 0, 0, 839, 840, 3, 236, 110, 0, 840, 841, 1, 0, 0, 0, 841, 842, 6, 44, 15, 0, 842, 843, 6, 44, 23, 0, 843, 105, 1, 0, 0, 0, 844, 845, 3, 246, 115, 0, 845, 846, 1, 0, 0, 0, 846, 847, 6, 45, 24, 0, 847, 848, 6, 45, 23, 0, 848, 107, 1, 0, 0, 0, 849, 850, 8, 24, 0, 0, 850, 109, 1, 0, 0, 0, 851, 853, 3, 108, 46, 0, 852, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 3, 210, 97, 0, 857, 859, 1, 0, 0, 0, 858, 852, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 862, 3, 108, 46, 0, 861, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 111, 1, 0, 0, 0, 865, 866, 3, 110, 47, 0, 866, 867, 1, 0, 0, 0, 867, 868, 6, 48, 25, 0, 868, 113, 1, 0, 0, 0, 869, 870, 3, 16, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 6, 49, 0, 0, 872, 115, 1, 0, 0, 0, 873, 874, 3, 18, 1, 0, 874, 875, 1, 0, 0, 0, 875, 876, 6, 50, 0, 0, 876, 117, 1, 0, 0, 0, 877, 878, 3, 20, 2, 0, 878, 879, 1, 0, 0, 0, 879, 880, 6, 51, 0, 0, 880, 119, 1, 0, 0, 0, 881, 882, 3, 170, 77, 0, 882, 883, 1, 0, 0, 0, 883, 884, 6, 52, 13, 0, 884, 885, 6, 52, 14, 0, 885, 886, 6, 52, 14, 0, 886, 121, 1, 0, 0, 0, 887, 888, 3, 204, 94, 0, 888, 889, 1, 0, 0, 0, 889, 890, 6, 53, 26, 0, 890, 123, 1, 0, 0, 0, 891, 892, 3, 212, 98, 0, 892, 893, 1, 0, 0, 0, 893, 894, 6, 54, 18, 0, 894, 125, 1, 0, 0, 0, 895, 896, 3, 216, 100, 0, 896, 897, 1, 0, 0, 0, 897, 898, 6, 55, 17, 0, 898, 127, 1, 0, 0, 0, 899, 900, 3, 246, 115, 0, 900, 901, 1, 0, 0, 0, 901, 902, 6, 56, 24, 0, 902, 129, 1, 0, 0, 0, 903, 904, 3, 444, 214, 0, 904, 905, 1, 0, 0, 0, 905, 906, 6, 57, 27, 0, 906, 131, 1, 0, 0, 0, 907, 908, 3, 296, 140, 0, 908, 909, 1, 0, 0, 0, 909, 910, 6, 58, 19, 0, 910, 133, 1, 0, 0, 0, 911, 912, 3, 240, 112, 0, 912, 913, 1, 0, 0, 0, 913, 914, 6, 59, 28, 0, 914, 135, 1, 0, 0, 0, 915, 916, 3, 280, 132, 0, 916, 917, 1, 0, 0, 0, 917, 918, 6, 60, 29, 0, 918, 137, 1, 0, 0, 0, 919, 920, 4, 61, 11, 0, 920, 921, 3, 276, 130, 0, 921, 922, 1, 0, 0, 0, 922, 923, 6, 61, 30, 0, 923, 139, 1, 0, 0, 0, 924, 925, 4, 62, 12, 0, 925, 926, 3, 282, 133, 0, 926, 927, 1, 0, 0, 0, 927, 928, 6, 62, 31, 0, 928, 141, 1, 0, 0, 0, 929, 930, 3, 16, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 6, 63, 0, 0, 932, 143, 1, 0, 0, 0, 933, 934, 3, 18, 1, 0, 934, 935, 1, 0, 0, 0, 935, 936, 6, 64, 0, 0, 936, 145, 1, 0, 0, 0, 937, 938, 3, 20, 2, 0, 938, 939, 1, 0, 0, 0, 939, 940, 6, 65, 0, 0, 940, 147, 1, 0, 0, 0, 941, 942, 3, 286, 135, 0, 942, 943, 1, 0, 0, 0, 943, 944, 6, 66, 32, 0, 944, 945, 6, 66, 14, 0, 945, 149, 1, 0, 0, 0, 946, 947, 3, 210, 97, 0, 947, 948, 1, 0, 0, 0, 948, 949, 6, 67, 33, 0, 949, 151, 1, 0, 0, 0, 950, 956, 3, 182, 83, 0, 951, 956, 3, 172, 78, 0, 952, 956, 3, 216, 100, 0, 953, 956, 3, 174, 79, 0, 954, 956, 3, 188, 86, 0, 955, 950, 1, 0, 0, 0, 955, 951, 1, 0, 0, 0, 955, 952, 1, 0, 0, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 153, 1, 0, 0, 0, 959, 960, 3, 16, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 6, 69, 0, 0, 962, 155, 1, 0, 0, 0, 963, 964, 3, 18, 1, 0, 964, 965, 1, 0, 0, 0, 965, 966, 6, 70, 0, 0, 966, 157, 1, 0, 0, 0, 967, 968, 3, 20, 2, 0, 968, 969, 1, 0, 0, 0, 969, 970, 6, 71, 0, 0, 970, 159, 1, 0, 0, 0, 971, 972, 3, 284, 134, 0, 972, 973, 1, 0, 0, 0, 973, 974, 6, 72, 21, 0, 974, 975, 6, 72, 34, 0, 975, 161, 1, 0, 0, 0, 976, 977, 3, 170, 77, 0, 977, 978, 1, 0, 0, 0, 978, 979, 6, 73, 13, 0, 979, 980, 6, 73, 14, 0, 980, 163, 1, 0, 0, 0, 981, 982, 3, 20, 2, 0, 982, 983, 1, 0, 0, 0, 983, 984, 6, 74, 0, 0, 984, 165, 1, 0, 0, 0, 985, 986, 3, 16, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 6, 75, 0, 0, 988, 167, 1, 0, 0, 0, 989, 990, 3, 18, 1, 0, 990, 991, 1, 0, 0, 0, 991, 992, 6, 76, 0, 0, 992, 169, 1, 0, 0, 0, 993, 994, 5, 124, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 6, 77, 14, 0, 996, 171, 1, 0, 0, 0, 997, 998, 7, 25, 0, 0, 998, 173, 1, 0, 0, 0, 999, 1000, 7, 26, 0, 0, 1000, 175, 1, 0, 0, 0, 1001, 1002, 5, 92, 0, 0, 1002, 1003, 7, 27, 0, 0, 1003, 177, 1, 0, 0, 0, 1004, 1005, 8, 28, 0, 0, 1005, 179, 1, 0, 0, 0, 1006, 1008, 7, 7, 0, 0, 1007, 1009, 7, 29, 0, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1011, 1, 0, 0, 0, 1010, 1012, 3, 172, 78, 0, 1011, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1011, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 181, 1, 0, 0, 0, 1015, 1016, 5, 64, 0, 0, 1016, 183, 1, 0, 0, 0, 1017, 1018, 5, 96, 0, 0, 1018, 185, 1, 0, 0, 0, 1019, 1023, 8, 30, 0, 0, 1020, 1021, 5, 96, 0, 0, 1021, 1023, 5, 96, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 187, 1, 0, 0, 0, 1024, 1025, 5, 95, 0, 0, 1025, 189, 1, 0, 0, 0, 1026, 1030, 3, 174, 79, 0, 1027, 1030, 3, 172, 78, 0, 1028, 1030, 3, 188, 86, 0, 1029, 1026, 1, 0, 0, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1028, 1, 0, 0, 0, 1030, 191, 1, 0, 0, 0, 1031, 1036, 5, 34, 0, 0, 1032, 1035, 3, 176, 80, 0, 1033, 1035, 3, 178, 81, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1033, 1, 0, 0, 0, 1035, 1038, 1, 0, 0, 0, 1036, 1034, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1039, 1, 0, 0, 0, 1038, 1036, 1, 0, 0, 0, 1039, 1061, 5, 34, 0, 0, 1040, 1041, 5, 34, 0, 0, 1041, 1042, 5, 34, 0, 0, 1042, 1043, 5, 34, 0, 0, 1043, 1047, 1, 0, 0, 0, 1044, 1046, 8, 0, 0, 0, 1045, 1044, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1050, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 34, 0, 0, 1051, 1052, 5, 34, 0, 0, 1052, 1053, 5, 34, 0, 0, 1053, 1055, 1, 0, 0, 0, 1054, 1056, 5, 34, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1058, 1, 0, 0, 0, 1057, 1059, 5, 34, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 1, 0, 0, 0, 1060, 1031, 1, 0, 0, 0, 1060, 1040, 1, 0, 0, 0, 1061, 193, 1, 0, 0, 0, 1062, 1064, 3, 172, 78, 0, 1063, 1062, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 195, 1, 0, 0, 0, 1067, 1069, 3, 172, 78, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 3, 216, 100, 0, 1073, 1075, 3, 172, 78, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1078, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1110, 1, 0, 0, 0, 1078, 1076, 1, 0, 0, 0, 1079, 1081, 3, 216, 100, 0, 1080, 1082, 3, 172, 78, 0, 1081, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1081, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1110, 1, 0, 0, 0, 1085, 1087, 3, 172, 78, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1097, 1, 0, 0, 0, 1090, 1094, 3, 216, 100, 0, 1091, 1093, 3, 172, 78, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1096, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1098, 1, 0, 0, 0, 1096, 1094, 1, 0, 0, 0, 1097, 1090, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 180, 82, 0, 1100, 1110, 1, 0, 0, 0, 1101, 1103, 3, 216, 100, 0, 1102, 1104, 3, 172, 78, 0, 1103, 1102, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 180, 82, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1068, 1, 0, 0, 0, 1109, 1079, 1, 0, 0, 0, 1109, 1086, 1, 0, 0, 0, 1109, 1101, 1, 0, 0, 0, 1110, 197, 1, 0, 0, 0, 1111, 1112, 7, 4, 0, 0, 1112, 1113, 7, 5, 0, 0, 1113, 1114, 7, 15, 0, 0, 1114, 199, 1, 0, 0, 0, 1115, 1116, 7, 4, 0, 0, 1116, 1117, 7, 16, 0, 0, 1117, 201, 1, 0, 0, 0, 1118, 1119, 7, 4, 0, 0, 1119, 1120, 7, 16, 0, 0, 1120, 1121, 7, 2, 0, 0, 1121, 203, 1, 0, 0, 0, 1122, 1123, 5, 61, 0, 0, 1123, 205, 1, 0, 0, 0, 1124, 1125, 7, 31, 0, 0, 1125, 1126, 7, 32, 0, 0, 1126, 207, 1, 0, 0, 0, 1127, 1128, 5, 58, 0, 0, 1128, 1129, 5, 58, 0, 0, 1129, 209, 1, 0, 0, 0, 1130, 1131, 5, 58, 0, 0, 1131, 211, 1, 0, 0, 0, 1132, 1133, 5, 44, 0, 0, 1133, 213, 1, 0, 0, 0, 1134, 1135, 7, 15, 0, 0, 1135, 1136, 7, 7, 0, 0, 1136, 1137, 7, 16, 0, 0, 1137, 1138, 7, 2, 0, 0, 1138, 215, 1, 0, 0, 0, 1139, 1140, 5, 46, 0, 0, 1140, 217, 1, 0, 0, 0, 1141, 1142, 7, 21, 0, 0, 1142, 1143, 7, 4, 0, 0, 1143, 1144, 7, 14, 0, 0, 1144, 1145, 7, 16, 0, 0, 1145, 1146, 7, 7, 0, 0, 1146, 219, 1, 0, 0, 0, 1147, 1148, 7, 21, 0, 0, 1148, 1149, 7, 10, 0, 0, 1149, 1150, 7, 12, 0, 0, 1150, 1151, 7, 16, 0, 0, 1151, 1152, 7, 11, 0, 0, 1152, 221, 1, 0, 0, 0, 1153, 1154, 7, 10, 0, 0, 1154, 1155, 7, 5, 0, 0, 1155, 223, 1, 0, 0, 0, 1156, 1157, 7, 10, 0, 0, 1157, 1158, 7, 16, 0, 0, 1158, 225, 1, 0, 0, 0, 1159, 1160, 7, 14, 0, 0, 1160, 1161, 7, 4, 0, 0, 1161, 1162, 7, 16, 0, 0, 1162, 1163, 7, 11, 0, 0, 1163, 227, 1, 0, 0, 0, 1164, 1165, 7, 14, 0, 0, 1165, 1166, 7, 10, 0, 0, 1166, 1167, 7, 18, 0, 0, 1167, 1168, 7, 7, 0, 0, 1168, 229, 1, 0, 0, 0, 1169, 1170, 7, 5, 0, 0, 1170, 1171, 7, 9, 0, 0, 1171, 1172, 7, 11, 0, 0, 1172, 231, 1, 0, 0, 0, 1173, 1174, 7, 5, 0, 0, 1174, 1175, 7, 22, 0, 0, 1175, 1176, 7, 14, 0, 0, 1176, 1177, 7, 14, 0, 0, 1177, 233, 1, 0, 0, 0, 1178, 1179, 7, 5, 0, 0, 1179, 1180, 7, 22, 0, 0, 1180, 1181, 7, 14, 0, 0, 1181, 1182, 7, 14, 0, 0, 1182, 1183, 7, 16, 0, 0, 1183, 235, 1, 0, 0, 0, 1184, 1185, 7, 9, 0, 0, 1185, 1186, 7, 5, 0, 0, 1186, 237, 1, 0, 0, 0, 1187, 1188, 7, 9, 0, 0, 1188, 1189, 7, 12, 0, 0, 1189, 239, 1, 0, 0, 0, 1190, 1191, 5, 63, 0, 0, 1191, 241, 1, 0, 0, 0, 1192, 1193, 7, 12, 0, 0, 1193, 1194, 7, 14, 0, 0, 1194, 1195, 7, 10, 0, 0, 1195, 1196, 7, 18, 0, 0, 1196, 1197, 7, 7, 0, 0, 1197, 243, 1, 0, 0, 0, 1198, 1199, 7, 11, 0, 0, 1199, 1200, 7, 12, 0, 0, 1200, 1201, 7, 22, 0, 0, 1201, 1202, 7, 7, 0, 0, 1202, 245, 1, 0, 0, 0, 1203, 1204, 7, 20, 0, 0, 1204, 1205, 7, 10, 0, 0, 1205, 1206, 7, 11, 0, 0, 1206, 1207, 7, 3, 0, 0, 1207, 247, 1, 0, 0, 0, 1208, 1209, 5, 61, 0, 0, 1209, 1210, 5, 61, 0, 0, 1210, 249, 1, 0, 0, 0, 1211, 1212, 5, 61, 0, 0, 1212, 1213, 5, 126, 0, 0, 1213, 251, 1, 0, 0, 0, 1214, 1215, 5, 33, 0, 0, 1215, 1216, 5, 61, 0, 0, 1216, 253, 1, 0, 0, 0, 1217, 1218, 5, 60, 0, 0, 1218, 255, 1, 0, 0, 0, 1219, 1220, 5, 60, 0, 0, 1220, 1221, 5, 61, 0, 0, 1221, 257, 1, 0, 0, 0, 1222, 1223, 5, 62, 0, 0, 1223, 259, 1, 0, 0, 0, 1224, 1225, 5, 62, 0, 0, 1225, 1226, 5, 61, 0, 0, 1226, 261, 1, 0, 0, 0, 1227, 1228, 5, 43, 0, 0, 1228, 263, 1, 0, 0, 0, 1229, 1230, 5, 45, 0, 0, 1230, 265, 1, 0, 0, 0, 1231, 1232, 5, 42, 0, 0, 1232, 267, 1, 0, 0, 0, 1233, 1234, 5, 47, 0, 0, 1234, 269, 1, 0, 0, 0, 1235, 1236, 5, 37, 0, 0, 1236, 271, 1, 0, 0, 0, 1237, 1238, 5, 123, 0, 0, 1238, 273, 1, 0, 0, 0, 1239, 1240, 5, 125, 0, 0, 1240, 275, 1, 0, 0, 0, 1241, 1242, 4, 130, 13, 0, 1242, 1243, 5, 63, 0, 0, 1243, 1244, 5, 63, 0, 0, 1244, 277, 1, 0, 0, 0, 1245, 1246, 3, 42, 13, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 6, 131, 35, 0, 1248, 279, 1, 0, 0, 0, 1249, 1252, 3, 240, 112, 0, 1250, 1253, 3, 174, 79, 0, 1251, 1253, 3, 188, 86, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 1257, 1, 0, 0, 0, 1254, 1256, 3, 190, 87, 0, 1255, 1254, 1, 0, 0, 0, 1256, 1259, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1267, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1262, 3, 240, 112, 0, 1261, 1263, 3, 172, 78, 0, 1262, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1262, 1, 0, 0, 0, 1264, 1265, 1, 0, 0, 0, 1265, 1267, 1, 0, 0, 0, 1266, 1249, 1, 0, 0, 0, 1266, 1260, 1, 0, 0, 0, 1267, 281, 1, 0, 0, 0, 1268, 1271, 3, 276, 130, 0, 1269, 1272, 3, 174, 79, 0, 1270, 1272, 3, 188, 86, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1276, 1, 0, 0, 0, 1273, 1275, 3, 190, 87, 0, 1274, 1273, 1, 0, 0, 0, 1275, 1278, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1286, 1, 0, 0, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1281, 3, 276, 130, 0, 1280, 1282, 3, 172, 78, 0, 1281, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1268, 1, 0, 0, 0, 1285, 1279, 1, 0, 0, 0, 1286, 283, 1, 0, 0, 0, 1287, 1288, 5, 91, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1290, 6, 134, 4, 0, 1290, 1291, 6, 134, 4, 0, 1291, 285, 1, 0, 0, 0, 1292, 1293, 5, 93, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 135, 14, 0, 1295, 1296, 6, 135, 14, 0, 1296, 287, 1, 0, 0, 0, 1297, 1298, 5, 40, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 136, 4, 0, 1300, 1301, 6, 136, 4, 0, 1301, 289, 1, 0, 0, 0, 1302, 1303, 5, 41, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 6, 137, 14, 0, 1305, 1306, 6, 137, 14, 0, 1306, 291, 1, 0, 0, 0, 1307, 1311, 3, 174, 79, 0, 1308, 1310, 3, 190, 87, 0, 1309, 1308, 1, 0, 0, 0, 1310, 1313, 1, 0, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1324, 1, 0, 0, 0, 1313, 1311, 1, 0, 0, 0, 1314, 1317, 3, 188, 86, 0, 1315, 1317, 3, 182, 83, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 1319, 1, 0, 0, 0, 1318, 1320, 3, 190, 87, 0, 1319, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1324, 1, 0, 0, 0, 1323, 1307, 1, 0, 0, 0, 1323, 1316, 1, 0, 0, 0, 1324, 293, 1, 0, 0, 0, 1325, 1327, 3, 184, 84, 0, 1326, 1328, 3, 186, 85, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 3, 184, 84, 0, 1332, 295, 1, 0, 0, 0, 1333, 1334, 3, 294, 139, 0, 1334, 297, 1, 0, 0, 0, 1335, 1336, 3, 16, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1338, 6, 141, 0, 0, 1338, 299, 1, 0, 0, 0, 1339, 1340, 3, 18, 1, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1342, 6, 142, 0, 0, 1342, 301, 1, 0, 0, 0, 1343, 1344, 3, 20, 2, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1346, 6, 143, 0, 0, 1346, 303, 1, 0, 0, 0, 1347, 1348, 3, 170, 77, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 6, 144, 13, 0, 1350, 1351, 6, 144, 14, 0, 1351, 305, 1, 0, 0, 0, 1352, 1353, 3, 284, 134, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 6, 145, 21, 0, 1355, 307, 1, 0, 0, 0, 1356, 1357, 3, 286, 135, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 6, 146, 32, 0, 1359, 309, 1, 0, 0, 0, 1360, 1361, 3, 210, 97, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 6, 147, 33, 0, 1363, 311, 1, 0, 0, 0, 1364, 1365, 4, 148, 14, 0, 1365, 1366, 3, 208, 96, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 6, 148, 36, 0, 1368, 313, 1, 0, 0, 0, 1369, 1370, 3, 212, 98, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1372, 6, 149, 18, 0, 1372, 315, 1, 0, 0, 0, 1373, 1374, 3, 204, 94, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 6, 150, 26, 0, 1376, 317, 1, 0, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1379, 7, 7, 0, 0, 1379, 1380, 7, 11, 0, 0, 1380, 1381, 7, 4, 0, 0, 1381, 1382, 7, 15, 0, 0, 1382, 1383, 7, 4, 0, 0, 1383, 1384, 7, 11, 0, 0, 1384, 1385, 7, 4, 0, 0, 1385, 319, 1, 0, 0, 0, 1386, 1390, 8, 33, 0, 0, 1387, 1388, 5, 47, 0, 0, 1388, 1390, 8, 34, 0, 0, 1389, 1386, 1, 0, 0, 0, 1389, 1387, 1, 0, 0, 0, 1390, 321, 1, 0, 0, 0, 1391, 1393, 3, 320, 152, 0, 1392, 1391, 1, 0, 0, 0, 1393, 1394, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1395, 1, 0, 0, 0, 1395, 323, 1, 0, 0, 0, 1396, 1397, 3, 322, 153, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1399, 6, 154, 37, 0, 1399, 325, 1, 0, 0, 0, 1400, 1401, 3, 192, 88, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 6, 155, 38, 0, 1403, 327, 1, 0, 0, 0, 1404, 1405, 3, 16, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 6, 156, 0, 0, 1407, 329, 1, 0, 0, 0, 1408, 1409, 3, 18, 1, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1411, 6, 157, 0, 0, 1411, 331, 1, 0, 0, 0, 1412, 1413, 3, 20, 2, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1415, 6, 158, 0, 0, 1415, 333, 1, 0, 0, 0, 1416, 1417, 3, 288, 136, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 6, 159, 39, 0, 1419, 1420, 6, 159, 34, 0, 1420, 335, 1, 0, 0, 0, 1421, 1422, 3, 170, 77, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 6, 160, 13, 0, 1424, 1425, 6, 160, 14, 0, 1425, 337, 1, 0, 0, 0, 1426, 1427, 3, 20, 2, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 6, 161, 0, 0, 1429, 339, 1, 0, 0, 0, 1430, 1431, 3, 16, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 6, 162, 0, 0, 1433, 341, 1, 0, 0, 0, 1434, 1435, 3, 18, 1, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1437, 6, 163, 0, 0, 1437, 343, 1, 0, 0, 0, 1438, 1439, 3, 170, 77, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 6, 164, 13, 0, 1441, 1442, 6, 164, 14, 0, 1442, 345, 1, 0, 0, 0, 1443, 1444, 7, 35, 0, 0, 1444, 1445, 7, 9, 0, 0, 1445, 1446, 7, 10, 0, 0, 1446, 1447, 7, 5, 0, 0, 1447, 347, 1, 0, 0, 0, 1448, 1449, 3, 200, 92, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 6, 166, 16, 0, 1451, 349, 1, 0, 0, 0, 1452, 1453, 3, 236, 110, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 6, 167, 15, 0, 1455, 1456, 6, 167, 14, 0, 1456, 1457, 6, 167, 4, 0, 1457, 351, 1, 0, 0, 0, 1458, 1459, 7, 22, 0, 0, 1459, 1460, 7, 16, 0, 0, 1460, 1461, 7, 10, 0, 0, 1461, 1462, 7, 5, 0, 0, 1462, 1463, 7, 6, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 6, 168, 14, 0, 1465, 1466, 6, 168, 4, 0, 1466, 353, 1, 0, 0, 0, 1467, 1468, 3, 322, 153, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 169, 37, 0, 1470, 355, 1, 0, 0, 0, 1471, 1472, 3, 192, 88, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 6, 170, 38, 0, 1474, 357, 1, 0, 0, 0, 1475, 1476, 3, 210, 97, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 6, 171, 33, 0, 1478, 359, 1, 0, 0, 0, 1479, 1480, 3, 292, 138, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1482, 6, 172, 20, 0, 1482, 361, 1, 0, 0, 0, 1483, 1484, 3, 296, 140, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1486, 6, 173, 19, 0, 1486, 363, 1, 0, 0, 0, 1487, 1488, 3, 16, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 6, 174, 0, 0, 1490, 365, 1, 0, 0, 0, 1491, 1492, 3, 18, 1, 0, 1492, 1493, 1, 0, 0, 0, 1493, 1494, 6, 175, 0, 0, 1494, 367, 1, 0, 0, 0, 1495, 1496, 3, 20, 2, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 6, 176, 0, 0, 1498, 369, 1, 0, 0, 0, 1499, 1500, 3, 170, 77, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 6, 177, 13, 0, 1502, 1503, 6, 177, 14, 0, 1503, 371, 1, 0, 0, 0, 1504, 1505, 3, 210, 97, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 178, 33, 0, 1507, 373, 1, 0, 0, 0, 1508, 1509, 3, 212, 98, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 179, 18, 0, 1511, 375, 1, 0, 0, 0, 1512, 1513, 3, 216, 100, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 180, 17, 0, 1515, 377, 1, 0, 0, 0, 1516, 1517, 3, 236, 110, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1519, 6, 181, 15, 0, 1519, 1520, 6, 181, 40, 0, 1520, 379, 1, 0, 0, 0, 1521, 1522, 3, 322, 153, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1524, 6, 182, 37, 0, 1524, 381, 1, 0, 0, 0, 1525, 1526, 3, 192, 88, 0, 1526, 1527, 1, 0, 0, 0, 1527, 1528, 6, 183, 38, 0, 1528, 383, 1, 0, 0, 0, 1529, 1530, 3, 16, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 6, 184, 0, 0, 1532, 385, 1, 0, 0, 0, 1533, 1534, 3, 18, 1, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 6, 185, 0, 0, 1536, 387, 1, 0, 0, 0, 1537, 1538, 3, 20, 2, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 6, 186, 0, 0, 1540, 389, 1, 0, 0, 0, 1541, 1542, 3, 170, 77, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1544, 6, 187, 13, 0, 1544, 1545, 6, 187, 14, 0, 1545, 1546, 6, 187, 14, 0, 1546, 391, 1, 0, 0, 0, 1547, 1548, 3, 212, 98, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 6, 188, 18, 0, 1550, 393, 1, 0, 0, 0, 1551, 1552, 3, 216, 100, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1554, 6, 189, 17, 0, 1554, 395, 1, 0, 0, 0, 1555, 1556, 3, 444, 214, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 6, 190, 27, 0, 1558, 397, 1, 0, 0, 0, 1559, 1560, 3, 16, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1562, 6, 191, 0, 0, 1562, 399, 1, 0, 0, 0, 1563, 1564, 3, 18, 1, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 6, 192, 0, 0, 1566, 401, 1, 0, 0, 0, 1567, 1568, 3, 20, 2, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 6, 193, 0, 0, 1570, 403, 1, 0, 0, 0, 1571, 1572, 3, 170, 77, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 6, 194, 13, 0, 1574, 1575, 6, 194, 14, 0, 1575, 405, 1, 0, 0, 0, 1576, 1577, 3, 216, 100, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1579, 6, 195, 17, 0, 1579, 407, 1, 0, 0, 0, 1580, 1581, 3, 240, 112, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 6, 196, 28, 0, 1583, 409, 1, 0, 0, 0, 1584, 1585, 3, 280, 132, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 6, 197, 29, 0, 1587, 411, 1, 0, 0, 0, 1588, 1589, 4, 198, 15, 0, 1589, 1590, 3, 276, 130, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 6, 198, 30, 0, 1592, 413, 1, 0, 0, 0, 1593, 1594, 4, 199, 16, 0, 1594, 1595, 3, 282, 133, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 199, 31, 0, 1597, 415, 1, 0, 0, 0, 1598, 1599, 3, 296, 140, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 200, 19, 0, 1601, 417, 1, 0, 0, 0, 1602, 1603, 3, 292, 138, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 201, 20, 0, 1605, 419, 1, 0, 0, 0, 1606, 1607, 3, 16, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 202, 0, 0, 1609, 421, 1, 0, 0, 0, 1610, 1611, 3, 18, 1, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 6, 203, 0, 0, 1613, 423, 1, 0, 0, 0, 1614, 1615, 3, 20, 2, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 6, 204, 0, 0, 1617, 425, 1, 0, 0, 0, 1618, 1619, 3, 170, 77, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 6, 205, 13, 0, 1621, 1622, 6, 205, 14, 0, 1622, 427, 1, 0, 0, 0, 1623, 1624, 3, 216, 100, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1626, 6, 206, 17, 0, 1626, 429, 1, 0, 0, 0, 1627, 1628, 3, 212, 98, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 6, 207, 18, 0, 1630, 431, 1, 0, 0, 0, 1631, 1632, 3, 240, 112, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1634, 6, 208, 28, 0, 1634, 433, 1, 0, 0, 0, 1635, 1636, 3, 280, 132, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 6, 209, 29, 0, 1638, 435, 1, 0, 0, 0, 1639, 1640, 4, 210, 17, 0, 1640, 1641, 3, 276, 130, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1643, 6, 210, 30, 0, 1643, 437, 1, 0, 0, 0, 1644, 1645, 4, 211, 18, 0, 1645, 1646, 3, 282, 133, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 6, 211, 31, 0, 1648, 439, 1, 0, 0, 0, 1649, 1654, 3, 174, 79, 0, 1650, 1654, 3, 172, 78, 0, 1651, 1654, 3, 188, 86, 0, 1652, 1654, 3, 266, 125, 0, 1653, 1649, 1, 0, 0, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 441, 1, 0, 0, 0, 1655, 1658, 3, 174, 79, 0, 1656, 1658, 3, 266, 125, 0, 1657, 1655, 1, 0, 0, 0, 1657, 1656, 1, 0, 0, 0, 1658, 1662, 1, 0, 0, 0, 1659, 1661, 3, 440, 212, 0, 1660, 1659, 1, 0, 0, 0, 1661, 1664, 1, 0, 0, 0, 1662, 1660, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1675, 1, 0, 0, 0, 1664, 1662, 1, 0, 0, 0, 1665, 1668, 3, 188, 86, 0, 1666, 1668, 3, 182, 83, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1666, 1, 0, 0, 0, 1668, 1670, 1, 0, 0, 0, 1669, 1671, 3, 440, 212, 0, 1670, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1657, 1, 0, 0, 0, 1674, 1667, 1, 0, 0, 0, 1675, 443, 1, 0, 0, 0, 1676, 1679, 3, 442, 213, 0, 1677, 1679, 3, 294, 139, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 445, 1, 0, 0, 0, 1682, 1683, 3, 16, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1685, 6, 215, 0, 0, 1685, 447, 1, 0, 0, 0, 1686, 1687, 3, 18, 1, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 216, 0, 0, 1689, 449, 1, 0, 0, 0, 1690, 1691, 3, 20, 2, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1693, 6, 217, 0, 0, 1693, 451, 1, 0, 0, 0, 1694, 1695, 3, 170, 77, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 6, 218, 13, 0, 1697, 1698, 6, 218, 14, 0, 1698, 453, 1, 0, 0, 0, 1699, 1700, 3, 204, 94, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 6, 219, 26, 0, 1702, 455, 1, 0, 0, 0, 1703, 1704, 3, 212, 98, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1706, 6, 220, 18, 0, 1706, 457, 1, 0, 0, 0, 1707, 1708, 3, 216, 100, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 6, 221, 17, 0, 1710, 459, 1, 0, 0, 0, 1711, 1712, 3, 240, 112, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 6, 222, 28, 0, 1714, 461, 1, 0, 0, 0, 1715, 1716, 3, 280, 132, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 6, 223, 29, 0, 1718, 463, 1, 0, 0, 0, 1719, 1720, 4, 224, 19, 0, 1720, 1721, 3, 276, 130, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1723, 6, 224, 30, 0, 1723, 465, 1, 0, 0, 0, 1724, 1725, 4, 225, 20, 0, 1725, 1726, 3, 282, 133, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 6, 225, 31, 0, 1728, 467, 1, 0, 0, 0, 1729, 1730, 3, 200, 92, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1732, 6, 226, 16, 0, 1732, 469, 1, 0, 0, 0, 1733, 1734, 3, 444, 214, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 6, 227, 27, 0, 1736, 471, 1, 0, 0, 0, 1737, 1738, 3, 16, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 6, 228, 0, 0, 1740, 473, 1, 0, 0, 0, 1741, 1742, 3, 18, 1, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 6, 229, 0, 0, 1744, 475, 1, 0, 0, 0, 1745, 1746, 3, 20, 2, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 6, 230, 0, 0, 1748, 477, 1, 0, 0, 0, 1749, 1750, 3, 170, 77, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 231, 13, 0, 1752, 1753, 6, 231, 14, 0, 1753, 479, 1, 0, 0, 0, 1754, 1755, 7, 10, 0, 0, 1755, 1756, 7, 5, 0, 0, 1756, 1757, 7, 21, 0, 0, 1757, 1758, 7, 9, 0, 0, 1758, 481, 1, 0, 0, 0, 1759, 1760, 3, 16, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 6, 233, 0, 0, 1762, 483, 1, 0, 0, 0, 1763, 1764, 3, 18, 1, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 234, 0, 0, 1766, 485, 1, 0, 0, 0, 1767, 1768, 3, 20, 2, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 235, 0, 0, 1770, 487, 1, 0, 0, 0, 70, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 494, 498, 501, 510, 512, 523, 784, 854, 858, 863, 955, 957, 1008, 1013, 1022, 1029, 1034, 1036, 1047, 1055, 1058, 1060, 1065, 1070, 1076, 1083, 1088, 1094, 1097, 1105, 1109, 1252, 1257, 1264, 1266, 1271, 1276, 1283, 1285, 1311, 1316, 1321, 1323, 1329, 1389, 1394, 1653, 1657, 1662, 1667, 1672, 1674, 1678, 1680, 41, 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, 10, 0, 5, 12, 0, 5, 13, 0, 5, 14, 0, 5, 15, 0, 7, 50, 0, 4, 0, 0, 7, 73, 0, 7, 55, 0, 7, 63, 0, 7, 61, 0, 7, 101, 0, 7, 100, 0, 7, 96, 0, 5, 4, 0, 5, 3, 0, 7, 78, 0, 7, 36, 0, 7, 57, 0, 7, 127, 0, 7, 75, 0, 7, 94, 0, 7, 93, 0, 7, 95, 0, 7, 97, 0, 7, 60, 0, 5, 0, 0, 7, 14, 0, 7, 59, 0, 7, 106, 0, 7, 51, 0, 7, 98, 0, 5, 11, 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 416b5e6046807..c77c8709fa805 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 @@ -35,12 +35,12 @@ public class EsqlBaseLexer extends LexerConfig { ENRICH_WS=39, ENRICH_FIELD_LINE_COMMENT=40, ENRICH_FIELD_MULTILINE_COMMENT=41, ENRICH_FIELD_WS=42, SETTING=43, SETTING_LINE_COMMENT=44, SETTTING_MULTILINE_COMMENT=45, SETTING_WS=46, EXPLAIN_WS=47, EXPLAIN_LINE_COMMENT=48, EXPLAIN_MULTILINE_COMMENT=49, - PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, BY=54, - ON=55, WITH=56, AS=57, AND=58, ASC=59, ASSIGN=60, CAST_OP=61, COLON=62, - COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69, LAST=70, - LIKE=71, NOT=72, NULL=73, NULLS=74, OR=75, PARAM=76, RLIKE=77, TRUE=78, - EQ=79, CIEQ=80, NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, - ASTERISK=88, SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, + PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, AND=54, + AS=55, ASC=56, ASSIGN=57, BY=58, CAST_OP=59, COLON=60, COMMA=61, DESC=62, + DOT=63, FALSE=64, FIRST=65, IN=66, IS=67, LAST=68, LIKE=69, NOT=70, NULL=71, + NULLS=72, ON=73, OR=74, PARAM=75, RLIKE=76, TRUE=77, WITH=78, EQ=79, CIEQ=80, + NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, ASTERISK=88, + SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, NAMED_OR_POSITIONAL_PARAM=94, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=95, OPENING_BRACKET=96, CLOSING_BRACKET=97, LP=98, RP=99, UNQUOTED_IDENTIFIER=100, QUOTED_IDENTIFIER=101, EXPR_LINE_COMMENT=102, EXPR_MULTILINE_COMMENT=103, EXPR_WS=104, METADATA=105, @@ -93,10 +93,10 @@ private static String[] makeRuleNames() { "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", "ON", "WITH", "AS", "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", + "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY", + "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS", + "LAST", "LIKE", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE", + "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET", "LP", "RP", "UNQUOTED_IDENTIFIER", @@ -137,10 +137,10 @@ private static String[] makeLiteralNames() { "'from'", null, null, "'lookup'", null, null, null, null, "'mv_expand'", "'drop'", "'keep'", null, null, "'rename'", "'show'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, "'|'", null, null, null, "'by'", "'on'", "'with'", - "'as'", "'and'", "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", - "'false'", "'first'", "'in'", "'is'", "'last'", "'like'", "'not'", "'null'", - "'nulls'", "'or'", "'?'", "'rlike'", "'true'", "'=='", "'=~'", "'!='", + null, null, null, "'|'", null, null, null, "'and'", "'as'", "'asc'", + "'='", "'by'", "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", + "'in'", "'is'", "'last'", "'like'", "'not'", "'null'", "'nulls'", "'on'", + "'or'", "'?'", "'rlike'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", null, null, null, null, "']'", null, "')'", null, null, null, null, null, "'metadata'", null, null, null, null, null, null, null, "'join'", @@ -161,22 +161,23 @@ private static String[] makeSymbolicNames() { "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", - "ON", "WITH", "AS", "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", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "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", "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", - "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", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", - "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", - "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" + "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", + "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC", "DOT", + "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "NOT", "NULL", "NULLS", + "ON", "OR", "PARAM", "RLIKE", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", + "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", + "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", + "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", "FORK_WS", "FORK_LINE_COMMENT", + "FORK_MULTILINE_COMMENT", "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", + "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", + "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", + "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO", + "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -585,16 +586,16 @@ private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _lo "\nZ\fZ\u0436\tZ\u0001Z\u0001Z\u0004Z\u043a\bZ\u000bZ\fZ\u043b\u0001Z\u0004"+ "Z\u043f\bZ\u000bZ\fZ\u0440\u0001Z\u0001Z\u0005Z\u0445\bZ\nZ\fZ\u0448\t"+ "Z\u0003Z\u044a\bZ\u0001Z\u0001Z\u0001Z\u0001Z\u0004Z\u0450\bZ\u000bZ\f"+ - "Z\u0451\u0001Z\u0001Z\u0003Z\u0456\bZ\u0001[\u0001[\u0001[\u0001\\\u0001"+ - "\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001^\u0001"+ - "_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001a\u0001a\u0001"+ - "b\u0001b\u0001b\u0001c\u0001c\u0001d\u0001d\u0001e\u0001e\u0001e\u0001"+ - "e\u0001e\u0001f\u0001f\u0001g\u0001g\u0001g\u0001g\u0001g\u0001g\u0001"+ - "h\u0001h\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001j\u0001"+ - "j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+ - "l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001n\u0001n\u0001n\u0001n\u0001"+ - "n\u0001o\u0001o\u0001o\u0001o\u0001o\u0001o\u0001p\u0001p\u0001p\u0001"+ - "q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001"+ + "Z\u0451\u0001Z\u0001Z\u0003Z\u0456\bZ\u0001[\u0001[\u0001[\u0001[\u0001"+ + "\\\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001_\u0001"+ + "_\u0001_\u0001`\u0001`\u0001`\u0001a\u0001a\u0001b\u0001b\u0001c\u0001"+ + "c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001e\u0001e\u0001e\u0001e\u0001"+ + "e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001"+ + "g\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001i\u0001j\u0001"+ + "j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001"+ + "l\u0001l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001n\u0001"+ + "n\u0001n\u0001o\u0001o\u0001o\u0001p\u0001p\u0001q\u0001q\u0001q\u0001"+ + "q\u0001q\u0001q\u0001r\u0001r\u0001r\u0001r\u0001r\u0001s\u0001s\u0001"+ "s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001u\u0001u\u0001u\u0001v\u0001"+ "v\u0001v\u0001w\u0001w\u0001x\u0001x\u0001x\u0001y\u0001y\u0001z\u0001"+ "z\u0001z\u0001{\u0001{\u0001|\u0001|\u0001}\u0001}\u0001~\u0001~\u0001"+ @@ -876,18 +877,18 @@ private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _lo "\u0000\u00bc\u0400\u0001\u0000\u0000\u0000\u00be\u0405\u0001\u0000\u0000"+ "\u0000\u00c0\u0424\u0001\u0000\u0000\u0000\u00c2\u0427\u0001\u0000\u0000"+ "\u0000\u00c4\u0455\u0001\u0000\u0000\u0000\u00c6\u0457\u0001\u0000\u0000"+ - "\u0000\u00c8\u045a\u0001\u0000\u0000\u0000\u00ca\u045d\u0001\u0000\u0000"+ - "\u0000\u00cc\u0462\u0001\u0000\u0000\u0000\u00ce\u0465\u0001\u0000\u0000"+ - "\u0000\u00d0\u0469\u0001\u0000\u0000\u0000\u00d2\u046d\u0001\u0000\u0000"+ - "\u0000\u00d4\u046f\u0001\u0000\u0000\u0000\u00d6\u0472\u0001\u0000\u0000"+ - "\u0000\u00d8\u0474\u0001\u0000\u0000\u0000\u00da\u0476\u0001\u0000\u0000"+ - "\u0000\u00dc\u047b\u0001\u0000\u0000\u0000\u00de\u047d\u0001\u0000\u0000"+ - "\u0000\u00e0\u0483\u0001\u0000\u0000\u0000\u00e2\u0489\u0001\u0000\u0000"+ - "\u0000\u00e4\u048c\u0001\u0000\u0000\u0000\u00e6\u048f\u0001\u0000\u0000"+ - "\u0000\u00e8\u0494\u0001\u0000\u0000\u0000\u00ea\u0499\u0001\u0000\u0000"+ - "\u0000\u00ec\u049d\u0001\u0000\u0000\u0000\u00ee\u04a2\u0001\u0000\u0000"+ - "\u0000\u00f0\u04a8\u0001\u0000\u0000\u0000\u00f2\u04ab\u0001\u0000\u0000"+ - "\u0000\u00f4\u04ad\u0001\u0000\u0000\u0000\u00f6\u04b3\u0001\u0000\u0000"+ + "\u0000\u00c8\u045b\u0001\u0000\u0000\u0000\u00ca\u045e\u0001\u0000\u0000"+ + "\u0000\u00cc\u0462\u0001\u0000\u0000\u0000\u00ce\u0464\u0001\u0000\u0000"+ + "\u0000\u00d0\u0467\u0001\u0000\u0000\u0000\u00d2\u046a\u0001\u0000\u0000"+ + "\u0000\u00d4\u046c\u0001\u0000\u0000\u0000\u00d6\u046e\u0001\u0000\u0000"+ + "\u0000\u00d8\u0473\u0001\u0000\u0000\u0000\u00da\u0475\u0001\u0000\u0000"+ + "\u0000\u00dc\u047b\u0001\u0000\u0000\u0000\u00de\u0481\u0001\u0000\u0000"+ + "\u0000\u00e0\u0484\u0001\u0000\u0000\u0000\u00e2\u0487\u0001\u0000\u0000"+ + "\u0000\u00e4\u048c\u0001\u0000\u0000\u0000\u00e6\u0491\u0001\u0000\u0000"+ + "\u0000\u00e8\u0495\u0001\u0000\u0000\u0000\u00ea\u049a\u0001\u0000\u0000"+ + "\u0000\u00ec\u04a0\u0001\u0000\u0000\u0000\u00ee\u04a3\u0001\u0000\u0000"+ + "\u0000\u00f0\u04a6\u0001\u0000\u0000\u0000\u00f2\u04a8\u0001\u0000\u0000"+ + "\u0000\u00f4\u04ae\u0001\u0000\u0000\u0000\u00f6\u04b3\u0001\u0000\u0000"+ "\u0000\u00f8\u04b8\u0001\u0000\u0000\u0000\u00fa\u04bb\u0001\u0000\u0000"+ "\u0000\u00fc\u04be\u0001\u0000\u0000\u0000\u00fe\u04c1\u0001\u0000\u0000"+ "\u0000\u0100\u04c3\u0001\u0000\u0000\u0000\u0102\u04c6\u0001\u0000\u0000"+ @@ -1097,515 +1098,515 @@ private boolean RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS_sempred(RuleContext _lo "\u0001\u0000\u0000\u0000\u0312\u0313\u0006\u001f\u0004\u0000\u0313O\u0001"+ "\u0000\u0000\u0000\u0314\u0315\u0003\u00aaM\u0000\u0315\u0316\u0001\u0000"+ "\u0000\u0000\u0316\u0317\u0006 \r\u0000\u0317\u0318\u0006 \u000e\u0000"+ - "\u0318Q\u0001\u0000\u0000\u0000\u0319\u031a\u0003\u00c8\\\u0000\u031a"+ - "\u031b\u0001\u0000\u0000\u0000\u031b\u031c\u0006!\u000f\u0000\u031cS\u0001"+ - "\u0000\u0000\u0000\u031d\u031e\u0003\u00cc^\u0000\u031e\u031f\u0001\u0000"+ - "\u0000\u0000\u031f\u0320\u0006\"\u0010\u0000\u0320U\u0001\u0000\u0000"+ - "\u0000\u0321\u0322\u0003\u00dcf\u0000\u0322\u0323\u0001\u0000\u0000\u0000"+ - "\u0323\u0324\u0006#\u0011\u0000\u0324W\u0001\u0000\u0000\u0000\u0325\u0326"+ - "\u0003\u00d8d\u0000\u0326\u0327\u0001\u0000\u0000\u0000\u0327\u0328\u0006"+ - "$\u0012\u0000\u0328Y\u0001\u0000\u0000\u0000\u0329\u032a\u0003\u0128\u008c"+ - "\u0000\u032a\u032b\u0001\u0000\u0000\u0000\u032b\u032c\u0006%\u0013\u0000"+ - "\u032c[\u0001\u0000\u0000\u0000\u032d\u032e\u0003\u0124\u008a\u0000\u032e"+ - "\u032f\u0001\u0000\u0000\u0000\u032f\u0330\u0006&\u0014\u0000\u0330]\u0001"+ - "\u0000\u0000\u0000\u0331\u0332\u0003\u0010\u0000\u0000\u0332\u0333\u0001"+ - "\u0000\u0000\u0000\u0333\u0334\u0006\'\u0000\u0000\u0334_\u0001\u0000"+ - "\u0000\u0000\u0335\u0336\u0003\u0012\u0001\u0000\u0336\u0337\u0001\u0000"+ - "\u0000\u0000\u0337\u0338\u0006(\u0000\u0000\u0338a\u0001\u0000\u0000\u0000"+ - "\u0339\u033a\u0003\u0014\u0002\u0000\u033a\u033b\u0001\u0000\u0000\u0000"+ - "\u033b\u033c\u0006)\u0000\u0000\u033cc\u0001\u0000\u0000\u0000\u033d\u033e"+ - "\u0003\u00aaM\u0000\u033e\u033f\u0001\u0000\u0000\u0000\u033f\u0340\u0006"+ - "*\r\u0000\u0340\u0341\u0006*\u000e\u0000\u0341e\u0001\u0000\u0000\u0000"+ - "\u0342\u0343\u0003\u011c\u0086\u0000\u0343\u0344\u0001\u0000\u0000\u0000"+ - "\u0344\u0345\u0006+\u0015\u0000\u0345\u0346\u0006+\u0016\u0000\u0346g"+ - "\u0001\u0000\u0000\u0000\u0347\u0348\u0003\u00c8\\\u0000\u0348\u0349\u0001"+ - "\u0000\u0000\u0000\u0349\u034a\u0006,\u000f\u0000\u034a\u034b\u0006,\u0017"+ - "\u0000\u034bi\u0001\u0000\u0000\u0000\u034c\u034d\u0003\u00ca]\u0000\u034d"+ - "\u034e\u0001\u0000\u0000\u0000\u034e\u034f\u0006-\u0018\u0000\u034f\u0350"+ - "\u0006-\u0017\u0000\u0350k\u0001\u0000\u0000\u0000\u0351\u0352\b\u0018"+ - "\u0000\u0000\u0352m\u0001\u0000\u0000\u0000\u0353\u0355\u0003l.\u0000"+ - "\u0354\u0353\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000"+ - "\u0356\u0354\u0001\u0000\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000"+ - "\u0357\u0358\u0001\u0000\u0000\u0000\u0358\u0359\u0003\u00d6c\u0000\u0359"+ - "\u035b\u0001\u0000\u0000\u0000\u035a\u0354\u0001\u0000\u0000\u0000\u035a"+ - "\u035b\u0001\u0000\u0000\u0000\u035b\u035d\u0001\u0000\u0000\u0000\u035c"+ - "\u035e\u0003l.\u0000\u035d\u035c\u0001\u0000\u0000\u0000\u035e\u035f\u0001"+ - "\u0000\u0000\u0000\u035f\u035d\u0001\u0000\u0000\u0000\u035f\u0360\u0001"+ - "\u0000\u0000\u0000\u0360o\u0001\u0000\u0000\u0000\u0361\u0362\u0003n/"+ - "\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0364\u00060\u0019\u0000"+ - "\u0364q\u0001\u0000\u0000\u0000\u0365\u0366\u0003\u0010\u0000\u0000\u0366"+ - "\u0367\u0001\u0000\u0000\u0000\u0367\u0368\u00061\u0000\u0000\u0368s\u0001"+ - "\u0000\u0000\u0000\u0369\u036a\u0003\u0012\u0001\u0000\u036a\u036b\u0001"+ - "\u0000\u0000\u0000\u036b\u036c\u00062\u0000\u0000\u036cu\u0001\u0000\u0000"+ - "\u0000\u036d\u036e\u0003\u0014\u0002\u0000\u036e\u036f\u0001\u0000\u0000"+ - "\u0000\u036f\u0370\u00063\u0000\u0000\u0370w\u0001\u0000\u0000\u0000\u0371"+ - "\u0372\u0003\u00aaM\u0000\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0374"+ - "\u00064\r\u0000\u0374\u0375\u00064\u000e\u0000\u0375\u0376\u00064\u000e"+ - "\u0000\u0376y\u0001\u0000\u0000\u0000\u0377\u0378\u0003\u00d2a\u0000\u0378"+ - "\u0379\u0001\u0000\u0000\u0000\u0379\u037a\u00065\u001a\u0000\u037a{\u0001"+ - "\u0000\u0000\u0000\u037b\u037c\u0003\u00d8d\u0000\u037c\u037d\u0001\u0000"+ - "\u0000\u0000\u037d\u037e\u00066\u0012\u0000\u037e}\u0001\u0000\u0000\u0000"+ - "\u037f\u0380\u0003\u00dcf\u0000\u0380\u0381\u0001\u0000\u0000\u0000\u0381"+ - "\u0382\u00067\u0011\u0000\u0382\u007f\u0001\u0000\u0000\u0000\u0383\u0384"+ - "\u0003\u00ca]\u0000\u0384\u0385\u0001\u0000\u0000\u0000\u0385\u0386\u0006"+ - "8\u0018\u0000\u0386\u0081\u0001\u0000\u0000\u0000\u0387\u0388\u0003\u01bc"+ - "\u00d6\u0000\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u00069\u001b"+ - "\u0000\u038a\u0083\u0001\u0000\u0000\u0000\u038b\u038c\u0003\u0128\u008c"+ - "\u0000\u038c\u038d\u0001\u0000\u0000\u0000\u038d\u038e\u0006:\u0013\u0000"+ - "\u038e\u0085\u0001\u0000\u0000\u0000\u038f\u0390\u0003\u00f2q\u0000\u0390"+ - "\u0391\u0001\u0000\u0000\u0000\u0391\u0392\u0006;\u001c\u0000\u0392\u0087"+ - "\u0001\u0000\u0000\u0000\u0393\u0394\u0003\u0118\u0084\u0000\u0394\u0395"+ - "\u0001\u0000\u0000\u0000\u0395\u0396\u0006<\u001d\u0000\u0396\u0089\u0001"+ - "\u0000\u0000\u0000\u0397\u0398\u0004=\u000b\u0000\u0398\u0399\u0003\u0114"+ - "\u0082\u0000\u0399\u039a\u0001\u0000\u0000\u0000\u039a\u039b\u0006=\u001e"+ - "\u0000\u039b\u008b\u0001\u0000\u0000\u0000\u039c\u039d\u0004>\f\u0000"+ - "\u039d\u039e\u0003\u011a\u0085\u0000\u039e\u039f\u0001\u0000\u0000\u0000"+ - "\u039f\u03a0\u0006>\u001f\u0000\u03a0\u008d\u0001\u0000\u0000\u0000\u03a1"+ - "\u03a2\u0003\u0010\u0000\u0000\u03a2\u03a3\u0001\u0000\u0000\u0000\u03a3"+ - "\u03a4\u0006?\u0000\u0000\u03a4\u008f\u0001\u0000\u0000\u0000\u03a5\u03a6"+ - "\u0003\u0012\u0001\u0000\u03a6\u03a7\u0001\u0000\u0000\u0000\u03a7\u03a8"+ - "\u0006@\u0000\u0000\u03a8\u0091\u0001\u0000\u0000\u0000\u03a9\u03aa\u0003"+ - "\u0014\u0002\u0000\u03aa\u03ab\u0001\u0000\u0000\u0000\u03ab\u03ac\u0006"+ - "A\u0000\u0000\u03ac\u0093\u0001\u0000\u0000\u0000\u03ad\u03ae\u0003\u011e"+ - "\u0087\u0000\u03ae\u03af\u0001\u0000\u0000\u0000\u03af\u03b0\u0006B \u0000"+ - "\u03b0\u03b1\u0006B\u000e\u0000\u03b1\u0095\u0001\u0000\u0000\u0000\u03b2"+ - "\u03b3\u0003\u00d6c\u0000\u03b3\u03b4\u0001\u0000\u0000\u0000\u03b4\u03b5"+ - "\u0006C!\u0000\u03b5\u0097\u0001\u0000\u0000\u0000\u03b6\u03bc\u0003\u00b6"+ - "S\u0000\u03b7\u03bc\u0003\u00acN\u0000\u03b8\u03bc\u0003\u00dcf\u0000"+ - "\u03b9\u03bc\u0003\u00aeO\u0000\u03ba\u03bc\u0003\u00bcV\u0000\u03bb\u03b6"+ - "\u0001\u0000\u0000\u0000\u03bb\u03b7\u0001\u0000\u0000\u0000\u03bb\u03b8"+ - "\u0001\u0000\u0000\u0000\u03bb\u03b9\u0001\u0000\u0000\u0000\u03bb\u03ba"+ - "\u0001\u0000\u0000\u0000\u03bc\u03bd\u0001\u0000\u0000\u0000\u03bd\u03bb"+ - "\u0001\u0000\u0000\u0000\u03bd\u03be\u0001\u0000\u0000\u0000\u03be\u0099"+ - "\u0001\u0000\u0000\u0000\u03bf\u03c0\u0003\u0010\u0000\u0000\u03c0\u03c1"+ - "\u0001\u0000\u0000\u0000\u03c1\u03c2\u0006E\u0000\u0000\u03c2\u009b\u0001"+ - "\u0000\u0000\u0000\u03c3\u03c4\u0003\u0012\u0001\u0000\u03c4\u03c5\u0001"+ - "\u0000\u0000\u0000\u03c5\u03c6\u0006F\u0000\u0000\u03c6\u009d\u0001\u0000"+ - "\u0000\u0000\u03c7\u03c8\u0003\u0014\u0002\u0000\u03c8\u03c9\u0001\u0000"+ - "\u0000\u0000\u03c9\u03ca\u0006G\u0000\u0000\u03ca\u009f\u0001\u0000\u0000"+ - "\u0000\u03cb\u03cc\u0003\u011c\u0086\u0000\u03cc\u03cd\u0001\u0000\u0000"+ - "\u0000\u03cd\u03ce\u0006H\u0015\u0000\u03ce\u03cf\u0006H\"\u0000\u03cf"+ - "\u00a1\u0001\u0000\u0000\u0000\u03d0\u03d1\u0003\u00aaM\u0000\u03d1\u03d2"+ - "\u0001\u0000\u0000\u0000\u03d2\u03d3\u0006I\r\u0000\u03d3\u03d4\u0006"+ - "I\u000e\u0000\u03d4\u00a3\u0001\u0000\u0000\u0000\u03d5\u03d6\u0003\u0014"+ - "\u0002\u0000\u03d6\u03d7\u0001\u0000\u0000\u0000\u03d7\u03d8\u0006J\u0000"+ - "\u0000\u03d8\u00a5\u0001\u0000\u0000\u0000\u03d9\u03da\u0003\u0010\u0000"+ - "\u0000\u03da\u03db\u0001\u0000\u0000\u0000\u03db\u03dc\u0006K\u0000\u0000"+ - "\u03dc\u00a7\u0001\u0000\u0000\u0000\u03dd\u03de\u0003\u0012\u0001\u0000"+ - "\u03de\u03df\u0001\u0000\u0000\u0000\u03df\u03e0\u0006L\u0000\u0000\u03e0"+ - "\u00a9\u0001\u0000\u0000\u0000\u03e1\u03e2\u0005|\u0000\u0000\u03e2\u03e3"+ - "\u0001\u0000\u0000\u0000\u03e3\u03e4\u0006M\u000e\u0000\u03e4\u00ab\u0001"+ - "\u0000\u0000\u0000\u03e5\u03e6\u0007\u0019\u0000\u0000\u03e6\u00ad\u0001"+ - "\u0000\u0000\u0000\u03e7\u03e8\u0007\u001a\u0000\u0000\u03e8\u00af\u0001"+ - "\u0000\u0000\u0000\u03e9\u03ea\u0005\\\u0000\u0000\u03ea\u03eb\u0007\u001b"+ - "\u0000\u0000\u03eb\u00b1\u0001\u0000\u0000\u0000\u03ec\u03ed\b\u001c\u0000"+ - "\u0000\u03ed\u00b3\u0001\u0000\u0000\u0000\u03ee\u03f0\u0007\u0007\u0000"+ - "\u0000\u03ef\u03f1\u0007\u001d\u0000\u0000\u03f0\u03ef\u0001\u0000\u0000"+ - "\u0000\u03f0\u03f1\u0001\u0000\u0000\u0000\u03f1\u03f3\u0001\u0000\u0000"+ - "\u0000\u03f2\u03f4\u0003\u00acN\u0000\u03f3\u03f2\u0001\u0000\u0000\u0000"+ - "\u03f4\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f3\u0001\u0000\u0000\u0000"+ - "\u03f5\u03f6\u0001\u0000\u0000\u0000\u03f6\u00b5\u0001\u0000\u0000\u0000"+ - "\u03f7\u03f8\u0005@\u0000\u0000\u03f8\u00b7\u0001\u0000\u0000\u0000\u03f9"+ - "\u03fa\u0005`\u0000\u0000\u03fa\u00b9\u0001\u0000\u0000\u0000\u03fb\u03ff"+ - "\b\u001e\u0000\u0000\u03fc\u03fd\u0005`\u0000\u0000\u03fd\u03ff\u0005"+ - "`\u0000\u0000\u03fe\u03fb\u0001\u0000\u0000\u0000\u03fe\u03fc\u0001\u0000"+ - "\u0000\u0000\u03ff\u00bb\u0001\u0000\u0000\u0000\u0400\u0401\u0005_\u0000"+ - "\u0000\u0401\u00bd\u0001\u0000\u0000\u0000\u0402\u0406\u0003\u00aeO\u0000"+ - "\u0403\u0406\u0003\u00acN\u0000\u0404\u0406\u0003\u00bcV\u0000\u0405\u0402"+ - "\u0001\u0000\u0000\u0000\u0405\u0403\u0001\u0000\u0000\u0000\u0405\u0404"+ - "\u0001\u0000\u0000\u0000\u0406\u00bf\u0001\u0000\u0000\u0000\u0407\u040c"+ - "\u0005\"\u0000\u0000\u0408\u040b\u0003\u00b0P\u0000\u0409\u040b\u0003"+ - "\u00b2Q\u0000\u040a\u0408\u0001\u0000\u0000\u0000\u040a\u0409\u0001\u0000"+ - "\u0000\u0000\u040b\u040e\u0001\u0000\u0000\u0000\u040c\u040a\u0001\u0000"+ - "\u0000\u0000\u040c\u040d\u0001\u0000\u0000\u0000\u040d\u040f\u0001\u0000"+ - "\u0000\u0000\u040e\u040c\u0001\u0000\u0000\u0000\u040f\u0425\u0005\"\u0000"+ - "\u0000\u0410\u0411\u0005\"\u0000\u0000\u0411\u0412\u0005\"\u0000\u0000"+ - "\u0412\u0413\u0005\"\u0000\u0000\u0413\u0417\u0001\u0000\u0000\u0000\u0414"+ - "\u0416\b\u0000\u0000\u0000\u0415\u0414\u0001\u0000\u0000\u0000\u0416\u0419"+ - "\u0001\u0000\u0000\u0000\u0417\u0418\u0001\u0000\u0000\u0000\u0417\u0415"+ - "\u0001\u0000\u0000\u0000\u0418\u041a\u0001\u0000\u0000\u0000\u0419\u0417"+ - "\u0001\u0000\u0000\u0000\u041a\u041b\u0005\"\u0000\u0000\u041b\u041c\u0005"+ - "\"\u0000\u0000\u041c\u041d\u0005\"\u0000\u0000\u041d\u041f\u0001\u0000"+ - "\u0000\u0000\u041e\u0420\u0005\"\u0000\u0000\u041f\u041e\u0001\u0000\u0000"+ - "\u0000\u041f\u0420\u0001\u0000\u0000\u0000\u0420\u0422\u0001\u0000\u0000"+ - "\u0000\u0421\u0423\u0005\"\u0000\u0000\u0422\u0421\u0001\u0000\u0000\u0000"+ - "\u0422\u0423\u0001\u0000\u0000\u0000\u0423\u0425\u0001\u0000\u0000\u0000"+ - "\u0424\u0407\u0001\u0000\u0000\u0000\u0424\u0410\u0001\u0000\u0000\u0000"+ - "\u0425\u00c1\u0001\u0000\u0000\u0000\u0426\u0428\u0003\u00acN\u0000\u0427"+ - "\u0426\u0001\u0000\u0000\u0000\u0428\u0429\u0001\u0000\u0000\u0000\u0429"+ - "\u0427\u0001\u0000\u0000\u0000\u0429\u042a\u0001\u0000\u0000\u0000\u042a"+ - "\u00c3\u0001\u0000\u0000\u0000\u042b\u042d\u0003\u00acN\u0000\u042c\u042b"+ - "\u0001\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000\u042e\u042c"+ - "\u0001\u0000\u0000\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0430"+ - "\u0001\u0000\u0000\u0000\u0430\u0434\u0003\u00dcf\u0000\u0431\u0433\u0003"+ - "\u00acN\u0000\u0432\u0431\u0001\u0000\u0000\u0000\u0433\u0436\u0001\u0000"+ - "\u0000\u0000\u0434\u0432\u0001\u0000\u0000\u0000\u0434\u0435\u0001\u0000"+ - "\u0000\u0000\u0435\u0456\u0001\u0000\u0000\u0000\u0436\u0434\u0001\u0000"+ - "\u0000\u0000\u0437\u0439\u0003\u00dcf\u0000\u0438\u043a\u0003\u00acN\u0000"+ - "\u0439\u0438\u0001\u0000\u0000\u0000\u043a\u043b\u0001\u0000\u0000\u0000"+ - "\u043b\u0439\u0001\u0000\u0000\u0000\u043b\u043c\u0001\u0000\u0000\u0000"+ - "\u043c\u0456\u0001\u0000\u0000\u0000\u043d\u043f\u0003\u00acN\u0000\u043e"+ - "\u043d\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000\u0000\u0000\u0440"+ - "\u043e\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000\u0000\u0000\u0441"+ - "\u0449\u0001\u0000\u0000\u0000\u0442\u0446\u0003\u00dcf\u0000\u0443\u0445"+ - "\u0003\u00acN\u0000\u0444\u0443\u0001\u0000\u0000\u0000\u0445\u0448\u0001"+ - "\u0000\u0000\u0000\u0446\u0444\u0001\u0000\u0000\u0000\u0446\u0447\u0001"+ - "\u0000\u0000\u0000\u0447\u044a\u0001\u0000\u0000\u0000\u0448\u0446\u0001"+ - "\u0000\u0000\u0000\u0449\u0442\u0001\u0000\u0000\u0000\u0449\u044a\u0001"+ - "\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044c\u0003"+ - "\u00b4R\u0000\u044c\u0456\u0001\u0000\u0000\u0000\u044d\u044f\u0003\u00dc"+ - "f\u0000\u044e\u0450\u0003\u00acN\u0000\u044f\u044e\u0001\u0000\u0000\u0000"+ - "\u0450\u0451\u0001\u0000\u0000\u0000\u0451\u044f\u0001\u0000\u0000\u0000"+ - "\u0451\u0452\u0001\u0000\u0000\u0000\u0452\u0453\u0001\u0000\u0000\u0000"+ - "\u0453\u0454\u0003\u00b4R\u0000\u0454\u0456\u0001\u0000\u0000\u0000\u0455"+ - "\u042c\u0001\u0000\u0000\u0000\u0455\u0437\u0001\u0000\u0000\u0000\u0455"+ - "\u043e\u0001\u0000\u0000\u0000\u0455\u044d\u0001\u0000\u0000\u0000\u0456"+ - "\u00c5\u0001\u0000\u0000\u0000\u0457\u0458\u0007\u001f\u0000\u0000\u0458"+ - "\u0459\u0007 \u0000\u0000\u0459\u00c7\u0001\u0000\u0000\u0000\u045a\u045b"+ - "\u0007\t\u0000\u0000\u045b\u045c\u0007\u0005\u0000\u0000\u045c\u00c9\u0001"+ - "\u0000\u0000\u0000\u045d\u045e\u0007\u0014\u0000\u0000\u045e\u045f\u0007"+ - "\n\u0000\u0000\u045f\u0460\u0007\u000b\u0000\u0000\u0460\u0461\u0007\u0003"+ - "\u0000\u0000\u0461\u00cb\u0001\u0000\u0000\u0000\u0462\u0463\u0007\u0004"+ - "\u0000\u0000\u0463\u0464\u0007\u0010\u0000\u0000\u0464\u00cd\u0001\u0000"+ - "\u0000\u0000\u0465\u0466\u0007\u0004\u0000\u0000\u0466\u0467\u0007\u0005"+ - "\u0000\u0000\u0467\u0468\u0007\u000f\u0000\u0000\u0468\u00cf\u0001\u0000"+ - "\u0000\u0000\u0469\u046a\u0007\u0004\u0000\u0000\u046a\u046b\u0007\u0010"+ - "\u0000\u0000\u046b\u046c\u0007\u0002\u0000\u0000\u046c\u00d1\u0001\u0000"+ - "\u0000\u0000\u046d\u046e\u0005=\u0000\u0000\u046e\u00d3\u0001\u0000\u0000"+ - "\u0000\u046f\u0470\u0005:\u0000\u0000\u0470\u0471\u0005:\u0000\u0000\u0471"+ - "\u00d5\u0001\u0000\u0000\u0000\u0472\u0473\u0005:\u0000\u0000\u0473\u00d7"+ - "\u0001\u0000\u0000\u0000\u0474\u0475\u0005,\u0000\u0000\u0475\u00d9\u0001"+ - "\u0000\u0000\u0000\u0476\u0477\u0007\u000f\u0000\u0000\u0477\u0478\u0007"+ - "\u0007\u0000\u0000\u0478\u0479\u0007\u0010\u0000\u0000\u0479\u047a\u0007"+ - "\u0002\u0000\u0000\u047a\u00db\u0001\u0000\u0000\u0000\u047b\u047c\u0005"+ - ".\u0000\u0000\u047c\u00dd\u0001\u0000\u0000\u0000\u047d\u047e\u0007\u0015"+ - "\u0000\u0000\u047e\u047f\u0007\u0004\u0000\u0000\u047f\u0480\u0007\u000e"+ - "\u0000\u0000\u0480\u0481\u0007\u0010\u0000\u0000\u0481\u0482\u0007\u0007"+ - "\u0000\u0000\u0482\u00df\u0001\u0000\u0000\u0000\u0483\u0484\u0007\u0015"+ - "\u0000\u0000\u0484\u0485\u0007\n\u0000\u0000\u0485\u0486\u0007\f\u0000"+ - "\u0000\u0486\u0487\u0007\u0010\u0000\u0000\u0487\u0488\u0007\u000b\u0000"+ - "\u0000\u0488\u00e1\u0001\u0000\u0000\u0000\u0489\u048a\u0007\n\u0000\u0000"+ - "\u048a\u048b\u0007\u0005\u0000\u0000\u048b\u00e3\u0001\u0000\u0000\u0000"+ - "\u048c\u048d\u0007\n\u0000\u0000\u048d\u048e\u0007\u0010\u0000\u0000\u048e"+ - "\u00e5\u0001\u0000\u0000\u0000\u048f\u0490\u0007\u000e\u0000\u0000\u0490"+ - "\u0491\u0007\u0004\u0000\u0000\u0491\u0492\u0007\u0010\u0000\u0000\u0492"+ - "\u0493\u0007\u000b\u0000\u0000\u0493\u00e7\u0001\u0000\u0000\u0000\u0494"+ - "\u0495\u0007\u000e\u0000\u0000\u0495\u0496\u0007\n\u0000\u0000\u0496\u0497"+ - "\u0007\u0012\u0000\u0000\u0497\u0498\u0007\u0007\u0000\u0000\u0498\u00e9"+ - "\u0001\u0000\u0000\u0000\u0499\u049a\u0007\u0005\u0000\u0000\u049a\u049b"+ - "\u0007\t\u0000\u0000\u049b\u049c\u0007\u000b\u0000\u0000\u049c\u00eb\u0001"+ - "\u0000\u0000\u0000\u049d\u049e\u0007\u0005\u0000\u0000\u049e\u049f\u0007"+ - "\u0016\u0000\u0000\u049f\u04a0\u0007\u000e\u0000\u0000\u04a0\u04a1\u0007"+ - "\u000e\u0000\u0000\u04a1\u00ed\u0001\u0000\u0000\u0000\u04a2\u04a3\u0007"+ - "\u0005\u0000\u0000\u04a3\u04a4\u0007\u0016\u0000\u0000\u04a4\u04a5\u0007"+ - "\u000e\u0000\u0000\u04a5\u04a6\u0007\u000e\u0000\u0000\u04a6\u04a7\u0007"+ - "\u0010\u0000\u0000\u04a7\u00ef\u0001\u0000\u0000\u0000\u04a8\u04a9\u0007"+ - "\t\u0000\u0000\u04a9\u04aa\u0007\f\u0000\u0000\u04aa\u00f1\u0001\u0000"+ - "\u0000\u0000\u04ab\u04ac\u0005?\u0000\u0000\u04ac\u00f3\u0001\u0000\u0000"+ - "\u0000\u04ad\u04ae\u0007\f\u0000\u0000\u04ae\u04af\u0007\u000e\u0000\u0000"+ - "\u04af\u04b0\u0007\n\u0000\u0000\u04b0\u04b1\u0007\u0012\u0000\u0000\u04b1"+ - "\u04b2\u0007\u0007\u0000\u0000\u04b2\u00f5\u0001\u0000\u0000\u0000\u04b3"+ - "\u04b4\u0007\u000b\u0000\u0000\u04b4\u04b5\u0007\f\u0000\u0000\u04b5\u04b6"+ - "\u0007\u0016\u0000\u0000\u04b6\u04b7\u0007\u0007\u0000\u0000\u04b7\u00f7"+ - "\u0001\u0000\u0000\u0000\u04b8\u04b9\u0005=\u0000\u0000\u04b9\u04ba\u0005"+ - "=\u0000\u0000\u04ba\u00f9\u0001\u0000\u0000\u0000\u04bb\u04bc\u0005=\u0000"+ - "\u0000\u04bc\u04bd\u0005~\u0000\u0000\u04bd\u00fb\u0001\u0000\u0000\u0000"+ - "\u04be\u04bf\u0005!\u0000\u0000\u04bf\u04c0\u0005=\u0000\u0000\u04c0\u00fd"+ - "\u0001\u0000\u0000\u0000\u04c1\u04c2\u0005<\u0000\u0000\u04c2\u00ff\u0001"+ - "\u0000\u0000\u0000\u04c3\u04c4\u0005<\u0000\u0000\u04c4\u04c5\u0005=\u0000"+ - "\u0000\u04c5\u0101\u0001\u0000\u0000\u0000\u04c6\u04c7\u0005>\u0000\u0000"+ - "\u04c7\u0103\u0001\u0000\u0000\u0000\u04c8\u04c9\u0005>\u0000\u0000\u04c9"+ - "\u04ca\u0005=\u0000\u0000\u04ca\u0105\u0001\u0000\u0000\u0000\u04cb\u04cc"+ - "\u0005+\u0000\u0000\u04cc\u0107\u0001\u0000\u0000\u0000\u04cd\u04ce\u0005"+ - "-\u0000\u0000\u04ce\u0109\u0001\u0000\u0000\u0000\u04cf\u04d0\u0005*\u0000"+ - "\u0000\u04d0\u010b\u0001\u0000\u0000\u0000\u04d1\u04d2\u0005/\u0000\u0000"+ - "\u04d2\u010d\u0001\u0000\u0000\u0000\u04d3\u04d4\u0005%\u0000\u0000\u04d4"+ - "\u010f\u0001\u0000\u0000\u0000\u04d5\u04d6\u0005{\u0000\u0000\u04d6\u0111"+ - "\u0001\u0000\u0000\u0000\u04d7\u04d8\u0005}\u0000\u0000\u04d8\u0113\u0001"+ - "\u0000\u0000\u0000\u04d9\u04da\u0004\u0082\r\u0000\u04da\u04db\u0005?"+ - "\u0000\u0000\u04db\u04dc\u0005?\u0000\u0000\u04dc\u0115\u0001\u0000\u0000"+ - "\u0000\u04dd\u04de\u0003*\r\u0000\u04de\u04df\u0001\u0000\u0000\u0000"+ - "\u04df\u04e0\u0006\u0083#\u0000\u04e0\u0117\u0001\u0000\u0000\u0000\u04e1"+ - "\u04e4\u0003\u00f2q\u0000\u04e2\u04e5\u0003\u00aeO\u0000\u04e3\u04e5\u0003"+ - "\u00bcV\u0000\u04e4\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e3\u0001\u0000"+ - "\u0000\u0000\u04e5\u04e9\u0001\u0000\u0000\u0000\u04e6\u04e8\u0003\u00be"+ - "W\u0000\u04e7\u04e6\u0001\u0000\u0000\u0000\u04e8\u04eb\u0001\u0000\u0000"+ - "\u0000\u04e9\u04e7\u0001\u0000\u0000\u0000\u04e9\u04ea\u0001\u0000\u0000"+ - "\u0000\u04ea\u04f3\u0001\u0000\u0000\u0000\u04eb\u04e9\u0001\u0000\u0000"+ - "\u0000\u04ec\u04ee\u0003\u00f2q\u0000\u04ed\u04ef\u0003\u00acN\u0000\u04ee"+ - "\u04ed\u0001\u0000\u0000\u0000\u04ef\u04f0\u0001\u0000\u0000\u0000\u04f0"+ - "\u04ee\u0001\u0000\u0000\u0000\u04f0\u04f1\u0001\u0000\u0000\u0000\u04f1"+ - "\u04f3\u0001\u0000\u0000\u0000\u04f2\u04e1\u0001\u0000\u0000\u0000\u04f2"+ - "\u04ec\u0001\u0000\u0000\u0000\u04f3\u0119\u0001\u0000\u0000\u0000\u04f4"+ - "\u04f7\u0003\u0114\u0082\u0000\u04f5\u04f8\u0003\u00aeO\u0000\u04f6\u04f8"+ - "\u0003\u00bcV\u0000\u04f7\u04f5\u0001\u0000\u0000\u0000\u04f7\u04f6\u0001"+ - "\u0000\u0000\u0000\u04f8\u04fc\u0001\u0000\u0000\u0000\u04f9\u04fb\u0003"+ - "\u00beW\u0000\u04fa\u04f9\u0001\u0000\u0000\u0000\u04fb\u04fe\u0001\u0000"+ - "\u0000\u0000\u04fc\u04fa\u0001\u0000\u0000\u0000\u04fc\u04fd\u0001\u0000"+ - "\u0000\u0000\u04fd\u0506\u0001\u0000\u0000\u0000\u04fe\u04fc\u0001\u0000"+ - "\u0000\u0000\u04ff\u0501\u0003\u0114\u0082\u0000\u0500\u0502\u0003\u00ac"+ - "N\u0000\u0501\u0500\u0001\u0000\u0000\u0000\u0502\u0503\u0001\u0000\u0000"+ - "\u0000\u0503\u0501\u0001\u0000\u0000\u0000\u0503\u0504\u0001\u0000\u0000"+ - "\u0000\u0504\u0506\u0001\u0000\u0000\u0000\u0505\u04f4\u0001\u0000\u0000"+ - "\u0000\u0505\u04ff\u0001\u0000\u0000\u0000\u0506\u011b\u0001\u0000\u0000"+ - "\u0000\u0507\u0508\u0005[\u0000\u0000\u0508\u0509\u0001\u0000\u0000\u0000"+ - "\u0509\u050a\u0006\u0086\u0004\u0000\u050a\u050b\u0006\u0086\u0004\u0000"+ - "\u050b\u011d\u0001\u0000\u0000\u0000\u050c\u050d\u0005]\u0000\u0000\u050d"+ - "\u050e\u0001\u0000\u0000\u0000\u050e\u050f\u0006\u0087\u000e\u0000\u050f"+ - "\u0510\u0006\u0087\u000e\u0000\u0510\u011f\u0001\u0000\u0000\u0000\u0511"+ - "\u0512\u0005(\u0000\u0000\u0512\u0513\u0001\u0000\u0000\u0000\u0513\u0514"+ - "\u0006\u0088\u0004\u0000\u0514\u0515\u0006\u0088\u0004\u0000\u0515\u0121"+ - "\u0001\u0000\u0000\u0000\u0516\u0517\u0005)\u0000\u0000\u0517\u0518\u0001"+ - "\u0000\u0000\u0000\u0518\u0519\u0006\u0089\u000e\u0000\u0519\u051a\u0006"+ - "\u0089\u000e\u0000\u051a\u0123\u0001\u0000\u0000\u0000\u051b\u051f\u0003"+ - "\u00aeO\u0000\u051c\u051e\u0003\u00beW\u0000\u051d\u051c\u0001\u0000\u0000"+ - "\u0000\u051e\u0521\u0001\u0000\u0000\u0000\u051f\u051d\u0001\u0000\u0000"+ - "\u0000\u051f\u0520\u0001\u0000\u0000\u0000\u0520\u052c\u0001\u0000\u0000"+ - "\u0000\u0521\u051f\u0001\u0000\u0000\u0000\u0522\u0525\u0003\u00bcV\u0000"+ - "\u0523\u0525\u0003\u00b6S\u0000\u0524\u0522\u0001\u0000\u0000\u0000\u0524"+ - "\u0523\u0001\u0000\u0000\u0000\u0525\u0527\u0001\u0000\u0000\u0000\u0526"+ - "\u0528\u0003\u00beW\u0000\u0527\u0526\u0001\u0000\u0000\u0000\u0528\u0529"+ - "\u0001\u0000\u0000\u0000\u0529\u0527\u0001\u0000\u0000\u0000\u0529\u052a"+ - "\u0001\u0000\u0000\u0000\u052a\u052c\u0001\u0000\u0000\u0000\u052b\u051b"+ - "\u0001\u0000\u0000\u0000\u052b\u0524\u0001\u0000\u0000\u0000\u052c\u0125"+ - "\u0001\u0000\u0000\u0000\u052d\u052f\u0003\u00b8T\u0000\u052e\u0530\u0003"+ - "\u00baU\u0000\u052f\u052e\u0001\u0000\u0000\u0000\u0530\u0531\u0001\u0000"+ - "\u0000\u0000\u0531\u052f\u0001\u0000\u0000\u0000\u0531\u0532\u0001\u0000"+ - "\u0000\u0000\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0003\u00b8"+ - "T\u0000\u0534\u0127\u0001\u0000\u0000\u0000\u0535\u0536\u0003\u0126\u008b"+ - "\u0000\u0536\u0129\u0001\u0000\u0000\u0000\u0537\u0538\u0003\u0010\u0000"+ - "\u0000\u0538\u0539\u0001\u0000\u0000\u0000\u0539\u053a\u0006\u008d\u0000"+ - "\u0000\u053a\u012b\u0001\u0000\u0000\u0000\u053b\u053c\u0003\u0012\u0001"+ - "\u0000\u053c\u053d\u0001\u0000\u0000\u0000\u053d\u053e\u0006\u008e\u0000"+ - "\u0000\u053e\u012d\u0001\u0000\u0000\u0000\u053f\u0540\u0003\u0014\u0002"+ - "\u0000\u0540\u0541\u0001\u0000\u0000\u0000\u0541\u0542\u0006\u008f\u0000"+ - "\u0000\u0542\u012f\u0001\u0000\u0000\u0000\u0543\u0544\u0003\u00aaM\u0000"+ - "\u0544\u0545\u0001\u0000\u0000\u0000\u0545\u0546\u0006\u0090\r\u0000\u0546"+ - "\u0547\u0006\u0090\u000e\u0000\u0547\u0131\u0001\u0000\u0000\u0000\u0548"+ - "\u0549\u0003\u011c\u0086\u0000\u0549\u054a\u0001\u0000\u0000\u0000\u054a"+ - "\u054b\u0006\u0091\u0015\u0000\u054b\u0133\u0001\u0000\u0000\u0000\u054c"+ - "\u054d\u0003\u011e\u0087\u0000\u054d\u054e\u0001\u0000\u0000\u0000\u054e"+ - "\u054f\u0006\u0092 \u0000\u054f\u0135\u0001\u0000\u0000\u0000\u0550\u0551"+ - "\u0003\u00d6c\u0000\u0551\u0552\u0001\u0000\u0000\u0000\u0552\u0553\u0006"+ - "\u0093!\u0000\u0553\u0137\u0001\u0000\u0000\u0000\u0554\u0555\u0004\u0094"+ - "\u000e\u0000\u0555\u0556\u0003\u00d4b\u0000\u0556\u0557\u0001\u0000\u0000"+ - "\u0000\u0557\u0558\u0006\u0094$\u0000\u0558\u0139\u0001\u0000\u0000\u0000"+ - "\u0559\u055a\u0003\u00d8d\u0000\u055a\u055b\u0001\u0000\u0000\u0000\u055b"+ - "\u055c\u0006\u0095\u0012\u0000\u055c\u013b\u0001\u0000\u0000\u0000\u055d"+ - "\u055e\u0003\u00d2a\u0000\u055e\u055f\u0001\u0000\u0000\u0000\u055f\u0560"+ - "\u0006\u0096\u001a\u0000\u0560\u013d\u0001\u0000\u0000\u0000\u0561\u0562"+ - "\u0007\u0013\u0000\u0000\u0562\u0563\u0007\u0007\u0000\u0000\u0563\u0564"+ - "\u0007\u000b\u0000\u0000\u0564\u0565\u0007\u0004\u0000\u0000\u0565\u0566"+ - "\u0007\u000f\u0000\u0000\u0566\u0567\u0007\u0004\u0000\u0000\u0567\u0568"+ - "\u0007\u000b\u0000\u0000\u0568\u0569\u0007\u0004\u0000\u0000\u0569\u013f"+ - "\u0001\u0000\u0000\u0000\u056a\u056e\b!\u0000\u0000\u056b\u056c\u0005"+ - "/\u0000\u0000\u056c\u056e\b\"\u0000\u0000\u056d\u056a\u0001\u0000\u0000"+ - "\u0000\u056d\u056b\u0001\u0000\u0000\u0000\u056e\u0141\u0001\u0000\u0000"+ - "\u0000\u056f\u0571\u0003\u0140\u0098\u0000\u0570\u056f\u0001\u0000\u0000"+ - "\u0000\u0571\u0572\u0001\u0000\u0000\u0000\u0572\u0570\u0001\u0000\u0000"+ - "\u0000\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0143\u0001\u0000\u0000"+ - "\u0000\u0574\u0575\u0003\u0142\u0099\u0000\u0575\u0576\u0001\u0000\u0000"+ - "\u0000\u0576\u0577\u0006\u009a%\u0000\u0577\u0145\u0001\u0000\u0000\u0000"+ - "\u0578\u0579\u0003\u00c0X\u0000\u0579\u057a\u0001\u0000\u0000\u0000\u057a"+ - "\u057b\u0006\u009b&\u0000\u057b\u0147\u0001\u0000\u0000\u0000\u057c\u057d"+ - "\u0003\u0010\u0000\u0000\u057d\u057e\u0001\u0000\u0000\u0000\u057e\u057f"+ - "\u0006\u009c\u0000\u0000\u057f\u0149\u0001\u0000\u0000\u0000\u0580\u0581"+ - "\u0003\u0012\u0001\u0000\u0581\u0582\u0001\u0000\u0000\u0000\u0582\u0583"+ - "\u0006\u009d\u0000\u0000\u0583\u014b\u0001\u0000\u0000\u0000\u0584\u0585"+ - "\u0003\u0014\u0002\u0000\u0585\u0586\u0001\u0000\u0000\u0000\u0586\u0587"+ - "\u0006\u009e\u0000\u0000\u0587\u014d\u0001\u0000\u0000\u0000\u0588\u0589"+ - "\u0003\u0120\u0088\u0000\u0589\u058a\u0001\u0000\u0000\u0000\u058a\u058b"+ - "\u0006\u009f\'\u0000\u058b\u058c\u0006\u009f\"\u0000\u058c\u014f\u0001"+ - "\u0000\u0000\u0000\u058d\u058e\u0003\u00aaM\u0000\u058e\u058f\u0001\u0000"+ - "\u0000\u0000\u058f\u0590\u0006\u00a0\r\u0000\u0590\u0591\u0006\u00a0\u000e"+ - "\u0000\u0591\u0151\u0001\u0000\u0000\u0000\u0592\u0593\u0003\u0014\u0002"+ - "\u0000\u0593\u0594\u0001\u0000\u0000\u0000\u0594\u0595\u0006\u00a1\u0000"+ - "\u0000\u0595\u0153\u0001\u0000\u0000\u0000\u0596\u0597\u0003\u0010\u0000"+ - "\u0000\u0597\u0598\u0001\u0000\u0000\u0000\u0598\u0599\u0006\u00a2\u0000"+ - "\u0000\u0599\u0155\u0001\u0000\u0000\u0000\u059a\u059b\u0003\u0012\u0001"+ - "\u0000\u059b\u059c\u0001\u0000\u0000\u0000\u059c\u059d\u0006\u00a3\u0000"+ - "\u0000\u059d\u0157\u0001\u0000\u0000\u0000\u059e\u059f\u0003\u00aaM\u0000"+ - "\u059f\u05a0\u0001\u0000\u0000\u0000\u05a0\u05a1\u0006\u00a4\r\u0000\u05a1"+ - "\u05a2\u0006\u00a4\u000e\u0000\u05a2\u0159\u0001\u0000\u0000\u0000\u05a3"+ - "\u05a4\u0007#\u0000\u0000\u05a4\u05a5\u0007\t\u0000\u0000\u05a5\u05a6"+ - "\u0007\n\u0000\u0000\u05a6\u05a7\u0007\u0005\u0000\u0000\u05a7\u015b\u0001"+ - "\u0000\u0000\u0000\u05a8\u05a9\u0003\u00cc^\u0000\u05a9\u05aa\u0001\u0000"+ - "\u0000\u0000\u05aa\u05ab\u0006\u00a6\u0010\u0000\u05ab\u015d\u0001\u0000"+ - "\u0000\u0000\u05ac\u05ad\u0003\u00c8\\\u0000\u05ad\u05ae\u0001\u0000\u0000"+ - "\u0000\u05ae\u05af\u0006\u00a7\u000f\u0000\u05af\u05b0\u0006\u00a7\u000e"+ - "\u0000\u05b0\u05b1\u0006\u00a7\u0004\u0000\u05b1\u015f\u0001\u0000\u0000"+ - "\u0000\u05b2\u05b3\u0007\u0016\u0000\u0000\u05b3\u05b4\u0007\u0010\u0000"+ - "\u0000\u05b4\u05b5\u0007\n\u0000\u0000\u05b5\u05b6\u0007\u0005\u0000\u0000"+ - "\u05b6\u05b7\u0007\u0006\u0000\u0000\u05b7\u05b8\u0001\u0000\u0000\u0000"+ - "\u05b8\u05b9\u0006\u00a8\u000e\u0000\u05b9\u05ba\u0006\u00a8\u0004\u0000"+ - "\u05ba\u0161\u0001\u0000\u0000\u0000\u05bb\u05bc\u0003\u0142\u0099\u0000"+ - "\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be\u0006\u00a9%\u0000\u05be"+ - "\u0163\u0001\u0000\u0000\u0000\u05bf\u05c0\u0003\u00c0X\u0000\u05c0\u05c1"+ - "\u0001\u0000\u0000\u0000\u05c1\u05c2\u0006\u00aa&\u0000\u05c2\u0165\u0001"+ - "\u0000\u0000\u0000\u05c3\u05c4\u0003\u00d6c\u0000\u05c4\u05c5\u0001\u0000"+ - "\u0000\u0000\u05c5\u05c6\u0006\u00ab!\u0000\u05c6\u0167\u0001\u0000\u0000"+ - "\u0000\u05c7\u05c8\u0003\u0124\u008a\u0000\u05c8\u05c9\u0001\u0000\u0000"+ - "\u0000\u05c9\u05ca\u0006\u00ac\u0014\u0000\u05ca\u0169\u0001\u0000\u0000"+ - "\u0000\u05cb\u05cc\u0003\u0128\u008c\u0000\u05cc\u05cd\u0001\u0000\u0000"+ - "\u0000\u05cd\u05ce\u0006\u00ad\u0013\u0000\u05ce\u016b\u0001\u0000\u0000"+ - "\u0000\u05cf\u05d0\u0003\u0010\u0000\u0000\u05d0\u05d1\u0001\u0000\u0000"+ - "\u0000\u05d1\u05d2\u0006\u00ae\u0000\u0000\u05d2\u016d\u0001\u0000\u0000"+ - "\u0000\u05d3\u05d4\u0003\u0012\u0001\u0000\u05d4\u05d5\u0001\u0000\u0000"+ - "\u0000\u05d5\u05d6\u0006\u00af\u0000\u0000\u05d6\u016f\u0001\u0000\u0000"+ - "\u0000\u05d7\u05d8\u0003\u0014\u0002\u0000\u05d8\u05d9\u0001\u0000\u0000"+ - "\u0000\u05d9\u05da\u0006\u00b0\u0000\u0000\u05da\u0171\u0001\u0000\u0000"+ - "\u0000\u05db\u05dc\u0003\u00aaM\u0000\u05dc\u05dd\u0001\u0000\u0000\u0000"+ - "\u05dd\u05de\u0006\u00b1\r\u0000\u05de\u05df\u0006\u00b1\u000e\u0000\u05df"+ - "\u0173\u0001\u0000\u0000\u0000\u05e0\u05e1\u0003\u00d6c\u0000\u05e1\u05e2"+ - "\u0001\u0000\u0000\u0000\u05e2\u05e3\u0006\u00b2!\u0000\u05e3\u0175\u0001"+ - "\u0000\u0000\u0000\u05e4\u05e5\u0003\u00d8d\u0000\u05e5\u05e6\u0001\u0000"+ - "\u0000\u0000\u05e6\u05e7\u0006\u00b3\u0012\u0000\u05e7\u0177\u0001\u0000"+ - "\u0000\u0000\u05e8\u05e9\u0003\u00dcf\u0000\u05e9\u05ea\u0001\u0000\u0000"+ - "\u0000\u05ea\u05eb\u0006\u00b4\u0011\u0000\u05eb\u0179\u0001\u0000\u0000"+ - "\u0000\u05ec\u05ed\u0003\u00c8\\\u0000\u05ed\u05ee\u0001\u0000\u0000\u0000"+ - "\u05ee\u05ef\u0006\u00b5\u000f\u0000\u05ef\u05f0\u0006\u00b5(\u0000\u05f0"+ - "\u017b\u0001\u0000\u0000\u0000\u05f1\u05f2\u0003\u0142\u0099\u0000\u05f2"+ - "\u05f3\u0001\u0000\u0000\u0000\u05f3\u05f4\u0006\u00b6%\u0000\u05f4\u017d"+ - "\u0001\u0000\u0000\u0000\u05f5\u05f6\u0003\u00c0X\u0000\u05f6\u05f7\u0001"+ - "\u0000\u0000\u0000\u05f7\u05f8\u0006\u00b7&\u0000\u05f8\u017f\u0001\u0000"+ - "\u0000\u0000\u05f9\u05fa\u0003\u0010\u0000\u0000\u05fa\u05fb\u0001\u0000"+ - "\u0000\u0000\u05fb\u05fc\u0006\u00b8\u0000\u0000\u05fc\u0181\u0001\u0000"+ - "\u0000\u0000\u05fd\u05fe\u0003\u0012\u0001\u0000\u05fe\u05ff\u0001\u0000"+ - "\u0000\u0000\u05ff\u0600\u0006\u00b9\u0000\u0000\u0600\u0183\u0001\u0000"+ - "\u0000\u0000\u0601\u0602\u0003\u0014\u0002\u0000\u0602\u0603\u0001\u0000"+ - "\u0000\u0000\u0603\u0604\u0006\u00ba\u0000\u0000\u0604\u0185\u0001\u0000"+ - "\u0000\u0000\u0605\u0606\u0003\u00aaM\u0000\u0606\u0607\u0001\u0000\u0000"+ - "\u0000\u0607\u0608\u0006\u00bb\r\u0000\u0608\u0609\u0006\u00bb\u000e\u0000"+ - "\u0609\u060a\u0006\u00bb\u000e\u0000\u060a\u0187\u0001\u0000\u0000\u0000"+ - "\u060b\u060c\u0003\u00d8d\u0000\u060c\u060d\u0001\u0000\u0000\u0000\u060d"+ - "\u060e\u0006\u00bc\u0012\u0000\u060e\u0189\u0001\u0000\u0000\u0000\u060f"+ - "\u0610\u0003\u00dcf\u0000\u0610\u0611\u0001\u0000\u0000\u0000\u0611\u0612"+ - "\u0006\u00bd\u0011\u0000\u0612\u018b\u0001\u0000\u0000\u0000\u0613\u0614"+ - "\u0003\u01bc\u00d6\u0000\u0614\u0615\u0001\u0000\u0000\u0000\u0615\u0616"+ - "\u0006\u00be\u001b\u0000\u0616\u018d\u0001\u0000\u0000\u0000\u0617\u0618"+ - "\u0003\u0010\u0000\u0000\u0618\u0619\u0001\u0000\u0000\u0000\u0619\u061a"+ - "\u0006\u00bf\u0000\u0000\u061a\u018f\u0001\u0000\u0000\u0000\u061b\u061c"+ - "\u0003\u0012\u0001\u0000\u061c\u061d\u0001\u0000\u0000\u0000\u061d\u061e"+ - "\u0006\u00c0\u0000\u0000\u061e\u0191\u0001\u0000\u0000\u0000\u061f\u0620"+ - "\u0003\u0014\u0002\u0000\u0620\u0621\u0001\u0000\u0000\u0000\u0621\u0622"+ - "\u0006\u00c1\u0000\u0000\u0622\u0193\u0001\u0000\u0000\u0000\u0623\u0624"+ - "\u0003\u00aaM\u0000\u0624\u0625\u0001\u0000\u0000\u0000\u0625\u0626\u0006"+ - "\u00c2\r\u0000\u0626\u0627\u0006\u00c2\u000e\u0000\u0627\u0195\u0001\u0000"+ - "\u0000\u0000\u0628\u0629\u0003\u00dcf\u0000\u0629\u062a\u0001\u0000\u0000"+ - "\u0000\u062a\u062b\u0006\u00c3\u0011\u0000\u062b\u0197\u0001\u0000\u0000"+ - "\u0000\u062c\u062d\u0003\u00f2q\u0000\u062d\u062e\u0001\u0000\u0000\u0000"+ - "\u062e\u062f\u0006\u00c4\u001c\u0000\u062f\u0199\u0001\u0000\u0000\u0000"+ - "\u0630\u0631\u0003\u0118\u0084\u0000\u0631\u0632\u0001\u0000\u0000\u0000"+ - "\u0632\u0633\u0006\u00c5\u001d\u0000\u0633\u019b\u0001\u0000\u0000\u0000"+ - "\u0634\u0635\u0004\u00c6\u000f\u0000\u0635\u0636\u0003\u0114\u0082\u0000"+ - "\u0636\u0637\u0001\u0000\u0000\u0000\u0637\u0638\u0006\u00c6\u001e\u0000"+ - "\u0638\u019d\u0001\u0000\u0000\u0000\u0639\u063a\u0004\u00c7\u0010\u0000"+ - "\u063a\u063b\u0003\u011a\u0085\u0000\u063b\u063c\u0001\u0000\u0000\u0000"+ - "\u063c\u063d\u0006\u00c7\u001f\u0000\u063d\u019f\u0001\u0000\u0000\u0000"+ - "\u063e\u063f\u0003\u0128\u008c\u0000\u063f\u0640\u0001\u0000\u0000\u0000"+ - "\u0640\u0641\u0006\u00c8\u0013\u0000\u0641\u01a1\u0001\u0000\u0000\u0000"+ - "\u0642\u0643\u0003\u0124\u008a\u0000\u0643\u0644\u0001\u0000\u0000\u0000"+ - "\u0644\u0645\u0006\u00c9\u0014\u0000\u0645\u01a3\u0001\u0000\u0000\u0000"+ - "\u0646\u0647\u0003\u0010\u0000\u0000\u0647\u0648\u0001\u0000\u0000\u0000"+ - "\u0648\u0649\u0006\u00ca\u0000\u0000\u0649\u01a5\u0001\u0000\u0000\u0000"+ - "\u064a\u064b\u0003\u0012\u0001\u0000\u064b\u064c\u0001\u0000\u0000\u0000"+ - "\u064c\u064d\u0006\u00cb\u0000\u0000\u064d\u01a7\u0001\u0000\u0000\u0000"+ - "\u064e\u064f\u0003\u0014\u0002\u0000\u064f\u0650\u0001\u0000\u0000\u0000"+ - "\u0650\u0651\u0006\u00cc\u0000\u0000\u0651\u01a9\u0001\u0000\u0000\u0000"+ - "\u0652\u0653\u0003\u00aaM\u0000\u0653\u0654\u0001\u0000\u0000\u0000\u0654"+ - "\u0655\u0006\u00cd\r\u0000\u0655\u0656\u0006\u00cd\u000e\u0000\u0656\u01ab"+ - "\u0001\u0000\u0000\u0000\u0657\u0658\u0003\u00dcf\u0000\u0658\u0659\u0001"+ - "\u0000\u0000\u0000\u0659\u065a\u0006\u00ce\u0011\u0000\u065a\u01ad\u0001"+ - "\u0000\u0000\u0000\u065b\u065c\u0003\u00d8d\u0000\u065c\u065d\u0001\u0000"+ - "\u0000\u0000\u065d\u065e\u0006\u00cf\u0012\u0000\u065e\u01af\u0001\u0000"+ - "\u0000\u0000\u065f\u0660\u0003\u00f2q\u0000\u0660\u0661\u0001\u0000\u0000"+ - "\u0000\u0661\u0662\u0006\u00d0\u001c\u0000\u0662\u01b1\u0001\u0000\u0000"+ - "\u0000\u0663\u0664\u0003\u0118\u0084\u0000\u0664\u0665\u0001\u0000\u0000"+ - "\u0000\u0665\u0666\u0006\u00d1\u001d\u0000\u0666\u01b3\u0001\u0000\u0000"+ - "\u0000\u0667\u0668\u0004\u00d2\u0011\u0000\u0668\u0669\u0003\u0114\u0082"+ - "\u0000\u0669\u066a\u0001\u0000\u0000\u0000\u066a\u066b\u0006\u00d2\u001e"+ - "\u0000\u066b\u01b5\u0001\u0000\u0000\u0000\u066c\u066d\u0004\u00d3\u0012"+ - "\u0000\u066d\u066e\u0003\u011a\u0085\u0000\u066e\u066f\u0001\u0000\u0000"+ - "\u0000\u066f\u0670\u0006\u00d3\u001f\u0000\u0670\u01b7\u0001\u0000\u0000"+ - "\u0000\u0671\u0676\u0003\u00aeO\u0000\u0672\u0676\u0003\u00acN\u0000\u0673"+ - "\u0676\u0003\u00bcV\u0000\u0674\u0676\u0003\u010a}\u0000\u0675\u0671\u0001"+ - "\u0000\u0000\u0000\u0675\u0672\u0001\u0000\u0000\u0000\u0675\u0673\u0001"+ - "\u0000\u0000\u0000\u0675\u0674\u0001\u0000\u0000\u0000\u0676\u01b9\u0001"+ - "\u0000\u0000\u0000\u0677\u067a\u0003\u00aeO\u0000\u0678\u067a\u0003\u010a"+ - "}\u0000\u0679\u0677\u0001\u0000\u0000\u0000\u0679\u0678\u0001\u0000\u0000"+ - "\u0000\u067a\u067e\u0001\u0000\u0000\u0000\u067b\u067d\u0003\u01b8\u00d4"+ - "\u0000\u067c\u067b\u0001\u0000\u0000\u0000\u067d\u0680\u0001\u0000\u0000"+ - "\u0000\u067e\u067c\u0001\u0000\u0000\u0000\u067e\u067f\u0001\u0000\u0000"+ - "\u0000\u067f\u068b\u0001\u0000\u0000\u0000\u0680\u067e\u0001\u0000\u0000"+ - "\u0000\u0681\u0684\u0003\u00bcV\u0000\u0682\u0684\u0003\u00b6S\u0000\u0683"+ - "\u0681\u0001\u0000\u0000\u0000\u0683\u0682\u0001\u0000\u0000\u0000\u0684"+ - "\u0686\u0001\u0000\u0000\u0000\u0685\u0687\u0003\u01b8\u00d4\u0000\u0686"+ - "\u0685\u0001\u0000\u0000\u0000\u0687\u0688\u0001\u0000\u0000\u0000\u0688"+ - "\u0686\u0001\u0000\u0000\u0000\u0688\u0689\u0001\u0000\u0000\u0000\u0689"+ - "\u068b\u0001\u0000\u0000\u0000\u068a\u0679\u0001\u0000\u0000\u0000\u068a"+ - "\u0683\u0001\u0000\u0000\u0000\u068b\u01bb\u0001\u0000\u0000\u0000\u068c"+ - "\u068f\u0003\u01ba\u00d5\u0000\u068d\u068f\u0003\u0126\u008b\u0000\u068e"+ - "\u068c\u0001\u0000\u0000\u0000\u068e\u068d\u0001\u0000\u0000\u0000\u068f"+ - "\u0690\u0001\u0000\u0000\u0000\u0690\u068e\u0001\u0000\u0000\u0000\u0690"+ - "\u0691\u0001\u0000\u0000\u0000\u0691\u01bd\u0001\u0000\u0000\u0000\u0692"+ - "\u0693\u0003\u0010\u0000\u0000\u0693\u0694\u0001\u0000\u0000\u0000\u0694"+ - "\u0695\u0006\u00d7\u0000\u0000\u0695\u01bf\u0001\u0000\u0000\u0000\u0696"+ - "\u0697\u0003\u0012\u0001\u0000\u0697\u0698\u0001\u0000\u0000\u0000\u0698"+ - "\u0699\u0006\u00d8\u0000\u0000\u0699\u01c1\u0001\u0000\u0000\u0000\u069a"+ - "\u069b\u0003\u0014\u0002\u0000\u069b\u069c\u0001\u0000\u0000\u0000\u069c"+ - "\u069d\u0006\u00d9\u0000\u0000\u069d\u01c3\u0001\u0000\u0000\u0000\u069e"+ - "\u069f\u0003\u00aaM\u0000\u069f\u06a0\u0001\u0000\u0000\u0000\u06a0\u06a1"+ - "\u0006\u00da\r\u0000\u06a1\u06a2\u0006\u00da\u000e\u0000\u06a2\u01c5\u0001"+ - "\u0000\u0000\u0000\u06a3\u06a4\u0003\u00d2a\u0000\u06a4\u06a5\u0001\u0000"+ - "\u0000\u0000\u06a5\u06a6\u0006\u00db\u001a\u0000\u06a6\u01c7\u0001\u0000"+ - "\u0000\u0000\u06a7\u06a8\u0003\u00d8d\u0000\u06a8\u06a9\u0001\u0000\u0000"+ - "\u0000\u06a9\u06aa\u0006\u00dc\u0012\u0000\u06aa\u01c9\u0001\u0000\u0000"+ - "\u0000\u06ab\u06ac\u0003\u00dcf\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000"+ - "\u06ad\u06ae\u0006\u00dd\u0011\u0000\u06ae\u01cb\u0001\u0000\u0000\u0000"+ - "\u06af\u06b0\u0003\u00f2q\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1"+ - "\u06b2\u0006\u00de\u001c\u0000\u06b2\u01cd\u0001\u0000\u0000\u0000\u06b3"+ - "\u06b4\u0003\u0118\u0084\u0000\u06b4\u06b5\u0001\u0000\u0000\u0000\u06b5"+ - "\u06b6\u0006\u00df\u001d\u0000\u06b6\u01cf\u0001\u0000\u0000\u0000\u06b7"+ - "\u06b8\u0004\u00e0\u0013\u0000\u06b8\u06b9\u0003\u0114\u0082\u0000\u06b9"+ - "\u06ba\u0001\u0000\u0000\u0000\u06ba\u06bb\u0006\u00e0\u001e\u0000\u06bb"+ - "\u01d1\u0001\u0000\u0000\u0000\u06bc\u06bd\u0004\u00e1\u0014\u0000\u06bd"+ - "\u06be\u0003\u011a\u0085\u0000\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf"+ - "\u06c0\u0006\u00e1\u001f\u0000\u06c0\u01d3\u0001\u0000\u0000\u0000\u06c1"+ - "\u06c2\u0003\u00cc^\u0000\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4"+ - "\u0006\u00e2\u0010\u0000\u06c4\u01d5\u0001\u0000\u0000\u0000\u06c5\u06c6"+ - "\u0003\u01bc\u00d6\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8"+ - "\u0006\u00e3\u001b\u0000\u06c8\u01d7\u0001\u0000\u0000\u0000\u06c9\u06ca"+ - "\u0003\u0010\u0000\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc"+ - "\u0006\u00e4\u0000\u0000\u06cc\u01d9\u0001\u0000\u0000\u0000\u06cd\u06ce"+ - "\u0003\u0012\u0001\u0000\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0"+ - "\u0006\u00e5\u0000\u0000\u06d0\u01db\u0001\u0000\u0000\u0000\u06d1\u06d2"+ - "\u0003\u0014\u0002\u0000\u06d2\u06d3\u0001\u0000\u0000\u0000\u06d3\u06d4"+ - "\u0006\u00e6\u0000\u0000\u06d4\u01dd\u0001\u0000\u0000\u0000\u06d5\u06d6"+ - "\u0003\u00aaM\u0000\u06d6\u06d7\u0001\u0000\u0000\u0000\u06d7\u06d8\u0006"+ - "\u00e7\r\u0000\u06d8\u06d9\u0006\u00e7\u000e\u0000\u06d9\u01df\u0001\u0000"+ - "\u0000\u0000\u06da\u06db\u0007\n\u0000\u0000\u06db\u06dc\u0007\u0005\u0000"+ - "\u0000\u06dc\u06dd\u0007\u0015\u0000\u0000\u06dd\u06de\u0007\t\u0000\u0000"+ - "\u06de\u01e1\u0001\u0000\u0000\u0000\u06df\u06e0\u0003\u0010\u0000\u0000"+ - "\u06e0\u06e1\u0001\u0000\u0000\u0000\u06e1\u06e2\u0006\u00e9\u0000\u0000"+ - "\u06e2\u01e3\u0001\u0000\u0000\u0000\u06e3\u06e4\u0003\u0012\u0001\u0000"+ - "\u06e4\u06e5\u0001\u0000\u0000\u0000\u06e5\u06e6\u0006\u00ea\u0000\u0000"+ - "\u06e6\u01e5\u0001\u0000\u0000\u0000\u06e7\u06e8\u0003\u0014\u0002\u0000"+ - "\u06e8\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea\u0006\u00eb\u0000\u0000"+ - "\u06ea\u01e7\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005"+ - "\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u01ee\u01f2\u01f5\u01fe\u0200"+ - "\u020b\u0310\u0356\u035a\u035f\u03bb\u03bd\u03f0\u03f5\u03fe\u0405\u040a"+ - "\u040c\u0417\u041f\u0422\u0424\u0429\u042e\u0434\u043b\u0440\u0446\u0449"+ - "\u0451\u0455\u04e4\u04e9\u04f0\u04f2\u04f7\u04fc\u0503\u0505\u051f\u0524"+ - "\u0529\u052b\u0531\u056d\u0572\u0675\u0679\u067e\u0683\u0688\u068a\u068e"+ - "\u0690)\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\n\u0000\u0005\f\u0000\u0005\r\u0000\u0005\u000e\u0000\u0005\u000f"+ - "\u0000\u00072\u0000\u0004\u0000\u0000\u00077\u0000\u00079\u0000\u0007"+ - "A\u0000\u0007?\u0000\u0007e\u0000\u0007d\u0000\u0007`\u0000\u0005\u0004"+ - "\u0000\u0005\u0003\u0000\u00078\u0000\u0007$\u0000\u0007<\u0000\u0007"+ - "\u007f\u0000\u0007L\u0000\u0007^\u0000\u0007]\u0000\u0007_\u0000\u0007"+ - "a\u0000\u0007>\u0000\u0005\u0000\u0000\u0007\u000e\u0000\u0007=\u0000"+ - "\u0007j\u0000\u00073\u0000\u0007b\u0000\u0005\u000b\u0000"; + "\u0318Q\u0001\u0000\u0000\u0000\u0319\u031a\u0003\u00ecn\u0000\u031a\u031b"+ + "\u0001\u0000\u0000\u0000\u031b\u031c\u0006!\u000f\u0000\u031cS\u0001\u0000"+ + "\u0000\u0000\u031d\u031e\u0003\u00c8\\\u0000\u031e\u031f\u0001\u0000\u0000"+ + "\u0000\u031f\u0320\u0006\"\u0010\u0000\u0320U\u0001\u0000\u0000\u0000"+ + "\u0321\u0322\u0003\u00d8d\u0000\u0322\u0323\u0001\u0000\u0000\u0000\u0323"+ + "\u0324\u0006#\u0011\u0000\u0324W\u0001\u0000\u0000\u0000\u0325\u0326\u0003"+ + "\u00d4b\u0000\u0326\u0327\u0001\u0000\u0000\u0000\u0327\u0328\u0006$\u0012"+ + "\u0000\u0328Y\u0001\u0000\u0000\u0000\u0329\u032a\u0003\u0128\u008c\u0000"+ + "\u032a\u032b\u0001\u0000\u0000\u0000\u032b\u032c\u0006%\u0013\u0000\u032c"+ + "[\u0001\u0000\u0000\u0000\u032d\u032e\u0003\u0124\u008a\u0000\u032e\u032f"+ + "\u0001\u0000\u0000\u0000\u032f\u0330\u0006&\u0014\u0000\u0330]\u0001\u0000"+ + "\u0000\u0000\u0331\u0332\u0003\u0010\u0000\u0000\u0332\u0333\u0001\u0000"+ + "\u0000\u0000\u0333\u0334\u0006\'\u0000\u0000\u0334_\u0001\u0000\u0000"+ + "\u0000\u0335\u0336\u0003\u0012\u0001\u0000\u0336\u0337\u0001\u0000\u0000"+ + "\u0000\u0337\u0338\u0006(\u0000\u0000\u0338a\u0001\u0000\u0000\u0000\u0339"+ + "\u033a\u0003\u0014\u0002\u0000\u033a\u033b\u0001\u0000\u0000\u0000\u033b"+ + "\u033c\u0006)\u0000\u0000\u033cc\u0001\u0000\u0000\u0000\u033d\u033e\u0003"+ + "\u00aaM\u0000\u033e\u033f\u0001\u0000\u0000\u0000\u033f\u0340\u0006*\r"+ + "\u0000\u0340\u0341\u0006*\u000e\u0000\u0341e\u0001\u0000\u0000\u0000\u0342"+ + "\u0343\u0003\u011c\u0086\u0000\u0343\u0344\u0001\u0000\u0000\u0000\u0344"+ + "\u0345\u0006+\u0015\u0000\u0345\u0346\u0006+\u0016\u0000\u0346g\u0001"+ + "\u0000\u0000\u0000\u0347\u0348\u0003\u00ecn\u0000\u0348\u0349\u0001\u0000"+ + "\u0000\u0000\u0349\u034a\u0006,\u000f\u0000\u034a\u034b\u0006,\u0017\u0000"+ + "\u034bi\u0001\u0000\u0000\u0000\u034c\u034d\u0003\u00f6s\u0000\u034d\u034e"+ + "\u0001\u0000\u0000\u0000\u034e\u034f\u0006-\u0018\u0000\u034f\u0350\u0006"+ + "-\u0017\u0000\u0350k\u0001\u0000\u0000\u0000\u0351\u0352\b\u0018\u0000"+ + "\u0000\u0352m\u0001\u0000\u0000\u0000\u0353\u0355\u0003l.\u0000\u0354"+ + "\u0353\u0001\u0000\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000\u0356"+ + "\u0354\u0001\u0000\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357"+ + "\u0358\u0001\u0000\u0000\u0000\u0358\u0359\u0003\u00d2a\u0000\u0359\u035b"+ + "\u0001\u0000\u0000\u0000\u035a\u0354\u0001\u0000\u0000\u0000\u035a\u035b"+ + "\u0001\u0000\u0000\u0000\u035b\u035d\u0001\u0000\u0000\u0000\u035c\u035e"+ + "\u0003l.\u0000\u035d\u035c\u0001\u0000\u0000\u0000\u035e\u035f\u0001\u0000"+ + "\u0000\u0000\u035f\u035d\u0001\u0000\u0000\u0000\u035f\u0360\u0001\u0000"+ + "\u0000\u0000\u0360o\u0001\u0000\u0000\u0000\u0361\u0362\u0003n/\u0000"+ + "\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0364\u00060\u0019\u0000\u0364"+ + "q\u0001\u0000\u0000\u0000\u0365\u0366\u0003\u0010\u0000\u0000\u0366\u0367"+ + "\u0001\u0000\u0000\u0000\u0367\u0368\u00061\u0000\u0000\u0368s\u0001\u0000"+ + "\u0000\u0000\u0369\u036a\u0003\u0012\u0001\u0000\u036a\u036b\u0001\u0000"+ + "\u0000\u0000\u036b\u036c\u00062\u0000\u0000\u036cu\u0001\u0000\u0000\u0000"+ + "\u036d\u036e\u0003\u0014\u0002\u0000\u036e\u036f\u0001\u0000\u0000\u0000"+ + "\u036f\u0370\u00063\u0000\u0000\u0370w\u0001\u0000\u0000\u0000\u0371\u0372"+ + "\u0003\u00aaM\u0000\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0374\u0006"+ + "4\r\u0000\u0374\u0375\u00064\u000e\u0000\u0375\u0376\u00064\u000e\u0000"+ + "\u0376y\u0001\u0000\u0000\u0000\u0377\u0378\u0003\u00cc^\u0000\u0378\u0379"+ + "\u0001\u0000\u0000\u0000\u0379\u037a\u00065\u001a\u0000\u037a{\u0001\u0000"+ + "\u0000\u0000\u037b\u037c\u0003\u00d4b\u0000\u037c\u037d\u0001\u0000\u0000"+ + "\u0000\u037d\u037e\u00066\u0012\u0000\u037e}\u0001\u0000\u0000\u0000\u037f"+ + "\u0380\u0003\u00d8d\u0000\u0380\u0381\u0001\u0000\u0000\u0000\u0381\u0382"+ + "\u00067\u0011\u0000\u0382\u007f\u0001\u0000\u0000\u0000\u0383\u0384\u0003"+ + "\u00f6s\u0000\u0384\u0385\u0001\u0000\u0000\u0000\u0385\u0386\u00068\u0018"+ + "\u0000\u0386\u0081\u0001\u0000\u0000\u0000\u0387\u0388\u0003\u01bc\u00d6"+ + "\u0000\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u00069\u001b\u0000"+ + "\u038a\u0083\u0001\u0000\u0000\u0000\u038b\u038c\u0003\u0128\u008c\u0000"+ + "\u038c\u038d\u0001\u0000\u0000\u0000\u038d\u038e\u0006:\u0013\u0000\u038e"+ + "\u0085\u0001\u0000\u0000\u0000\u038f\u0390\u0003\u00f0p\u0000\u0390\u0391"+ + "\u0001\u0000\u0000\u0000\u0391\u0392\u0006;\u001c\u0000\u0392\u0087\u0001"+ + "\u0000\u0000\u0000\u0393\u0394\u0003\u0118\u0084\u0000\u0394\u0395\u0001"+ + "\u0000\u0000\u0000\u0395\u0396\u0006<\u001d\u0000\u0396\u0089\u0001\u0000"+ + "\u0000\u0000\u0397\u0398\u0004=\u000b\u0000\u0398\u0399\u0003\u0114\u0082"+ + "\u0000\u0399\u039a\u0001\u0000\u0000\u0000\u039a\u039b\u0006=\u001e\u0000"+ + "\u039b\u008b\u0001\u0000\u0000\u0000\u039c\u039d\u0004>\f\u0000\u039d"+ + "\u039e\u0003\u011a\u0085\u0000\u039e\u039f\u0001\u0000\u0000\u0000\u039f"+ + "\u03a0\u0006>\u001f\u0000\u03a0\u008d\u0001\u0000\u0000\u0000\u03a1\u03a2"+ + "\u0003\u0010\u0000\u0000\u03a2\u03a3\u0001\u0000\u0000\u0000\u03a3\u03a4"+ + "\u0006?\u0000\u0000\u03a4\u008f\u0001\u0000\u0000\u0000\u03a5\u03a6\u0003"+ + "\u0012\u0001\u0000\u03a6\u03a7\u0001\u0000\u0000\u0000\u03a7\u03a8\u0006"+ + "@\u0000\u0000\u03a8\u0091\u0001\u0000\u0000\u0000\u03a9\u03aa\u0003\u0014"+ + "\u0002\u0000\u03aa\u03ab\u0001\u0000\u0000\u0000\u03ab\u03ac\u0006A\u0000"+ + "\u0000\u03ac\u0093\u0001\u0000\u0000\u0000\u03ad\u03ae\u0003\u011e\u0087"+ + "\u0000\u03ae\u03af\u0001\u0000\u0000\u0000\u03af\u03b0\u0006B \u0000\u03b0"+ + "\u03b1\u0006B\u000e\u0000\u03b1\u0095\u0001\u0000\u0000\u0000\u03b2\u03b3"+ + "\u0003\u00d2a\u0000\u03b3\u03b4\u0001\u0000\u0000\u0000\u03b4\u03b5\u0006"+ + "C!\u0000\u03b5\u0097\u0001\u0000\u0000\u0000\u03b6\u03bc\u0003\u00b6S"+ + "\u0000\u03b7\u03bc\u0003\u00acN\u0000\u03b8\u03bc\u0003\u00d8d\u0000\u03b9"+ + "\u03bc\u0003\u00aeO\u0000\u03ba\u03bc\u0003\u00bcV\u0000\u03bb\u03b6\u0001"+ + "\u0000\u0000\u0000\u03bb\u03b7\u0001\u0000\u0000\u0000\u03bb\u03b8\u0001"+ + "\u0000\u0000\u0000\u03bb\u03b9\u0001\u0000\u0000\u0000\u03bb\u03ba\u0001"+ + "\u0000\u0000\u0000\u03bc\u03bd\u0001\u0000\u0000\u0000\u03bd\u03bb\u0001"+ + "\u0000\u0000\u0000\u03bd\u03be\u0001\u0000\u0000\u0000\u03be\u0099\u0001"+ + "\u0000\u0000\u0000\u03bf\u03c0\u0003\u0010\u0000\u0000\u03c0\u03c1\u0001"+ + "\u0000\u0000\u0000\u03c1\u03c2\u0006E\u0000\u0000\u03c2\u009b\u0001\u0000"+ + "\u0000\u0000\u03c3\u03c4\u0003\u0012\u0001\u0000\u03c4\u03c5\u0001\u0000"+ + "\u0000\u0000\u03c5\u03c6\u0006F\u0000\u0000\u03c6\u009d\u0001\u0000\u0000"+ + "\u0000\u03c7\u03c8\u0003\u0014\u0002\u0000\u03c8\u03c9\u0001\u0000\u0000"+ + "\u0000\u03c9\u03ca\u0006G\u0000\u0000\u03ca\u009f\u0001\u0000\u0000\u0000"+ + "\u03cb\u03cc\u0003\u011c\u0086\u0000\u03cc\u03cd\u0001\u0000\u0000\u0000"+ + "\u03cd\u03ce\u0006H\u0015\u0000\u03ce\u03cf\u0006H\"\u0000\u03cf\u00a1"+ + "\u0001\u0000\u0000\u0000\u03d0\u03d1\u0003\u00aaM\u0000\u03d1\u03d2\u0001"+ + "\u0000\u0000\u0000\u03d2\u03d3\u0006I\r\u0000\u03d3\u03d4\u0006I\u000e"+ + "\u0000\u03d4\u00a3\u0001\u0000\u0000\u0000\u03d5\u03d6\u0003\u0014\u0002"+ + "\u0000\u03d6\u03d7\u0001\u0000\u0000\u0000\u03d7\u03d8\u0006J\u0000\u0000"+ + "\u03d8\u00a5\u0001\u0000\u0000\u0000\u03d9\u03da\u0003\u0010\u0000\u0000"+ + "\u03da\u03db\u0001\u0000\u0000\u0000\u03db\u03dc\u0006K\u0000\u0000\u03dc"+ + "\u00a7\u0001\u0000\u0000\u0000\u03dd\u03de\u0003\u0012\u0001\u0000\u03de"+ + "\u03df\u0001\u0000\u0000\u0000\u03df\u03e0\u0006L\u0000\u0000\u03e0\u00a9"+ + "\u0001\u0000\u0000\u0000\u03e1\u03e2\u0005|\u0000\u0000\u03e2\u03e3\u0001"+ + "\u0000\u0000\u0000\u03e3\u03e4\u0006M\u000e\u0000\u03e4\u00ab\u0001\u0000"+ + "\u0000\u0000\u03e5\u03e6\u0007\u0019\u0000\u0000\u03e6\u00ad\u0001\u0000"+ + "\u0000\u0000\u03e7\u03e8\u0007\u001a\u0000\u0000\u03e8\u00af\u0001\u0000"+ + "\u0000\u0000\u03e9\u03ea\u0005\\\u0000\u0000\u03ea\u03eb\u0007\u001b\u0000"+ + "\u0000\u03eb\u00b1\u0001\u0000\u0000\u0000\u03ec\u03ed\b\u001c\u0000\u0000"+ + "\u03ed\u00b3\u0001\u0000\u0000\u0000\u03ee\u03f0\u0007\u0007\u0000\u0000"+ + "\u03ef\u03f1\u0007\u001d\u0000\u0000\u03f0\u03ef\u0001\u0000\u0000\u0000"+ + "\u03f0\u03f1\u0001\u0000\u0000\u0000\u03f1\u03f3\u0001\u0000\u0000\u0000"+ + "\u03f2\u03f4\u0003\u00acN\u0000\u03f3\u03f2\u0001\u0000\u0000\u0000\u03f4"+ + "\u03f5\u0001\u0000\u0000\u0000\u03f5\u03f3\u0001\u0000\u0000\u0000\u03f5"+ + "\u03f6\u0001\u0000\u0000\u0000\u03f6\u00b5\u0001\u0000\u0000\u0000\u03f7"+ + "\u03f8\u0005@\u0000\u0000\u03f8\u00b7\u0001\u0000\u0000\u0000\u03f9\u03fa"+ + "\u0005`\u0000\u0000\u03fa\u00b9\u0001\u0000\u0000\u0000\u03fb\u03ff\b"+ + "\u001e\u0000\u0000\u03fc\u03fd\u0005`\u0000\u0000\u03fd\u03ff\u0005`\u0000"+ + "\u0000\u03fe\u03fb\u0001\u0000\u0000\u0000\u03fe\u03fc\u0001\u0000\u0000"+ + "\u0000\u03ff\u00bb\u0001\u0000\u0000\u0000\u0400\u0401\u0005_\u0000\u0000"+ + "\u0401\u00bd\u0001\u0000\u0000\u0000\u0402\u0406\u0003\u00aeO\u0000\u0403"+ + "\u0406\u0003\u00acN\u0000\u0404\u0406\u0003\u00bcV\u0000\u0405\u0402\u0001"+ + "\u0000\u0000\u0000\u0405\u0403\u0001\u0000\u0000\u0000\u0405\u0404\u0001"+ + "\u0000\u0000\u0000\u0406\u00bf\u0001\u0000\u0000\u0000\u0407\u040c\u0005"+ + "\"\u0000\u0000\u0408\u040b\u0003\u00b0P\u0000\u0409\u040b\u0003\u00b2"+ + "Q\u0000\u040a\u0408\u0001\u0000\u0000\u0000\u040a\u0409\u0001\u0000\u0000"+ + "\u0000\u040b\u040e\u0001\u0000\u0000\u0000\u040c\u040a\u0001\u0000\u0000"+ + "\u0000\u040c\u040d\u0001\u0000\u0000\u0000\u040d\u040f\u0001\u0000\u0000"+ + "\u0000\u040e\u040c\u0001\u0000\u0000\u0000\u040f\u0425\u0005\"\u0000\u0000"+ + "\u0410\u0411\u0005\"\u0000\u0000\u0411\u0412\u0005\"\u0000\u0000\u0412"+ + "\u0413\u0005\"\u0000\u0000\u0413\u0417\u0001\u0000\u0000\u0000\u0414\u0416"+ + "\b\u0000\u0000\u0000\u0415\u0414\u0001\u0000\u0000\u0000\u0416\u0419\u0001"+ + "\u0000\u0000\u0000\u0417\u0418\u0001\u0000\u0000\u0000\u0417\u0415\u0001"+ + "\u0000\u0000\u0000\u0418\u041a\u0001\u0000\u0000\u0000\u0419\u0417\u0001"+ + "\u0000\u0000\u0000\u041a\u041b\u0005\"\u0000\u0000\u041b\u041c\u0005\""+ + "\u0000\u0000\u041c\u041d\u0005\"\u0000\u0000\u041d\u041f\u0001\u0000\u0000"+ + "\u0000\u041e\u0420\u0005\"\u0000\u0000\u041f\u041e\u0001\u0000\u0000\u0000"+ + "\u041f\u0420\u0001\u0000\u0000\u0000\u0420\u0422\u0001\u0000\u0000\u0000"+ + "\u0421\u0423\u0005\"\u0000\u0000\u0422\u0421\u0001\u0000\u0000\u0000\u0422"+ + "\u0423\u0001\u0000\u0000\u0000\u0423\u0425\u0001\u0000\u0000\u0000\u0424"+ + "\u0407\u0001\u0000\u0000\u0000\u0424\u0410\u0001\u0000\u0000\u0000\u0425"+ + "\u00c1\u0001\u0000\u0000\u0000\u0426\u0428\u0003\u00acN\u0000\u0427\u0426"+ + "\u0001\u0000\u0000\u0000\u0428\u0429\u0001\u0000\u0000\u0000\u0429\u0427"+ + "\u0001\u0000\u0000\u0000\u0429\u042a\u0001\u0000\u0000\u0000\u042a\u00c3"+ + "\u0001\u0000\u0000\u0000\u042b\u042d\u0003\u00acN\u0000\u042c\u042b\u0001"+ + "\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000\u042e\u042c\u0001"+ + "\u0000\u0000\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0430\u0001"+ + "\u0000\u0000\u0000\u0430\u0434\u0003\u00d8d\u0000\u0431\u0433\u0003\u00ac"+ + "N\u0000\u0432\u0431\u0001\u0000\u0000\u0000\u0433\u0436\u0001\u0000\u0000"+ + "\u0000\u0434\u0432\u0001\u0000\u0000\u0000\u0434\u0435\u0001\u0000\u0000"+ + "\u0000\u0435\u0456\u0001\u0000\u0000\u0000\u0436\u0434\u0001\u0000\u0000"+ + "\u0000\u0437\u0439\u0003\u00d8d\u0000\u0438\u043a\u0003\u00acN\u0000\u0439"+ + "\u0438\u0001\u0000\u0000\u0000\u043a\u043b\u0001\u0000\u0000\u0000\u043b"+ + "\u0439\u0001\u0000\u0000\u0000\u043b\u043c\u0001\u0000\u0000\u0000\u043c"+ + "\u0456\u0001\u0000\u0000\u0000\u043d\u043f\u0003\u00acN\u0000\u043e\u043d"+ + "\u0001\u0000\u0000\u0000\u043f\u0440\u0001\u0000\u0000\u0000\u0440\u043e"+ + "\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000\u0000\u0000\u0441\u0449"+ + "\u0001\u0000\u0000\u0000\u0442\u0446\u0003\u00d8d\u0000\u0443\u0445\u0003"+ + "\u00acN\u0000\u0444\u0443\u0001\u0000\u0000\u0000\u0445\u0448\u0001\u0000"+ + "\u0000\u0000\u0446\u0444\u0001\u0000\u0000\u0000\u0446\u0447\u0001\u0000"+ + "\u0000\u0000\u0447\u044a\u0001\u0000\u0000\u0000\u0448\u0446\u0001\u0000"+ + "\u0000\u0000\u0449\u0442\u0001\u0000\u0000\u0000\u0449\u044a\u0001\u0000"+ + "\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044c\u0003\u00b4"+ + "R\u0000\u044c\u0456\u0001\u0000\u0000\u0000\u044d\u044f\u0003\u00d8d\u0000"+ + "\u044e\u0450\u0003\u00acN\u0000\u044f\u044e\u0001\u0000\u0000\u0000\u0450"+ + "\u0451\u0001\u0000\u0000\u0000\u0451\u044f\u0001\u0000\u0000\u0000\u0451"+ + "\u0452\u0001\u0000\u0000\u0000\u0452\u0453\u0001\u0000\u0000\u0000\u0453"+ + "\u0454\u0003\u00b4R\u0000\u0454\u0456\u0001\u0000\u0000\u0000\u0455\u042c"+ + "\u0001\u0000\u0000\u0000\u0455\u0437\u0001\u0000\u0000\u0000\u0455\u043e"+ + "\u0001\u0000\u0000\u0000\u0455\u044d\u0001\u0000\u0000\u0000\u0456\u00c5"+ + "\u0001\u0000\u0000\u0000\u0457\u0458\u0007\u0004\u0000\u0000\u0458\u0459"+ + "\u0007\u0005\u0000\u0000\u0459\u045a\u0007\u000f\u0000\u0000\u045a\u00c7"+ + "\u0001\u0000\u0000\u0000\u045b\u045c\u0007\u0004\u0000\u0000\u045c\u045d"+ + "\u0007\u0010\u0000\u0000\u045d\u00c9\u0001\u0000\u0000\u0000\u045e\u045f"+ + "\u0007\u0004\u0000\u0000\u045f\u0460\u0007\u0010\u0000\u0000\u0460\u0461"+ + "\u0007\u0002\u0000\u0000\u0461\u00cb\u0001\u0000\u0000\u0000\u0462\u0463"+ + "\u0005=\u0000\u0000\u0463\u00cd\u0001\u0000\u0000\u0000\u0464\u0465\u0007"+ + "\u001f\u0000\u0000\u0465\u0466\u0007 \u0000\u0000\u0466\u00cf\u0001\u0000"+ + "\u0000\u0000\u0467\u0468\u0005:\u0000\u0000\u0468\u0469\u0005:\u0000\u0000"+ + "\u0469\u00d1\u0001\u0000\u0000\u0000\u046a\u046b\u0005:\u0000\u0000\u046b"+ + "\u00d3\u0001\u0000\u0000\u0000\u046c\u046d\u0005,\u0000\u0000\u046d\u00d5"+ + "\u0001\u0000\u0000\u0000\u046e\u046f\u0007\u000f\u0000\u0000\u046f\u0470"+ + "\u0007\u0007\u0000\u0000\u0470\u0471\u0007\u0010\u0000\u0000\u0471\u0472"+ + "\u0007\u0002\u0000\u0000\u0472\u00d7\u0001\u0000\u0000\u0000\u0473\u0474"+ + "\u0005.\u0000\u0000\u0474\u00d9\u0001\u0000\u0000\u0000\u0475\u0476\u0007"+ + "\u0015\u0000\u0000\u0476\u0477\u0007\u0004\u0000\u0000\u0477\u0478\u0007"+ + "\u000e\u0000\u0000\u0478\u0479\u0007\u0010\u0000\u0000\u0479\u047a\u0007"+ + "\u0007\u0000\u0000\u047a\u00db\u0001\u0000\u0000\u0000\u047b\u047c\u0007"+ + "\u0015\u0000\u0000\u047c\u047d\u0007\n\u0000\u0000\u047d\u047e\u0007\f"+ + "\u0000\u0000\u047e\u047f\u0007\u0010\u0000\u0000\u047f\u0480\u0007\u000b"+ + "\u0000\u0000\u0480\u00dd\u0001\u0000\u0000\u0000\u0481\u0482\u0007\n\u0000"+ + "\u0000\u0482\u0483\u0007\u0005\u0000\u0000\u0483\u00df\u0001\u0000\u0000"+ + "\u0000\u0484\u0485\u0007\n\u0000\u0000\u0485\u0486\u0007\u0010\u0000\u0000"+ + "\u0486\u00e1\u0001\u0000\u0000\u0000\u0487\u0488\u0007\u000e\u0000\u0000"+ + "\u0488\u0489\u0007\u0004\u0000\u0000\u0489\u048a\u0007\u0010\u0000\u0000"+ + "\u048a\u048b\u0007\u000b\u0000\u0000\u048b\u00e3\u0001\u0000\u0000\u0000"+ + "\u048c\u048d\u0007\u000e\u0000\u0000\u048d\u048e\u0007\n\u0000\u0000\u048e"+ + "\u048f\u0007\u0012\u0000\u0000\u048f\u0490\u0007\u0007\u0000\u0000\u0490"+ + "\u00e5\u0001\u0000\u0000\u0000\u0491\u0492\u0007\u0005\u0000\u0000\u0492"+ + "\u0493\u0007\t\u0000\u0000\u0493\u0494\u0007\u000b\u0000\u0000\u0494\u00e7"+ + "\u0001\u0000\u0000\u0000\u0495\u0496\u0007\u0005\u0000\u0000\u0496\u0497"+ + "\u0007\u0016\u0000\u0000\u0497\u0498\u0007\u000e\u0000\u0000\u0498\u0499"+ + "\u0007\u000e\u0000\u0000\u0499\u00e9\u0001\u0000\u0000\u0000\u049a\u049b"+ + "\u0007\u0005\u0000\u0000\u049b\u049c\u0007\u0016\u0000\u0000\u049c\u049d"+ + "\u0007\u000e\u0000\u0000\u049d\u049e\u0007\u000e\u0000\u0000\u049e\u049f"+ + "\u0007\u0010\u0000\u0000\u049f\u00eb\u0001\u0000\u0000\u0000\u04a0\u04a1"+ + "\u0007\t\u0000\u0000\u04a1\u04a2\u0007\u0005\u0000\u0000\u04a2\u00ed\u0001"+ + "\u0000\u0000\u0000\u04a3\u04a4\u0007\t\u0000\u0000\u04a4\u04a5\u0007\f"+ + "\u0000\u0000\u04a5\u00ef\u0001\u0000\u0000\u0000\u04a6\u04a7\u0005?\u0000"+ + "\u0000\u04a7\u00f1\u0001\u0000\u0000\u0000\u04a8\u04a9\u0007\f\u0000\u0000"+ + "\u04a9\u04aa\u0007\u000e\u0000\u0000\u04aa\u04ab\u0007\n\u0000\u0000\u04ab"+ + "\u04ac\u0007\u0012\u0000\u0000\u04ac\u04ad\u0007\u0007\u0000\u0000\u04ad"+ + "\u00f3\u0001\u0000\u0000\u0000\u04ae\u04af\u0007\u000b\u0000\u0000\u04af"+ + "\u04b0\u0007\f\u0000\u0000\u04b0\u04b1\u0007\u0016\u0000\u0000\u04b1\u04b2"+ + "\u0007\u0007\u0000\u0000\u04b2\u00f5\u0001\u0000\u0000\u0000\u04b3\u04b4"+ + "\u0007\u0014\u0000\u0000\u04b4\u04b5\u0007\n\u0000\u0000\u04b5\u04b6\u0007"+ + "\u000b\u0000\u0000\u04b6\u04b7\u0007\u0003\u0000\u0000\u04b7\u00f7\u0001"+ + "\u0000\u0000\u0000\u04b8\u04b9\u0005=\u0000\u0000\u04b9\u04ba\u0005=\u0000"+ + "\u0000\u04ba\u00f9\u0001\u0000\u0000\u0000\u04bb\u04bc\u0005=\u0000\u0000"+ + "\u04bc\u04bd\u0005~\u0000\u0000\u04bd\u00fb\u0001\u0000\u0000\u0000\u04be"+ + "\u04bf\u0005!\u0000\u0000\u04bf\u04c0\u0005=\u0000\u0000\u04c0\u00fd\u0001"+ + "\u0000\u0000\u0000\u04c1\u04c2\u0005<\u0000\u0000\u04c2\u00ff\u0001\u0000"+ + "\u0000\u0000\u04c3\u04c4\u0005<\u0000\u0000\u04c4\u04c5\u0005=\u0000\u0000"+ + "\u04c5\u0101\u0001\u0000\u0000\u0000\u04c6\u04c7\u0005>\u0000\u0000\u04c7"+ + "\u0103\u0001\u0000\u0000\u0000\u04c8\u04c9\u0005>\u0000\u0000\u04c9\u04ca"+ + "\u0005=\u0000\u0000\u04ca\u0105\u0001\u0000\u0000\u0000\u04cb\u04cc\u0005"+ + "+\u0000\u0000\u04cc\u0107\u0001\u0000\u0000\u0000\u04cd\u04ce\u0005-\u0000"+ + "\u0000\u04ce\u0109\u0001\u0000\u0000\u0000\u04cf\u04d0\u0005*\u0000\u0000"+ + "\u04d0\u010b\u0001\u0000\u0000\u0000\u04d1\u04d2\u0005/\u0000\u0000\u04d2"+ + "\u010d\u0001\u0000\u0000\u0000\u04d3\u04d4\u0005%\u0000\u0000\u04d4\u010f"+ + "\u0001\u0000\u0000\u0000\u04d5\u04d6\u0005{\u0000\u0000\u04d6\u0111\u0001"+ + "\u0000\u0000\u0000\u04d7\u04d8\u0005}\u0000\u0000\u04d8\u0113\u0001\u0000"+ + "\u0000\u0000\u04d9\u04da\u0004\u0082\r\u0000\u04da\u04db\u0005?\u0000"+ + "\u0000\u04db\u04dc\u0005?\u0000\u0000\u04dc\u0115\u0001\u0000\u0000\u0000"+ + "\u04dd\u04de\u0003*\r\u0000\u04de\u04df\u0001\u0000\u0000\u0000\u04df"+ + "\u04e0\u0006\u0083#\u0000\u04e0\u0117\u0001\u0000\u0000\u0000\u04e1\u04e4"+ + "\u0003\u00f0p\u0000\u04e2\u04e5\u0003\u00aeO\u0000\u04e3\u04e5\u0003\u00bc"+ + "V\u0000\u04e4\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e3\u0001\u0000\u0000"+ + "\u0000\u04e5\u04e9\u0001\u0000\u0000\u0000\u04e6\u04e8\u0003\u00beW\u0000"+ + "\u04e7\u04e6\u0001\u0000\u0000\u0000\u04e8\u04eb\u0001\u0000\u0000\u0000"+ + "\u04e9\u04e7\u0001\u0000\u0000\u0000\u04e9\u04ea\u0001\u0000\u0000\u0000"+ + "\u04ea\u04f3\u0001\u0000\u0000\u0000\u04eb\u04e9\u0001\u0000\u0000\u0000"+ + "\u04ec\u04ee\u0003\u00f0p\u0000\u04ed\u04ef\u0003\u00acN\u0000\u04ee\u04ed"+ + "\u0001\u0000\u0000\u0000\u04ef\u04f0\u0001\u0000\u0000\u0000\u04f0\u04ee"+ + "\u0001\u0000\u0000\u0000\u04f0\u04f1\u0001\u0000\u0000\u0000\u04f1\u04f3"+ + "\u0001\u0000\u0000\u0000\u04f2\u04e1\u0001\u0000\u0000\u0000\u04f2\u04ec"+ + "\u0001\u0000\u0000\u0000\u04f3\u0119\u0001\u0000\u0000\u0000\u04f4\u04f7"+ + "\u0003\u0114\u0082\u0000\u04f5\u04f8\u0003\u00aeO\u0000\u04f6\u04f8\u0003"+ + "\u00bcV\u0000\u04f7\u04f5\u0001\u0000\u0000\u0000\u04f7\u04f6\u0001\u0000"+ + "\u0000\u0000\u04f8\u04fc\u0001\u0000\u0000\u0000\u04f9\u04fb\u0003\u00be"+ + "W\u0000\u04fa\u04f9\u0001\u0000\u0000\u0000\u04fb\u04fe\u0001\u0000\u0000"+ + "\u0000\u04fc\u04fa\u0001\u0000\u0000\u0000\u04fc\u04fd\u0001\u0000\u0000"+ + "\u0000\u04fd\u0506\u0001\u0000\u0000\u0000\u04fe\u04fc\u0001\u0000\u0000"+ + "\u0000\u04ff\u0501\u0003\u0114\u0082\u0000\u0500\u0502\u0003\u00acN\u0000"+ + "\u0501\u0500\u0001\u0000\u0000\u0000\u0502\u0503\u0001\u0000\u0000\u0000"+ + "\u0503\u0501\u0001\u0000\u0000\u0000\u0503\u0504\u0001\u0000\u0000\u0000"+ + "\u0504\u0506\u0001\u0000\u0000\u0000\u0505\u04f4\u0001\u0000\u0000\u0000"+ + "\u0505\u04ff\u0001\u0000\u0000\u0000\u0506\u011b\u0001\u0000\u0000\u0000"+ + "\u0507\u0508\u0005[\u0000\u0000\u0508\u0509\u0001\u0000\u0000\u0000\u0509"+ + "\u050a\u0006\u0086\u0004\u0000\u050a\u050b\u0006\u0086\u0004\u0000\u050b"+ + "\u011d\u0001\u0000\u0000\u0000\u050c\u050d\u0005]\u0000\u0000\u050d\u050e"+ + "\u0001\u0000\u0000\u0000\u050e\u050f\u0006\u0087\u000e\u0000\u050f\u0510"+ + "\u0006\u0087\u000e\u0000\u0510\u011f\u0001\u0000\u0000\u0000\u0511\u0512"+ + "\u0005(\u0000\u0000\u0512\u0513\u0001\u0000\u0000\u0000\u0513\u0514\u0006"+ + "\u0088\u0004\u0000\u0514\u0515\u0006\u0088\u0004\u0000\u0515\u0121\u0001"+ + "\u0000\u0000\u0000\u0516\u0517\u0005)\u0000\u0000\u0517\u0518\u0001\u0000"+ + "\u0000\u0000\u0518\u0519\u0006\u0089\u000e\u0000\u0519\u051a\u0006\u0089"+ + "\u000e\u0000\u051a\u0123\u0001\u0000\u0000\u0000\u051b\u051f\u0003\u00ae"+ + "O\u0000\u051c\u051e\u0003\u00beW\u0000\u051d\u051c\u0001\u0000\u0000\u0000"+ + "\u051e\u0521\u0001\u0000\u0000\u0000\u051f\u051d\u0001\u0000\u0000\u0000"+ + "\u051f\u0520\u0001\u0000\u0000\u0000\u0520\u052c\u0001\u0000\u0000\u0000"+ + "\u0521\u051f\u0001\u0000\u0000\u0000\u0522\u0525\u0003\u00bcV\u0000\u0523"+ + "\u0525\u0003\u00b6S\u0000\u0524\u0522\u0001\u0000\u0000\u0000\u0524\u0523"+ + "\u0001\u0000\u0000\u0000\u0525\u0527\u0001\u0000\u0000\u0000\u0526\u0528"+ + "\u0003\u00beW\u0000\u0527\u0526\u0001\u0000\u0000\u0000\u0528\u0529\u0001"+ + "\u0000\u0000\u0000\u0529\u0527\u0001\u0000\u0000\u0000\u0529\u052a\u0001"+ + "\u0000\u0000\u0000\u052a\u052c\u0001\u0000\u0000\u0000\u052b\u051b\u0001"+ + "\u0000\u0000\u0000\u052b\u0524\u0001\u0000\u0000\u0000\u052c\u0125\u0001"+ + "\u0000\u0000\u0000\u052d\u052f\u0003\u00b8T\u0000\u052e\u0530\u0003\u00ba"+ + "U\u0000\u052f\u052e\u0001\u0000\u0000\u0000\u0530\u0531\u0001\u0000\u0000"+ + "\u0000\u0531\u052f\u0001\u0000\u0000\u0000\u0531\u0532\u0001\u0000\u0000"+ + "\u0000\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0003\u00b8T\u0000"+ + "\u0534\u0127\u0001\u0000\u0000\u0000\u0535\u0536\u0003\u0126\u008b\u0000"+ + "\u0536\u0129\u0001\u0000\u0000\u0000\u0537\u0538\u0003\u0010\u0000\u0000"+ + "\u0538\u0539\u0001\u0000\u0000\u0000\u0539\u053a\u0006\u008d\u0000\u0000"+ + "\u053a\u012b\u0001\u0000\u0000\u0000\u053b\u053c\u0003\u0012\u0001\u0000"+ + "\u053c\u053d\u0001\u0000\u0000\u0000\u053d\u053e\u0006\u008e\u0000\u0000"+ + "\u053e\u012d\u0001\u0000\u0000\u0000\u053f\u0540\u0003\u0014\u0002\u0000"+ + "\u0540\u0541\u0001\u0000\u0000\u0000\u0541\u0542\u0006\u008f\u0000\u0000"+ + "\u0542\u012f\u0001\u0000\u0000\u0000\u0543\u0544\u0003\u00aaM\u0000\u0544"+ + "\u0545\u0001\u0000\u0000\u0000\u0545\u0546\u0006\u0090\r\u0000\u0546\u0547"+ + "\u0006\u0090\u000e\u0000\u0547\u0131\u0001\u0000\u0000\u0000\u0548\u0549"+ + "\u0003\u011c\u0086\u0000\u0549\u054a\u0001\u0000\u0000\u0000\u054a\u054b"+ + "\u0006\u0091\u0015\u0000\u054b\u0133\u0001\u0000\u0000\u0000\u054c\u054d"+ + "\u0003\u011e\u0087\u0000\u054d\u054e\u0001\u0000\u0000\u0000\u054e\u054f"+ + "\u0006\u0092 \u0000\u054f\u0135\u0001\u0000\u0000\u0000\u0550\u0551\u0003"+ + "\u00d2a\u0000\u0551\u0552\u0001\u0000\u0000\u0000\u0552\u0553\u0006\u0093"+ + "!\u0000\u0553\u0137\u0001\u0000\u0000\u0000\u0554\u0555\u0004\u0094\u000e"+ + "\u0000\u0555\u0556\u0003\u00d0`\u0000\u0556\u0557\u0001\u0000\u0000\u0000"+ + "\u0557\u0558\u0006\u0094$\u0000\u0558\u0139\u0001\u0000\u0000\u0000\u0559"+ + "\u055a\u0003\u00d4b\u0000\u055a\u055b\u0001\u0000\u0000\u0000\u055b\u055c"+ + "\u0006\u0095\u0012\u0000\u055c\u013b\u0001\u0000\u0000\u0000\u055d\u055e"+ + "\u0003\u00cc^\u0000\u055e\u055f\u0001\u0000\u0000\u0000\u055f\u0560\u0006"+ + "\u0096\u001a\u0000\u0560\u013d\u0001\u0000\u0000\u0000\u0561\u0562\u0007"+ + "\u0013\u0000\u0000\u0562\u0563\u0007\u0007\u0000\u0000\u0563\u0564\u0007"+ + "\u000b\u0000\u0000\u0564\u0565\u0007\u0004\u0000\u0000\u0565\u0566\u0007"+ + "\u000f\u0000\u0000\u0566\u0567\u0007\u0004\u0000\u0000\u0567\u0568\u0007"+ + "\u000b\u0000\u0000\u0568\u0569\u0007\u0004\u0000\u0000\u0569\u013f\u0001"+ + "\u0000\u0000\u0000\u056a\u056e\b!\u0000\u0000\u056b\u056c\u0005/\u0000"+ + "\u0000\u056c\u056e\b\"\u0000\u0000\u056d\u056a\u0001\u0000\u0000\u0000"+ + "\u056d\u056b\u0001\u0000\u0000\u0000\u056e\u0141\u0001\u0000\u0000\u0000"+ + "\u056f\u0571\u0003\u0140\u0098\u0000\u0570\u056f\u0001\u0000\u0000\u0000"+ + "\u0571\u0572\u0001\u0000\u0000\u0000\u0572\u0570\u0001\u0000\u0000\u0000"+ + "\u0572\u0573\u0001\u0000\u0000\u0000\u0573\u0143\u0001\u0000\u0000\u0000"+ + "\u0574\u0575\u0003\u0142\u0099\u0000\u0575\u0576\u0001\u0000\u0000\u0000"+ + "\u0576\u0577\u0006\u009a%\u0000\u0577\u0145\u0001\u0000\u0000\u0000\u0578"+ + "\u0579\u0003\u00c0X\u0000\u0579\u057a\u0001\u0000\u0000\u0000\u057a\u057b"+ + "\u0006\u009b&\u0000\u057b\u0147\u0001\u0000\u0000\u0000\u057c\u057d\u0003"+ + "\u0010\u0000\u0000\u057d\u057e\u0001\u0000\u0000\u0000\u057e\u057f\u0006"+ + "\u009c\u0000\u0000\u057f\u0149\u0001\u0000\u0000\u0000\u0580\u0581\u0003"+ + "\u0012\u0001\u0000\u0581\u0582\u0001\u0000\u0000\u0000\u0582\u0583\u0006"+ + "\u009d\u0000\u0000\u0583\u014b\u0001\u0000\u0000\u0000\u0584\u0585\u0003"+ + "\u0014\u0002\u0000\u0585\u0586\u0001\u0000\u0000\u0000\u0586\u0587\u0006"+ + "\u009e\u0000\u0000\u0587\u014d\u0001\u0000\u0000\u0000\u0588\u0589\u0003"+ + "\u0120\u0088\u0000\u0589\u058a\u0001\u0000\u0000\u0000\u058a\u058b\u0006"+ + "\u009f\'\u0000\u058b\u058c\u0006\u009f\"\u0000\u058c\u014f\u0001\u0000"+ + "\u0000\u0000\u058d\u058e\u0003\u00aaM\u0000\u058e\u058f\u0001\u0000\u0000"+ + "\u0000\u058f\u0590\u0006\u00a0\r\u0000\u0590\u0591\u0006\u00a0\u000e\u0000"+ + "\u0591\u0151\u0001\u0000\u0000\u0000\u0592\u0593\u0003\u0014\u0002\u0000"+ + "\u0593\u0594\u0001\u0000\u0000\u0000\u0594\u0595\u0006\u00a1\u0000\u0000"+ + "\u0595\u0153\u0001\u0000\u0000\u0000\u0596\u0597\u0003\u0010\u0000\u0000"+ + "\u0597\u0598\u0001\u0000\u0000\u0000\u0598\u0599\u0006\u00a2\u0000\u0000"+ + "\u0599\u0155\u0001\u0000\u0000\u0000\u059a\u059b\u0003\u0012\u0001\u0000"+ + "\u059b\u059c\u0001\u0000\u0000\u0000\u059c\u059d\u0006\u00a3\u0000\u0000"+ + "\u059d\u0157\u0001\u0000\u0000\u0000\u059e\u059f\u0003\u00aaM\u0000\u059f"+ + "\u05a0\u0001\u0000\u0000\u0000\u05a0\u05a1\u0006\u00a4\r\u0000\u05a1\u05a2"+ + "\u0006\u00a4\u000e\u0000\u05a2\u0159\u0001\u0000\u0000\u0000\u05a3\u05a4"+ + "\u0007#\u0000\u0000\u05a4\u05a5\u0007\t\u0000\u0000\u05a5\u05a6\u0007"+ + "\n\u0000\u0000\u05a6\u05a7\u0007\u0005\u0000\u0000\u05a7\u015b\u0001\u0000"+ + "\u0000\u0000\u05a8\u05a9\u0003\u00c8\\\u0000\u05a9\u05aa\u0001\u0000\u0000"+ + "\u0000\u05aa\u05ab\u0006\u00a6\u0010\u0000\u05ab\u015d\u0001\u0000\u0000"+ + "\u0000\u05ac\u05ad\u0003\u00ecn\u0000\u05ad\u05ae\u0001\u0000\u0000\u0000"+ + "\u05ae\u05af\u0006\u00a7\u000f\u0000\u05af\u05b0\u0006\u00a7\u000e\u0000"+ + "\u05b0\u05b1\u0006\u00a7\u0004\u0000\u05b1\u015f\u0001\u0000\u0000\u0000"+ + "\u05b2\u05b3\u0007\u0016\u0000\u0000\u05b3\u05b4\u0007\u0010\u0000\u0000"+ + "\u05b4\u05b5\u0007\n\u0000\u0000\u05b5\u05b6\u0007\u0005\u0000\u0000\u05b6"+ + "\u05b7\u0007\u0006\u0000\u0000\u05b7\u05b8\u0001\u0000\u0000\u0000\u05b8"+ + "\u05b9\u0006\u00a8\u000e\u0000\u05b9\u05ba\u0006\u00a8\u0004\u0000\u05ba"+ + "\u0161\u0001\u0000\u0000\u0000\u05bb\u05bc\u0003\u0142\u0099\u0000\u05bc"+ + "\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be\u0006\u00a9%\u0000\u05be\u0163"+ + "\u0001\u0000\u0000\u0000\u05bf\u05c0\u0003\u00c0X\u0000\u05c0\u05c1\u0001"+ + "\u0000\u0000\u0000\u05c1\u05c2\u0006\u00aa&\u0000\u05c2\u0165\u0001\u0000"+ + "\u0000\u0000\u05c3\u05c4\u0003\u00d2a\u0000\u05c4\u05c5\u0001\u0000\u0000"+ + "\u0000\u05c5\u05c6\u0006\u00ab!\u0000\u05c6\u0167\u0001\u0000\u0000\u0000"+ + "\u05c7\u05c8\u0003\u0124\u008a\u0000\u05c8\u05c9\u0001\u0000\u0000\u0000"+ + "\u05c9\u05ca\u0006\u00ac\u0014\u0000\u05ca\u0169\u0001\u0000\u0000\u0000"+ + "\u05cb\u05cc\u0003\u0128\u008c\u0000\u05cc\u05cd\u0001\u0000\u0000\u0000"+ + "\u05cd\u05ce\u0006\u00ad\u0013\u0000\u05ce\u016b\u0001\u0000\u0000\u0000"+ + "\u05cf\u05d0\u0003\u0010\u0000\u0000\u05d0\u05d1\u0001\u0000\u0000\u0000"+ + "\u05d1\u05d2\u0006\u00ae\u0000\u0000\u05d2\u016d\u0001\u0000\u0000\u0000"+ + "\u05d3\u05d4\u0003\u0012\u0001\u0000\u05d4\u05d5\u0001\u0000\u0000\u0000"+ + "\u05d5\u05d6\u0006\u00af\u0000\u0000\u05d6\u016f\u0001\u0000\u0000\u0000"+ + "\u05d7\u05d8\u0003\u0014\u0002\u0000\u05d8\u05d9\u0001\u0000\u0000\u0000"+ + "\u05d9\u05da\u0006\u00b0\u0000\u0000\u05da\u0171\u0001\u0000\u0000\u0000"+ + "\u05db\u05dc\u0003\u00aaM\u0000\u05dc\u05dd\u0001\u0000\u0000\u0000\u05dd"+ + "\u05de\u0006\u00b1\r\u0000\u05de\u05df\u0006\u00b1\u000e\u0000\u05df\u0173"+ + "\u0001\u0000\u0000\u0000\u05e0\u05e1\u0003\u00d2a\u0000\u05e1\u05e2\u0001"+ + "\u0000\u0000\u0000\u05e2\u05e3\u0006\u00b2!\u0000\u05e3\u0175\u0001\u0000"+ + "\u0000\u0000\u05e4\u05e5\u0003\u00d4b\u0000\u05e5\u05e6\u0001\u0000\u0000"+ + "\u0000\u05e6\u05e7\u0006\u00b3\u0012\u0000\u05e7\u0177\u0001\u0000\u0000"+ + "\u0000\u05e8\u05e9\u0003\u00d8d\u0000\u05e9\u05ea\u0001\u0000\u0000\u0000"+ + "\u05ea\u05eb\u0006\u00b4\u0011\u0000\u05eb\u0179\u0001\u0000\u0000\u0000"+ + "\u05ec\u05ed\u0003\u00ecn\u0000\u05ed\u05ee\u0001\u0000\u0000\u0000\u05ee"+ + "\u05ef\u0006\u00b5\u000f\u0000\u05ef\u05f0\u0006\u00b5(\u0000\u05f0\u017b"+ + "\u0001\u0000\u0000\u0000\u05f1\u05f2\u0003\u0142\u0099\u0000\u05f2\u05f3"+ + "\u0001\u0000\u0000\u0000\u05f3\u05f4\u0006\u00b6%\u0000\u05f4\u017d\u0001"+ + "\u0000\u0000\u0000\u05f5\u05f6\u0003\u00c0X\u0000\u05f6\u05f7\u0001\u0000"+ + "\u0000\u0000\u05f7\u05f8\u0006\u00b7&\u0000\u05f8\u017f\u0001\u0000\u0000"+ + "\u0000\u05f9\u05fa\u0003\u0010\u0000\u0000\u05fa\u05fb\u0001\u0000\u0000"+ + "\u0000\u05fb\u05fc\u0006\u00b8\u0000\u0000\u05fc\u0181\u0001\u0000\u0000"+ + "\u0000\u05fd\u05fe\u0003\u0012\u0001\u0000\u05fe\u05ff\u0001\u0000\u0000"+ + "\u0000\u05ff\u0600\u0006\u00b9\u0000\u0000\u0600\u0183\u0001\u0000\u0000"+ + "\u0000\u0601\u0602\u0003\u0014\u0002\u0000\u0602\u0603\u0001\u0000\u0000"+ + "\u0000\u0603\u0604\u0006\u00ba\u0000\u0000\u0604\u0185\u0001\u0000\u0000"+ + "\u0000\u0605\u0606\u0003\u00aaM\u0000\u0606\u0607\u0001\u0000\u0000\u0000"+ + "\u0607\u0608\u0006\u00bb\r\u0000\u0608\u0609\u0006\u00bb\u000e\u0000\u0609"+ + "\u060a\u0006\u00bb\u000e\u0000\u060a\u0187\u0001\u0000\u0000\u0000\u060b"+ + "\u060c\u0003\u00d4b\u0000\u060c\u060d\u0001\u0000\u0000\u0000\u060d\u060e"+ + "\u0006\u00bc\u0012\u0000\u060e\u0189\u0001\u0000\u0000\u0000\u060f\u0610"+ + "\u0003\u00d8d\u0000\u0610\u0611\u0001\u0000\u0000\u0000\u0611\u0612\u0006"+ + "\u00bd\u0011\u0000\u0612\u018b\u0001\u0000\u0000\u0000\u0613\u0614\u0003"+ + "\u01bc\u00d6\u0000\u0614\u0615\u0001\u0000\u0000\u0000\u0615\u0616\u0006"+ + "\u00be\u001b\u0000\u0616\u018d\u0001\u0000\u0000\u0000\u0617\u0618\u0003"+ + "\u0010\u0000\u0000\u0618\u0619\u0001\u0000\u0000\u0000\u0619\u061a\u0006"+ + "\u00bf\u0000\u0000\u061a\u018f\u0001\u0000\u0000\u0000\u061b\u061c\u0003"+ + "\u0012\u0001\u0000\u061c\u061d\u0001\u0000\u0000\u0000\u061d\u061e\u0006"+ + "\u00c0\u0000\u0000\u061e\u0191\u0001\u0000\u0000\u0000\u061f\u0620\u0003"+ + "\u0014\u0002\u0000\u0620\u0621\u0001\u0000\u0000\u0000\u0621\u0622\u0006"+ + "\u00c1\u0000\u0000\u0622\u0193\u0001\u0000\u0000\u0000\u0623\u0624\u0003"+ + "\u00aaM\u0000\u0624\u0625\u0001\u0000\u0000\u0000\u0625\u0626\u0006\u00c2"+ + "\r\u0000\u0626\u0627\u0006\u00c2\u000e\u0000\u0627\u0195\u0001\u0000\u0000"+ + "\u0000\u0628\u0629\u0003\u00d8d\u0000\u0629\u062a\u0001\u0000\u0000\u0000"+ + "\u062a\u062b\u0006\u00c3\u0011\u0000\u062b\u0197\u0001\u0000\u0000\u0000"+ + "\u062c\u062d\u0003\u00f0p\u0000\u062d\u062e\u0001\u0000\u0000\u0000\u062e"+ + "\u062f\u0006\u00c4\u001c\u0000\u062f\u0199\u0001\u0000\u0000\u0000\u0630"+ + "\u0631\u0003\u0118\u0084\u0000\u0631\u0632\u0001\u0000\u0000\u0000\u0632"+ + "\u0633\u0006\u00c5\u001d\u0000\u0633\u019b\u0001\u0000\u0000\u0000\u0634"+ + "\u0635\u0004\u00c6\u000f\u0000\u0635\u0636\u0003\u0114\u0082\u0000\u0636"+ + "\u0637\u0001\u0000\u0000\u0000\u0637\u0638\u0006\u00c6\u001e\u0000\u0638"+ + "\u019d\u0001\u0000\u0000\u0000\u0639\u063a\u0004\u00c7\u0010\u0000\u063a"+ + "\u063b\u0003\u011a\u0085\u0000\u063b\u063c\u0001\u0000\u0000\u0000\u063c"+ + "\u063d\u0006\u00c7\u001f\u0000\u063d\u019f\u0001\u0000\u0000\u0000\u063e"+ + "\u063f\u0003\u0128\u008c\u0000\u063f\u0640\u0001\u0000\u0000\u0000\u0640"+ + "\u0641\u0006\u00c8\u0013\u0000\u0641\u01a1\u0001\u0000\u0000\u0000\u0642"+ + "\u0643\u0003\u0124\u008a\u0000\u0643\u0644\u0001\u0000\u0000\u0000\u0644"+ + "\u0645\u0006\u00c9\u0014\u0000\u0645\u01a3\u0001\u0000\u0000\u0000\u0646"+ + "\u0647\u0003\u0010\u0000\u0000\u0647\u0648\u0001\u0000\u0000\u0000\u0648"+ + "\u0649\u0006\u00ca\u0000\u0000\u0649\u01a5\u0001\u0000\u0000\u0000\u064a"+ + "\u064b\u0003\u0012\u0001\u0000\u064b\u064c\u0001\u0000\u0000\u0000\u064c"+ + "\u064d\u0006\u00cb\u0000\u0000\u064d\u01a7\u0001\u0000\u0000\u0000\u064e"+ + "\u064f\u0003\u0014\u0002\u0000\u064f\u0650\u0001\u0000\u0000\u0000\u0650"+ + "\u0651\u0006\u00cc\u0000\u0000\u0651\u01a9\u0001\u0000\u0000\u0000\u0652"+ + "\u0653\u0003\u00aaM\u0000\u0653\u0654\u0001\u0000\u0000\u0000\u0654\u0655"+ + "\u0006\u00cd\r\u0000\u0655\u0656\u0006\u00cd\u000e\u0000\u0656\u01ab\u0001"+ + "\u0000\u0000\u0000\u0657\u0658\u0003\u00d8d\u0000\u0658\u0659\u0001\u0000"+ + "\u0000\u0000\u0659\u065a\u0006\u00ce\u0011\u0000\u065a\u01ad\u0001\u0000"+ + "\u0000\u0000\u065b\u065c\u0003\u00d4b\u0000\u065c\u065d\u0001\u0000\u0000"+ + "\u0000\u065d\u065e\u0006\u00cf\u0012\u0000\u065e\u01af\u0001\u0000\u0000"+ + "\u0000\u065f\u0660\u0003\u00f0p\u0000\u0660\u0661\u0001\u0000\u0000\u0000"+ + "\u0661\u0662\u0006\u00d0\u001c\u0000\u0662\u01b1\u0001\u0000\u0000\u0000"+ + "\u0663\u0664\u0003\u0118\u0084\u0000\u0664\u0665\u0001\u0000\u0000\u0000"+ + "\u0665\u0666\u0006\u00d1\u001d\u0000\u0666\u01b3\u0001\u0000\u0000\u0000"+ + "\u0667\u0668\u0004\u00d2\u0011\u0000\u0668\u0669\u0003\u0114\u0082\u0000"+ + "\u0669\u066a\u0001\u0000\u0000\u0000\u066a\u066b\u0006\u00d2\u001e\u0000"+ + "\u066b\u01b5\u0001\u0000\u0000\u0000\u066c\u066d\u0004\u00d3\u0012\u0000"+ + "\u066d\u066e\u0003\u011a\u0085\u0000\u066e\u066f\u0001\u0000\u0000\u0000"+ + "\u066f\u0670\u0006\u00d3\u001f\u0000\u0670\u01b7\u0001\u0000\u0000\u0000"+ + "\u0671\u0676\u0003\u00aeO\u0000\u0672\u0676\u0003\u00acN\u0000\u0673\u0676"+ + "\u0003\u00bcV\u0000\u0674\u0676\u0003\u010a}\u0000\u0675\u0671\u0001\u0000"+ + "\u0000\u0000\u0675\u0672\u0001\u0000\u0000\u0000\u0675\u0673\u0001\u0000"+ + "\u0000\u0000\u0675\u0674\u0001\u0000\u0000\u0000\u0676\u01b9\u0001\u0000"+ + "\u0000\u0000\u0677\u067a\u0003\u00aeO\u0000\u0678\u067a\u0003\u010a}\u0000"+ + "\u0679\u0677\u0001\u0000\u0000\u0000\u0679\u0678\u0001\u0000\u0000\u0000"+ + "\u067a\u067e\u0001\u0000\u0000\u0000\u067b\u067d\u0003\u01b8\u00d4\u0000"+ + "\u067c\u067b\u0001\u0000\u0000\u0000\u067d\u0680\u0001\u0000\u0000\u0000"+ + "\u067e\u067c\u0001\u0000\u0000\u0000\u067e\u067f\u0001\u0000\u0000\u0000"+ + "\u067f\u068b\u0001\u0000\u0000\u0000\u0680\u067e\u0001\u0000\u0000\u0000"+ + "\u0681\u0684\u0003\u00bcV\u0000\u0682\u0684\u0003\u00b6S\u0000\u0683\u0681"+ + "\u0001\u0000\u0000\u0000\u0683\u0682\u0001\u0000\u0000\u0000\u0684\u0686"+ + "\u0001\u0000\u0000\u0000\u0685\u0687\u0003\u01b8\u00d4\u0000\u0686\u0685"+ + "\u0001\u0000\u0000\u0000\u0687\u0688\u0001\u0000\u0000\u0000\u0688\u0686"+ + "\u0001\u0000\u0000\u0000\u0688\u0689\u0001\u0000\u0000\u0000\u0689\u068b"+ + "\u0001\u0000\u0000\u0000\u068a\u0679\u0001\u0000\u0000\u0000\u068a\u0683"+ + "\u0001\u0000\u0000\u0000\u068b\u01bb\u0001\u0000\u0000\u0000\u068c\u068f"+ + "\u0003\u01ba\u00d5\u0000\u068d\u068f\u0003\u0126\u008b\u0000\u068e\u068c"+ + "\u0001\u0000\u0000\u0000\u068e\u068d\u0001\u0000\u0000\u0000\u068f\u0690"+ + "\u0001\u0000\u0000\u0000\u0690\u068e\u0001\u0000\u0000\u0000\u0690\u0691"+ + "\u0001\u0000\u0000\u0000\u0691\u01bd\u0001\u0000\u0000\u0000\u0692\u0693"+ + "\u0003\u0010\u0000\u0000\u0693\u0694\u0001\u0000\u0000\u0000\u0694\u0695"+ + "\u0006\u00d7\u0000\u0000\u0695\u01bf\u0001\u0000\u0000\u0000\u0696\u0697"+ + "\u0003\u0012\u0001\u0000\u0697\u0698\u0001\u0000\u0000\u0000\u0698\u0699"+ + "\u0006\u00d8\u0000\u0000\u0699\u01c1\u0001\u0000\u0000\u0000\u069a\u069b"+ + "\u0003\u0014\u0002\u0000\u069b\u069c\u0001\u0000\u0000\u0000\u069c\u069d"+ + "\u0006\u00d9\u0000\u0000\u069d\u01c3\u0001\u0000\u0000\u0000\u069e\u069f"+ + "\u0003\u00aaM\u0000\u069f\u06a0\u0001\u0000\u0000\u0000\u06a0\u06a1\u0006"+ + "\u00da\r\u0000\u06a1\u06a2\u0006\u00da\u000e\u0000\u06a2\u01c5\u0001\u0000"+ + "\u0000\u0000\u06a3\u06a4\u0003\u00cc^\u0000\u06a4\u06a5\u0001\u0000\u0000"+ + "\u0000\u06a5\u06a6\u0006\u00db\u001a\u0000\u06a6\u01c7\u0001\u0000\u0000"+ + "\u0000\u06a7\u06a8\u0003\u00d4b\u0000\u06a8\u06a9\u0001\u0000\u0000\u0000"+ + "\u06a9\u06aa\u0006\u00dc\u0012\u0000\u06aa\u01c9\u0001\u0000\u0000\u0000"+ + "\u06ab\u06ac\u0003\u00d8d\u0000\u06ac\u06ad\u0001\u0000\u0000\u0000\u06ad"+ + "\u06ae\u0006\u00dd\u0011\u0000\u06ae\u01cb\u0001\u0000\u0000\u0000\u06af"+ + "\u06b0\u0003\u00f0p\u0000\u06b0\u06b1\u0001\u0000\u0000\u0000\u06b1\u06b2"+ + "\u0006\u00de\u001c\u0000\u06b2\u01cd\u0001\u0000\u0000\u0000\u06b3\u06b4"+ + "\u0003\u0118\u0084\u0000\u06b4\u06b5\u0001\u0000\u0000\u0000\u06b5\u06b6"+ + "\u0006\u00df\u001d\u0000\u06b6\u01cf\u0001\u0000\u0000\u0000\u06b7\u06b8"+ + "\u0004\u00e0\u0013\u0000\u06b8\u06b9\u0003\u0114\u0082\u0000\u06b9\u06ba"+ + "\u0001\u0000\u0000\u0000\u06ba\u06bb\u0006\u00e0\u001e\u0000\u06bb\u01d1"+ + "\u0001\u0000\u0000\u0000\u06bc\u06bd\u0004\u00e1\u0014\u0000\u06bd\u06be"+ + "\u0003\u011a\u0085\u0000\u06be\u06bf\u0001\u0000\u0000\u0000\u06bf\u06c0"+ + "\u0006\u00e1\u001f\u0000\u06c0\u01d3\u0001\u0000\u0000\u0000\u06c1\u06c2"+ + "\u0003\u00c8\\\u0000\u06c2\u06c3\u0001\u0000\u0000\u0000\u06c3\u06c4\u0006"+ + "\u00e2\u0010\u0000\u06c4\u01d5\u0001\u0000\u0000\u0000\u06c5\u06c6\u0003"+ + "\u01bc\u00d6\u0000\u06c6\u06c7\u0001\u0000\u0000\u0000\u06c7\u06c8\u0006"+ + "\u00e3\u001b\u0000\u06c8\u01d7\u0001\u0000\u0000\u0000\u06c9\u06ca\u0003"+ + "\u0010\u0000\u0000\u06ca\u06cb\u0001\u0000\u0000\u0000\u06cb\u06cc\u0006"+ + "\u00e4\u0000\u0000\u06cc\u01d9\u0001\u0000\u0000\u0000\u06cd\u06ce\u0003"+ + "\u0012\u0001\u0000\u06ce\u06cf\u0001\u0000\u0000\u0000\u06cf\u06d0\u0006"+ + "\u00e5\u0000\u0000\u06d0\u01db\u0001\u0000\u0000\u0000\u06d1\u06d2\u0003"+ + "\u0014\u0002\u0000\u06d2\u06d3\u0001\u0000\u0000\u0000\u06d3\u06d4\u0006"+ + "\u00e6\u0000\u0000\u06d4\u01dd\u0001\u0000\u0000\u0000\u06d5\u06d6\u0003"+ + "\u00aaM\u0000\u06d6\u06d7\u0001\u0000\u0000\u0000\u06d7\u06d8\u0006\u00e7"+ + "\r\u0000\u06d8\u06d9\u0006\u00e7\u000e\u0000\u06d9\u01df\u0001\u0000\u0000"+ + "\u0000\u06da\u06db\u0007\n\u0000\u0000\u06db\u06dc\u0007\u0005\u0000\u0000"+ + "\u06dc\u06dd\u0007\u0015\u0000\u0000\u06dd\u06de\u0007\t\u0000\u0000\u06de"+ + "\u01e1\u0001\u0000\u0000\u0000\u06df\u06e0\u0003\u0010\u0000\u0000\u06e0"+ + "\u06e1\u0001\u0000\u0000\u0000\u06e1\u06e2\u0006\u00e9\u0000\u0000\u06e2"+ + "\u01e3\u0001\u0000\u0000\u0000\u06e3\u06e4\u0003\u0012\u0001\u0000\u06e4"+ + "\u06e5\u0001\u0000\u0000\u0000\u06e5\u06e6\u0006\u00ea\u0000\u0000\u06e6"+ + "\u01e5\u0001\u0000\u0000\u0000\u06e7\u06e8\u0003\u0014\u0002\u0000\u06e8"+ + "\u06e9\u0001\u0000\u0000\u0000\u06e9\u06ea\u0006\u00eb\u0000\u0000\u06ea"+ + "\u01e7\u0001\u0000\u0000\u0000F\u0000\u0001\u0002\u0003\u0004\u0005\u0006"+ + "\u0007\b\t\n\u000b\f\r\u000e\u000f\u01ee\u01f2\u01f5\u01fe\u0200\u020b"+ + "\u0310\u0356\u035a\u035f\u03bb\u03bd\u03f0\u03f5\u03fe\u0405\u040a\u040c"+ + "\u0417\u041f\u0422\u0424\u0429\u042e\u0434\u043b\u0440\u0446\u0449\u0451"+ + "\u0455\u04e4\u04e9\u04f0\u04f2\u04f7\u04fc\u0503\u0505\u051f\u0524\u0529"+ + "\u052b\u0531\u056d\u0572\u0675\u0679\u067e\u0683\u0688\u068a\u068e\u0690"+ + ")\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"+ + "\n\u0000\u0005\f\u0000\u0005\r\u0000\u0005\u000e\u0000\u0005\u000f\u0000"+ + "\u00072\u0000\u0004\u0000\u0000\u0007I\u0000\u00077\u0000\u0007?\u0000"+ + "\u0007=\u0000\u0007e\u0000\u0007d\u0000\u0007`\u0000\u0005\u0004\u0000"+ + "\u0005\u0003\u0000\u0007N\u0000\u0007$\u0000\u00079\u0000\u0007\u007f"+ + "\u0000\u0007K\u0000\u0007^\u0000\u0007]\u0000\u0007_\u0000\u0007a\u0000"+ + "\u0007<\u0000\u0005\u0000\u0000\u0007\u000e\u0000\u0007;\u0000\u0007j"+ + "\u0000\u00073\u0000\u0007b\u0000\u0005\u000b\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 e6464bbe94ebd..656256e7a65e0 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 @@ -53,13 +53,11 @@ null null null null -'by' -'on' -'with' -'as' 'and' +'as' 'asc' '=' +'by' '::' ':' ',' @@ -74,10 +72,12 @@ null 'not' 'null' 'nulls' +'on' 'or' '?' 'rlike' 'true' +'with' '==' '=~' '!=' @@ -193,13 +193,11 @@ PIPE QUOTED_STRING INTEGER_LITERAL DECIMAL_LITERAL -BY -ON -WITH -AS AND +AS ASC ASSIGN +BY CAST_OP COLON COMMA @@ -214,10 +212,12 @@ LIKE NOT NULL NULLS +ON OR PARAM RLIKE TRUE +WITH EQ CIEQ NEQ @@ -361,4 +361,4 @@ joinPredicate atn: -[4, 1, 137, 741, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 168, 8, 1, 10, 1, 12, 1, 171, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 179, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 208, 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, 221, 8, 7, 10, 7, 12, 7, 224, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 229, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 242, 8, 11, 10, 11, 12, 11, 245, 9, 11, 1, 11, 3, 11, 248, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 253, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 260, 8, 12, 3, 12, 262, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 274, 8, 16, 10, 16, 12, 16, 277, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 284, 8, 18, 1, 18, 1, 18, 3, 18, 288, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 293, 8, 19, 10, 19, 12, 19, 296, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 301, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 306, 8, 21, 10, 21, 12, 21, 309, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 314, 8, 22, 10, 22, 12, 22, 317, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 322, 8, 23, 10, 23, 12, 23, 325, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 333, 8, 25, 1, 26, 1, 26, 3, 26, 337, 8, 26, 1, 27, 1, 27, 3, 27, 341, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 347, 8, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 360, 8, 31, 10, 31, 12, 31, 363, 9, 31, 1, 32, 1, 32, 3, 32, 367, 8, 32, 1, 32, 1, 32, 3, 32, 371, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 383, 8, 35, 10, 35, 12, 35, 386, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 396, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 5, 40, 408, 8, 40, 10, 40, 12, 40, 411, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 431, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 437, 8, 45, 10, 45, 12, 45, 440, 9, 45, 3, 45, 442, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 447, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 460, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 466, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 473, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 4, 52, 482, 8, 52, 11, 52, 12, 52, 483, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 496, 8, 54, 10, 54, 12, 54, 499, 9, 54, 1, 55, 1, 55, 1, 55, 3, 55, 504, 8, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 522, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 529, 8, 58, 10, 58, 12, 58, 532, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 539, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 544, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 552, 8, 58, 10, 58, 12, 58, 555, 9, 58, 1, 59, 1, 59, 3, 59, 559, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 566, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 586, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 592, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 600, 8, 62, 10, 62, 12, 62, 603, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 613, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 618, 8, 63, 10, 63, 12, 63, 621, 9, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 629, 8, 64, 10, 64, 12, 64, 632, 9, 64, 1, 64, 1, 64, 3, 64, 636, 8, 64, 3, 64, 638, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 648, 8, 66, 10, 66, 12, 66, 651, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 672, 8, 68, 10, 68, 12, 68, 675, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 683, 8, 68, 10, 68, 12, 68, 686, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 694, 8, 68, 10, 68, 12, 68, 697, 9, 68, 1, 68, 1, 68, 3, 68, 701, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 707, 8, 70, 1, 71, 3, 71, 710, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 715, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 734, 8, 77, 10, 77, 12, 77, 737, 9, 77, 1, 78, 1, 78, 1, 78, 0, 5, 2, 108, 116, 124, 126, 79, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 0, 9, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 59, 59, 64, 64, 2, 0, 67, 67, 70, 70, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 66, 66, 78, 78, 2, 0, 79, 79, 81, 85, 2, 0, 20, 20, 22, 23, 767, 0, 158, 1, 0, 0, 0, 2, 161, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 8, 209, 1, 0, 0, 0, 10, 212, 1, 0, 0, 0, 12, 214, 1, 0, 0, 0, 14, 217, 1, 0, 0, 0, 16, 228, 1, 0, 0, 0, 18, 232, 1, 0, 0, 0, 20, 235, 1, 0, 0, 0, 22, 238, 1, 0, 0, 0, 24, 261, 1, 0, 0, 0, 26, 263, 1, 0, 0, 0, 28, 265, 1, 0, 0, 0, 30, 267, 1, 0, 0, 0, 32, 269, 1, 0, 0, 0, 34, 278, 1, 0, 0, 0, 36, 281, 1, 0, 0, 0, 38, 289, 1, 0, 0, 0, 40, 297, 1, 0, 0, 0, 42, 302, 1, 0, 0, 0, 44, 310, 1, 0, 0, 0, 46, 318, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 332, 1, 0, 0, 0, 52, 336, 1, 0, 0, 0, 54, 340, 1, 0, 0, 0, 56, 346, 1, 0, 0, 0, 58, 350, 1, 0, 0, 0, 60, 352, 1, 0, 0, 0, 62, 355, 1, 0, 0, 0, 64, 364, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 378, 1, 0, 0, 0, 72, 387, 1, 0, 0, 0, 74, 391, 1, 0, 0, 0, 76, 397, 1, 0, 0, 0, 78, 401, 1, 0, 0, 0, 80, 404, 1, 0, 0, 0, 82, 412, 1, 0, 0, 0, 84, 416, 1, 0, 0, 0, 86, 419, 1, 0, 0, 0, 88, 423, 1, 0, 0, 0, 90, 426, 1, 0, 0, 0, 92, 446, 1, 0, 0, 0, 94, 450, 1, 0, 0, 0, 96, 455, 1, 0, 0, 0, 98, 461, 1, 0, 0, 0, 100, 474, 1, 0, 0, 0, 102, 477, 1, 0, 0, 0, 104, 481, 1, 0, 0, 0, 106, 485, 1, 0, 0, 0, 108, 489, 1, 0, 0, 0, 110, 503, 1, 0, 0, 0, 112, 505, 1, 0, 0, 0, 114, 507, 1, 0, 0, 0, 116, 543, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 572, 1, 0, 0, 0, 122, 585, 1, 0, 0, 0, 124, 591, 1, 0, 0, 0, 126, 612, 1, 0, 0, 0, 128, 622, 1, 0, 0, 0, 130, 641, 1, 0, 0, 0, 132, 643, 1, 0, 0, 0, 134, 654, 1, 0, 0, 0, 136, 700, 1, 0, 0, 0, 138, 702, 1, 0, 0, 0, 140, 706, 1, 0, 0, 0, 142, 709, 1, 0, 0, 0, 144, 714, 1, 0, 0, 0, 146, 718, 1, 0, 0, 0, 148, 720, 1, 0, 0, 0, 150, 722, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 729, 1, 0, 0, 0, 156, 738, 1, 0, 0, 0, 158, 159, 3, 2, 1, 0, 159, 160, 5, 0, 0, 1, 160, 1, 1, 0, 0, 0, 161, 162, 6, 1, -1, 0, 162, 163, 3, 4, 2, 0, 163, 169, 1, 0, 0, 0, 164, 165, 10, 1, 0, 0, 165, 166, 5, 50, 0, 0, 166, 168, 3, 6, 3, 0, 167, 164, 1, 0, 0, 0, 168, 171, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 169, 170, 1, 0, 0, 0, 170, 3, 1, 0, 0, 0, 171, 169, 1, 0, 0, 0, 172, 179, 3, 84, 42, 0, 173, 179, 3, 18, 9, 0, 174, 179, 3, 12, 6, 0, 175, 179, 3, 88, 44, 0, 176, 177, 4, 2, 1, 0, 177, 179, 3, 20, 10, 0, 178, 172, 1, 0, 0, 0, 178, 173, 1, 0, 0, 0, 178, 174, 1, 0, 0, 0, 178, 175, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 179, 5, 1, 0, 0, 0, 180, 208, 3, 34, 17, 0, 181, 208, 3, 8, 4, 0, 182, 208, 3, 66, 33, 0, 183, 208, 3, 60, 30, 0, 184, 208, 3, 36, 18, 0, 185, 208, 3, 62, 31, 0, 186, 208, 3, 68, 34, 0, 187, 208, 3, 70, 35, 0, 188, 208, 3, 74, 37, 0, 189, 208, 3, 76, 38, 0, 190, 208, 3, 90, 45, 0, 191, 208, 3, 78, 39, 0, 192, 208, 3, 150, 75, 0, 193, 194, 4, 3, 2, 0, 194, 208, 3, 96, 48, 0, 195, 196, 4, 3, 3, 0, 196, 208, 3, 94, 47, 0, 197, 198, 4, 3, 4, 0, 198, 208, 3, 98, 49, 0, 199, 200, 4, 3, 5, 0, 200, 208, 3, 100, 50, 0, 201, 202, 4, 3, 6, 0, 202, 208, 3, 102, 51, 0, 203, 204, 4, 3, 7, 0, 204, 208, 3, 114, 57, 0, 205, 206, 4, 3, 8, 0, 206, 208, 3, 112, 56, 0, 207, 180, 1, 0, 0, 0, 207, 181, 1, 0, 0, 0, 207, 182, 1, 0, 0, 0, 207, 183, 1, 0, 0, 0, 207, 184, 1, 0, 0, 0, 207, 185, 1, 0, 0, 0, 207, 186, 1, 0, 0, 0, 207, 187, 1, 0, 0, 0, 207, 188, 1, 0, 0, 0, 207, 189, 1, 0, 0, 0, 207, 190, 1, 0, 0, 0, 207, 191, 1, 0, 0, 0, 207, 192, 1, 0, 0, 0, 207, 193, 1, 0, 0, 0, 207, 195, 1, 0, 0, 0, 207, 197, 1, 0, 0, 0, 207, 199, 1, 0, 0, 0, 207, 201, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 7, 1, 0, 0, 0, 209, 210, 5, 14, 0, 0, 210, 211, 3, 116, 58, 0, 211, 9, 1, 0, 0, 0, 212, 213, 3, 48, 24, 0, 213, 11, 1, 0, 0, 0, 214, 215, 5, 11, 0, 0, 215, 216, 3, 14, 7, 0, 216, 13, 1, 0, 0, 0, 217, 222, 3, 16, 8, 0, 218, 219, 5, 63, 0, 0, 219, 221, 3, 16, 8, 0, 220, 218, 1, 0, 0, 0, 221, 224, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 15, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 225, 226, 3, 42, 21, 0, 226, 227, 5, 60, 0, 0, 227, 229, 1, 0, 0, 0, 228, 225, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 3, 116, 58, 0, 231, 17, 1, 0, 0, 0, 232, 233, 5, 17, 0, 0, 233, 234, 3, 22, 11, 0, 234, 19, 1, 0, 0, 0, 235, 236, 5, 18, 0, 0, 236, 237, 3, 22, 11, 0, 237, 21, 1, 0, 0, 0, 238, 243, 3, 24, 12, 0, 239, 240, 5, 63, 0, 0, 240, 242, 3, 24, 12, 0, 241, 239, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 32, 16, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 23, 1, 0, 0, 0, 249, 250, 3, 26, 13, 0, 250, 251, 5, 62, 0, 0, 251, 253, 1, 0, 0, 0, 252, 249, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 262, 3, 30, 15, 0, 255, 256, 4, 12, 9, 0, 256, 259, 3, 30, 15, 0, 257, 258, 5, 61, 0, 0, 258, 260, 3, 28, 14, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 252, 1, 0, 0, 0, 261, 255, 1, 0, 0, 0, 262, 25, 1, 0, 0, 0, 263, 264, 7, 0, 0, 0, 264, 27, 1, 0, 0, 0, 265, 266, 7, 0, 0, 0, 266, 29, 1, 0, 0, 0, 267, 268, 7, 0, 0, 0, 268, 31, 1, 0, 0, 0, 269, 270, 5, 105, 0, 0, 270, 275, 5, 106, 0, 0, 271, 272, 5, 63, 0, 0, 272, 274, 5, 106, 0, 0, 273, 271, 1, 0, 0, 0, 274, 277, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 33, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 278, 279, 5, 8, 0, 0, 279, 280, 3, 14, 7, 0, 280, 35, 1, 0, 0, 0, 281, 283, 5, 13, 0, 0, 282, 284, 3, 38, 19, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 286, 5, 54, 0, 0, 286, 288, 3, 14, 7, 0, 287, 285, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 37, 1, 0, 0, 0, 289, 294, 3, 40, 20, 0, 290, 291, 5, 63, 0, 0, 291, 293, 3, 40, 20, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 39, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 3, 16, 8, 0, 298, 299, 5, 14, 0, 0, 299, 301, 3, 116, 58, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 41, 1, 0, 0, 0, 302, 307, 3, 56, 28, 0, 303, 304, 5, 65, 0, 0, 304, 306, 3, 56, 28, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 43, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 50, 25, 0, 311, 312, 5, 65, 0, 0, 312, 314, 3, 50, 25, 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, 45, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 323, 3, 44, 22, 0, 319, 320, 5, 63, 0, 0, 320, 322, 3, 44, 22, 0, 321, 319, 1, 0, 0, 0, 322, 325, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 326, 327, 7, 1, 0, 0, 327, 49, 1, 0, 0, 0, 328, 333, 5, 127, 0, 0, 329, 333, 3, 52, 26, 0, 330, 331, 4, 25, 10, 0, 331, 333, 3, 54, 27, 0, 332, 328, 1, 0, 0, 0, 332, 329, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 51, 1, 0, 0, 0, 334, 337, 5, 76, 0, 0, 335, 337, 5, 94, 0, 0, 336, 334, 1, 0, 0, 0, 336, 335, 1, 0, 0, 0, 337, 53, 1, 0, 0, 0, 338, 341, 5, 93, 0, 0, 339, 341, 5, 95, 0, 0, 340, 338, 1, 0, 0, 0, 340, 339, 1, 0, 0, 0, 341, 55, 1, 0, 0, 0, 342, 347, 3, 48, 24, 0, 343, 347, 3, 52, 26, 0, 344, 345, 4, 28, 11, 0, 345, 347, 3, 54, 27, 0, 346, 342, 1, 0, 0, 0, 346, 343, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 57, 1, 0, 0, 0, 348, 351, 3, 146, 73, 0, 349, 351, 3, 52, 26, 0, 350, 348, 1, 0, 0, 0, 350, 349, 1, 0, 0, 0, 351, 59, 1, 0, 0, 0, 352, 353, 5, 10, 0, 0, 353, 354, 5, 52, 0, 0, 354, 61, 1, 0, 0, 0, 355, 356, 5, 12, 0, 0, 356, 361, 3, 64, 32, 0, 357, 358, 5, 63, 0, 0, 358, 360, 3, 64, 32, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 63, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 366, 3, 116, 58, 0, 365, 367, 7, 2, 0, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 369, 5, 74, 0, 0, 369, 371, 7, 3, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 27, 0, 0, 373, 374, 3, 46, 23, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 26, 0, 0, 376, 377, 3, 46, 23, 0, 377, 69, 1, 0, 0, 0, 378, 379, 5, 30, 0, 0, 379, 384, 3, 72, 36, 0, 380, 381, 5, 63, 0, 0, 381, 383, 3, 72, 36, 0, 382, 380, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 71, 1, 0, 0, 0, 386, 384, 1, 0, 0, 0, 387, 388, 3, 44, 22, 0, 388, 389, 5, 57, 0, 0, 389, 390, 3, 44, 22, 0, 390, 73, 1, 0, 0, 0, 391, 392, 5, 7, 0, 0, 392, 393, 3, 126, 63, 0, 393, 395, 3, 146, 73, 0, 394, 396, 3, 80, 40, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 75, 1, 0, 0, 0, 397, 398, 5, 9, 0, 0, 398, 399, 3, 126, 63, 0, 399, 400, 3, 146, 73, 0, 400, 77, 1, 0, 0, 0, 401, 402, 5, 25, 0, 0, 402, 403, 3, 42, 21, 0, 403, 79, 1, 0, 0, 0, 404, 409, 3, 82, 41, 0, 405, 406, 5, 63, 0, 0, 406, 408, 3, 82, 41, 0, 407, 405, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 81, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 3, 48, 24, 0, 413, 414, 5, 60, 0, 0, 414, 415, 3, 136, 68, 0, 415, 83, 1, 0, 0, 0, 416, 417, 5, 6, 0, 0, 417, 418, 3, 86, 43, 0, 418, 85, 1, 0, 0, 0, 419, 420, 5, 96, 0, 0, 420, 421, 3, 2, 1, 0, 421, 422, 5, 97, 0, 0, 422, 87, 1, 0, 0, 0, 423, 424, 5, 31, 0, 0, 424, 425, 5, 134, 0, 0, 425, 89, 1, 0, 0, 0, 426, 427, 5, 5, 0, 0, 427, 430, 5, 36, 0, 0, 428, 429, 5, 55, 0, 0, 429, 431, 3, 44, 22, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 441, 1, 0, 0, 0, 432, 433, 5, 56, 0, 0, 433, 438, 3, 92, 46, 0, 434, 435, 5, 63, 0, 0, 435, 437, 3, 92, 46, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 432, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 91, 1, 0, 0, 0, 443, 444, 3, 44, 22, 0, 444, 445, 5, 60, 0, 0, 445, 447, 1, 0, 0, 0, 446, 443, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 3, 44, 22, 0, 449, 93, 1, 0, 0, 0, 450, 451, 5, 24, 0, 0, 451, 452, 3, 24, 12, 0, 452, 453, 5, 55, 0, 0, 453, 454, 3, 46, 23, 0, 454, 95, 1, 0, 0, 0, 455, 456, 5, 15, 0, 0, 456, 459, 3, 38, 19, 0, 457, 458, 5, 54, 0, 0, 458, 460, 3, 14, 7, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 97, 1, 0, 0, 0, 461, 462, 5, 4, 0, 0, 462, 465, 3, 42, 21, 0, 463, 464, 5, 55, 0, 0, 464, 466, 3, 42, 21, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 472, 1, 0, 0, 0, 467, 468, 5, 57, 0, 0, 468, 469, 3, 42, 21, 0, 469, 470, 5, 63, 0, 0, 470, 471, 3, 42, 21, 0, 471, 473, 1, 0, 0, 0, 472, 467, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 99, 1, 0, 0, 0, 474, 475, 5, 28, 0, 0, 475, 476, 3, 46, 23, 0, 476, 101, 1, 0, 0, 0, 477, 478, 5, 19, 0, 0, 478, 479, 3, 104, 52, 0, 479, 103, 1, 0, 0, 0, 480, 482, 3, 106, 53, 0, 481, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 105, 1, 0, 0, 0, 485, 486, 5, 98, 0, 0, 486, 487, 3, 108, 54, 0, 487, 488, 5, 99, 0, 0, 488, 107, 1, 0, 0, 0, 489, 490, 6, 54, -1, 0, 490, 491, 3, 110, 55, 0, 491, 497, 1, 0, 0, 0, 492, 493, 10, 1, 0, 0, 493, 494, 5, 50, 0, 0, 494, 496, 3, 110, 55, 0, 495, 492, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 109, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 3, 8, 4, 0, 501, 504, 3, 62, 31, 0, 502, 504, 3, 60, 30, 0, 503, 500, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 111, 1, 0, 0, 0, 505, 506, 5, 29, 0, 0, 506, 113, 1, 0, 0, 0, 507, 508, 5, 16, 0, 0, 508, 509, 3, 58, 29, 0, 509, 510, 5, 55, 0, 0, 510, 511, 3, 14, 7, 0, 511, 512, 5, 56, 0, 0, 512, 513, 3, 58, 29, 0, 513, 115, 1, 0, 0, 0, 514, 515, 6, 58, -1, 0, 515, 516, 5, 72, 0, 0, 516, 544, 3, 116, 58, 8, 517, 544, 3, 122, 61, 0, 518, 544, 3, 118, 59, 0, 519, 521, 3, 122, 61, 0, 520, 522, 5, 72, 0, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 68, 0, 0, 524, 525, 5, 98, 0, 0, 525, 530, 3, 122, 61, 0, 526, 527, 5, 63, 0, 0, 527, 529, 3, 122, 61, 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, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 99, 0, 0, 534, 544, 1, 0, 0, 0, 535, 536, 3, 122, 61, 0, 536, 538, 5, 69, 0, 0, 537, 539, 5, 72, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 5, 73, 0, 0, 541, 544, 1, 0, 0, 0, 542, 544, 3, 120, 60, 0, 543, 514, 1, 0, 0, 0, 543, 517, 1, 0, 0, 0, 543, 518, 1, 0, 0, 0, 543, 519, 1, 0, 0, 0, 543, 535, 1, 0, 0, 0, 543, 542, 1, 0, 0, 0, 544, 553, 1, 0, 0, 0, 545, 546, 10, 5, 0, 0, 546, 547, 5, 58, 0, 0, 547, 552, 3, 116, 58, 6, 548, 549, 10, 4, 0, 0, 549, 550, 5, 75, 0, 0, 550, 552, 3, 116, 58, 5, 551, 545, 1, 0, 0, 0, 551, 548, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 117, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 558, 3, 122, 61, 0, 557, 559, 5, 72, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 71, 0, 0, 561, 562, 3, 146, 73, 0, 562, 571, 1, 0, 0, 0, 563, 565, 3, 122, 61, 0, 564, 566, 5, 72, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 77, 0, 0, 568, 569, 3, 146, 73, 0, 569, 571, 1, 0, 0, 0, 570, 556, 1, 0, 0, 0, 570, 563, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 575, 3, 42, 21, 0, 573, 574, 5, 61, 0, 0, 574, 576, 3, 10, 5, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 62, 0, 0, 578, 579, 3, 136, 68, 0, 579, 121, 1, 0, 0, 0, 580, 586, 3, 124, 62, 0, 581, 582, 3, 124, 62, 0, 582, 583, 3, 148, 74, 0, 583, 584, 3, 124, 62, 0, 584, 586, 1, 0, 0, 0, 585, 580, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 586, 123, 1, 0, 0, 0, 587, 588, 6, 62, -1, 0, 588, 592, 3, 126, 63, 0, 589, 590, 7, 4, 0, 0, 590, 592, 3, 124, 62, 3, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 594, 10, 2, 0, 0, 594, 595, 7, 5, 0, 0, 595, 600, 3, 124, 62, 3, 596, 597, 10, 1, 0, 0, 597, 598, 7, 4, 0, 0, 598, 600, 3, 124, 62, 2, 599, 593, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 125, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 6, 63, -1, 0, 605, 613, 3, 136, 68, 0, 606, 613, 3, 42, 21, 0, 607, 613, 3, 128, 64, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 116, 58, 0, 610, 611, 5, 99, 0, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 606, 1, 0, 0, 0, 612, 607, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 619, 1, 0, 0, 0, 614, 615, 10, 1, 0, 0, 615, 616, 5, 61, 0, 0, 616, 618, 3, 10, 5, 0, 617, 614, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 127, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 3, 130, 65, 0, 623, 637, 5, 98, 0, 0, 624, 638, 5, 88, 0, 0, 625, 630, 3, 116, 58, 0, 626, 627, 5, 63, 0, 0, 627, 629, 3, 116, 58, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 635, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 63, 0, 0, 634, 636, 3, 132, 66, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0, 0, 0, 637, 624, 1, 0, 0, 0, 637, 625, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 99, 0, 0, 640, 129, 1, 0, 0, 0, 641, 642, 3, 56, 28, 0, 642, 131, 1, 0, 0, 0, 643, 644, 5, 91, 0, 0, 644, 649, 3, 134, 67, 0, 645, 646, 5, 63, 0, 0, 646, 648, 3, 134, 67, 0, 647, 645, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 653, 5, 92, 0, 0, 653, 133, 1, 0, 0, 0, 654, 655, 3, 146, 73, 0, 655, 656, 5, 62, 0, 0, 656, 657, 3, 136, 68, 0, 657, 135, 1, 0, 0, 0, 658, 701, 5, 73, 0, 0, 659, 660, 3, 144, 72, 0, 660, 661, 5, 100, 0, 0, 661, 701, 1, 0, 0, 0, 662, 701, 3, 142, 71, 0, 663, 701, 3, 144, 72, 0, 664, 701, 3, 138, 69, 0, 665, 701, 3, 52, 26, 0, 666, 701, 3, 146, 73, 0, 667, 668, 5, 96, 0, 0, 668, 673, 3, 140, 70, 0, 669, 670, 5, 63, 0, 0, 670, 672, 3, 140, 70, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 97, 0, 0, 677, 701, 1, 0, 0, 0, 678, 679, 5, 96, 0, 0, 679, 684, 3, 138, 69, 0, 680, 681, 5, 63, 0, 0, 681, 683, 3, 138, 69, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 97, 0, 0, 688, 701, 1, 0, 0, 0, 689, 690, 5, 96, 0, 0, 690, 695, 3, 146, 73, 0, 691, 692, 5, 63, 0, 0, 692, 694, 3, 146, 73, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 97, 0, 0, 699, 701, 1, 0, 0, 0, 700, 658, 1, 0, 0, 0, 700, 659, 1, 0, 0, 0, 700, 662, 1, 0, 0, 0, 700, 663, 1, 0, 0, 0, 700, 664, 1, 0, 0, 0, 700, 665, 1, 0, 0, 0, 700, 666, 1, 0, 0, 0, 700, 667, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 689, 1, 0, 0, 0, 701, 137, 1, 0, 0, 0, 702, 703, 7, 6, 0, 0, 703, 139, 1, 0, 0, 0, 704, 707, 3, 142, 71, 0, 705, 707, 3, 144, 72, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 141, 1, 0, 0, 0, 708, 710, 7, 4, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 53, 0, 0, 712, 143, 1, 0, 0, 0, 713, 715, 7, 4, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 52, 0, 0, 717, 145, 1, 0, 0, 0, 718, 719, 5, 51, 0, 0, 719, 147, 1, 0, 0, 0, 720, 721, 7, 7, 0, 0, 721, 149, 1, 0, 0, 0, 722, 723, 7, 8, 0, 0, 723, 724, 5, 113, 0, 0, 724, 725, 3, 152, 76, 0, 725, 726, 3, 154, 77, 0, 726, 151, 1, 0, 0, 0, 727, 728, 3, 24, 12, 0, 728, 153, 1, 0, 0, 0, 729, 730, 5, 55, 0, 0, 730, 735, 3, 156, 78, 0, 731, 732, 5, 63, 0, 0, 732, 734, 3, 156, 78, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 155, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 739, 3, 122, 61, 0, 739, 157, 1, 0, 0, 0, 67, 169, 178, 207, 222, 228, 243, 247, 252, 259, 261, 275, 283, 287, 294, 300, 307, 315, 323, 332, 336, 340, 346, 350, 361, 366, 370, 384, 395, 409, 430, 438, 441, 446, 459, 465, 472, 483, 497, 503, 521, 530, 538, 543, 551, 553, 558, 565, 570, 575, 585, 591, 599, 601, 612, 619, 630, 635, 637, 649, 673, 684, 695, 700, 706, 709, 714, 735] \ No newline at end of file +[4, 1, 137, 741, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 168, 8, 1, 10, 1, 12, 1, 171, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 179, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 208, 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, 221, 8, 7, 10, 7, 12, 7, 224, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 229, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 242, 8, 11, 10, 11, 12, 11, 245, 9, 11, 1, 11, 3, 11, 248, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 253, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 260, 8, 12, 3, 12, 262, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 274, 8, 16, 10, 16, 12, 16, 277, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 284, 8, 18, 1, 18, 1, 18, 3, 18, 288, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 293, 8, 19, 10, 19, 12, 19, 296, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 301, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 306, 8, 21, 10, 21, 12, 21, 309, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 314, 8, 22, 10, 22, 12, 22, 317, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 322, 8, 23, 10, 23, 12, 23, 325, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 333, 8, 25, 1, 26, 1, 26, 3, 26, 337, 8, 26, 1, 27, 1, 27, 3, 27, 341, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 347, 8, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 360, 8, 31, 10, 31, 12, 31, 363, 9, 31, 1, 32, 1, 32, 3, 32, 367, 8, 32, 1, 32, 1, 32, 3, 32, 371, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 383, 8, 35, 10, 35, 12, 35, 386, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 396, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 5, 40, 408, 8, 40, 10, 40, 12, 40, 411, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 431, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 437, 8, 45, 10, 45, 12, 45, 440, 9, 45, 3, 45, 442, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 447, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 460, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 466, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 473, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 4, 52, 482, 8, 52, 11, 52, 12, 52, 483, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 496, 8, 54, 10, 54, 12, 54, 499, 9, 54, 1, 55, 1, 55, 1, 55, 3, 55, 504, 8, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 522, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 529, 8, 58, 10, 58, 12, 58, 532, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 539, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 544, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 552, 8, 58, 10, 58, 12, 58, 555, 9, 58, 1, 59, 1, 59, 3, 59, 559, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 566, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 586, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 592, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 600, 8, 62, 10, 62, 12, 62, 603, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 613, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 618, 8, 63, 10, 63, 12, 63, 621, 9, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 629, 8, 64, 10, 64, 12, 64, 632, 9, 64, 1, 64, 1, 64, 3, 64, 636, 8, 64, 3, 64, 638, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 648, 8, 66, 10, 66, 12, 66, 651, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 672, 8, 68, 10, 68, 12, 68, 675, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 683, 8, 68, 10, 68, 12, 68, 686, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 694, 8, 68, 10, 68, 12, 68, 697, 9, 68, 1, 68, 1, 68, 3, 68, 701, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 707, 8, 70, 1, 71, 3, 71, 710, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 715, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 734, 8, 77, 10, 77, 12, 77, 737, 9, 77, 1, 78, 1, 78, 1, 78, 0, 5, 2, 108, 116, 124, 126, 79, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 0, 9, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 56, 56, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 20, 20, 22, 23, 767, 0, 158, 1, 0, 0, 0, 2, 161, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 8, 209, 1, 0, 0, 0, 10, 212, 1, 0, 0, 0, 12, 214, 1, 0, 0, 0, 14, 217, 1, 0, 0, 0, 16, 228, 1, 0, 0, 0, 18, 232, 1, 0, 0, 0, 20, 235, 1, 0, 0, 0, 22, 238, 1, 0, 0, 0, 24, 261, 1, 0, 0, 0, 26, 263, 1, 0, 0, 0, 28, 265, 1, 0, 0, 0, 30, 267, 1, 0, 0, 0, 32, 269, 1, 0, 0, 0, 34, 278, 1, 0, 0, 0, 36, 281, 1, 0, 0, 0, 38, 289, 1, 0, 0, 0, 40, 297, 1, 0, 0, 0, 42, 302, 1, 0, 0, 0, 44, 310, 1, 0, 0, 0, 46, 318, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 332, 1, 0, 0, 0, 52, 336, 1, 0, 0, 0, 54, 340, 1, 0, 0, 0, 56, 346, 1, 0, 0, 0, 58, 350, 1, 0, 0, 0, 60, 352, 1, 0, 0, 0, 62, 355, 1, 0, 0, 0, 64, 364, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 378, 1, 0, 0, 0, 72, 387, 1, 0, 0, 0, 74, 391, 1, 0, 0, 0, 76, 397, 1, 0, 0, 0, 78, 401, 1, 0, 0, 0, 80, 404, 1, 0, 0, 0, 82, 412, 1, 0, 0, 0, 84, 416, 1, 0, 0, 0, 86, 419, 1, 0, 0, 0, 88, 423, 1, 0, 0, 0, 90, 426, 1, 0, 0, 0, 92, 446, 1, 0, 0, 0, 94, 450, 1, 0, 0, 0, 96, 455, 1, 0, 0, 0, 98, 461, 1, 0, 0, 0, 100, 474, 1, 0, 0, 0, 102, 477, 1, 0, 0, 0, 104, 481, 1, 0, 0, 0, 106, 485, 1, 0, 0, 0, 108, 489, 1, 0, 0, 0, 110, 503, 1, 0, 0, 0, 112, 505, 1, 0, 0, 0, 114, 507, 1, 0, 0, 0, 116, 543, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 572, 1, 0, 0, 0, 122, 585, 1, 0, 0, 0, 124, 591, 1, 0, 0, 0, 126, 612, 1, 0, 0, 0, 128, 622, 1, 0, 0, 0, 130, 641, 1, 0, 0, 0, 132, 643, 1, 0, 0, 0, 134, 654, 1, 0, 0, 0, 136, 700, 1, 0, 0, 0, 138, 702, 1, 0, 0, 0, 140, 706, 1, 0, 0, 0, 142, 709, 1, 0, 0, 0, 144, 714, 1, 0, 0, 0, 146, 718, 1, 0, 0, 0, 148, 720, 1, 0, 0, 0, 150, 722, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 729, 1, 0, 0, 0, 156, 738, 1, 0, 0, 0, 158, 159, 3, 2, 1, 0, 159, 160, 5, 0, 0, 1, 160, 1, 1, 0, 0, 0, 161, 162, 6, 1, -1, 0, 162, 163, 3, 4, 2, 0, 163, 169, 1, 0, 0, 0, 164, 165, 10, 1, 0, 0, 165, 166, 5, 50, 0, 0, 166, 168, 3, 6, 3, 0, 167, 164, 1, 0, 0, 0, 168, 171, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 169, 170, 1, 0, 0, 0, 170, 3, 1, 0, 0, 0, 171, 169, 1, 0, 0, 0, 172, 179, 3, 84, 42, 0, 173, 179, 3, 18, 9, 0, 174, 179, 3, 12, 6, 0, 175, 179, 3, 88, 44, 0, 176, 177, 4, 2, 1, 0, 177, 179, 3, 20, 10, 0, 178, 172, 1, 0, 0, 0, 178, 173, 1, 0, 0, 0, 178, 174, 1, 0, 0, 0, 178, 175, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 179, 5, 1, 0, 0, 0, 180, 208, 3, 34, 17, 0, 181, 208, 3, 8, 4, 0, 182, 208, 3, 66, 33, 0, 183, 208, 3, 60, 30, 0, 184, 208, 3, 36, 18, 0, 185, 208, 3, 62, 31, 0, 186, 208, 3, 68, 34, 0, 187, 208, 3, 70, 35, 0, 188, 208, 3, 74, 37, 0, 189, 208, 3, 76, 38, 0, 190, 208, 3, 90, 45, 0, 191, 208, 3, 78, 39, 0, 192, 208, 3, 150, 75, 0, 193, 194, 4, 3, 2, 0, 194, 208, 3, 96, 48, 0, 195, 196, 4, 3, 3, 0, 196, 208, 3, 94, 47, 0, 197, 198, 4, 3, 4, 0, 198, 208, 3, 98, 49, 0, 199, 200, 4, 3, 5, 0, 200, 208, 3, 100, 50, 0, 201, 202, 4, 3, 6, 0, 202, 208, 3, 102, 51, 0, 203, 204, 4, 3, 7, 0, 204, 208, 3, 114, 57, 0, 205, 206, 4, 3, 8, 0, 206, 208, 3, 112, 56, 0, 207, 180, 1, 0, 0, 0, 207, 181, 1, 0, 0, 0, 207, 182, 1, 0, 0, 0, 207, 183, 1, 0, 0, 0, 207, 184, 1, 0, 0, 0, 207, 185, 1, 0, 0, 0, 207, 186, 1, 0, 0, 0, 207, 187, 1, 0, 0, 0, 207, 188, 1, 0, 0, 0, 207, 189, 1, 0, 0, 0, 207, 190, 1, 0, 0, 0, 207, 191, 1, 0, 0, 0, 207, 192, 1, 0, 0, 0, 207, 193, 1, 0, 0, 0, 207, 195, 1, 0, 0, 0, 207, 197, 1, 0, 0, 0, 207, 199, 1, 0, 0, 0, 207, 201, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 7, 1, 0, 0, 0, 209, 210, 5, 14, 0, 0, 210, 211, 3, 116, 58, 0, 211, 9, 1, 0, 0, 0, 212, 213, 3, 48, 24, 0, 213, 11, 1, 0, 0, 0, 214, 215, 5, 11, 0, 0, 215, 216, 3, 14, 7, 0, 216, 13, 1, 0, 0, 0, 217, 222, 3, 16, 8, 0, 218, 219, 5, 61, 0, 0, 219, 221, 3, 16, 8, 0, 220, 218, 1, 0, 0, 0, 221, 224, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 15, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 225, 226, 3, 42, 21, 0, 226, 227, 5, 57, 0, 0, 227, 229, 1, 0, 0, 0, 228, 225, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 3, 116, 58, 0, 231, 17, 1, 0, 0, 0, 232, 233, 5, 17, 0, 0, 233, 234, 3, 22, 11, 0, 234, 19, 1, 0, 0, 0, 235, 236, 5, 18, 0, 0, 236, 237, 3, 22, 11, 0, 237, 21, 1, 0, 0, 0, 238, 243, 3, 24, 12, 0, 239, 240, 5, 61, 0, 0, 240, 242, 3, 24, 12, 0, 241, 239, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 32, 16, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 23, 1, 0, 0, 0, 249, 250, 3, 26, 13, 0, 250, 251, 5, 60, 0, 0, 251, 253, 1, 0, 0, 0, 252, 249, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 262, 3, 30, 15, 0, 255, 256, 4, 12, 9, 0, 256, 259, 3, 30, 15, 0, 257, 258, 5, 59, 0, 0, 258, 260, 3, 28, 14, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 252, 1, 0, 0, 0, 261, 255, 1, 0, 0, 0, 262, 25, 1, 0, 0, 0, 263, 264, 7, 0, 0, 0, 264, 27, 1, 0, 0, 0, 265, 266, 7, 0, 0, 0, 266, 29, 1, 0, 0, 0, 267, 268, 7, 0, 0, 0, 268, 31, 1, 0, 0, 0, 269, 270, 5, 105, 0, 0, 270, 275, 5, 106, 0, 0, 271, 272, 5, 61, 0, 0, 272, 274, 5, 106, 0, 0, 273, 271, 1, 0, 0, 0, 274, 277, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 33, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 278, 279, 5, 8, 0, 0, 279, 280, 3, 14, 7, 0, 280, 35, 1, 0, 0, 0, 281, 283, 5, 13, 0, 0, 282, 284, 3, 38, 19, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 286, 5, 58, 0, 0, 286, 288, 3, 14, 7, 0, 287, 285, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 37, 1, 0, 0, 0, 289, 294, 3, 40, 20, 0, 290, 291, 5, 61, 0, 0, 291, 293, 3, 40, 20, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 39, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 3, 16, 8, 0, 298, 299, 5, 14, 0, 0, 299, 301, 3, 116, 58, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 41, 1, 0, 0, 0, 302, 307, 3, 56, 28, 0, 303, 304, 5, 63, 0, 0, 304, 306, 3, 56, 28, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 43, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 50, 25, 0, 311, 312, 5, 63, 0, 0, 312, 314, 3, 50, 25, 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, 45, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 323, 3, 44, 22, 0, 319, 320, 5, 61, 0, 0, 320, 322, 3, 44, 22, 0, 321, 319, 1, 0, 0, 0, 322, 325, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 326, 327, 7, 1, 0, 0, 327, 49, 1, 0, 0, 0, 328, 333, 5, 127, 0, 0, 329, 333, 3, 52, 26, 0, 330, 331, 4, 25, 10, 0, 331, 333, 3, 54, 27, 0, 332, 328, 1, 0, 0, 0, 332, 329, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 51, 1, 0, 0, 0, 334, 337, 5, 75, 0, 0, 335, 337, 5, 94, 0, 0, 336, 334, 1, 0, 0, 0, 336, 335, 1, 0, 0, 0, 337, 53, 1, 0, 0, 0, 338, 341, 5, 93, 0, 0, 339, 341, 5, 95, 0, 0, 340, 338, 1, 0, 0, 0, 340, 339, 1, 0, 0, 0, 341, 55, 1, 0, 0, 0, 342, 347, 3, 48, 24, 0, 343, 347, 3, 52, 26, 0, 344, 345, 4, 28, 11, 0, 345, 347, 3, 54, 27, 0, 346, 342, 1, 0, 0, 0, 346, 343, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 57, 1, 0, 0, 0, 348, 351, 3, 146, 73, 0, 349, 351, 3, 52, 26, 0, 350, 348, 1, 0, 0, 0, 350, 349, 1, 0, 0, 0, 351, 59, 1, 0, 0, 0, 352, 353, 5, 10, 0, 0, 353, 354, 5, 52, 0, 0, 354, 61, 1, 0, 0, 0, 355, 356, 5, 12, 0, 0, 356, 361, 3, 64, 32, 0, 357, 358, 5, 61, 0, 0, 358, 360, 3, 64, 32, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 63, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 366, 3, 116, 58, 0, 365, 367, 7, 2, 0, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 369, 5, 72, 0, 0, 369, 371, 7, 3, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 27, 0, 0, 373, 374, 3, 46, 23, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 26, 0, 0, 376, 377, 3, 46, 23, 0, 377, 69, 1, 0, 0, 0, 378, 379, 5, 30, 0, 0, 379, 384, 3, 72, 36, 0, 380, 381, 5, 61, 0, 0, 381, 383, 3, 72, 36, 0, 382, 380, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 71, 1, 0, 0, 0, 386, 384, 1, 0, 0, 0, 387, 388, 3, 44, 22, 0, 388, 389, 5, 55, 0, 0, 389, 390, 3, 44, 22, 0, 390, 73, 1, 0, 0, 0, 391, 392, 5, 7, 0, 0, 392, 393, 3, 126, 63, 0, 393, 395, 3, 146, 73, 0, 394, 396, 3, 80, 40, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 75, 1, 0, 0, 0, 397, 398, 5, 9, 0, 0, 398, 399, 3, 126, 63, 0, 399, 400, 3, 146, 73, 0, 400, 77, 1, 0, 0, 0, 401, 402, 5, 25, 0, 0, 402, 403, 3, 42, 21, 0, 403, 79, 1, 0, 0, 0, 404, 409, 3, 82, 41, 0, 405, 406, 5, 61, 0, 0, 406, 408, 3, 82, 41, 0, 407, 405, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 81, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 3, 48, 24, 0, 413, 414, 5, 57, 0, 0, 414, 415, 3, 136, 68, 0, 415, 83, 1, 0, 0, 0, 416, 417, 5, 6, 0, 0, 417, 418, 3, 86, 43, 0, 418, 85, 1, 0, 0, 0, 419, 420, 5, 96, 0, 0, 420, 421, 3, 2, 1, 0, 421, 422, 5, 97, 0, 0, 422, 87, 1, 0, 0, 0, 423, 424, 5, 31, 0, 0, 424, 425, 5, 134, 0, 0, 425, 89, 1, 0, 0, 0, 426, 427, 5, 5, 0, 0, 427, 430, 5, 36, 0, 0, 428, 429, 5, 73, 0, 0, 429, 431, 3, 44, 22, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 441, 1, 0, 0, 0, 432, 433, 5, 78, 0, 0, 433, 438, 3, 92, 46, 0, 434, 435, 5, 61, 0, 0, 435, 437, 3, 92, 46, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 432, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 91, 1, 0, 0, 0, 443, 444, 3, 44, 22, 0, 444, 445, 5, 57, 0, 0, 445, 447, 1, 0, 0, 0, 446, 443, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 3, 44, 22, 0, 449, 93, 1, 0, 0, 0, 450, 451, 5, 24, 0, 0, 451, 452, 3, 24, 12, 0, 452, 453, 5, 73, 0, 0, 453, 454, 3, 46, 23, 0, 454, 95, 1, 0, 0, 0, 455, 456, 5, 15, 0, 0, 456, 459, 3, 38, 19, 0, 457, 458, 5, 58, 0, 0, 458, 460, 3, 14, 7, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 97, 1, 0, 0, 0, 461, 462, 5, 4, 0, 0, 462, 465, 3, 42, 21, 0, 463, 464, 5, 73, 0, 0, 464, 466, 3, 42, 21, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 472, 1, 0, 0, 0, 467, 468, 5, 55, 0, 0, 468, 469, 3, 42, 21, 0, 469, 470, 5, 61, 0, 0, 470, 471, 3, 42, 21, 0, 471, 473, 1, 0, 0, 0, 472, 467, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 99, 1, 0, 0, 0, 474, 475, 5, 28, 0, 0, 475, 476, 3, 46, 23, 0, 476, 101, 1, 0, 0, 0, 477, 478, 5, 19, 0, 0, 478, 479, 3, 104, 52, 0, 479, 103, 1, 0, 0, 0, 480, 482, 3, 106, 53, 0, 481, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 105, 1, 0, 0, 0, 485, 486, 5, 98, 0, 0, 486, 487, 3, 108, 54, 0, 487, 488, 5, 99, 0, 0, 488, 107, 1, 0, 0, 0, 489, 490, 6, 54, -1, 0, 490, 491, 3, 110, 55, 0, 491, 497, 1, 0, 0, 0, 492, 493, 10, 1, 0, 0, 493, 494, 5, 50, 0, 0, 494, 496, 3, 110, 55, 0, 495, 492, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 109, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 3, 8, 4, 0, 501, 504, 3, 62, 31, 0, 502, 504, 3, 60, 30, 0, 503, 500, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 111, 1, 0, 0, 0, 505, 506, 5, 29, 0, 0, 506, 113, 1, 0, 0, 0, 507, 508, 5, 16, 0, 0, 508, 509, 3, 58, 29, 0, 509, 510, 5, 73, 0, 0, 510, 511, 3, 14, 7, 0, 511, 512, 5, 78, 0, 0, 512, 513, 3, 58, 29, 0, 513, 115, 1, 0, 0, 0, 514, 515, 6, 58, -1, 0, 515, 516, 5, 70, 0, 0, 516, 544, 3, 116, 58, 8, 517, 544, 3, 122, 61, 0, 518, 544, 3, 118, 59, 0, 519, 521, 3, 122, 61, 0, 520, 522, 5, 70, 0, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 66, 0, 0, 524, 525, 5, 98, 0, 0, 525, 530, 3, 122, 61, 0, 526, 527, 5, 61, 0, 0, 527, 529, 3, 122, 61, 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, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 99, 0, 0, 534, 544, 1, 0, 0, 0, 535, 536, 3, 122, 61, 0, 536, 538, 5, 67, 0, 0, 537, 539, 5, 70, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 5, 71, 0, 0, 541, 544, 1, 0, 0, 0, 542, 544, 3, 120, 60, 0, 543, 514, 1, 0, 0, 0, 543, 517, 1, 0, 0, 0, 543, 518, 1, 0, 0, 0, 543, 519, 1, 0, 0, 0, 543, 535, 1, 0, 0, 0, 543, 542, 1, 0, 0, 0, 544, 553, 1, 0, 0, 0, 545, 546, 10, 5, 0, 0, 546, 547, 5, 54, 0, 0, 547, 552, 3, 116, 58, 6, 548, 549, 10, 4, 0, 0, 549, 550, 5, 74, 0, 0, 550, 552, 3, 116, 58, 5, 551, 545, 1, 0, 0, 0, 551, 548, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 117, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 558, 3, 122, 61, 0, 557, 559, 5, 70, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 69, 0, 0, 561, 562, 3, 146, 73, 0, 562, 571, 1, 0, 0, 0, 563, 565, 3, 122, 61, 0, 564, 566, 5, 70, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 76, 0, 0, 568, 569, 3, 146, 73, 0, 569, 571, 1, 0, 0, 0, 570, 556, 1, 0, 0, 0, 570, 563, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 575, 3, 42, 21, 0, 573, 574, 5, 59, 0, 0, 574, 576, 3, 10, 5, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 60, 0, 0, 578, 579, 3, 136, 68, 0, 579, 121, 1, 0, 0, 0, 580, 586, 3, 124, 62, 0, 581, 582, 3, 124, 62, 0, 582, 583, 3, 148, 74, 0, 583, 584, 3, 124, 62, 0, 584, 586, 1, 0, 0, 0, 585, 580, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 586, 123, 1, 0, 0, 0, 587, 588, 6, 62, -1, 0, 588, 592, 3, 126, 63, 0, 589, 590, 7, 4, 0, 0, 590, 592, 3, 124, 62, 3, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 594, 10, 2, 0, 0, 594, 595, 7, 5, 0, 0, 595, 600, 3, 124, 62, 3, 596, 597, 10, 1, 0, 0, 597, 598, 7, 4, 0, 0, 598, 600, 3, 124, 62, 2, 599, 593, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 125, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 6, 63, -1, 0, 605, 613, 3, 136, 68, 0, 606, 613, 3, 42, 21, 0, 607, 613, 3, 128, 64, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 116, 58, 0, 610, 611, 5, 99, 0, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 606, 1, 0, 0, 0, 612, 607, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 619, 1, 0, 0, 0, 614, 615, 10, 1, 0, 0, 615, 616, 5, 59, 0, 0, 616, 618, 3, 10, 5, 0, 617, 614, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 127, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 3, 130, 65, 0, 623, 637, 5, 98, 0, 0, 624, 638, 5, 88, 0, 0, 625, 630, 3, 116, 58, 0, 626, 627, 5, 61, 0, 0, 627, 629, 3, 116, 58, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 635, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 61, 0, 0, 634, 636, 3, 132, 66, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0, 0, 0, 637, 624, 1, 0, 0, 0, 637, 625, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 99, 0, 0, 640, 129, 1, 0, 0, 0, 641, 642, 3, 56, 28, 0, 642, 131, 1, 0, 0, 0, 643, 644, 5, 91, 0, 0, 644, 649, 3, 134, 67, 0, 645, 646, 5, 61, 0, 0, 646, 648, 3, 134, 67, 0, 647, 645, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 653, 5, 92, 0, 0, 653, 133, 1, 0, 0, 0, 654, 655, 3, 146, 73, 0, 655, 656, 5, 60, 0, 0, 656, 657, 3, 136, 68, 0, 657, 135, 1, 0, 0, 0, 658, 701, 5, 71, 0, 0, 659, 660, 3, 144, 72, 0, 660, 661, 5, 100, 0, 0, 661, 701, 1, 0, 0, 0, 662, 701, 3, 142, 71, 0, 663, 701, 3, 144, 72, 0, 664, 701, 3, 138, 69, 0, 665, 701, 3, 52, 26, 0, 666, 701, 3, 146, 73, 0, 667, 668, 5, 96, 0, 0, 668, 673, 3, 140, 70, 0, 669, 670, 5, 61, 0, 0, 670, 672, 3, 140, 70, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 97, 0, 0, 677, 701, 1, 0, 0, 0, 678, 679, 5, 96, 0, 0, 679, 684, 3, 138, 69, 0, 680, 681, 5, 61, 0, 0, 681, 683, 3, 138, 69, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 97, 0, 0, 688, 701, 1, 0, 0, 0, 689, 690, 5, 96, 0, 0, 690, 695, 3, 146, 73, 0, 691, 692, 5, 61, 0, 0, 692, 694, 3, 146, 73, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 97, 0, 0, 699, 701, 1, 0, 0, 0, 700, 658, 1, 0, 0, 0, 700, 659, 1, 0, 0, 0, 700, 662, 1, 0, 0, 0, 700, 663, 1, 0, 0, 0, 700, 664, 1, 0, 0, 0, 700, 665, 1, 0, 0, 0, 700, 666, 1, 0, 0, 0, 700, 667, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 689, 1, 0, 0, 0, 701, 137, 1, 0, 0, 0, 702, 703, 7, 6, 0, 0, 703, 139, 1, 0, 0, 0, 704, 707, 3, 142, 71, 0, 705, 707, 3, 144, 72, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 141, 1, 0, 0, 0, 708, 710, 7, 4, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 53, 0, 0, 712, 143, 1, 0, 0, 0, 713, 715, 7, 4, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 52, 0, 0, 717, 145, 1, 0, 0, 0, 718, 719, 5, 51, 0, 0, 719, 147, 1, 0, 0, 0, 720, 721, 7, 7, 0, 0, 721, 149, 1, 0, 0, 0, 722, 723, 7, 8, 0, 0, 723, 724, 5, 113, 0, 0, 724, 725, 3, 152, 76, 0, 725, 726, 3, 154, 77, 0, 726, 151, 1, 0, 0, 0, 727, 728, 3, 24, 12, 0, 728, 153, 1, 0, 0, 0, 729, 730, 5, 73, 0, 0, 730, 735, 3, 156, 78, 0, 731, 732, 5, 61, 0, 0, 732, 734, 3, 156, 78, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 155, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 739, 3, 122, 61, 0, 739, 157, 1, 0, 0, 0, 67, 169, 178, 207, 222, 228, 243, 247, 252, 259, 261, 275, 283, 287, 294, 300, 307, 315, 323, 332, 336, 340, 346, 350, 361, 366, 370, 384, 395, 409, 430, 438, 441, 446, 459, 465, 472, 483, 497, 503, 521, 530, 538, 543, 551, 553, 558, 565, 570, 575, 585, 591, 599, 601, 612, 619, 630, 635, 637, 649, 673, 684, 695, 700, 706, 709, 714, 735] \ 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 0fb807be92ed2..d2bb40f5db84d 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 @@ -35,12 +35,12 @@ public class EsqlBaseParser extends ParserConfig { ENRICH_WS=39, ENRICH_FIELD_LINE_COMMENT=40, ENRICH_FIELD_MULTILINE_COMMENT=41, ENRICH_FIELD_WS=42, SETTING=43, SETTING_LINE_COMMENT=44, SETTTING_MULTILINE_COMMENT=45, SETTING_WS=46, EXPLAIN_WS=47, EXPLAIN_LINE_COMMENT=48, EXPLAIN_MULTILINE_COMMENT=49, - PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, BY=54, - ON=55, WITH=56, AS=57, AND=58, ASC=59, ASSIGN=60, CAST_OP=61, COLON=62, - COMMA=63, DESC=64, DOT=65, FALSE=66, FIRST=67, IN=68, IS=69, LAST=70, - LIKE=71, NOT=72, NULL=73, NULLS=74, OR=75, PARAM=76, RLIKE=77, TRUE=78, - EQ=79, CIEQ=80, NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, - ASTERISK=88, SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, + PIPE=50, QUOTED_STRING=51, INTEGER_LITERAL=52, DECIMAL_LITERAL=53, AND=54, + AS=55, ASC=56, ASSIGN=57, BY=58, CAST_OP=59, COLON=60, COMMA=61, DESC=62, + DOT=63, FALSE=64, FIRST=65, IN=66, IS=67, LAST=68, LIKE=69, NOT=70, NULL=71, + NULLS=72, ON=73, OR=74, PARAM=75, RLIKE=76, TRUE=77, WITH=78, EQ=79, CIEQ=80, + NEQ=81, LT=82, LTE=83, GT=84, GTE=85, PLUS=86, MINUS=87, ASTERISK=88, + SLASH=89, PERCENT=90, LEFT_BRACES=91, RIGHT_BRACES=92, DOUBLE_PARAMS=93, NAMED_OR_POSITIONAL_PARAM=94, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=95, OPENING_BRACKET=96, CLOSING_BRACKET=97, LP=98, RP=99, UNQUOTED_IDENTIFIER=100, QUOTED_IDENTIFIER=101, EXPR_LINE_COMMENT=102, EXPR_MULTILINE_COMMENT=103, EXPR_WS=104, METADATA=105, @@ -111,10 +111,10 @@ private static String[] makeLiteralNames() { "'from'", null, null, "'lookup'", null, null, null, null, "'mv_expand'", "'drop'", "'keep'", null, null, "'rename'", "'show'", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, - null, null, null, "'|'", null, null, null, "'by'", "'on'", "'with'", - "'as'", "'and'", "'asc'", "'='", "'::'", "':'", "','", "'desc'", "'.'", - "'false'", "'first'", "'in'", "'is'", "'last'", "'like'", "'not'", "'null'", - "'nulls'", "'or'", "'?'", "'rlike'", "'true'", "'=='", "'=~'", "'!='", + null, null, null, "'|'", null, null, null, "'and'", "'as'", "'asc'", + "'='", "'by'", "'::'", "':'", "','", "'desc'", "'.'", "'false'", "'first'", + "'in'", "'is'", "'last'", "'like'", "'not'", "'null'", "'nulls'", "'on'", + "'or'", "'?'", "'rlike'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", null, null, null, null, "']'", null, "')'", null, null, null, null, null, "'metadata'", null, null, null, null, null, null, null, "'join'", @@ -135,22 +135,23 @@ private static String[] makeSymbolicNames() { "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", - "ON", "WITH", "AS", "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", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", - "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", "FORK_WS", "FORK_LINE_COMMENT", "FORK_MULTILINE_COMMENT", - "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", "MVEXPAND_LINE_COMMENT", - "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "ID_PATTERN", "PROJECT_LINE_COMMENT", - "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", - "RENAME_WS", "INFO", "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" + "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", + "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC", "DOT", + "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "NOT", "NULL", "NULLS", + "ON", "OR", "PARAM", "RLIKE", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", + "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", + "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", + "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "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", "FORK_WS", "FORK_LINE_COMMENT", + "FORK_MULTILINE_COMMENT", "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", + "MVEXPAND_LINE_COMMENT", "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", + "ID_PATTERN", "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", + "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT", "RENAME_WS", "INFO", + "SHOW_LINE_COMMENT", "SHOW_MULTILINE_COMMENT", "SHOW_WS" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -6843,8 +6844,8 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e"+ " \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u0000"+ - "\t\u0002\u000033jj\u0001\u0000de\u0002\u0000;;@@\u0002\u0000CCFF\u0001"+ - "\u0000VW\u0001\u0000XZ\u0002\u0000BBNN\u0002\u0000OOQU\u0002\u0000\u0014"+ + "\t\u0002\u000033jj\u0001\u0000de\u0002\u000088>>\u0002\u0000AADD\u0001"+ + "\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000OOQU\u0002\u0000\u0014"+ "\u0014\u0016\u0017\u02ff\u0000\u009e\u0001\u0000\u0000\u0000\u0002\u00a1"+ "\u0001\u0000\u0000\u0000\u0004\u00b2\u0001\u0000\u0000\u0000\u0006\u00cf"+ "\u0001\u0000\u0000\u0000\b\u00d1\u0001\u0000\u0000\u0000\n\u00d4\u0001"+ @@ -6920,28 +6921,28 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0000\u0000\u00d4\u00d5\u00030\u0018\u0000\u00d5\u000b\u0001\u0000\u0000"+ "\u0000\u00d6\u00d7\u0005\u000b\u0000\u0000\u00d7\u00d8\u0003\u000e\u0007"+ "\u0000\u00d8\r\u0001\u0000\u0000\u0000\u00d9\u00de\u0003\u0010\b\u0000"+ - "\u00da\u00db\u0005?\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc"+ + "\u00da\u00db\u0005=\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc"+ "\u00da\u0001\u0000\u0000\u0000\u00dd\u00e0\u0001\u0000\u0000\u0000\u00de"+ "\u00dc\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df"+ "\u000f\u0001\u0000\u0000\u0000\u00e0\u00de\u0001\u0000\u0000\u0000\u00e1"+ - "\u00e2\u0003*\u0015\u0000\u00e2\u00e3\u0005<\u0000\u0000\u00e3\u00e5\u0001"+ + "\u00e2\u0003*\u0015\u0000\u00e2\u00e3\u00059\u0000\u0000\u00e3\u00e5\u0001"+ "\u0000\u0000\u0000\u00e4\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001"+ "\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6\u00e7\u0003"+ "t:\u0000\u00e7\u0011\u0001\u0000\u0000\u0000\u00e8\u00e9\u0005\u0011\u0000"+ "\u0000\u00e9\u00ea\u0003\u0016\u000b\u0000\u00ea\u0013\u0001\u0000\u0000"+ "\u0000\u00eb\u00ec\u0005\u0012\u0000\u0000\u00ec\u00ed\u0003\u0016\u000b"+ "\u0000\u00ed\u0015\u0001\u0000\u0000\u0000\u00ee\u00f3\u0003\u0018\f\u0000"+ - "\u00ef\u00f0\u0005?\u0000\u0000\u00f0\u00f2\u0003\u0018\f\u0000\u00f1"+ + "\u00ef\u00f0\u0005=\u0000\u0000\u00f0\u00f2\u0003\u0018\f\u0000\u00f1"+ "\u00ef\u0001\u0000\u0000\u0000\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3"+ "\u00f1\u0001\u0000\u0000\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4"+ "\u00f7\u0001\u0000\u0000\u0000\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6"+ "\u00f8\u0003 \u0010\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8"+ "\u0001\u0000\u0000\u0000\u00f8\u0017\u0001\u0000\u0000\u0000\u00f9\u00fa"+ - "\u0003\u001a\r\u0000\u00fa\u00fb\u0005>\u0000\u0000\u00fb\u00fd\u0001"+ + "\u0003\u001a\r\u0000\u00fa\u00fb\u0005<\u0000\u0000\u00fb\u00fd\u0001"+ "\u0000\u0000\u0000\u00fc\u00f9\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001"+ "\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0106\u0003"+ "\u001e\u000f\u0000\u00ff\u0100\u0004\f\t\u0000\u0100\u0103\u0003\u001e"+ - "\u000f\u0000\u0101\u0102\u0005=\u0000\u0000\u0102\u0104\u0003\u001c\u000e"+ + "\u000f\u0000\u0101\u0102\u0005;\u0000\u0000\u0102\u0104\u0003\u001c\u000e"+ "\u0000\u0103\u0101\u0001\u0000\u0000\u0000\u0103\u0104\u0001\u0000\u0000"+ "\u0000\u0104\u0106\u0001\u0000\u0000\u0000\u0105\u00fc\u0001\u0000\u0000"+ "\u0000\u0105\u00ff\u0001\u0000\u0000\u0000\u0106\u0019\u0001\u0000\u0000"+ @@ -6949,32 +6950,32 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0000\u0109\u010a\u0007\u0000\u0000\u0000\u010a\u001d\u0001\u0000\u0000"+ "\u0000\u010b\u010c\u0007\u0000\u0000\u0000\u010c\u001f\u0001\u0000\u0000"+ "\u0000\u010d\u010e\u0005i\u0000\u0000\u010e\u0113\u0005j\u0000\u0000\u010f"+ - "\u0110\u0005?\u0000\u0000\u0110\u0112\u0005j\u0000\u0000\u0111\u010f\u0001"+ + "\u0110\u0005=\u0000\u0000\u0110\u0112\u0005j\u0000\u0000\u0111\u010f\u0001"+ "\u0000\u0000\u0000\u0112\u0115\u0001\u0000\u0000\u0000\u0113\u0111\u0001"+ "\u0000\u0000\u0000\u0113\u0114\u0001\u0000\u0000\u0000\u0114!\u0001\u0000"+ "\u0000\u0000\u0115\u0113\u0001\u0000\u0000\u0000\u0116\u0117\u0005\b\u0000"+ "\u0000\u0117\u0118\u0003\u000e\u0007\u0000\u0118#\u0001\u0000\u0000\u0000"+ "\u0119\u011b\u0005\r\u0000\u0000\u011a\u011c\u0003&\u0013\u0000\u011b"+ "\u011a\u0001\u0000\u0000\u0000\u011b\u011c\u0001\u0000\u0000\u0000\u011c"+ - "\u011f\u0001\u0000\u0000\u0000\u011d\u011e\u00056\u0000\u0000\u011e\u0120"+ + "\u011f\u0001\u0000\u0000\u0000\u011d\u011e\u0005:\u0000\u0000\u011e\u0120"+ "\u0003\u000e\u0007\u0000\u011f\u011d\u0001\u0000\u0000\u0000\u011f\u0120"+ "\u0001\u0000\u0000\u0000\u0120%\u0001\u0000\u0000\u0000\u0121\u0126\u0003"+ - "(\u0014\u0000\u0122\u0123\u0005?\u0000\u0000\u0123\u0125\u0003(\u0014"+ + "(\u0014\u0000\u0122\u0123\u0005=\u0000\u0000\u0123\u0125\u0003(\u0014"+ "\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0125\u0128\u0001\u0000\u0000"+ "\u0000\u0126\u0124\u0001\u0000\u0000\u0000\u0126\u0127\u0001\u0000\u0000"+ "\u0000\u0127\'\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000"+ "\u0129\u012c\u0003\u0010\b\u0000\u012a\u012b\u0005\u000e\u0000\u0000\u012b"+ "\u012d\u0003t:\u0000\u012c\u012a\u0001\u0000\u0000\u0000\u012c\u012d\u0001"+ "\u0000\u0000\u0000\u012d)\u0001\u0000\u0000\u0000\u012e\u0133\u00038\u001c"+ - "\u0000\u012f\u0130\u0005A\u0000\u0000\u0130\u0132\u00038\u001c\u0000\u0131"+ + "\u0000\u012f\u0130\u0005?\u0000\u0000\u0130\u0132\u00038\u001c\u0000\u0131"+ "\u012f\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133"+ "\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134"+ "+\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u013b"+ - "\u00032\u0019\u0000\u0137\u0138\u0005A\u0000\u0000\u0138\u013a\u00032"+ + "\u00032\u0019\u0000\u0137\u0138\u0005?\u0000\u0000\u0138\u013a\u00032"+ "\u0019\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-\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000"+ - "\u0000\u013e\u0143\u0003,\u0016\u0000\u013f\u0140\u0005?\u0000\u0000\u0140"+ + "\u0000\u013e\u0143\u0003,\u0016\u0000\u013f\u0140\u0005=\u0000\u0000\u0140"+ "\u0142\u0003,\u0016\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0142\u0145"+ "\u0001\u0000\u0000\u0000\u0143\u0141\u0001\u0000\u0000\u0000\u0143\u0144"+ "\u0001\u0000\u0000\u0000\u0144/\u0001\u0000\u0000\u0000\u0145\u0143\u0001"+ @@ -6983,7 +6984,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0000\u014a\u014b\u0004\u0019\n\u0000\u014b\u014d\u00036\u001b\u0000"+ "\u014c\u0148\u0001\u0000\u0000\u0000\u014c\u0149\u0001\u0000\u0000\u0000"+ "\u014c\u014a\u0001\u0000\u0000\u0000\u014d3\u0001\u0000\u0000\u0000\u014e"+ - "\u0151\u0005L\u0000\u0000\u014f\u0151\u0005^\u0000\u0000\u0150\u014e\u0001"+ + "\u0151\u0005K\u0000\u0000\u014f\u0151\u0005^\u0000\u0000\u0150\u014e\u0001"+ "\u0000\u0000\u0000\u0150\u014f\u0001\u0000\u0000\u0000\u01515\u0001\u0000"+ "\u0000\u0000\u0152\u0155\u0005]\u0000\u0000\u0153\u0155\u0005_\u0000\u0000"+ "\u0154\u0152\u0001\u0000\u0000\u0000\u0154\u0153\u0001\u0000\u0000\u0000"+ @@ -6995,23 +6996,23 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u015c\u0001\u0000\u0000\u0000\u015e\u015d\u0001\u0000\u0000\u0000\u015f"+ ";\u0001\u0000\u0000\u0000\u0160\u0161\u0005\n\u0000\u0000\u0161\u0162"+ "\u00054\u0000\u0000\u0162=\u0001\u0000\u0000\u0000\u0163\u0164\u0005\f"+ - "\u0000\u0000\u0164\u0169\u0003@ \u0000\u0165\u0166\u0005?\u0000\u0000"+ + "\u0000\u0000\u0164\u0169\u0003@ \u0000\u0165\u0166\u0005=\u0000\u0000"+ "\u0166\u0168\u0003@ \u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0168\u016b"+ "\u0001\u0000\u0000\u0000\u0169\u0167\u0001\u0000\u0000\u0000\u0169\u016a"+ "\u0001\u0000\u0000\u0000\u016a?\u0001\u0000\u0000\u0000\u016b\u0169\u0001"+ "\u0000\u0000\u0000\u016c\u016e\u0003t:\u0000\u016d\u016f\u0007\u0002\u0000"+ "\u0000\u016e\u016d\u0001\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000"+ - "\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u0171\u0005J\u0000\u0000"+ + "\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u0171\u0005H\u0000\u0000"+ "\u0171\u0173\u0007\u0003\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000"+ "\u0172\u0173\u0001\u0000\u0000\u0000\u0173A\u0001\u0000\u0000\u0000\u0174"+ "\u0175\u0005\u001b\u0000\u0000\u0175\u0176\u0003.\u0017\u0000\u0176C\u0001"+ "\u0000\u0000\u0000\u0177\u0178\u0005\u001a\u0000\u0000\u0178\u0179\u0003"+ ".\u0017\u0000\u0179E\u0001\u0000\u0000\u0000\u017a\u017b\u0005\u001e\u0000"+ - "\u0000\u017b\u0180\u0003H$\u0000\u017c\u017d\u0005?\u0000\u0000\u017d"+ + "\u0000\u017b\u0180\u0003H$\u0000\u017c\u017d\u0005=\u0000\u0000\u017d"+ "\u017f\u0003H$\u0000\u017e\u017c\u0001\u0000\u0000\u0000\u017f\u0182\u0001"+ "\u0000\u0000\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0180\u0181\u0001"+ "\u0000\u0000\u0000\u0181G\u0001\u0000\u0000\u0000\u0182\u0180\u0001\u0000"+ - "\u0000\u0000\u0183\u0184\u0003,\u0016\u0000\u0184\u0185\u00059\u0000\u0000"+ + "\u0000\u0000\u0183\u0184\u0003,\u0016\u0000\u0184\u0185\u00057\u0000\u0000"+ "\u0185\u0186\u0003,\u0016\u0000\u0186I\u0001\u0000\u0000\u0000\u0187\u0188"+ "\u0005\u0007\u0000\u0000\u0188\u0189\u0003~?\u0000\u0189\u018b\u0003\u0092"+ "I\u0000\u018a\u018c\u0003P(\u0000\u018b\u018a\u0001\u0000\u0000\u0000"+ @@ -7019,39 +7020,39 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u018e\u0005\t\u0000\u0000\u018e\u018f\u0003~?\u0000\u018f\u0190\u0003"+ "\u0092I\u0000\u0190M\u0001\u0000\u0000\u0000\u0191\u0192\u0005\u0019\u0000"+ "\u0000\u0192\u0193\u0003*\u0015\u0000\u0193O\u0001\u0000\u0000\u0000\u0194"+ - "\u0199\u0003R)\u0000\u0195\u0196\u0005?\u0000\u0000\u0196\u0198\u0003"+ + "\u0199\u0003R)\u0000\u0195\u0196\u0005=\u0000\u0000\u0196\u0198\u0003"+ "R)\u0000\u0197\u0195\u0001\u0000\u0000\u0000\u0198\u019b\u0001\u0000\u0000"+ "\u0000\u0199\u0197\u0001\u0000\u0000\u0000\u0199\u019a\u0001\u0000\u0000"+ "\u0000\u019aQ\u0001\u0000\u0000\u0000\u019b\u0199\u0001\u0000\u0000\u0000"+ - "\u019c\u019d\u00030\u0018\u0000\u019d\u019e\u0005<\u0000\u0000\u019e\u019f"+ + "\u019c\u019d\u00030\u0018\u0000\u019d\u019e\u00059\u0000\u0000\u019e\u019f"+ "\u0003\u0088D\u0000\u019fS\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005\u0006"+ "\u0000\u0000\u01a1\u01a2\u0003V+\u0000\u01a2U\u0001\u0000\u0000\u0000"+ "\u01a3\u01a4\u0005`\u0000\u0000\u01a4\u01a5\u0003\u0002\u0001\u0000\u01a5"+ "\u01a6\u0005a\u0000\u0000\u01a6W\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005"+ "\u001f\u0000\u0000\u01a8\u01a9\u0005\u0086\u0000\u0000\u01a9Y\u0001\u0000"+ "\u0000\u0000\u01aa\u01ab\u0005\u0005\u0000\u0000\u01ab\u01ae\u0005$\u0000"+ - "\u0000\u01ac\u01ad\u00057\u0000\u0000\u01ad\u01af\u0003,\u0016\u0000\u01ae"+ + "\u0000\u01ac\u01ad\u0005I\u0000\u0000\u01ad\u01af\u0003,\u0016\u0000\u01ae"+ "\u01ac\u0001\u0000\u0000\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01af"+ - "\u01b9\u0001\u0000\u0000\u0000\u01b0\u01b1\u00058\u0000\u0000\u01b1\u01b6"+ - "\u0003\\.\u0000\u01b2\u01b3\u0005?\u0000\u0000\u01b3\u01b5\u0003\\.\u0000"+ + "\u01b9\u0001\u0000\u0000\u0000\u01b0\u01b1\u0005N\u0000\u0000\u01b1\u01b6"+ + "\u0003\\.\u0000\u01b2\u01b3\u0005=\u0000\u0000\u01b3\u01b5\u0003\\.\u0000"+ "\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b8\u0001\u0000\u0000\u0000"+ "\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000\u0000\u0000"+ "\u01b7\u01ba\u0001\u0000\u0000\u0000\u01b8\u01b6\u0001\u0000\u0000\u0000"+ "\u01b9\u01b0\u0001\u0000\u0000\u0000\u01b9\u01ba\u0001\u0000\u0000\u0000"+ "\u01ba[\u0001\u0000\u0000\u0000\u01bb\u01bc\u0003,\u0016\u0000\u01bc\u01bd"+ - "\u0005<\u0000\u0000\u01bd\u01bf\u0001\u0000\u0000\u0000\u01be\u01bb\u0001"+ + "\u00059\u0000\u0000\u01bd\u01bf\u0001\u0000\u0000\u0000\u01be\u01bb\u0001"+ "\u0000\u0000\u0000\u01be\u01bf\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001"+ "\u0000\u0000\u0000\u01c0\u01c1\u0003,\u0016\u0000\u01c1]\u0001\u0000\u0000"+ "\u0000\u01c2\u01c3\u0005\u0018\u0000\u0000\u01c3\u01c4\u0003\u0018\f\u0000"+ - "\u01c4\u01c5\u00057\u0000\u0000\u01c5\u01c6\u0003.\u0017\u0000\u01c6_"+ + "\u01c4\u01c5\u0005I\u0000\u0000\u01c5\u01c6\u0003.\u0017\u0000\u01c6_"+ "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005\u000f\u0000\u0000\u01c8\u01cb"+ - "\u0003&\u0013\u0000\u01c9\u01ca\u00056\u0000\u0000\u01ca\u01cc\u0003\u000e"+ + "\u0003&\u0013\u0000\u01c9\u01ca\u0005:\u0000\u0000\u01ca\u01cc\u0003\u000e"+ "\u0007\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000"+ "\u0000\u0000\u01cca\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0004\u0000"+ - "\u0000\u01ce\u01d1\u0003*\u0015\u0000\u01cf\u01d0\u00057\u0000\u0000\u01d0"+ + "\u0000\u01ce\u01d1\u0003*\u0015\u0000\u01cf\u01d0\u0005I\u0000\u0000\u01d0"+ "\u01d2\u0003*\u0015\u0000\u01d1\u01cf\u0001\u0000\u0000\u0000\u01d1\u01d2"+ "\u0001\u0000\u0000\u0000\u01d2\u01d8\u0001\u0000\u0000\u0000\u01d3\u01d4"+ - "\u00059\u0000\u0000\u01d4\u01d5\u0003*\u0015\u0000\u01d5\u01d6\u0005?"+ + "\u00057\u0000\u0000\u01d4\u01d5\u0003*\u0015\u0000\u01d5\u01d6\u0005="+ "\u0000\u0000\u01d6\u01d7\u0003*\u0015\u0000\u01d7\u01d9\u0001\u0000\u0000"+ "\u0000\u01d8\u01d3\u0001\u0000\u0000\u0000\u01d8\u01d9\u0001\u0000\u0000"+ "\u0000\u01d9c\u0001\u0000\u0000\u0000\u01da\u01db\u0005\u001c\u0000\u0000"+ @@ -7072,44 +7073,44 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f7\u01f6\u0001\u0000\u0000\u0000"+ "\u01f8o\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\u001d\u0000\u0000\u01fa"+ "q\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005\u0010\u0000\u0000\u01fc\u01fd"+ - "\u0003:\u001d\u0000\u01fd\u01fe\u00057\u0000\u0000\u01fe\u01ff\u0003\u000e"+ - "\u0007\u0000\u01ff\u0200\u00058\u0000\u0000\u0200\u0201\u0003:\u001d\u0000"+ + "\u0003:\u001d\u0000\u01fd\u01fe\u0005I\u0000\u0000\u01fe\u01ff\u0003\u000e"+ + "\u0007\u0000\u01ff\u0200\u0005N\u0000\u0000\u0200\u0201\u0003:\u001d\u0000"+ "\u0201s\u0001\u0000\u0000\u0000\u0202\u0203\u0006:\uffff\uffff\u0000\u0203"+ - "\u0204\u0005H\u0000\u0000\u0204\u0220\u0003t:\b\u0205\u0220\u0003z=\u0000"+ + "\u0204\u0005F\u0000\u0000\u0204\u0220\u0003t:\b\u0205\u0220\u0003z=\u0000"+ "\u0206\u0220\u0003v;\u0000\u0207\u0209\u0003z=\u0000\u0208\u020a\u0005"+ - "H\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000"+ - "\u0000\u0000\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0005D\u0000"+ + "F\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000"+ + "\u0000\u0000\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0005B\u0000"+ "\u0000\u020c\u020d\u0005b\u0000\u0000\u020d\u0212\u0003z=\u0000\u020e"+ - "\u020f\u0005?\u0000\u0000\u020f\u0211\u0003z=\u0000\u0210\u020e\u0001"+ + "\u020f\u0005=\u0000\u0000\u020f\u0211\u0003z=\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\u0213\u0215\u0001"+ "\u0000\u0000\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0215\u0216\u0005"+ "c\u0000\u0000\u0216\u0220\u0001\u0000\u0000\u0000\u0217\u0218\u0003z="+ - "\u0000\u0218\u021a\u0005E\u0000\u0000\u0219\u021b\u0005H\u0000\u0000\u021a"+ + "\u0000\u0218\u021a\u0005C\u0000\u0000\u0219\u021b\u0005F\u0000\u0000\u021a"+ "\u0219\u0001\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021b"+ - "\u021c\u0001\u0000\u0000\u0000\u021c\u021d\u0005I\u0000\u0000\u021d\u0220"+ + "\u021c\u0001\u0000\u0000\u0000\u021c\u021d\u0005G\u0000\u0000\u021d\u0220"+ "\u0001\u0000\u0000\u0000\u021e\u0220\u0003x<\u0000\u021f\u0202\u0001\u0000"+ "\u0000\u0000\u021f\u0205\u0001\u0000\u0000\u0000\u021f\u0206\u0001\u0000"+ "\u0000\u0000\u021f\u0207\u0001\u0000\u0000\u0000\u021f\u0217\u0001\u0000"+ "\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u0220\u0229\u0001\u0000"+ - "\u0000\u0000\u0221\u0222\n\u0005\u0000\u0000\u0222\u0223\u0005:\u0000"+ + "\u0000\u0000\u0221\u0222\n\u0005\u0000\u0000\u0222\u0223\u00056\u0000"+ "\u0000\u0223\u0228\u0003t:\u0006\u0224\u0225\n\u0004\u0000\u0000\u0225"+ - "\u0226\u0005K\u0000\u0000\u0226\u0228\u0003t:\u0005\u0227\u0221\u0001"+ + "\u0226\u0005J\u0000\u0000\u0226\u0228\u0003t:\u0005\u0227\u0221\u0001"+ "\u0000\u0000\u0000\u0227\u0224\u0001\u0000\u0000\u0000\u0228\u022b\u0001"+ "\u0000\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001"+ "\u0000\u0000\u0000\u022au\u0001\u0000\u0000\u0000\u022b\u0229\u0001\u0000"+ - "\u0000\u0000\u022c\u022e\u0003z=\u0000\u022d\u022f\u0005H\u0000\u0000"+ + "\u0000\u0000\u022c\u022e\u0003z=\u0000\u022d\u022f\u0005F\u0000\u0000"+ "\u022e\u022d\u0001\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000"+ - "\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0005G\u0000\u0000\u0231"+ + "\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0005E\u0000\u0000\u0231"+ "\u0232\u0003\u0092I\u0000\u0232\u023b\u0001\u0000\u0000\u0000\u0233\u0235"+ - "\u0003z=\u0000\u0234\u0236\u0005H\u0000\u0000\u0235\u0234\u0001\u0000"+ + "\u0003z=\u0000\u0234\u0236\u0005F\u0000\u0000\u0235\u0234\u0001\u0000"+ "\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0001\u0000"+ - "\u0000\u0000\u0237\u0238\u0005M\u0000\u0000\u0238\u0239\u0003\u0092I\u0000"+ + "\u0000\u0000\u0237\u0238\u0005L\u0000\u0000\u0238\u0239\u0003\u0092I\u0000"+ "\u0239\u023b\u0001\u0000\u0000\u0000\u023a\u022c\u0001\u0000\u0000\u0000"+ "\u023a\u0233\u0001\u0000\u0000\u0000\u023bw\u0001\u0000\u0000\u0000\u023c"+ - "\u023f\u0003*\u0015\u0000\u023d\u023e\u0005=\u0000\u0000\u023e\u0240\u0003"+ + "\u023f\u0003*\u0015\u0000\u023d\u023e\u0005;\u0000\u0000\u023e\u0240\u0003"+ "\n\u0005\u0000\u023f\u023d\u0001\u0000\u0000\u0000\u023f\u0240\u0001\u0000"+ - "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0005>\u0000"+ + "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0005<\u0000"+ "\u0000\u0242\u0243\u0003\u0088D\u0000\u0243y\u0001\u0000\u0000\u0000\u0244"+ "\u024a\u0003|>\u0000\u0245\u0246\u0003|>\u0000\u0246\u0247\u0003\u0094"+ "J\u0000\u0247\u0248\u0003|>\u0000\u0248\u024a\u0001\u0000\u0000\u0000"+ @@ -7130,46 +7131,46 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0264\u025c\u0001\u0000\u0000\u0000\u0264\u025e\u0001\u0000\u0000\u0000"+ "\u0264\u025f\u0001\u0000\u0000\u0000\u0264\u0260\u0001\u0000\u0000\u0000"+ "\u0265\u026b\u0001\u0000\u0000\u0000\u0266\u0267\n\u0001\u0000\u0000\u0267"+ - "\u0268\u0005=\u0000\u0000\u0268\u026a\u0003\n\u0005\u0000\u0269\u0266"+ + "\u0268\u0005;\u0000\u0000\u0268\u026a\u0003\n\u0005\u0000\u0269\u0266"+ "\u0001\u0000\u0000\u0000\u026a\u026d\u0001\u0000\u0000\u0000\u026b\u0269"+ "\u0001\u0000\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u007f"+ "\u0001\u0000\u0000\u0000\u026d\u026b\u0001\u0000\u0000\u0000\u026e\u026f"+ "\u0003\u0082A\u0000\u026f\u027d\u0005b\u0000\u0000\u0270\u027e\u0005X"+ - "\u0000\u0000\u0271\u0276\u0003t:\u0000\u0272\u0273\u0005?\u0000\u0000"+ + "\u0000\u0000\u0271\u0276\u0003t:\u0000\u0272\u0273\u0005=\u0000\u0000"+ "\u0273\u0275\u0003t:\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0275\u0278"+ "\u0001\u0000\u0000\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0276\u0277"+ "\u0001\u0000\u0000\u0000\u0277\u027b\u0001\u0000\u0000\u0000\u0278\u0276"+ - "\u0001\u0000\u0000\u0000\u0279\u027a\u0005?\u0000\u0000\u027a\u027c\u0003"+ + "\u0001\u0000\u0000\u0000\u0279\u027a\u0005=\u0000\u0000\u027a\u027c\u0003"+ "\u0084B\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000"+ "\u0000\u0000\u027c\u027e\u0001\u0000\u0000\u0000\u027d\u0270\u0001\u0000"+ "\u0000\u0000\u027d\u0271\u0001\u0000\u0000\u0000\u027d\u027e\u0001\u0000"+ "\u0000\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0005c\u0000"+ "\u0000\u0280\u0081\u0001\u0000\u0000\u0000\u0281\u0282\u00038\u001c\u0000"+ "\u0282\u0083\u0001\u0000\u0000\u0000\u0283\u0284\u0005[\u0000\u0000\u0284"+ - "\u0289\u0003\u0086C\u0000\u0285\u0286\u0005?\u0000\u0000\u0286\u0288\u0003"+ + "\u0289\u0003\u0086C\u0000\u0285\u0286\u0005=\u0000\u0000\u0286\u0288\u0003"+ "\u0086C\u0000\u0287\u0285\u0001\u0000\u0000\u0000\u0288\u028b\u0001\u0000"+ "\u0000\u0000\u0289\u0287\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000"+ "\u0000\u0000\u028a\u028c\u0001\u0000\u0000\u0000\u028b\u0289\u0001\u0000"+ "\u0000\u0000\u028c\u028d\u0005\\\u0000\u0000\u028d\u0085\u0001\u0000\u0000"+ - "\u0000\u028e\u028f\u0003\u0092I\u0000\u028f\u0290\u0005>\u0000\u0000\u0290"+ + "\u0000\u028e\u028f\u0003\u0092I\u0000\u028f\u0290\u0005<\u0000\u0000\u0290"+ "\u0291\u0003\u0088D\u0000\u0291\u0087\u0001\u0000\u0000\u0000\u0292\u02bd"+ - "\u0005I\u0000\u0000\u0293\u0294\u0003\u0090H\u0000\u0294\u0295\u0005d"+ + "\u0005G\u0000\u0000\u0293\u0294\u0003\u0090H\u0000\u0294\u0295\u0005d"+ "\u0000\u0000\u0295\u02bd\u0001\u0000\u0000\u0000\u0296\u02bd\u0003\u008e"+ "G\u0000\u0297\u02bd\u0003\u0090H\u0000\u0298\u02bd\u0003\u008aE\u0000"+ "\u0299\u02bd\u00034\u001a\u0000\u029a\u02bd\u0003\u0092I\u0000\u029b\u029c"+ - "\u0005`\u0000\u0000\u029c\u02a1\u0003\u008cF\u0000\u029d\u029e\u0005?"+ + "\u0005`\u0000\u0000\u029c\u02a1\u0003\u008cF\u0000\u029d\u029e\u0005="+ "\u0000\u0000\u029e\u02a0\u0003\u008cF\u0000\u029f\u029d\u0001\u0000\u0000"+ "\u0000\u02a0\u02a3\u0001\u0000\u0000\u0000\u02a1\u029f\u0001\u0000\u0000"+ "\u0000\u02a1\u02a2\u0001\u0000\u0000\u0000\u02a2\u02a4\u0001\u0000\u0000"+ "\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005a\u0000\u0000"+ "\u02a5\u02bd\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005`\u0000\u0000\u02a7"+ - "\u02ac\u0003\u008aE\u0000\u02a8\u02a9\u0005?\u0000\u0000\u02a9\u02ab\u0003"+ + "\u02ac\u0003\u008aE\u0000\u02a8\u02a9\u0005=\u0000\u0000\u02a9\u02ab\u0003"+ "\u008aE\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02ab\u02ae\u0001\u0000"+ "\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001\u0000"+ "\u0000\u0000\u02ad\u02af\u0001\u0000\u0000\u0000\u02ae\u02ac\u0001\u0000"+ "\u0000\u0000\u02af\u02b0\u0005a\u0000\u0000\u02b0\u02bd\u0001\u0000\u0000"+ "\u0000\u02b1\u02b2\u0005`\u0000\u0000\u02b2\u02b7\u0003\u0092I\u0000\u02b3"+ - "\u02b4\u0005?\u0000\u0000\u02b4\u02b6\u0003\u0092I\u0000\u02b5\u02b3\u0001"+ + "\u02b4\u0005=\u0000\u0000\u02b4\u02b6\u0003\u0092I\u0000\u02b5\u02b3\u0001"+ "\u0000\u0000\u0000\u02b6\u02b9\u0001\u0000\u0000\u0000\u02b7\u02b5\u0001"+ "\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02ba\u0001"+ "\u0000\u0000\u0000\u02b9\u02b7\u0001\u0000\u0000\u0000\u02ba\u02bb\u0005"+ @@ -7193,8 +7194,8 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in "\u0000\u0000\u0000\u02d2\u02d3\u0007\b\u0000\u0000\u02d3\u02d4\u0005q"+ "\u0000\u0000\u02d4\u02d5\u0003\u0098L\u0000\u02d5\u02d6\u0003\u009aM\u0000"+ "\u02d6\u0097\u0001\u0000\u0000\u0000\u02d7\u02d8\u0003\u0018\f\u0000\u02d8"+ - "\u0099\u0001\u0000\u0000\u0000\u02d9\u02da\u00057\u0000\u0000\u02da\u02df"+ - "\u0003\u009cN\u0000\u02db\u02dc\u0005?\u0000\u0000\u02dc\u02de\u0003\u009c"+ + "\u0099\u0001\u0000\u0000\u0000\u02d9\u02da\u0005I\u0000\u0000\u02da\u02df"+ + "\u0003\u009cN\u0000\u02db\u02dc\u0005=\u0000\u0000\u02dc\u02de\u0003\u009c"+ "N\u0000\u02dd\u02db\u0001\u0000\u0000\u0000\u02de\u02e1\u0001\u0000\u0000"+ "\u0000\u02df\u02dd\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000"+ "\u0000\u02e0\u009b\u0001\u0000\u0000\u0000\u02e1\u02df\u0001\u0000\u0000"+ From c998b38d2275ea7d54dc62d172db6034f900f7b0 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 26 Mar 2025 14:18:05 +0100 Subject: [PATCH 59/75] Fix StatementParserTests for reranking. --- .../xpack/esql/parser/StatementParserTests.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index b800b63840f09..96fd34514d60d 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3397,8 +3397,13 @@ public void testInvalidRerank() { ); expectError( - "FROM foo* | RERANK \"query text\" ON title", - "line 1:42: mismatched input '' expecting {'with', 'and', '::', ',', '.', 'or', '+', '-', '*', '/', '%'}" + "FROM foo* | RERANK \"query text\" WITH inferenceId", + "line 1:33: mismatched input 'WITH' expecting 'on'" + ); + + expectError( + "FROM foo* | RERANK \"query text\" ON title", + "line 1:41: mismatched input '' expecting {'and', '::', ',', '.', 'or', 'with', '+', '-', '*', '/', '%'}" ); } From 62e42a52508cc7df49baa0dae87c299a43a401c4 Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Wed, 26 Mar 2025 13:27:26 +0000 Subject: [PATCH 60/75] [CI] Auto commit changes from spotless --- .../xpack/esql/parser/StatementParserTests.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index 96fd34514d60d..f9e2fbe786fbe 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3396,10 +3396,7 @@ public void testInvalidRerank() { "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING, '?', NAMED_OR_POSITIONAL_PARAM}" ); - expectError( - "FROM foo* | RERANK \"query text\" WITH inferenceId", - "line 1:33: mismatched input 'WITH' expecting 'on'" - ); + expectError("FROM foo* | RERANK \"query text\" WITH inferenceId", "line 1:33: mismatched input 'WITH' expecting 'on'"); expectError( "FROM foo* | RERANK \"query text\" ON title", From a151971c0165370f2e10f1e0f0a758f46408ac2e Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 26 Mar 2025 17:33:31 +0100 Subject: [PATCH 61/75] Improved grammar for the RERANK command. --- .../src/main/resources/rerank.csv-spec | 10 +- .../esql/src/main/antlr/EsqlBaseParser.g4 | 7 +- .../xpack/esql/parser/EsqlBaseParser.interp | 3 +- .../xpack/esql/parser/EsqlBaseParser.java | 2016 ++++++++--------- .../parser/EsqlBaseParserBaseListener.java | 12 - .../parser/EsqlBaseParserBaseVisitor.java | 7 - .../esql/parser/EsqlBaseParserListener.java | 10 - .../esql/parser/EsqlBaseParserVisitor.java | 6 - .../xpack/esql/parser/ExpressionBuilder.java | 24 - .../xpack/esql/parser/LogicalPlanBuilder.java | 48 +- .../xpack/esql/analysis/AnalyzerTests.java | 18 +- .../esql/parser/StatementParserTests.java | 18 +- 12 files changed, 1037 insertions(+), 1142 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 5c2acc0ea427a..710080bbe3cad 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -9,7 +9,7 @@ required_capability: match_function FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH "test_reranker" +| RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score ; @@ -27,7 +27,7 @@ required_capability: match_function FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title, author WITH "test_reranker" +| RERANK "war and peace" ON title, author WITH test_reranker | KEEP book_no, title, author, _score ; @@ -47,7 +47,7 @@ FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" | SORT _score DESC | LIMIT 3 -| RERANK "war and peace" ON title WITH "test_reranker" +| RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score ; @@ -64,7 +64,7 @@ required_capability: match_function FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH "test_reranker" +| RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score | LIMIT 3 ; @@ -82,7 +82,7 @@ required_capability: match_function FROM books | WHERE title:"war and peace" AND author:"Tolstoy" -| RERANK "war and peace" ON title WITH "test_reranker" +| RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score ; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 079eb572ad6be..08f1546cfd054 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -176,11 +176,6 @@ identifierOrParameter | {this.isDevVersion()}? doubleParameter ; -stringOrParameter - : string - | parameter - ; - limitCommand : LIMIT INTEGER_LITERAL ; @@ -296,5 +291,5 @@ rrfCommand ; rerankCommand - : DEV_RERANK queryText=stringOrParameter ON fields WITH inferenceId=stringOrParameter + : DEV_RERANK queryText=constant ON fields WITH inferenceId=identifierOrParameter ; 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 656256e7a65e0..f8e7859b5d649 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 @@ -308,7 +308,6 @@ identifierPattern parameter doubleParameter identifierOrParameter -stringOrParameter limitCommand sortCommand orderExpression @@ -361,4 +360,4 @@ joinPredicate atn: -[4, 1, 137, 741, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 168, 8, 1, 10, 1, 12, 1, 171, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 179, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 208, 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, 221, 8, 7, 10, 7, 12, 7, 224, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 229, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 242, 8, 11, 10, 11, 12, 11, 245, 9, 11, 1, 11, 3, 11, 248, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 253, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 260, 8, 12, 3, 12, 262, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 274, 8, 16, 10, 16, 12, 16, 277, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 284, 8, 18, 1, 18, 1, 18, 3, 18, 288, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 293, 8, 19, 10, 19, 12, 19, 296, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 301, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 306, 8, 21, 10, 21, 12, 21, 309, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 314, 8, 22, 10, 22, 12, 22, 317, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 322, 8, 23, 10, 23, 12, 23, 325, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 333, 8, 25, 1, 26, 1, 26, 3, 26, 337, 8, 26, 1, 27, 1, 27, 3, 27, 341, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 347, 8, 28, 1, 29, 1, 29, 3, 29, 351, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 5, 31, 360, 8, 31, 10, 31, 12, 31, 363, 9, 31, 1, 32, 1, 32, 3, 32, 367, 8, 32, 1, 32, 1, 32, 3, 32, 371, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 383, 8, 35, 10, 35, 12, 35, 386, 9, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 396, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 5, 40, 408, 8, 40, 10, 40, 12, 40, 411, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 431, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 437, 8, 45, 10, 45, 12, 45, 440, 9, 45, 3, 45, 442, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 447, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 460, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 466, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 473, 8, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 52, 4, 52, 482, 8, 52, 11, 52, 12, 52, 483, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 496, 8, 54, 10, 54, 12, 54, 499, 9, 54, 1, 55, 1, 55, 1, 55, 3, 55, 504, 8, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 522, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 529, 8, 58, 10, 58, 12, 58, 532, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 539, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 544, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 552, 8, 58, 10, 58, 12, 58, 555, 9, 58, 1, 59, 1, 59, 3, 59, 559, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 566, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 571, 8, 59, 1, 60, 1, 60, 1, 60, 3, 60, 576, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 586, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 592, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 600, 8, 62, 10, 62, 12, 62, 603, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 613, 8, 63, 1, 63, 1, 63, 1, 63, 5, 63, 618, 8, 63, 10, 63, 12, 63, 621, 9, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 629, 8, 64, 10, 64, 12, 64, 632, 9, 64, 1, 64, 1, 64, 3, 64, 636, 8, 64, 3, 64, 638, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 648, 8, 66, 10, 66, 12, 66, 651, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 672, 8, 68, 10, 68, 12, 68, 675, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 683, 8, 68, 10, 68, 12, 68, 686, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 694, 8, 68, 10, 68, 12, 68, 697, 9, 68, 1, 68, 1, 68, 3, 68, 701, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 707, 8, 70, 1, 71, 3, 71, 710, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 715, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 734, 8, 77, 10, 77, 12, 77, 737, 9, 77, 1, 78, 1, 78, 1, 78, 0, 5, 2, 108, 116, 124, 126, 79, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 0, 9, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 56, 56, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 20, 20, 22, 23, 767, 0, 158, 1, 0, 0, 0, 2, 161, 1, 0, 0, 0, 4, 178, 1, 0, 0, 0, 6, 207, 1, 0, 0, 0, 8, 209, 1, 0, 0, 0, 10, 212, 1, 0, 0, 0, 12, 214, 1, 0, 0, 0, 14, 217, 1, 0, 0, 0, 16, 228, 1, 0, 0, 0, 18, 232, 1, 0, 0, 0, 20, 235, 1, 0, 0, 0, 22, 238, 1, 0, 0, 0, 24, 261, 1, 0, 0, 0, 26, 263, 1, 0, 0, 0, 28, 265, 1, 0, 0, 0, 30, 267, 1, 0, 0, 0, 32, 269, 1, 0, 0, 0, 34, 278, 1, 0, 0, 0, 36, 281, 1, 0, 0, 0, 38, 289, 1, 0, 0, 0, 40, 297, 1, 0, 0, 0, 42, 302, 1, 0, 0, 0, 44, 310, 1, 0, 0, 0, 46, 318, 1, 0, 0, 0, 48, 326, 1, 0, 0, 0, 50, 332, 1, 0, 0, 0, 52, 336, 1, 0, 0, 0, 54, 340, 1, 0, 0, 0, 56, 346, 1, 0, 0, 0, 58, 350, 1, 0, 0, 0, 60, 352, 1, 0, 0, 0, 62, 355, 1, 0, 0, 0, 64, 364, 1, 0, 0, 0, 66, 372, 1, 0, 0, 0, 68, 375, 1, 0, 0, 0, 70, 378, 1, 0, 0, 0, 72, 387, 1, 0, 0, 0, 74, 391, 1, 0, 0, 0, 76, 397, 1, 0, 0, 0, 78, 401, 1, 0, 0, 0, 80, 404, 1, 0, 0, 0, 82, 412, 1, 0, 0, 0, 84, 416, 1, 0, 0, 0, 86, 419, 1, 0, 0, 0, 88, 423, 1, 0, 0, 0, 90, 426, 1, 0, 0, 0, 92, 446, 1, 0, 0, 0, 94, 450, 1, 0, 0, 0, 96, 455, 1, 0, 0, 0, 98, 461, 1, 0, 0, 0, 100, 474, 1, 0, 0, 0, 102, 477, 1, 0, 0, 0, 104, 481, 1, 0, 0, 0, 106, 485, 1, 0, 0, 0, 108, 489, 1, 0, 0, 0, 110, 503, 1, 0, 0, 0, 112, 505, 1, 0, 0, 0, 114, 507, 1, 0, 0, 0, 116, 543, 1, 0, 0, 0, 118, 570, 1, 0, 0, 0, 120, 572, 1, 0, 0, 0, 122, 585, 1, 0, 0, 0, 124, 591, 1, 0, 0, 0, 126, 612, 1, 0, 0, 0, 128, 622, 1, 0, 0, 0, 130, 641, 1, 0, 0, 0, 132, 643, 1, 0, 0, 0, 134, 654, 1, 0, 0, 0, 136, 700, 1, 0, 0, 0, 138, 702, 1, 0, 0, 0, 140, 706, 1, 0, 0, 0, 142, 709, 1, 0, 0, 0, 144, 714, 1, 0, 0, 0, 146, 718, 1, 0, 0, 0, 148, 720, 1, 0, 0, 0, 150, 722, 1, 0, 0, 0, 152, 727, 1, 0, 0, 0, 154, 729, 1, 0, 0, 0, 156, 738, 1, 0, 0, 0, 158, 159, 3, 2, 1, 0, 159, 160, 5, 0, 0, 1, 160, 1, 1, 0, 0, 0, 161, 162, 6, 1, -1, 0, 162, 163, 3, 4, 2, 0, 163, 169, 1, 0, 0, 0, 164, 165, 10, 1, 0, 0, 165, 166, 5, 50, 0, 0, 166, 168, 3, 6, 3, 0, 167, 164, 1, 0, 0, 0, 168, 171, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 169, 170, 1, 0, 0, 0, 170, 3, 1, 0, 0, 0, 171, 169, 1, 0, 0, 0, 172, 179, 3, 84, 42, 0, 173, 179, 3, 18, 9, 0, 174, 179, 3, 12, 6, 0, 175, 179, 3, 88, 44, 0, 176, 177, 4, 2, 1, 0, 177, 179, 3, 20, 10, 0, 178, 172, 1, 0, 0, 0, 178, 173, 1, 0, 0, 0, 178, 174, 1, 0, 0, 0, 178, 175, 1, 0, 0, 0, 178, 176, 1, 0, 0, 0, 179, 5, 1, 0, 0, 0, 180, 208, 3, 34, 17, 0, 181, 208, 3, 8, 4, 0, 182, 208, 3, 66, 33, 0, 183, 208, 3, 60, 30, 0, 184, 208, 3, 36, 18, 0, 185, 208, 3, 62, 31, 0, 186, 208, 3, 68, 34, 0, 187, 208, 3, 70, 35, 0, 188, 208, 3, 74, 37, 0, 189, 208, 3, 76, 38, 0, 190, 208, 3, 90, 45, 0, 191, 208, 3, 78, 39, 0, 192, 208, 3, 150, 75, 0, 193, 194, 4, 3, 2, 0, 194, 208, 3, 96, 48, 0, 195, 196, 4, 3, 3, 0, 196, 208, 3, 94, 47, 0, 197, 198, 4, 3, 4, 0, 198, 208, 3, 98, 49, 0, 199, 200, 4, 3, 5, 0, 200, 208, 3, 100, 50, 0, 201, 202, 4, 3, 6, 0, 202, 208, 3, 102, 51, 0, 203, 204, 4, 3, 7, 0, 204, 208, 3, 114, 57, 0, 205, 206, 4, 3, 8, 0, 206, 208, 3, 112, 56, 0, 207, 180, 1, 0, 0, 0, 207, 181, 1, 0, 0, 0, 207, 182, 1, 0, 0, 0, 207, 183, 1, 0, 0, 0, 207, 184, 1, 0, 0, 0, 207, 185, 1, 0, 0, 0, 207, 186, 1, 0, 0, 0, 207, 187, 1, 0, 0, 0, 207, 188, 1, 0, 0, 0, 207, 189, 1, 0, 0, 0, 207, 190, 1, 0, 0, 0, 207, 191, 1, 0, 0, 0, 207, 192, 1, 0, 0, 0, 207, 193, 1, 0, 0, 0, 207, 195, 1, 0, 0, 0, 207, 197, 1, 0, 0, 0, 207, 199, 1, 0, 0, 0, 207, 201, 1, 0, 0, 0, 207, 203, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 208, 7, 1, 0, 0, 0, 209, 210, 5, 14, 0, 0, 210, 211, 3, 116, 58, 0, 211, 9, 1, 0, 0, 0, 212, 213, 3, 48, 24, 0, 213, 11, 1, 0, 0, 0, 214, 215, 5, 11, 0, 0, 215, 216, 3, 14, 7, 0, 216, 13, 1, 0, 0, 0, 217, 222, 3, 16, 8, 0, 218, 219, 5, 61, 0, 0, 219, 221, 3, 16, 8, 0, 220, 218, 1, 0, 0, 0, 221, 224, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 222, 223, 1, 0, 0, 0, 223, 15, 1, 0, 0, 0, 224, 222, 1, 0, 0, 0, 225, 226, 3, 42, 21, 0, 226, 227, 5, 57, 0, 0, 227, 229, 1, 0, 0, 0, 228, 225, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 230, 1, 0, 0, 0, 230, 231, 3, 116, 58, 0, 231, 17, 1, 0, 0, 0, 232, 233, 5, 17, 0, 0, 233, 234, 3, 22, 11, 0, 234, 19, 1, 0, 0, 0, 235, 236, 5, 18, 0, 0, 236, 237, 3, 22, 11, 0, 237, 21, 1, 0, 0, 0, 238, 243, 3, 24, 12, 0, 239, 240, 5, 61, 0, 0, 240, 242, 3, 24, 12, 0, 241, 239, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 247, 1, 0, 0, 0, 245, 243, 1, 0, 0, 0, 246, 248, 3, 32, 16, 0, 247, 246, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 23, 1, 0, 0, 0, 249, 250, 3, 26, 13, 0, 250, 251, 5, 60, 0, 0, 251, 253, 1, 0, 0, 0, 252, 249, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 262, 3, 30, 15, 0, 255, 256, 4, 12, 9, 0, 256, 259, 3, 30, 15, 0, 257, 258, 5, 59, 0, 0, 258, 260, 3, 28, 14, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 262, 1, 0, 0, 0, 261, 252, 1, 0, 0, 0, 261, 255, 1, 0, 0, 0, 262, 25, 1, 0, 0, 0, 263, 264, 7, 0, 0, 0, 264, 27, 1, 0, 0, 0, 265, 266, 7, 0, 0, 0, 266, 29, 1, 0, 0, 0, 267, 268, 7, 0, 0, 0, 268, 31, 1, 0, 0, 0, 269, 270, 5, 105, 0, 0, 270, 275, 5, 106, 0, 0, 271, 272, 5, 61, 0, 0, 272, 274, 5, 106, 0, 0, 273, 271, 1, 0, 0, 0, 274, 277, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 275, 276, 1, 0, 0, 0, 276, 33, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 278, 279, 5, 8, 0, 0, 279, 280, 3, 14, 7, 0, 280, 35, 1, 0, 0, 0, 281, 283, 5, 13, 0, 0, 282, 284, 3, 38, 19, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 287, 1, 0, 0, 0, 285, 286, 5, 58, 0, 0, 286, 288, 3, 14, 7, 0, 287, 285, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 37, 1, 0, 0, 0, 289, 294, 3, 40, 20, 0, 290, 291, 5, 61, 0, 0, 291, 293, 3, 40, 20, 0, 292, 290, 1, 0, 0, 0, 293, 296, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 39, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 297, 300, 3, 16, 8, 0, 298, 299, 5, 14, 0, 0, 299, 301, 3, 116, 58, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 41, 1, 0, 0, 0, 302, 307, 3, 56, 28, 0, 303, 304, 5, 63, 0, 0, 304, 306, 3, 56, 28, 0, 305, 303, 1, 0, 0, 0, 306, 309, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 43, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 315, 3, 50, 25, 0, 311, 312, 5, 63, 0, 0, 312, 314, 3, 50, 25, 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, 45, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 323, 3, 44, 22, 0, 319, 320, 5, 61, 0, 0, 320, 322, 3, 44, 22, 0, 321, 319, 1, 0, 0, 0, 322, 325, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 47, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 326, 327, 7, 1, 0, 0, 327, 49, 1, 0, 0, 0, 328, 333, 5, 127, 0, 0, 329, 333, 3, 52, 26, 0, 330, 331, 4, 25, 10, 0, 331, 333, 3, 54, 27, 0, 332, 328, 1, 0, 0, 0, 332, 329, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 51, 1, 0, 0, 0, 334, 337, 5, 75, 0, 0, 335, 337, 5, 94, 0, 0, 336, 334, 1, 0, 0, 0, 336, 335, 1, 0, 0, 0, 337, 53, 1, 0, 0, 0, 338, 341, 5, 93, 0, 0, 339, 341, 5, 95, 0, 0, 340, 338, 1, 0, 0, 0, 340, 339, 1, 0, 0, 0, 341, 55, 1, 0, 0, 0, 342, 347, 3, 48, 24, 0, 343, 347, 3, 52, 26, 0, 344, 345, 4, 28, 11, 0, 345, 347, 3, 54, 27, 0, 346, 342, 1, 0, 0, 0, 346, 343, 1, 0, 0, 0, 346, 344, 1, 0, 0, 0, 347, 57, 1, 0, 0, 0, 348, 351, 3, 146, 73, 0, 349, 351, 3, 52, 26, 0, 350, 348, 1, 0, 0, 0, 350, 349, 1, 0, 0, 0, 351, 59, 1, 0, 0, 0, 352, 353, 5, 10, 0, 0, 353, 354, 5, 52, 0, 0, 354, 61, 1, 0, 0, 0, 355, 356, 5, 12, 0, 0, 356, 361, 3, 64, 32, 0, 357, 358, 5, 61, 0, 0, 358, 360, 3, 64, 32, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 63, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 366, 3, 116, 58, 0, 365, 367, 7, 2, 0, 0, 366, 365, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 369, 5, 72, 0, 0, 369, 371, 7, 3, 0, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 65, 1, 0, 0, 0, 372, 373, 5, 27, 0, 0, 373, 374, 3, 46, 23, 0, 374, 67, 1, 0, 0, 0, 375, 376, 5, 26, 0, 0, 376, 377, 3, 46, 23, 0, 377, 69, 1, 0, 0, 0, 378, 379, 5, 30, 0, 0, 379, 384, 3, 72, 36, 0, 380, 381, 5, 61, 0, 0, 381, 383, 3, 72, 36, 0, 382, 380, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 71, 1, 0, 0, 0, 386, 384, 1, 0, 0, 0, 387, 388, 3, 44, 22, 0, 388, 389, 5, 55, 0, 0, 389, 390, 3, 44, 22, 0, 390, 73, 1, 0, 0, 0, 391, 392, 5, 7, 0, 0, 392, 393, 3, 126, 63, 0, 393, 395, 3, 146, 73, 0, 394, 396, 3, 80, 40, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 75, 1, 0, 0, 0, 397, 398, 5, 9, 0, 0, 398, 399, 3, 126, 63, 0, 399, 400, 3, 146, 73, 0, 400, 77, 1, 0, 0, 0, 401, 402, 5, 25, 0, 0, 402, 403, 3, 42, 21, 0, 403, 79, 1, 0, 0, 0, 404, 409, 3, 82, 41, 0, 405, 406, 5, 61, 0, 0, 406, 408, 3, 82, 41, 0, 407, 405, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 81, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 413, 3, 48, 24, 0, 413, 414, 5, 57, 0, 0, 414, 415, 3, 136, 68, 0, 415, 83, 1, 0, 0, 0, 416, 417, 5, 6, 0, 0, 417, 418, 3, 86, 43, 0, 418, 85, 1, 0, 0, 0, 419, 420, 5, 96, 0, 0, 420, 421, 3, 2, 1, 0, 421, 422, 5, 97, 0, 0, 422, 87, 1, 0, 0, 0, 423, 424, 5, 31, 0, 0, 424, 425, 5, 134, 0, 0, 425, 89, 1, 0, 0, 0, 426, 427, 5, 5, 0, 0, 427, 430, 5, 36, 0, 0, 428, 429, 5, 73, 0, 0, 429, 431, 3, 44, 22, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 441, 1, 0, 0, 0, 432, 433, 5, 78, 0, 0, 433, 438, 3, 92, 46, 0, 434, 435, 5, 61, 0, 0, 435, 437, 3, 92, 46, 0, 436, 434, 1, 0, 0, 0, 437, 440, 1, 0, 0, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 442, 1, 0, 0, 0, 440, 438, 1, 0, 0, 0, 441, 432, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 91, 1, 0, 0, 0, 443, 444, 3, 44, 22, 0, 444, 445, 5, 57, 0, 0, 445, 447, 1, 0, 0, 0, 446, 443, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 3, 44, 22, 0, 449, 93, 1, 0, 0, 0, 450, 451, 5, 24, 0, 0, 451, 452, 3, 24, 12, 0, 452, 453, 5, 73, 0, 0, 453, 454, 3, 46, 23, 0, 454, 95, 1, 0, 0, 0, 455, 456, 5, 15, 0, 0, 456, 459, 3, 38, 19, 0, 457, 458, 5, 58, 0, 0, 458, 460, 3, 14, 7, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 97, 1, 0, 0, 0, 461, 462, 5, 4, 0, 0, 462, 465, 3, 42, 21, 0, 463, 464, 5, 73, 0, 0, 464, 466, 3, 42, 21, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 472, 1, 0, 0, 0, 467, 468, 5, 55, 0, 0, 468, 469, 3, 42, 21, 0, 469, 470, 5, 61, 0, 0, 470, 471, 3, 42, 21, 0, 471, 473, 1, 0, 0, 0, 472, 467, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 99, 1, 0, 0, 0, 474, 475, 5, 28, 0, 0, 475, 476, 3, 46, 23, 0, 476, 101, 1, 0, 0, 0, 477, 478, 5, 19, 0, 0, 478, 479, 3, 104, 52, 0, 479, 103, 1, 0, 0, 0, 480, 482, 3, 106, 53, 0, 481, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 105, 1, 0, 0, 0, 485, 486, 5, 98, 0, 0, 486, 487, 3, 108, 54, 0, 487, 488, 5, 99, 0, 0, 488, 107, 1, 0, 0, 0, 489, 490, 6, 54, -1, 0, 490, 491, 3, 110, 55, 0, 491, 497, 1, 0, 0, 0, 492, 493, 10, 1, 0, 0, 493, 494, 5, 50, 0, 0, 494, 496, 3, 110, 55, 0, 495, 492, 1, 0, 0, 0, 496, 499, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 109, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 3, 8, 4, 0, 501, 504, 3, 62, 31, 0, 502, 504, 3, 60, 30, 0, 503, 500, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 502, 1, 0, 0, 0, 504, 111, 1, 0, 0, 0, 505, 506, 5, 29, 0, 0, 506, 113, 1, 0, 0, 0, 507, 508, 5, 16, 0, 0, 508, 509, 3, 58, 29, 0, 509, 510, 5, 73, 0, 0, 510, 511, 3, 14, 7, 0, 511, 512, 5, 78, 0, 0, 512, 513, 3, 58, 29, 0, 513, 115, 1, 0, 0, 0, 514, 515, 6, 58, -1, 0, 515, 516, 5, 70, 0, 0, 516, 544, 3, 116, 58, 8, 517, 544, 3, 122, 61, 0, 518, 544, 3, 118, 59, 0, 519, 521, 3, 122, 61, 0, 520, 522, 5, 70, 0, 0, 521, 520, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 524, 5, 66, 0, 0, 524, 525, 5, 98, 0, 0, 525, 530, 3, 122, 61, 0, 526, 527, 5, 61, 0, 0, 527, 529, 3, 122, 61, 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, 533, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 533, 534, 5, 99, 0, 0, 534, 544, 1, 0, 0, 0, 535, 536, 3, 122, 61, 0, 536, 538, 5, 67, 0, 0, 537, 539, 5, 70, 0, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 5, 71, 0, 0, 541, 544, 1, 0, 0, 0, 542, 544, 3, 120, 60, 0, 543, 514, 1, 0, 0, 0, 543, 517, 1, 0, 0, 0, 543, 518, 1, 0, 0, 0, 543, 519, 1, 0, 0, 0, 543, 535, 1, 0, 0, 0, 543, 542, 1, 0, 0, 0, 544, 553, 1, 0, 0, 0, 545, 546, 10, 5, 0, 0, 546, 547, 5, 54, 0, 0, 547, 552, 3, 116, 58, 6, 548, 549, 10, 4, 0, 0, 549, 550, 5, 74, 0, 0, 550, 552, 3, 116, 58, 5, 551, 545, 1, 0, 0, 0, 551, 548, 1, 0, 0, 0, 552, 555, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 117, 1, 0, 0, 0, 555, 553, 1, 0, 0, 0, 556, 558, 3, 122, 61, 0, 557, 559, 5, 70, 0, 0, 558, 557, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 5, 69, 0, 0, 561, 562, 3, 146, 73, 0, 562, 571, 1, 0, 0, 0, 563, 565, 3, 122, 61, 0, 564, 566, 5, 70, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 568, 5, 76, 0, 0, 568, 569, 3, 146, 73, 0, 569, 571, 1, 0, 0, 0, 570, 556, 1, 0, 0, 0, 570, 563, 1, 0, 0, 0, 571, 119, 1, 0, 0, 0, 572, 575, 3, 42, 21, 0, 573, 574, 5, 59, 0, 0, 574, 576, 3, 10, 5, 0, 575, 573, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 5, 60, 0, 0, 578, 579, 3, 136, 68, 0, 579, 121, 1, 0, 0, 0, 580, 586, 3, 124, 62, 0, 581, 582, 3, 124, 62, 0, 582, 583, 3, 148, 74, 0, 583, 584, 3, 124, 62, 0, 584, 586, 1, 0, 0, 0, 585, 580, 1, 0, 0, 0, 585, 581, 1, 0, 0, 0, 586, 123, 1, 0, 0, 0, 587, 588, 6, 62, -1, 0, 588, 592, 3, 126, 63, 0, 589, 590, 7, 4, 0, 0, 590, 592, 3, 124, 62, 3, 591, 587, 1, 0, 0, 0, 591, 589, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 594, 10, 2, 0, 0, 594, 595, 7, 5, 0, 0, 595, 600, 3, 124, 62, 3, 596, 597, 10, 1, 0, 0, 597, 598, 7, 4, 0, 0, 598, 600, 3, 124, 62, 2, 599, 593, 1, 0, 0, 0, 599, 596, 1, 0, 0, 0, 600, 603, 1, 0, 0, 0, 601, 599, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 125, 1, 0, 0, 0, 603, 601, 1, 0, 0, 0, 604, 605, 6, 63, -1, 0, 605, 613, 3, 136, 68, 0, 606, 613, 3, 42, 21, 0, 607, 613, 3, 128, 64, 0, 608, 609, 5, 98, 0, 0, 609, 610, 3, 116, 58, 0, 610, 611, 5, 99, 0, 0, 611, 613, 1, 0, 0, 0, 612, 604, 1, 0, 0, 0, 612, 606, 1, 0, 0, 0, 612, 607, 1, 0, 0, 0, 612, 608, 1, 0, 0, 0, 613, 619, 1, 0, 0, 0, 614, 615, 10, 1, 0, 0, 615, 616, 5, 59, 0, 0, 616, 618, 3, 10, 5, 0, 617, 614, 1, 0, 0, 0, 618, 621, 1, 0, 0, 0, 619, 617, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 127, 1, 0, 0, 0, 621, 619, 1, 0, 0, 0, 622, 623, 3, 130, 65, 0, 623, 637, 5, 98, 0, 0, 624, 638, 5, 88, 0, 0, 625, 630, 3, 116, 58, 0, 626, 627, 5, 61, 0, 0, 627, 629, 3, 116, 58, 0, 628, 626, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 635, 1, 0, 0, 0, 632, 630, 1, 0, 0, 0, 633, 634, 5, 61, 0, 0, 634, 636, 3, 132, 66, 0, 635, 633, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 1, 0, 0, 0, 637, 624, 1, 0, 0, 0, 637, 625, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 5, 99, 0, 0, 640, 129, 1, 0, 0, 0, 641, 642, 3, 56, 28, 0, 642, 131, 1, 0, 0, 0, 643, 644, 5, 91, 0, 0, 644, 649, 3, 134, 67, 0, 645, 646, 5, 61, 0, 0, 646, 648, 3, 134, 67, 0, 647, 645, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 652, 653, 5, 92, 0, 0, 653, 133, 1, 0, 0, 0, 654, 655, 3, 146, 73, 0, 655, 656, 5, 60, 0, 0, 656, 657, 3, 136, 68, 0, 657, 135, 1, 0, 0, 0, 658, 701, 5, 71, 0, 0, 659, 660, 3, 144, 72, 0, 660, 661, 5, 100, 0, 0, 661, 701, 1, 0, 0, 0, 662, 701, 3, 142, 71, 0, 663, 701, 3, 144, 72, 0, 664, 701, 3, 138, 69, 0, 665, 701, 3, 52, 26, 0, 666, 701, 3, 146, 73, 0, 667, 668, 5, 96, 0, 0, 668, 673, 3, 140, 70, 0, 669, 670, 5, 61, 0, 0, 670, 672, 3, 140, 70, 0, 671, 669, 1, 0, 0, 0, 672, 675, 1, 0, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 1, 0, 0, 0, 675, 673, 1, 0, 0, 0, 676, 677, 5, 97, 0, 0, 677, 701, 1, 0, 0, 0, 678, 679, 5, 96, 0, 0, 679, 684, 3, 138, 69, 0, 680, 681, 5, 61, 0, 0, 681, 683, 3, 138, 69, 0, 682, 680, 1, 0, 0, 0, 683, 686, 1, 0, 0, 0, 684, 682, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 687, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 687, 688, 5, 97, 0, 0, 688, 701, 1, 0, 0, 0, 689, 690, 5, 96, 0, 0, 690, 695, 3, 146, 73, 0, 691, 692, 5, 61, 0, 0, 692, 694, 3, 146, 73, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 97, 0, 0, 699, 701, 1, 0, 0, 0, 700, 658, 1, 0, 0, 0, 700, 659, 1, 0, 0, 0, 700, 662, 1, 0, 0, 0, 700, 663, 1, 0, 0, 0, 700, 664, 1, 0, 0, 0, 700, 665, 1, 0, 0, 0, 700, 666, 1, 0, 0, 0, 700, 667, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 689, 1, 0, 0, 0, 701, 137, 1, 0, 0, 0, 702, 703, 7, 6, 0, 0, 703, 139, 1, 0, 0, 0, 704, 707, 3, 142, 71, 0, 705, 707, 3, 144, 72, 0, 706, 704, 1, 0, 0, 0, 706, 705, 1, 0, 0, 0, 707, 141, 1, 0, 0, 0, 708, 710, 7, 4, 0, 0, 709, 708, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 53, 0, 0, 712, 143, 1, 0, 0, 0, 713, 715, 7, 4, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 52, 0, 0, 717, 145, 1, 0, 0, 0, 718, 719, 5, 51, 0, 0, 719, 147, 1, 0, 0, 0, 720, 721, 7, 7, 0, 0, 721, 149, 1, 0, 0, 0, 722, 723, 7, 8, 0, 0, 723, 724, 5, 113, 0, 0, 724, 725, 3, 152, 76, 0, 725, 726, 3, 154, 77, 0, 726, 151, 1, 0, 0, 0, 727, 728, 3, 24, 12, 0, 728, 153, 1, 0, 0, 0, 729, 730, 5, 73, 0, 0, 730, 735, 3, 156, 78, 0, 731, 732, 5, 61, 0, 0, 732, 734, 3, 156, 78, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 155, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 739, 3, 122, 61, 0, 739, 157, 1, 0, 0, 0, 67, 169, 178, 207, 222, 228, 243, 247, 252, 259, 261, 275, 283, 287, 294, 300, 307, 315, 323, 332, 336, 340, 346, 350, 361, 366, 370, 384, 395, 409, 430, 438, 441, 446, 459, 465, 472, 483, 497, 503, 521, 530, 538, 543, 551, 553, 558, 565, 570, 575, 585, 591, 599, 601, 612, 619, 630, 635, 637, 649, 673, 684, 695, 700, 706, 709, 714, 735] \ No newline at end of file +[4, 1, 137, 735, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 166, 8, 1, 10, 1, 12, 1, 169, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 177, 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, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 206, 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, 219, 8, 7, 10, 7, 12, 7, 222, 9, 7, 1, 8, 1, 8, 1, 8, 3, 8, 227, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 5, 11, 240, 8, 11, 10, 11, 12, 11, 243, 9, 11, 1, 11, 3, 11, 246, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 251, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 258, 8, 12, 3, 12, 260, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 272, 8, 16, 10, 16, 12, 16, 275, 9, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 3, 18, 282, 8, 18, 1, 18, 1, 18, 3, 18, 286, 8, 18, 1, 19, 1, 19, 1, 19, 5, 19, 291, 8, 19, 10, 19, 12, 19, 294, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 299, 8, 20, 1, 21, 1, 21, 1, 21, 5, 21, 304, 8, 21, 10, 21, 12, 21, 307, 9, 21, 1, 22, 1, 22, 1, 22, 5, 22, 312, 8, 22, 10, 22, 12, 22, 315, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 320, 8, 23, 10, 23, 12, 23, 323, 9, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 331, 8, 25, 1, 26, 1, 26, 3, 26, 335, 8, 26, 1, 27, 1, 27, 3, 27, 339, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 345, 8, 28, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 354, 8, 30, 10, 30, 12, 30, 357, 9, 30, 1, 31, 1, 31, 3, 31, 361, 8, 31, 1, 31, 1, 31, 3, 31, 365, 8, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 377, 8, 34, 10, 34, 12, 34, 380, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 390, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 5, 39, 402, 8, 39, 10, 39, 12, 39, 405, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 425, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 431, 8, 44, 10, 44, 12, 44, 434, 9, 44, 3, 44, 436, 8, 44, 1, 45, 1, 45, 1, 45, 3, 45, 441, 8, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 454, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 460, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 467, 8, 48, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 4, 51, 476, 8, 51, 11, 51, 12, 51, 477, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 490, 8, 53, 10, 53, 12, 53, 493, 9, 53, 1, 54, 1, 54, 1, 54, 3, 54, 498, 8, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 516, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 523, 8, 57, 10, 57, 12, 57, 526, 9, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 533, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 538, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 546, 8, 57, 10, 57, 12, 57, 549, 9, 57, 1, 58, 1, 58, 3, 58, 553, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 560, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 565, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 570, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 580, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 586, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 594, 8, 61, 10, 61, 12, 61, 597, 9, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 607, 8, 62, 1, 62, 1, 62, 1, 62, 5, 62, 612, 8, 62, 10, 62, 12, 62, 615, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 623, 8, 63, 10, 63, 12, 63, 626, 9, 63, 1, 63, 1, 63, 3, 63, 630, 8, 63, 3, 63, 632, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 642, 8, 65, 10, 65, 12, 65, 645, 9, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 666, 8, 67, 10, 67, 12, 67, 669, 9, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 677, 8, 67, 10, 67, 12, 67, 680, 9, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 688, 8, 67, 10, 67, 12, 67, 691, 9, 67, 1, 67, 1, 67, 3, 67, 695, 8, 67, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 701, 8, 69, 1, 70, 3, 70, 704, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 709, 8, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 728, 8, 76, 10, 76, 12, 76, 731, 9, 76, 1, 77, 1, 77, 1, 77, 0, 5, 2, 106, 114, 122, 124, 78, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 0, 9, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 56, 56, 62, 62, 2, 0, 65, 65, 68, 68, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 20, 20, 22, 23, 761, 0, 156, 1, 0, 0, 0, 2, 159, 1, 0, 0, 0, 4, 176, 1, 0, 0, 0, 6, 205, 1, 0, 0, 0, 8, 207, 1, 0, 0, 0, 10, 210, 1, 0, 0, 0, 12, 212, 1, 0, 0, 0, 14, 215, 1, 0, 0, 0, 16, 226, 1, 0, 0, 0, 18, 230, 1, 0, 0, 0, 20, 233, 1, 0, 0, 0, 22, 236, 1, 0, 0, 0, 24, 259, 1, 0, 0, 0, 26, 261, 1, 0, 0, 0, 28, 263, 1, 0, 0, 0, 30, 265, 1, 0, 0, 0, 32, 267, 1, 0, 0, 0, 34, 276, 1, 0, 0, 0, 36, 279, 1, 0, 0, 0, 38, 287, 1, 0, 0, 0, 40, 295, 1, 0, 0, 0, 42, 300, 1, 0, 0, 0, 44, 308, 1, 0, 0, 0, 46, 316, 1, 0, 0, 0, 48, 324, 1, 0, 0, 0, 50, 330, 1, 0, 0, 0, 52, 334, 1, 0, 0, 0, 54, 338, 1, 0, 0, 0, 56, 344, 1, 0, 0, 0, 58, 346, 1, 0, 0, 0, 60, 349, 1, 0, 0, 0, 62, 358, 1, 0, 0, 0, 64, 366, 1, 0, 0, 0, 66, 369, 1, 0, 0, 0, 68, 372, 1, 0, 0, 0, 70, 381, 1, 0, 0, 0, 72, 385, 1, 0, 0, 0, 74, 391, 1, 0, 0, 0, 76, 395, 1, 0, 0, 0, 78, 398, 1, 0, 0, 0, 80, 406, 1, 0, 0, 0, 82, 410, 1, 0, 0, 0, 84, 413, 1, 0, 0, 0, 86, 417, 1, 0, 0, 0, 88, 420, 1, 0, 0, 0, 90, 440, 1, 0, 0, 0, 92, 444, 1, 0, 0, 0, 94, 449, 1, 0, 0, 0, 96, 455, 1, 0, 0, 0, 98, 468, 1, 0, 0, 0, 100, 471, 1, 0, 0, 0, 102, 475, 1, 0, 0, 0, 104, 479, 1, 0, 0, 0, 106, 483, 1, 0, 0, 0, 108, 497, 1, 0, 0, 0, 110, 499, 1, 0, 0, 0, 112, 501, 1, 0, 0, 0, 114, 537, 1, 0, 0, 0, 116, 564, 1, 0, 0, 0, 118, 566, 1, 0, 0, 0, 120, 579, 1, 0, 0, 0, 122, 585, 1, 0, 0, 0, 124, 606, 1, 0, 0, 0, 126, 616, 1, 0, 0, 0, 128, 635, 1, 0, 0, 0, 130, 637, 1, 0, 0, 0, 132, 648, 1, 0, 0, 0, 134, 694, 1, 0, 0, 0, 136, 696, 1, 0, 0, 0, 138, 700, 1, 0, 0, 0, 140, 703, 1, 0, 0, 0, 142, 708, 1, 0, 0, 0, 144, 712, 1, 0, 0, 0, 146, 714, 1, 0, 0, 0, 148, 716, 1, 0, 0, 0, 150, 721, 1, 0, 0, 0, 152, 723, 1, 0, 0, 0, 154, 732, 1, 0, 0, 0, 156, 157, 3, 2, 1, 0, 157, 158, 5, 0, 0, 1, 158, 1, 1, 0, 0, 0, 159, 160, 6, 1, -1, 0, 160, 161, 3, 4, 2, 0, 161, 167, 1, 0, 0, 0, 162, 163, 10, 1, 0, 0, 163, 164, 5, 50, 0, 0, 164, 166, 3, 6, 3, 0, 165, 162, 1, 0, 0, 0, 166, 169, 1, 0, 0, 0, 167, 165, 1, 0, 0, 0, 167, 168, 1, 0, 0, 0, 168, 3, 1, 0, 0, 0, 169, 167, 1, 0, 0, 0, 170, 177, 3, 82, 41, 0, 171, 177, 3, 18, 9, 0, 172, 177, 3, 12, 6, 0, 173, 177, 3, 86, 43, 0, 174, 175, 4, 2, 1, 0, 175, 177, 3, 20, 10, 0, 176, 170, 1, 0, 0, 0, 176, 171, 1, 0, 0, 0, 176, 172, 1, 0, 0, 0, 176, 173, 1, 0, 0, 0, 176, 174, 1, 0, 0, 0, 177, 5, 1, 0, 0, 0, 178, 206, 3, 34, 17, 0, 179, 206, 3, 8, 4, 0, 180, 206, 3, 64, 32, 0, 181, 206, 3, 58, 29, 0, 182, 206, 3, 36, 18, 0, 183, 206, 3, 60, 30, 0, 184, 206, 3, 66, 33, 0, 185, 206, 3, 68, 34, 0, 186, 206, 3, 72, 36, 0, 187, 206, 3, 74, 37, 0, 188, 206, 3, 88, 44, 0, 189, 206, 3, 76, 38, 0, 190, 206, 3, 148, 74, 0, 191, 192, 4, 3, 2, 0, 192, 206, 3, 94, 47, 0, 193, 194, 4, 3, 3, 0, 194, 206, 3, 92, 46, 0, 195, 196, 4, 3, 4, 0, 196, 206, 3, 96, 48, 0, 197, 198, 4, 3, 5, 0, 198, 206, 3, 98, 49, 0, 199, 200, 4, 3, 6, 0, 200, 206, 3, 100, 50, 0, 201, 202, 4, 3, 7, 0, 202, 206, 3, 112, 56, 0, 203, 204, 4, 3, 8, 0, 204, 206, 3, 110, 55, 0, 205, 178, 1, 0, 0, 0, 205, 179, 1, 0, 0, 0, 205, 180, 1, 0, 0, 0, 205, 181, 1, 0, 0, 0, 205, 182, 1, 0, 0, 0, 205, 183, 1, 0, 0, 0, 205, 184, 1, 0, 0, 0, 205, 185, 1, 0, 0, 0, 205, 186, 1, 0, 0, 0, 205, 187, 1, 0, 0, 0, 205, 188, 1, 0, 0, 0, 205, 189, 1, 0, 0, 0, 205, 190, 1, 0, 0, 0, 205, 191, 1, 0, 0, 0, 205, 193, 1, 0, 0, 0, 205, 195, 1, 0, 0, 0, 205, 197, 1, 0, 0, 0, 205, 199, 1, 0, 0, 0, 205, 201, 1, 0, 0, 0, 205, 203, 1, 0, 0, 0, 206, 7, 1, 0, 0, 0, 207, 208, 5, 14, 0, 0, 208, 209, 3, 114, 57, 0, 209, 9, 1, 0, 0, 0, 210, 211, 3, 48, 24, 0, 211, 11, 1, 0, 0, 0, 212, 213, 5, 11, 0, 0, 213, 214, 3, 14, 7, 0, 214, 13, 1, 0, 0, 0, 215, 220, 3, 16, 8, 0, 216, 217, 5, 61, 0, 0, 217, 219, 3, 16, 8, 0, 218, 216, 1, 0, 0, 0, 219, 222, 1, 0, 0, 0, 220, 218, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 15, 1, 0, 0, 0, 222, 220, 1, 0, 0, 0, 223, 224, 3, 42, 21, 0, 224, 225, 5, 57, 0, 0, 225, 227, 1, 0, 0, 0, 226, 223, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 229, 3, 114, 57, 0, 229, 17, 1, 0, 0, 0, 230, 231, 5, 17, 0, 0, 231, 232, 3, 22, 11, 0, 232, 19, 1, 0, 0, 0, 233, 234, 5, 18, 0, 0, 234, 235, 3, 22, 11, 0, 235, 21, 1, 0, 0, 0, 236, 241, 3, 24, 12, 0, 237, 238, 5, 61, 0, 0, 238, 240, 3, 24, 12, 0, 239, 237, 1, 0, 0, 0, 240, 243, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 245, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 246, 3, 32, 16, 0, 245, 244, 1, 0, 0, 0, 245, 246, 1, 0, 0, 0, 246, 23, 1, 0, 0, 0, 247, 248, 3, 26, 13, 0, 248, 249, 5, 60, 0, 0, 249, 251, 1, 0, 0, 0, 250, 247, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 260, 3, 30, 15, 0, 253, 254, 4, 12, 9, 0, 254, 257, 3, 30, 15, 0, 255, 256, 5, 59, 0, 0, 256, 258, 3, 28, 14, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 260, 1, 0, 0, 0, 259, 250, 1, 0, 0, 0, 259, 253, 1, 0, 0, 0, 260, 25, 1, 0, 0, 0, 261, 262, 7, 0, 0, 0, 262, 27, 1, 0, 0, 0, 263, 264, 7, 0, 0, 0, 264, 29, 1, 0, 0, 0, 265, 266, 7, 0, 0, 0, 266, 31, 1, 0, 0, 0, 267, 268, 5, 105, 0, 0, 268, 273, 5, 106, 0, 0, 269, 270, 5, 61, 0, 0, 270, 272, 5, 106, 0, 0, 271, 269, 1, 0, 0, 0, 272, 275, 1, 0, 0, 0, 273, 271, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 33, 1, 0, 0, 0, 275, 273, 1, 0, 0, 0, 276, 277, 5, 8, 0, 0, 277, 278, 3, 14, 7, 0, 278, 35, 1, 0, 0, 0, 279, 281, 5, 13, 0, 0, 280, 282, 3, 38, 19, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 285, 1, 0, 0, 0, 283, 284, 5, 58, 0, 0, 284, 286, 3, 14, 7, 0, 285, 283, 1, 0, 0, 0, 285, 286, 1, 0, 0, 0, 286, 37, 1, 0, 0, 0, 287, 292, 3, 40, 20, 0, 288, 289, 5, 61, 0, 0, 289, 291, 3, 40, 20, 0, 290, 288, 1, 0, 0, 0, 291, 294, 1, 0, 0, 0, 292, 290, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 39, 1, 0, 0, 0, 294, 292, 1, 0, 0, 0, 295, 298, 3, 16, 8, 0, 296, 297, 5, 14, 0, 0, 297, 299, 3, 114, 57, 0, 298, 296, 1, 0, 0, 0, 298, 299, 1, 0, 0, 0, 299, 41, 1, 0, 0, 0, 300, 305, 3, 56, 28, 0, 301, 302, 5, 63, 0, 0, 302, 304, 3, 56, 28, 0, 303, 301, 1, 0, 0, 0, 304, 307, 1, 0, 0, 0, 305, 303, 1, 0, 0, 0, 305, 306, 1, 0, 0, 0, 306, 43, 1, 0, 0, 0, 307, 305, 1, 0, 0, 0, 308, 313, 3, 50, 25, 0, 309, 310, 5, 63, 0, 0, 310, 312, 3, 50, 25, 0, 311, 309, 1, 0, 0, 0, 312, 315, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 45, 1, 0, 0, 0, 315, 313, 1, 0, 0, 0, 316, 321, 3, 44, 22, 0, 317, 318, 5, 61, 0, 0, 318, 320, 3, 44, 22, 0, 319, 317, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 47, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 325, 7, 1, 0, 0, 325, 49, 1, 0, 0, 0, 326, 331, 5, 127, 0, 0, 327, 331, 3, 52, 26, 0, 328, 329, 4, 25, 10, 0, 329, 331, 3, 54, 27, 0, 330, 326, 1, 0, 0, 0, 330, 327, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 331, 51, 1, 0, 0, 0, 332, 335, 5, 75, 0, 0, 333, 335, 5, 94, 0, 0, 334, 332, 1, 0, 0, 0, 334, 333, 1, 0, 0, 0, 335, 53, 1, 0, 0, 0, 336, 339, 5, 93, 0, 0, 337, 339, 5, 95, 0, 0, 338, 336, 1, 0, 0, 0, 338, 337, 1, 0, 0, 0, 339, 55, 1, 0, 0, 0, 340, 345, 3, 48, 24, 0, 341, 345, 3, 52, 26, 0, 342, 343, 4, 28, 11, 0, 343, 345, 3, 54, 27, 0, 344, 340, 1, 0, 0, 0, 344, 341, 1, 0, 0, 0, 344, 342, 1, 0, 0, 0, 345, 57, 1, 0, 0, 0, 346, 347, 5, 10, 0, 0, 347, 348, 5, 52, 0, 0, 348, 59, 1, 0, 0, 0, 349, 350, 5, 12, 0, 0, 350, 355, 3, 62, 31, 0, 351, 352, 5, 61, 0, 0, 352, 354, 3, 62, 31, 0, 353, 351, 1, 0, 0, 0, 354, 357, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 61, 1, 0, 0, 0, 357, 355, 1, 0, 0, 0, 358, 360, 3, 114, 57, 0, 359, 361, 7, 2, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 364, 1, 0, 0, 0, 362, 363, 5, 72, 0, 0, 363, 365, 7, 3, 0, 0, 364, 362, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 63, 1, 0, 0, 0, 366, 367, 5, 27, 0, 0, 367, 368, 3, 46, 23, 0, 368, 65, 1, 0, 0, 0, 369, 370, 5, 26, 0, 0, 370, 371, 3, 46, 23, 0, 371, 67, 1, 0, 0, 0, 372, 373, 5, 30, 0, 0, 373, 378, 3, 70, 35, 0, 374, 375, 5, 61, 0, 0, 375, 377, 3, 70, 35, 0, 376, 374, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 69, 1, 0, 0, 0, 380, 378, 1, 0, 0, 0, 381, 382, 3, 44, 22, 0, 382, 383, 5, 55, 0, 0, 383, 384, 3, 44, 22, 0, 384, 71, 1, 0, 0, 0, 385, 386, 5, 7, 0, 0, 386, 387, 3, 124, 62, 0, 387, 389, 3, 144, 72, 0, 388, 390, 3, 78, 39, 0, 389, 388, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 73, 1, 0, 0, 0, 391, 392, 5, 9, 0, 0, 392, 393, 3, 124, 62, 0, 393, 394, 3, 144, 72, 0, 394, 75, 1, 0, 0, 0, 395, 396, 5, 25, 0, 0, 396, 397, 3, 42, 21, 0, 397, 77, 1, 0, 0, 0, 398, 403, 3, 80, 40, 0, 399, 400, 5, 61, 0, 0, 400, 402, 3, 80, 40, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 79, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 407, 3, 48, 24, 0, 407, 408, 5, 57, 0, 0, 408, 409, 3, 134, 67, 0, 409, 81, 1, 0, 0, 0, 410, 411, 5, 6, 0, 0, 411, 412, 3, 84, 42, 0, 412, 83, 1, 0, 0, 0, 413, 414, 5, 96, 0, 0, 414, 415, 3, 2, 1, 0, 415, 416, 5, 97, 0, 0, 416, 85, 1, 0, 0, 0, 417, 418, 5, 31, 0, 0, 418, 419, 5, 134, 0, 0, 419, 87, 1, 0, 0, 0, 420, 421, 5, 5, 0, 0, 421, 424, 5, 36, 0, 0, 422, 423, 5, 73, 0, 0, 423, 425, 3, 44, 22, 0, 424, 422, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 435, 1, 0, 0, 0, 426, 427, 5, 78, 0, 0, 427, 432, 3, 90, 45, 0, 428, 429, 5, 61, 0, 0, 429, 431, 3, 90, 45, 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, 436, 1, 0, 0, 0, 434, 432, 1, 0, 0, 0, 435, 426, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 89, 1, 0, 0, 0, 437, 438, 3, 44, 22, 0, 438, 439, 5, 57, 0, 0, 439, 441, 1, 0, 0, 0, 440, 437, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 443, 3, 44, 22, 0, 443, 91, 1, 0, 0, 0, 444, 445, 5, 24, 0, 0, 445, 446, 3, 24, 12, 0, 446, 447, 5, 73, 0, 0, 447, 448, 3, 46, 23, 0, 448, 93, 1, 0, 0, 0, 449, 450, 5, 15, 0, 0, 450, 453, 3, 38, 19, 0, 451, 452, 5, 58, 0, 0, 452, 454, 3, 14, 7, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 95, 1, 0, 0, 0, 455, 456, 5, 4, 0, 0, 456, 459, 3, 42, 21, 0, 457, 458, 5, 73, 0, 0, 458, 460, 3, 42, 21, 0, 459, 457, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 466, 1, 0, 0, 0, 461, 462, 5, 55, 0, 0, 462, 463, 3, 42, 21, 0, 463, 464, 5, 61, 0, 0, 464, 465, 3, 42, 21, 0, 465, 467, 1, 0, 0, 0, 466, 461, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 97, 1, 0, 0, 0, 468, 469, 5, 28, 0, 0, 469, 470, 3, 46, 23, 0, 470, 99, 1, 0, 0, 0, 471, 472, 5, 19, 0, 0, 472, 473, 3, 102, 51, 0, 473, 101, 1, 0, 0, 0, 474, 476, 3, 104, 52, 0, 475, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 103, 1, 0, 0, 0, 479, 480, 5, 98, 0, 0, 480, 481, 3, 106, 53, 0, 481, 482, 5, 99, 0, 0, 482, 105, 1, 0, 0, 0, 483, 484, 6, 53, -1, 0, 484, 485, 3, 108, 54, 0, 485, 491, 1, 0, 0, 0, 486, 487, 10, 1, 0, 0, 487, 488, 5, 50, 0, 0, 488, 490, 3, 108, 54, 0, 489, 486, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 107, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 498, 3, 8, 4, 0, 495, 498, 3, 60, 30, 0, 496, 498, 3, 58, 29, 0, 497, 494, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 497, 496, 1, 0, 0, 0, 498, 109, 1, 0, 0, 0, 499, 500, 5, 29, 0, 0, 500, 111, 1, 0, 0, 0, 501, 502, 5, 16, 0, 0, 502, 503, 3, 134, 67, 0, 503, 504, 5, 73, 0, 0, 504, 505, 3, 14, 7, 0, 505, 506, 5, 78, 0, 0, 506, 507, 3, 56, 28, 0, 507, 113, 1, 0, 0, 0, 508, 509, 6, 57, -1, 0, 509, 510, 5, 70, 0, 0, 510, 538, 3, 114, 57, 8, 511, 538, 3, 120, 60, 0, 512, 538, 3, 116, 58, 0, 513, 515, 3, 120, 60, 0, 514, 516, 5, 70, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 5, 66, 0, 0, 518, 519, 5, 98, 0, 0, 519, 524, 3, 120, 60, 0, 520, 521, 5, 61, 0, 0, 521, 523, 3, 120, 60, 0, 522, 520, 1, 0, 0, 0, 523, 526, 1, 0, 0, 0, 524, 522, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 524, 1, 0, 0, 0, 527, 528, 5, 99, 0, 0, 528, 538, 1, 0, 0, 0, 529, 530, 3, 120, 60, 0, 530, 532, 5, 67, 0, 0, 531, 533, 5, 70, 0, 0, 532, 531, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 5, 71, 0, 0, 535, 538, 1, 0, 0, 0, 536, 538, 3, 118, 59, 0, 537, 508, 1, 0, 0, 0, 537, 511, 1, 0, 0, 0, 537, 512, 1, 0, 0, 0, 537, 513, 1, 0, 0, 0, 537, 529, 1, 0, 0, 0, 537, 536, 1, 0, 0, 0, 538, 547, 1, 0, 0, 0, 539, 540, 10, 5, 0, 0, 540, 541, 5, 54, 0, 0, 541, 546, 3, 114, 57, 6, 542, 543, 10, 4, 0, 0, 543, 544, 5, 74, 0, 0, 544, 546, 3, 114, 57, 5, 545, 539, 1, 0, 0, 0, 545, 542, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 545, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 115, 1, 0, 0, 0, 549, 547, 1, 0, 0, 0, 550, 552, 3, 120, 60, 0, 551, 553, 5, 70, 0, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 5, 69, 0, 0, 555, 556, 3, 144, 72, 0, 556, 565, 1, 0, 0, 0, 557, 559, 3, 120, 60, 0, 558, 560, 5, 70, 0, 0, 559, 558, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 5, 76, 0, 0, 562, 563, 3, 144, 72, 0, 563, 565, 1, 0, 0, 0, 564, 550, 1, 0, 0, 0, 564, 557, 1, 0, 0, 0, 565, 117, 1, 0, 0, 0, 566, 569, 3, 42, 21, 0, 567, 568, 5, 59, 0, 0, 568, 570, 3, 10, 5, 0, 569, 567, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 5, 60, 0, 0, 572, 573, 3, 134, 67, 0, 573, 119, 1, 0, 0, 0, 574, 580, 3, 122, 61, 0, 575, 576, 3, 122, 61, 0, 576, 577, 3, 146, 73, 0, 577, 578, 3, 122, 61, 0, 578, 580, 1, 0, 0, 0, 579, 574, 1, 0, 0, 0, 579, 575, 1, 0, 0, 0, 580, 121, 1, 0, 0, 0, 581, 582, 6, 61, -1, 0, 582, 586, 3, 124, 62, 0, 583, 584, 7, 4, 0, 0, 584, 586, 3, 122, 61, 3, 585, 581, 1, 0, 0, 0, 585, 583, 1, 0, 0, 0, 586, 595, 1, 0, 0, 0, 587, 588, 10, 2, 0, 0, 588, 589, 7, 5, 0, 0, 589, 594, 3, 122, 61, 3, 590, 591, 10, 1, 0, 0, 591, 592, 7, 4, 0, 0, 592, 594, 3, 122, 61, 2, 593, 587, 1, 0, 0, 0, 593, 590, 1, 0, 0, 0, 594, 597, 1, 0, 0, 0, 595, 593, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 123, 1, 0, 0, 0, 597, 595, 1, 0, 0, 0, 598, 599, 6, 62, -1, 0, 599, 607, 3, 134, 67, 0, 600, 607, 3, 42, 21, 0, 601, 607, 3, 126, 63, 0, 602, 603, 5, 98, 0, 0, 603, 604, 3, 114, 57, 0, 604, 605, 5, 99, 0, 0, 605, 607, 1, 0, 0, 0, 606, 598, 1, 0, 0, 0, 606, 600, 1, 0, 0, 0, 606, 601, 1, 0, 0, 0, 606, 602, 1, 0, 0, 0, 607, 613, 1, 0, 0, 0, 608, 609, 10, 1, 0, 0, 609, 610, 5, 59, 0, 0, 610, 612, 3, 10, 5, 0, 611, 608, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 125, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 3, 128, 64, 0, 617, 631, 5, 98, 0, 0, 618, 632, 5, 88, 0, 0, 619, 624, 3, 114, 57, 0, 620, 621, 5, 61, 0, 0, 621, 623, 3, 114, 57, 0, 622, 620, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 629, 1, 0, 0, 0, 626, 624, 1, 0, 0, 0, 627, 628, 5, 61, 0, 0, 628, 630, 3, 130, 65, 0, 629, 627, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 632, 1, 0, 0, 0, 631, 618, 1, 0, 0, 0, 631, 619, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 5, 99, 0, 0, 634, 127, 1, 0, 0, 0, 635, 636, 3, 56, 28, 0, 636, 129, 1, 0, 0, 0, 637, 638, 5, 91, 0, 0, 638, 643, 3, 132, 66, 0, 639, 640, 5, 61, 0, 0, 640, 642, 3, 132, 66, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 646, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 647, 5, 92, 0, 0, 647, 131, 1, 0, 0, 0, 648, 649, 3, 144, 72, 0, 649, 650, 5, 60, 0, 0, 650, 651, 3, 134, 67, 0, 651, 133, 1, 0, 0, 0, 652, 695, 5, 71, 0, 0, 653, 654, 3, 142, 71, 0, 654, 655, 5, 100, 0, 0, 655, 695, 1, 0, 0, 0, 656, 695, 3, 140, 70, 0, 657, 695, 3, 142, 71, 0, 658, 695, 3, 136, 68, 0, 659, 695, 3, 52, 26, 0, 660, 695, 3, 144, 72, 0, 661, 662, 5, 96, 0, 0, 662, 667, 3, 138, 69, 0, 663, 664, 5, 61, 0, 0, 664, 666, 3, 138, 69, 0, 665, 663, 1, 0, 0, 0, 666, 669, 1, 0, 0, 0, 667, 665, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 667, 1, 0, 0, 0, 670, 671, 5, 97, 0, 0, 671, 695, 1, 0, 0, 0, 672, 673, 5, 96, 0, 0, 673, 678, 3, 136, 68, 0, 674, 675, 5, 61, 0, 0, 675, 677, 3, 136, 68, 0, 676, 674, 1, 0, 0, 0, 677, 680, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 681, 1, 0, 0, 0, 680, 678, 1, 0, 0, 0, 681, 682, 5, 97, 0, 0, 682, 695, 1, 0, 0, 0, 683, 684, 5, 96, 0, 0, 684, 689, 3, 144, 72, 0, 685, 686, 5, 61, 0, 0, 686, 688, 3, 144, 72, 0, 687, 685, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 693, 5, 97, 0, 0, 693, 695, 1, 0, 0, 0, 694, 652, 1, 0, 0, 0, 694, 653, 1, 0, 0, 0, 694, 656, 1, 0, 0, 0, 694, 657, 1, 0, 0, 0, 694, 658, 1, 0, 0, 0, 694, 659, 1, 0, 0, 0, 694, 660, 1, 0, 0, 0, 694, 661, 1, 0, 0, 0, 694, 672, 1, 0, 0, 0, 694, 683, 1, 0, 0, 0, 695, 135, 1, 0, 0, 0, 696, 697, 7, 6, 0, 0, 697, 137, 1, 0, 0, 0, 698, 701, 3, 140, 70, 0, 699, 701, 3, 142, 71, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 139, 1, 0, 0, 0, 702, 704, 7, 4, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 53, 0, 0, 706, 141, 1, 0, 0, 0, 707, 709, 7, 4, 0, 0, 708, 707, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 5, 52, 0, 0, 711, 143, 1, 0, 0, 0, 712, 713, 5, 51, 0, 0, 713, 145, 1, 0, 0, 0, 714, 715, 7, 7, 0, 0, 715, 147, 1, 0, 0, 0, 716, 717, 7, 8, 0, 0, 717, 718, 5, 113, 0, 0, 718, 719, 3, 150, 75, 0, 719, 720, 3, 152, 76, 0, 720, 149, 1, 0, 0, 0, 721, 722, 3, 24, 12, 0, 722, 151, 1, 0, 0, 0, 723, 724, 5, 73, 0, 0, 724, 729, 3, 154, 77, 0, 725, 726, 5, 61, 0, 0, 726, 728, 3, 154, 77, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 153, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 3, 120, 60, 0, 733, 155, 1, 0, 0, 0, 66, 167, 176, 205, 220, 226, 241, 245, 250, 257, 259, 273, 281, 285, 292, 298, 305, 313, 321, 330, 334, 338, 344, 355, 360, 364, 378, 389, 403, 424, 432, 435, 440, 453, 459, 466, 477, 491, 497, 515, 524, 532, 537, 545, 547, 552, 559, 564, 569, 579, 585, 593, 595, 606, 613, 624, 629, 631, 643, 667, 678, 689, 694, 700, 703, 708, 729] \ 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 d2bb40f5db84d..ea98734d46aa9 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 @@ -63,23 +63,23 @@ public class EsqlBaseParser extends ParserConfig { RULE_aggFields = 19, RULE_aggField = 20, RULE_qualifiedName = 21, RULE_qualifiedNamePattern = 22, RULE_qualifiedNamePatterns = 23, RULE_identifier = 24, RULE_identifierPattern = 25, RULE_parameter = 26, RULE_doubleParameter = 27, RULE_identifierOrParameter = 28, - RULE_stringOrParameter = 29, RULE_limitCommand = 30, RULE_sortCommand = 31, - RULE_orderExpression = 32, RULE_keepCommand = 33, RULE_dropCommand = 34, - RULE_renameCommand = 35, RULE_renameClause = 36, RULE_dissectCommand = 37, - RULE_grokCommand = 38, RULE_mvExpandCommand = 39, RULE_commandOptions = 40, - RULE_commandOption = 41, RULE_explainCommand = 42, RULE_subqueryExpression = 43, - RULE_showCommand = 44, RULE_enrichCommand = 45, RULE_enrichWithClause = 46, - RULE_lookupCommand = 47, RULE_inlinestatsCommand = 48, RULE_changePointCommand = 49, - RULE_insistCommand = 50, RULE_forkCommand = 51, RULE_forkSubQueries = 52, - RULE_forkSubQuery = 53, RULE_forkSubQueryCommand = 54, RULE_forkSubQueryProcessingCommand = 55, - RULE_rrfCommand = 56, RULE_rerankCommand = 57, RULE_booleanExpression = 58, - RULE_regexBooleanExpression = 59, RULE_matchBooleanExpression = 60, RULE_valueExpression = 61, - RULE_operatorExpression = 62, RULE_primaryExpression = 63, RULE_functionExpression = 64, - RULE_functionName = 65, RULE_mapExpression = 66, RULE_entryExpression = 67, - RULE_constant = 68, RULE_booleanValue = 69, RULE_numericValue = 70, RULE_decimalValue = 71, - RULE_integerValue = 72, RULE_string = 73, RULE_comparisonOperator = 74, - RULE_joinCommand = 75, RULE_joinTarget = 76, RULE_joinCondition = 77, - RULE_joinPredicate = 78; + RULE_limitCommand = 29, RULE_sortCommand = 30, RULE_orderExpression = 31, + RULE_keepCommand = 32, RULE_dropCommand = 33, RULE_renameCommand = 34, + RULE_renameClause = 35, RULE_dissectCommand = 36, RULE_grokCommand = 37, + RULE_mvExpandCommand = 38, RULE_commandOptions = 39, RULE_commandOption = 40, + RULE_explainCommand = 41, RULE_subqueryExpression = 42, RULE_showCommand = 43, + RULE_enrichCommand = 44, RULE_enrichWithClause = 45, RULE_lookupCommand = 46, + RULE_inlinestatsCommand = 47, RULE_changePointCommand = 48, RULE_insistCommand = 49, + RULE_forkCommand = 50, RULE_forkSubQueries = 51, RULE_forkSubQuery = 52, + RULE_forkSubQueryCommand = 53, RULE_forkSubQueryProcessingCommand = 54, + RULE_rrfCommand = 55, RULE_rerankCommand = 56, RULE_booleanExpression = 57, + RULE_regexBooleanExpression = 58, RULE_matchBooleanExpression = 59, RULE_valueExpression = 60, + RULE_operatorExpression = 61, RULE_primaryExpression = 62, RULE_functionExpression = 63, + RULE_functionName = 64, RULE_mapExpression = 65, RULE_entryExpression = 66, + RULE_constant = 67, RULE_booleanValue = 68, RULE_numericValue = 69, RULE_decimalValue = 70, + RULE_integerValue = 71, RULE_string = 72, RULE_comparisonOperator = 73, + RULE_joinCommand = 74, RULE_joinTarget = 75, RULE_joinCondition = 76, + RULE_joinPredicate = 77; private static String[] makeRuleNames() { return new String[] { "singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand", @@ -88,18 +88,18 @@ private static String[] makeRuleNames() { "indexString", "metadata", "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns", "identifier", "identifierPattern", "parameter", "doubleParameter", "identifierOrParameter", - "stringOrParameter", "limitCommand", "sortCommand", "orderExpression", - "keepCommand", "dropCommand", "renameCommand", "renameClause", "dissectCommand", - "grokCommand", "mvExpandCommand", "commandOptions", "commandOption", - "explainCommand", "subqueryExpression", "showCommand", "enrichCommand", - "enrichWithClause", "lookupCommand", "inlinestatsCommand", "changePointCommand", - "insistCommand", "forkCommand", "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", - "forkSubQueryProcessingCommand", "rrfCommand", "rerankCommand", "booleanExpression", - "regexBooleanExpression", "matchBooleanExpression", "valueExpression", - "operatorExpression", "primaryExpression", "functionExpression", "functionName", - "mapExpression", "entryExpression", "constant", "booleanValue", "numericValue", - "decimalValue", "integerValue", "string", "comparisonOperator", "joinCommand", - "joinTarget", "joinCondition", "joinPredicate" + "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand", + "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand", + "commandOptions", "commandOption", "explainCommand", "subqueryExpression", + "showCommand", "enrichCommand", "enrichWithClause", "lookupCommand", + "inlinestatsCommand", "changePointCommand", "insistCommand", "forkCommand", + "forkSubQueries", "forkSubQuery", "forkSubQueryCommand", "forkSubQueryProcessingCommand", + "rrfCommand", "rerankCommand", "booleanExpression", "regexBooleanExpression", + "matchBooleanExpression", "valueExpression", "operatorExpression", "primaryExpression", + "functionExpression", "functionName", "mapExpression", "entryExpression", + "constant", "booleanValue", "numericValue", "decimalValue", "integerValue", + "string", "comparisonOperator", "joinCommand", "joinTarget", "joinCondition", + "joinPredicate" }; } public static final String[] ruleNames = makeRuleNames(); @@ -238,9 +238,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(158); + setState(156); query(0); - setState(159); + setState(157); match(EOF); } } @@ -336,11 +336,11 @@ private QueryContext query(int _p) throws RecognitionException { _ctx = _localctx; _prevctx = _localctx; - setState(162); + setState(160); sourceCommand(); } _ctx.stop = _input.LT(-1); - setState(169); + setState(167); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -351,16 +351,16 @@ private QueryContext query(int _p) throws RecognitionException { { _localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_query); - setState(164); + setState(162); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(165); + setState(163); match(PIPE); - setState(166); + setState(164); processingCommand(); } } } - setState(171); + setState(169); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,0,_ctx); } @@ -418,43 +418,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException { SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState()); enterRule(_localctx, 4, RULE_sourceCommand); try { - setState(178); + setState(176); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(172); + setState(170); explainCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(173); + setState(171); fromCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(174); + setState(172); rowCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(175); + setState(173); showCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(176); + setState(174); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(177); + setState(175); metricsCommand(); } break; @@ -557,160 +557,160 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState()); enterRule(_localctx, 6, RULE_processingCommand); try { - setState(207); + setState(205); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(180); + setState(178); evalCommand(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(181); + setState(179); whereCommand(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(182); + setState(180); keepCommand(); } break; case 4: enterOuterAlt(_localctx, 4); { - setState(183); + setState(181); limitCommand(); } break; case 5: enterOuterAlt(_localctx, 5); { - setState(184); + setState(182); statsCommand(); } break; case 6: enterOuterAlt(_localctx, 6); { - setState(185); + setState(183); sortCommand(); } break; case 7: enterOuterAlt(_localctx, 7); { - setState(186); + setState(184); dropCommand(); } break; case 8: enterOuterAlt(_localctx, 8); { - setState(187); + setState(185); renameCommand(); } break; case 9: enterOuterAlt(_localctx, 9); { - setState(188); + setState(186); dissectCommand(); } break; case 10: enterOuterAlt(_localctx, 10); { - setState(189); + setState(187); grokCommand(); } break; case 11: enterOuterAlt(_localctx, 11); { - setState(190); + setState(188); enrichCommand(); } break; case 12: enterOuterAlt(_localctx, 12); { - setState(191); + setState(189); mvExpandCommand(); } break; case 13: enterOuterAlt(_localctx, 13); { - setState(192); + setState(190); joinCommand(); } break; case 14: enterOuterAlt(_localctx, 14); { - setState(193); + setState(191); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(194); + setState(192); inlinestatsCommand(); } break; case 15: enterOuterAlt(_localctx, 15); { - setState(195); + setState(193); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(196); + setState(194); lookupCommand(); } break; case 16: enterOuterAlt(_localctx, 16); { - setState(197); + setState(195); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(198); + setState(196); changePointCommand(); } break; case 17: enterOuterAlt(_localctx, 17); { - setState(199); + setState(197); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(200); + setState(198); insistCommand(); } break; case 18: enterOuterAlt(_localctx, 18); { - setState(201); + setState(199); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(202); + setState(200); forkCommand(); } break; case 19: enterOuterAlt(_localctx, 19); { - setState(203); + setState(201); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(204); + setState(202); rerankCommand(); } break; case 20: enterOuterAlt(_localctx, 20); { - setState(205); + setState(203); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(206); + setState(204); rrfCommand(); } break; @@ -759,9 +759,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(209); + setState(207); match(WHERE); - setState(210); + setState(208); booleanExpression(0); } } @@ -819,7 +819,7 @@ public final DataTypeContext dataType() throws RecognitionException { _localctx = new ToDataTypeContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(212); + setState(210); identifier(); } } @@ -866,9 +866,9 @@ public final RowCommandContext rowCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(214); + setState(212); match(ROW); - setState(215); + setState(213); fields(); } } @@ -922,23 +922,23 @@ public final FieldsContext fields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(217); + setState(215); field(); - setState(222); + setState(220); _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(218); + setState(216); match(COMMA); - setState(219); + setState(217); field(); } } } - setState(224); + setState(222); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,3,_ctx); } @@ -990,19 +990,19 @@ public final FieldContext field() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(228); + setState(226); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,4,_ctx) ) { case 1: { - setState(225); + setState(223); qualifiedName(); - setState(226); + setState(224); match(ASSIGN); } break; } - setState(230); + setState(228); booleanExpression(0); } } @@ -1049,9 +1049,9 @@ public final FromCommandContext fromCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(232); + setState(230); match(FROM); - setState(233); + setState(231); indexPatternAndMetadataFields(); } } @@ -1098,9 +1098,9 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(235); + setState(233); match(DEV_METRICS); - setState(236); + setState(234); indexPatternAndMetadataFields(); } } @@ -1157,32 +1157,32 @@ public final IndexPatternAndMetadataFieldsContext indexPatternAndMetadataFields( int _alt; enterOuterAlt(_localctx, 1); { - setState(238); + setState(236); indexPattern(); - setState(243); + setState(241); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(239); + setState(237); match(COMMA); - setState(240); + setState(238); indexPattern(); } } } - setState(245); + setState(243); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,5,_ctx); } - setState(247); + setState(245); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { case 1: { - setState(246); + setState(244); metadata(); } break; @@ -1237,43 +1237,43 @@ public final IndexPatternContext indexPattern() throws RecognitionException { IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState()); enterRule(_localctx, 24, RULE_indexPattern); try { - setState(261); + setState(259); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(252); + setState(250); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) { case 1: { - setState(249); + setState(247); clusterString(); - setState(250); + setState(248); match(COLON); } break; } - setState(254); + setState(252); indexString(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(255); + setState(253); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(256); + setState(254); indexString(); - setState(259); + setState(257); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,8,_ctx) ) { case 1: { - setState(257); + setState(255); match(CAST_OP); - setState(258); + setState(256); selectorString(); } break; @@ -1324,7 +1324,7 @@ public final ClusterStringContext clusterString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(263); + setState(261); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1378,7 +1378,7 @@ public final SelectorStringContext selectorString() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(265); + setState(263); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1432,7 +1432,7 @@ public final IndexStringContext indexString() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(267); + setState(265); _la = _input.LA(1); if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) { _errHandler.recoverInline(this); @@ -1493,25 +1493,25 @@ public final MetadataContext metadata() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(269); + setState(267); match(METADATA); - setState(270); + setState(268); match(UNQUOTED_SOURCE); - setState(275); + setState(273); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(271); + setState(269); match(COMMA); - setState(272); + setState(270); match(UNQUOTED_SOURCE); } } } - setState(277); + setState(275); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,10,_ctx); } @@ -1560,9 +1560,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(278); + setState(276); match(EVAL); - setState(279); + setState(277); fields(); } } @@ -1615,26 +1615,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(281); + setState(279); match(STATS); - setState(283); + setState(281); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) { case 1: { - setState(282); + setState(280); ((StatsCommandContext)_localctx).stats = aggFields(); } break; } - setState(287); + setState(285); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,12,_ctx) ) { case 1: { - setState(285); + setState(283); match(BY); - setState(286); + setState(284); ((StatsCommandContext)_localctx).grouping = fields(); } break; @@ -1691,23 +1691,23 @@ public final AggFieldsContext aggFields() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(289); + setState(287); aggField(); - setState(294); + setState(292); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(290); + setState(288); match(COMMA); - setState(291); + setState(289); aggField(); } } } - setState(296); + setState(294); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,13,_ctx); } @@ -1759,16 +1759,16 @@ public final AggFieldContext aggField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(297); + setState(295); field(); - setState(300); + setState(298); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) { case 1: { - setState(298); + setState(296); match(WHERE); - setState(299); + setState(297); booleanExpression(0); } break; @@ -1825,23 +1825,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(302); + setState(300); identifierOrParameter(); - setState(307); + setState(305); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(303); + setState(301); match(DOT); - setState(304); + setState(302); identifierOrParameter(); } } } - setState(309); + setState(307); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,15,_ctx); } @@ -1897,23 +1897,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti int _alt; enterOuterAlt(_localctx, 1); { - setState(310); + setState(308); identifierPattern(); - setState(315); + setState(313); _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(311); + setState(309); match(DOT); - setState(312); + setState(310); identifierPattern(); } } } - setState(317); + setState(315); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,16,_ctx); } @@ -1969,23 +1969,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni int _alt; enterOuterAlt(_localctx, 1); { - setState(318); + setState(316); qualifiedNamePattern(); - setState(323); + setState(321); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(319); + setState(317); match(COMMA); - setState(320); + setState(318); qualifiedNamePattern(); } } } - setState(325); + setState(323); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,17,_ctx); } @@ -2033,7 +2033,7 @@ public final IdentifierContext identifier() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(326); + setState(324); _la = _input.LA(1); if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) { _errHandler.recoverInline(this); @@ -2089,29 +2089,29 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState()); enterRule(_localctx, 50, RULE_identifierPattern); try { - setState(332); + setState(330); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,18,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(328); + setState(326); match(ID_PATTERN); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(329); + setState(327); parameter(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(330); + setState(328); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(331); + setState(329); doubleParameter(); } break; @@ -2185,14 +2185,14 @@ public final ParameterContext parameter() throws RecognitionException { ParameterContext _localctx = new ParameterContext(_ctx, getState()); enterRule(_localctx, 52, RULE_parameter); try { - setState(336); + setState(334); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: _localctx = new InputParamContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(334); + setState(332); match(PARAM); } break; @@ -2200,7 +2200,7 @@ public final ParameterContext parameter() throws RecognitionException { _localctx = new InputNamedOrPositionalParamContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(335); + setState(333); match(NAMED_OR_POSITIONAL_PARAM); } break; @@ -2276,14 +2276,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState()); enterRule(_localctx, 54, RULE_doubleParameter); try { - setState(340); + setState(338); _errHandler.sync(this); switch (_input.LA(1)) { case DOUBLE_PARAMS: _localctx = new InputDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(338); + setState(336); match(DOUBLE_PARAMS); } break; @@ -2291,7 +2291,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio _localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(339); + setState(337); match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS); } break; @@ -2345,29 +2345,29 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState()); enterRule(_localctx, 56, RULE_identifierOrParameter); try { - setState(346); + setState(344); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,21,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(342); + setState(340); identifier(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(343); + setState(341); parameter(); } break; case 3: enterOuterAlt(_localctx, 3); { - setState(344); + setState(342); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(345); + setState(343); doubleParameter(); } break; @@ -2384,71 +2384,6 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni return _localctx; } - @SuppressWarnings("CheckReturnValue") - public static class StringOrParameterContext extends ParserRuleContext { - public StringContext string() { - return getRuleContext(StringContext.class,0); - } - public ParameterContext parameter() { - return getRuleContext(ParameterContext.class,0); - } - @SuppressWarnings("this-escape") - public StringOrParameterContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_stringOrParameter; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterStringOrParameter(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitStringOrParameter(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor)visitor).visitStringOrParameter(this); - else return visitor.visitChildren(this); - } - } - - public final StringOrParameterContext stringOrParameter() throws RecognitionException { - StringOrParameterContext _localctx = new StringOrParameterContext(_ctx, getState()); - enterRule(_localctx, 58, RULE_stringOrParameter); - try { - setState(350); - _errHandler.sync(this); - switch (_input.LA(1)) { - case QUOTED_STRING: - enterOuterAlt(_localctx, 1); - { - setState(348); - string(); - } - break; - case PARAM: - case NAMED_OR_POSITIONAL_PARAM: - enterOuterAlt(_localctx, 2); - { - setState(349); - parameter(); - } - break; - default: - throw new NoViableAltException(this); - } - } - 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); } @@ -2475,13 +2410,13 @@ public T accept(ParseTreeVisitor visitor) { public final LimitCommandContext limitCommand() throws RecognitionException { LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState()); - enterRule(_localctx, 60, RULE_limitCommand); + enterRule(_localctx, 58, RULE_limitCommand); try { enterOuterAlt(_localctx, 1); { - setState(352); + setState(346); match(LIMIT); - setState(353); + setState(347); match(INTEGER_LITERAL); } } @@ -2531,32 +2466,32 @@ public T accept(ParseTreeVisitor visitor) { public final SortCommandContext sortCommand() throws RecognitionException { SortCommandContext _localctx = new SortCommandContext(_ctx, getState()); - enterRule(_localctx, 62, RULE_sortCommand); + enterRule(_localctx, 60, RULE_sortCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(355); + setState(349); match(SORT); - setState(356); + setState(350); orderExpression(); - setState(361); + setState(355); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(357); + setState(351); match(COMMA); - setState(358); + setState(352); orderExpression(); } } } - setState(363); + setState(357); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,23,_ctx); + _alt = getInterpreter().adaptivePredict(_input,22,_ctx); } } } @@ -2605,19 +2540,19 @@ public T accept(ParseTreeVisitor visitor) { public final OrderExpressionContext orderExpression() throws RecognitionException { OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState()); - enterRule(_localctx, 64, RULE_orderExpression); + enterRule(_localctx, 62, RULE_orderExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(364); + setState(358); booleanExpression(0); - setState(366); + setState(360); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,23,_ctx) ) { case 1: { - setState(365); + setState(359); ((OrderExpressionContext)_localctx).ordering = _input.LT(1); _la = _input.LA(1); if ( !(_la==ASC || _la==DESC) ) { @@ -2631,14 +2566,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio } break; } - setState(370); + setState(364); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,25,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) { case 1: { - setState(368); + setState(362); match(NULLS); - setState(369); + setState(363); ((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1); _la = _input.LA(1); if ( !(_la==FIRST || _la==LAST) ) { @@ -2693,13 +2628,13 @@ public T accept(ParseTreeVisitor visitor) { public final KeepCommandContext keepCommand() throws RecognitionException { KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState()); - enterRule(_localctx, 66, RULE_keepCommand); + enterRule(_localctx, 64, RULE_keepCommand); try { enterOuterAlt(_localctx, 1); { - setState(372); + setState(366); match(KEEP); - setState(373); + setState(367); qualifiedNamePatterns(); } } @@ -2742,13 +2677,13 @@ public T accept(ParseTreeVisitor visitor) { public final DropCommandContext dropCommand() throws RecognitionException { DropCommandContext _localctx = new DropCommandContext(_ctx, getState()); - enterRule(_localctx, 68, RULE_dropCommand); + enterRule(_localctx, 66, RULE_dropCommand); try { enterOuterAlt(_localctx, 1); { - setState(375); + setState(369); match(DROP); - setState(376); + setState(370); qualifiedNamePatterns(); } } @@ -2798,32 +2733,32 @@ public T accept(ParseTreeVisitor visitor) { public final RenameCommandContext renameCommand() throws RecognitionException { RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState()); - enterRule(_localctx, 70, RULE_renameCommand); + enterRule(_localctx, 68, RULE_renameCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(378); + setState(372); match(RENAME); - setState(379); + setState(373); renameClause(); - setState(384); + setState(378); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,26,_ctx); + _alt = getInterpreter().adaptivePredict(_input,25,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(380); + setState(374); match(COMMA); - setState(381); + setState(375); renameClause(); } } } - setState(386); + setState(380); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,26,_ctx); + _alt = getInterpreter().adaptivePredict(_input,25,_ctx); } } } @@ -2871,15 +2806,15 @@ public T accept(ParseTreeVisitor visitor) { public final RenameClauseContext renameClause() throws RecognitionException { RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState()); - enterRule(_localctx, 72, RULE_renameClause); + enterRule(_localctx, 70, RULE_renameClause); try { enterOuterAlt(_localctx, 1); { - setState(387); + setState(381); ((RenameClauseContext)_localctx).oldName = qualifiedNamePattern(); - setState(388); + setState(382); match(AS); - setState(389); + setState(383); ((RenameClauseContext)_localctx).newName = qualifiedNamePattern(); } } @@ -2928,22 +2863,22 @@ public T accept(ParseTreeVisitor visitor) { public final DissectCommandContext dissectCommand() throws RecognitionException { DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState()); - enterRule(_localctx, 74, RULE_dissectCommand); + enterRule(_localctx, 72, RULE_dissectCommand); try { enterOuterAlt(_localctx, 1); { - setState(391); + setState(385); match(DISSECT); - setState(392); + setState(386); primaryExpression(0); - setState(393); + setState(387); string(); - setState(395); + setState(389); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) { case 1: { - setState(394); + setState(388); commandOptions(); } break; @@ -2992,15 +2927,15 @@ public T accept(ParseTreeVisitor visitor) { public final GrokCommandContext grokCommand() throws RecognitionException { GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); - enterRule(_localctx, 76, RULE_grokCommand); + enterRule(_localctx, 74, RULE_grokCommand); try { enterOuterAlt(_localctx, 1); { - setState(397); + setState(391); match(GROK); - setState(398); + setState(392); primaryExpression(0); - setState(399); + setState(393); string(); } } @@ -3043,13 +2978,13 @@ public T accept(ParseTreeVisitor visitor) { public final MvExpandCommandContext mvExpandCommand() throws RecognitionException { MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState()); - enterRule(_localctx, 78, RULE_mvExpandCommand); + enterRule(_localctx, 76, RULE_mvExpandCommand); try { enterOuterAlt(_localctx, 1); { - setState(401); + setState(395); match(MV_EXPAND); - setState(402); + setState(396); qualifiedName(); } } @@ -3098,30 +3033,30 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionsContext commandOptions() throws RecognitionException { CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState()); - enterRule(_localctx, 80, RULE_commandOptions); + enterRule(_localctx, 78, RULE_commandOptions); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(404); + setState(398); commandOption(); - setState(409); + setState(403); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(405); + setState(399); match(COMMA); - setState(406); + setState(400); commandOption(); } } } - setState(411); + setState(405); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,28,_ctx); + _alt = getInterpreter().adaptivePredict(_input,27,_ctx); } } } @@ -3167,15 +3102,15 @@ public T accept(ParseTreeVisitor visitor) { public final CommandOptionContext commandOption() throws RecognitionException { CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState()); - enterRule(_localctx, 82, RULE_commandOption); + enterRule(_localctx, 80, RULE_commandOption); try { enterOuterAlt(_localctx, 1); { - setState(412); + setState(406); identifier(); - setState(413); + setState(407); match(ASSIGN); - setState(414); + setState(408); constant(); } } @@ -3218,13 +3153,13 @@ public T accept(ParseTreeVisitor visitor) { public final ExplainCommandContext explainCommand() throws RecognitionException { ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState()); - enterRule(_localctx, 84, RULE_explainCommand); + enterRule(_localctx, 82, RULE_explainCommand); try { enterOuterAlt(_localctx, 1); { - setState(416); + setState(410); match(EXPLAIN); - setState(417); + setState(411); subqueryExpression(); } } @@ -3268,15 +3203,15 @@ public T accept(ParseTreeVisitor visitor) { public final SubqueryExpressionContext subqueryExpression() throws RecognitionException { SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState()); - enterRule(_localctx, 86, RULE_subqueryExpression); + enterRule(_localctx, 84, RULE_subqueryExpression); try { enterOuterAlt(_localctx, 1); { - setState(419); + setState(413); match(OPENING_BRACKET); - setState(420); + setState(414); query(0); - setState(421); + setState(415); match(CLOSING_BRACKET); } } @@ -3328,14 +3263,14 @@ public T accept(ParseTreeVisitor visitor) { public final ShowCommandContext showCommand() throws RecognitionException { ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState()); - enterRule(_localctx, 88, RULE_showCommand); + enterRule(_localctx, 86, RULE_showCommand); try { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(423); + setState(417); match(SHOW); - setState(424); + setState(418); match(INFO); } } @@ -3393,53 +3328,53 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichCommandContext enrichCommand() throws RecognitionException { EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState()); - enterRule(_localctx, 90, RULE_enrichCommand); + enterRule(_localctx, 88, RULE_enrichCommand); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(426); + setState(420); match(ENRICH); - setState(427); + setState(421); ((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME); - setState(430); + setState(424); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) { case 1: { - setState(428); + setState(422); match(ON); - setState(429); + setState(423); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(441); + setState(435); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) { case 1: { - setState(432); + setState(426); match(WITH); - setState(433); + setState(427); enrichWithClause(); - setState(438); + setState(432); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,30,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(434); + setState(428); match(COMMA); - setState(435); + setState(429); enrichWithClause(); } } } - setState(440); + setState(434); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,30,_ctx); + _alt = getInterpreter().adaptivePredict(_input,29,_ctx); } } break; @@ -3490,23 +3425,23 @@ public T accept(ParseTreeVisitor visitor) { public final EnrichWithClauseContext enrichWithClause() throws RecognitionException { EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState()); - enterRule(_localctx, 92, RULE_enrichWithClause); + enterRule(_localctx, 90, RULE_enrichWithClause); try { enterOuterAlt(_localctx, 1); { - setState(446); + setState(440); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) { case 1: { - setState(443); + setState(437); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(444); + setState(438); match(ASSIGN); } break; } - setState(448); + setState(442); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -3555,17 +3490,17 @@ public T accept(ParseTreeVisitor visitor) { public final LookupCommandContext lookupCommand() throws RecognitionException { LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState()); - enterRule(_localctx, 94, RULE_lookupCommand); + enterRule(_localctx, 92, RULE_lookupCommand); try { enterOuterAlt(_localctx, 1); { - setState(450); + setState(444); match(DEV_LOOKUP); - setState(451); + setState(445); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(452); + setState(446); match(ON); - setState(453); + setState(447); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -3614,22 +3549,22 @@ public T accept(ParseTreeVisitor visitor) { public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException { InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState()); - enterRule(_localctx, 96, RULE_inlinestatsCommand); + enterRule(_localctx, 94, RULE_inlinestatsCommand); try { enterOuterAlt(_localctx, 1); { - setState(455); + setState(449); match(DEV_INLINESTATS); - setState(456); + setState(450); ((InlinestatsCommandContext)_localctx).stats = aggFields(); - setState(459); + setState(453); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,32,_ctx) ) { case 1: { - setState(457); + setState(451); match(BY); - setState(458); + setState(452); ((InlinestatsCommandContext)_localctx).grouping = fields(); } break; @@ -3685,38 +3620,38 @@ public T accept(ParseTreeVisitor visitor) { public final ChangePointCommandContext changePointCommand() throws RecognitionException { ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState()); - enterRule(_localctx, 98, RULE_changePointCommand); + enterRule(_localctx, 96, RULE_changePointCommand); try { enterOuterAlt(_localctx, 1); { - setState(461); + setState(455); match(DEV_CHANGE_POINT); - setState(462); + setState(456); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(465); + setState(459); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) { case 1: { - setState(463); + setState(457); match(ON); - setState(464); + setState(458); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(472); + setState(466); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) { case 1: { - setState(467); + setState(461); match(AS); - setState(468); + setState(462); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(469); + setState(463); match(COMMA); - setState(470); + setState(464); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -3762,13 +3697,13 @@ public T accept(ParseTreeVisitor visitor) { public final InsistCommandContext insistCommand() throws RecognitionException { InsistCommandContext _localctx = new InsistCommandContext(_ctx, getState()); - enterRule(_localctx, 100, RULE_insistCommand); + enterRule(_localctx, 98, RULE_insistCommand); try { enterOuterAlt(_localctx, 1); { - setState(474); + setState(468); match(DEV_INSIST); - setState(475); + setState(469); qualifiedNamePatterns(); } } @@ -3811,13 +3746,13 @@ public T accept(ParseTreeVisitor visitor) { public final ForkCommandContext forkCommand() throws RecognitionException { ForkCommandContext _localctx = new ForkCommandContext(_ctx, getState()); - enterRule(_localctx, 102, RULE_forkCommand); + enterRule(_localctx, 100, RULE_forkCommand); try { enterOuterAlt(_localctx, 1); { - setState(477); + setState(471); match(DEV_FORK); - setState(478); + setState(472); forkSubQueries(); } } @@ -3862,12 +3797,12 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueriesContext forkSubQueries() throws RecognitionException { ForkSubQueriesContext _localctx = new ForkSubQueriesContext(_ctx, getState()); - enterRule(_localctx, 104, RULE_forkSubQueries); + enterRule(_localctx, 102, RULE_forkSubQueries); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(481); + setState(475); _errHandler.sync(this); _alt = 1; do { @@ -3875,7 +3810,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(480); + setState(474); forkSubQuery(); } } @@ -3883,9 +3818,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(483); + setState(477); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + _alt = getInterpreter().adaptivePredict(_input,35,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } } @@ -3929,15 +3864,15 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryContext forkSubQuery() throws RecognitionException { ForkSubQueryContext _localctx = new ForkSubQueryContext(_ctx, getState()); - enterRule(_localctx, 106, RULE_forkSubQuery); + enterRule(_localctx, 104, RULE_forkSubQuery); try { enterOuterAlt(_localctx, 1); { - setState(485); + setState(479); match(LP); - setState(486); + setState(480); forkSubQueryCommand(0); - setState(487); + setState(481); match(RP); } } @@ -4022,8 +3957,8 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio int _parentState = getState(); ForkSubQueryCommandContext _localctx = new ForkSubQueryCommandContext(_ctx, _parentState); ForkSubQueryCommandContext _prevctx = _localctx; - int _startState = 108; - enterRecursionRule(_localctx, 108, RULE_forkSubQueryCommand, _p); + int _startState = 106; + enterRecursionRule(_localctx, 106, RULE_forkSubQueryCommand, _p); try { int _alt; enterOuterAlt(_localctx, 1); @@ -4033,13 +3968,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(490); + setState(484); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(497); + setState(491); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -4048,18 +3983,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(492); + setState(486); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(493); + setState(487); match(PIPE); - setState(494); + setState(488); forkSubQueryProcessingCommand(); } } } - setState(499); + setState(493); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); } } } @@ -4107,29 +4042,29 @@ public T accept(ParseTreeVisitor visitor) { public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand() throws RecognitionException { ForkSubQueryProcessingCommandContext _localctx = new ForkSubQueryProcessingCommandContext(_ctx, getState()); - enterRule(_localctx, 110, RULE_forkSubQueryProcessingCommand); + enterRule(_localctx, 108, RULE_forkSubQueryProcessingCommand); try { - setState(503); + setState(497); _errHandler.sync(this); switch (_input.LA(1)) { case WHERE: enterOuterAlt(_localctx, 1); { - setState(500); + setState(494); whereCommand(); } break; case SORT: enterOuterAlt(_localctx, 2); { - setState(501); + setState(495); sortCommand(); } break; case LIMIT: enterOuterAlt(_localctx, 3); { - setState(502); + setState(496); limitCommand(); } break; @@ -4173,11 +4108,11 @@ public T accept(ParseTreeVisitor visitor) { public final RrfCommandContext rrfCommand() throws RecognitionException { RrfCommandContext _localctx = new RrfCommandContext(_ctx, getState()); - enterRule(_localctx, 112, RULE_rrfCommand); + enterRule(_localctx, 110, RULE_rrfCommand); try { enterOuterAlt(_localctx, 1); { - setState(505); + setState(499); match(DEV_RRF); } } @@ -4194,19 +4129,19 @@ public final RrfCommandContext rrfCommand() throws RecognitionException { @SuppressWarnings("CheckReturnValue") public static class RerankCommandContext extends ParserRuleContext { - public StringOrParameterContext queryText; - public StringOrParameterContext inferenceId; + public ConstantContext queryText; + public IdentifierOrParameterContext inferenceId; public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); } public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); } public FieldsContext fields() { return getRuleContext(FieldsContext.class,0); } public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); } - public List stringOrParameter() { - return getRuleContexts(StringOrParameterContext.class); + public ConstantContext constant() { + return getRuleContext(ConstantContext.class,0); } - public StringOrParameterContext stringOrParameter(int i) { - return getRuleContext(StringOrParameterContext.class,i); + public IdentifierOrParameterContext identifierOrParameter() { + return getRuleContext(IdentifierOrParameterContext.class,0); } @SuppressWarnings("this-escape") public RerankCommandContext(ParserRuleContext parent, int invokingState) { @@ -4230,22 +4165,22 @@ public T accept(ParseTreeVisitor visitor) { public final RerankCommandContext rerankCommand() throws RecognitionException { RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState()); - enterRule(_localctx, 114, RULE_rerankCommand); + enterRule(_localctx, 112, RULE_rerankCommand); try { enterOuterAlt(_localctx, 1); { - setState(507); + setState(501); match(DEV_RERANK); - setState(508); - ((RerankCommandContext)_localctx).queryText = stringOrParameter(); - setState(509); + setState(502); + ((RerankCommandContext)_localctx).queryText = constant(); + setState(503); match(ON); - setState(510); + setState(504); fields(); - setState(511); + setState(505); match(WITH); - setState(512); - ((RerankCommandContext)_localctx).inferenceId = stringOrParameter(); + setState(506); + ((RerankCommandContext)_localctx).inferenceId = identifierOrParameter(); } } catch (RecognitionException re) { @@ -4453,25 +4388,25 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _parentState = getState(); BooleanExpressionContext _localctx = new BooleanExpressionContext(_ctx, _parentState); BooleanExpressionContext _prevctx = _localctx; - int _startState = 116; - enterRecursionRule(_localctx, 116, RULE_booleanExpression, _p); + int _startState = 114; + enterRecursionRule(_localctx, 114, RULE_booleanExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(543); + setState(537); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { _localctx = new LogicalNotContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(515); + setState(509); match(NOT); - setState(516); + setState(510); booleanExpression(8); } break; @@ -4480,7 +4415,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(517); + setState(511); valueExpression(); } break; @@ -4489,7 +4424,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(518); + setState(512); regexBooleanExpression(); } break; @@ -4498,41 +4433,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(519); + setState(513); valueExpression(); - setState(521); + setState(515); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(520); + setState(514); match(NOT); } } - setState(523); + setState(517); match(IN); - setState(524); + setState(518); match(LP); - setState(525); + setState(519); valueExpression(); - setState(530); + setState(524); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(526); + setState(520); match(COMMA); - setState(527); + setState(521); valueExpression(); } } - setState(532); + setState(526); _errHandler.sync(this); _la = _input.LA(1); } - setState(533); + setState(527); match(RP); } break; @@ -4541,21 +4476,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(535); + setState(529); valueExpression(); - setState(536); + setState(530); match(IS); - setState(538); + setState(532); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(537); + setState(531); match(NOT); } } - setState(540); + setState(534); match(NULL); } break; @@ -4564,33 +4499,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(542); + setState(536); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(553); + setState(547); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,43,_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); + setState(545); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,43,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(545); + setState(539); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(546); + setState(540); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(547); + setState(541); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -4599,20 +4534,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(548); + setState(542); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(549); + setState(543); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(550); + setState(544); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(555); + setState(549); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,44,_ctx); + _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } } } @@ -4662,51 +4597,51 @@ public T accept(ParseTreeVisitor visitor) { public final RegexBooleanExpressionContext regexBooleanExpression() throws RecognitionException { RegexBooleanExpressionContext _localctx = new RegexBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 118, RULE_regexBooleanExpression); + enterRule(_localctx, 116, RULE_regexBooleanExpression); int _la; try { - setState(570); + setState(564); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(556); + setState(550); valueExpression(); - setState(558); + setState(552); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(557); + setState(551); match(NOT); } } - setState(560); + setState(554); ((RegexBooleanExpressionContext)_localctx).kind = match(LIKE); - setState(561); + setState(555); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(563); + setState(557); valueExpression(); - setState(565); + setState(559); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(564); + setState(558); match(NOT); } } - setState(567); + setState(561); ((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE); - setState(568); + setState(562); ((RegexBooleanExpressionContext)_localctx).pattern = string(); } break; @@ -4761,28 +4696,28 @@ public T accept(ParseTreeVisitor visitor) { public final MatchBooleanExpressionContext matchBooleanExpression() throws RecognitionException { MatchBooleanExpressionContext _localctx = new MatchBooleanExpressionContext(_ctx, getState()); - enterRule(_localctx, 120, RULE_matchBooleanExpression); + enterRule(_localctx, 118, RULE_matchBooleanExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(572); + setState(566); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(575); + setState(569); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(573); + setState(567); match(CAST_OP); - setState(574); + setState(568); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(577); + setState(571); match(COLON); - setState(578); + setState(572); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -4864,16 +4799,16 @@ public T accept(ParseTreeVisitor visitor) { public final ValueExpressionContext valueExpression() throws RecognitionException { ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); - enterRule(_localctx, 122, RULE_valueExpression); + enterRule(_localctx, 120, RULE_valueExpression); try { - setState(585); + setState(579); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(580); + setState(574); operatorExpression(0); } break; @@ -4881,11 +4816,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(581); + setState(575); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(582); + setState(576); comparisonOperator(); - setState(583); + setState(577); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -5003,23 +4938,23 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _parentState = getState(); OperatorExpressionContext _localctx = new OperatorExpressionContext(_ctx, _parentState); OperatorExpressionContext _prevctx = _localctx; - int _startState = 124; - enterRecursionRule(_localctx, 124, RULE_operatorExpression, _p); + int _startState = 122; + enterRecursionRule(_localctx, 122, RULE_operatorExpression, _p); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(591); + setState(585); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(588); + setState(582); primaryExpression(0); } break; @@ -5028,7 +4963,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(589); + setState(583); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -5039,31 +4974,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(590); + setState(584); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(601); + setState(595); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,52,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(599); + setState(593); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(593); + setState(587); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(594); + setState(588); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 88)) & ~0x3f) == 0 && ((1L << (_la - 88)) & 7L) != 0)) ) { @@ -5074,7 +5009,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(595); + setState(589); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -5083,9 +5018,9 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(596); + setState(590); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(597); + setState(591); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -5096,16 +5031,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(598); + setState(592); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(603); + setState(597); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,52,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } } } @@ -5255,22 +5190,22 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _parentState = getState(); PrimaryExpressionContext _localctx = new PrimaryExpressionContext(_ctx, _parentState); PrimaryExpressionContext _prevctx = _localctx; - int _startState = 126; - enterRecursionRule(_localctx, 126, RULE_primaryExpression, _p); + int _startState = 124; + enterRecursionRule(_localctx, 124, RULE_primaryExpression, _p); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(612); + setState(606); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(605); + setState(599); constant(); } break; @@ -5279,7 +5214,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(606); + setState(600); qualifiedName(); } break; @@ -5288,7 +5223,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(607); + setState(601); functionExpression(); } break; @@ -5297,19 +5232,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(608); + setState(602); match(LP); - setState(609); + setState(603); booleanExpression(0); - setState(610); + setState(604); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(619); + setState(613); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,53,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -5318,18 +5253,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(614); + setState(608); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(615); + setState(609); match(CAST_OP); - setState(616); + setState(610); dataType(); } } } - setState(621); + setState(615); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,54,_ctx); + _alt = getInterpreter().adaptivePredict(_input,53,_ctx); } } } @@ -5387,56 +5322,56 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionExpressionContext functionExpression() throws RecognitionException { FunctionExpressionContext _localctx = new FunctionExpressionContext(_ctx, getState()); - enterRule(_localctx, 128, RULE_functionExpression); + enterRule(_localctx, 126, RULE_functionExpression); int _la; try { int _alt; enterOuterAlt(_localctx, 1); { - setState(622); + setState(616); functionName(); - setState(623); + setState(617); match(LP); - setState(637); + setState(631); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: { - setState(624); + setState(618); match(ASTERISK); } break; case 2: { { - setState(625); + setState(619); booleanExpression(0); - setState(630); + setState(624); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(626); + setState(620); match(COMMA); - setState(627); + setState(621); booleanExpression(0); } } } - setState(632); + setState(626); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,55,_ctx); + _alt = getInterpreter().adaptivePredict(_input,54,_ctx); } - setState(635); + setState(629); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(633); + setState(627); match(COMMA); - setState(634); + setState(628); mapExpression(); } } @@ -5445,7 +5380,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } break; } - setState(639); + setState(633); match(RP); } } @@ -5487,11 +5422,11 @@ public T accept(ParseTreeVisitor visitor) { public final FunctionNameContext functionName() throws RecognitionException { FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); - enterRule(_localctx, 130, RULE_functionName); + enterRule(_localctx, 128, RULE_functionName); try { enterOuterAlt(_localctx, 1); { - setState(641); + setState(635); identifierOrParameter(); } } @@ -5542,32 +5477,32 @@ public T accept(ParseTreeVisitor visitor) { public final MapExpressionContext mapExpression() throws RecognitionException { MapExpressionContext _localctx = new MapExpressionContext(_ctx, getState()); - enterRule(_localctx, 132, RULE_mapExpression); + enterRule(_localctx, 130, RULE_mapExpression); int _la; try { enterOuterAlt(_localctx, 1); { - setState(643); + setState(637); match(LEFT_BRACES); - setState(644); + setState(638); entryExpression(); - setState(649); + setState(643); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(645); + setState(639); match(COMMA); - setState(646); + setState(640); entryExpression(); } } - setState(651); + setState(645); _errHandler.sync(this); _la = _input.LA(1); } - setState(652); + setState(646); match(RIGHT_BRACES); } } @@ -5615,15 +5550,15 @@ public T accept(ParseTreeVisitor visitor) { public final EntryExpressionContext entryExpression() throws RecognitionException { EntryExpressionContext _localctx = new EntryExpressionContext(_ctx, getState()); - enterRule(_localctx, 134, RULE_entryExpression); + enterRule(_localctx, 132, RULE_entryExpression); try { enterOuterAlt(_localctx, 1); { - setState(654); + setState(648); ((EntryExpressionContext)_localctx).key = string(); - setState(655); + setState(649); match(COLON); - setState(656); + setState(650); ((EntryExpressionContext)_localctx).value = constant(); } } @@ -5891,17 +5826,17 @@ public T accept(ParseTreeVisitor visitor) { public final ConstantContext constant() throws RecognitionException { ConstantContext _localctx = new ConstantContext(_ctx, getState()); - enterRule(_localctx, 136, RULE_constant); + enterRule(_localctx, 134, RULE_constant); int _la; try { - setState(700); + setState(694); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(658); + setState(652); match(NULL); } break; @@ -5909,9 +5844,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(659); + setState(653); integerValue(); - setState(660); + setState(654); match(UNQUOTED_IDENTIFIER); } break; @@ -5919,7 +5854,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(662); + setState(656); decimalValue(); } break; @@ -5927,7 +5862,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(663); + setState(657); integerValue(); } break; @@ -5935,7 +5870,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(664); + setState(658); booleanValue(); } break; @@ -5943,7 +5878,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(665); + setState(659); parameter(); } break; @@ -5951,7 +5886,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(666); + setState(660); string(); } break; @@ -5959,27 +5894,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(667); + setState(661); match(OPENING_BRACKET); - setState(668); + setState(662); numericValue(); - setState(673); + setState(667); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(669); + setState(663); match(COMMA); - setState(670); + setState(664); numericValue(); } } - setState(675); + setState(669); _errHandler.sync(this); _la = _input.LA(1); } - setState(676); + setState(670); match(CLOSING_BRACKET); } break; @@ -5987,27 +5922,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(678); + setState(672); match(OPENING_BRACKET); - setState(679); + setState(673); booleanValue(); - setState(684); + setState(678); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(680); + setState(674); match(COMMA); - setState(681); + setState(675); booleanValue(); } } - setState(686); + setState(680); _errHandler.sync(this); _la = _input.LA(1); } - setState(687); + setState(681); match(CLOSING_BRACKET); } break; @@ -6015,27 +5950,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(689); + setState(683); match(OPENING_BRACKET); - setState(690); + setState(684); string(); - setState(695); + setState(689); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(691); + setState(685); match(COMMA); - setState(692); + setState(686); string(); } } - setState(697); + setState(691); _errHandler.sync(this); _la = _input.LA(1); } - setState(698); + setState(692); match(CLOSING_BRACKET); } break; @@ -6078,12 +6013,12 @@ public T accept(ParseTreeVisitor visitor) { public final BooleanValueContext booleanValue() throws RecognitionException { BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState()); - enterRule(_localctx, 138, RULE_booleanValue); + enterRule(_localctx, 136, RULE_booleanValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(702); + setState(696); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -6136,22 +6071,22 @@ public T accept(ParseTreeVisitor visitor) { public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); - enterRule(_localctx, 140, RULE_numericValue); + enterRule(_localctx, 138, RULE_numericValue); try { - setState(706); + setState(700); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(704); + setState(698); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(705); + setState(699); integerValue(); } break; @@ -6195,17 +6130,17 @@ public T accept(ParseTreeVisitor visitor) { public final DecimalValueContext decimalValue() throws RecognitionException { DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState()); - enterRule(_localctx, 142, RULE_decimalValue); + enterRule(_localctx, 140, RULE_decimalValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(709); + setState(703); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(708); + setState(702); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6218,7 +6153,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(711); + setState(705); match(DECIMAL_LITERAL); } } @@ -6260,17 +6195,17 @@ public T accept(ParseTreeVisitor visitor) { public final IntegerValueContext integerValue() throws RecognitionException { IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState()); - enterRule(_localctx, 144, RULE_integerValue); + enterRule(_localctx, 142, RULE_integerValue); int _la; try { enterOuterAlt(_localctx, 1); { - setState(714); + setState(708); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(713); + setState(707); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -6283,7 +6218,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(716); + setState(710); match(INTEGER_LITERAL); } } @@ -6323,11 +6258,11 @@ public T accept(ParseTreeVisitor visitor) { public final StringContext string() throws RecognitionException { StringContext _localctx = new StringContext(_ctx, getState()); - enterRule(_localctx, 146, RULE_string); + enterRule(_localctx, 144, RULE_string); try { enterOuterAlt(_localctx, 1); { - setState(718); + setState(712); match(QUOTED_STRING); } } @@ -6372,12 +6307,12 @@ public T accept(ParseTreeVisitor visitor) { public final ComparisonOperatorContext comparisonOperator() throws RecognitionException { ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState()); - enterRule(_localctx, 148, RULE_comparisonOperator); + enterRule(_localctx, 146, RULE_comparisonOperator); int _la; try { enterOuterAlt(_localctx, 1); { - setState(720); + setState(714); _la = _input.LA(1); if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -6435,12 +6370,12 @@ public T accept(ParseTreeVisitor visitor) { public final JoinCommandContext joinCommand() throws RecognitionException { JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState()); - enterRule(_localctx, 150, RULE_joinCommand); + enterRule(_localctx, 148, RULE_joinCommand); int _la; try { enterOuterAlt(_localctx, 1); { - setState(722); + setState(716); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 13631488L) != 0)) ) { @@ -6451,11 +6386,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(723); + setState(717); match(JOIN); - setState(724); + setState(718); joinTarget(); - setState(725); + setState(719); joinCondition(); } } @@ -6498,11 +6433,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinTargetContext joinTarget() throws RecognitionException { JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState()); - enterRule(_localctx, 152, RULE_joinTarget); + enterRule(_localctx, 150, RULE_joinTarget); try { enterOuterAlt(_localctx, 1); { - setState(727); + setState(721); ((JoinTargetContext)_localctx).index = indexPattern(); } } @@ -6552,32 +6487,32 @@ public T accept(ParseTreeVisitor visitor) { public final JoinConditionContext joinCondition() throws RecognitionException { JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState()); - enterRule(_localctx, 154, RULE_joinCondition); + enterRule(_localctx, 152, RULE_joinCondition); try { int _alt; enterOuterAlt(_localctx, 1); { - setState(729); + setState(723); match(ON); - setState(730); + setState(724); joinPredicate(); - setState(735); + setState(729); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,66,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(731); + setState(725); match(COMMA); - setState(732); + setState(726); joinPredicate(); } } } - setState(737); + setState(731); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,66,_ctx); + _alt = getInterpreter().adaptivePredict(_input,65,_ctx); } } } @@ -6619,11 +6554,11 @@ public T accept(ParseTreeVisitor visitor) { public final JoinPredicateContext joinPredicate() throws RecognitionException { JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState()); - enterRule(_localctx, 156, RULE_joinPredicate); + enterRule(_localctx, 154, RULE_joinPredicate); try { enterOuterAlt(_localctx, 1); { - setState(738); + setState(732); valueExpression(); } } @@ -6652,13 +6587,13 @@ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { return identifierPattern_sempred((IdentifierPatternContext)_localctx, predIndex); case 28: return identifierOrParameter_sempred((IdentifierOrParameterContext)_localctx, predIndex); - case 54: + case 53: return forkSubQueryCommand_sempred((ForkSubQueryCommandContext)_localctx, predIndex); - case 58: + case 57: return booleanExpression_sempred((BooleanExpressionContext)_localctx, predIndex); - case 62: + case 61: return operatorExpression_sempred((OperatorExpressionContext)_localctx, predIndex); - case 63: + case 62: return primaryExpression_sempred((PrimaryExpressionContext)_localctx, predIndex); } return true; @@ -6751,7 +6686,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in } public static final String _serializedATN = - "\u0004\u0001\u0089\u02e5\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0089\u02df\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"+ @@ -6770,442 +6705,439 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in ";\u0002<\u0007<\u0002=\u0007=\u0002>\u0007>\u0002?\u0007?\u0002@\u0007"+ "@\u0002A\u0007A\u0002B\u0007B\u0002C\u0007C\u0002D\u0007D\u0002E\u0007"+ "E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002I\u0007I\u0002J\u0007"+ - "J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002N\u0007N\u0001\u0000"+ - "\u0001\u0000\u0001\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ - "\u0001\u0001\u0001\u0001\u0005\u0001\u00a8\b\u0001\n\u0001\f\u0001\u00ab"+ - "\t\u0001\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001"+ - "\u0002\u0003\u0002\u00b3\b\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\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\u0001\u0003\u0001\u0003\u0003"+ - "\u0003\u00d0\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001"+ - "\u0005\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001"+ - "\u0007\u0005\u0007\u00dd\b\u0007\n\u0007\f\u0007\u00e0\t\u0007\u0001\b"+ - "\u0001\b\u0001\b\u0003\b\u00e5\b\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001"+ - "\t\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b"+ - "\u00f2\b\u000b\n\u000b\f\u000b\u00f5\t\u000b\u0001\u000b\u0003\u000b\u00f8"+ - "\b\u000b\u0001\f\u0001\f\u0001\f\u0003\f\u00fd\b\f\u0001\f\u0001\f\u0001"+ - "\f\u0001\f\u0001\f\u0003\f\u0104\b\f\u0003\f\u0106\b\f\u0001\r\u0001\r"+ - "\u0001\u000e\u0001\u000e\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010"+ - "\u0001\u0010\u0001\u0010\u0005\u0010\u0112\b\u0010\n\u0010\f\u0010\u0115"+ - "\t\u0010\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0003"+ - "\u0012\u011c\b\u0012\u0001\u0012\u0001\u0012\u0003\u0012\u0120\b\u0012"+ - "\u0001\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u0125\b\u0013\n\u0013"+ - "\f\u0013\u0128\t\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003\u0014"+ - "\u012d\b\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0005\u0015\u0132\b"+ - "\u0015\n\u0015\f\u0015\u0135\t\u0015\u0001\u0016\u0001\u0016\u0001\u0016"+ - "\u0005\u0016\u013a\b\u0016\n\u0016\f\u0016\u013d\t\u0016\u0001\u0017\u0001"+ - "\u0017\u0001\u0017\u0005\u0017\u0142\b\u0017\n\u0017\f\u0017\u0145\t\u0017"+ - "\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+ - "\u0003\u0019\u014d\b\u0019\u0001\u001a\u0001\u001a\u0003\u001a\u0151\b"+ - "\u001a\u0001\u001b\u0001\u001b\u0003\u001b\u0155\b\u001b\u0001\u001c\u0001"+ - "\u001c\u0001\u001c\u0001\u001c\u0003\u001c\u015b\b\u001c\u0001\u001d\u0001"+ - "\u001d\u0003\u001d\u015f\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001"+ - "\u001f\u0001\u001f\u0001\u001f\u0001\u001f\u0005\u001f\u0168\b\u001f\n"+ - "\u001f\f\u001f\u016b\t\u001f\u0001 \u0001 \u0003 \u016f\b \u0001 \u0001"+ - " \u0003 \u0173\b \u0001!\u0001!\u0001!\u0001\"\u0001\"\u0001\"\u0001#"+ - "\u0001#\u0001#\u0001#\u0005#\u017f\b#\n#\f#\u0182\t#\u0001$\u0001$\u0001"+ - "$\u0001$\u0001%\u0001%\u0001%\u0001%\u0003%\u018c\b%\u0001&\u0001&\u0001"+ - "&\u0001&\u0001\'\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0005(\u0198\b("+ - "\n(\f(\u019b\t(\u0001)\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001"+ - "+\u0001+\u0001+\u0001+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001"+ - "-\u0003-\u01af\b-\u0001-\u0001-\u0001-\u0001-\u0005-\u01b5\b-\n-\f-\u01b8"+ - "\t-\u0003-\u01ba\b-\u0001.\u0001.\u0001.\u0003.\u01bf\b.\u0001.\u0001"+ - ".\u0001/\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u0003"+ - "0\u01cc\b0\u00011\u00011\u00011\u00011\u00031\u01d2\b1\u00011\u00011\u0001"+ - "1\u00011\u00011\u00031\u01d9\b1\u00012\u00012\u00012\u00013\u00013\u0001"+ - "3\u00014\u00044\u01e2\b4\u000b4\f4\u01e3\u00015\u00015\u00015\u00015\u0001"+ - "6\u00016\u00016\u00016\u00016\u00016\u00056\u01f0\b6\n6\f6\u01f3\t6\u0001"+ - "7\u00017\u00017\u00037\u01f8\b7\u00018\u00018\u00019\u00019\u00019\u0001"+ - "9\u00019\u00019\u00019\u0001:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ - ":\u0003:\u020a\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0005:\u0211\b:\n"+ - ":\f:\u0214\t:\u0001:\u0001:\u0001:\u0001:\u0001:\u0003:\u021b\b:\u0001"+ - ":\u0001:\u0001:\u0003:\u0220\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0001"+ - ":\u0005:\u0228\b:\n:\f:\u022b\t:\u0001;\u0001;\u0003;\u022f\b;\u0001;"+ - "\u0001;\u0001;\u0001;\u0001;\u0003;\u0236\b;\u0001;\u0001;\u0001;\u0003"+ - ";\u023b\b;\u0001<\u0001<\u0001<\u0003<\u0240\b<\u0001<\u0001<\u0001<\u0001"+ - "=\u0001=\u0001=\u0001=\u0001=\u0003=\u024a\b=\u0001>\u0001>\u0001>\u0001"+ - ">\u0003>\u0250\b>\u0001>\u0001>\u0001>\u0001>\u0001>\u0001>\u0005>\u0258"+ - "\b>\n>\f>\u025b\t>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001"+ - "?\u0003?\u0265\b?\u0001?\u0001?\u0001?\u0005?\u026a\b?\n?\f?\u026d\t?"+ - "\u0001@\u0001@\u0001@\u0001@\u0001@\u0001@\u0005@\u0275\b@\n@\f@\u0278"+ - "\t@\u0001@\u0001@\u0003@\u027c\b@\u0003@\u027e\b@\u0001@\u0001@\u0001"+ - "A\u0001A\u0001B\u0001B\u0001B\u0001B\u0005B\u0288\bB\nB\fB\u028b\tB\u0001"+ - "B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+ - "D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02a0"+ - "\bD\nD\fD\u02a3\tD\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02ab"+ - "\bD\nD\fD\u02ae\tD\u0001D\u0001D\u0001D\u0001D\u0001D\u0001D\u0005D\u02b6"+ - "\bD\nD\fD\u02b9\tD\u0001D\u0001D\u0003D\u02bd\bD\u0001E\u0001E\u0001F"+ - "\u0001F\u0003F\u02c3\bF\u0001G\u0003G\u02c6\bG\u0001G\u0001G\u0001H\u0003"+ - "H\u02cb\bH\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001K\u0001K\u0001"+ - "K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001M\u0001M\u0005M\u02de"+ - "\bM\nM\fM\u02e1\tM\u0001N\u0001N\u0001N\u0000\u0005\u0002lt|~O\u0000\u0002"+ - "\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e"+ - " \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086"+ - "\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u0000"+ - "\t\u0002\u000033jj\u0001\u0000de\u0002\u000088>>\u0002\u0000AADD\u0001"+ - "\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000OOQU\u0002\u0000\u0014"+ - "\u0014\u0016\u0017\u02ff\u0000\u009e\u0001\u0000\u0000\u0000\u0002\u00a1"+ - "\u0001\u0000\u0000\u0000\u0004\u00b2\u0001\u0000\u0000\u0000\u0006\u00cf"+ - "\u0001\u0000\u0000\u0000\b\u00d1\u0001\u0000\u0000\u0000\n\u00d4\u0001"+ - "\u0000\u0000\u0000\f\u00d6\u0001\u0000\u0000\u0000\u000e\u00d9\u0001\u0000"+ - "\u0000\u0000\u0010\u00e4\u0001\u0000\u0000\u0000\u0012\u00e8\u0001\u0000"+ - "\u0000\u0000\u0014\u00eb\u0001\u0000\u0000\u0000\u0016\u00ee\u0001\u0000"+ - "\u0000\u0000\u0018\u0105\u0001\u0000\u0000\u0000\u001a\u0107\u0001\u0000"+ - "\u0000\u0000\u001c\u0109\u0001\u0000\u0000\u0000\u001e\u010b\u0001\u0000"+ - "\u0000\u0000 \u010d\u0001\u0000\u0000\u0000\"\u0116\u0001\u0000\u0000"+ - "\u0000$\u0119\u0001\u0000\u0000\u0000&\u0121\u0001\u0000\u0000\u0000("+ - "\u0129\u0001\u0000\u0000\u0000*\u012e\u0001\u0000\u0000\u0000,\u0136\u0001"+ - "\u0000\u0000\u0000.\u013e\u0001\u0000\u0000\u00000\u0146\u0001\u0000\u0000"+ - "\u00002\u014c\u0001\u0000\u0000\u00004\u0150\u0001\u0000\u0000\u00006"+ - "\u0154\u0001\u0000\u0000\u00008\u015a\u0001\u0000\u0000\u0000:\u015e\u0001"+ - "\u0000\u0000\u0000<\u0160\u0001\u0000\u0000\u0000>\u0163\u0001\u0000\u0000"+ - "\u0000@\u016c\u0001\u0000\u0000\u0000B\u0174\u0001\u0000\u0000\u0000D"+ - "\u0177\u0001\u0000\u0000\u0000F\u017a\u0001\u0000\u0000\u0000H\u0183\u0001"+ - "\u0000\u0000\u0000J\u0187\u0001\u0000\u0000\u0000L\u018d\u0001\u0000\u0000"+ - "\u0000N\u0191\u0001\u0000\u0000\u0000P\u0194\u0001\u0000\u0000\u0000R"+ - "\u019c\u0001\u0000\u0000\u0000T\u01a0\u0001\u0000\u0000\u0000V\u01a3\u0001"+ - "\u0000\u0000\u0000X\u01a7\u0001\u0000\u0000\u0000Z\u01aa\u0001\u0000\u0000"+ - "\u0000\\\u01be\u0001\u0000\u0000\u0000^\u01c2\u0001\u0000\u0000\u0000"+ - "`\u01c7\u0001\u0000\u0000\u0000b\u01cd\u0001\u0000\u0000\u0000d\u01da"+ - "\u0001\u0000\u0000\u0000f\u01dd\u0001\u0000\u0000\u0000h\u01e1\u0001\u0000"+ - "\u0000\u0000j\u01e5\u0001\u0000\u0000\u0000l\u01e9\u0001\u0000\u0000\u0000"+ - "n\u01f7\u0001\u0000\u0000\u0000p\u01f9\u0001\u0000\u0000\u0000r\u01fb"+ - "\u0001\u0000\u0000\u0000t\u021f\u0001\u0000\u0000\u0000v\u023a\u0001\u0000"+ - "\u0000\u0000x\u023c\u0001\u0000\u0000\u0000z\u0249\u0001\u0000\u0000\u0000"+ - "|\u024f\u0001\u0000\u0000\u0000~\u0264\u0001\u0000\u0000\u0000\u0080\u026e"+ - "\u0001\u0000\u0000\u0000\u0082\u0281\u0001\u0000\u0000\u0000\u0084\u0283"+ - "\u0001\u0000\u0000\u0000\u0086\u028e\u0001\u0000\u0000\u0000\u0088\u02bc"+ - "\u0001\u0000\u0000\u0000\u008a\u02be\u0001\u0000\u0000\u0000\u008c\u02c2"+ - "\u0001\u0000\u0000\u0000\u008e\u02c5\u0001\u0000\u0000\u0000\u0090\u02ca"+ - "\u0001\u0000\u0000\u0000\u0092\u02ce\u0001\u0000\u0000\u0000\u0094\u02d0"+ - "\u0001\u0000\u0000\u0000\u0096\u02d2\u0001\u0000\u0000\u0000\u0098\u02d7"+ - "\u0001\u0000\u0000\u0000\u009a\u02d9\u0001\u0000\u0000\u0000\u009c\u02e2"+ - "\u0001\u0000\u0000\u0000\u009e\u009f\u0003\u0002\u0001\u0000\u009f\u00a0"+ - "\u0005\u0000\u0000\u0001\u00a0\u0001\u0001\u0000\u0000\u0000\u00a1\u00a2"+ - "\u0006\u0001\uffff\uffff\u0000\u00a2\u00a3\u0003\u0004\u0002\u0000\u00a3"+ - "\u00a9\u0001\u0000\u0000\u0000\u00a4\u00a5\n\u0001\u0000\u0000\u00a5\u00a6"+ - "\u00052\u0000\u0000\u00a6\u00a8\u0003\u0006\u0003\u0000\u00a7\u00a4\u0001"+ - "\u0000\u0000\u0000\u00a8\u00ab\u0001\u0000\u0000\u0000\u00a9\u00a7\u0001"+ - "\u0000\u0000\u0000\u00a9\u00aa\u0001\u0000\u0000\u0000\u00aa\u0003\u0001"+ - "\u0000\u0000\u0000\u00ab\u00a9\u0001\u0000\u0000\u0000\u00ac\u00b3\u0003"+ - "T*\u0000\u00ad\u00b3\u0003\u0012\t\u0000\u00ae\u00b3\u0003\f\u0006\u0000"+ - "\u00af\u00b3\u0003X,\u0000\u00b0\u00b1\u0004\u0002\u0001\u0000\u00b1\u00b3"+ - "\u0003\u0014\n\u0000\u00b2\u00ac\u0001\u0000\u0000\u0000\u00b2\u00ad\u0001"+ - "\u0000\u0000\u0000\u00b2\u00ae\u0001\u0000\u0000\u0000\u00b2\u00af\u0001"+ - "\u0000\u0000\u0000\u00b2\u00b0\u0001\u0000\u0000\u0000\u00b3\u0005\u0001"+ - "\u0000\u0000\u0000\u00b4\u00d0\u0003\"\u0011\u0000\u00b5\u00d0\u0003\b"+ - "\u0004\u0000\u00b6\u00d0\u0003B!\u0000\u00b7\u00d0\u0003<\u001e\u0000"+ - "\u00b8\u00d0\u0003$\u0012\u0000\u00b9\u00d0\u0003>\u001f\u0000\u00ba\u00d0"+ - "\u0003D\"\u0000\u00bb\u00d0\u0003F#\u0000\u00bc\u00d0\u0003J%\u0000\u00bd"+ - "\u00d0\u0003L&\u0000\u00be\u00d0\u0003Z-\u0000\u00bf\u00d0\u0003N\'\u0000"+ - "\u00c0\u00d0\u0003\u0096K\u0000\u00c1\u00c2\u0004\u0003\u0002\u0000\u00c2"+ - "\u00d0\u0003`0\u0000\u00c3\u00c4\u0004\u0003\u0003\u0000\u00c4\u00d0\u0003"+ - "^/\u0000\u00c5\u00c6\u0004\u0003\u0004\u0000\u00c6\u00d0\u0003b1\u0000"+ - "\u00c7\u00c8\u0004\u0003\u0005\u0000\u00c8\u00d0\u0003d2\u0000\u00c9\u00ca"+ - "\u0004\u0003\u0006\u0000\u00ca\u00d0\u0003f3\u0000\u00cb\u00cc\u0004\u0003"+ - "\u0007\u0000\u00cc\u00d0\u0003r9\u0000\u00cd\u00ce\u0004\u0003\b\u0000"+ - "\u00ce\u00d0\u0003p8\u0000\u00cf\u00b4\u0001\u0000\u0000\u0000\u00cf\u00b5"+ - "\u0001\u0000\u0000\u0000\u00cf\u00b6\u0001\u0000\u0000\u0000\u00cf\u00b7"+ - "\u0001\u0000\u0000\u0000\u00cf\u00b8\u0001\u0000\u0000\u0000\u00cf\u00b9"+ - "\u0001\u0000\u0000\u0000\u00cf\u00ba\u0001\u0000\u0000\u0000\u00cf\u00bb"+ - "\u0001\u0000\u0000\u0000\u00cf\u00bc\u0001\u0000\u0000\u0000\u00cf\u00bd"+ - "\u0001\u0000\u0000\u0000\u00cf\u00be\u0001\u0000\u0000\u0000\u00cf\u00bf"+ - "\u0001\u0000\u0000\u0000\u00cf\u00c0\u0001\u0000\u0000\u0000\u00cf\u00c1"+ - "\u0001\u0000\u0000\u0000\u00cf\u00c3\u0001\u0000\u0000\u0000\u00cf\u00c5"+ - "\u0001\u0000\u0000\u0000\u00cf\u00c7\u0001\u0000\u0000\u0000\u00cf\u00c9"+ - "\u0001\u0000\u0000\u0000\u00cf\u00cb\u0001\u0000\u0000\u0000\u00cf\u00cd"+ - "\u0001\u0000\u0000\u0000\u00d0\u0007\u0001\u0000\u0000\u0000\u00d1\u00d2"+ - "\u0005\u000e\u0000\u0000\u00d2\u00d3\u0003t:\u0000\u00d3\t\u0001\u0000"+ - "\u0000\u0000\u00d4\u00d5\u00030\u0018\u0000\u00d5\u000b\u0001\u0000\u0000"+ - "\u0000\u00d6\u00d7\u0005\u000b\u0000\u0000\u00d7\u00d8\u0003\u000e\u0007"+ - "\u0000\u00d8\r\u0001\u0000\u0000\u0000\u00d9\u00de\u0003\u0010\b\u0000"+ - "\u00da\u00db\u0005=\u0000\u0000\u00db\u00dd\u0003\u0010\b\u0000\u00dc"+ - "\u00da\u0001\u0000\u0000\u0000\u00dd\u00e0\u0001\u0000\u0000\u0000\u00de"+ - "\u00dc\u0001\u0000\u0000\u0000\u00de\u00df\u0001\u0000\u0000\u0000\u00df"+ - "\u000f\u0001\u0000\u0000\u0000\u00e0\u00de\u0001\u0000\u0000\u0000\u00e1"+ - "\u00e2\u0003*\u0015\u0000\u00e2\u00e3\u00059\u0000\u0000\u00e3\u00e5\u0001"+ - "\u0000\u0000\u0000\u00e4\u00e1\u0001\u0000\u0000\u0000\u00e4\u00e5\u0001"+ - "\u0000\u0000\u0000\u00e5\u00e6\u0001\u0000\u0000\u0000\u00e6\u00e7\u0003"+ - "t:\u0000\u00e7\u0011\u0001\u0000\u0000\u0000\u00e8\u00e9\u0005\u0011\u0000"+ - "\u0000\u00e9\u00ea\u0003\u0016\u000b\u0000\u00ea\u0013\u0001\u0000\u0000"+ - "\u0000\u00eb\u00ec\u0005\u0012\u0000\u0000\u00ec\u00ed\u0003\u0016\u000b"+ - "\u0000\u00ed\u0015\u0001\u0000\u0000\u0000\u00ee\u00f3\u0003\u0018\f\u0000"+ - "\u00ef\u00f0\u0005=\u0000\u0000\u00f0\u00f2\u0003\u0018\f\u0000\u00f1"+ - "\u00ef\u0001\u0000\u0000\u0000\u00f2\u00f5\u0001\u0000\u0000\u0000\u00f3"+ - "\u00f1\u0001\u0000\u0000\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4"+ - "\u00f7\u0001\u0000\u0000\u0000\u00f5\u00f3\u0001\u0000\u0000\u0000\u00f6"+ - "\u00f8\u0003 \u0010\u0000\u00f7\u00f6\u0001\u0000\u0000\u0000\u00f7\u00f8"+ - "\u0001\u0000\u0000\u0000\u00f8\u0017\u0001\u0000\u0000\u0000\u00f9\u00fa"+ - "\u0003\u001a\r\u0000\u00fa\u00fb\u0005<\u0000\u0000\u00fb\u00fd\u0001"+ - "\u0000\u0000\u0000\u00fc\u00f9\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001"+ - "\u0000\u0000\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u0106\u0003"+ - "\u001e\u000f\u0000\u00ff\u0100\u0004\f\t\u0000\u0100\u0103\u0003\u001e"+ - "\u000f\u0000\u0101\u0102\u0005;\u0000\u0000\u0102\u0104\u0003\u001c\u000e"+ - "\u0000\u0103\u0101\u0001\u0000\u0000\u0000\u0103\u0104\u0001\u0000\u0000"+ - "\u0000\u0104\u0106\u0001\u0000\u0000\u0000\u0105\u00fc\u0001\u0000\u0000"+ - "\u0000\u0105\u00ff\u0001\u0000\u0000\u0000\u0106\u0019\u0001\u0000\u0000"+ - "\u0000\u0107\u0108\u0007\u0000\u0000\u0000\u0108\u001b\u0001\u0000\u0000"+ - "\u0000\u0109\u010a\u0007\u0000\u0000\u0000\u010a\u001d\u0001\u0000\u0000"+ - "\u0000\u010b\u010c\u0007\u0000\u0000\u0000\u010c\u001f\u0001\u0000\u0000"+ - "\u0000\u010d\u010e\u0005i\u0000\u0000\u010e\u0113\u0005j\u0000\u0000\u010f"+ - "\u0110\u0005=\u0000\u0000\u0110\u0112\u0005j\u0000\u0000\u0111\u010f\u0001"+ - "\u0000\u0000\u0000\u0112\u0115\u0001\u0000\u0000\u0000\u0113\u0111\u0001"+ - "\u0000\u0000\u0000\u0113\u0114\u0001\u0000\u0000\u0000\u0114!\u0001\u0000"+ - "\u0000\u0000\u0115\u0113\u0001\u0000\u0000\u0000\u0116\u0117\u0005\b\u0000"+ - "\u0000\u0117\u0118\u0003\u000e\u0007\u0000\u0118#\u0001\u0000\u0000\u0000"+ - "\u0119\u011b\u0005\r\u0000\u0000\u011a\u011c\u0003&\u0013\u0000\u011b"+ - "\u011a\u0001\u0000\u0000\u0000\u011b\u011c\u0001\u0000\u0000\u0000\u011c"+ - "\u011f\u0001\u0000\u0000\u0000\u011d\u011e\u0005:\u0000\u0000\u011e\u0120"+ - "\u0003\u000e\u0007\u0000\u011f\u011d\u0001\u0000\u0000\u0000\u011f\u0120"+ - "\u0001\u0000\u0000\u0000\u0120%\u0001\u0000\u0000\u0000\u0121\u0126\u0003"+ - "(\u0014\u0000\u0122\u0123\u0005=\u0000\u0000\u0123\u0125\u0003(\u0014"+ - "\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0125\u0128\u0001\u0000\u0000"+ - "\u0000\u0126\u0124\u0001\u0000\u0000\u0000\u0126\u0127\u0001\u0000\u0000"+ - "\u0000\u0127\'\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000\u0000\u0000"+ - "\u0129\u012c\u0003\u0010\b\u0000\u012a\u012b\u0005\u000e\u0000\u0000\u012b"+ - "\u012d\u0003t:\u0000\u012c\u012a\u0001\u0000\u0000\u0000\u012c\u012d\u0001"+ - "\u0000\u0000\u0000\u012d)\u0001\u0000\u0000\u0000\u012e\u0133\u00038\u001c"+ - "\u0000\u012f\u0130\u0005?\u0000\u0000\u0130\u0132\u00038\u001c\u0000\u0131"+ - "\u012f\u0001\u0000\u0000\u0000\u0132\u0135\u0001\u0000\u0000\u0000\u0133"+ - "\u0131\u0001\u0000\u0000\u0000\u0133\u0134\u0001\u0000\u0000\u0000\u0134"+ - "+\u0001\u0000\u0000\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u013b"+ - "\u00032\u0019\u0000\u0137\u0138\u0005?\u0000\u0000\u0138\u013a\u00032"+ - "\u0019\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-\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000"+ - "\u0000\u013e\u0143\u0003,\u0016\u0000\u013f\u0140\u0005=\u0000\u0000\u0140"+ - "\u0142\u0003,\u0016\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0142\u0145"+ - "\u0001\u0000\u0000\u0000\u0143\u0141\u0001\u0000\u0000\u0000\u0143\u0144"+ - "\u0001\u0000\u0000\u0000\u0144/\u0001\u0000\u0000\u0000\u0145\u0143\u0001"+ - "\u0000\u0000\u0000\u0146\u0147\u0007\u0001\u0000\u0000\u01471\u0001\u0000"+ - "\u0000\u0000\u0148\u014d\u0005\u007f\u0000\u0000\u0149\u014d\u00034\u001a"+ - "\u0000\u014a\u014b\u0004\u0019\n\u0000\u014b\u014d\u00036\u001b\u0000"+ - "\u014c\u0148\u0001\u0000\u0000\u0000\u014c\u0149\u0001\u0000\u0000\u0000"+ - "\u014c\u014a\u0001\u0000\u0000\u0000\u014d3\u0001\u0000\u0000\u0000\u014e"+ - "\u0151\u0005K\u0000\u0000\u014f\u0151\u0005^\u0000\u0000\u0150\u014e\u0001"+ - "\u0000\u0000\u0000\u0150\u014f\u0001\u0000\u0000\u0000\u01515\u0001\u0000"+ - "\u0000\u0000\u0152\u0155\u0005]\u0000\u0000\u0153\u0155\u0005_\u0000\u0000"+ - "\u0154\u0152\u0001\u0000\u0000\u0000\u0154\u0153\u0001\u0000\u0000\u0000"+ - "\u01557\u0001\u0000\u0000\u0000\u0156\u015b\u00030\u0018\u0000\u0157\u015b"+ - "\u00034\u001a\u0000\u0158\u0159\u0004\u001c\u000b\u0000\u0159\u015b\u0003"+ - "6\u001b\u0000\u015a\u0156\u0001\u0000\u0000\u0000\u015a\u0157\u0001\u0000"+ - "\u0000\u0000\u015a\u0158\u0001\u0000\u0000\u0000\u015b9\u0001\u0000\u0000"+ - "\u0000\u015c\u015f\u0003\u0092I\u0000\u015d\u015f\u00034\u001a\u0000\u015e"+ - "\u015c\u0001\u0000\u0000\u0000\u015e\u015d\u0001\u0000\u0000\u0000\u015f"+ - ";\u0001\u0000\u0000\u0000\u0160\u0161\u0005\n\u0000\u0000\u0161\u0162"+ - "\u00054\u0000\u0000\u0162=\u0001\u0000\u0000\u0000\u0163\u0164\u0005\f"+ - "\u0000\u0000\u0164\u0169\u0003@ \u0000\u0165\u0166\u0005=\u0000\u0000"+ - "\u0166\u0168\u0003@ \u0000\u0167\u0165\u0001\u0000\u0000\u0000\u0168\u016b"+ - "\u0001\u0000\u0000\u0000\u0169\u0167\u0001\u0000\u0000\u0000\u0169\u016a"+ - "\u0001\u0000\u0000\u0000\u016a?\u0001\u0000\u0000\u0000\u016b\u0169\u0001"+ - "\u0000\u0000\u0000\u016c\u016e\u0003t:\u0000\u016d\u016f\u0007\u0002\u0000"+ - "\u0000\u016e\u016d\u0001\u0000\u0000\u0000\u016e\u016f\u0001\u0000\u0000"+ - "\u0000\u016f\u0172\u0001\u0000\u0000\u0000\u0170\u0171\u0005H\u0000\u0000"+ - "\u0171\u0173\u0007\u0003\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000"+ - "\u0172\u0173\u0001\u0000\u0000\u0000\u0173A\u0001\u0000\u0000\u0000\u0174"+ - "\u0175\u0005\u001b\u0000\u0000\u0175\u0176\u0003.\u0017\u0000\u0176C\u0001"+ - "\u0000\u0000\u0000\u0177\u0178\u0005\u001a\u0000\u0000\u0178\u0179\u0003"+ - ".\u0017\u0000\u0179E\u0001\u0000\u0000\u0000\u017a\u017b\u0005\u001e\u0000"+ - "\u0000\u017b\u0180\u0003H$\u0000\u017c\u017d\u0005=\u0000\u0000\u017d"+ - "\u017f\u0003H$\u0000\u017e\u017c\u0001\u0000\u0000\u0000\u017f\u0182\u0001"+ - "\u0000\u0000\u0000\u0180\u017e\u0001\u0000\u0000\u0000\u0180\u0181\u0001"+ - "\u0000\u0000\u0000\u0181G\u0001\u0000\u0000\u0000\u0182\u0180\u0001\u0000"+ - "\u0000\u0000\u0183\u0184\u0003,\u0016\u0000\u0184\u0185\u00057\u0000\u0000"+ - "\u0185\u0186\u0003,\u0016\u0000\u0186I\u0001\u0000\u0000\u0000\u0187\u0188"+ - "\u0005\u0007\u0000\u0000\u0188\u0189\u0003~?\u0000\u0189\u018b\u0003\u0092"+ - "I\u0000\u018a\u018c\u0003P(\u0000\u018b\u018a\u0001\u0000\u0000\u0000"+ - "\u018b\u018c\u0001\u0000\u0000\u0000\u018cK\u0001\u0000\u0000\u0000\u018d"+ - "\u018e\u0005\t\u0000\u0000\u018e\u018f\u0003~?\u0000\u018f\u0190\u0003"+ - "\u0092I\u0000\u0190M\u0001\u0000\u0000\u0000\u0191\u0192\u0005\u0019\u0000"+ - "\u0000\u0192\u0193\u0003*\u0015\u0000\u0193O\u0001\u0000\u0000\u0000\u0194"+ - "\u0199\u0003R)\u0000\u0195\u0196\u0005=\u0000\u0000\u0196\u0198\u0003"+ - "R)\u0000\u0197\u0195\u0001\u0000\u0000\u0000\u0198\u019b\u0001\u0000\u0000"+ - "\u0000\u0199\u0197\u0001\u0000\u0000\u0000\u0199\u019a\u0001\u0000\u0000"+ - "\u0000\u019aQ\u0001\u0000\u0000\u0000\u019b\u0199\u0001\u0000\u0000\u0000"+ - "\u019c\u019d\u00030\u0018\u0000\u019d\u019e\u00059\u0000\u0000\u019e\u019f"+ - "\u0003\u0088D\u0000\u019fS\u0001\u0000\u0000\u0000\u01a0\u01a1\u0005\u0006"+ - "\u0000\u0000\u01a1\u01a2\u0003V+\u0000\u01a2U\u0001\u0000\u0000\u0000"+ - "\u01a3\u01a4\u0005`\u0000\u0000\u01a4\u01a5\u0003\u0002\u0001\u0000\u01a5"+ - "\u01a6\u0005a\u0000\u0000\u01a6W\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005"+ - "\u001f\u0000\u0000\u01a8\u01a9\u0005\u0086\u0000\u0000\u01a9Y\u0001\u0000"+ - "\u0000\u0000\u01aa\u01ab\u0005\u0005\u0000\u0000\u01ab\u01ae\u0005$\u0000"+ - "\u0000\u01ac\u01ad\u0005I\u0000\u0000\u01ad\u01af\u0003,\u0016\u0000\u01ae"+ - "\u01ac\u0001\u0000\u0000\u0000\u01ae\u01af\u0001\u0000\u0000\u0000\u01af"+ - "\u01b9\u0001\u0000\u0000\u0000\u01b0\u01b1\u0005N\u0000\u0000\u01b1\u01b6"+ - "\u0003\\.\u0000\u01b2\u01b3\u0005=\u0000\u0000\u01b3\u01b5\u0003\\.\u0000"+ - "\u01b4\u01b2\u0001\u0000\u0000\u0000\u01b5\u01b8\u0001\u0000\u0000\u0000"+ - "\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000\u0000\u0000"+ - "\u01b7\u01ba\u0001\u0000\u0000\u0000\u01b8\u01b6\u0001\u0000\u0000\u0000"+ - "\u01b9\u01b0\u0001\u0000\u0000\u0000\u01b9\u01ba\u0001\u0000\u0000\u0000"+ - "\u01ba[\u0001\u0000\u0000\u0000\u01bb\u01bc\u0003,\u0016\u0000\u01bc\u01bd"+ - "\u00059\u0000\u0000\u01bd\u01bf\u0001\u0000\u0000\u0000\u01be\u01bb\u0001"+ - "\u0000\u0000\u0000\u01be\u01bf\u0001\u0000\u0000\u0000\u01bf\u01c0\u0001"+ - "\u0000\u0000\u0000\u01c0\u01c1\u0003,\u0016\u0000\u01c1]\u0001\u0000\u0000"+ - "\u0000\u01c2\u01c3\u0005\u0018\u0000\u0000\u01c3\u01c4\u0003\u0018\f\u0000"+ - "\u01c4\u01c5\u0005I\u0000\u0000\u01c5\u01c6\u0003.\u0017\u0000\u01c6_"+ - "\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005\u000f\u0000\u0000\u01c8\u01cb"+ - "\u0003&\u0013\u0000\u01c9\u01ca\u0005:\u0000\u0000\u01ca\u01cc\u0003\u000e"+ - "\u0007\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001\u0000"+ - "\u0000\u0000\u01cca\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005\u0004\u0000"+ - "\u0000\u01ce\u01d1\u0003*\u0015\u0000\u01cf\u01d0\u0005I\u0000\u0000\u01d0"+ - "\u01d2\u0003*\u0015\u0000\u01d1\u01cf\u0001\u0000\u0000\u0000\u01d1\u01d2"+ - "\u0001\u0000\u0000\u0000\u01d2\u01d8\u0001\u0000\u0000\u0000\u01d3\u01d4"+ - "\u00057\u0000\u0000\u01d4\u01d5\u0003*\u0015\u0000\u01d5\u01d6\u0005="+ - "\u0000\u0000\u01d6\u01d7\u0003*\u0015\u0000\u01d7\u01d9\u0001\u0000\u0000"+ - "\u0000\u01d8\u01d3\u0001\u0000\u0000\u0000\u01d8\u01d9\u0001\u0000\u0000"+ - "\u0000\u01d9c\u0001\u0000\u0000\u0000\u01da\u01db\u0005\u001c\u0000\u0000"+ - "\u01db\u01dc\u0003.\u0017\u0000\u01dce\u0001\u0000\u0000\u0000\u01dd\u01de"+ - "\u0005\u0013\u0000\u0000\u01de\u01df\u0003h4\u0000\u01dfg\u0001\u0000"+ - "\u0000\u0000\u01e0\u01e2\u0003j5\u0000\u01e1\u01e0\u0001\u0000\u0000\u0000"+ - "\u01e2\u01e3\u0001\u0000\u0000\u0000\u01e3\u01e1\u0001\u0000\u0000\u0000"+ - "\u01e3\u01e4\u0001\u0000\u0000\u0000\u01e4i\u0001\u0000\u0000\u0000\u01e5"+ - "\u01e6\u0005b\u0000\u0000\u01e6\u01e7\u0003l6\u0000\u01e7\u01e8\u0005"+ - "c\u0000\u0000\u01e8k\u0001\u0000\u0000\u0000\u01e9\u01ea\u00066\uffff"+ - "\uffff\u0000\u01ea\u01eb\u0003n7\u0000\u01eb\u01f1\u0001\u0000\u0000\u0000"+ - "\u01ec\u01ed\n\u0001\u0000\u0000\u01ed\u01ee\u00052\u0000\u0000\u01ee"+ - "\u01f0\u0003n7\u0000\u01ef\u01ec\u0001\u0000\u0000\u0000\u01f0\u01f3\u0001"+ - "\u0000\u0000\u0000\u01f1\u01ef\u0001\u0000\u0000\u0000\u01f1\u01f2\u0001"+ - "\u0000\u0000\u0000\u01f2m\u0001\u0000\u0000\u0000\u01f3\u01f1\u0001\u0000"+ - "\u0000\u0000\u01f4\u01f8\u0003\b\u0004\u0000\u01f5\u01f8\u0003>\u001f"+ - "\u0000\u01f6\u01f8\u0003<\u001e\u0000\u01f7\u01f4\u0001\u0000\u0000\u0000"+ - "\u01f7\u01f5\u0001\u0000\u0000\u0000\u01f7\u01f6\u0001\u0000\u0000\u0000"+ - "\u01f8o\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\u001d\u0000\u0000\u01fa"+ - "q\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005\u0010\u0000\u0000\u01fc\u01fd"+ - "\u0003:\u001d\u0000\u01fd\u01fe\u0005I\u0000\u0000\u01fe\u01ff\u0003\u000e"+ - "\u0007\u0000\u01ff\u0200\u0005N\u0000\u0000\u0200\u0201\u0003:\u001d\u0000"+ - "\u0201s\u0001\u0000\u0000\u0000\u0202\u0203\u0006:\uffff\uffff\u0000\u0203"+ - "\u0204\u0005F\u0000\u0000\u0204\u0220\u0003t:\b\u0205\u0220\u0003z=\u0000"+ - "\u0206\u0220\u0003v;\u0000\u0207\u0209\u0003z=\u0000\u0208\u020a\u0005"+ - "F\u0000\u0000\u0209\u0208\u0001\u0000\u0000\u0000\u0209\u020a\u0001\u0000"+ - "\u0000\u0000\u020a\u020b\u0001\u0000\u0000\u0000\u020b\u020c\u0005B\u0000"+ - "\u0000\u020c\u020d\u0005b\u0000\u0000\u020d\u0212\u0003z=\u0000\u020e"+ - "\u020f\u0005=\u0000\u0000\u020f\u0211\u0003z=\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\u0213\u0215\u0001"+ - "\u0000\u0000\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0215\u0216\u0005"+ - "c\u0000\u0000\u0216\u0220\u0001\u0000\u0000\u0000\u0217\u0218\u0003z="+ - "\u0000\u0218\u021a\u0005C\u0000\u0000\u0219\u021b\u0005F\u0000\u0000\u021a"+ - "\u0219\u0001\u0000\u0000\u0000\u021a\u021b\u0001\u0000\u0000\u0000\u021b"+ - "\u021c\u0001\u0000\u0000\u0000\u021c\u021d\u0005G\u0000\u0000\u021d\u0220"+ - "\u0001\u0000\u0000\u0000\u021e\u0220\u0003x<\u0000\u021f\u0202\u0001\u0000"+ - "\u0000\u0000\u021f\u0205\u0001\u0000\u0000\u0000\u021f\u0206\u0001\u0000"+ - "\u0000\u0000\u021f\u0207\u0001\u0000\u0000\u0000\u021f\u0217\u0001\u0000"+ - "\u0000\u0000\u021f\u021e\u0001\u0000\u0000\u0000\u0220\u0229\u0001\u0000"+ - "\u0000\u0000\u0221\u0222\n\u0005\u0000\u0000\u0222\u0223\u00056\u0000"+ - "\u0000\u0223\u0228\u0003t:\u0006\u0224\u0225\n\u0004\u0000\u0000\u0225"+ - "\u0226\u0005J\u0000\u0000\u0226\u0228\u0003t:\u0005\u0227\u0221\u0001"+ - "\u0000\u0000\u0000\u0227\u0224\u0001\u0000\u0000\u0000\u0228\u022b\u0001"+ - "\u0000\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001"+ - "\u0000\u0000\u0000\u022au\u0001\u0000\u0000\u0000\u022b\u0229\u0001\u0000"+ - "\u0000\u0000\u022c\u022e\u0003z=\u0000\u022d\u022f\u0005F\u0000\u0000"+ - "\u022e\u022d\u0001\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000"+ - "\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0005E\u0000\u0000\u0231"+ - "\u0232\u0003\u0092I\u0000\u0232\u023b\u0001\u0000\u0000\u0000\u0233\u0235"+ - "\u0003z=\u0000\u0234\u0236\u0005F\u0000\u0000\u0235\u0234\u0001\u0000"+ - "\u0000\u0000\u0235\u0236\u0001\u0000\u0000\u0000\u0236\u0237\u0001\u0000"+ - "\u0000\u0000\u0237\u0238\u0005L\u0000\u0000\u0238\u0239\u0003\u0092I\u0000"+ - "\u0239\u023b\u0001\u0000\u0000\u0000\u023a\u022c\u0001\u0000\u0000\u0000"+ - "\u023a\u0233\u0001\u0000\u0000\u0000\u023bw\u0001\u0000\u0000\u0000\u023c"+ - "\u023f\u0003*\u0015\u0000\u023d\u023e\u0005;\u0000\u0000\u023e\u0240\u0003"+ - "\n\u0005\u0000\u023f\u023d\u0001\u0000\u0000\u0000\u023f\u0240\u0001\u0000"+ - "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0005<\u0000"+ - "\u0000\u0242\u0243\u0003\u0088D\u0000\u0243y\u0001\u0000\u0000\u0000\u0244"+ - "\u024a\u0003|>\u0000\u0245\u0246\u0003|>\u0000\u0246\u0247\u0003\u0094"+ - "J\u0000\u0247\u0248\u0003|>\u0000\u0248\u024a\u0001\u0000\u0000\u0000"+ - "\u0249\u0244\u0001\u0000\u0000\u0000\u0249\u0245\u0001\u0000\u0000\u0000"+ - "\u024a{\u0001\u0000\u0000\u0000\u024b\u024c\u0006>\uffff\uffff\u0000\u024c"+ - "\u0250\u0003~?\u0000\u024d\u024e\u0007\u0004\u0000\u0000\u024e\u0250\u0003"+ - "|>\u0003\u024f\u024b\u0001\u0000\u0000\u0000\u024f\u024d\u0001\u0000\u0000"+ - "\u0000\u0250\u0259\u0001\u0000\u0000\u0000\u0251\u0252\n\u0002\u0000\u0000"+ - "\u0252\u0253\u0007\u0005\u0000\u0000\u0253\u0258\u0003|>\u0003\u0254\u0255"+ - "\n\u0001\u0000\u0000\u0255\u0256\u0007\u0004\u0000\u0000\u0256\u0258\u0003"+ - "|>\u0002\u0257\u0251\u0001\u0000\u0000\u0000\u0257\u0254\u0001\u0000\u0000"+ - "\u0000\u0258\u025b\u0001\u0000\u0000\u0000\u0259\u0257\u0001\u0000\u0000"+ - "\u0000\u0259\u025a\u0001\u0000\u0000\u0000\u025a}\u0001\u0000\u0000\u0000"+ - "\u025b\u0259\u0001\u0000\u0000\u0000\u025c\u025d\u0006?\uffff\uffff\u0000"+ - "\u025d\u0265\u0003\u0088D\u0000\u025e\u0265\u0003*\u0015\u0000\u025f\u0265"+ - "\u0003\u0080@\u0000\u0260\u0261\u0005b\u0000\u0000\u0261\u0262\u0003t"+ - ":\u0000\u0262\u0263\u0005c\u0000\u0000\u0263\u0265\u0001\u0000\u0000\u0000"+ - "\u0264\u025c\u0001\u0000\u0000\u0000\u0264\u025e\u0001\u0000\u0000\u0000"+ - "\u0264\u025f\u0001\u0000\u0000\u0000\u0264\u0260\u0001\u0000\u0000\u0000"+ - "\u0265\u026b\u0001\u0000\u0000\u0000\u0266\u0267\n\u0001\u0000\u0000\u0267"+ - "\u0268\u0005;\u0000\u0000\u0268\u026a\u0003\n\u0005\u0000\u0269\u0266"+ - "\u0001\u0000\u0000\u0000\u026a\u026d\u0001\u0000\u0000\u0000\u026b\u0269"+ - "\u0001\u0000\u0000\u0000\u026b\u026c\u0001\u0000\u0000\u0000\u026c\u007f"+ - "\u0001\u0000\u0000\u0000\u026d\u026b\u0001\u0000\u0000\u0000\u026e\u026f"+ - "\u0003\u0082A\u0000\u026f\u027d\u0005b\u0000\u0000\u0270\u027e\u0005X"+ - "\u0000\u0000\u0271\u0276\u0003t:\u0000\u0272\u0273\u0005=\u0000\u0000"+ - "\u0273\u0275\u0003t:\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0275\u0278"+ - "\u0001\u0000\u0000\u0000\u0276\u0274\u0001\u0000\u0000\u0000\u0276\u0277"+ - "\u0001\u0000\u0000\u0000\u0277\u027b\u0001\u0000\u0000\u0000\u0278\u0276"+ - "\u0001\u0000\u0000\u0000\u0279\u027a\u0005=\u0000\u0000\u027a\u027c\u0003"+ - "\u0084B\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027b\u027c\u0001\u0000"+ - "\u0000\u0000\u027c\u027e\u0001\u0000\u0000\u0000\u027d\u0270\u0001\u0000"+ - "\u0000\u0000\u027d\u0271\u0001\u0000\u0000\u0000\u027d\u027e\u0001\u0000"+ - "\u0000\u0000\u027e\u027f\u0001\u0000\u0000\u0000\u027f\u0280\u0005c\u0000"+ - "\u0000\u0280\u0081\u0001\u0000\u0000\u0000\u0281\u0282\u00038\u001c\u0000"+ - "\u0282\u0083\u0001\u0000\u0000\u0000\u0283\u0284\u0005[\u0000\u0000\u0284"+ - "\u0289\u0003\u0086C\u0000\u0285\u0286\u0005=\u0000\u0000\u0286\u0288\u0003"+ - "\u0086C\u0000\u0287\u0285\u0001\u0000\u0000\u0000\u0288\u028b\u0001\u0000"+ - "\u0000\u0000\u0289\u0287\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000"+ - "\u0000\u0000\u028a\u028c\u0001\u0000\u0000\u0000\u028b\u0289\u0001\u0000"+ - "\u0000\u0000\u028c\u028d\u0005\\\u0000\u0000\u028d\u0085\u0001\u0000\u0000"+ - "\u0000\u028e\u028f\u0003\u0092I\u0000\u028f\u0290\u0005<\u0000\u0000\u0290"+ - "\u0291\u0003\u0088D\u0000\u0291\u0087\u0001\u0000\u0000\u0000\u0292\u02bd"+ - "\u0005G\u0000\u0000\u0293\u0294\u0003\u0090H\u0000\u0294\u0295\u0005d"+ - "\u0000\u0000\u0295\u02bd\u0001\u0000\u0000\u0000\u0296\u02bd\u0003\u008e"+ - "G\u0000\u0297\u02bd\u0003\u0090H\u0000\u0298\u02bd\u0003\u008aE\u0000"+ - "\u0299\u02bd\u00034\u001a\u0000\u029a\u02bd\u0003\u0092I\u0000\u029b\u029c"+ - "\u0005`\u0000\u0000\u029c\u02a1\u0003\u008cF\u0000\u029d\u029e\u0005="+ - "\u0000\u0000\u029e\u02a0\u0003\u008cF\u0000\u029f\u029d\u0001\u0000\u0000"+ - "\u0000\u02a0\u02a3\u0001\u0000\u0000\u0000\u02a1\u029f\u0001\u0000\u0000"+ - "\u0000\u02a1\u02a2\u0001\u0000\u0000\u0000\u02a2\u02a4\u0001\u0000\u0000"+ - "\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005a\u0000\u0000"+ - "\u02a5\u02bd\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005`\u0000\u0000\u02a7"+ - "\u02ac\u0003\u008aE\u0000\u02a8\u02a9\u0005=\u0000\u0000\u02a9\u02ab\u0003"+ - "\u008aE\u0000\u02aa\u02a8\u0001\u0000\u0000\u0000\u02ab\u02ae\u0001\u0000"+ - "\u0000\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000\u02ac\u02ad\u0001\u0000"+ - "\u0000\u0000\u02ad\u02af\u0001\u0000\u0000\u0000\u02ae\u02ac\u0001\u0000"+ - "\u0000\u0000\u02af\u02b0\u0005a\u0000\u0000\u02b0\u02bd\u0001\u0000\u0000"+ - "\u0000\u02b1\u02b2\u0005`\u0000\u0000\u02b2\u02b7\u0003\u0092I\u0000\u02b3"+ - "\u02b4\u0005=\u0000\u0000\u02b4\u02b6\u0003\u0092I\u0000\u02b5\u02b3\u0001"+ - "\u0000\u0000\u0000\u02b6\u02b9\u0001\u0000\u0000\u0000\u02b7\u02b5\u0001"+ - "\u0000\u0000\u0000\u02b7\u02b8\u0001\u0000\u0000\u0000\u02b8\u02ba\u0001"+ - "\u0000\u0000\u0000\u02b9\u02b7\u0001\u0000\u0000\u0000\u02ba\u02bb\u0005"+ - "a\u0000\u0000\u02bb\u02bd\u0001\u0000\u0000\u0000\u02bc\u0292\u0001\u0000"+ - "\u0000\u0000\u02bc\u0293\u0001\u0000\u0000\u0000\u02bc\u0296\u0001\u0000"+ - "\u0000\u0000\u02bc\u0297\u0001\u0000\u0000\u0000\u02bc\u0298\u0001\u0000"+ - "\u0000\u0000\u02bc\u0299\u0001\u0000\u0000\u0000\u02bc\u029a\u0001\u0000"+ - "\u0000\u0000\u02bc\u029b\u0001\u0000\u0000\u0000\u02bc\u02a6\u0001\u0000"+ - "\u0000\u0000\u02bc\u02b1\u0001\u0000\u0000\u0000\u02bd\u0089\u0001\u0000"+ - "\u0000\u0000\u02be\u02bf\u0007\u0006\u0000\u0000\u02bf\u008b\u0001\u0000"+ - "\u0000\u0000\u02c0\u02c3\u0003\u008eG\u0000\u02c1\u02c3\u0003\u0090H\u0000"+ - "\u02c2\u02c0\u0001\u0000\u0000\u0000\u02c2\u02c1\u0001\u0000\u0000\u0000"+ - "\u02c3\u008d\u0001\u0000\u0000\u0000\u02c4\u02c6\u0007\u0004\u0000\u0000"+ - "\u02c5\u02c4\u0001\u0000\u0000\u0000\u02c5\u02c6\u0001\u0000\u0000\u0000"+ - "\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u02c8\u00055\u0000\u0000\u02c8"+ - "\u008f\u0001\u0000\u0000\u0000\u02c9\u02cb\u0007\u0004\u0000\u0000\u02ca"+ - "\u02c9\u0001\u0000\u0000\u0000\u02ca\u02cb\u0001\u0000\u0000\u0000\u02cb"+ - "\u02cc\u0001\u0000\u0000\u0000\u02cc\u02cd\u00054\u0000\u0000\u02cd\u0091"+ - "\u0001\u0000\u0000\u0000\u02ce\u02cf\u00053\u0000\u0000\u02cf\u0093\u0001"+ - "\u0000\u0000\u0000\u02d0\u02d1\u0007\u0007\u0000\u0000\u02d1\u0095\u0001"+ - "\u0000\u0000\u0000\u02d2\u02d3\u0007\b\u0000\u0000\u02d3\u02d4\u0005q"+ - "\u0000\u0000\u02d4\u02d5\u0003\u0098L\u0000\u02d5\u02d6\u0003\u009aM\u0000"+ - "\u02d6\u0097\u0001\u0000\u0000\u0000\u02d7\u02d8\u0003\u0018\f\u0000\u02d8"+ - "\u0099\u0001\u0000\u0000\u0000\u02d9\u02da\u0005I\u0000\u0000\u02da\u02df"+ - "\u0003\u009cN\u0000\u02db\u02dc\u0005=\u0000\u0000\u02dc\u02de\u0003\u009c"+ - "N\u0000\u02dd\u02db\u0001\u0000\u0000\u0000\u02de\u02e1\u0001\u0000\u0000"+ - "\u0000\u02df\u02dd\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000"+ - "\u0000\u02e0\u009b\u0001\u0000\u0000\u0000\u02e1\u02df\u0001\u0000\u0000"+ - "\u0000\u02e2\u02e3\u0003z=\u0000\u02e3\u009d\u0001\u0000\u0000\u0000C"+ - "\u00a9\u00b2\u00cf\u00de\u00e4\u00f3\u00f7\u00fc\u0103\u0105\u0113\u011b"+ - "\u011f\u0126\u012c\u0133\u013b\u0143\u014c\u0150\u0154\u015a\u015e\u0169"+ - "\u016e\u0172\u0180\u018b\u0199\u01ae\u01b6\u01b9\u01be\u01cb\u01d1\u01d8"+ - "\u01e3\u01f1\u01f7\u0209\u0212\u021a\u021f\u0227\u0229\u022e\u0235\u023a"+ - "\u023f\u0249\u024f\u0257\u0259\u0264\u026b\u0276\u027b\u027d\u0289\u02a1"+ - "\u02ac\u02b7\u02bc\u02c2\u02c5\u02ca\u02df"; + "J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0001\u0000\u0001\u0000\u0001"+ + "\u0000\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001"+ + "\u0001\u0005\u0001\u00a6\b\u0001\n\u0001\f\u0001\u00a9\t\u0001\u0001\u0002"+ + "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002"+ + "\u00b1\b\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\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\u0001\u0003\u0001\u0003\u0003\u0003\u00ce\b\u0003"+ + "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0006"+ + "\u0001\u0006\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0005\u0007"+ + "\u00db\b\u0007\n\u0007\f\u0007\u00de\t\u0007\u0001\b\u0001\b\u0001\b\u0003"+ + "\b\u00e3\b\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001"+ + "\n\u0001\u000b\u0001\u000b\u0001\u000b\u0005\u000b\u00f0\b\u000b\n\u000b"+ + "\f\u000b\u00f3\t\u000b\u0001\u000b\u0003\u000b\u00f6\b\u000b\u0001\f\u0001"+ + "\f\u0001\f\u0003\f\u00fb\b\f\u0001\f\u0001\f\u0001\f\u0001\f\u0001\f\u0003"+ + "\f\u0102\b\f\u0003\f\u0104\b\f\u0001\r\u0001\r\u0001\u000e\u0001\u000e"+ + "\u0001\u000f\u0001\u000f\u0001\u0010\u0001\u0010\u0001\u0010\u0001\u0010"+ + "\u0005\u0010\u0110\b\u0010\n\u0010\f\u0010\u0113\t\u0010\u0001\u0011\u0001"+ + "\u0011\u0001\u0011\u0001\u0012\u0001\u0012\u0003\u0012\u011a\b\u0012\u0001"+ + "\u0012\u0001\u0012\u0003\u0012\u011e\b\u0012\u0001\u0013\u0001\u0013\u0001"+ + "\u0013\u0005\u0013\u0123\b\u0013\n\u0013\f\u0013\u0126\t\u0013\u0001\u0014"+ + "\u0001\u0014\u0001\u0014\u0003\u0014\u012b\b\u0014\u0001\u0015\u0001\u0015"+ + "\u0001\u0015\u0005\u0015\u0130\b\u0015\n\u0015\f\u0015\u0133\t\u0015\u0001"+ + "\u0016\u0001\u0016\u0001\u0016\u0005\u0016\u0138\b\u0016\n\u0016\f\u0016"+ + "\u013b\t\u0016\u0001\u0017\u0001\u0017\u0001\u0017\u0005\u0017\u0140\b"+ + "\u0017\n\u0017\f\u0017\u0143\t\u0017\u0001\u0018\u0001\u0018\u0001\u0019"+ + "\u0001\u0019\u0001\u0019\u0001\u0019\u0003\u0019\u014b\b\u0019\u0001\u001a"+ + "\u0001\u001a\u0003\u001a\u014f\b\u001a\u0001\u001b\u0001\u001b\u0003\u001b"+ + "\u0153\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0003\u001c"+ + "\u0159\b\u001c\u0001\u001d\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e"+ + "\u0001\u001e\u0001\u001e\u0005\u001e\u0162\b\u001e\n\u001e\f\u001e\u0165"+ + "\t\u001e\u0001\u001f\u0001\u001f\u0003\u001f\u0169\b\u001f\u0001\u001f"+ + "\u0001\u001f\u0003\u001f\u016d\b\u001f\u0001 \u0001 \u0001 \u0001!\u0001"+ + "!\u0001!\u0001\"\u0001\"\u0001\"\u0001\"\u0005\"\u0179\b\"\n\"\f\"\u017c"+ + "\t\"\u0001#\u0001#\u0001#\u0001#\u0001$\u0001$\u0001$\u0001$\u0003$\u0186"+ + "\b$\u0001%\u0001%\u0001%\u0001%\u0001&\u0001&\u0001&\u0001\'\u0001\'\u0001"+ + "\'\u0005\'\u0192\b\'\n\'\f\'\u0195\t\'\u0001(\u0001(\u0001(\u0001(\u0001"+ + ")\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0001+\u0001+\u0001+\u0001"+ + ",\u0001,\u0001,\u0001,\u0003,\u01a9\b,\u0001,\u0001,\u0001,\u0001,\u0005"+ + ",\u01af\b,\n,\f,\u01b2\t,\u0003,\u01b4\b,\u0001-\u0001-\u0001-\u0003-"+ + "\u01b9\b-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001.\u0001.\u0001/\u0001"+ + "/\u0001/\u0001/\u0003/\u01c6\b/\u00010\u00010\u00010\u00010\u00030\u01cc"+ + "\b0\u00010\u00010\u00010\u00010\u00010\u00030\u01d3\b0\u00011\u00011\u0001"+ + "1\u00012\u00012\u00012\u00013\u00043\u01dc\b3\u000b3\f3\u01dd\u00014\u0001"+ + "4\u00014\u00014\u00015\u00015\u00015\u00015\u00015\u00015\u00055\u01ea"+ + "\b5\n5\f5\u01ed\t5\u00016\u00016\u00016\u00036\u01f2\b6\u00017\u00017"+ + "\u00018\u00018\u00018\u00018\u00018\u00018\u00018\u00019\u00019\u0001"+ + "9\u00019\u00019\u00019\u00019\u00039\u0204\b9\u00019\u00019\u00019\u0001"+ + "9\u00019\u00059\u020b\b9\n9\f9\u020e\t9\u00019\u00019\u00019\u00019\u0001"+ + "9\u00039\u0215\b9\u00019\u00019\u00019\u00039\u021a\b9\u00019\u00019\u0001"+ + "9\u00019\u00019\u00019\u00059\u0222\b9\n9\f9\u0225\t9\u0001:\u0001:\u0003"+ + ":\u0229\b:\u0001:\u0001:\u0001:\u0001:\u0001:\u0003:\u0230\b:\u0001:\u0001"+ + ":\u0001:\u0003:\u0235\b:\u0001;\u0001;\u0001;\u0003;\u023a\b;\u0001;\u0001"+ + ";\u0001;\u0001<\u0001<\u0001<\u0001<\u0001<\u0003<\u0244\b<\u0001=\u0001"+ + "=\u0001=\u0001=\u0003=\u024a\b=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001"+ + "=\u0005=\u0252\b=\n=\f=\u0255\t=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001"+ + ">\u0001>\u0001>\u0003>\u025f\b>\u0001>\u0001>\u0001>\u0005>\u0264\b>\n"+ + ">\f>\u0267\t>\u0001?\u0001?\u0001?\u0001?\u0001?\u0001?\u0005?\u026f\b"+ + "?\n?\f?\u0272\t?\u0001?\u0001?\u0003?\u0276\b?\u0003?\u0278\b?\u0001?"+ + "\u0001?\u0001@\u0001@\u0001A\u0001A\u0001A\u0001A\u0005A\u0282\bA\nA\f"+ + "A\u0285\tA\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001"+ + "C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+ + "C\u0005C\u029a\bC\nC\fC\u029d\tC\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+ + "C\u0005C\u02a5\bC\nC\fC\u02a8\tC\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+ + "C\u0005C\u02b0\bC\nC\fC\u02b3\tC\u0001C\u0001C\u0003C\u02b7\bC\u0001D"+ + "\u0001D\u0001E\u0001E\u0003E\u02bd\bE\u0001F\u0003F\u02c0\bF\u0001F\u0001"+ + "F\u0001G\u0003G\u02c5\bG\u0001G\u0001G\u0001H\u0001H\u0001I\u0001I\u0001"+ + "J\u0001J\u0001J\u0001J\u0001J\u0001K\u0001K\u0001L\u0001L\u0001L\u0001"+ + "L\u0005L\u02d8\bL\nL\fL\u02db\tL\u0001M\u0001M\u0001M\u0000\u0005\u0002"+ + "jrz|N\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018"+ + "\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080"+ + "\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098"+ + "\u009a\u0000\t\u0002\u000033jj\u0001\u0000de\u0002\u000088>>\u0002\u0000"+ + "AADD\u0001\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000OOQU\u0002"+ + "\u0000\u0014\u0014\u0016\u0017\u02f9\u0000\u009c\u0001\u0000\u0000\u0000"+ + "\u0002\u009f\u0001\u0000\u0000\u0000\u0004\u00b0\u0001\u0000\u0000\u0000"+ + "\u0006\u00cd\u0001\u0000\u0000\u0000\b\u00cf\u0001\u0000\u0000\u0000\n"+ + "\u00d2\u0001\u0000\u0000\u0000\f\u00d4\u0001\u0000\u0000\u0000\u000e\u00d7"+ + "\u0001\u0000\u0000\u0000\u0010\u00e2\u0001\u0000\u0000\u0000\u0012\u00e6"+ + "\u0001\u0000\u0000\u0000\u0014\u00e9\u0001\u0000\u0000\u0000\u0016\u00ec"+ + "\u0001\u0000\u0000\u0000\u0018\u0103\u0001\u0000\u0000\u0000\u001a\u0105"+ + "\u0001\u0000\u0000\u0000\u001c\u0107\u0001\u0000\u0000\u0000\u001e\u0109"+ + "\u0001\u0000\u0000\u0000 \u010b\u0001\u0000\u0000\u0000\"\u0114\u0001"+ + "\u0000\u0000\u0000$\u0117\u0001\u0000\u0000\u0000&\u011f\u0001\u0000\u0000"+ + "\u0000(\u0127\u0001\u0000\u0000\u0000*\u012c\u0001\u0000\u0000\u0000,"+ + "\u0134\u0001\u0000\u0000\u0000.\u013c\u0001\u0000\u0000\u00000\u0144\u0001"+ + "\u0000\u0000\u00002\u014a\u0001\u0000\u0000\u00004\u014e\u0001\u0000\u0000"+ + "\u00006\u0152\u0001\u0000\u0000\u00008\u0158\u0001\u0000\u0000\u0000:"+ + "\u015a\u0001\u0000\u0000\u0000<\u015d\u0001\u0000\u0000\u0000>\u0166\u0001"+ + "\u0000\u0000\u0000@\u016e\u0001\u0000\u0000\u0000B\u0171\u0001\u0000\u0000"+ + "\u0000D\u0174\u0001\u0000\u0000\u0000F\u017d\u0001\u0000\u0000\u0000H"+ + "\u0181\u0001\u0000\u0000\u0000J\u0187\u0001\u0000\u0000\u0000L\u018b\u0001"+ + "\u0000\u0000\u0000N\u018e\u0001\u0000\u0000\u0000P\u0196\u0001\u0000\u0000"+ + "\u0000R\u019a\u0001\u0000\u0000\u0000T\u019d\u0001\u0000\u0000\u0000V"+ + "\u01a1\u0001\u0000\u0000\u0000X\u01a4\u0001\u0000\u0000\u0000Z\u01b8\u0001"+ + "\u0000\u0000\u0000\\\u01bc\u0001\u0000\u0000\u0000^\u01c1\u0001\u0000"+ + "\u0000\u0000`\u01c7\u0001\u0000\u0000\u0000b\u01d4\u0001\u0000\u0000\u0000"+ + "d\u01d7\u0001\u0000\u0000\u0000f\u01db\u0001\u0000\u0000\u0000h\u01df"+ + "\u0001\u0000\u0000\u0000j\u01e3\u0001\u0000\u0000\u0000l\u01f1\u0001\u0000"+ + "\u0000\u0000n\u01f3\u0001\u0000\u0000\u0000p\u01f5\u0001\u0000\u0000\u0000"+ + "r\u0219\u0001\u0000\u0000\u0000t\u0234\u0001\u0000\u0000\u0000v\u0236"+ + "\u0001\u0000\u0000\u0000x\u0243\u0001\u0000\u0000\u0000z\u0249\u0001\u0000"+ + "\u0000\u0000|\u025e\u0001\u0000\u0000\u0000~\u0268\u0001\u0000\u0000\u0000"+ + "\u0080\u027b\u0001\u0000\u0000\u0000\u0082\u027d\u0001\u0000\u0000\u0000"+ + "\u0084\u0288\u0001\u0000\u0000\u0000\u0086\u02b6\u0001\u0000\u0000\u0000"+ + "\u0088\u02b8\u0001\u0000\u0000\u0000\u008a\u02bc\u0001\u0000\u0000\u0000"+ + "\u008c\u02bf\u0001\u0000\u0000\u0000\u008e\u02c4\u0001\u0000\u0000\u0000"+ + "\u0090\u02c8\u0001\u0000\u0000\u0000\u0092\u02ca\u0001\u0000\u0000\u0000"+ + "\u0094\u02cc\u0001\u0000\u0000\u0000\u0096\u02d1\u0001\u0000\u0000\u0000"+ + "\u0098\u02d3\u0001\u0000\u0000\u0000\u009a\u02dc\u0001\u0000\u0000\u0000"+ + "\u009c\u009d\u0003\u0002\u0001\u0000\u009d\u009e\u0005\u0000\u0000\u0001"+ + "\u009e\u0001\u0001\u0000\u0000\u0000\u009f\u00a0\u0006\u0001\uffff\uffff"+ + "\u0000\u00a0\u00a1\u0003\u0004\u0002\u0000\u00a1\u00a7\u0001\u0000\u0000"+ + "\u0000\u00a2\u00a3\n\u0001\u0000\u0000\u00a3\u00a4\u00052\u0000\u0000"+ + "\u00a4\u00a6\u0003\u0006\u0003\u0000\u00a5\u00a2\u0001\u0000\u0000\u0000"+ + "\u00a6\u00a9\u0001\u0000\u0000\u0000\u00a7\u00a5\u0001\u0000\u0000\u0000"+ + "\u00a7\u00a8\u0001\u0000\u0000\u0000\u00a8\u0003\u0001\u0000\u0000\u0000"+ + "\u00a9\u00a7\u0001\u0000\u0000\u0000\u00aa\u00b1\u0003R)\u0000\u00ab\u00b1"+ + "\u0003\u0012\t\u0000\u00ac\u00b1\u0003\f\u0006\u0000\u00ad\u00b1\u0003"+ + "V+\u0000\u00ae\u00af\u0004\u0002\u0001\u0000\u00af\u00b1\u0003\u0014\n"+ + "\u0000\u00b0\u00aa\u0001\u0000\u0000\u0000\u00b0\u00ab\u0001\u0000\u0000"+ + "\u0000\u00b0\u00ac\u0001\u0000\u0000\u0000\u00b0\u00ad\u0001\u0000\u0000"+ + "\u0000\u00b0\u00ae\u0001\u0000\u0000\u0000\u00b1\u0005\u0001\u0000\u0000"+ + "\u0000\u00b2\u00ce\u0003\"\u0011\u0000\u00b3\u00ce\u0003\b\u0004\u0000"+ + "\u00b4\u00ce\u0003@ \u0000\u00b5\u00ce\u0003:\u001d\u0000\u00b6\u00ce"+ + "\u0003$\u0012\u0000\u00b7\u00ce\u0003<\u001e\u0000\u00b8\u00ce\u0003B"+ + "!\u0000\u00b9\u00ce\u0003D\"\u0000\u00ba\u00ce\u0003H$\u0000\u00bb\u00ce"+ + "\u0003J%\u0000\u00bc\u00ce\u0003X,\u0000\u00bd\u00ce\u0003L&\u0000\u00be"+ + "\u00ce\u0003\u0094J\u0000\u00bf\u00c0\u0004\u0003\u0002\u0000\u00c0\u00ce"+ + "\u0003^/\u0000\u00c1\u00c2\u0004\u0003\u0003\u0000\u00c2\u00ce\u0003\\"+ + ".\u0000\u00c3\u00c4\u0004\u0003\u0004\u0000\u00c4\u00ce\u0003`0\u0000"+ + "\u00c5\u00c6\u0004\u0003\u0005\u0000\u00c6\u00ce\u0003b1\u0000\u00c7\u00c8"+ + "\u0004\u0003\u0006\u0000\u00c8\u00ce\u0003d2\u0000\u00c9\u00ca\u0004\u0003"+ + "\u0007\u0000\u00ca\u00ce\u0003p8\u0000\u00cb\u00cc\u0004\u0003\b\u0000"+ + "\u00cc\u00ce\u0003n7\u0000\u00cd\u00b2\u0001\u0000\u0000\u0000\u00cd\u00b3"+ + "\u0001\u0000\u0000\u0000\u00cd\u00b4\u0001\u0000\u0000\u0000\u00cd\u00b5"+ + "\u0001\u0000\u0000\u0000\u00cd\u00b6\u0001\u0000\u0000\u0000\u00cd\u00b7"+ + "\u0001\u0000\u0000\u0000\u00cd\u00b8\u0001\u0000\u0000\u0000\u00cd\u00b9"+ + "\u0001\u0000\u0000\u0000\u00cd\u00ba\u0001\u0000\u0000\u0000\u00cd\u00bb"+ + "\u0001\u0000\u0000\u0000\u00cd\u00bc\u0001\u0000\u0000\u0000\u00cd\u00bd"+ + "\u0001\u0000\u0000\u0000\u00cd\u00be\u0001\u0000\u0000\u0000\u00cd\u00bf"+ + "\u0001\u0000\u0000\u0000\u00cd\u00c1\u0001\u0000\u0000\u0000\u00cd\u00c3"+ + "\u0001\u0000\u0000\u0000\u00cd\u00c5\u0001\u0000\u0000\u0000\u00cd\u00c7"+ + "\u0001\u0000\u0000\u0000\u00cd\u00c9\u0001\u0000\u0000\u0000\u00cd\u00cb"+ + "\u0001\u0000\u0000\u0000\u00ce\u0007\u0001\u0000\u0000\u0000\u00cf\u00d0"+ + "\u0005\u000e\u0000\u0000\u00d0\u00d1\u0003r9\u0000\u00d1\t\u0001\u0000"+ + "\u0000\u0000\u00d2\u00d3\u00030\u0018\u0000\u00d3\u000b\u0001\u0000\u0000"+ + "\u0000\u00d4\u00d5\u0005\u000b\u0000\u0000\u00d5\u00d6\u0003\u000e\u0007"+ + "\u0000\u00d6\r\u0001\u0000\u0000\u0000\u00d7\u00dc\u0003\u0010\b\u0000"+ + "\u00d8\u00d9\u0005=\u0000\u0000\u00d9\u00db\u0003\u0010\b\u0000\u00da"+ + "\u00d8\u0001\u0000\u0000\u0000\u00db\u00de\u0001\u0000\u0000\u0000\u00dc"+ + "\u00da\u0001\u0000\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000\u00dd"+ + "\u000f\u0001\u0000\u0000\u0000\u00de\u00dc\u0001\u0000\u0000\u0000\u00df"+ + "\u00e0\u0003*\u0015\u0000\u00e0\u00e1\u00059\u0000\u0000\u00e1\u00e3\u0001"+ + "\u0000\u0000\u0000\u00e2\u00df\u0001\u0000\u0000\u0000\u00e2\u00e3\u0001"+ + "\u0000\u0000\u0000\u00e3\u00e4\u0001\u0000\u0000\u0000\u00e4\u00e5\u0003"+ + "r9\u0000\u00e5\u0011\u0001\u0000\u0000\u0000\u00e6\u00e7\u0005\u0011\u0000"+ + "\u0000\u00e7\u00e8\u0003\u0016\u000b\u0000\u00e8\u0013\u0001\u0000\u0000"+ + "\u0000\u00e9\u00ea\u0005\u0012\u0000\u0000\u00ea\u00eb\u0003\u0016\u000b"+ + "\u0000\u00eb\u0015\u0001\u0000\u0000\u0000\u00ec\u00f1\u0003\u0018\f\u0000"+ + "\u00ed\u00ee\u0005=\u0000\u0000\u00ee\u00f0\u0003\u0018\f\u0000\u00ef"+ + "\u00ed\u0001\u0000\u0000\u0000\u00f0\u00f3\u0001\u0000\u0000\u0000\u00f1"+ + "\u00ef\u0001\u0000\u0000\u0000\u00f1\u00f2\u0001\u0000\u0000\u0000\u00f2"+ + "\u00f5\u0001\u0000\u0000\u0000\u00f3\u00f1\u0001\u0000\u0000\u0000\u00f4"+ + "\u00f6\u0003 \u0010\u0000\u00f5\u00f4\u0001\u0000\u0000\u0000\u00f5\u00f6"+ + "\u0001\u0000\u0000\u0000\u00f6\u0017\u0001\u0000\u0000\u0000\u00f7\u00f8"+ + "\u0003\u001a\r\u0000\u00f8\u00f9\u0005<\u0000\u0000\u00f9\u00fb\u0001"+ + "\u0000\u0000\u0000\u00fa\u00f7\u0001\u0000\u0000\u0000\u00fa\u00fb\u0001"+ + "\u0000\u0000\u0000\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc\u0104\u0003"+ + "\u001e\u000f\u0000\u00fd\u00fe\u0004\f\t\u0000\u00fe\u0101\u0003\u001e"+ + "\u000f\u0000\u00ff\u0100\u0005;\u0000\u0000\u0100\u0102\u0003\u001c\u000e"+ + "\u0000\u0101\u00ff\u0001\u0000\u0000\u0000\u0101\u0102\u0001\u0000\u0000"+ + "\u0000\u0102\u0104\u0001\u0000\u0000\u0000\u0103\u00fa\u0001\u0000\u0000"+ + "\u0000\u0103\u00fd\u0001\u0000\u0000\u0000\u0104\u0019\u0001\u0000\u0000"+ + "\u0000\u0105\u0106\u0007\u0000\u0000\u0000\u0106\u001b\u0001\u0000\u0000"+ + "\u0000\u0107\u0108\u0007\u0000\u0000\u0000\u0108\u001d\u0001\u0000\u0000"+ + "\u0000\u0109\u010a\u0007\u0000\u0000\u0000\u010a\u001f\u0001\u0000\u0000"+ + "\u0000\u010b\u010c\u0005i\u0000\u0000\u010c\u0111\u0005j\u0000\u0000\u010d"+ + "\u010e\u0005=\u0000\u0000\u010e\u0110\u0005j\u0000\u0000\u010f\u010d\u0001"+ + "\u0000\u0000\u0000\u0110\u0113\u0001\u0000\u0000\u0000\u0111\u010f\u0001"+ + "\u0000\u0000\u0000\u0111\u0112\u0001\u0000\u0000\u0000\u0112!\u0001\u0000"+ + "\u0000\u0000\u0113\u0111\u0001\u0000\u0000\u0000\u0114\u0115\u0005\b\u0000"+ + "\u0000\u0115\u0116\u0003\u000e\u0007\u0000\u0116#\u0001\u0000\u0000\u0000"+ + "\u0117\u0119\u0005\r\u0000\u0000\u0118\u011a\u0003&\u0013\u0000\u0119"+ + "\u0118\u0001\u0000\u0000\u0000\u0119\u011a\u0001\u0000\u0000\u0000\u011a"+ + "\u011d\u0001\u0000\u0000\u0000\u011b\u011c\u0005:\u0000\u0000\u011c\u011e"+ + "\u0003\u000e\u0007\u0000\u011d\u011b\u0001\u0000\u0000\u0000\u011d\u011e"+ + "\u0001\u0000\u0000\u0000\u011e%\u0001\u0000\u0000\u0000\u011f\u0124\u0003"+ + "(\u0014\u0000\u0120\u0121\u0005=\u0000\u0000\u0121\u0123\u0003(\u0014"+ + "\u0000\u0122\u0120\u0001\u0000\u0000\u0000\u0123\u0126\u0001\u0000\u0000"+ + "\u0000\u0124\u0122\u0001\u0000\u0000\u0000\u0124\u0125\u0001\u0000\u0000"+ + "\u0000\u0125\'\u0001\u0000\u0000\u0000\u0126\u0124\u0001\u0000\u0000\u0000"+ + "\u0127\u012a\u0003\u0010\b\u0000\u0128\u0129\u0005\u000e\u0000\u0000\u0129"+ + "\u012b\u0003r9\u0000\u012a\u0128\u0001\u0000\u0000\u0000\u012a\u012b\u0001"+ + "\u0000\u0000\u0000\u012b)\u0001\u0000\u0000\u0000\u012c\u0131\u00038\u001c"+ + "\u0000\u012d\u012e\u0005?\u0000\u0000\u012e\u0130\u00038\u001c\u0000\u012f"+ + "\u012d\u0001\u0000\u0000\u0000\u0130\u0133\u0001\u0000\u0000\u0000\u0131"+ + "\u012f\u0001\u0000\u0000\u0000\u0131\u0132\u0001\u0000\u0000\u0000\u0132"+ + "+\u0001\u0000\u0000\u0000\u0133\u0131\u0001\u0000\u0000\u0000\u0134\u0139"+ + "\u00032\u0019\u0000\u0135\u0136\u0005?\u0000\u0000\u0136\u0138\u00032"+ + "\u0019\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0138\u013b\u0001\u0000"+ + "\u0000\u0000\u0139\u0137\u0001\u0000\u0000\u0000\u0139\u013a\u0001\u0000"+ + "\u0000\u0000\u013a-\u0001\u0000\u0000\u0000\u013b\u0139\u0001\u0000\u0000"+ + "\u0000\u013c\u0141\u0003,\u0016\u0000\u013d\u013e\u0005=\u0000\u0000\u013e"+ + "\u0140\u0003,\u0016\u0000\u013f\u013d\u0001\u0000\u0000\u0000\u0140\u0143"+ + "\u0001\u0000\u0000\u0000\u0141\u013f\u0001\u0000\u0000\u0000\u0141\u0142"+ + "\u0001\u0000\u0000\u0000\u0142/\u0001\u0000\u0000\u0000\u0143\u0141\u0001"+ + "\u0000\u0000\u0000\u0144\u0145\u0007\u0001\u0000\u0000\u01451\u0001\u0000"+ + "\u0000\u0000\u0146\u014b\u0005\u007f\u0000\u0000\u0147\u014b\u00034\u001a"+ + "\u0000\u0148\u0149\u0004\u0019\n\u0000\u0149\u014b\u00036\u001b\u0000"+ + "\u014a\u0146\u0001\u0000\u0000\u0000\u014a\u0147\u0001\u0000\u0000\u0000"+ + "\u014a\u0148\u0001\u0000\u0000\u0000\u014b3\u0001\u0000\u0000\u0000\u014c"+ + "\u014f\u0005K\u0000\u0000\u014d\u014f\u0005^\u0000\u0000\u014e\u014c\u0001"+ + "\u0000\u0000\u0000\u014e\u014d\u0001\u0000\u0000\u0000\u014f5\u0001\u0000"+ + "\u0000\u0000\u0150\u0153\u0005]\u0000\u0000\u0151\u0153\u0005_\u0000\u0000"+ + "\u0152\u0150\u0001\u0000\u0000\u0000\u0152\u0151\u0001\u0000\u0000\u0000"+ + "\u01537\u0001\u0000\u0000\u0000\u0154\u0159\u00030\u0018\u0000\u0155\u0159"+ + "\u00034\u001a\u0000\u0156\u0157\u0004\u001c\u000b\u0000\u0157\u0159\u0003"+ + "6\u001b\u0000\u0158\u0154\u0001\u0000\u0000\u0000\u0158\u0155\u0001\u0000"+ + "\u0000\u0000\u0158\u0156\u0001\u0000\u0000\u0000\u01599\u0001\u0000\u0000"+ + "\u0000\u015a\u015b\u0005\n\u0000\u0000\u015b\u015c\u00054\u0000\u0000"+ + "\u015c;\u0001\u0000\u0000\u0000\u015d\u015e\u0005\f\u0000\u0000\u015e"+ + "\u0163\u0003>\u001f\u0000\u015f\u0160\u0005=\u0000\u0000\u0160\u0162\u0003"+ + ">\u001f\u0000\u0161\u015f\u0001\u0000\u0000\u0000\u0162\u0165\u0001\u0000"+ + "\u0000\u0000\u0163\u0161\u0001\u0000\u0000\u0000\u0163\u0164\u0001\u0000"+ + "\u0000\u0000\u0164=\u0001\u0000\u0000\u0000\u0165\u0163\u0001\u0000\u0000"+ + "\u0000\u0166\u0168\u0003r9\u0000\u0167\u0169\u0007\u0002\u0000\u0000\u0168"+ + "\u0167\u0001\u0000\u0000\u0000\u0168\u0169\u0001\u0000\u0000\u0000\u0169"+ + "\u016c\u0001\u0000\u0000\u0000\u016a\u016b\u0005H\u0000\u0000\u016b\u016d"+ + "\u0007\u0003\u0000\u0000\u016c\u016a\u0001\u0000\u0000\u0000\u016c\u016d"+ + "\u0001\u0000\u0000\u0000\u016d?\u0001\u0000\u0000\u0000\u016e\u016f\u0005"+ + "\u001b\u0000\u0000\u016f\u0170\u0003.\u0017\u0000\u0170A\u0001\u0000\u0000"+ + "\u0000\u0171\u0172\u0005\u001a\u0000\u0000\u0172\u0173\u0003.\u0017\u0000"+ + "\u0173C\u0001\u0000\u0000\u0000\u0174\u0175\u0005\u001e\u0000\u0000\u0175"+ + "\u017a\u0003F#\u0000\u0176\u0177\u0005=\u0000\u0000\u0177\u0179\u0003"+ + "F#\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0179\u017c\u0001\u0000\u0000"+ + "\u0000\u017a\u0178\u0001\u0000\u0000\u0000\u017a\u017b\u0001\u0000\u0000"+ + "\u0000\u017bE\u0001\u0000\u0000\u0000\u017c\u017a\u0001\u0000\u0000\u0000"+ + "\u017d\u017e\u0003,\u0016\u0000\u017e\u017f\u00057\u0000\u0000\u017f\u0180"+ + "\u0003,\u0016\u0000\u0180G\u0001\u0000\u0000\u0000\u0181\u0182\u0005\u0007"+ + "\u0000\u0000\u0182\u0183\u0003|>\u0000\u0183\u0185\u0003\u0090H\u0000"+ + "\u0184\u0186\u0003N\'\u0000\u0185\u0184\u0001\u0000\u0000\u0000\u0185"+ + "\u0186\u0001\u0000\u0000\u0000\u0186I\u0001\u0000\u0000\u0000\u0187\u0188"+ + "\u0005\t\u0000\u0000\u0188\u0189\u0003|>\u0000\u0189\u018a\u0003\u0090"+ + "H\u0000\u018aK\u0001\u0000\u0000\u0000\u018b\u018c\u0005\u0019\u0000\u0000"+ + "\u018c\u018d\u0003*\u0015\u0000\u018dM\u0001\u0000\u0000\u0000\u018e\u0193"+ + "\u0003P(\u0000\u018f\u0190\u0005=\u0000\u0000\u0190\u0192\u0003P(\u0000"+ + "\u0191\u018f\u0001\u0000\u0000\u0000\u0192\u0195\u0001\u0000\u0000\u0000"+ + "\u0193\u0191\u0001\u0000\u0000\u0000\u0193\u0194\u0001\u0000\u0000\u0000"+ + "\u0194O\u0001\u0000\u0000\u0000\u0195\u0193\u0001\u0000\u0000\u0000\u0196"+ + "\u0197\u00030\u0018\u0000\u0197\u0198\u00059\u0000\u0000\u0198\u0199\u0003"+ + "\u0086C\u0000\u0199Q\u0001\u0000\u0000\u0000\u019a\u019b\u0005\u0006\u0000"+ + "\u0000\u019b\u019c\u0003T*\u0000\u019cS\u0001\u0000\u0000\u0000\u019d"+ + "\u019e\u0005`\u0000\u0000\u019e\u019f\u0003\u0002\u0001\u0000\u019f\u01a0"+ + "\u0005a\u0000\u0000\u01a0U\u0001\u0000\u0000\u0000\u01a1\u01a2\u0005\u001f"+ + "\u0000\u0000\u01a2\u01a3\u0005\u0086\u0000\u0000\u01a3W\u0001\u0000\u0000"+ + "\u0000\u01a4\u01a5\u0005\u0005\u0000\u0000\u01a5\u01a8\u0005$\u0000\u0000"+ + "\u01a6\u01a7\u0005I\u0000\u0000\u01a7\u01a9\u0003,\u0016\u0000\u01a8\u01a6"+ + "\u0001\u0000\u0000\u0000\u01a8\u01a9\u0001\u0000\u0000\u0000\u01a9\u01b3"+ + "\u0001\u0000\u0000\u0000\u01aa\u01ab\u0005N\u0000\u0000\u01ab\u01b0\u0003"+ + "Z-\u0000\u01ac\u01ad\u0005=\u0000\u0000\u01ad\u01af\u0003Z-\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"+ + "\u01b4\u0001\u0000\u0000\u0000\u01b2\u01b0\u0001\u0000\u0000\u0000\u01b3"+ + "\u01aa\u0001\u0000\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4"+ + "Y\u0001\u0000\u0000\u0000\u01b5\u01b6\u0003,\u0016\u0000\u01b6\u01b7\u0005"+ + "9\u0000\u0000\u01b7\u01b9\u0001\u0000\u0000\u0000\u01b8\u01b5\u0001\u0000"+ + "\u0000\u0000\u01b8\u01b9\u0001\u0000\u0000\u0000\u01b9\u01ba\u0001\u0000"+ + "\u0000\u0000\u01ba\u01bb\u0003,\u0016\u0000\u01bb[\u0001\u0000\u0000\u0000"+ + "\u01bc\u01bd\u0005\u0018\u0000\u0000\u01bd\u01be\u0003\u0018\f\u0000\u01be"+ + "\u01bf\u0005I\u0000\u0000\u01bf\u01c0\u0003.\u0017\u0000\u01c0]\u0001"+ + "\u0000\u0000\u0000\u01c1\u01c2\u0005\u000f\u0000\u0000\u01c2\u01c5\u0003"+ + "&\u0013\u0000\u01c3\u01c4\u0005:\u0000\u0000\u01c4\u01c6\u0003\u000e\u0007"+ + "\u0000\u01c5\u01c3\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000"+ + "\u0000\u01c6_\u0001\u0000\u0000\u0000\u01c7\u01c8\u0005\u0004\u0000\u0000"+ + "\u01c8\u01cb\u0003*\u0015\u0000\u01c9\u01ca\u0005I\u0000\u0000\u01ca\u01cc"+ + "\u0003*\u0015\u0000\u01cb\u01c9\u0001\u0000\u0000\u0000\u01cb\u01cc\u0001"+ + "\u0000\u0000\u0000\u01cc\u01d2\u0001\u0000\u0000\u0000\u01cd\u01ce\u0005"+ + "7\u0000\u0000\u01ce\u01cf\u0003*\u0015\u0000\u01cf\u01d0\u0005=\u0000"+ + "\u0000\u01d0\u01d1\u0003*\u0015\u0000\u01d1\u01d3\u0001\u0000\u0000\u0000"+ + "\u01d2\u01cd\u0001\u0000\u0000\u0000\u01d2\u01d3\u0001\u0000\u0000\u0000"+ + "\u01d3a\u0001\u0000\u0000\u0000\u01d4\u01d5\u0005\u001c\u0000\u0000\u01d5"+ + "\u01d6\u0003.\u0017\u0000\u01d6c\u0001\u0000\u0000\u0000\u01d7\u01d8\u0005"+ + "\u0013\u0000\u0000\u01d8\u01d9\u0003f3\u0000\u01d9e\u0001\u0000\u0000"+ + "\u0000\u01da\u01dc\u0003h4\u0000\u01db\u01da\u0001\u0000\u0000\u0000\u01dc"+ + "\u01dd\u0001\u0000\u0000\u0000\u01dd\u01db\u0001\u0000\u0000\u0000\u01dd"+ + "\u01de\u0001\u0000\u0000\u0000\u01deg\u0001\u0000\u0000\u0000\u01df\u01e0"+ + "\u0005b\u0000\u0000\u01e0\u01e1\u0003j5\u0000\u01e1\u01e2\u0005c\u0000"+ + "\u0000\u01e2i\u0001\u0000\u0000\u0000\u01e3\u01e4\u00065\uffff\uffff\u0000"+ + "\u01e4\u01e5\u0003l6\u0000\u01e5\u01eb\u0001\u0000\u0000\u0000\u01e6\u01e7"+ + "\n\u0001\u0000\u0000\u01e7\u01e8\u00052\u0000\u0000\u01e8\u01ea\u0003"+ + "l6\u0000\u01e9\u01e6\u0001\u0000\u0000\u0000\u01ea\u01ed\u0001\u0000\u0000"+ + "\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01eb\u01ec\u0001\u0000\u0000"+ + "\u0000\u01eck\u0001\u0000\u0000\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000"+ + "\u01ee\u01f2\u0003\b\u0004\u0000\u01ef\u01f2\u0003<\u001e\u0000\u01f0"+ + "\u01f2\u0003:\u001d\u0000\u01f1\u01ee\u0001\u0000\u0000\u0000\u01f1\u01ef"+ + "\u0001\u0000\u0000\u0000\u01f1\u01f0\u0001\u0000\u0000\u0000\u01f2m\u0001"+ + "\u0000\u0000\u0000\u01f3\u01f4\u0005\u001d\u0000\u0000\u01f4o\u0001\u0000"+ + "\u0000\u0000\u01f5\u01f6\u0005\u0010\u0000\u0000\u01f6\u01f7\u0003\u0086"+ + "C\u0000\u01f7\u01f8\u0005I\u0000\u0000\u01f8\u01f9\u0003\u000e\u0007\u0000"+ + "\u01f9\u01fa\u0005N\u0000\u0000\u01fa\u01fb\u00038\u001c\u0000\u01fbq"+ + "\u0001\u0000\u0000\u0000\u01fc\u01fd\u00069\uffff\uffff\u0000\u01fd\u01fe"+ + "\u0005F\u0000\u0000\u01fe\u021a\u0003r9\b\u01ff\u021a\u0003x<\u0000\u0200"+ + "\u021a\u0003t:\u0000\u0201\u0203\u0003x<\u0000\u0202\u0204\u0005F\u0000"+ + "\u0000\u0203\u0202\u0001\u0000\u0000\u0000\u0203\u0204\u0001\u0000\u0000"+ + "\u0000\u0204\u0205\u0001\u0000\u0000\u0000\u0205\u0206\u0005B\u0000\u0000"+ + "\u0206\u0207\u0005b\u0000\u0000\u0207\u020c\u0003x<\u0000\u0208\u0209"+ + "\u0005=\u0000\u0000\u0209\u020b\u0003x<\u0000\u020a\u0208\u0001\u0000"+ + "\u0000\u0000\u020b\u020e\u0001\u0000\u0000\u0000\u020c\u020a\u0001\u0000"+ + "\u0000\u0000\u020c\u020d\u0001\u0000\u0000\u0000\u020d\u020f\u0001\u0000"+ + "\u0000\u0000\u020e\u020c\u0001\u0000\u0000\u0000\u020f\u0210\u0005c\u0000"+ + "\u0000\u0210\u021a\u0001\u0000\u0000\u0000\u0211\u0212\u0003x<\u0000\u0212"+ + "\u0214\u0005C\u0000\u0000\u0213\u0215\u0005F\u0000\u0000\u0214\u0213\u0001"+ + "\u0000\u0000\u0000\u0214\u0215\u0001\u0000\u0000\u0000\u0215\u0216\u0001"+ + "\u0000\u0000\u0000\u0216\u0217\u0005G\u0000\u0000\u0217\u021a\u0001\u0000"+ + "\u0000\u0000\u0218\u021a\u0003v;\u0000\u0219\u01fc\u0001\u0000\u0000\u0000"+ + "\u0219\u01ff\u0001\u0000\u0000\u0000\u0219\u0200\u0001\u0000\u0000\u0000"+ + "\u0219\u0201\u0001\u0000\u0000\u0000\u0219\u0211\u0001\u0000\u0000\u0000"+ + "\u0219\u0218\u0001\u0000\u0000\u0000\u021a\u0223\u0001\u0000\u0000\u0000"+ + "\u021b\u021c\n\u0005\u0000\u0000\u021c\u021d\u00056\u0000\u0000\u021d"+ + "\u0222\u0003r9\u0006\u021e\u021f\n\u0004\u0000\u0000\u021f\u0220\u0005"+ + "J\u0000\u0000\u0220\u0222\u0003r9\u0005\u0221\u021b\u0001\u0000\u0000"+ + "\u0000\u0221\u021e\u0001\u0000\u0000\u0000\u0222\u0225\u0001\u0000\u0000"+ + "\u0000\u0223\u0221\u0001\u0000\u0000\u0000\u0223\u0224\u0001\u0000\u0000"+ + "\u0000\u0224s\u0001\u0000\u0000\u0000\u0225\u0223\u0001\u0000\u0000\u0000"+ + "\u0226\u0228\u0003x<\u0000\u0227\u0229\u0005F\u0000\u0000\u0228\u0227"+ + "\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000\u0000\u0000\u0229\u022a"+ + "\u0001\u0000\u0000\u0000\u022a\u022b\u0005E\u0000\u0000\u022b\u022c\u0003"+ + "\u0090H\u0000\u022c\u0235\u0001\u0000\u0000\u0000\u022d\u022f\u0003x<"+ + "\u0000\u022e\u0230\u0005F\u0000\u0000\u022f\u022e\u0001\u0000\u0000\u0000"+ + "\u022f\u0230\u0001\u0000\u0000\u0000\u0230\u0231\u0001\u0000\u0000\u0000"+ + "\u0231\u0232\u0005L\u0000\u0000\u0232\u0233\u0003\u0090H\u0000\u0233\u0235"+ + "\u0001\u0000\u0000\u0000\u0234\u0226\u0001\u0000\u0000\u0000\u0234\u022d"+ + "\u0001\u0000\u0000\u0000\u0235u\u0001\u0000\u0000\u0000\u0236\u0239\u0003"+ + "*\u0015\u0000\u0237\u0238\u0005;\u0000\u0000\u0238\u023a\u0003\n\u0005"+ + "\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u0239\u023a\u0001\u0000\u0000"+ + "\u0000\u023a\u023b\u0001\u0000\u0000\u0000\u023b\u023c\u0005<\u0000\u0000"+ + "\u023c\u023d\u0003\u0086C\u0000\u023dw\u0001\u0000\u0000\u0000\u023e\u0244"+ + "\u0003z=\u0000\u023f\u0240\u0003z=\u0000\u0240\u0241\u0003\u0092I\u0000"+ + "\u0241\u0242\u0003z=\u0000\u0242\u0244\u0001\u0000\u0000\u0000\u0243\u023e"+ + "\u0001\u0000\u0000\u0000\u0243\u023f\u0001\u0000\u0000\u0000\u0244y\u0001"+ + "\u0000\u0000\u0000\u0245\u0246\u0006=\uffff\uffff\u0000\u0246\u024a\u0003"+ + "|>\u0000\u0247\u0248\u0007\u0004\u0000\u0000\u0248\u024a\u0003z=\u0003"+ + "\u0249\u0245\u0001\u0000\u0000\u0000\u0249\u0247\u0001\u0000\u0000\u0000"+ + "\u024a\u0253\u0001\u0000\u0000\u0000\u024b\u024c\n\u0002\u0000\u0000\u024c"+ + "\u024d\u0007\u0005\u0000\u0000\u024d\u0252\u0003z=\u0003\u024e\u024f\n"+ + "\u0001\u0000\u0000\u024f\u0250\u0007\u0004\u0000\u0000\u0250\u0252\u0003"+ + "z=\u0002\u0251\u024b\u0001\u0000\u0000\u0000\u0251\u024e\u0001\u0000\u0000"+ + "\u0000\u0252\u0255\u0001\u0000\u0000\u0000\u0253\u0251\u0001\u0000\u0000"+ + "\u0000\u0253\u0254\u0001\u0000\u0000\u0000\u0254{\u0001\u0000\u0000\u0000"+ + "\u0255\u0253\u0001\u0000\u0000\u0000\u0256\u0257\u0006>\uffff\uffff\u0000"+ + "\u0257\u025f\u0003\u0086C\u0000\u0258\u025f\u0003*\u0015\u0000\u0259\u025f"+ + "\u0003~?\u0000\u025a\u025b\u0005b\u0000\u0000\u025b\u025c\u0003r9\u0000"+ + "\u025c\u025d\u0005c\u0000\u0000\u025d\u025f\u0001\u0000\u0000\u0000\u025e"+ + "\u0256\u0001\u0000\u0000\u0000\u025e\u0258\u0001\u0000\u0000\u0000\u025e"+ + "\u0259\u0001\u0000\u0000\u0000\u025e\u025a\u0001\u0000\u0000\u0000\u025f"+ + "\u0265\u0001\u0000\u0000\u0000\u0260\u0261\n\u0001\u0000\u0000\u0261\u0262"+ + "\u0005;\u0000\u0000\u0262\u0264\u0003\n\u0005\u0000\u0263\u0260\u0001"+ + "\u0000\u0000\u0000\u0264\u0267\u0001\u0000\u0000\u0000\u0265\u0263\u0001"+ + "\u0000\u0000\u0000\u0265\u0266\u0001\u0000\u0000\u0000\u0266}\u0001\u0000"+ + "\u0000\u0000\u0267\u0265\u0001\u0000\u0000\u0000\u0268\u0269\u0003\u0080"+ + "@\u0000\u0269\u0277\u0005b\u0000\u0000\u026a\u0278\u0005X\u0000\u0000"+ + "\u026b\u0270\u0003r9\u0000\u026c\u026d\u0005=\u0000\u0000\u026d\u026f"+ + "\u0003r9\u0000\u026e\u026c\u0001\u0000\u0000\u0000\u026f\u0272\u0001\u0000"+ + "\u0000\u0000\u0270\u026e\u0001\u0000\u0000\u0000\u0270\u0271\u0001\u0000"+ + "\u0000\u0000\u0271\u0275\u0001\u0000\u0000\u0000\u0272\u0270\u0001\u0000"+ + "\u0000\u0000\u0273\u0274\u0005=\u0000\u0000\u0274\u0276\u0003\u0082A\u0000"+ + "\u0275\u0273\u0001\u0000\u0000\u0000\u0275\u0276\u0001\u0000\u0000\u0000"+ + "\u0276\u0278\u0001\u0000\u0000\u0000\u0277\u026a\u0001\u0000\u0000\u0000"+ + "\u0277\u026b\u0001\u0000\u0000\u0000\u0277\u0278\u0001\u0000\u0000\u0000"+ + "\u0278\u0279\u0001\u0000\u0000\u0000\u0279\u027a\u0005c\u0000\u0000\u027a"+ + "\u007f\u0001\u0000\u0000\u0000\u027b\u027c\u00038\u001c\u0000\u027c\u0081"+ + "\u0001\u0000\u0000\u0000\u027d\u027e\u0005[\u0000\u0000\u027e\u0283\u0003"+ + "\u0084B\u0000\u027f\u0280\u0005=\u0000\u0000\u0280\u0282\u0003\u0084B"+ + "\u0000\u0281\u027f\u0001\u0000\u0000\u0000\u0282\u0285\u0001\u0000\u0000"+ + "\u0000\u0283\u0281\u0001\u0000\u0000\u0000\u0283\u0284\u0001\u0000\u0000"+ + "\u0000\u0284\u0286\u0001\u0000\u0000\u0000\u0285\u0283\u0001\u0000\u0000"+ + "\u0000\u0286\u0287\u0005\\\u0000\u0000\u0287\u0083\u0001\u0000\u0000\u0000"+ + "\u0288\u0289\u0003\u0090H\u0000\u0289\u028a\u0005<\u0000\u0000\u028a\u028b"+ + "\u0003\u0086C\u0000\u028b\u0085\u0001\u0000\u0000\u0000\u028c\u02b7\u0005"+ + "G\u0000\u0000\u028d\u028e\u0003\u008eG\u0000\u028e\u028f\u0005d\u0000"+ + "\u0000\u028f\u02b7\u0001\u0000\u0000\u0000\u0290\u02b7\u0003\u008cF\u0000"+ + "\u0291\u02b7\u0003\u008eG\u0000\u0292\u02b7\u0003\u0088D\u0000\u0293\u02b7"+ + "\u00034\u001a\u0000\u0294\u02b7\u0003\u0090H\u0000\u0295\u0296\u0005`"+ + "\u0000\u0000\u0296\u029b\u0003\u008aE\u0000\u0297\u0298\u0005=\u0000\u0000"+ + "\u0298\u029a\u0003\u008aE\u0000\u0299\u0297\u0001\u0000\u0000\u0000\u029a"+ + "\u029d\u0001\u0000\u0000\u0000\u029b\u0299\u0001\u0000\u0000\u0000\u029b"+ + "\u029c\u0001\u0000\u0000\u0000\u029c\u029e\u0001\u0000\u0000\u0000\u029d"+ + "\u029b\u0001\u0000\u0000\u0000\u029e\u029f\u0005a\u0000\u0000\u029f\u02b7"+ + "\u0001\u0000\u0000\u0000\u02a0\u02a1\u0005`\u0000\u0000\u02a1\u02a6\u0003"+ + "\u0088D\u0000\u02a2\u02a3\u0005=\u0000\u0000\u02a3\u02a5\u0003\u0088D"+ + "\u0000\u02a4\u02a2\u0001\u0000\u0000\u0000\u02a5\u02a8\u0001\u0000\u0000"+ + "\u0000\u02a6\u02a4\u0001\u0000\u0000\u0000\u02a6\u02a7\u0001\u0000\u0000"+ + "\u0000\u02a7\u02a9\u0001\u0000\u0000\u0000\u02a8\u02a6\u0001\u0000\u0000"+ + "\u0000\u02a9\u02aa\u0005a\u0000\u0000\u02aa\u02b7\u0001\u0000\u0000\u0000"+ + "\u02ab\u02ac\u0005`\u0000\u0000\u02ac\u02b1\u0003\u0090H\u0000\u02ad\u02ae"+ + "\u0005=\u0000\u0000\u02ae\u02b0\u0003\u0090H\u0000\u02af\u02ad\u0001\u0000"+ + "\u0000\u0000\u02b0\u02b3\u0001\u0000\u0000\u0000\u02b1\u02af\u0001\u0000"+ + "\u0000\u0000\u02b1\u02b2\u0001\u0000\u0000\u0000\u02b2\u02b4\u0001\u0000"+ + "\u0000\u0000\u02b3\u02b1\u0001\u0000\u0000\u0000\u02b4\u02b5\u0005a\u0000"+ + "\u0000\u02b5\u02b7\u0001\u0000\u0000\u0000\u02b6\u028c\u0001\u0000\u0000"+ + "\u0000\u02b6\u028d\u0001\u0000\u0000\u0000\u02b6\u0290\u0001\u0000\u0000"+ + "\u0000\u02b6\u0291\u0001\u0000\u0000\u0000\u02b6\u0292\u0001\u0000\u0000"+ + "\u0000\u02b6\u0293\u0001\u0000\u0000\u0000\u02b6\u0294\u0001\u0000\u0000"+ + "\u0000\u02b6\u0295\u0001\u0000\u0000\u0000\u02b6\u02a0\u0001\u0000\u0000"+ + "\u0000\u02b6\u02ab\u0001\u0000\u0000\u0000\u02b7\u0087\u0001\u0000\u0000"+ + "\u0000\u02b8\u02b9\u0007\u0006\u0000\u0000\u02b9\u0089\u0001\u0000\u0000"+ + "\u0000\u02ba\u02bd\u0003\u008cF\u0000\u02bb\u02bd\u0003\u008eG\u0000\u02bc"+ + "\u02ba\u0001\u0000\u0000\u0000\u02bc\u02bb\u0001\u0000\u0000\u0000\u02bd"+ + "\u008b\u0001\u0000\u0000\u0000\u02be\u02c0\u0007\u0004\u0000\u0000\u02bf"+ + "\u02be\u0001\u0000\u0000\u0000\u02bf\u02c0\u0001\u0000\u0000\u0000\u02c0"+ + "\u02c1\u0001\u0000\u0000\u0000\u02c1\u02c2\u00055\u0000\u0000\u02c2\u008d"+ + "\u0001\u0000\u0000\u0000\u02c3\u02c5\u0007\u0004\u0000\u0000\u02c4\u02c3"+ + "\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5\u02c6"+ + "\u0001\u0000\u0000\u0000\u02c6\u02c7\u00054\u0000\u0000\u02c7\u008f\u0001"+ + "\u0000\u0000\u0000\u02c8\u02c9\u00053\u0000\u0000\u02c9\u0091\u0001\u0000"+ + "\u0000\u0000\u02ca\u02cb\u0007\u0007\u0000\u0000\u02cb\u0093\u0001\u0000"+ + "\u0000\u0000\u02cc\u02cd\u0007\b\u0000\u0000\u02cd\u02ce\u0005q\u0000"+ + "\u0000\u02ce\u02cf\u0003\u0096K\u0000\u02cf\u02d0\u0003\u0098L\u0000\u02d0"+ + "\u0095\u0001\u0000\u0000\u0000\u02d1\u02d2\u0003\u0018\f\u0000\u02d2\u0097"+ + "\u0001\u0000\u0000\u0000\u02d3\u02d4\u0005I\u0000\u0000\u02d4\u02d9\u0003"+ + "\u009aM\u0000\u02d5\u02d6\u0005=\u0000\u0000\u02d6\u02d8\u0003\u009aM"+ + "\u0000\u02d7\u02d5\u0001\u0000\u0000\u0000\u02d8\u02db\u0001\u0000\u0000"+ + "\u0000\u02d9\u02d7\u0001\u0000\u0000\u0000\u02d9\u02da\u0001\u0000\u0000"+ + "\u0000\u02da\u0099\u0001\u0000\u0000\u0000\u02db\u02d9\u0001\u0000\u0000"+ + "\u0000\u02dc\u02dd\u0003x<\u0000\u02dd\u009b\u0001\u0000\u0000\u0000B"+ + "\u00a7\u00b0\u00cd\u00dc\u00e2\u00f1\u00f5\u00fa\u0101\u0103\u0111\u0119"+ + "\u011d\u0124\u012a\u0131\u0139\u0141\u014a\u014e\u0152\u0158\u0163\u0168"+ + "\u016c\u017a\u0185\u0193\u01a8\u01b0\u01b3\u01b8\u01c5\u01cb\u01d2\u01dd"+ + "\u01eb\u01f1\u0203\u020c\u0214\u0219\u0221\u0223\u0228\u022f\u0234\u0239"+ + "\u0243\u0249\u0251\u0253\u025e\u0265\u0270\u0275\u0277\u0283\u029b\u02a6"+ + "\u02b1\u02b6\u02bc\u02bf\u02c4\u02d9"; 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 708054acd40a7..7c551834aabda 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 @@ -404,18 +404,6 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener { *

The default implementation does nothing.

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

The default implementation does nothing.

- */ - @Override public void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext 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 0e1fd0141aba9..fc410ab03a32a 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 @@ -244,13 +244,6 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im * {@link #visitChildren} on {@code 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 visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * 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 c6d3020e7fc2e..d84995d8ba76e 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 @@ -349,16 +349,6 @@ public interface EsqlBaseParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); - /** - * Enter a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. - * @param ctx the parse tree - */ - void enterStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); - /** - * Exit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. - * @param ctx the parse tree - */ - void exitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); /** * Enter a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree 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 6169bd635134f..586ddf30f80ef 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 @@ -217,12 +217,6 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitIdentifierOrParameter(EsqlBaseParser.IdentifierOrParameterContext ctx); - /** - * Visit a parse tree produced by {@link EsqlBaseParser#stringOrParameter}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx); /** * Visit a parse tree produced by {@link EsqlBaseParser#limitCommand}. * @param ctx the parse tree diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java index 120acb5cc9743..84a500458c150 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/ExpressionBuilder.java @@ -195,30 +195,6 @@ public Literal visitIntegerValue(EsqlBaseParser.IntegerValueContext ctx) { return new Literal(source, val, type); } - @Override - public Literal visitStringOrParameter(EsqlBaseParser.StringOrParameterContext ctx) { - if (ctx.parameter() != null) { - if (expression(ctx.parameter()) instanceof Literal lit) { - if (lit.value() == null) { - throw new ParsingException( - source(ctx.parameter()), - "Query parameter [{}] is null or undefined and cannot be used as string", - ctx.parameter().getText() - ); - } - return lit; - } - - throw new ParsingException( - source(ctx.parameter()), - "Query parameter [{}], cannot be used as string", - ctx.parameter().getText() - ); - } - - return visitString(ctx.string()); - } - @Override public Object visitNumericArrayLiteral(EsqlBaseParser.NumericArrayLiteralContext ctx) { Source source = source(ctx); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index d01e5faadff32..f53b9d36b20c9 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java @@ -699,6 +699,7 @@ public PlanFactory visitRrfCommand(EsqlBaseParser.RrfCommandContext ctx) { }; } + @Override public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { var source = source(ctx); @@ -706,12 +707,47 @@ public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { throw new ParsingException(source, "RERANK is in preview and only available in SNAPSHOT build"); } - return p -> new Rerank( - source, - p, - visitStringOrParameter(ctx.inferenceId), - visitStringOrParameter(ctx.queryText), - visitFields(ctx.fields()) + Expression queryText = expression(ctx.queryText); + if (queryText instanceof Literal queryTextLiteral && DataType.isString(queryText.dataType())) { + if (queryTextLiteral.value() == null) { + throw new ParsingException( + source(ctx.queryText), + "Query text cannot be null or undefined in RERANK", + ctx.queryText.getText() + ); + } + } else { + throw new ParsingException( + source(ctx.queryText), + "RERANK only support string as query text but [{}] cannot be used as string", + ctx.queryText.getText() + ); + } + + return p -> new Rerank(source, p, inferenceId(ctx.inferenceId), queryText, visitFields(ctx.fields())); + } + + public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) { + if (ctx.identifier() != null) { + return new Literal(source(ctx), visitIdentifier(ctx.identifier()), KEYWORD); + } + + if (expression(ctx.parameter()) instanceof Literal literalParam) { + if (literalParam.value() != null) { + return literalParam; + } + + throw new ParsingException( + source(ctx.parameter()), + "Query parameter [{}] is null or undefined and cannot be used as inference id", + ctx.parameter().getText() + ); + } + + throw new ParsingException( + source(ctx.parameter()), + "Query parameter [{}] is not a string and cannot be used as inference id", + ctx.parameter().getText() ); } } diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java index 32ad53ab4df82..f4331ff1881e9 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/AnalyzerTests.java @@ -3282,7 +3282,7 @@ public void testResolveRerankInferenceId() { { LogicalPlan plan = analyze( - " FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"reranking-inference-id\"", + " FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `reranking-inference-id`", "mapping-books.json" ); Rerank rerank = as(as(plan, Limit.class).child(), Rerank.class); @@ -3293,7 +3293,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"completion-inference-id\"", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `completion-inference-id`", "mapping-books.json" ) @@ -3311,7 +3311,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"error-inference-id\"", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `error-inference-id`", "mapping-books.json" ) @@ -3323,7 +3323,7 @@ public void testResolveRerankInferenceId() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH \"unknown-inference-id\"", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `unknown-inference-id`", "mapping-books.json" ) @@ -3342,7 +3342,7 @@ public void testResolveRerankFields() { | WHERE title:"italian food recipe" OR description:"italian food recipe" | KEEP description, title, year, _score | DROP description - | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + | RERANK "italian food recipe" ON title WITH `reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3369,7 +3369,7 @@ public void testResolveRerankFields() { LogicalPlan plan = analyze(""" FROM books METADATA _score | WHERE title:"food" - | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH "reranking-inference-id" + | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH `reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3411,7 +3411,7 @@ public void testResolveRerankFields() { VerificationException ve = expectThrows( VerificationException.class, () -> analyze( - "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH \"reranking-inference-id\"", + "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH `reranking-inference-id`", "mapping-books.json" ) @@ -3428,7 +3428,7 @@ public void testResolveRerankScoreField() { LogicalPlan plan = analyze(""" FROM books METADATA _score | WHERE title:"italian food recipe" OR description:"italian food recipe" - | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + | RERANK "italian food recipe" ON title WITH `reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. @@ -3450,7 +3450,7 @@ public void testResolveRerankScoreField() { LogicalPlan plan = analyze(""" FROM books | WHERE title:"italian food recipe" OR description:"italian food recipe" - | RERANK "italian food recipe" ON title WITH "reranking-inference-id" + | RERANK "italian food recipe" ON title WITH `reranking-inference-id` """, "mapping-books.json"); Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule. diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index f9e2fbe786fbe..76b337ca7e4f4 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3318,7 +3318,7 @@ public void testPreserveParanthesis() { public void testRerankSingleField() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand("RERANK \"query text\" ON title WITH \"inferenceID\""); + var plan = processingCommand("RERANK \"query text\" ON title WITH inferenceID"); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); @@ -3329,7 +3329,7 @@ public void testRerankSingleField() { public void testRerankMultipleFields() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH \"inferenceID\""); + var plan = processingCommand("RERANK \"query text\" ON title, description, authors_renamed=authors WITH inferenceID"); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); @@ -3349,9 +3349,7 @@ public void testRerankMultipleFields() { public void testRerankComputedFields() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - var plan = processingCommand( - "RERANK \"query text\" ON title, short_description = SUBSTRING(description, 0, 100) WITH \"inferenceID\"" - ); + var plan = processingCommand("RERANK \"query text\" ON title, short_description = SUBSTRING(description, 0, 100) WITH inferenceID"); var rerank = as(plan, Rerank.class); assertThat(rerank.queryText(), equalTo(literalString("query text"))); @@ -3391,17 +3389,11 @@ public void testRerankWithNamedParameters() { public void testInvalidRerank() { assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); - expectError( - "FROM foo* | RERANK ON title WITH inferenceId", - "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING, '?', NAMED_OR_POSITIONAL_PARAM}" - ); + expectError("FROM foo* | RERANK ON title WITH inferenceId", "line 1:20: mismatched input 'ON' expecting {QUOTED_STRING"); expectError("FROM foo* | RERANK \"query text\" WITH inferenceId", "line 1:33: mismatched input 'WITH' expecting 'on'"); - expectError( - "FROM foo* | RERANK \"query text\" ON title", - "line 1:41: mismatched input '' expecting {'and', '::', ',', '.', 'or', 'with', '+', '-', '*', '/', '%'}" - ); + expectError("FROM foo* | RERANK \"query text\" ON title", "line 1:41: mismatched input '' expecting {'and',"); } static Alias alias(String name, Expression value) { From 40990799077727fe18d10ed52de4b8c97da71b8e Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 31 Mar 2025 10:30:48 +0200 Subject: [PATCH 62/75] Fix typo. --- .../elasticsearch/xpack/esql/parser/StatementParserTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java index 5a2a0c4d7304e..74240acacac24 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/StatementParserTests.java @@ -3406,7 +3406,7 @@ public void testRerankWithPositionalParameters() { } public void testRerankWithNamedParameters() { - assumeTrue("FORK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled()); var queryParams = new QueryParams(List.of(paramAsConstant("queryText", "query text"), paramAsConstant("inferenceId", "reranker"))); var rerank = as(parser.createStatement("row a = 1 | RERANK ?queryText ON title WITH ?inferenceId", queryParams), Rerank.class); From 1a6161b1d3e68a132777fc83f47c9df499193457 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 31 Mar 2025 11:02:05 +0200 Subject: [PATCH 63/75] Adding additional CSV test cases. --- .../src/main/resources/rerank.csv-spec | 49 +++++++++++++++++-- 1 file changed, 44 insertions(+), 5 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 710080bbe3cad..8fa718b210ea6 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -5,7 +5,7 @@ reranker using a single field required_capability: rerank -required_capability: match_function +required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" @@ -23,7 +23,7 @@ book_no:keyword | title:text | author reranker using multiple fields required_capability: rerank -required_capability: match_function +required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" @@ -41,7 +41,7 @@ book_no:keyword | title:text | author reranker after a limit required_capability: rerank -required_capability: match_function +required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" @@ -60,7 +60,7 @@ book_no:keyword | title:text | author:text reranker before a limit required_capability: rerank -required_capability: match_function +required_capability: match_operator_colon FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" @@ -78,7 +78,7 @@ book_no:keyword | title:text | author:text reranker add the _score column when missing required_capability: rerank -required_capability: match_function +required_capability: match_operator_colon FROM books | WHERE title:"war and peace" AND author:"Tolstoy" @@ -93,3 +93,42 @@ book_no:keyword | title:text | author 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 ; + + +reranker using another sort order +required_capability: rerank +required_capability: match_operator_colon + +FROM books +| WHERE title:"war and peace" AND author:"Tolstoy" +| RERANK "war and peace" ON title WITH test_reranker +| KEEP book_no, title, author, _score +| SORT author, title +| LIMIT 3 +; + +book_no:keyword | title:text | author:text | _score:double +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 +5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 +; + + +reranker after RRF +required_capability: fork +required_capability: rrf +required_capability: match_operator_colon + +FROM books METADATA _id, _index, _score +| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) + ( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 ) +| RRF +| RERANK "Tolkien" ON title WITH test_reranker +| LIMIT 2 +| KEEP book_no, title, author, _score +; + +book_no:keyword | title:keyword | author:keyword | _score:double +5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 0.02631578966975212 +2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 0.019607843831181526 +; From 983ce28273c577cd0d25bc7df1f3368ab75716bf Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Mon, 31 Mar 2025 17:26:12 +0200 Subject: [PATCH 64/75] Adding more tests. --- .../esql/qa/multi_node/RestRerankIT.java | 31 +++ .../esql/qa/single_node/RestRerankIT.java | 31 +++ .../xpack/esql/qa/rest/EsqlSpecTestCase.java | 12 +- .../esql/qa/rest/RestRerankTestCase.java | 195 ++++++++++++++++++ .../xpack/esql/CsvTestsDataLoader.java | 38 +++- 5 files changed, 299 insertions(+), 8 deletions(-) create mode 100644 x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java create mode 100644 x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java create mode 100644 x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java diff --git a/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java new file mode 100644 index 0000000000000..2a6445833bcd3 --- /dev/null +++ b/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java @@ -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. + */ + +package org.elasticsearch.xpack.esql.qa.multi_node; + +import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters; + +import org.elasticsearch.test.TestClustersThreadFilter; +import org.elasticsearch.test.cluster.ElasticsearchCluster; +import org.elasticsearch.xpack.esql.qa.rest.RestRerankTestCase; +import org.junit.ClassRule; + +@ThreadLeakFilters(filters = TestClustersThreadFilter.class) +public class RestRerankIT extends RestRerankTestCase { + @ClassRule + public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); + + @Override + protected String getTestRestCluster() { + return cluster.getHttpAddresses(); + } + + @Override + protected boolean preserveClusterUponCompletion() { + return true; + } +} diff --git a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java new file mode 100644 index 0000000000000..9f911d340ce83 --- /dev/null +++ b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java @@ -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. + */ + +package org.elasticsearch.xpack.esql.qa.single_node; + +import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters; + +import org.elasticsearch.test.TestClustersThreadFilter; +import org.elasticsearch.test.cluster.ElasticsearchCluster; +import org.elasticsearch.xpack.esql.qa.rest.RestRerankTestCase; +import org.junit.ClassRule; + +@ThreadLeakFilters(filters = TestClustersThreadFilter.class) +public class RestRerankIT extends RestRerankTestCase { + @ClassRule + public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); + + @Override + protected String getTestRestCluster() { + return cluster.getHttpAddresses(); + } + + @Override + protected boolean preserveClusterUponCompletion() { + return true; + } +} diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java index 99833a3ef4c32..f4aa29347832d 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/EsqlSpecTestCase.java @@ -66,8 +66,11 @@ import static org.elasticsearch.xpack.esql.CsvTestUtils.loadCsvSpecValues; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.availableDatasetsForEs; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasInferenceEndpoint; -import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoints; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasRerankInferenceEndpoint; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoint; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteInferenceEndpoint; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteRerankInferenceEndpoint; import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.loadDataSetIntoEs; import static org.elasticsearch.xpack.esql.EsqlTestUtils.classpathResources; import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.SOURCE_FIELD_MAPPING; @@ -130,7 +133,11 @@ protected EsqlSpecTestCase( @Before public void setup() throws IOException { if (supportsInferenceTestService() && clusterHasInferenceEndpoint(client()) == false) { - createInferenceEndpoints(client()); + createInferenceEndpoint(client()); + } + + if (supportsInferenceTestService() && clusterHasRerankInferenceEndpoint(client()) == false) { + createRerankInferenceEndpoint(client()); } boolean supportsLookup = supportsIndexModeLookup(); @@ -152,6 +159,7 @@ public static void wipeTestData() throws IOException { } deleteInferenceEndpoint(client()); + deleteRerankInferenceEndpoint(client()); } public boolean logResults() { diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java new file mode 100644 index 0000000000000..71f7601ee929e --- /dev/null +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java @@ -0,0 +1,195 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.qa.rest; + +import org.elasticsearch.client.Request; +import org.elasticsearch.client.ResponseException; +import org.elasticsearch.test.rest.ESRestTestCase; +import org.elasticsearch.xpack.esql.action.EsqlCapabilities; +import org.junit.After; +import org.junit.Before; + +import java.io.IOException; +import java.util.List; +import java.util.Map; + +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint; +import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteRerankInferenceEndpoint; +import static org.hamcrest.core.StringContains.containsString; + +public class RestRerankTestCase extends ESRestTestCase { + + @Before + @After + public void assertRequestBreakerEmpty() throws Exception { + EsqlSpecTestCase.assertRequestBreakerEmpty(); + } + + @Before + public void setUpInferenceEndpoint() throws IOException { + createRerankInferenceEndpoint(adminClient()); + } + + @Before + public void setUpTestIndex() throws IOException { + Request request = new Request("PUT", "/rerank-test-index"); + request.setJsonEntity(""" + { + "mappings": { + "properties": { + "title": { "type": "text" }, + "author": { "type": "text" } + } + } + }"""); + assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode()); + + request = new Request("POST", "/rerank-test-index/_bulk"); + request.addParameter("refresh", "true"); + request.setJsonEntity(""" + { "index": {"_id": 1} } + { "title": "The Future of Exploration", "author": "John Doe" } + { "index": {"_id": 2} } + { "title": "Deep Sea Exploration", "author": "Jane Smith" } + { "index": {"_id": 3} } + { "title": "History of Space Exploration", "author": "Alice Johnson" } + """); + assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode()); + } + + @After + public void wipeData() throws IOException { + try { + adminClient().performRequest(new Request("DELETE", "/rerank-test-index")); + } catch (ResponseException e) { + // 404 here just means we had no indexes + if (e.getResponse().getStatusLine().getStatusCode() != 404) { + throw e; + } + } + + deleteRerankInferenceEndpoint(adminClient()); + } + + public void testRerankWithSingleField() throws IOException { + assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + + String query = """ + FROM rerank-test-index + | WHERE match(title, "exploration") + | RERANK "exploration" ON title WITH test_reranker + | EVAL _score = ROUND(_score, 5) + """; + + Map result = runEsqlQuery(query); + + var expectedValues = List.of( + List.of("Jane Smith", "Deep Sea Exploration", 0.02941), + List.of("John Doe", "The Future of Exploration", 0.02632), + List.of("Alice Johnson", "History of Space Exploration", 0.02381) + ); + + assertResultMap(result, defaultOutputColumns(), expectedValues); + } + + public void testRerankWithMultipleFields() throws IOException { + assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + + String query = """ + FROM rerank-test-index + | WHERE match(title, "exploration") + | RERANK "exploration" ON title, author WITH test_reranker + | EVAL _score = ROUND(_score, 5) + """; + + Map result = runEsqlQuery(query); + ; + var expectedValues = List.of( + List.of("Jane Smith", "Deep Sea Exploration", 0.01818), + List.of("John Doe", "The Future of Exploration", 0.01754), + List.of("Alice Johnson", "History of Space Exploration", 0.01515) + ); + + assertResultMap(result, defaultOutputColumns(), expectedValues); + } + + public void testRerankWithPositionalParams() throws IOException { + assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + + String query = """ + FROM rerank-test-index + | WHERE match(title, "exploration") + | RERANK ? ON title WITH ? + | EVAL _score = ROUND(_score, 5) + """; + + Map result = runEsqlQuery(query, "[\"exploration\", \"test_reranker\"]"); + + var expectedValues = List.of( + List.of("Jane Smith", "Deep Sea Exploration", 0.02941), + List.of("John Doe", "The Future of Exploration", 0.02632), + List.of("Alice Johnson", "History of Space Exploration", 0.02381) + ); + + assertResultMap(result, defaultOutputColumns(), expectedValues); + } + + + public void testRerankWithNamedParams() throws IOException { + assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + + String query = """ + FROM rerank-test-index + | WHERE match(title, ?queryText) + | RERANK ?queryText ON title WITH ?inferenceId + | EVAL _score = ROUND(_score, 5) + """; + + Map result = runEsqlQuery(query, "[{\"queryText\": \"exploration\"}, {\"inferenceId\": \"test_reranker\"}]"); + + var expectedValues = List.of( + List.of("Jane Smith", "Deep Sea Exploration", 0.02941), + List.of("John Doe", "The Future of Exploration", 0.02632), + List.of("Alice Johnson", "History of Space Exploration", 0.02381) + ); + + assertResultMap(result, defaultOutputColumns(), expectedValues); + } + + public void testRerankWithMissingInferenceId() { + assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + + String query = """ + FROM rerank-test-index + | WHERE match(title, "exploration") + | RERANK "exploration" ON title WITH test_missing + | EVAL _score = ROUND(_score, 5) + """; + + ResponseException re = expectThrows(ResponseException.class, () -> runEsqlQuery(query)); + assertThat(re.getMessage(), containsString("Inference endpoint not found")); + } + + private static List> defaultOutputColumns() { + return List.of( + Map.of("name", "author", "type", "text"), + Map.of("name", "title", "type", "text"), + Map.of("name", "_score", "type", "double") + ); + } + + private Map runEsqlQuery(String query) throws IOException { + RestEsqlTestCase.RequestObjectBuilder builder = RestEsqlTestCase.requestObjectBuilder().query(query); + return RestEsqlTestCase.runEsqlSync(builder); + } + + private Map runEsqlQuery(String query, String params) throws IOException { + RestEsqlTestCase.RequestObjectBuilder builder = RestEsqlTestCase.requestObjectBuilder().query(query).params(params); + return RestEsqlTestCase.runEsqlSync(builder); + } +} diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java index 5acd45f88d1c5..9575f8ee176ea 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java @@ -357,7 +357,7 @@ private static void loadDataSetIntoEs( } /** The semantic_text mapping type require an inference endpoint that needs to be setup before creating the index. */ - public static void createInferenceEndpoints(RestClient client) throws IOException { + public static void createInferenceEndpoint(RestClient client) throws IOException { Request request = new Request("PUT", "_inference/sparse_embedding/test_sparse_inference"); request.setJsonEntity(""" { @@ -371,8 +371,34 @@ public static void createInferenceEndpoints(RestClient client) throws IOExceptio } """); client.performRequest(request); + } - request = new Request("PUT", "_inference/rerank/test_reranker"); + public static void deleteInferenceEndpoint(RestClient client) throws IOException { + try { + client.performRequest(new Request("DELETE", "_inference/test_sparse_inference")); + } catch (ResponseException e) { + // 404 here means the endpoint was not created + if (e.getResponse().getStatusLine().getStatusCode() != 404) { + throw e; + } + } + } + + public static boolean clusterHasInferenceEndpoint(RestClient client) throws IOException { + Request request = new Request("GET", "_inference/sparse_embedding/test_sparse_inference"); + try { + client.performRequest(request); + } catch (ResponseException e) { + if (e.getResponse().getStatusLine().getStatusCode() == 404) { + return false; + } + throw e; + } + return true; + } + + public static void createRerankInferenceEndpoint(RestClient client) throws IOException { + Request request = new Request("PUT", "_inference/rerank/test_reranker"); request.setJsonEntity(""" { "service": "test_reranking_service", @@ -388,9 +414,9 @@ public static void createInferenceEndpoints(RestClient client) throws IOExceptio client.performRequest(request); } - public static void deleteInferenceEndpoint(RestClient client) throws IOException { + public static void deleteRerankInferenceEndpoint(RestClient client) throws IOException { try { - client.performRequest(new Request("DELETE", "_inference/test_sparse_inference")); + client.performRequest(new Request("DELETE", "_inference/rerank/test_reranker")); } catch (ResponseException e) { // 404 here means the endpoint was not created if (e.getResponse().getStatusLine().getStatusCode() != 404) { @@ -399,8 +425,8 @@ public static void deleteInferenceEndpoint(RestClient client) throws IOException } } - public static boolean clusterHasInferenceEndpoint(RestClient client) throws IOException { - Request request = new Request("GET", "_inference/sparse_embedding/test_sparse_inference"); + public static boolean clusterHasRerankInferenceEndpoint(RestClient client) throws IOException { + Request request = new Request("GET", "_inference/rerank/test_reranker"); try { client.performRequest(request); } catch (ResponseException e) { From 8150a1f69a9c330e6485d8cd90fd5afe68880fdc Mon Sep 17 00:00:00 2001 From: elasticsearchmachine Date: Mon, 31 Mar 2025 15:39:49 +0000 Subject: [PATCH 65/75] [CI] Auto commit changes from spotless --- .../elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java | 2 +- .../elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java | 2 +- .../elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java index 2a6445833bcd3..75fbfedce51e4 100644 --- a/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java +++ b/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java @@ -15,7 +15,7 @@ import org.junit.ClassRule; @ThreadLeakFilters(filters = TestClustersThreadFilter.class) -public class RestRerankIT extends RestRerankTestCase { +public class RestRerankIT extends RestRerankTestCase { @ClassRule public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); diff --git a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java index 9f911d340ce83..1b2219c983244 100644 --- a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java +++ b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java @@ -15,7 +15,7 @@ import org.junit.ClassRule; @ThreadLeakFilters(filters = TestClustersThreadFilter.class) -public class RestRerankIT extends RestRerankTestCase { +public class RestRerankIT extends RestRerankTestCase { @ClassRule public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java index 71f7601ee929e..5d0f7e38107f0 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java @@ -139,7 +139,6 @@ public void testRerankWithPositionalParams() throws IOException { assertResultMap(result, defaultOutputColumns(), expectedValues); } - public void testRerankWithNamedParams() throws IOException { assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); From ea134a774b307149c672b3abf83f915cd968367d Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 1 Apr 2025 10:21:30 +0200 Subject: [PATCH 66/75] Muting a flaky test. --- muted-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/muted-tests.yml b/muted-tests.yml index 21ba1795f65be..71550c3b03a89 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -404,6 +404,9 @@ tests: - class: org.elasticsearch.packaging.test.DockerTests method: test021InstallPlugin issue: https://github.com/elastic/elasticsearch/issues/116147 +- class: org.elasticsearch.xpack.esql.inference.RerankOperatorTests + method: testSimpleCircuitBreaking + issue: https://github.com/elastic/elasticsearch/issues/124337 # Examples: # From ef822686555769af7ce57d8b6cbac1bbae6399ac Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 1 Apr 2025 10:59:48 +0200 Subject: [PATCH 67/75] Not using an OriginSettingsClient anymore in the InferenceService --- .../elasticsearch/xpack/esql/inference/InferenceService.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java index 98795b66c9caa..0152b423016cc 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java @@ -9,7 +9,6 @@ import org.elasticsearch.action.ActionListener; import org.elasticsearch.client.internal.Client; -import org.elasticsearch.client.internal.OriginSettingClient; import org.elasticsearch.common.util.concurrent.ThreadContext; import org.elasticsearch.inference.TaskType; import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction; @@ -22,14 +21,12 @@ import java.util.concurrent.CountDownLatch; import java.util.stream.Collectors; -import static org.elasticsearch.xpack.core.ClientHelper.ML_ORIGIN; - public class InferenceService { private final Client client; public InferenceService(Client client) { - this.client = new OriginSettingClient(client, ML_ORIGIN); + this.client = client; } public ThreadContext getThreadContext() { From 132825dc9864d0490f144de0dd1730a9bf8c5232 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Tue, 1 Apr 2025 19:02:13 +0200 Subject: [PATCH 68/75] InferenceService refactoring (now InferenceRunner) --- .../xpack/esql/EsqlTestUtils.java | 12 +- .../esql/inference/InferenceResolution.java | 4 + ...renceService.java => InferenceRunner.java} | 39 ++--- .../xpack/esql/inference/RerankOperator.java | 16 +- .../esql/planner/LocalExecutionPlanner.java | 10 +- .../xpack/esql/plugin/ComputeService.java | 22 ++- .../esql/plugin/TransportActionServices.java | 4 +- .../esql/plugin/TransportEsqlQueryAction.java | 29 ++-- .../xpack/esql/session/EsqlSession.java | 8 +- .../elasticsearch/xpack/esql/CsvTests.java | 4 +- .../esql/inference/InferenceRunnerTests.java | 146 ++++++++++++++++++ .../esql/inference/RerankOperatorTests.java | 14 +- 12 files changed, 226 insertions(+), 82 deletions(-) rename x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/{InferenceService.java => InferenceRunner.java} (63%) create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java index 00e0475ac7417..f7d8f568ac8df 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/EsqlTestUtils.java @@ -69,7 +69,7 @@ import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.NotEquals; import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.inference.InferenceResolution; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.optimizer.LogicalOptimizerContext; import org.elasticsearch.xpack.esql.parser.QueryParam; import org.elasticsearch.xpack.esql.plan.logical.Enrich; @@ -381,18 +381,18 @@ public static LogicalOptimizerContext unboundLogicalOptimizerContext() { mock(ClusterService.class), mock(IndexNameExpressionResolver.class), null, - mockInferenceService() + mockInferenceRunner() ); @SuppressWarnings("unchecked") - private static InferenceService mockInferenceService() { - InferenceService inferenceService = mock(InferenceService.class); + private static InferenceRunner mockInferenceRunner() { + InferenceRunner inferenceRunner = mock(InferenceRunner.class); doAnswer(i -> { i.getArgument(1, ActionListener.class).onResponse(emptyInferenceResolution()); return null; - }).when(inferenceService).resolveInferences(any(), any()); + }).when(inferenceRunner).resolveInferenceIds(any(), any()); - return inferenceService; + return inferenceRunner; } private EsqlTestUtils() {} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java index db694634c1855..501c1e816f5b5 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceResolution.java @@ -37,6 +37,10 @@ public Collection resolvedInferences() { return resolvedInferences.values(); } + public boolean hasError() { + return errors.isEmpty() == false; + } + public String getError(String inferenceId) { final String error = errors.get(inferenceId); if (error != null) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java similarity index 63% rename from x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java rename to x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java index 0152b423016cc..580fa2347a09e 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java @@ -8,6 +8,7 @@ package org.elasticsearch.xpack.esql.inference; import org.elasticsearch.action.ActionListener; +import org.elasticsearch.action.support.CountDownActionListener; import org.elasticsearch.client.internal.Client; import org.elasticsearch.common.util.concurrent.ThreadContext; import org.elasticsearch.inference.TaskType; @@ -18,14 +19,13 @@ import java.util.List; import java.util.Set; -import java.util.concurrent.CountDownLatch; import java.util.stream.Collectors; -public class InferenceService { +public class InferenceRunner { private final Client client; - public InferenceService(Client client) { + public InferenceRunner(Client client) { this.client = client; } @@ -33,19 +33,24 @@ public ThreadContext getThreadContext() { return client.threadPool().getThreadContext(); } - public void resolveInferences(List plans, ActionListener listener) { + public void resolveInferenceIds(List plans, ActionListener listener) { + resolveInferenceIds(plans.stream().map(InferenceRunner::planInferenceId).collect(Collectors.toSet()), listener); - if (plans.isEmpty()) { + } + + private void resolveInferenceIds(Set inferenceIds, ActionListener listener) { + + if (inferenceIds.isEmpty()) { listener.onResponse(InferenceResolution.EMPTY); return; } - Set inferenceIds = plans.stream() - .map(p -> p.inferenceId().fold(FoldContext.small()).toString()) - .collect(Collectors.toSet()); + final InferenceResolution.Builder inferenceResolutionBuilder = InferenceResolution.builder(); - CountDownLatch countDownLatch = new CountDownLatch(inferenceIds.size()); - InferenceResolution.Builder inferenceResolutionBuilder = InferenceResolution.builder(); + final CountDownActionListener countdownListener = new CountDownActionListener( + inferenceIds.size(), + ActionListener.wrap(_r -> listener.onResponse(inferenceResolutionBuilder.build()), listener::onFailure) + ); for (var inferenceId : inferenceIds) { client.execute( @@ -54,21 +59,17 @@ public void resolveInferences(List plans, ActionListener { ResolvedInference resolvedInference = new ResolvedInference(inferenceId, r.getEndpoints().getFirst().getTaskType()); inferenceResolutionBuilder.withResolvedInference(resolvedInference); - countDownLatch.countDown(); + countdownListener.onResponse(null); }, e -> { inferenceResolutionBuilder.withError(inferenceId, e.getMessage()); - countDownLatch.countDown(); + countdownListener.onResponse(null); }) ); } + } - try { - countDownLatch.await(); - } catch (InterruptedException e) { - throw new RuntimeException(e); - } - - listener.onResponse(inferenceResolutionBuilder.build()); + private static String planInferenceId(InferencePlan plan) { + return plan.inferenceId().fold(FoldContext.small()).toString(); } public void doInference(InferenceAction.Request request, ActionListener listener) { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java index c181b2d81d800..00f4261b4707a 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java @@ -32,7 +32,7 @@ public class RerankOperator extends AsyncOperator { private static final int MAX_INFERENCE_WORKER = 10; public record Factory( - InferenceService inferenceService, + InferenceRunner inferenceRunner, String inferenceId, String queryText, ExpressionEvaluator.Factory rowEncoderFactory, @@ -48,7 +48,7 @@ public String describe() { public Operator get(DriverContext driverContext) { return new RerankOperator( driverContext, - inferenceService, + inferenceRunner, inferenceId, queryText, rowEncoderFactory().get(driverContext), @@ -57,7 +57,7 @@ public Operator get(DriverContext driverContext) { } } - private final InferenceService inferenceService; + private final InferenceRunner inferenceRunner; private final BlockFactory blockFactory; private final String inferenceId; private final String queryText; @@ -66,18 +66,18 @@ public Operator get(DriverContext driverContext) { public RerankOperator( DriverContext driverContext, - InferenceService inferenceService, + InferenceRunner inferenceRunner, String inferenceId, String queryText, ExpressionEvaluator rowEncoder, int scoreChannel ) { - super(driverContext, inferenceService.getThreadContext(), MAX_INFERENCE_WORKER); + super(driverContext, inferenceRunner.getThreadContext(), MAX_INFERENCE_WORKER); - assert inferenceService.getThreadContext() != null; + assert inferenceRunner.getThreadContext() != null; this.blockFactory = driverContext.blockFactory(); - this.inferenceService = inferenceService; + this.inferenceRunner = inferenceRunner; this.inferenceId = inferenceId; this.queryText = queryText; this.rowEncoder = rowEncoder; @@ -90,7 +90,7 @@ protected void performAsync(Page inputPage, ActionListener listener) { final ActionListener outputListener = ActionListener.runAfter(listener, () -> { releasePageOnAnyThread(inputPage); }); try { - inferenceService.doInference( + inferenceRunner.doInference( buildInferenceRequest(inputPage), ActionListener.wrap( inferenceResponse -> outputListener.onResponse(buildOutput(inputPage, inferenceResponse)), diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java index c74001ee0d2e7..b96789c181695 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlanner.java @@ -81,7 +81,7 @@ import org.elasticsearch.xpack.esql.evaluator.EvalMapper; import org.elasticsearch.xpack.esql.evaluator.command.GrokEvaluatorExtracter; import org.elasticsearch.xpack.esql.expression.Order; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.inference.RerankOperator; import org.elasticsearch.xpack.esql.inference.XContentRowEncoder; import org.elasticsearch.xpack.esql.plan.logical.Fork; @@ -152,7 +152,7 @@ public class LocalExecutionPlanner { private final Supplier exchangeSinkSupplier; private final EnrichLookupService enrichLookupService; private final LookupFromIndexService lookupFromIndexService; - private final InferenceService inferenceService; + private final InferenceRunner inferenceRunner; private final PhysicalOperationProviders physicalOperationProviders; private final List shardContexts; @@ -168,7 +168,7 @@ public LocalExecutionPlanner( Supplier exchangeSinkSupplier, EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, - InferenceService inferenceService, + InferenceRunner inferenceRunner, PhysicalOperationProviders physicalOperationProviders, List shardContexts ) { @@ -184,7 +184,7 @@ public LocalExecutionPlanner( this.exchangeSinkSupplier = exchangeSinkSupplier; this.enrichLookupService = enrichLookupService; this.lookupFromIndexService = lookupFromIndexService; - this.inferenceService = inferenceService; + this.inferenceRunner = inferenceRunner; this.physicalOperationProviders = physicalOperationProviders; this.shardContexts = shardContexts; } @@ -581,7 +581,7 @@ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerCon int scoreChannel = outputLayout.get(rerank.scoreAttribute().id()).channel(); return source.with( - new RerankOperator.Factory(inferenceService, inferenceId, queryText, rowEncoderFactory, scoreChannel), + new RerankOperator.Factory(inferenceRunner, inferenceId, queryText, rowEncoderFactory, scoreChannel), outputLayout ); } diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java index 7defce05acdd9..a178cce3e67ba 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/ComputeService.java @@ -46,7 +46,7 @@ import org.elasticsearch.xpack.esql.core.expression.FoldContext; import org.elasticsearch.xpack.esql.enrich.EnrichLookupService; import org.elasticsearch.xpack.esql.enrich.LookupFromIndexService; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.plan.physical.ExchangeSinkExec; import org.elasticsearch.xpack.esql.plan.physical.ExchangeSourceExec; import org.elasticsearch.xpack.esql.plan.physical.OutputExec; @@ -123,7 +123,7 @@ public class ComputeService { private final DriverTaskRunner driverRunner; private final EnrichLookupService enrichLookupService; private final LookupFromIndexService lookupFromIndexService; - private final InferenceService inferenceService; + private final InferenceRunner inferenceRunner; private final ClusterService clusterService; private final AtomicLong childSessionIdGenerator = new AtomicLong(); private final DataNodeComputeHandler dataNodeComputeHandler; @@ -132,27 +132,24 @@ public class ComputeService { @SuppressWarnings("this-escape") public ComputeService( - SearchService searchService, - TransportService transportService, - ExchangeService exchangeService, + TransportActionServices transportActionServices, EnrichLookupService enrichLookupService, LookupFromIndexService lookupFromIndexService, - InferenceService inferenceService, - ClusterService clusterService, ThreadPool threadPool, BigArrays bigArrays, BlockFactory blockFactory ) { - this.searchService = searchService; - this.transportService = transportService; + this.searchService = transportActionServices.searchService(); + this.transportService = transportActionServices.transportService(); + this.exchangeService = transportActionServices.exchangeService(); this.bigArrays = bigArrays.withCircuitBreaking(); this.blockFactory = blockFactory; var esqlExecutor = threadPool.executor(ThreadPool.Names.SEARCH); this.driverRunner = new DriverTaskRunner(transportService, esqlExecutor); this.enrichLookupService = enrichLookupService; this.lookupFromIndexService = lookupFromIndexService; - this.inferenceService = inferenceService; - this.clusterService = clusterService; + this.inferenceRunner = transportActionServices.inferenceRunner(); + this.clusterService = transportActionServices.clusterService(); this.dataNodeComputeHandler = new DataNodeComputeHandler(this, searchService, transportService, exchangeService, esqlExecutor); this.clusterComputeHandler = new ClusterComputeHandler( this, @@ -161,7 +158,6 @@ public ComputeService( esqlExecutor, dataNodeComputeHandler ); - this.exchangeService = exchangeService; } public void execute( @@ -414,7 +410,7 @@ public SourceProvider createSourceProvider() { context.exchangeSinkSupplier(), enrichLookupService, lookupFromIndexService, - inferenceService, + inferenceRunner, new EsPhysicalOperationProviders(context.foldCtx(), contexts, searchService.getIndicesService().getAnalysis()), contexts ); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java index 9301d9295c127..0874ff4068227 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java @@ -13,7 +13,7 @@ import org.elasticsearch.search.SearchService; import org.elasticsearch.transport.TransportService; import org.elasticsearch.usage.UsageService; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; public record TransportActionServices( TransportService transportService, @@ -22,5 +22,5 @@ public record TransportActionServices( ClusterService clusterService, IndexNameExpressionResolver indexNameExpressionResolver, UsageService usageService, - InferenceService inferenceService + InferenceRunner inferenceRunner ) {} diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java index 05fb26c108808..2b3a877b48205 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java @@ -49,7 +49,7 @@ import org.elasticsearch.xpack.esql.enrich.EnrichPolicyResolver; import org.elasticsearch.xpack.esql.enrich.LookupFromIndexService; import org.elasticsearch.xpack.esql.execution.PlanExecutor; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.session.Configuration; import org.elasticsearch.xpack.esql.session.EsqlSession.PlanRunner; import org.elasticsearch.xpack.esql.session.Result; @@ -82,7 +82,6 @@ public class TransportEsqlQueryAction extends HandledTransportAction asyncTaskManagementService; private final RemoteClusterService remoteClusterService; private final UsageService usageService; - private final InferenceService inferenceService; private final TransportActionServices services; private volatile boolean defaultAllowPartialResults; @@ -128,19 +127,7 @@ public TransportEsqlQueryAction( bigArrays, blockFactoryProvider.blockFactory() ); - this.inferenceService = new InferenceService(client); - this.computeService = new ComputeService( - searchService, - transportService, - exchangeService, - enrichLookupService, - lookupFromIndexService, - inferenceService, - clusterService, - threadPool, - bigArrays, - blockFactoryProvider.blockFactory() - ); + this.asyncTaskManagementService = new AsyncTaskManagementService<>( XPackPlugin.ASYNC_RESULTS_INDEX, client, @@ -164,8 +151,18 @@ public TransportEsqlQueryAction( clusterService, indexNameExpressionResolver, usageService, - inferenceService + new InferenceRunner(client) ); + + this.computeService = new ComputeService( + services, + enrichLookupService, + lookupFromIndexService, + threadPool, + bigArrays, + blockFactoryProvider.blockFactory() + ); + defaultAllowPartialResults = EsqlPlugin.QUERY_ALLOW_PARTIAL_RESULTS.get(clusterService.getSettings()); clusterService.getClusterSettings() .addSettingsUpdateConsumer(EsqlPlugin.QUERY_ALLOW_PARTIAL_RESULTS, v -> defaultAllowPartialResults = v); diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java index cadc75089187a..f18da302e94e4 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java @@ -52,7 +52,7 @@ import org.elasticsearch.xpack.esql.index.IndexResolution; import org.elasticsearch.xpack.esql.index.MappingException; import org.elasticsearch.xpack.esql.inference.InferenceResolution; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.optimizer.LogicalPlanOptimizer; import org.elasticsearch.xpack.esql.optimizer.PhysicalOptimizerContext; import org.elasticsearch.xpack.esql.optimizer.PhysicalPlanOptimizer; @@ -123,7 +123,7 @@ public interface PlanRunner { private final PhysicalPlanOptimizer physicalPlanOptimizer; private final PlanTelemetry planTelemetry; private final IndicesExpressionGrouper indicesExpressionGrouper; - private final InferenceService inferenceService; + private final InferenceRunner inferenceRunner; public EsqlSession( String sessionId, @@ -151,7 +151,7 @@ public EsqlSession( this.physicalPlanOptimizer = new PhysicalPlanOptimizer(new PhysicalOptimizerContext(configuration)); this.planTelemetry = planTelemetry; this.indicesExpressionGrouper = indicesExpressionGrouper; - this.inferenceService = services.inferenceService(); + this.inferenceRunner = services.inferenceRunner(); this.preMapper = new PreMapper(services); } @@ -606,7 +606,7 @@ private void resolveInferences( PreAnalysisResult preAnalysisResult, ActionListener l ) { - inferenceService.resolveInferences(inferencePlans, l.map(preAnalysisResult::withInferenceResolution)); + inferenceRunner.resolveInferenceIds(inferencePlans, l.map(preAnalysisResult::withInferenceResolution)); } static PreAnalysisResult fieldNames(LogicalPlan parsed, Set enrichPolicyMatchFields, PreAnalysisResult result) { diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java index b0ba67121dbaa..5f89f33ea8a8b 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java @@ -66,7 +66,7 @@ import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry; import org.elasticsearch.xpack.esql.index.EsIndex; import org.elasticsearch.xpack.esql.index.IndexResolution; -import org.elasticsearch.xpack.esql.inference.InferenceService; +import org.elasticsearch.xpack.esql.inference.InferenceRunner; import org.elasticsearch.xpack.esql.optimizer.LocalLogicalOptimizerContext; import org.elasticsearch.xpack.esql.optimizer.LocalLogicalPlanOptimizer; import org.elasticsearch.xpack.esql.optimizer.LocalPhysicalOptimizerContext; @@ -675,7 +675,7 @@ void executeSubPlan( () -> exchangeSink.createExchangeSink(() -> {}), Mockito.mock(EnrichLookupService.class), Mockito.mock(LookupFromIndexService.class), - Mockito.mock(InferenceService.class), + Mockito.mock(InferenceRunner.class), physicalOperationProviders, List.of() ); diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java new file mode 100644 index 0000000000000..17ecbd0b32393 --- /dev/null +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java @@ -0,0 +1,146 @@ +/* + * 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. + */ + +package org.elasticsearch.xpack.esql.inference; + +import org.apache.lucene.util.SetOnce; +import org.elasticsearch.ResourceNotFoundException; +import org.elasticsearch.action.ActionListener; +import org.elasticsearch.action.ActionResponse; +import org.elasticsearch.client.internal.Client; +import org.elasticsearch.inference.ModelConfigurations; +import org.elasticsearch.inference.ServiceSettings; +import org.elasticsearch.inference.TaskType; +import org.elasticsearch.test.ESTestCase; +import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction; +import org.elasticsearch.xpack.esql.core.expression.Literal; +import org.elasticsearch.xpack.esql.core.tree.Source; +import org.elasticsearch.xpack.esql.core.type.DataType; +import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan; + +import java.util.List; + +import static org.hamcrest.Matchers.contains; +import static org.hamcrest.Matchers.empty; +import static org.hamcrest.Matchers.equalTo; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.doAnswer; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.when; + +public class InferenceRunnerTests extends ESTestCase { + public void testResolveInferenceIds() throws Exception { + InferenceRunner inferenceRunner = new InferenceRunner(mockClient()); + List inferencePlans = List.of(mockInferencePlan("rerank-plan")); + SetOnce inferenceResolutionSetOnce = new SetOnce<>(); + + inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> { + throw new RuntimeException(e); + })); + + assertBusy(() -> { + InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get(); + assertNotNull(inferenceResolution); + assertThat(inferenceResolution.resolvedInferences(), contains(new ResolvedInference("rerank-plan", TaskType.RERANK))); + assertThat(inferenceResolution.hasError(), equalTo(false)); + }); + } + + public void testResolveMultipleInferenceIds() throws Exception { + InferenceRunner inferenceRunner = new InferenceRunner(mockClient()); + List inferencePlans = List.of( + mockInferencePlan("rerank-plan"), + mockInferencePlan("rerank-plan"), + mockInferencePlan("completion-plan") + ); + SetOnce inferenceResolutionSetOnce = new SetOnce<>(); + + inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> { + throw new RuntimeException(e); + })); + + assertBusy(() -> { + InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get(); + assertNotNull(inferenceResolution); + + assertThat( + inferenceResolution.resolvedInferences(), + contains( + new ResolvedInference("rerank-plan", TaskType.RERANK), + new ResolvedInference("completion-plan", TaskType.COMPLETION) + ) + ); + assertThat(inferenceResolution.hasError(), equalTo(false)); + }); + } + + public void testResolveMissingInferenceIds() throws Exception { + InferenceRunner inferenceRunner = new InferenceRunner(mockClient()); + List inferencePlans = List.of(mockInferencePlan("missing-plan")); + + SetOnce inferenceResolutionSetOnce = new SetOnce<>(); + + inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> { + throw new RuntimeException(e); + })); + + assertBusy(() -> { + InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get(); + assertNotNull(inferenceResolution); + + assertThat(inferenceResolution.resolvedInferences(), empty()); + assertThat(inferenceResolution.hasError(), equalTo(true)); + assertThat(inferenceResolution.getError("missing-plan"), equalTo("inference endpoint not found")); + }); + } + + @SuppressWarnings({ "unchecked", "raw-types" }) + private static Client mockClient() { + Client client = mock(Client.class); + doAnswer(i -> { + GetInferenceModelAction.Request request = i.getArgument(1, GetInferenceModelAction.Request.class); + ActionListener listener = (ActionListener) i.getArgument(2, ActionListener.class); + ActionResponse response = getInferenceModelResponse(request); + + if (response == null) { + listener.onFailure(new ResourceNotFoundException("inference endpoint not found")); + } else { + listener.onResponse(response); + } + + return null; + }).when(client).execute(eq(GetInferenceModelAction.INSTANCE), any(), any()); + return client; + } + + private static ActionResponse getInferenceModelResponse(GetInferenceModelAction.Request request) { + GetInferenceModelAction.Response response = mock(GetInferenceModelAction.Response.class); + + if (request.getInferenceEntityId().equals("rerank-plan")) { + when(response.getEndpoints()).thenReturn(List.of(mockModelConfig("rerank-plan", TaskType.RERANK))); + return response; + } + + if (request.getInferenceEntityId().equals("completion-plan")) { + when(response.getEndpoints()).thenReturn(List.of(mockModelConfig("completion-plan", TaskType.COMPLETION))); + return response; + } + + return null; + } + + private static ModelConfigurations mockModelConfig(String inferenceId, TaskType taskType) { + return new ModelConfigurations(inferenceId, taskType, randomIdentifier(), mock(ServiceSettings.class)); + } + + private static InferencePlan mockInferencePlan(String inferenceId) { + InferencePlan plan = mock(InferencePlan.class); + when(plan.inferenceId()).thenReturn(new Literal(Source.EMPTY, inferenceId, DataType.KEYWORD)); + return plan; + } +} diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java index 09fa75e6daf53..2833f3fab0d7a 100644 --- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java +++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java @@ -89,13 +89,13 @@ public void shutdownThreadPool() { @Override protected Operator.OperatorFactory simple() { - InferenceService inferenceService = mockedSimpleInferenceService(); - return new RerankOperator.Factory(inferenceService, SIMPLE_INFERENCE_ID, SIMPLE_QUERY, rowEncoderFactory, scoreChannel); + InferenceRunner inferenceRunner = mockedSimpleInferenceRunner(); + return new RerankOperator.Factory(inferenceRunner, SIMPLE_INFERENCE_ID, SIMPLE_QUERY, rowEncoderFactory, scoreChannel); } - private InferenceService mockedSimpleInferenceService() { - InferenceService inferenceService = mock(InferenceService.class); - when(inferenceService.getThreadContext()).thenReturn(threadPool.getThreadContext()); + private InferenceRunner mockedSimpleInferenceRunner() { + InferenceRunner inferenceRunner = mock(InferenceRunner.class); + when(inferenceRunner.getThreadContext()).thenReturn(threadPool.getThreadContext()); doAnswer(invocation -> { @SuppressWarnings("unchecked") ActionListener listener = (ActionListener) invocation.getArgument( @@ -108,9 +108,9 @@ private InferenceService mockedSimpleInferenceService() { ); listener.onResponse(inferenceResponse); return null; - }).when(inferenceService).doInference(any(), any()); + }).when(inferenceRunner).doInference(any(), any()); - return inferenceService; + return inferenceRunner; } private RankedDocsResults mockedRankedDocResults(InferenceAction.Request request) { From d26cc76736a018550f1c118ba557141753afd52a Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Wed, 2 Apr 2025 08:22:47 +0200 Subject: [PATCH 69/75] Rerank is not a pipeline breaker anymore. --- .../org/elasticsearch/xpack/esql/planner/mapper/Mapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java index 7601984d4391f..ba618540a88d9 100644 --- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java +++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/planner/mapper/Mapper.java @@ -244,7 +244,7 @@ private PhysicalPlan mapMerge(Merge merge) { } public static boolean isPipelineBreaker(LogicalPlan p) { - return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy || p instanceof Rerank; + return p instanceof Aggregate || p instanceof TopN || p instanceof Limit || p instanceof OrderBy; } private PhysicalPlan addExchangeForFragment(LogicalPlan logical, PhysicalPlan child) { From 37e1d1c79e49a218d96c5c5839285a1b7130777a Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 4 Apr 2025 09:10:34 +0200 Subject: [PATCH 70/75] Use double in tests. --- .../esql/qa/rest/RestRerankTestCase.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java index 5d0f7e38107f0..970a6070949ae 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java @@ -89,9 +89,9 @@ public void testRerankWithSingleField() throws IOException { Map result = runEsqlQuery(query); var expectedValues = List.of( - List.of("Jane Smith", "Deep Sea Exploration", 0.02941), - List.of("John Doe", "The Future of Exploration", 0.02632), - List.of("Alice Johnson", "History of Space Exploration", 0.02381) + List.of("Jane Smith", "Deep Sea Exploration", 0.02941d), + List.of("John Doe", "The Future of Exploration", 0.02632d), + List.of("Alice Johnson", "History of Space Exploration", 0.02381d) ); assertResultMap(result, defaultOutputColumns(), expectedValues); @@ -110,9 +110,9 @@ public void testRerankWithMultipleFields() throws IOException { Map result = runEsqlQuery(query); ; var expectedValues = List.of( - List.of("Jane Smith", "Deep Sea Exploration", 0.01818), - List.of("John Doe", "The Future of Exploration", 0.01754), - List.of("Alice Johnson", "History of Space Exploration", 0.01515) + List.of("Jane Smith", "Deep Sea Exploration", 0.01818d), + List.of("John Doe", "The Future of Exploration", 0.01754d), + List.of("Alice Johnson", "History of Space Exploration", 0.01515d) ); assertResultMap(result, defaultOutputColumns(), expectedValues); @@ -131,9 +131,9 @@ public void testRerankWithPositionalParams() throws IOException { Map result = runEsqlQuery(query, "[\"exploration\", \"test_reranker\"]"); var expectedValues = List.of( - List.of("Jane Smith", "Deep Sea Exploration", 0.02941), - List.of("John Doe", "The Future of Exploration", 0.02632), - List.of("Alice Johnson", "History of Space Exploration", 0.02381) + List.of("Jane Smith", "Deep Sea Exploration", 0.02941d), + List.of("John Doe", "The Future of Exploration", 0.02632d), + List.of("Alice Johnson", "History of Space Exploration", 0.02381d) ); assertResultMap(result, defaultOutputColumns(), expectedValues); @@ -152,9 +152,9 @@ public void testRerankWithNamedParams() throws IOException { Map result = runEsqlQuery(query, "[{\"queryText\": \"exploration\"}, {\"inferenceId\": \"test_reranker\"}]"); var expectedValues = List.of( - List.of("Jane Smith", "Deep Sea Exploration", 0.02941), - List.of("John Doe", "The Future of Exploration", 0.02632), - List.of("Alice Johnson", "History of Space Exploration", 0.02381) + List.of("Jane Smith", "Deep Sea Exploration", 0.02941d), + List.of("John Doe", "The Future of Exploration", 0.02632d), + List.of("Alice Johnson", "History of Space Exploration", 0.02381d) ); assertResultMap(result, defaultOutputColumns(), expectedValues); From 4cad906dc0536d454fa1a511f06a874f20ddb7e3 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 4 Apr 2025 09:10:48 +0200 Subject: [PATCH 71/75] Use rounded scores in tests. --- .../src/main/resources/rerank.csv-spec | 53 +++++++++++-------- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index 8fa718b210ea6..b59f9e287d7bb 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -11,13 +11,14 @@ FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" | RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 +5327 | War and Peace | Leo Tolstoy | 0.03846 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515 ; @@ -29,13 +30,14 @@ FROM books METADATA _score | WHERE title:"war and peace" AND author:"Tolstoy" | RERANK "war and peace" ON title, author WITH test_reranker | KEEP book_no, title, author, _score +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.02083333395421505 -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.014285714365541935 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.011363636702299118 -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.009523809887468815 +5327 | War and Peace | Leo Tolstoy | 0.02083 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.01429 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01136 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.00952 ; @@ -49,12 +51,13 @@ FROM books METADATA _score | LIMIT 3 | RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 +5327 | War and Peace | Leo Tolstoy | 0.03846 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083 ; @@ -67,12 +70,13 @@ FROM books METADATA _score | RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score | LIMIT 3 +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 +5327 | War and Peace | Leo Tolstoy | 0.03846 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083 ; @@ -84,14 +88,15 @@ FROM books | WHERE title:"war and peace" AND author:"Tolstoy" | RERANK "war and peace" ON title WITH test_reranker | KEEP book_no, title, author, _score +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 -9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083333395421505 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 +5327 | War and Peace | Leo Tolstoy | 0.03846 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222 +9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515 ; @@ -105,12 +110,13 @@ FROM books | KEEP book_no, title, author, _score | SORT author, title | LIMIT 3 +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:text | author:text | _score:double -4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222222276031971 -2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515151560306549 -5327 | War and Peace | Leo Tolstoy | 0.03846153989434242 +4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222 +2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515 +5327 | War and Peace | Leo Tolstoy | 0.03846 ; @@ -126,9 +132,10 @@ FROM books METADATA _id, _index, _score | RERANK "Tolkien" ON title WITH test_reranker | LIMIT 2 | KEEP book_no, title, author, _score +| EVAL _score = ROUND(_score, 5) ; book_no:keyword | title:keyword | author:keyword | _score:double -5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 0.02631578966975212 -2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 0.019607843831181526 +5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 0.02632 +2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 0.01961 ; From a16696178e42a2d51003b34f527b2741b817aaf0 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 4 Apr 2025 11:39:23 +0200 Subject: [PATCH 72/75] Fix serverless build. --- .../xpack/esql/qa/rest/RestRerankTestCase.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java index 970a6070949ae..4f4e6d8cbcfe4 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java @@ -7,10 +7,10 @@ package org.elasticsearch.xpack.esql.qa.rest; +import org.elasticsearch.Build; import org.elasticsearch.client.Request; import org.elasticsearch.client.ResponseException; import org.elasticsearch.test.rest.ESRestTestCase; -import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.junit.After; import org.junit.Before; @@ -77,7 +77,7 @@ public void wipeData() throws IOException { } public void testRerankWithSingleField() throws IOException { - assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("rerank capability not available", Build.current().isSnapshot()); String query = """ FROM rerank-test-index @@ -98,7 +98,7 @@ public void testRerankWithSingleField() throws IOException { } public void testRerankWithMultipleFields() throws IOException { - assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("rerank capability not available", Build.current().isSnapshot()); String query = """ FROM rerank-test-index @@ -119,7 +119,7 @@ public void testRerankWithMultipleFields() throws IOException { } public void testRerankWithPositionalParams() throws IOException { - assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("rerank capability not available", Build.current().isSnapshot()); String query = """ FROM rerank-test-index @@ -140,7 +140,7 @@ public void testRerankWithPositionalParams() throws IOException { } public void testRerankWithNamedParams() throws IOException { - assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("rerank capability not available", Build.current().isSnapshot()); String query = """ FROM rerank-test-index @@ -161,7 +161,7 @@ public void testRerankWithNamedParams() throws IOException { } public void testRerankWithMissingInferenceId() { - assumeTrue("semantic text capability not available", EsqlCapabilities.Cap.RERANK.isEnabled()); + assumeTrue("rerank capability not available", Build.current().isSnapshot()); String query = """ FROM rerank-test-index From e084062d945b5118eb05e65afe8bb52c803e0453 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 4 Apr 2025 11:52:05 +0200 Subject: [PATCH 73/75] Use Rest to check capability instead of constant. --- .../esql/qa/rest/RestRerankTestCase.java | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java index 4f4e6d8cbcfe4..ce5e58d61fbb3 100644 --- a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java +++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java @@ -7,10 +7,10 @@ package org.elasticsearch.xpack.esql.qa.rest; -import org.elasticsearch.Build; import org.elasticsearch.client.Request; import org.elasticsearch.client.ResponseException; import org.elasticsearch.test.rest.ESRestTestCase; +import org.elasticsearch.xpack.esql.action.EsqlCapabilities; import org.junit.After; import org.junit.Before; @@ -24,6 +24,14 @@ public class RestRerankTestCase extends ESRestTestCase { + @Before + public void skipWhenRerankDisabled() throws IOException { + assumeTrue( + "Requires RERANK capability", + EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.RERANK.capabilityName())) + ); + } + @Before @After public void assertRequestBreakerEmpty() throws Exception { @@ -77,8 +85,6 @@ public void wipeData() throws IOException { } public void testRerankWithSingleField() throws IOException { - assumeTrue("rerank capability not available", Build.current().isSnapshot()); - String query = """ FROM rerank-test-index | WHERE match(title, "exploration") @@ -98,8 +104,6 @@ public void testRerankWithSingleField() throws IOException { } public void testRerankWithMultipleFields() throws IOException { - assumeTrue("rerank capability not available", Build.current().isSnapshot()); - String query = """ FROM rerank-test-index | WHERE match(title, "exploration") @@ -119,8 +123,6 @@ public void testRerankWithMultipleFields() throws IOException { } public void testRerankWithPositionalParams() throws IOException { - assumeTrue("rerank capability not available", Build.current().isSnapshot()); - String query = """ FROM rerank-test-index | WHERE match(title, "exploration") @@ -140,8 +142,6 @@ public void testRerankWithPositionalParams() throws IOException { } public void testRerankWithNamedParams() throws IOException { - assumeTrue("rerank capability not available", Build.current().isSnapshot()); - String query = """ FROM rerank-test-index | WHERE match(title, ?queryText) @@ -161,8 +161,6 @@ public void testRerankWithNamedParams() throws IOException { } public void testRerankWithMissingInferenceId() { - assumeTrue("rerank capability not available", Build.current().isSnapshot()); - String query = """ FROM rerank-test-index | WHERE match(title, "exploration") From 65aac16f3425965b8a98f5c7c94438396f831770 Mon Sep 17 00:00:00 2001 From: Aurelien FOUCRET Date: Fri, 4 Apr 2025 14:28:16 +0200 Subject: [PATCH 74/75] Temporary deleting IT cause they are failing on serverless. --- .../esql/qa/multi_node/RestRerankIT.java | 31 ------------------- .../esql/qa/single_node/RestRerankIT.java | 31 ------------------- 2 files changed, 62 deletions(-) delete mode 100644 x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java delete mode 100644 x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java diff --git a/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java deleted file mode 100644 index 75fbfedce51e4..0000000000000 --- a/x-pack/plugin/esql/qa/server/multi-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/multi_node/RestRerankIT.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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. - */ - -package org.elasticsearch.xpack.esql.qa.multi_node; - -import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters; - -import org.elasticsearch.test.TestClustersThreadFilter; -import org.elasticsearch.test.cluster.ElasticsearchCluster; -import org.elasticsearch.xpack.esql.qa.rest.RestRerankTestCase; -import org.junit.ClassRule; - -@ThreadLeakFilters(filters = TestClustersThreadFilter.class) -public class RestRerankIT extends RestRerankTestCase { - @ClassRule - public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); - - @Override - protected String getTestRestCluster() { - return cluster.getHttpAddresses(); - } - - @Override - protected boolean preserveClusterUponCompletion() { - return true; - } -} diff --git a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java b/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java deleted file mode 100644 index 1b2219c983244..0000000000000 --- a/x-pack/plugin/esql/qa/server/single-node/src/javaRestTest/java/org/elasticsearch/xpack/esql/qa/single_node/RestRerankIT.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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. - */ - -package org.elasticsearch.xpack.esql.qa.single_node; - -import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters; - -import org.elasticsearch.test.TestClustersThreadFilter; -import org.elasticsearch.test.cluster.ElasticsearchCluster; -import org.elasticsearch.xpack.esql.qa.rest.RestRerankTestCase; -import org.junit.ClassRule; - -@ThreadLeakFilters(filters = TestClustersThreadFilter.class) -public class RestRerankIT extends RestRerankTestCase { - @ClassRule - public static ElasticsearchCluster cluster = Clusters.testCluster(spec -> spec.plugin("inference-service-test")); - - @Override - protected String getTestRestCluster() { - return cluster.getHttpAddresses(); - } - - @Override - protected boolean preserveClusterUponCompletion() { - return true; - } -} From ef0e5c1cb2326fb66b136157320fa8822dad3e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?= Date: Fri, 4 Apr 2025 15:32:30 +0200 Subject: [PATCH 75/75] Add missing capability in the CSV test --- .../esql/qa/testFixtures/src/main/resources/rerank.csv-spec | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec index b59f9e287d7bb..71d4a2d57a136 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec @@ -124,6 +124,7 @@ reranker after RRF required_capability: fork required_capability: rrf required_capability: match_operator_colon +required_capability: rerank FROM books METADATA _id, _index, _score | FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 )