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 extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> 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 extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)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 extends LogicalPlan> 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 extends PhysicalPlan> 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 extends T> 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 extends LogicalPlan> 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 extends PhysicalPlan> 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