From e5552ce84a57a5bd0fb011e6e713e52ee154888e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Fri, 4 Apr 2025 16:39:18 +0200
Subject: [PATCH 01/34] Adding ES|QL RERANK command in snapshot builds
(#123074)
---
docs/changelog/123074.yaml | 5 +
.../inference/action/InferenceAction.java | 4 +
x-pack/plugin/esql/gen/EsqlBaseLexer.interp | 551 ++++
x-pack/plugin/esql/gen/EsqlBaseLexer.java | 1501 +++++++++++
x-pack/plugin/esql/gen/EsqlBaseLexer.tokens | 203 ++
.../xpack/esql/ccq/MultiClusterSpecIT.java | 3 +
.../xpack/esql/qa/rest/EsqlSpecTestCase.java | 10 +
.../esql/qa/rest/RestRerankTestCase.java | 192 ++
.../xpack/esql/CsvTestsDataLoader.java | 41 +
.../xpack/esql/EsqlTestUtils.java | 23 +-
.../src/main/resources/rerank.csv-spec | 142 +
.../esql/src/main/antlr/EsqlBaseLexer.g4 | 12 +-
.../esql/src/main/antlr/EsqlBaseLexer.tokens | 323 +--
.../esql/src/main/antlr/EsqlBaseParser.g4 | 5 +
.../esql/src/main/antlr/EsqlBaseParser.tokens | 323 +--
.../xpack/esql/action/EsqlCapabilities.java | 10 +
.../xpack/esql/action/PositionToXContent.java | 2 +-
.../xpack/esql/analysis/Analyzer.java | 64 +
.../xpack/esql/analysis/AnalyzerContext.java | 9 +-
.../xpack/esql/analysis/PreAnalyzer.java | 11 +-
.../esql/inference/InferenceResolution.java | 77 +
.../xpack/esql/inference/InferenceRunner.java | 78 +
.../xpack/esql/inference/RerankOperator.java | 198 ++
.../esql/inference/ResolvedInference.java | 28 +
.../esql/inference/XContentRowEncoder.java | 145 +
.../xpack/esql/parser/EsqlBaseLexer.interp | 32 +-
.../xpack/esql/parser/EsqlBaseLexer.java | 2358 +++++++++--------
.../xpack/esql/parser/EsqlBaseParser.interp | 21 +-
.../xpack/esql/parser/EsqlBaseParser.java | 1797 +++++++------
.../parser/EsqlBaseParserBaseListener.java | 12 +
.../parser/EsqlBaseParserBaseVisitor.java | 7 +
.../esql/parser/EsqlBaseParserListener.java | 10 +
.../esql/parser/EsqlBaseParserVisitor.java | 6 +
.../xpack/esql/parser/LogicalPlanBuilder.java | 62 +-
.../xpack/esql/plan/PlanWritables.java | 4 +
.../plan/logical/inference/InferencePlan.java | 67 +
.../esql/plan/logical/inference/Rerank.java | 190 ++
.../physical/inference/InferenceExec.java | 51 +
.../plan/physical/inference/RerankExec.java | 138 +
.../esql/planner/LocalExecutionPlanner.java | 43 +
.../xpack/esql/planner/mapper/Mapper.java | 15 +
.../esql/planner/mapper/MapperUtils.java | 13 +
.../xpack/esql/plugin/ComputeService.java | 17 +-
.../esql/plugin/TransportActionServices.java | 4 +-
.../esql/plugin/TransportEsqlQueryAction.java | 26 +-
.../xpack/esql/session/EsqlSession.java | 50 +-
.../elasticsearch/xpack/esql/CsvTests.java | 12 +-
.../esql/analysis/AnalyzerTestUtils.java | 30 +-
.../xpack/esql/analysis/AnalyzerTests.java | 212 +-
.../xpack/esql/analysis/ParsingTests.java | 3 +-
.../function/CheckLicenseTests.java | 9 +-
.../esql/inference/InferenceRunnerTests.java | 146 +
.../esql/inference/RerankOperatorTests.java | 297 +++
.../inference/ResolvedInferenceTests.java | 41 +
.../LocalLogicalPlanOptimizerTests.java | 18 +-
.../LocalPhysicalPlanOptimizerTests.java | 3 +-
.../optimizer/LogicalPlanOptimizerTests.java | 39 +-
.../optimizer/PhysicalPlanOptimizerTests.java | 4 +-
.../GrammarInDevelopmentParsingTests.java | 4 +
.../esql/parser/StatementParserTests.java | 87 +
.../inference/RerankSerializationTests.java | 66 +
.../RerankExecSerializationTests.java | 66 +
.../xpack/esql/planner/FilterTests.java | 9 +-
.../planner/LocalExecutionPlannerTests.java | 1 +
.../esql/planner/QueryTranslatorTests.java | 11 +-
.../esql/plugin/ClusterRequestTests.java | 9 +-
.../DataNodeRequestSerializationTests.java | 9 +-
.../mock/TestRerankingServiceExtension.java | 4 +
68 files changed, 7529 insertions(+), 2434 deletions(-)
create mode 100644 docs/changelog/123074.yaml
create mode 100644 x-pack/plugin/esql/gen/EsqlBaseLexer.interp
create mode 100644 x-pack/plugin/esql/gen/EsqlBaseLexer.java
create mode 100644 x-pack/plugin/esql/gen/EsqlBaseLexer.tokens
create mode 100644 x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java
create mode 100644 x-pack/plugin/esql/qa/testFixtures/src/main/resources/rerank.csv-spec
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/InferenceRunner.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/RerankOperator.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/ResolvedInference.java
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/XContentRowEncoder.java
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/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/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java
diff --git a/docs/changelog/123074.yaml b/docs/changelog/123074.yaml
new file mode 100644
index 0000000000000..59ca1524893f8
--- /dev/null
+++ b/docs/changelog/123074.yaml
@@ -0,0 +1,5 @@
+pr: 123074
+summary: Adding ES|QL Reranker command in snapshot builds
+area: Ranking
+type: feature
+issues: []
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 5db4644635d06..96de7ee9f119b 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
@@ -64,6 +64,10 @@ public static class Request extends BaseInferenceActionRequest {
public static final ParseField TOP_N = new ParseField("top_n");
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/gen/EsqlBaseLexer.interp b/x-pack/plugin/esql/gen/EsqlBaseLexer.interp
new file mode 100644
index 0000000000000..8de44af15548c
--- /dev/null
+++ b/x-pack/plugin/esql/gen/EsqlBaseLexer.interp
@@ -0,0 +1,551 @@
+token literal names:
+null
+'dissect'
+'drop'
+'enrich'
+'eval'
+'explain'
+'from'
+'grok'
+'keep'
+'limit'
+'mv_expand'
+'rename'
+'row'
+'show'
+'sort'
+'stats'
+'where'
+'lookup'
+'change_point'
+null
+null
+null
+null
+null
+null
+null
+null
+null
+null
+null
+'|'
+null
+null
+null
+'and'
+'as'
+'asc'
+'='
+'by'
+'::'
+':'
+','
+'desc'
+'.'
+'false'
+'first'
+'in'
+'is'
+'last'
+'like'
+'('
+'not'
+'null'
+'nulls'
+'on'
+'or'
+'?'
+'rlike'
+')'
+'true'
+'with'
+'=='
+'=~'
+'!='
+'<'
+'<='
+'>'
+'>='
+'+'
+'-'
+'*'
+'/'
+'%'
+'{'
+'}'
+'??'
+null
+null
+null
+']'
+null
+null
+null
+null
+null
+null
+null
+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'
+null
+null
+null
+null
+null
+null
+null
+null
+null
+null
+null
+null
+
+token symbolic names:
+null
+DISSECT
+DROP
+ENRICH
+EVAL
+EXPLAIN
+FROM
+GROK
+KEEP
+LIMIT
+MV_EXPAND
+RENAME
+ROW
+SHOW
+SORT
+STATS
+WHERE
+JOIN_LOOKUP
+CHANGE_POINT
+DEV_INLINESTATS
+DEV_LOOKUP
+DEV_METRICS
+DEV_RERANK
+DEV_JOIN_FULL
+DEV_JOIN_LEFT
+DEV_JOIN_RIGHT
+UNKNOWN_CMD
+LINE_COMMENT
+MULTILINE_COMMENT
+WS
+PIPE
+QUOTED_STRING
+INTEGER_LITERAL
+DECIMAL_LITERAL
+AND
+AS
+ASC
+ASSIGN
+BY
+CAST_OP
+COLON
+COMMA
+DESC
+DOT
+FALSE
+FIRST
+IN
+IS
+LAST
+LIKE
+LP
+NOT
+NULL
+NULLS
+ON
+OR
+PARAM
+RLIKE
+RP
+TRUE
+WITH
+EQ
+CIEQ
+NEQ
+LT
+LTE
+GT
+GTE
+PLUS
+MINUS
+ASTERISK
+SLASH
+PERCENT
+LEFT_BRACES
+RIGHT_BRACES
+DOUBLE_PARAMS
+NAMED_OR_POSITIONAL_PARAM
+NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+OPENING_BRACKET
+CLOSING_BRACKET
+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
+SHOW_MULTILINE_COMMENT
+SHOW_WS
+SETTING
+SETTING_LINE_COMMENT
+SETTTING_MULTILINE_COMMENT
+SETTING_WS
+LOOKUP_LINE_COMMENT
+LOOKUP_MULTILINE_COMMENT
+LOOKUP_WS
+LOOKUP_FIELD_LINE_COMMENT
+LOOKUP_FIELD_MULTILINE_COMMENT
+LOOKUP_FIELD_WS
+JOIN
+USING
+JOIN_LINE_COMMENT
+JOIN_MULTILINE_COMMENT
+JOIN_WS
+METRICS_LINE_COMMENT
+METRICS_MULTILINE_COMMENT
+METRICS_WS
+CLOSING_METRICS_LINE_COMMENT
+CLOSING_METRICS_MULTILINE_COMMENT
+CLOSING_METRICS_WS
+CHANGE_POINT_LINE_COMMENT
+CHANGE_POINT_MULTILINE_COMMENT
+CHANGE_POINT_WS
+
+rule names:
+DISSECT
+DROP
+ENRICH
+EVAL
+EXPLAIN
+FROM
+GROK
+KEEP
+LIMIT
+MV_EXPAND
+RENAME
+ROW
+SHOW
+SORT
+STATS
+WHERE
+JOIN_LOOKUP
+CHANGE_POINT
+DEV_INLINESTATS
+DEV_LOOKUP
+DEV_METRICS
+DEV_RERANK
+DEV_JOIN_FULL
+DEV_JOIN_LEFT
+DEV_JOIN_RIGHT
+UNKNOWN_CMD
+LINE_COMMENT
+MULTILINE_COMMENT
+WS
+PIPE
+DIGIT
+LETTER
+ESCAPE_SEQUENCE
+UNESCAPED_CHARS
+EXPONENT
+ASPERAND
+BACKQUOTE
+BACKQUOTE_BLOCK
+UNDERSCORE
+UNQUOTED_ID_BODY
+QUOTED_STRING
+INTEGER_LITERAL
+DECIMAL_LITERAL
+AND
+AS
+ASC
+ASSIGN
+BY
+CAST_OP
+COLON
+COMMA
+DESC
+DOT
+FALSE
+FIRST
+IN
+IS
+LAST
+LIKE
+LP
+NOT
+NULL
+NULLS
+ON
+OR
+PARAM
+RLIKE
+RP
+TRUE
+WITH
+EQ
+CIEQ
+NEQ
+LT
+LTE
+GT
+GTE
+PLUS
+MINUS
+ASTERISK
+SLASH
+PERCENT
+LEFT_BRACES
+RIGHT_BRACES
+DOUBLE_PARAMS
+NESTED_WHERE
+NAMED_OR_POSITIONAL_PARAM
+NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+OPENING_BRACKET
+CLOSING_BRACKET
+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_SELECTOR
+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
+PROJECT_DOUBLE_PARAMS
+PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+UNQUOTED_ID_BODY_WITH_PATTERN
+UNQUOTED_ID_PATTERN
+ID_PATTERN
+PROJECT_LINE_COMMENT
+PROJECT_MULTILINE_COMMENT
+PROJECT_WS
+RENAME_PIPE
+RENAME_ASSIGN
+RENAME_COMMA
+RENAME_DOT
+RENAME_PARAM
+RENAME_NAMED_OR_POSITIONAL_PARAM
+RENAME_DOUBLE_PARAMS
+RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+RENAME_AS
+RENAME_ID_PATTERN
+RENAME_LINE_COMMENT
+RENAME_MULTILINE_COMMENT
+RENAME_WS
+ENRICH_PIPE
+ENRICH_OPENING_BRACKET
+ENRICH_ON
+ENRICH_WITH
+ENRICH_POLICY_NAME_BODY
+ENRICH_POLICY_NAME
+ENRICH_MODE_UNQUOTED_VALUE
+ENRICH_LINE_COMMENT
+ENRICH_MULTILINE_COMMENT
+ENRICH_WS
+ENRICH_FIELD_PIPE
+ENRICH_FIELD_ASSIGN
+ENRICH_FIELD_COMMA
+ENRICH_FIELD_DOT
+ENRICH_FIELD_WITH
+ENRICH_FIELD_ID_PATTERN
+ENRICH_FIELD_QUOTED_IDENTIFIER
+ENRICH_FIELD_PARAM
+ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM
+ENRICH_FIELD_DOUBLE_PARAMS
+ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+ENRICH_FIELD_LINE_COMMENT
+ENRICH_FIELD_MULTILINE_COMMENT
+ENRICH_FIELD_WS
+MVEXPAND_PIPE
+MVEXPAND_DOT
+MVEXPAND_PARAM
+MVEXPAND_NAMED_OR_POSITIONAL_PARAM
+MVEXPAND_DOUBLE_PARAMS
+MVEXPAND_NAMED_OR_POSITIONAL_DOUBLE_PARAMS
+MVEXPAND_QUOTED_IDENTIFIER
+MVEXPAND_UNQUOTED_IDENTIFIER
+MVEXPAND_LINE_COMMENT
+MVEXPAND_MULTILINE_COMMENT
+MVEXPAND_WS
+SHOW_PIPE
+INFO
+SHOW_LINE_COMMENT
+SHOW_MULTILINE_COMMENT
+SHOW_WS
+SETTING_CLOSING_BRACKET
+SETTING_COLON
+SETTING
+SETTING_LINE_COMMENT
+SETTTING_MULTILINE_COMMENT
+SETTING_WS
+LOOKUP_PIPE
+LOOKUP_COLON
+LOOKUP_COMMA
+LOOKUP_DOT
+LOOKUP_ON
+LOOKUP_UNQUOTED_SOURCE
+LOOKUP_QUOTED_SOURCE
+LOOKUP_LINE_COMMENT
+LOOKUP_MULTILINE_COMMENT
+LOOKUP_WS
+LOOKUP_FIELD_PIPE
+LOOKUP_FIELD_COMMA
+LOOKUP_FIELD_DOT
+LOOKUP_FIELD_ID_PATTERN
+LOOKUP_FIELD_LINE_COMMENT
+LOOKUP_FIELD_MULTILINE_COMMENT
+LOOKUP_FIELD_WS
+JOIN_PIPE
+JOIN
+JOIN_AS
+JOIN_ON
+USING
+JOIN_UNQUOTED_SOURCE
+JOIN_QUOTED_SOURCE
+JOIN_COLON
+JOIN_UNQUOTED_IDENTIFER
+JOIN_QUOTED_IDENTIFIER
+JOIN_LINE_COMMENT
+JOIN_MULTILINE_COMMENT
+JOIN_WS
+METRICS_PIPE
+METRICS_UNQUOTED_SOURCE
+METRICS_QUOTED_SOURCE
+METRICS_LINE_COMMENT
+METRICS_MULTILINE_COMMENT
+METRICS_WS
+CLOSING_METRICS_COLON
+CLOSING_METRICS_SELECTOR
+CLOSING_METRICS_COMMA
+CLOSING_METRICS_LINE_COMMENT
+CLOSING_METRICS_MULTILINE_COMMENT
+CLOSING_METRICS_WS
+CLOSING_METRICS_QUOTED_IDENTIFIER
+CLOSING_METRICS_UNQUOTED_IDENTIFIER
+CLOSING_METRICS_BY
+CLOSING_METRICS_PIPE
+CHANGE_POINT_PIPE
+CHANGE_POINT_ON
+CHANGE_POINT_AS
+CHANGE_POINT_DOT
+CHANGE_POINT_COMMA
+CHANGE_POINT_QUOTED_IDENTIFIER
+CHANGE_POINT_UNQUOTED_IDENTIFIER
+CHANGE_POINT_LINE_COMMENT
+CHANGE_POINT_MULTILINE_COMMENT
+CHANGE_POINT_WS
+
+channel names:
+DEFAULT_TOKEN_CHANNEL
+HIDDEN
+
+mode names:
+DEFAULT_MODE
+EXPRESSION_MODE
+EXPLAIN_MODE
+FROM_MODE
+PROJECT_MODE
+RENAME_MODE
+ENRICH_MODE
+ENRICH_FIELD_MODE
+MVEXPAND_MODE
+SHOW_MODE
+SETTING_MODE
+LOOKUP_MODE
+LOOKUP_FIELD_MODE
+JOIN_MODE
+METRICS_MODE
+CLOSING_METRICS_MODE
+CHANGE_POINT_MODE
+
+atn:
+[4, 0, 137, 1804, 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, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 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, 4, 25, 733, 8, 25, 11, 25, 12, 25, 734, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 743, 8, 26, 10, 26, 12, 26, 746, 9, 26, 1, 26, 3, 26, 749, 8, 26, 1, 26, 3, 26, 752, 8, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 761, 8, 27, 10, 27, 12, 27, 764, 9, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 4, 28, 772, 8, 28, 11, 28, 12, 28, 773, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 793, 8, 34, 1, 34, 4, 34, 796, 8, 34, 11, 34, 12, 34, 797, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 3, 37, 807, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 814, 8, 39, 1, 40, 1, 40, 1, 40, 5, 40, 819, 8, 40, 10, 40, 12, 40, 822, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 830, 8, 40, 10, 40, 12, 40, 833, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 840, 8, 40, 1, 40, 3, 40, 843, 8, 40, 3, 40, 845, 8, 40, 1, 41, 4, 41, 848, 8, 41, 11, 41, 12, 41, 849, 1, 42, 4, 42, 853, 8, 42, 11, 42, 12, 42, 854, 1, 42, 1, 42, 5, 42, 859, 8, 42, 10, 42, 12, 42, 862, 9, 42, 1, 42, 1, 42, 4, 42, 866, 8, 42, 11, 42, 12, 42, 867, 1, 42, 4, 42, 871, 8, 42, 11, 42, 12, 42, 872, 1, 42, 1, 42, 5, 42, 877, 8, 42, 10, 42, 12, 42, 880, 9, 42, 3, 42, 882, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 888, 8, 42, 11, 42, 12, 42, 889, 1, 42, 1, 42, 3, 42, 894, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 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, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 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, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1040, 8, 86, 1, 86, 5, 86, 1043, 8, 86, 10, 86, 12, 86, 1046, 9, 86, 1, 86, 1, 86, 4, 86, 1050, 8, 86, 11, 86, 12, 86, 1051, 3, 86, 1054, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1059, 8, 87, 1, 87, 5, 87, 1062, 8, 87, 10, 87, 12, 87, 1065, 9, 87, 1, 87, 1, 87, 4, 87, 1069, 8, 87, 11, 87, 12, 87, 1070, 3, 87, 1073, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 5, 90, 1087, 8, 90, 10, 90, 12, 90, 1090, 9, 90, 1, 90, 1, 90, 3, 90, 1094, 8, 90, 1, 90, 4, 90, 1097, 8, 90, 11, 90, 12, 90, 1098, 3, 90, 1101, 8, 90, 1, 91, 1, 91, 4, 91, 1105, 8, 91, 11, 91, 12, 91, 1106, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 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, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1188, 8, 109, 1, 110, 4, 110, 1191, 8, 110, 11, 110, 12, 110, 1192, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 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, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1248, 8, 123, 1, 124, 1, 124, 3, 124, 1252, 8, 124, 1, 124, 5, 124, 1255, 8, 124, 10, 124, 12, 124, 1258, 9, 124, 1, 124, 1, 124, 3, 124, 1262, 8, 124, 1, 124, 4, 124, 1265, 8, 124, 11, 124, 12, 124, 1266, 3, 124, 1269, 8, 124, 1, 125, 1, 125, 4, 125, 1273, 8, 125, 11, 125, 12, 125, 1274, 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, 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, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 4, 147, 1365, 8, 147, 11, 147, 12, 147, 1366, 1, 147, 1, 147, 3, 147, 1371, 8, 147, 1, 147, 4, 147, 1374, 8, 147, 11, 147, 12, 147, 1375, 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, 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, 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, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 4, 184, 1533, 8, 184, 11, 184, 12, 184, 1534, 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, 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, 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, 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, 205, 1, 206, 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, 208, 1, 208, 1, 209, 1, 209, 1, 209, 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, 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, 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, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 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, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 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, 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, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 2, 762, 831, 0, 244, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 30, 77, 0, 79, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 31, 99, 32, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 71, 179, 72, 181, 73, 183, 74, 185, 75, 187, 0, 189, 76, 191, 77, 193, 78, 195, 79, 197, 80, 199, 0, 201, 81, 203, 82, 205, 83, 207, 84, 209, 0, 211, 0, 213, 85, 215, 86, 217, 87, 219, 0, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 88, 235, 0, 237, 89, 239, 0, 241, 0, 243, 90, 245, 91, 247, 92, 249, 0, 251, 0, 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, 0, 293, 0, 295, 97, 297, 98, 299, 99, 301, 0, 303, 0, 305, 0, 307, 0, 309, 0, 311, 100, 313, 0, 315, 101, 317, 102, 319, 103, 321, 0, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 104, 345, 105, 347, 106, 349, 0, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 107, 367, 108, 369, 109, 371, 0, 373, 110, 375, 111, 377, 112, 379, 113, 381, 0, 383, 0, 385, 114, 387, 115, 389, 116, 391, 117, 393, 0, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 118, 409, 119, 411, 120, 413, 0, 415, 0, 417, 0, 419, 0, 421, 121, 423, 122, 425, 123, 427, 0, 429, 124, 431, 0, 433, 0, 435, 125, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 126, 449, 127, 451, 128, 453, 0, 455, 0, 457, 0, 459, 129, 461, 130, 463, 131, 465, 0, 467, 0, 469, 0, 471, 132, 473, 133, 475, 134, 477, 0, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 135, 501, 136, 503, 137, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 68, 68, 100, 100, 2, 0, 73, 73, 105, 105, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 78, 78, 110, 110, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 77, 77, 109, 109, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1834, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 1, 75, 1, 0, 0, 0, 1, 97, 1, 0, 0, 0, 1, 99, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 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, 201, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 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, 2, 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, 231, 1, 0, 0, 0, 3, 233, 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, 3, 245, 1, 0, 0, 0, 3, 247, 1, 0, 0, 0, 4, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 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, 5, 297, 1, 0, 0, 0, 5, 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, 6, 311, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 6, 317, 1, 0, 0, 0, 6, 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, 7, 341, 1, 0, 0, 0, 7, 343, 1, 0, 0, 0, 7, 345, 1, 0, 0, 0, 7, 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, 8, 359, 1, 0, 0, 0, 8, 361, 1, 0, 0, 0, 8, 363, 1, 0, 0, 0, 8, 365, 1, 0, 0, 0, 8, 367, 1, 0, 0, 0, 8, 369, 1, 0, 0, 0, 9, 371, 1, 0, 0, 0, 9, 373, 1, 0, 0, 0, 9, 375, 1, 0, 0, 0, 9, 377, 1, 0, 0, 0, 9, 379, 1, 0, 0, 0, 10, 381, 1, 0, 0, 0, 10, 383, 1, 0, 0, 0, 10, 385, 1, 0, 0, 0, 10, 387, 1, 0, 0, 0, 10, 389, 1, 0, 0, 0, 10, 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, 11, 401, 1, 0, 0, 0, 11, 403, 1, 0, 0, 0, 11, 405, 1, 0, 0, 0, 11, 407, 1, 0, 0, 0, 11, 409, 1, 0, 0, 0, 11, 411, 1, 0, 0, 0, 12, 413, 1, 0, 0, 0, 12, 415, 1, 0, 0, 0, 12, 417, 1, 0, 0, 0, 12, 419, 1, 0, 0, 0, 12, 421, 1, 0, 0, 0, 12, 423, 1, 0, 0, 0, 12, 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, 13, 441, 1, 0, 0, 0, 13, 443, 1, 0, 0, 0, 13, 445, 1, 0, 0, 0, 13, 447, 1, 0, 0, 0, 13, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 14, 453, 1, 0, 0, 0, 14, 455, 1, 0, 0, 0, 14, 457, 1, 0, 0, 0, 14, 459, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 14, 463, 1, 0, 0, 0, 15, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 15, 471, 1, 0, 0, 0, 15, 473, 1, 0, 0, 0, 15, 475, 1, 0, 0, 0, 15, 477, 1, 0, 0, 0, 15, 479, 1, 0, 0, 0, 15, 481, 1, 0, 0, 0, 15, 483, 1, 0, 0, 0, 16, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 16, 493, 1, 0, 0, 0, 16, 495, 1, 0, 0, 0, 16, 497, 1, 0, 0, 0, 16, 499, 1, 0, 0, 0, 16, 501, 1, 0, 0, 0, 16, 503, 1, 0, 0, 0, 17, 505, 1, 0, 0, 0, 19, 515, 1, 0, 0, 0, 21, 522, 1, 0, 0, 0, 23, 531, 1, 0, 0, 0, 25, 538, 1, 0, 0, 0, 27, 548, 1, 0, 0, 0, 29, 555, 1, 0, 0, 0, 31, 562, 1, 0, 0, 0, 33, 569, 1, 0, 0, 0, 35, 577, 1, 0, 0, 0, 37, 589, 1, 0, 0, 0, 39, 598, 1, 0, 0, 0, 41, 604, 1, 0, 0, 0, 43, 611, 1, 0, 0, 0, 45, 618, 1, 0, 0, 0, 47, 626, 1, 0, 0, 0, 49, 634, 1, 0, 0, 0, 51, 643, 1, 0, 0, 0, 53, 658, 1, 0, 0, 0, 55, 673, 1, 0, 0, 0, 57, 685, 1, 0, 0, 0, 59, 696, 1, 0, 0, 0, 61, 706, 1, 0, 0, 0, 63, 714, 1, 0, 0, 0, 65, 722, 1, 0, 0, 0, 67, 732, 1, 0, 0, 0, 69, 738, 1, 0, 0, 0, 71, 755, 1, 0, 0, 0, 73, 771, 1, 0, 0, 0, 75, 777, 1, 0, 0, 0, 77, 781, 1, 0, 0, 0, 79, 783, 1, 0, 0, 0, 81, 785, 1, 0, 0, 0, 83, 788, 1, 0, 0, 0, 85, 790, 1, 0, 0, 0, 87, 799, 1, 0, 0, 0, 89, 801, 1, 0, 0, 0, 91, 806, 1, 0, 0, 0, 93, 808, 1, 0, 0, 0, 95, 813, 1, 0, 0, 0, 97, 844, 1, 0, 0, 0, 99, 847, 1, 0, 0, 0, 101, 893, 1, 0, 0, 0, 103, 895, 1, 0, 0, 0, 105, 899, 1, 0, 0, 0, 107, 902, 1, 0, 0, 0, 109, 906, 1, 0, 0, 0, 111, 908, 1, 0, 0, 0, 113, 911, 1, 0, 0, 0, 115, 914, 1, 0, 0, 0, 117, 916, 1, 0, 0, 0, 119, 918, 1, 0, 0, 0, 121, 923, 1, 0, 0, 0, 123, 925, 1, 0, 0, 0, 125, 931, 1, 0, 0, 0, 127, 937, 1, 0, 0, 0, 129, 940, 1, 0, 0, 0, 131, 943, 1, 0, 0, 0, 133, 948, 1, 0, 0, 0, 135, 953, 1, 0, 0, 0, 137, 955, 1, 0, 0, 0, 139, 959, 1, 0, 0, 0, 141, 964, 1, 0, 0, 0, 143, 970, 1, 0, 0, 0, 145, 973, 1, 0, 0, 0, 147, 976, 1, 0, 0, 0, 149, 978, 1, 0, 0, 0, 151, 984, 1, 0, 0, 0, 153, 986, 1, 0, 0, 0, 155, 991, 1, 0, 0, 0, 157, 996, 1, 0, 0, 0, 159, 999, 1, 0, 0, 0, 161, 1002, 1, 0, 0, 0, 163, 1005, 1, 0, 0, 0, 165, 1007, 1, 0, 0, 0, 167, 1010, 1, 0, 0, 0, 169, 1012, 1, 0, 0, 0, 171, 1015, 1, 0, 0, 0, 173, 1017, 1, 0, 0, 0, 175, 1019, 1, 0, 0, 0, 177, 1021, 1, 0, 0, 0, 179, 1023, 1, 0, 0, 0, 181, 1025, 1, 0, 0, 0, 183, 1027, 1, 0, 0, 0, 185, 1029, 1, 0, 0, 0, 187, 1032, 1, 0, 0, 0, 189, 1053, 1, 0, 0, 0, 191, 1072, 1, 0, 0, 0, 193, 1074, 1, 0, 0, 0, 195, 1079, 1, 0, 0, 0, 197, 1100, 1, 0, 0, 0, 199, 1102, 1, 0, 0, 0, 201, 1110, 1, 0, 0, 0, 203, 1112, 1, 0, 0, 0, 205, 1116, 1, 0, 0, 0, 207, 1120, 1, 0, 0, 0, 209, 1124, 1, 0, 0, 0, 211, 1129, 1, 0, 0, 0, 213, 1134, 1, 0, 0, 0, 215, 1138, 1, 0, 0, 0, 217, 1142, 1, 0, 0, 0, 219, 1146, 1, 0, 0, 0, 221, 1151, 1, 0, 0, 0, 223, 1155, 1, 0, 0, 0, 225, 1159, 1, 0, 0, 0, 227, 1163, 1, 0, 0, 0, 229, 1167, 1, 0, 0, 0, 231, 1171, 1, 0, 0, 0, 233, 1175, 1, 0, 0, 0, 235, 1187, 1, 0, 0, 0, 237, 1190, 1, 0, 0, 0, 239, 1194, 1, 0, 0, 0, 241, 1198, 1, 0, 0, 0, 243, 1202, 1, 0, 0, 0, 245, 1206, 1, 0, 0, 0, 247, 1210, 1, 0, 0, 0, 249, 1214, 1, 0, 0, 0, 251, 1219, 1, 0, 0, 0, 253, 1223, 1, 0, 0, 0, 255, 1227, 1, 0, 0, 0, 257, 1231, 1, 0, 0, 0, 259, 1235, 1, 0, 0, 0, 261, 1239, 1, 0, 0, 0, 263, 1247, 1, 0, 0, 0, 265, 1268, 1, 0, 0, 0, 267, 1272, 1, 0, 0, 0, 269, 1276, 1, 0, 0, 0, 271, 1280, 1, 0, 0, 0, 273, 1284, 1, 0, 0, 0, 275, 1288, 1, 0, 0, 0, 277, 1293, 1, 0, 0, 0, 279, 1297, 1, 0, 0, 0, 281, 1301, 1, 0, 0, 0, 283, 1305, 1, 0, 0, 0, 285, 1309, 1, 0, 0, 0, 287, 1313, 1, 0, 0, 0, 289, 1317, 1, 0, 0, 0, 291, 1321, 1, 0, 0, 0, 293, 1325, 1, 0, 0, 0, 295, 1329, 1, 0, 0, 0, 297, 1333, 1, 0, 0, 0, 299, 1337, 1, 0, 0, 0, 301, 1341, 1, 0, 0, 0, 303, 1346, 1, 0, 0, 0, 305, 1351, 1, 0, 0, 0, 307, 1356, 1, 0, 0, 0, 309, 1361, 1, 0, 0, 0, 311, 1370, 1, 0, 0, 0, 313, 1377, 1, 0, 0, 0, 315, 1381, 1, 0, 0, 0, 317, 1385, 1, 0, 0, 0, 319, 1389, 1, 0, 0, 0, 321, 1393, 1, 0, 0, 0, 323, 1399, 1, 0, 0, 0, 325, 1403, 1, 0, 0, 0, 327, 1407, 1, 0, 0, 0, 329, 1411, 1, 0, 0, 0, 331, 1415, 1, 0, 0, 0, 333, 1419, 1, 0, 0, 0, 335, 1423, 1, 0, 0, 0, 337, 1427, 1, 0, 0, 0, 339, 1431, 1, 0, 0, 0, 341, 1435, 1, 0, 0, 0, 343, 1439, 1, 0, 0, 0, 345, 1443, 1, 0, 0, 0, 347, 1447, 1, 0, 0, 0, 349, 1451, 1, 0, 0, 0, 351, 1456, 1, 0, 0, 0, 353, 1460, 1, 0, 0, 0, 355, 1464, 1, 0, 0, 0, 357, 1468, 1, 0, 0, 0, 359, 1472, 1, 0, 0, 0, 361, 1476, 1, 0, 0, 0, 363, 1480, 1, 0, 0, 0, 365, 1484, 1, 0, 0, 0, 367, 1488, 1, 0, 0, 0, 369, 1492, 1, 0, 0, 0, 371, 1496, 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, 1532, 1, 0, 0, 0, 387, 1536, 1, 0, 0, 0, 389, 1540, 1, 0, 0, 0, 391, 1544, 1, 0, 0, 0, 393, 1548, 1, 0, 0, 0, 395, 1553, 1, 0, 0, 0, 397, 1557, 1, 0, 0, 0, 399, 1561, 1, 0, 0, 0, 401, 1565, 1, 0, 0, 0, 403, 1570, 1, 0, 0, 0, 405, 1574, 1, 0, 0, 0, 407, 1578, 1, 0, 0, 0, 409, 1582, 1, 0, 0, 0, 411, 1586, 1, 0, 0, 0, 413, 1590, 1, 0, 0, 0, 415, 1596, 1, 0, 0, 0, 417, 1600, 1, 0, 0, 0, 419, 1604, 1, 0, 0, 0, 421, 1608, 1, 0, 0, 0, 423, 1612, 1, 0, 0, 0, 425, 1616, 1, 0, 0, 0, 427, 1620, 1, 0, 0, 0, 429, 1625, 1, 0, 0, 0, 431, 1630, 1, 0, 0, 0, 433, 1634, 1, 0, 0, 0, 435, 1640, 1, 0, 0, 0, 437, 1649, 1, 0, 0, 0, 439, 1653, 1, 0, 0, 0, 441, 1657, 1, 0, 0, 0, 443, 1661, 1, 0, 0, 0, 445, 1665, 1, 0, 0, 0, 447, 1669, 1, 0, 0, 0, 449, 1673, 1, 0, 0, 0, 451, 1677, 1, 0, 0, 0, 453, 1681, 1, 0, 0, 0, 455, 1686, 1, 0, 0, 0, 457, 1692, 1, 0, 0, 0, 459, 1698, 1, 0, 0, 0, 461, 1702, 1, 0, 0, 0, 463, 1706, 1, 0, 0, 0, 465, 1710, 1, 0, 0, 0, 467, 1716, 1, 0, 0, 0, 469, 1722, 1, 0, 0, 0, 471, 1728, 1, 0, 0, 0, 473, 1732, 1, 0, 0, 0, 475, 1736, 1, 0, 0, 0, 477, 1740, 1, 0, 0, 0, 479, 1746, 1, 0, 0, 0, 481, 1752, 1, 0, 0, 0, 483, 1758, 1, 0, 0, 0, 485, 1763, 1, 0, 0, 0, 487, 1768, 1, 0, 0, 0, 489, 1772, 1, 0, 0, 0, 491, 1776, 1, 0, 0, 0, 493, 1780, 1, 0, 0, 0, 495, 1784, 1, 0, 0, 0, 497, 1788, 1, 0, 0, 0, 499, 1792, 1, 0, 0, 0, 501, 1796, 1, 0, 0, 0, 503, 1800, 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, 18, 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, 20, 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, 22, 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, 24, 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, 26, 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, 28, 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, 30, 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, 32, 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, 34, 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, 36, 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, 38, 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, 40, 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, 42, 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, 44, 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, 46, 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, 48, 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, 50, 1, 0, 0, 0, 643, 644, 7, 4, 0, 0, 644, 645, 7, 10, 0, 0, 645, 646, 7, 12, 0, 0, 646, 647, 7, 9, 0, 0, 647, 648, 7, 17, 0, 0, 648, 649, 7, 3, 0, 0, 649, 650, 5, 95, 0, 0, 650, 651, 7, 8, 0, 0, 651, 652, 7, 7, 0, 0, 652, 653, 7, 1, 0, 0, 653, 654, 7, 9, 0, 0, 654, 655, 7, 5, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 6, 17, 9, 0, 657, 52, 1, 0, 0, 0, 658, 659, 4, 18, 0, 0, 659, 660, 7, 1, 0, 0, 660, 661, 7, 9, 0, 0, 661, 662, 7, 13, 0, 0, 662, 663, 7, 1, 0, 0, 663, 664, 7, 9, 0, 0, 664, 665, 7, 3, 0, 0, 665, 666, 7, 2, 0, 0, 666, 667, 7, 5, 0, 0, 667, 668, 7, 12, 0, 0, 668, 669, 7, 5, 0, 0, 669, 670, 7, 2, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 6, 18, 0, 0, 672, 54, 1, 0, 0, 0, 673, 674, 4, 19, 1, 0, 674, 675, 7, 13, 0, 0, 675, 676, 7, 7, 0, 0, 676, 677, 7, 7, 0, 0, 677, 678, 7, 18, 0, 0, 678, 679, 7, 20, 0, 0, 679, 680, 7, 8, 0, 0, 680, 681, 5, 95, 0, 0, 681, 682, 5, 128020, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 6, 19, 10, 0, 684, 56, 1, 0, 0, 0, 685, 686, 4, 20, 2, 0, 686, 687, 7, 16, 0, 0, 687, 688, 7, 3, 0, 0, 688, 689, 7, 5, 0, 0, 689, 690, 7, 6, 0, 0, 690, 691, 7, 1, 0, 0, 691, 692, 7, 4, 0, 0, 692, 693, 7, 2, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 6, 20, 11, 0, 695, 58, 1, 0, 0, 0, 696, 697, 4, 21, 3, 0, 697, 698, 7, 6, 0, 0, 698, 699, 7, 3, 0, 0, 699, 700, 7, 6, 0, 0, 700, 701, 7, 12, 0, 0, 701, 702, 7, 9, 0, 0, 702, 703, 7, 18, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 6, 21, 0, 0, 705, 60, 1, 0, 0, 0, 706, 707, 4, 22, 4, 0, 707, 708, 7, 15, 0, 0, 708, 709, 7, 20, 0, 0, 709, 710, 7, 13, 0, 0, 710, 711, 7, 13, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 6, 22, 8, 0, 713, 62, 1, 0, 0, 0, 714, 715, 4, 23, 5, 0, 715, 716, 7, 13, 0, 0, 716, 717, 7, 3, 0, 0, 717, 718, 7, 15, 0, 0, 718, 719, 7, 5, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 23, 8, 0, 721, 64, 1, 0, 0, 0, 722, 723, 4, 24, 6, 0, 723, 724, 7, 6, 0, 0, 724, 725, 7, 1, 0, 0, 725, 726, 7, 17, 0, 0, 726, 727, 7, 10, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 6, 24, 8, 0, 730, 66, 1, 0, 0, 0, 731, 733, 8, 21, 0, 0, 732, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 6, 25, 0, 0, 737, 68, 1, 0, 0, 0, 738, 739, 5, 47, 0, 0, 739, 740, 5, 47, 0, 0, 740, 744, 1, 0, 0, 0, 741, 743, 8, 22, 0, 0, 742, 741, 1, 0, 0, 0, 743, 746, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 748, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 747, 749, 5, 13, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 751, 1, 0, 0, 0, 750, 752, 5, 10, 0, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 6, 26, 12, 0, 754, 70, 1, 0, 0, 0, 755, 756, 5, 47, 0, 0, 756, 757, 5, 42, 0, 0, 757, 762, 1, 0, 0, 0, 758, 761, 3, 71, 27, 0, 759, 761, 9, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 759, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 765, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 766, 5, 42, 0, 0, 766, 767, 5, 47, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 6, 27, 12, 0, 769, 72, 1, 0, 0, 0, 770, 772, 7, 23, 0, 0, 771, 770, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 6, 28, 12, 0, 776, 74, 1, 0, 0, 0, 777, 778, 5, 124, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 29, 13, 0, 780, 76, 1, 0, 0, 0, 781, 782, 7, 24, 0, 0, 782, 78, 1, 0, 0, 0, 783, 784, 7, 25, 0, 0, 784, 80, 1, 0, 0, 0, 785, 786, 5, 92, 0, 0, 786, 787, 7, 26, 0, 0, 787, 82, 1, 0, 0, 0, 788, 789, 8, 27, 0, 0, 789, 84, 1, 0, 0, 0, 790, 792, 7, 3, 0, 0, 791, 793, 7, 28, 0, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 796, 3, 77, 30, 0, 795, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 86, 1, 0, 0, 0, 799, 800, 5, 64, 0, 0, 800, 88, 1, 0, 0, 0, 801, 802, 5, 96, 0, 0, 802, 90, 1, 0, 0, 0, 803, 807, 8, 29, 0, 0, 804, 805, 5, 96, 0, 0, 805, 807, 5, 96, 0, 0, 806, 803, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 92, 1, 0, 0, 0, 808, 809, 5, 95, 0, 0, 809, 94, 1, 0, 0, 0, 810, 814, 3, 79, 31, 0, 811, 814, 3, 77, 30, 0, 812, 814, 3, 93, 38, 0, 813, 810, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 813, 812, 1, 0, 0, 0, 814, 96, 1, 0, 0, 0, 815, 820, 5, 34, 0, 0, 816, 819, 3, 81, 32, 0, 817, 819, 3, 83, 33, 0, 818, 816, 1, 0, 0, 0, 818, 817, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 845, 5, 34, 0, 0, 824, 825, 5, 34, 0, 0, 825, 826, 5, 34, 0, 0, 826, 827, 5, 34, 0, 0, 827, 831, 1, 0, 0, 0, 828, 830, 8, 22, 0, 0, 829, 828, 1, 0, 0, 0, 830, 833, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 835, 5, 34, 0, 0, 835, 836, 5, 34, 0, 0, 836, 837, 5, 34, 0, 0, 837, 839, 1, 0, 0, 0, 838, 840, 5, 34, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 34, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 815, 1, 0, 0, 0, 844, 824, 1, 0, 0, 0, 845, 98, 1, 0, 0, 0, 846, 848, 3, 77, 30, 0, 847, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 100, 1, 0, 0, 0, 851, 853, 3, 77, 30, 0, 852, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 860, 3, 121, 52, 0, 857, 859, 3, 77, 30, 0, 858, 857, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 894, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 865, 3, 121, 52, 0, 864, 866, 3, 77, 30, 0, 865, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 894, 1, 0, 0, 0, 869, 871, 3, 77, 30, 0, 870, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 881, 1, 0, 0, 0, 874, 878, 3, 121, 52, 0, 875, 877, 3, 77, 30, 0, 876, 875, 1, 0, 0, 0, 877, 880, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 882, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 881, 874, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 3, 85, 34, 0, 884, 894, 1, 0, 0, 0, 885, 887, 3, 121, 52, 0, 886, 888, 3, 77, 30, 0, 887, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 3, 85, 34, 0, 892, 894, 1, 0, 0, 0, 893, 852, 1, 0, 0, 0, 893, 863, 1, 0, 0, 0, 893, 870, 1, 0, 0, 0, 893, 885, 1, 0, 0, 0, 894, 102, 1, 0, 0, 0, 895, 896, 7, 12, 0, 0, 896, 897, 7, 9, 0, 0, 897, 898, 7, 0, 0, 0, 898, 104, 1, 0, 0, 0, 899, 900, 7, 12, 0, 0, 900, 901, 7, 2, 0, 0, 901, 106, 1, 0, 0, 0, 902, 903, 7, 12, 0, 0, 903, 904, 7, 2, 0, 0, 904, 905, 7, 4, 0, 0, 905, 108, 1, 0, 0, 0, 906, 907, 5, 61, 0, 0, 907, 110, 1, 0, 0, 0, 908, 909, 7, 30, 0, 0, 909, 910, 7, 31, 0, 0, 910, 112, 1, 0, 0, 0, 911, 912, 5, 58, 0, 0, 912, 913, 5, 58, 0, 0, 913, 114, 1, 0, 0, 0, 914, 915, 5, 58, 0, 0, 915, 116, 1, 0, 0, 0, 916, 917, 5, 44, 0, 0, 917, 118, 1, 0, 0, 0, 918, 919, 7, 0, 0, 0, 919, 920, 7, 3, 0, 0, 920, 921, 7, 2, 0, 0, 921, 922, 7, 4, 0, 0, 922, 120, 1, 0, 0, 0, 923, 924, 5, 46, 0, 0, 924, 122, 1, 0, 0, 0, 925, 926, 7, 15, 0, 0, 926, 927, 7, 12, 0, 0, 927, 928, 7, 13, 0, 0, 928, 929, 7, 2, 0, 0, 929, 930, 7, 3, 0, 0, 930, 124, 1, 0, 0, 0, 931, 932, 7, 15, 0, 0, 932, 933, 7, 1, 0, 0, 933, 934, 7, 6, 0, 0, 934, 935, 7, 2, 0, 0, 935, 936, 7, 5, 0, 0, 936, 126, 1, 0, 0, 0, 937, 938, 7, 1, 0, 0, 938, 939, 7, 9, 0, 0, 939, 128, 1, 0, 0, 0, 940, 941, 7, 1, 0, 0, 941, 942, 7, 2, 0, 0, 942, 130, 1, 0, 0, 0, 943, 944, 7, 13, 0, 0, 944, 945, 7, 12, 0, 0, 945, 946, 7, 2, 0, 0, 946, 947, 7, 5, 0, 0, 947, 132, 1, 0, 0, 0, 948, 949, 7, 13, 0, 0, 949, 950, 7, 1, 0, 0, 950, 951, 7, 18, 0, 0, 951, 952, 7, 3, 0, 0, 952, 134, 1, 0, 0, 0, 953, 954, 5, 40, 0, 0, 954, 136, 1, 0, 0, 0, 955, 956, 7, 9, 0, 0, 956, 957, 7, 7, 0, 0, 957, 958, 7, 5, 0, 0, 958, 138, 1, 0, 0, 0, 959, 960, 7, 9, 0, 0, 960, 961, 7, 20, 0, 0, 961, 962, 7, 13, 0, 0, 962, 963, 7, 13, 0, 0, 963, 140, 1, 0, 0, 0, 964, 965, 7, 9, 0, 0, 965, 966, 7, 20, 0, 0, 966, 967, 7, 13, 0, 0, 967, 968, 7, 13, 0, 0, 968, 969, 7, 2, 0, 0, 969, 142, 1, 0, 0, 0, 970, 971, 7, 7, 0, 0, 971, 972, 7, 9, 0, 0, 972, 144, 1, 0, 0, 0, 973, 974, 7, 7, 0, 0, 974, 975, 7, 6, 0, 0, 975, 146, 1, 0, 0, 0, 976, 977, 5, 63, 0, 0, 977, 148, 1, 0, 0, 0, 978, 979, 7, 6, 0, 0, 979, 980, 7, 13, 0, 0, 980, 981, 7, 1, 0, 0, 981, 982, 7, 18, 0, 0, 982, 983, 7, 3, 0, 0, 983, 150, 1, 0, 0, 0, 984, 985, 5, 41, 0, 0, 985, 152, 1, 0, 0, 0, 986, 987, 7, 5, 0, 0, 987, 988, 7, 6, 0, 0, 988, 989, 7, 20, 0, 0, 989, 990, 7, 3, 0, 0, 990, 154, 1, 0, 0, 0, 991, 992, 7, 19, 0, 0, 992, 993, 7, 1, 0, 0, 993, 994, 7, 5, 0, 0, 994, 995, 7, 10, 0, 0, 995, 156, 1, 0, 0, 0, 996, 997, 5, 61, 0, 0, 997, 998, 5, 61, 0, 0, 998, 158, 1, 0, 0, 0, 999, 1000, 5, 61, 0, 0, 1000, 1001, 5, 126, 0, 0, 1001, 160, 1, 0, 0, 0, 1002, 1003, 5, 33, 0, 0, 1003, 1004, 5, 61, 0, 0, 1004, 162, 1, 0, 0, 0, 1005, 1006, 5, 60, 0, 0, 1006, 164, 1, 0, 0, 0, 1007, 1008, 5, 60, 0, 0, 1008, 1009, 5, 61, 0, 0, 1009, 166, 1, 0, 0, 0, 1010, 1011, 5, 62, 0, 0, 1011, 168, 1, 0, 0, 0, 1012, 1013, 5, 62, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 170, 1, 0, 0, 0, 1015, 1016, 5, 43, 0, 0, 1016, 172, 1, 0, 0, 0, 1017, 1018, 5, 45, 0, 0, 1018, 174, 1, 0, 0, 0, 1019, 1020, 5, 42, 0, 0, 1020, 176, 1, 0, 0, 0, 1021, 1022, 5, 47, 0, 0, 1022, 178, 1, 0, 0, 0, 1023, 1024, 5, 37, 0, 0, 1024, 180, 1, 0, 0, 0, 1025, 1026, 5, 123, 0, 0, 1026, 182, 1, 0, 0, 0, 1027, 1028, 5, 125, 0, 0, 1028, 184, 1, 0, 0, 0, 1029, 1030, 5, 63, 0, 0, 1030, 1031, 5, 63, 0, 0, 1031, 186, 1, 0, 0, 0, 1032, 1033, 3, 47, 15, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 85, 14, 0, 1035, 188, 1, 0, 0, 0, 1036, 1039, 3, 147, 65, 0, 1037, 1040, 3, 79, 31, 0, 1038, 1040, 3, 93, 38, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1044, 1, 0, 0, 0, 1041, 1043, 3, 95, 39, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1054, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1049, 3, 147, 65, 0, 1048, 1050, 3, 77, 30, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1054, 1, 0, 0, 0, 1053, 1036, 1, 0, 0, 0, 1053, 1047, 1, 0, 0, 0, 1054, 190, 1, 0, 0, 0, 1055, 1058, 3, 185, 84, 0, 1056, 1059, 3, 79, 31, 0, 1057, 1059, 3, 93, 38, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1057, 1, 0, 0, 0, 1059, 1063, 1, 0, 0, 0, 1060, 1062, 3, 95, 39, 0, 1061, 1060, 1, 0, 0, 0, 1062, 1065, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1073, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1068, 3, 185, 84, 0, 1067, 1069, 3, 77, 30, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 1055, 1, 0, 0, 0, 1072, 1066, 1, 0, 0, 0, 1073, 192, 1, 0, 0, 0, 1074, 1075, 5, 91, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 6, 88, 0, 0, 1077, 1078, 6, 88, 0, 0, 1078, 194, 1, 0, 0, 0, 1079, 1080, 5, 93, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 89, 13, 0, 1082, 1083, 6, 89, 13, 0, 1083, 196, 1, 0, 0, 0, 1084, 1088, 3, 79, 31, 0, 1085, 1087, 3, 95, 39, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1101, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1094, 3, 93, 38, 0, 1092, 1094, 3, 87, 35, 0, 1093, 1091, 1, 0, 0, 0, 1093, 1092, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 3, 95, 39, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1084, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 198, 1, 0, 0, 0, 1102, 1104, 3, 89, 36, 0, 1103, 1105, 3, 91, 37, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 89, 36, 0, 1109, 200, 1, 0, 0, 0, 1110, 1111, 3, 199, 91, 0, 1111, 202, 1, 0, 0, 0, 1112, 1113, 3, 69, 26, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, 6, 93, 12, 0, 1115, 204, 1, 0, 0, 0, 1116, 1117, 3, 71, 27, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 6, 94, 12, 0, 1119, 206, 1, 0, 0, 0, 1120, 1121, 3, 73, 28, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 6, 95, 12, 0, 1123, 208, 1, 0, 0, 0, 1124, 1125, 3, 193, 88, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 6, 96, 15, 0, 1127, 1128, 6, 96, 16, 0, 1128, 210, 1, 0, 0, 0, 1129, 1130, 3, 75, 29, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 6, 97, 17, 0, 1132, 1133, 6, 97, 13, 0, 1133, 212, 1, 0, 0, 0, 1134, 1135, 3, 73, 28, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 6, 98, 12, 0, 1137, 214, 1, 0, 0, 0, 1138, 1139, 3, 69, 26, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 6, 99, 12, 0, 1141, 216, 1, 0, 0, 0, 1142, 1143, 3, 71, 27, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 6, 100, 12, 0, 1145, 218, 1, 0, 0, 0, 1146, 1147, 3, 75, 29, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 6, 101, 17, 0, 1149, 1150, 6, 101, 13, 0, 1150, 220, 1, 0, 0, 0, 1151, 1152, 3, 193, 88, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 6, 102, 15, 0, 1154, 222, 1, 0, 0, 0, 1155, 1156, 3, 195, 89, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 103, 18, 0, 1158, 224, 1, 0, 0, 0, 1159, 1160, 3, 115, 49, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 6, 104, 19, 0, 1162, 226, 1, 0, 0, 0, 1163, 1164, 3, 113, 48, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 6, 105, 20, 0, 1166, 228, 1, 0, 0, 0, 1167, 1168, 3, 117, 50, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 6, 106, 21, 0, 1170, 230, 1, 0, 0, 0, 1171, 1172, 3, 109, 46, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 6, 107, 22, 0, 1174, 232, 1, 0, 0, 0, 1175, 1176, 7, 16, 0, 0, 1176, 1177, 7, 3, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 12, 0, 0, 1179, 1180, 7, 0, 0, 0, 1180, 1181, 7, 12, 0, 0, 1181, 1182, 7, 5, 0, 0, 1182, 1183, 7, 12, 0, 0, 1183, 234, 1, 0, 0, 0, 1184, 1188, 8, 32, 0, 0, 1185, 1186, 5, 47, 0, 0, 1186, 1188, 8, 33, 0, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 236, 1, 0, 0, 0, 1189, 1191, 3, 235, 109, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 238, 1, 0, 0, 0, 1194, 1195, 3, 237, 110, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 6, 111, 23, 0, 1197, 240, 1, 0, 0, 0, 1198, 1199, 3, 97, 40, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 6, 112, 24, 0, 1201, 242, 1, 0, 0, 0, 1202, 1203, 3, 69, 26, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 6, 113, 12, 0, 1205, 244, 1, 0, 0, 0, 1206, 1207, 3, 71, 27, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1209, 6, 114, 12, 0, 1209, 246, 1, 0, 0, 0, 1210, 1211, 3, 73, 28, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 6, 115, 12, 0, 1213, 248, 1, 0, 0, 0, 1214, 1215, 3, 75, 29, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 6, 116, 17, 0, 1217, 1218, 6, 116, 13, 0, 1218, 250, 1, 0, 0, 0, 1219, 1220, 3, 121, 52, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 6, 117, 25, 0, 1222, 252, 1, 0, 0, 0, 1223, 1224, 3, 117, 50, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 6, 118, 21, 0, 1226, 254, 1, 0, 0, 0, 1227, 1228, 3, 147, 65, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 6, 119, 26, 0, 1230, 256, 1, 0, 0, 0, 1231, 1232, 3, 189, 86, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 6, 120, 27, 0, 1234, 258, 1, 0, 0, 0, 1235, 1236, 3, 185, 84, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 6, 121, 28, 0, 1238, 260, 1, 0, 0, 0, 1239, 1240, 3, 191, 87, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 6, 122, 29, 0, 1242, 262, 1, 0, 0, 0, 1243, 1248, 3, 79, 31, 0, 1244, 1248, 3, 77, 30, 0, 1245, 1248, 3, 93, 38, 0, 1246, 1248, 3, 175, 79, 0, 1247, 1243, 1, 0, 0, 0, 1247, 1244, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1247, 1246, 1, 0, 0, 0, 1248, 264, 1, 0, 0, 0, 1249, 1252, 3, 79, 31, 0, 1250, 1252, 3, 175, 79, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1256, 1, 0, 0, 0, 1253, 1255, 3, 263, 123, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1258, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1269, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1262, 3, 93, 38, 0, 1260, 1262, 3, 87, 35, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1265, 3, 263, 123, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1251, 1, 0, 0, 0, 1268, 1261, 1, 0, 0, 0, 1269, 266, 1, 0, 0, 0, 1270, 1273, 3, 265, 124, 0, 1271, 1273, 3, 199, 91, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 268, 1, 0, 0, 0, 1276, 1277, 3, 69, 26, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 6, 126, 12, 0, 1279, 270, 1, 0, 0, 0, 1280, 1281, 3, 71, 27, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 6, 127, 12, 0, 1283, 272, 1, 0, 0, 0, 1284, 1285, 3, 73, 28, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 6, 128, 12, 0, 1287, 274, 1, 0, 0, 0, 1288, 1289, 3, 75, 29, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 6, 129, 17, 0, 1291, 1292, 6, 129, 13, 0, 1292, 276, 1, 0, 0, 0, 1293, 1294, 3, 109, 46, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 6, 130, 22, 0, 1296, 278, 1, 0, 0, 0, 1297, 1298, 3, 117, 50, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 131, 21, 0, 1300, 280, 1, 0, 0, 0, 1301, 1302, 3, 121, 52, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 6, 132, 25, 0, 1304, 282, 1, 0, 0, 0, 1305, 1306, 3, 147, 65, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 6, 133, 26, 0, 1308, 284, 1, 0, 0, 0, 1309, 1310, 3, 189, 86, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 6, 134, 27, 0, 1312, 286, 1, 0, 0, 0, 1313, 1314, 3, 185, 84, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 6, 135, 28, 0, 1316, 288, 1, 0, 0, 0, 1317, 1318, 3, 191, 87, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 6, 136, 29, 0, 1320, 290, 1, 0, 0, 0, 1321, 1322, 3, 105, 44, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 6, 137, 30, 0, 1324, 292, 1, 0, 0, 0, 1325, 1326, 3, 267, 125, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 6, 138, 31, 0, 1328, 294, 1, 0, 0, 0, 1329, 1330, 3, 69, 26, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 6, 139, 12, 0, 1332, 296, 1, 0, 0, 0, 1333, 1334, 3, 71, 27, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 6, 140, 12, 0, 1336, 298, 1, 0, 0, 0, 1337, 1338, 3, 73, 28, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 6, 141, 12, 0, 1340, 300, 1, 0, 0, 0, 1341, 1342, 3, 75, 29, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 6, 142, 17, 0, 1344, 1345, 6, 142, 13, 0, 1345, 302, 1, 0, 0, 0, 1346, 1347, 3, 193, 88, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 143, 15, 0, 1349, 1350, 6, 143, 32, 0, 1350, 304, 1, 0, 0, 0, 1351, 1352, 3, 143, 63, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 6, 144, 33, 0, 1354, 1355, 6, 144, 34, 0, 1355, 306, 1, 0, 0, 0, 1356, 1357, 3, 155, 69, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 6, 145, 35, 0, 1359, 1360, 6, 145, 34, 0, 1360, 308, 1, 0, 0, 0, 1361, 1362, 8, 34, 0, 0, 1362, 310, 1, 0, 0, 0, 1363, 1365, 3, 309, 146, 0, 1364, 1363, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 3, 115, 49, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1364, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1374, 3, 309, 146, 0, 1373, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 312, 1, 0, 0, 0, 1377, 1378, 3, 311, 147, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 6, 148, 36, 0, 1380, 314, 1, 0, 0, 0, 1381, 1382, 3, 69, 26, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 6, 149, 12, 0, 1384, 316, 1, 0, 0, 0, 1385, 1386, 3, 71, 27, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 6, 150, 12, 0, 1388, 318, 1, 0, 0, 0, 1389, 1390, 3, 73, 28, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 6, 151, 12, 0, 1392, 320, 1, 0, 0, 0, 1393, 1394, 3, 75, 29, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 6, 152, 17, 0, 1396, 1397, 6, 152, 13, 0, 1397, 1398, 6, 152, 13, 0, 1398, 322, 1, 0, 0, 0, 1399, 1400, 3, 109, 46, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 6, 153, 22, 0, 1402, 324, 1, 0, 0, 0, 1403, 1404, 3, 117, 50, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 6, 154, 21, 0, 1406, 326, 1, 0, 0, 0, 1407, 1408, 3, 121, 52, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1410, 6, 155, 25, 0, 1410, 328, 1, 0, 0, 0, 1411, 1412, 3, 155, 69, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 6, 156, 35, 0, 1414, 330, 1, 0, 0, 0, 1415, 1416, 3, 267, 125, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 6, 157, 31, 0, 1418, 332, 1, 0, 0, 0, 1419, 1420, 3, 201, 92, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 6, 158, 37, 0, 1422, 334, 1, 0, 0, 0, 1423, 1424, 3, 147, 65, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 6, 159, 26, 0, 1426, 336, 1, 0, 0, 0, 1427, 1428, 3, 189, 86, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 6, 160, 27, 0, 1430, 338, 1, 0, 0, 0, 1431, 1432, 3, 185, 84, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 6, 161, 28, 0, 1434, 340, 1, 0, 0, 0, 1435, 1436, 3, 191, 87, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 162, 29, 0, 1438, 342, 1, 0, 0, 0, 1439, 1440, 3, 69, 26, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 6, 163, 12, 0, 1442, 344, 1, 0, 0, 0, 1443, 1444, 3, 71, 27, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 6, 164, 12, 0, 1446, 346, 1, 0, 0, 0, 1447, 1448, 3, 73, 28, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 6, 165, 12, 0, 1450, 348, 1, 0, 0, 0, 1451, 1452, 3, 75, 29, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 6, 166, 17, 0, 1454, 1455, 6, 166, 13, 0, 1455, 350, 1, 0, 0, 0, 1456, 1457, 3, 121, 52, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 167, 25, 0, 1459, 352, 1, 0, 0, 0, 1460, 1461, 3, 147, 65, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 168, 26, 0, 1463, 354, 1, 0, 0, 0, 1464, 1465, 3, 189, 86, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 6, 169, 27, 0, 1467, 356, 1, 0, 0, 0, 1468, 1469, 3, 185, 84, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 6, 170, 28, 0, 1471, 358, 1, 0, 0, 0, 1472, 1473, 3, 191, 87, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 6, 171, 29, 0, 1475, 360, 1, 0, 0, 0, 1476, 1477, 3, 201, 92, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 6, 172, 37, 0, 1479, 362, 1, 0, 0, 0, 1480, 1481, 3, 197, 90, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 6, 173, 38, 0, 1483, 364, 1, 0, 0, 0, 1484, 1485, 3, 69, 26, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 6, 174, 12, 0, 1487, 366, 1, 0, 0, 0, 1488, 1489, 3, 71, 27, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 6, 175, 12, 0, 1491, 368, 1, 0, 0, 0, 1492, 1493, 3, 73, 28, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 6, 176, 12, 0, 1495, 370, 1, 0, 0, 0, 1496, 1497, 3, 75, 29, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 6, 177, 17, 0, 1499, 1500, 6, 177, 13, 0, 1500, 372, 1, 0, 0, 0, 1501, 1502, 7, 1, 0, 0, 1502, 1503, 7, 9, 0, 0, 1503, 1504, 7, 15, 0, 0, 1504, 1505, 7, 7, 0, 0, 1505, 374, 1, 0, 0, 0, 1506, 1507, 3, 69, 26, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 179, 12, 0, 1509, 376, 1, 0, 0, 0, 1510, 1511, 3, 71, 27, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 6, 180, 12, 0, 1513, 378, 1, 0, 0, 0, 1514, 1515, 3, 73, 28, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 6, 181, 12, 0, 1517, 380, 1, 0, 0, 0, 1518, 1519, 3, 195, 89, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 6, 182, 18, 0, 1521, 1522, 6, 182, 13, 0, 1522, 382, 1, 0, 0, 0, 1523, 1524, 3, 115, 49, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 183, 19, 0, 1526, 384, 1, 0, 0, 0, 1527, 1533, 3, 87, 35, 0, 1528, 1533, 3, 77, 30, 0, 1529, 1533, 3, 121, 52, 0, 1530, 1533, 3, 79, 31, 0, 1531, 1533, 3, 93, 38, 0, 1532, 1527, 1, 0, 0, 0, 1532, 1528, 1, 0, 0, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 386, 1, 0, 0, 0, 1536, 1537, 3, 69, 26, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 6, 185, 12, 0, 1539, 388, 1, 0, 0, 0, 1540, 1541, 3, 71, 27, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 6, 186, 12, 0, 1543, 390, 1, 0, 0, 0, 1544, 1545, 3, 73, 28, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 6, 187, 12, 0, 1547, 392, 1, 0, 0, 0, 1548, 1549, 3, 75, 29, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 6, 188, 17, 0, 1551, 1552, 6, 188, 13, 0, 1552, 394, 1, 0, 0, 0, 1553, 1554, 3, 115, 49, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 189, 19, 0, 1556, 396, 1, 0, 0, 0, 1557, 1558, 3, 117, 50, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 190, 21, 0, 1560, 398, 1, 0, 0, 0, 1561, 1562, 3, 121, 52, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 6, 191, 25, 0, 1564, 400, 1, 0, 0, 0, 1565, 1566, 3, 143, 63, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 6, 192, 33, 0, 1568, 1569, 6, 192, 39, 0, 1569, 402, 1, 0, 0, 0, 1570, 1571, 3, 237, 110, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 6, 193, 23, 0, 1573, 404, 1, 0, 0, 0, 1574, 1575, 3, 97, 40, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 6, 194, 24, 0, 1577, 406, 1, 0, 0, 0, 1578, 1579, 3, 69, 26, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 6, 195, 12, 0, 1581, 408, 1, 0, 0, 0, 1582, 1583, 3, 71, 27, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 196, 12, 0, 1585, 410, 1, 0, 0, 0, 1586, 1587, 3, 73, 28, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 197, 12, 0, 1589, 412, 1, 0, 0, 0, 1590, 1591, 3, 75, 29, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 198, 17, 0, 1593, 1594, 6, 198, 13, 0, 1594, 1595, 6, 198, 13, 0, 1595, 414, 1, 0, 0, 0, 1596, 1597, 3, 117, 50, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 6, 199, 21, 0, 1599, 416, 1, 0, 0, 0, 1600, 1601, 3, 121, 52, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 6, 200, 25, 0, 1603, 418, 1, 0, 0, 0, 1604, 1605, 3, 267, 125, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 6, 201, 31, 0, 1607, 420, 1, 0, 0, 0, 1608, 1609, 3, 69, 26, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 6, 202, 12, 0, 1611, 422, 1, 0, 0, 0, 1612, 1613, 3, 71, 27, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 6, 203, 12, 0, 1615, 424, 1, 0, 0, 0, 1616, 1617, 3, 73, 28, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 6, 204, 12, 0, 1619, 426, 1, 0, 0, 0, 1620, 1621, 3, 75, 29, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 6, 205, 17, 0, 1623, 1624, 6, 205, 13, 0, 1624, 428, 1, 0, 0, 0, 1625, 1626, 7, 35, 0, 0, 1626, 1627, 7, 7, 0, 0, 1627, 1628, 7, 1, 0, 0, 1628, 1629, 7, 9, 0, 0, 1629, 430, 1, 0, 0, 0, 1630, 1631, 3, 105, 44, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 6, 207, 30, 0, 1633, 432, 1, 0, 0, 0, 1634, 1635, 3, 143, 63, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 6, 208, 33, 0, 1637, 1638, 6, 208, 13, 0, 1638, 1639, 6, 208, 0, 0, 1639, 434, 1, 0, 0, 0, 1640, 1641, 7, 20, 0, 0, 1641, 1642, 7, 2, 0, 0, 1642, 1643, 7, 1, 0, 0, 1643, 1644, 7, 9, 0, 0, 1644, 1645, 7, 17, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 6, 209, 13, 0, 1647, 1648, 6, 209, 0, 0, 1648, 436, 1, 0, 0, 0, 1649, 1650, 3, 237, 110, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 6, 210, 23, 0, 1652, 438, 1, 0, 0, 0, 1653, 1654, 3, 97, 40, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 6, 211, 24, 0, 1656, 440, 1, 0, 0, 0, 1657, 1658, 3, 115, 49, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1660, 6, 212, 19, 0, 1660, 442, 1, 0, 0, 0, 1661, 1662, 3, 197, 90, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 6, 213, 38, 0, 1664, 444, 1, 0, 0, 0, 1665, 1666, 3, 201, 92, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 6, 214, 37, 0, 1668, 446, 1, 0, 0, 0, 1669, 1670, 3, 69, 26, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 6, 215, 12, 0, 1672, 448, 1, 0, 0, 0, 1673, 1674, 3, 71, 27, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 6, 216, 12, 0, 1676, 450, 1, 0, 0, 0, 1677, 1678, 3, 73, 28, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 6, 217, 12, 0, 1680, 452, 1, 0, 0, 0, 1681, 1682, 3, 75, 29, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 6, 218, 17, 0, 1684, 1685, 6, 218, 13, 0, 1685, 454, 1, 0, 0, 0, 1686, 1687, 3, 237, 110, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 219, 23, 0, 1689, 1690, 6, 219, 13, 0, 1690, 1691, 6, 219, 40, 0, 1691, 456, 1, 0, 0, 0, 1692, 1693, 3, 97, 40, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 6, 220, 24, 0, 1695, 1696, 6, 220, 13, 0, 1696, 1697, 6, 220, 40, 0, 1697, 458, 1, 0, 0, 0, 1698, 1699, 3, 69, 26, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 221, 12, 0, 1701, 460, 1, 0, 0, 0, 1702, 1703, 3, 71, 27, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 222, 12, 0, 1705, 462, 1, 0, 0, 0, 1706, 1707, 3, 73, 28, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 6, 223, 12, 0, 1709, 464, 1, 0, 0, 0, 1710, 1711, 3, 115, 49, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 6, 224, 19, 0, 1713, 1714, 6, 224, 13, 0, 1714, 1715, 6, 224, 11, 0, 1715, 466, 1, 0, 0, 0, 1716, 1717, 3, 113, 48, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 6, 225, 20, 0, 1719, 1720, 6, 225, 13, 0, 1720, 1721, 6, 225, 11, 0, 1721, 468, 1, 0, 0, 0, 1722, 1723, 3, 117, 50, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 6, 226, 21, 0, 1725, 1726, 6, 226, 13, 0, 1726, 1727, 6, 226, 11, 0, 1727, 470, 1, 0, 0, 0, 1728, 1729, 3, 69, 26, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 6, 227, 12, 0, 1731, 472, 1, 0, 0, 0, 1732, 1733, 3, 71, 27, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 6, 228, 12, 0, 1735, 474, 1, 0, 0, 0, 1736, 1737, 3, 73, 28, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 6, 229, 12, 0, 1739, 476, 1, 0, 0, 0, 1740, 1741, 3, 201, 92, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 6, 230, 13, 0, 1743, 1744, 6, 230, 0, 0, 1744, 1745, 6, 230, 37, 0, 1745, 478, 1, 0, 0, 0, 1746, 1747, 3, 197, 90, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 6, 231, 13, 0, 1749, 1750, 6, 231, 0, 0, 1750, 1751, 6, 231, 38, 0, 1751, 480, 1, 0, 0, 0, 1752, 1753, 3, 111, 47, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 6, 232, 13, 0, 1755, 1756, 6, 232, 0, 0, 1756, 1757, 6, 232, 41, 0, 1757, 482, 1, 0, 0, 0, 1758, 1759, 3, 75, 29, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 6, 233, 17, 0, 1761, 1762, 6, 233, 13, 0, 1762, 484, 1, 0, 0, 0, 1763, 1764, 3, 75, 29, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 234, 17, 0, 1766, 1767, 6, 234, 13, 0, 1767, 486, 1, 0, 0, 0, 1768, 1769, 3, 143, 63, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 6, 235, 33, 0, 1771, 488, 1, 0, 0, 0, 1772, 1773, 3, 105, 44, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 236, 30, 0, 1775, 490, 1, 0, 0, 0, 1776, 1777, 3, 121, 52, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 6, 237, 25, 0, 1779, 492, 1, 0, 0, 0, 1780, 1781, 3, 117, 50, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 6, 238, 21, 0, 1783, 494, 1, 0, 0, 0, 1784, 1785, 3, 201, 92, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 6, 239, 37, 0, 1787, 496, 1, 0, 0, 0, 1788, 1789, 3, 197, 90, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 6, 240, 38, 0, 1791, 498, 1, 0, 0, 0, 1792, 1793, 3, 69, 26, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 6, 241, 12, 0, 1795, 500, 1, 0, 0, 0, 1796, 1797, 3, 71, 27, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 6, 242, 12, 0, 1799, 502, 1, 0, 0, 0, 1800, 1801, 3, 73, 28, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 6, 243, 12, 0, 1803, 504, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 734, 744, 748, 751, 760, 762, 773, 792, 797, 806, 813, 818, 820, 831, 839, 842, 844, 849, 854, 860, 867, 872, 878, 881, 889, 893, 1039, 1044, 1051, 1053, 1058, 1063, 1070, 1072, 1088, 1093, 1098, 1100, 1106, 1187, 1192, 1247, 1251, 1256, 1261, 1266, 1268, 1272, 1274, 1366, 1370, 1375, 1532, 1534, 42, 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, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 78, 0, 5, 0, 0, 7, 30, 0, 7, 79, 0, 7, 40, 0, 7, 39, 0, 7, 41, 0, 7, 37, 0, 7, 89, 0, 7, 31, 0, 7, 43, 0, 7, 56, 0, 7, 76, 0, 7, 75, 0, 7, 77, 0, 7, 35, 0, 7, 93, 0, 5, 10, 0, 7, 54, 0, 5, 7, 0, 7, 60, 0, 7, 100, 0, 7, 81, 0, 7, 80, 0, 5, 12, 0, 5, 15, 0, 7, 38, 0]
\ No newline at end of file
diff --git a/x-pack/plugin/esql/gen/EsqlBaseLexer.java b/x-pack/plugin/esql/gen/EsqlBaseLexer.java
new file mode 100644
index 0000000000000..01270eb3b37de
--- /dev/null
+++ b/x-pack/plugin/esql/gen/EsqlBaseLexer.java
@@ -0,0 +1,1501 @@
+// Generated from /Users/afoucret/git/elasticsearch/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 by ANTLR 4.13.2
+
+/*
+ * 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.
+ */
+
+import org.antlr.v4.runtime.Lexer;
+import org.antlr.v4.runtime.CharStream;
+import org.antlr.v4.runtime.Token;
+import org.antlr.v4.runtime.TokenStream;
+import org.antlr.v4.runtime.*;
+import org.antlr.v4.runtime.atn.*;
+import org.antlr.v4.runtime.dfa.DFA;
+import org.antlr.v4.runtime.misc.*;
+
+@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast", "CheckReturnValue", "this-escape"})
+public class EsqlBaseLexer extends LexerConfig {
+ static { RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); }
+
+ protected static final DFA[] _decisionToDFA;
+ protected static final PredictionContextCache _sharedContextCache =
+ new PredictionContextCache();
+ public static final int
+ DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8,
+ LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15,
+ WHERE=16, JOIN_LOOKUP=17, CHANGE_POINT=18, DEV_INLINESTATS=19, DEV_LOOKUP=20,
+ DEV_METRICS=21, DEV_RERANK=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24, DEV_JOIN_RIGHT=25,
+ UNKNOWN_CMD=26, LINE_COMMENT=27, MULTILINE_COMMENT=28, WS=29, PIPE=30,
+ QUOTED_STRING=31, INTEGER_LITERAL=32, DECIMAL_LITERAL=33, AND=34, AS=35,
+ ASC=36, ASSIGN=37, BY=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, ON=54, OR=55, PARAM=56, RLIKE=57, RP=58, TRUE=59, WITH=60, EQ=61,
+ CIEQ=62, NEQ=63, LT=64, LTE=65, GT=66, GTE=67, PLUS=68, MINUS=69, ASTERISK=70,
+ SLASH=71, PERCENT=72, LEFT_BRACES=73, RIGHT_BRACES=74, DOUBLE_PARAMS=75,
+ NAMED_OR_POSITIONAL_PARAM=76, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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;
+ public static final int
+ EXPRESSION_MODE=1, EXPLAIN_MODE=2, FROM_MODE=3, PROJECT_MODE=4, RENAME_MODE=5,
+ ENRICH_MODE=6, ENRICH_FIELD_MODE=7, MVEXPAND_MODE=8, SHOW_MODE=9, SETTING_MODE=10,
+ LOOKUP_MODE=11, LOOKUP_FIELD_MODE=12, JOIN_MODE=13, METRICS_MODE=14, CLOSING_METRICS_MODE=15,
+ CHANGE_POINT_MODE=16;
+ public static String[] channelNames = {
+ "DEFAULT_TOKEN_CHANNEL", "HIDDEN"
+ };
+
+ public static String[] modeNames = {
+ "DEFAULT_MODE", "EXPRESSION_MODE", "EXPLAIN_MODE", "FROM_MODE", "PROJECT_MODE",
+ "RENAME_MODE", "ENRICH_MODE", "ENRICH_FIELD_MODE", "MVEXPAND_MODE", "SHOW_MODE",
+ "SETTING_MODE", "LOOKUP_MODE", "LOOKUP_FIELD_MODE", "JOIN_MODE", "METRICS_MODE",
+ "CLOSING_METRICS_MODE", "CHANGE_POINT_MODE"
+ };
+
+ private static String[] makeRuleNames() {
+ return new String[] {
+ "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP",
+ "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE",
+ "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP", "DEV_METRICS",
+ "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "UNKNOWN_CMD",
+ "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "DIGIT", "LETTER",
+ "ESCAPE_SEQUENCE", "UNESCAPED_CHARS", "EXPONENT", "ASPERAND", "BACKQUOTE",
+ "BACKQUOTE_BLOCK", "UNDERSCORE", "UNQUOTED_ID_BODY", "QUOTED_STRING",
+ "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY",
+ "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS",
+ "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE",
+ "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE",
+ "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES",
+ "DOUBLE_PARAMS", "NESTED_WHERE", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
+ "OPENING_BRACKET", "CLOSING_BRACKET", "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_SELECTOR", "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",
+ "PROJECT_DOUBLE_PARAMS", "PROJECT_NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
+ "UNQUOTED_ID_BODY_WITH_PATTERN", "UNQUOTED_ID_PATTERN", "ID_PATTERN",
+ "PROJECT_LINE_COMMENT", "PROJECT_MULTILINE_COMMENT", "PROJECT_WS", "RENAME_PIPE",
+ "RENAME_ASSIGN", "RENAME_COMMA", "RENAME_DOT", "RENAME_PARAM", "RENAME_NAMED_OR_POSITIONAL_PARAM",
+ "RENAME_DOUBLE_PARAMS", "RENAME_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "RENAME_AS",
+ "RENAME_ID_PATTERN", "RENAME_LINE_COMMENT", "RENAME_MULTILINE_COMMENT",
+ "RENAME_WS", "ENRICH_PIPE", "ENRICH_OPENING_BRACKET", "ENRICH_ON", "ENRICH_WITH",
+ "ENRICH_POLICY_NAME_BODY", "ENRICH_POLICY_NAME", "ENRICH_MODE_UNQUOTED_VALUE",
+ "ENRICH_LINE_COMMENT", "ENRICH_MULTILINE_COMMENT", "ENRICH_WS", "ENRICH_FIELD_PIPE",
+ "ENRICH_FIELD_ASSIGN", "ENRICH_FIELD_COMMA", "ENRICH_FIELD_DOT", "ENRICH_FIELD_WITH",
+ "ENRICH_FIELD_ID_PATTERN", "ENRICH_FIELD_QUOTED_IDENTIFIER", "ENRICH_FIELD_PARAM",
+ "ENRICH_FIELD_NAMED_OR_POSITIONAL_PARAM", "ENRICH_FIELD_DOUBLE_PARAMS",
+ "ENRICH_FIELD_NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "ENRICH_FIELD_LINE_COMMENT",
+ "ENRICH_FIELD_MULTILINE_COMMENT", "ENRICH_FIELD_WS", "MVEXPAND_PIPE",
+ "MVEXPAND_DOT", "MVEXPAND_PARAM", "MVEXPAND_NAMED_OR_POSITIONAL_PARAM",
+ "MVEXPAND_DOUBLE_PARAMS", "MVEXPAND_NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
+ "MVEXPAND_QUOTED_IDENTIFIER", "MVEXPAND_UNQUOTED_IDENTIFIER", "MVEXPAND_LINE_COMMENT",
+ "MVEXPAND_MULTILINE_COMMENT", "MVEXPAND_WS", "SHOW_PIPE", "INFO", "SHOW_LINE_COMMENT",
+ "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING_CLOSING_BRACKET", "SETTING_COLON",
+ "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT", "SETTING_WS",
+ "LOOKUP_PIPE", "LOOKUP_COLON", "LOOKUP_COMMA", "LOOKUP_DOT", "LOOKUP_ON",
+ "LOOKUP_UNQUOTED_SOURCE", "LOOKUP_QUOTED_SOURCE", "LOOKUP_LINE_COMMENT",
+ "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS", "LOOKUP_FIELD_PIPE", "LOOKUP_FIELD_COMMA",
+ "LOOKUP_FIELD_DOT", "LOOKUP_FIELD_ID_PATTERN", "LOOKUP_FIELD_LINE_COMMENT",
+ "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS", "JOIN_PIPE", "JOIN",
+ "JOIN_AS", "JOIN_ON", "USING", "JOIN_UNQUOTED_SOURCE", "JOIN_QUOTED_SOURCE",
+ "JOIN_COLON", "JOIN_UNQUOTED_IDENTIFER", "JOIN_QUOTED_IDENTIFIER", "JOIN_LINE_COMMENT",
+ "JOIN_MULTILINE_COMMENT", "JOIN_WS", "METRICS_PIPE", "METRICS_UNQUOTED_SOURCE",
+ "METRICS_QUOTED_SOURCE", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT",
+ "METRICS_WS", "CLOSING_METRICS_COLON", "CLOSING_METRICS_SELECTOR", "CLOSING_METRICS_COMMA",
+ "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT",
+ "CLOSING_METRICS_WS", "CLOSING_METRICS_QUOTED_IDENTIFIER", "CLOSING_METRICS_UNQUOTED_IDENTIFIER",
+ "CLOSING_METRICS_BY", "CLOSING_METRICS_PIPE", "CHANGE_POINT_PIPE", "CHANGE_POINT_ON",
+ "CHANGE_POINT_AS", "CHANGE_POINT_DOT", "CHANGE_POINT_COMMA", "CHANGE_POINT_QUOTED_IDENTIFIER",
+ "CHANGE_POINT_UNQUOTED_IDENTIFIER", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT",
+ "CHANGE_POINT_WS"
+ };
+ }
+ public static final String[] ruleNames = makeRuleNames();
+
+ private static String[] makeLiteralNames() {
+ return new String[] {
+ null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'",
+ "'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'",
+ "'sort'", "'stats'", "'where'", "'lookup'", "'change_point'", null, null,
+ null, null, null, null, null, null, null, null, null, "'|'", null, null,
+ null, "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
+ "'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'",
+ "'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'",
+ "')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'",
+ "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'{'", "'}'", "'??'", null,
+ null, null, "']'", null, null, null, null, null, null, null, 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();
+ private static String[] makeSymbolicNames() {
+ return new String[] {
+ null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK",
+ "KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS",
+ "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
+ "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT",
+ "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING",
+ "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY",
+ "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS",
+ "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE",
+ "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE",
+ "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES",
+ "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
+ "OPENING_BRACKET", "CLOSING_BRACKET", "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",
+ "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT",
+ "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT",
+ "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT",
+ "LOOKUP_FIELD_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT",
+ "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS",
+ "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT",
+ "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT",
+ "CHANGE_POINT_WS"
+ };
+ }
+ private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
+ public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
+
+ /**
+ * @deprecated Use {@link #VOCABULARY} instead.
+ */
+ @Deprecated
+ public static final String[] tokenNames;
+ static {
+ tokenNames = new String[_SYMBOLIC_NAMES.length];
+ for (int i = 0; i < tokenNames.length; i++) {
+ tokenNames[i] = VOCABULARY.getLiteralName(i);
+ if (tokenNames[i] == null) {
+ tokenNames[i] = VOCABULARY.getSymbolicName(i);
+ }
+
+ if (tokenNames[i] == null) {
+ tokenNames[i] = "";
+ }
+ }
+ }
+
+ @Override
+ @Deprecated
+ public String[] getTokenNames() {
+ return tokenNames;
+ }
+
+ @Override
+
+ public Vocabulary getVocabulary() {
+ return VOCABULARY;
+ }
+
+
+ public EsqlBaseLexer(CharStream input) {
+ super(input);
+ _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache);
+ }
+
+ @Override
+ public String getGrammarFileName() { return "EsqlBaseLexer.g4"; }
+
+ @Override
+ public String[] getRuleNames() { return ruleNames; }
+
+ @Override
+ public String getSerializedATN() { return _serializedATN; }
+
+ @Override
+ public String[] getChannelNames() { return channelNames; }
+
+ @Override
+ public String[] getModeNames() { return modeNames; }
+
+ @Override
+ public ATN getATN() { return _ATN; }
+
+ @Override
+ public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
+ switch (ruleIndex) {
+ case 18:
+ return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex);
+ case 19:
+ return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex);
+ case 20:
+ return DEV_METRICS_sempred((RuleContext)_localctx, predIndex);
+ case 21:
+ return DEV_RERANK_sempred((RuleContext)_localctx, predIndex);
+ case 22:
+ return DEV_JOIN_FULL_sempred((RuleContext)_localctx, predIndex);
+ case 23:
+ return DEV_JOIN_LEFT_sempred((RuleContext)_localctx, predIndex);
+ case 24:
+ return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex);
+ }
+ return true;
+ }
+ private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 0:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 1:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 2:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 3:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 4:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 5:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 6:
+ return this.isDevVersion();
+ }
+ return true;
+ }
+
+ public static final String _serializedATN =
+ "\u0004\u0000\u0089\u070c\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"+
+ "\uffff\u0006\uffff\uffff\u0006\uffff\uffff\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\u0002\f\u0007\f\u0002\r\u0007\r\u0002\u000e\u0007\u000e"+
+ "\u0002\u000f\u0007\u000f\u0002\u0010\u0007\u0010\u0002\u0011\u0007\u0011"+
+ "\u0002\u0012\u0007\u0012\u0002\u0013\u0007\u0013\u0002\u0014\u0007\u0014"+
+ "\u0002\u0015\u0007\u0015\u0002\u0016\u0007\u0016\u0002\u0017\u0007\u0017"+
+ "\u0002\u0018\u0007\u0018\u0002\u0019\u0007\u0019\u0002\u001a\u0007\u001a"+
+ "\u0002\u001b\u0007\u001b\u0002\u001c\u0007\u001c\u0002\u001d\u0007\u001d"+
+ "\u0002\u001e\u0007\u001e\u0002\u001f\u0007\u001f\u0002 \u0007 \u0002!"+
+ "\u0007!\u0002\"\u0007\"\u0002#\u0007#\u0002$\u0007$\u0002%\u0007%\u0002"+
+ "&\u0007&\u0002\'\u0007\'\u0002(\u0007(\u0002)\u0007)\u0002*\u0007*\u0002"+
+ "+\u0007+\u0002,\u0007,\u0002-\u0007-\u0002.\u0007.\u0002/\u0007/\u0002"+
+ "0\u00070\u00021\u00071\u00022\u00072\u00023\u00073\u00024\u00074\u0002"+
+ "5\u00075\u00026\u00076\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\u0002"+
+ "D\u0007D\u0002E\u0007E\u0002F\u0007F\u0002G\u0007G\u0002H\u0007H\u0002"+
+ "I\u0007I\u0002J\u0007J\u0002K\u0007K\u0002L\u0007L\u0002M\u0007M\u0002"+
+ "N\u0007N\u0002O\u0007O\u0002P\u0007P\u0002Q\u0007Q\u0002R\u0007R\u0002"+
+ "S\u0007S\u0002T\u0007T\u0002U\u0007U\u0002V\u0007V\u0002W\u0007W\u0002"+
+ "X\u0007X\u0002Y\u0007Y\u0002Z\u0007Z\u0002[\u0007[\u0002\\\u0007\\\u0002"+
+ "]\u0007]\u0002^\u0007^\u0002_\u0007_\u0002`\u0007`\u0002a\u0007a\u0002"+
+ "b\u0007b\u0002c\u0007c\u0002d\u0007d\u0002e\u0007e\u0002f\u0007f\u0002"+
+ "g\u0007g\u0002h\u0007h\u0002i\u0007i\u0002j\u0007j\u0002k\u0007k\u0002"+
+ "l\u0007l\u0002m\u0007m\u0002n\u0007n\u0002o\u0007o\u0002p\u0007p\u0002"+
+ "q\u0007q\u0002r\u0007r\u0002s\u0007s\u0002t\u0007t\u0002u\u0007u\u0002"+
+ "v\u0007v\u0002w\u0007w\u0002x\u0007x\u0002y\u0007y\u0002z\u0007z\u0002"+
+ "{\u0007{\u0002|\u0007|\u0002}\u0007}\u0002~\u0007~\u0002\u007f\u0007\u007f"+
+ "\u0002\u0080\u0007\u0080\u0002\u0081\u0007\u0081\u0002\u0082\u0007\u0082"+
+ "\u0002\u0083\u0007\u0083\u0002\u0084\u0007\u0084\u0002\u0085\u0007\u0085"+
+ "\u0002\u0086\u0007\u0086\u0002\u0087\u0007\u0087\u0002\u0088\u0007\u0088"+
+ "\u0002\u0089\u0007\u0089\u0002\u008a\u0007\u008a\u0002\u008b\u0007\u008b"+
+ "\u0002\u008c\u0007\u008c\u0002\u008d\u0007\u008d\u0002\u008e\u0007\u008e"+
+ "\u0002\u008f\u0007\u008f\u0002\u0090\u0007\u0090\u0002\u0091\u0007\u0091"+
+ "\u0002\u0092\u0007\u0092\u0002\u0093\u0007\u0093\u0002\u0094\u0007\u0094"+
+ "\u0002\u0095\u0007\u0095\u0002\u0096\u0007\u0096\u0002\u0097\u0007\u0097"+
+ "\u0002\u0098\u0007\u0098\u0002\u0099\u0007\u0099\u0002\u009a\u0007\u009a"+
+ "\u0002\u009b\u0007\u009b\u0002\u009c\u0007\u009c\u0002\u009d\u0007\u009d"+
+ "\u0002\u009e\u0007\u009e\u0002\u009f\u0007\u009f\u0002\u00a0\u0007\u00a0"+
+ "\u0002\u00a1\u0007\u00a1\u0002\u00a2\u0007\u00a2\u0002\u00a3\u0007\u00a3"+
+ "\u0002\u00a4\u0007\u00a4\u0002\u00a5\u0007\u00a5\u0002\u00a6\u0007\u00a6"+
+ "\u0002\u00a7\u0007\u00a7\u0002\u00a8\u0007\u00a8\u0002\u00a9\u0007\u00a9"+
+ "\u0002\u00aa\u0007\u00aa\u0002\u00ab\u0007\u00ab\u0002\u00ac\u0007\u00ac"+
+ "\u0002\u00ad\u0007\u00ad\u0002\u00ae\u0007\u00ae\u0002\u00af\u0007\u00af"+
+ "\u0002\u00b0\u0007\u00b0\u0002\u00b1\u0007\u00b1\u0002\u00b2\u0007\u00b2"+
+ "\u0002\u00b3\u0007\u00b3\u0002\u00b4\u0007\u00b4\u0002\u00b5\u0007\u00b5"+
+ "\u0002\u00b6\u0007\u00b6\u0002\u00b7\u0007\u00b7\u0002\u00b8\u0007\u00b8"+
+ "\u0002\u00b9\u0007\u00b9\u0002\u00ba\u0007\u00ba\u0002\u00bb\u0007\u00bb"+
+ "\u0002\u00bc\u0007\u00bc\u0002\u00bd\u0007\u00bd\u0002\u00be\u0007\u00be"+
+ "\u0002\u00bf\u0007\u00bf\u0002\u00c0\u0007\u00c0\u0002\u00c1\u0007\u00c1"+
+ "\u0002\u00c2\u0007\u00c2\u0002\u00c3\u0007\u00c3\u0002\u00c4\u0007\u00c4"+
+ "\u0002\u00c5\u0007\u00c5\u0002\u00c6\u0007\u00c6\u0002\u00c7\u0007\u00c7"+
+ "\u0002\u00c8\u0007\u00c8\u0002\u00c9\u0007\u00c9\u0002\u00ca\u0007\u00ca"+
+ "\u0002\u00cb\u0007\u00cb\u0002\u00cc\u0007\u00cc\u0002\u00cd\u0007\u00cd"+
+ "\u0002\u00ce\u0007\u00ce\u0002\u00cf\u0007\u00cf\u0002\u00d0\u0007\u00d0"+
+ "\u0002\u00d1\u0007\u00d1\u0002\u00d2\u0007\u00d2\u0002\u00d3\u0007\u00d3"+
+ "\u0002\u00d4\u0007\u00d4\u0002\u00d5\u0007\u00d5\u0002\u00d6\u0007\u00d6"+
+ "\u0002\u00d7\u0007\u00d7\u0002\u00d8\u0007\u00d8\u0002\u00d9\u0007\u00d9"+
+ "\u0002\u00da\u0007\u00da\u0002\u00db\u0007\u00db\u0002\u00dc\u0007\u00dc"+
+ "\u0002\u00dd\u0007\u00dd\u0002\u00de\u0007\u00de\u0002\u00df\u0007\u00df"+
+ "\u0002\u00e0\u0007\u00e0\u0002\u00e1\u0007\u00e1\u0002\u00e2\u0007\u00e2"+
+ "\u0002\u00e3\u0007\u00e3\u0002\u00e4\u0007\u00e4\u0002\u00e5\u0007\u00e5"+
+ "\u0002\u00e6\u0007\u00e6\u0002\u00e7\u0007\u00e7\u0002\u00e8\u0007\u00e8"+
+ "\u0002\u00e9\u0007\u00e9\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\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\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\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\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\u0012\u0001\u0012\u0001\u0012"+
+ "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
+ "\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
+ "\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
+ "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\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\u0018\u0001\u0018\u0001\u0018"+
+ "\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
+ "\u0001\u0019\u0004\u0019\u02dd\b\u0019\u000b\u0019\f\u0019\u02de\u0001"+
+ "\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0005"+
+ "\u001a\u02e7\b\u001a\n\u001a\f\u001a\u02ea\t\u001a\u0001\u001a\u0003\u001a"+
+ "\u02ed\b\u001a\u0001\u001a\u0003\u001a\u02f0\b\u001a\u0001\u001a\u0001"+
+ "\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0005"+
+ "\u001b\u02f9\b\u001b\n\u001b\f\u001b\u02fc\t\u001b\u0001\u001b\u0001\u001b"+
+ "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0004\u001c\u0304\b\u001c"+
+ "\u000b\u001c\f\u001c\u0305\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d"+
+ "\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f"+
+ "\u0001 \u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0003\"\u0319\b\""+
+ "\u0001\"\u0004\"\u031c\b\"\u000b\"\f\"\u031d\u0001#\u0001#\u0001$\u0001"+
+ "$\u0001%\u0001%\u0001%\u0003%\u0327\b%\u0001&\u0001&\u0001\'\u0001\'\u0001"+
+ "\'\u0003\'\u032e\b\'\u0001(\u0001(\u0001(\u0005(\u0333\b(\n(\f(\u0336"+
+ "\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u033e\b(\n(\f(\u0341"+
+ "\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0003(\u0348\b(\u0001(\u0003(\u034b"+
+ "\b(\u0003(\u034d\b(\u0001)\u0004)\u0350\b)\u000b)\f)\u0351\u0001*\u0004"+
+ "*\u0355\b*\u000b*\f*\u0356\u0001*\u0001*\u0005*\u035b\b*\n*\f*\u035e\t"+
+ "*\u0001*\u0001*\u0004*\u0362\b*\u000b*\f*\u0363\u0001*\u0004*\u0367\b"+
+ "*\u000b*\f*\u0368\u0001*\u0001*\u0005*\u036d\b*\n*\f*\u0370\t*\u0003*"+
+ "\u0372\b*\u0001*\u0001*\u0001*\u0001*\u0004*\u0378\b*\u000b*\f*\u0379"+
+ "\u0001*\u0001*\u0003*\u037e\b*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001"+
+ ",\u0001,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001/\u0001/\u0001"+
+ "/\u00010\u00010\u00010\u00011\u00011\u00012\u00012\u00013\u00013\u0001"+
+ "3\u00013\u00013\u00014\u00014\u00015\u00015\u00015\u00015\u00015\u0001"+
+ "5\u00016\u00016\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u0001"+
+ "8\u00018\u00018\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\u0001B\u0001B\u0001"+
+ "B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+
+ "D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001G\u0001"+
+ "G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+
+ "K\u0001K\u0001L\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001O\u0001"+
+ "O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001R\u0001S\u0001S\u0001T\u0001"+
+ "T\u0001T\u0001U\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0003V\u0410"+
+ "\bV\u0001V\u0005V\u0413\bV\nV\fV\u0416\tV\u0001V\u0001V\u0004V\u041a\b"+
+ "V\u000bV\fV\u041b\u0003V\u041e\bV\u0001W\u0001W\u0001W\u0003W\u0423\b"+
+ "W\u0001W\u0005W\u0426\bW\nW\fW\u0429\tW\u0001W\u0001W\u0004W\u042d\bW"+
+ "\u000bW\fW\u042e\u0003W\u0431\bW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
+ "Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0005Z\u043f\bZ\nZ\fZ\u0442"+
+ "\tZ\u0001Z\u0001Z\u0003Z\u0446\bZ\u0001Z\u0004Z\u0449\bZ\u000bZ\fZ\u044a"+
+ "\u0003Z\u044d\bZ\u0001[\u0001[\u0004[\u0451\b[\u000b[\f[\u0452\u0001["+
+ "\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001"+
+ "^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001"+
+ "`\u0001a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001"+
+ "c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001"+
+ "e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001"+
+ "g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001j\u0001"+
+ "j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+
+ "l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001m\u0001m\u0001m\u0003m\u04a4"+
+ "\bm\u0001n\u0004n\u04a7\bn\u000bn\fn\u04a8\u0001o\u0001o\u0001o\u0001"+
+ "o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001r\u0001"+
+ "r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+
+ "t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001v\u0001"+
+ "w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001"+
+ "y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001{\u0003"+
+ "{\u04e0\b{\u0001|\u0001|\u0003|\u04e4\b|\u0001|\u0005|\u04e7\b|\n|\f|"+
+ "\u04ea\t|\u0001|\u0001|\u0003|\u04ee\b|\u0001|\u0004|\u04f1\b|\u000b|"+
+ "\f|\u04f2\u0003|\u04f5\b|\u0001}\u0001}\u0004}\u04f9\b}\u000b}\f}\u04fa"+
+ "\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\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\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+
+ "\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001"+
+ "\u008e\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001"+
+ "\u008f\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001"+
+ "\u0090\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001"+
+ "\u0092\u0001\u0092\u0001\u0093\u0004\u0093\u0555\b\u0093\u000b\u0093\f"+
+ "\u0093\u0556\u0001\u0093\u0001\u0093\u0003\u0093\u055b\b\u0093\u0001\u0093"+
+ "\u0004\u0093\u055e\b\u0093\u000b\u0093\f\u0093\u055f\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\u0098\u0001\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001"+
+ "\u0099\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b\u0001"+
+ "\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c\u0001"+
+ "\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001"+
+ "\u009e\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001"+
+ "\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001"+
+ "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+
+ "\u00a2\u0001\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\u00a8\u0001\u00a8\u0001"+
+ "\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001"+
+ "\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001"+
+ "\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001"+
+ "\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001"+
+ "\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001"+
+ "\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001"+
+ "\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001"+
+ "\u00b2\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001"+
+ "\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001"+
+ "\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001"+
+ "\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8\u0001"+
+ "\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0004\u00b8\u05fd\b\u00b8\u000b"+
+ "\u00b8\f\u00b8\u05fe\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"+
+ "\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\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\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"+
+ "\u00cd\u0001\u00ce\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\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001"+
+ "\u00d1\u0001\u00d1\u0001\u00d1\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\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\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"+
+ "\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df\u0001"+
+ "\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001"+
+ "\u00e0\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001"+
+ "\u00e1\u0001\u00e1\u0001\u00e2\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"+
+ "\u00e6\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001"+
+ "\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+
+ "\u00e8\u0001\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001"+
+ "\u00e9\u0001\u00ea\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"+
+ "\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\u00f2\u0001\u00f2\u0001"+
+ "\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0002"+
+ "\u02fa\u033f\u0000\u00f4\u0011\u0001\u0013\u0002\u0015\u0003\u0017\u0004"+
+ "\u0019\u0005\u001b\u0006\u001d\u0007\u001f\b!\t#\n%\u000b\'\f)\r+\u000e"+
+ "-\u000f/\u00101\u00113\u00125\u00137\u00149\u0015;\u0016=\u0017?\u0018"+
+ "A\u0019C\u001aE\u001bG\u001cI\u001dK\u001eM\u0000O\u0000Q\u0000S\u0000"+
+ "U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000a\u001fc e!g\"i#k$m%o&q\'s("+
+ "u)w*y+{,}-\u007f.\u0081/\u00830\u00851\u00872\u00893\u008b4\u008d5\u008f"+
+ "6\u00917\u00938\u00959\u0097:\u0099;\u009b<\u009d=\u009f>\u00a1?\u00a3"+
+ "@\u00a5A\u00a7B\u00a9C\u00abD\u00adE\u00afF\u00b1G\u00b3H\u00b5I\u00b7"+
+ "J\u00b9K\u00bb\u0000\u00bdL\u00bfM\u00c1N\u00c3O\u00c5P\u00c7\u0000\u00c9"+
+ "Q\u00cbR\u00cdS\u00cfT\u00d1\u0000\u00d3\u0000\u00d5U\u00d7V\u00d9W\u00db"+
+ "\u0000\u00dd\u0000\u00df\u0000\u00e1\u0000\u00e3\u0000\u00e5\u0000\u00e7"+
+ "\u0000\u00e9X\u00eb\u0000\u00edY\u00ef\u0000\u00f1\u0000\u00f3Z\u00f5"+
+ "[\u00f7\\\u00f9\u0000\u00fb\u0000\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\u0123\u0000\u0125\u0000\u0127a\u0129b\u012b"+
+ "c\u012d\u0000\u012f\u0000\u0131\u0000\u0133\u0000\u0135\u0000\u0137d\u0139"+
+ "\u0000\u013be\u013df\u013fg\u0141\u0000\u0143\u0000\u0145\u0000\u0147"+
+ "\u0000\u0149\u0000\u014b\u0000\u014d\u0000\u014f\u0000\u0151\u0000\u0153"+
+ "\u0000\u0155\u0000\u0157h\u0159i\u015bj\u015d\u0000\u015f\u0000\u0161"+
+ "\u0000\u0163\u0000\u0165\u0000\u0167\u0000\u0169\u0000\u016b\u0000\u016d"+
+ "k\u016fl\u0171m\u0173\u0000\u0175n\u0177o\u0179p\u017bq\u017d\u0000\u017f"+
+ "\u0000\u0181r\u0183s\u0185t\u0187u\u0189\u0000\u018b\u0000\u018d\u0000"+
+ "\u018f\u0000\u0191\u0000\u0193\u0000\u0195\u0000\u0197v\u0199w\u019bx"+
+ "\u019d\u0000\u019f\u0000\u01a1\u0000\u01a3\u0000\u01a5y\u01a7z\u01a9{"+
+ "\u01ab\u0000\u01ad|\u01af\u0000\u01b1\u0000\u01b3}\u01b5\u0000\u01b7\u0000"+
+ "\u01b9\u0000\u01bb\u0000\u01bd\u0000\u01bf~\u01c1\u007f\u01c3\u0080\u01c5"+
+ "\u0000\u01c7\u0000\u01c9\u0000\u01cb\u0081\u01cd\u0082\u01cf\u0083\u01d1"+
+ "\u0000\u01d3\u0000\u01d5\u0000\u01d7\u0084\u01d9\u0085\u01db\u0086\u01dd"+
+ "\u0000\u01df\u0000\u01e1\u0000\u01e3\u0000\u01e5\u0000\u01e7\u0000\u01e9"+
+ "\u0000\u01eb\u0000\u01ed\u0000\u01ef\u0000\u01f1\u0000\u01f3\u0087\u01f5"+
+ "\u0088\u01f7\u0089\u0011\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
+ "\b\t\n\u000b\f\r\u000e\u000f\u0010$\u0002\u0000DDdd\u0002\u0000IIii\u0002"+
+ "\u0000SSss\u0002\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\u072a\u0000\u0011"+
+ "\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015"+
+ "\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019"+
+ "\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d"+
+ "\u0001\u0000\u0000\u0000\u0000\u001f\u0001\u0000\u0000\u0000\u0000!\u0001"+
+ "\u0000\u0000\u0000\u0000#\u0001\u0000\u0000\u0000\u0000%\u0001\u0000\u0000"+
+ "\u0000\u0000\'\u0001\u0000\u0000\u0000\u0000)\u0001\u0000\u0000\u0000"+
+ "\u0000+\u0001\u0000\u0000\u0000\u0000-\u0001\u0000\u0000\u0000\u0000/"+
+ "\u0001\u0000\u0000\u0000\u00001\u0001\u0000\u0000\u0000\u00003\u0001\u0000"+
+ "\u0000\u0000\u00005\u0001\u0000\u0000\u0000\u00007\u0001\u0000\u0000\u0000"+
+ "\u00009\u0001\u0000\u0000\u0000\u0000;\u0001\u0000\u0000\u0000\u0000="+
+ "\u0001\u0000\u0000\u0000\u0000?\u0001\u0000\u0000\u0000\u0000A\u0001\u0000"+
+ "\u0000\u0000\u0000C\u0001\u0000\u0000\u0000\u0000E\u0001\u0000\u0000\u0000"+
+ "\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0001K"+
+ "\u0001\u0000\u0000\u0000\u0001a\u0001\u0000\u0000\u0000\u0001c\u0001\u0000"+
+ "\u0000\u0000\u0001e\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000"+
+ "\u0001i\u0001\u0000\u0000\u0000\u0001k\u0001\u0000\u0000\u0000\u0001m"+
+ "\u0001\u0000\u0000\u0000\u0001o\u0001\u0000\u0000\u0000\u0001q\u0001\u0000"+
+ "\u0000\u0000\u0001s\u0001\u0000\u0000\u0000\u0001u\u0001\u0000\u0000\u0000"+
+ "\u0001w\u0001\u0000\u0000\u0000\u0001y\u0001\u0000\u0000\u0000\u0001{"+
+ "\u0001\u0000\u0000\u0000\u0001}\u0001\u0000\u0000\u0000\u0001\u007f\u0001"+
+ "\u0000\u0000\u0000\u0001\u0081\u0001\u0000\u0000\u0000\u0001\u0083\u0001"+
+ "\u0000\u0000\u0000\u0001\u0085\u0001\u0000\u0000\u0000\u0001\u0087\u0001"+
+ "\u0000\u0000\u0000\u0001\u0089\u0001\u0000\u0000\u0000\u0001\u008b\u0001"+
+ "\u0000\u0000\u0000\u0001\u008d\u0001\u0000\u0000\u0000\u0001\u008f\u0001"+
+ "\u0000\u0000\u0000\u0001\u0091\u0001\u0000\u0000\u0000\u0001\u0093\u0001"+
+ "\u0000\u0000\u0000\u0001\u0095\u0001\u0000\u0000\u0000\u0001\u0097\u0001"+
+ "\u0000\u0000\u0000\u0001\u0099\u0001\u0000\u0000\u0000\u0001\u009b\u0001"+
+ "\u0000\u0000\u0000\u0001\u009d\u0001\u0000\u0000\u0000\u0001\u009f\u0001"+
+ "\u0000\u0000\u0000\u0001\u00a1\u0001\u0000\u0000\u0000\u0001\u00a3\u0001"+
+ "\u0000\u0000\u0000\u0001\u00a5\u0001\u0000\u0000\u0000\u0001\u00a7\u0001"+
+ "\u0000\u0000\u0000\u0001\u00a9\u0001\u0000\u0000\u0000\u0001\u00ab\u0001"+
+ "\u0000\u0000\u0000\u0001\u00ad\u0001\u0000\u0000\u0000\u0001\u00af\u0001"+
+ "\u0000\u0000\u0000\u0001\u00b1\u0001\u0000\u0000\u0000\u0001\u00b3\u0001"+
+ "\u0000\u0000\u0000\u0001\u00b5\u0001\u0000\u0000\u0000\u0001\u00b7\u0001"+
+ "\u0000\u0000\u0000\u0001\u00b9\u0001\u0000\u0000\u0000\u0001\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\u00c9\u0001"+
+ "\u0000\u0000\u0000\u0001\u00cb\u0001\u0000\u0000\u0000\u0001\u00cd\u0001"+
+ "\u0000\u0000\u0000\u0001\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\u0002\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\u00e7\u0001\u0000\u0000\u0000\u0003\u00e9\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\u0003\u00f5\u0001\u0000\u0000\u0000\u0003\u00f7\u0001"+
+ "\u0000\u0000\u0000\u0004\u00f9\u0001\u0000\u0000\u0000\u0004\u00fb\u0001"+
+ "\u0000\u0000\u0000\u0004\u00fd\u0001\u0000\u0000\u0000\u0004\u00ff\u0001"+
+ "\u0000\u0000\u0000\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\u0005\u0129\u0001\u0000\u0000\u0000\u0005\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\u0006\u0137\u0001\u0000\u0000\u0000\u0006\u0139\u0001"+
+ "\u0000\u0000\u0000\u0006\u013b\u0001\u0000\u0000\u0000\u0006\u013d\u0001"+
+ "\u0000\u0000\u0000\u0006\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\u0007\u0155\u0001"+
+ "\u0000\u0000\u0000\u0007\u0157\u0001\u0000\u0000\u0000\u0007\u0159\u0001"+
+ "\u0000\u0000\u0000\u0007\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"+
+ "\b\u0167\u0001\u0000\u0000\u0000\b\u0169\u0001\u0000\u0000\u0000\b\u016b"+
+ "\u0001\u0000\u0000\u0000\b\u016d\u0001\u0000\u0000\u0000\b\u016f\u0001"+
+ "\u0000\u0000\u0000\b\u0171\u0001\u0000\u0000\u0000\t\u0173\u0001\u0000"+
+ "\u0000\u0000\t\u0175\u0001\u0000\u0000\u0000\t\u0177\u0001\u0000\u0000"+
+ "\u0000\t\u0179\u0001\u0000\u0000\u0000\t\u017b\u0001\u0000\u0000\u0000"+
+ "\n\u017d\u0001\u0000\u0000\u0000\n\u017f\u0001\u0000\u0000\u0000\n\u0181"+
+ "\u0001\u0000\u0000\u0000\n\u0183\u0001\u0000\u0000\u0000\n\u0185\u0001"+
+ "\u0000\u0000\u0000\n\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\u000b\u0191\u0001\u0000"+
+ "\u0000\u0000\u000b\u0193\u0001\u0000\u0000\u0000\u000b\u0195\u0001\u0000"+
+ "\u0000\u0000\u000b\u0197\u0001\u0000\u0000\u0000\u000b\u0199\u0001\u0000"+
+ "\u0000\u0000\u000b\u019b\u0001\u0000\u0000\u0000\f\u019d\u0001\u0000\u0000"+
+ "\u0000\f\u019f\u0001\u0000\u0000\u0000\f\u01a1\u0001\u0000\u0000\u0000"+
+ "\f\u01a3\u0001\u0000\u0000\u0000\f\u01a5\u0001\u0000\u0000\u0000\f\u01a7"+
+ "\u0001\u0000\u0000\u0000\f\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"+
+ "\r\u01b9\u0001\u0000\u0000\u0000\r\u01bb\u0001\u0000\u0000\u0000\r\u01bd"+
+ "\u0001\u0000\u0000\u0000\r\u01bf\u0001\u0000\u0000\u0000\r\u01c1\u0001"+
+ "\u0000\u0000\u0000\r\u01c3\u0001\u0000\u0000\u0000\u000e\u01c5\u0001\u0000"+
+ "\u0000\u0000\u000e\u01c7\u0001\u0000\u0000\u0000\u000e\u01c9\u0001\u0000"+
+ "\u0000\u0000\u000e\u01cb\u0001\u0000\u0000\u0000\u000e\u01cd\u0001\u0000"+
+ "\u0000\u0000\u000e\u01cf\u0001\u0000\u0000\u0000\u000f\u01d1\u0001\u0000"+
+ "\u0000\u0000\u000f\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5\u0001\u0000"+
+ "\u0000\u0000\u000f\u01d7\u0001\u0000\u0000\u0000\u000f\u01d9\u0001\u0000"+
+ "\u0000\u0000\u000f\u01db\u0001\u0000\u0000\u0000\u000f\u01dd\u0001\u0000"+
+ "\u0000\u0000\u000f\u01df\u0001\u0000\u0000\u0000\u000f\u01e1\u0001\u0000"+
+ "\u0000\u0000\u000f\u01e3\u0001\u0000\u0000\u0000\u0010\u01e5\u0001\u0000"+
+ "\u0000\u0000\u0010\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9\u0001\u0000"+
+ "\u0000\u0000\u0010\u01eb\u0001\u0000\u0000\u0000\u0010\u01ed\u0001\u0000"+
+ "\u0000\u0000\u0010\u01ef\u0001\u0000\u0000\u0000\u0010\u01f1\u0001\u0000"+
+ "\u0000\u0000\u0010\u01f3\u0001\u0000\u0000\u0000\u0010\u01f5\u0001\u0000"+
+ "\u0000\u0000\u0010\u01f7\u0001\u0000\u0000\u0000\u0011\u01f9\u0001\u0000"+
+ "\u0000\u0000\u0013\u0203\u0001\u0000\u0000\u0000\u0015\u020a\u0001\u0000"+
+ "\u0000\u0000\u0017\u0213\u0001\u0000\u0000\u0000\u0019\u021a\u0001\u0000"+
+ "\u0000\u0000\u001b\u0224\u0001\u0000\u0000\u0000\u001d\u022b\u0001\u0000"+
+ "\u0000\u0000\u001f\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\u0000/\u0272\u0001\u0000\u0000"+
+ "\u00001\u027a\u0001\u0000\u0000\u00003\u0283\u0001\u0000\u0000\u00005"+
+ "\u0292\u0001\u0000\u0000\u00007\u02a1\u0001\u0000\u0000\u00009\u02ad\u0001"+
+ "\u0000\u0000\u0000;\u02b8\u0001\u0000\u0000\u0000=\u02c2\u0001\u0000\u0000"+
+ "\u0000?\u02ca\u0001\u0000\u0000\u0000A\u02d2\u0001\u0000\u0000\u0000C"+
+ "\u02dc\u0001\u0000\u0000\u0000E\u02e2\u0001\u0000\u0000\u0000G\u02f3\u0001"+
+ "\u0000\u0000\u0000I\u0303\u0001\u0000\u0000\u0000K\u0309\u0001\u0000\u0000"+
+ "\u0000M\u030d\u0001\u0000\u0000\u0000O\u030f\u0001\u0000\u0000\u0000Q"+
+ "\u0311\u0001\u0000\u0000\u0000S\u0314\u0001\u0000\u0000\u0000U\u0316\u0001"+
+ "\u0000\u0000\u0000W\u031f\u0001\u0000\u0000\u0000Y\u0321\u0001\u0000\u0000"+
+ "\u0000[\u0326\u0001\u0000\u0000\u0000]\u0328\u0001\u0000\u0000\u0000_"+
+ "\u032d\u0001\u0000\u0000\u0000a\u034c\u0001\u0000\u0000\u0000c\u034f\u0001"+
+ "\u0000\u0000\u0000e\u037d\u0001\u0000\u0000\u0000g\u037f\u0001\u0000\u0000"+
+ "\u0000i\u0383\u0001\u0000\u0000\u0000k\u0386\u0001\u0000\u0000\u0000m"+
+ "\u038a\u0001\u0000\u0000\u0000o\u038c\u0001\u0000\u0000\u0000q\u038f\u0001"+
+ "\u0000\u0000\u0000s\u0392\u0001\u0000\u0000\u0000u\u0394\u0001\u0000\u0000"+
+ "\u0000w\u0396\u0001\u0000\u0000\u0000y\u039b\u0001\u0000\u0000\u0000{"+
+ "\u039d\u0001\u0000\u0000\u0000}\u03a3\u0001\u0000\u0000\u0000\u007f\u03a9"+
+ "\u0001\u0000\u0000\u0000\u0081\u03ac\u0001\u0000\u0000\u0000\u0083\u03af"+
+ "\u0001\u0000\u0000\u0000\u0085\u03b4\u0001\u0000\u0000\u0000\u0087\u03b9"+
+ "\u0001\u0000\u0000\u0000\u0089\u03bb\u0001\u0000\u0000\u0000\u008b\u03bf"+
+ "\u0001\u0000\u0000\u0000\u008d\u03c4\u0001\u0000\u0000\u0000\u008f\u03ca"+
+ "\u0001\u0000\u0000\u0000\u0091\u03cd\u0001\u0000\u0000\u0000\u0093\u03d0"+
+ "\u0001\u0000\u0000\u0000\u0095\u03d2\u0001\u0000\u0000\u0000\u0097\u03d8"+
+ "\u0001\u0000\u0000\u0000\u0099\u03da\u0001\u0000\u0000\u0000\u009b\u03df"+
+ "\u0001\u0000\u0000\u0000\u009d\u03e4\u0001\u0000\u0000\u0000\u009f\u03e7"+
+ "\u0001\u0000\u0000\u0000\u00a1\u03ea\u0001\u0000\u0000\u0000\u00a3\u03ed"+
+ "\u0001\u0000\u0000\u0000\u00a5\u03ef\u0001\u0000\u0000\u0000\u00a7\u03f2"+
+ "\u0001\u0000\u0000\u0000\u00a9\u03f4\u0001\u0000\u0000\u0000\u00ab\u03f7"+
+ "\u0001\u0000\u0000\u0000\u00ad\u03f9\u0001\u0000\u0000\u0000\u00af\u03fb"+
+ "\u0001\u0000\u0000\u0000\u00b1\u03fd\u0001\u0000\u0000\u0000\u00b3\u03ff"+
+ "\u0001\u0000\u0000\u0000\u00b5\u0401\u0001\u0000\u0000\u0000\u00b7\u0403"+
+ "\u0001\u0000\u0000\u0000\u00b9\u0405\u0001\u0000\u0000\u0000\u00bb\u0408"+
+ "\u0001\u0000\u0000\u0000\u00bd\u041d\u0001\u0000\u0000\u0000\u00bf\u0430"+
+ "\u0001\u0000\u0000\u0000\u00c1\u0432\u0001\u0000\u0000\u0000\u00c3\u0437"+
+ "\u0001\u0000\u0000\u0000\u00c5\u044c\u0001\u0000\u0000\u0000\u00c7\u044e"+
+ "\u0001\u0000\u0000\u0000\u00c9\u0456\u0001\u0000\u0000\u0000\u00cb\u0458"+
+ "\u0001\u0000\u0000\u0000\u00cd\u045c\u0001\u0000\u0000\u0000\u00cf\u0460"+
+ "\u0001\u0000\u0000\u0000\u00d1\u0464\u0001\u0000\u0000\u0000\u00d3\u0469"+
+ "\u0001\u0000\u0000\u0000\u00d5\u046e\u0001\u0000\u0000\u0000\u00d7\u0472"+
+ "\u0001\u0000\u0000\u0000\u00d9\u0476\u0001\u0000\u0000\u0000\u00db\u047a"+
+ "\u0001\u0000\u0000\u0000\u00dd\u047f\u0001\u0000\u0000\u0000\u00df\u0483"+
+ "\u0001\u0000\u0000\u0000\u00e1\u0487\u0001\u0000\u0000\u0000\u00e3\u048b"+
+ "\u0001\u0000\u0000\u0000\u00e5\u048f\u0001\u0000\u0000\u0000\u00e7\u0493"+
+ "\u0001\u0000\u0000\u0000\u00e9\u0497\u0001\u0000\u0000\u0000\u00eb\u04a3"+
+ "\u0001\u0000\u0000\u0000\u00ed\u04a6\u0001\u0000\u0000\u0000\u00ef\u04aa"+
+ "\u0001\u0000\u0000\u0000\u00f1\u04ae\u0001\u0000\u0000\u0000\u00f3\u04b2"+
+ "\u0001\u0000\u0000\u0000\u00f5\u04b6\u0001\u0000\u0000\u0000\u00f7\u04ba"+
+ "\u0001\u0000\u0000\u0000\u00f9\u04be\u0001\u0000\u0000\u0000\u00fb\u04c3"+
+ "\u0001\u0000\u0000\u0000\u00fd\u04c7\u0001\u0000\u0000\u0000\u00ff\u04cb"+
+ "\u0001\u0000\u0000\u0000\u0101\u04cf\u0001\u0000\u0000\u0000\u0103\u04d3"+
+ "\u0001\u0000\u0000\u0000\u0105\u04d7\u0001\u0000\u0000\u0000\u0107\u04df"+
+ "\u0001\u0000\u0000\u0000\u0109\u04f4\u0001\u0000\u0000\u0000\u010b\u04f8"+
+ "\u0001\u0000\u0000\u0000\u010d\u04fc\u0001\u0000\u0000\u0000\u010f\u0500"+
+ "\u0001\u0000\u0000\u0000\u0111\u0504\u0001\u0000\u0000\u0000\u0113\u0508"+
+ "\u0001\u0000\u0000\u0000\u0115\u050d\u0001\u0000\u0000\u0000\u0117\u0511"+
+ "\u0001\u0000\u0000\u0000\u0119\u0515\u0001\u0000\u0000\u0000\u011b\u0519"+
+ "\u0001\u0000\u0000\u0000\u011d\u051d\u0001\u0000\u0000\u0000\u011f\u0521"+
+ "\u0001\u0000\u0000\u0000\u0121\u0525\u0001\u0000\u0000\u0000\u0123\u0529"+
+ "\u0001\u0000\u0000\u0000\u0125\u052d\u0001\u0000\u0000\u0000\u0127\u0531"+
+ "\u0001\u0000\u0000\u0000\u0129\u0535\u0001\u0000\u0000\u0000\u012b\u0539"+
+ "\u0001\u0000\u0000\u0000\u012d\u053d\u0001\u0000\u0000\u0000\u012f\u0542"+
+ "\u0001\u0000\u0000\u0000\u0131\u0547\u0001\u0000\u0000\u0000\u0133\u054c"+
+ "\u0001\u0000\u0000\u0000\u0135\u0551\u0001\u0000\u0000\u0000\u0137\u055a"+
+ "\u0001\u0000\u0000\u0000\u0139\u0561\u0001\u0000\u0000\u0000\u013b\u0565"+
+ "\u0001\u0000\u0000\u0000\u013d\u0569\u0001\u0000\u0000\u0000\u013f\u056d"+
+ "\u0001\u0000\u0000\u0000\u0141\u0571\u0001\u0000\u0000\u0000\u0143\u0577"+
+ "\u0001\u0000\u0000\u0000\u0145\u057b\u0001\u0000\u0000\u0000\u0147\u057f"+
+ "\u0001\u0000\u0000\u0000\u0149\u0583\u0001\u0000\u0000\u0000\u014b\u0587"+
+ "\u0001\u0000\u0000\u0000\u014d\u058b\u0001\u0000\u0000\u0000\u014f\u058f"+
+ "\u0001\u0000\u0000\u0000\u0151\u0593\u0001\u0000\u0000\u0000\u0153\u0597"+
+ "\u0001\u0000\u0000\u0000\u0155\u059b\u0001\u0000\u0000\u0000\u0157\u059f"+
+ "\u0001\u0000\u0000\u0000\u0159\u05a3\u0001\u0000\u0000\u0000\u015b\u05a7"+
+ "\u0001\u0000\u0000\u0000\u015d\u05ab\u0001\u0000\u0000\u0000\u015f\u05b0"+
+ "\u0001\u0000\u0000\u0000\u0161\u05b4\u0001\u0000\u0000\u0000\u0163\u05b8"+
+ "\u0001\u0000\u0000\u0000\u0165\u05bc\u0001\u0000\u0000\u0000\u0167\u05c0"+
+ "\u0001\u0000\u0000\u0000\u0169\u05c4\u0001\u0000\u0000\u0000\u016b\u05c8"+
+ "\u0001\u0000\u0000\u0000\u016d\u05cc\u0001\u0000\u0000\u0000\u016f\u05d0"+
+ "\u0001\u0000\u0000\u0000\u0171\u05d4\u0001\u0000\u0000\u0000\u0173\u05d8"+
+ "\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\u05fc\u0001\u0000\u0000\u0000\u0183\u0600"+
+ "\u0001\u0000\u0000\u0000\u0185\u0604\u0001\u0000\u0000\u0000\u0187\u0608"+
+ "\u0001\u0000\u0000\u0000\u0189\u060c\u0001\u0000\u0000\u0000\u018b\u0611"+
+ "\u0001\u0000\u0000\u0000\u018d\u0615\u0001\u0000\u0000\u0000\u018f\u0619"+
+ "\u0001\u0000\u0000\u0000\u0191\u061d\u0001\u0000\u0000\u0000\u0193\u0622"+
+ "\u0001\u0000\u0000\u0000\u0195\u0626\u0001\u0000\u0000\u0000\u0197\u062a"+
+ "\u0001\u0000\u0000\u0000\u0199\u062e\u0001\u0000\u0000\u0000\u019b\u0632"+
+ "\u0001\u0000\u0000\u0000\u019d\u0636\u0001\u0000\u0000\u0000\u019f\u063c"+
+ "\u0001\u0000\u0000\u0000\u01a1\u0640\u0001\u0000\u0000\u0000\u01a3\u0644"+
+ "\u0001\u0000\u0000\u0000\u01a5\u0648\u0001\u0000\u0000\u0000\u01a7\u064c"+
+ "\u0001\u0000\u0000\u0000\u01a9\u0650\u0001\u0000\u0000\u0000\u01ab\u0654"+
+ "\u0001\u0000\u0000\u0000\u01ad\u0659\u0001\u0000\u0000\u0000\u01af\u065e"+
+ "\u0001\u0000\u0000\u0000\u01b1\u0662\u0001\u0000\u0000\u0000\u01b3\u0668"+
+ "\u0001\u0000\u0000\u0000\u01b5\u0671\u0001\u0000\u0000\u0000\u01b7\u0675"+
+ "\u0001\u0000\u0000\u0000\u01b9\u0679\u0001\u0000\u0000\u0000\u01bb\u067d"+
+ "\u0001\u0000\u0000\u0000\u01bd\u0681\u0001\u0000\u0000\u0000\u01bf\u0685"+
+ "\u0001\u0000\u0000\u0000\u01c1\u0689\u0001\u0000\u0000\u0000\u01c3\u068d"+
+ "\u0001\u0000\u0000\u0000\u01c5\u0691\u0001\u0000\u0000\u0000\u01c7\u0696"+
+ "\u0001\u0000\u0000\u0000\u01c9\u069c\u0001\u0000\u0000\u0000\u01cb\u06a2"+
+ "\u0001\u0000\u0000\u0000\u01cd\u06a6\u0001\u0000\u0000\u0000\u01cf\u06aa"+
+ "\u0001\u0000\u0000\u0000\u01d1\u06ae\u0001\u0000\u0000\u0000\u01d3\u06b4"+
+ "\u0001\u0000\u0000\u0000\u01d5\u06ba\u0001\u0000\u0000\u0000\u01d7\u06c0"+
+ "\u0001\u0000\u0000\u0000\u01d9\u06c4\u0001\u0000\u0000\u0000\u01db\u06c8"+
+ "\u0001\u0000\u0000\u0000\u01dd\u06cc\u0001\u0000\u0000\u0000\u01df\u06d2"+
+ "\u0001\u0000\u0000\u0000\u01e1\u06d8\u0001\u0000\u0000\u0000\u01e3\u06de"+
+ "\u0001\u0000\u0000\u0000\u01e5\u06e3\u0001\u0000\u0000\u0000\u01e7\u06e8"+
+ "\u0001\u0000\u0000\u0000\u01e9\u06ec\u0001\u0000\u0000\u0000\u01eb\u06f0"+
+ "\u0001\u0000\u0000\u0000\u01ed\u06f4\u0001\u0000\u0000\u0000\u01ef\u06f8"+
+ "\u0001\u0000\u0000\u0000\u01f1\u06fc\u0001\u0000\u0000\u0000\u01f3\u0700"+
+ "\u0001\u0000\u0000\u0000\u01f5\u0704\u0001\u0000\u0000\u0000\u01f7\u0708"+
+ "\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\u0012"+
+ "\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\u0014\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\u0016\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\u0018\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\u001a\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\u001c\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\u001e\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\u0271.\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\u02790\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\u02822\u0001\u0000\u0000\u0000\u0283"+
+ "\u0284\u0007\u0004\u0000\u0000\u0284\u0285\u0007\n\u0000\u0000\u0285\u0286"+
+ "\u0007\f\u0000\u0000\u0286\u0287\u0007\t\u0000\u0000\u0287\u0288\u0007"+
+ "\u0011\u0000\u0000\u0288\u0289\u0007\u0003\u0000\u0000\u0289\u028a\u0005"+
+ "_\u0000\u0000\u028a\u028b\u0007\b\u0000\u0000\u028b\u028c\u0007\u0007"+
+ "\u0000\u0000\u028c\u028d\u0007\u0001\u0000\u0000\u028d\u028e\u0007\t\u0000"+
+ "\u0000\u028e\u028f\u0007\u0005\u0000\u0000\u028f\u0290\u0001\u0000\u0000"+
+ "\u0000\u0290\u0291\u0006\u0011\t\u0000\u02914\u0001\u0000\u0000\u0000"+
+ "\u0292\u0293\u0004\u0012\u0000\u0000\u0293\u0294\u0007\u0001\u0000\u0000"+
+ "\u0294\u0295\u0007\t\u0000\u0000\u0295\u0296\u0007\r\u0000\u0000\u0296"+
+ "\u0297\u0007\u0001\u0000\u0000\u0297\u0298\u0007\t\u0000\u0000\u0298\u0299"+
+ "\u0007\u0003\u0000\u0000\u0299\u029a\u0007\u0002\u0000\u0000\u029a\u029b"+
+ "\u0007\u0005\u0000\u0000\u029b\u029c\u0007\f\u0000\u0000\u029c\u029d\u0007"+
+ "\u0005\u0000\u0000\u029d\u029e\u0007\u0002\u0000\u0000\u029e\u029f\u0001"+
+ "\u0000\u0000\u0000\u029f\u02a0\u0006\u0012\u0000\u0000\u02a06\u0001\u0000"+
+ "\u0000\u0000\u02a1\u02a2\u0004\u0013\u0001\u0000\u02a2\u02a3\u0007\r\u0000"+
+ "\u0000\u02a3\u02a4\u0007\u0007\u0000\u0000\u02a4\u02a5\u0007\u0007\u0000"+
+ "\u0000\u02a5\u02a6\u0007\u0012\u0000\u0000\u02a6\u02a7\u0007\u0014\u0000"+
+ "\u0000\u02a7\u02a8\u0007\b\u0000\u0000\u02a8\u02a9\u0005_\u0000\u0000"+
+ "\u02a9\u02aa\u0005\u8001\uf414\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000"+
+ "\u0000\u02ab\u02ac\u0006\u0013\n\u0000\u02ac8\u0001\u0000\u0000\u0000"+
+ "\u02ad\u02ae\u0004\u0014\u0002\u0000\u02ae\u02af\u0007\u0010\u0000\u0000"+
+ "\u02af\u02b0\u0007\u0003\u0000\u0000\u02b0\u02b1\u0007\u0005\u0000\u0000"+
+ "\u02b1\u02b2\u0007\u0006\u0000\u0000\u02b2\u02b3\u0007\u0001\u0000\u0000"+
+ "\u02b3\u02b4\u0007\u0004\u0000\u0000\u02b4\u02b5\u0007\u0002\u0000\u0000"+
+ "\u02b5\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7\u0006\u0014\u000b\u0000"+
+ "\u02b7:\u0001\u0000\u0000\u0000\u02b8\u02b9\u0004\u0015\u0003\u0000\u02b9"+
+ "\u02ba\u0007\u0006\u0000\u0000\u02ba\u02bb\u0007\u0003\u0000\u0000\u02bb"+
+ "\u02bc\u0007\u0006\u0000\u0000\u02bc\u02bd\u0007\f\u0000\u0000\u02bd\u02be"+
+ "\u0007\t\u0000\u0000\u02be\u02bf\u0007\u0012\u0000\u0000\u02bf\u02c0\u0001"+
+ "\u0000\u0000\u0000\u02c0\u02c1\u0006\u0015\u0000\u0000\u02c1<\u0001\u0000"+
+ "\u0000\u0000\u02c2\u02c3\u0004\u0016\u0004\u0000\u02c3\u02c4\u0007\u000f"+
+ "\u0000\u0000\u02c4\u02c5\u0007\u0014\u0000\u0000\u02c5\u02c6\u0007\r\u0000"+
+ "\u0000\u02c6\u02c7\u0007\r\u0000\u0000\u02c7\u02c8\u0001\u0000\u0000\u0000"+
+ "\u02c8\u02c9\u0006\u0016\b\u0000\u02c9>\u0001\u0000\u0000\u0000\u02ca"+
+ "\u02cb\u0004\u0017\u0005\u0000\u02cb\u02cc\u0007\r\u0000\u0000\u02cc\u02cd"+
+ "\u0007\u0003\u0000\u0000\u02cd\u02ce\u0007\u000f\u0000\u0000\u02ce\u02cf"+
+ "\u0007\u0005\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1"+
+ "\u0006\u0017\b\u0000\u02d1@\u0001\u0000\u0000\u0000\u02d2\u02d3\u0004"+
+ "\u0018\u0006\u0000\u02d3\u02d4\u0007\u0006\u0000\u0000\u02d4\u02d5\u0007"+
+ "\u0001\u0000\u0000\u02d5\u02d6\u0007\u0011\u0000\u0000\u02d6\u02d7\u0007"+
+ "\n\u0000\u0000\u02d7\u02d8\u0007\u0005\u0000\u0000\u02d8\u02d9\u0001\u0000"+
+ "\u0000\u0000\u02d9\u02da\u0006\u0018\b\u0000\u02daB\u0001\u0000\u0000"+
+ "\u0000\u02db\u02dd\b\u0015\u0000\u0000\u02dc\u02db\u0001\u0000\u0000\u0000"+
+ "\u02dd\u02de\u0001\u0000\u0000\u0000\u02de\u02dc\u0001\u0000\u0000\u0000"+
+ "\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000"+
+ "\u02e0\u02e1\u0006\u0019\u0000\u0000\u02e1D\u0001\u0000\u0000\u0000\u02e2"+
+ "\u02e3\u0005/\u0000\u0000\u02e3\u02e4\u0005/\u0000\u0000\u02e4\u02e8\u0001"+
+ "\u0000\u0000\u0000\u02e5\u02e7\b\u0016\u0000\u0000\u02e6\u02e5\u0001\u0000"+
+ "\u0000\u0000\u02e7\u02ea\u0001\u0000\u0000\u0000\u02e8\u02e6\u0001\u0000"+
+ "\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ec\u0001\u0000"+
+ "\u0000\u0000\u02ea\u02e8\u0001\u0000\u0000\u0000\u02eb\u02ed\u0005\r\u0000"+
+ "\u0000\u02ec\u02eb\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000"+
+ "\u0000\u02ed\u02ef\u0001\u0000\u0000\u0000\u02ee\u02f0\u0005\n\u0000\u0000"+
+ "\u02ef\u02ee\u0001\u0000\u0000\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000"+
+ "\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f2\u0006\u001a\f\u0000\u02f2"+
+ "F\u0001\u0000\u0000\u0000\u02f3\u02f4\u0005/\u0000\u0000\u02f4\u02f5\u0005"+
+ "*\u0000\u0000\u02f5\u02fa\u0001\u0000\u0000\u0000\u02f6\u02f9\u0003G\u001b"+
+ "\u0000\u02f7\u02f9\t\u0000\u0000\u0000\u02f8\u02f6\u0001\u0000\u0000\u0000"+
+ "\u02f8\u02f7\u0001\u0000\u0000\u0000\u02f9\u02fc\u0001\u0000\u0000\u0000"+
+ "\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000"+
+ "\u02fb\u02fd\u0001\u0000\u0000\u0000\u02fc\u02fa\u0001\u0000\u0000\u0000"+
+ "\u02fd\u02fe\u0005*\u0000\u0000\u02fe\u02ff\u0005/\u0000\u0000\u02ff\u0300"+
+ "\u0001\u0000\u0000\u0000\u0300\u0301\u0006\u001b\f\u0000\u0301H\u0001"+
+ "\u0000\u0000\u0000\u0302\u0304\u0007\u0017\u0000\u0000\u0303\u0302\u0001"+
+ "\u0000\u0000\u0000\u0304\u0305\u0001\u0000\u0000\u0000\u0305\u0303\u0001"+
+ "\u0000\u0000\u0000\u0305\u0306\u0001\u0000\u0000\u0000\u0306\u0307\u0001"+
+ "\u0000\u0000\u0000\u0307\u0308\u0006\u001c\f\u0000\u0308J\u0001\u0000"+
+ "\u0000\u0000\u0309\u030a\u0005|\u0000\u0000\u030a\u030b\u0001\u0000\u0000"+
+ "\u0000\u030b\u030c\u0006\u001d\r\u0000\u030cL\u0001\u0000\u0000\u0000"+
+ "\u030d\u030e\u0007\u0018\u0000\u0000\u030eN\u0001\u0000\u0000\u0000\u030f"+
+ "\u0310\u0007\u0019\u0000\u0000\u0310P\u0001\u0000\u0000\u0000\u0311\u0312"+
+ "\u0005\\\u0000\u0000\u0312\u0313\u0007\u001a\u0000\u0000\u0313R\u0001"+
+ "\u0000\u0000\u0000\u0314\u0315\b\u001b\u0000\u0000\u0315T\u0001\u0000"+
+ "\u0000\u0000\u0316\u0318\u0007\u0003\u0000\u0000\u0317\u0319\u0007\u001c"+
+ "\u0000\u0000\u0318\u0317\u0001\u0000\u0000\u0000\u0318\u0319\u0001\u0000"+
+ "\u0000\u0000\u0319\u031b\u0001\u0000\u0000\u0000\u031a\u031c\u0003M\u001e"+
+ "\u0000\u031b\u031a\u0001\u0000\u0000\u0000\u031c\u031d\u0001\u0000\u0000"+
+ "\u0000\u031d\u031b\u0001\u0000\u0000\u0000\u031d\u031e\u0001\u0000\u0000"+
+ "\u0000\u031eV\u0001\u0000\u0000\u0000\u031f\u0320\u0005@\u0000\u0000\u0320"+
+ "X\u0001\u0000\u0000\u0000\u0321\u0322\u0005`\u0000\u0000\u0322Z\u0001"+
+ "\u0000\u0000\u0000\u0323\u0327\b\u001d\u0000\u0000\u0324\u0325\u0005`"+
+ "\u0000\u0000\u0325\u0327\u0005`\u0000\u0000\u0326\u0323\u0001\u0000\u0000"+
+ "\u0000\u0326\u0324\u0001\u0000\u0000\u0000\u0327\\\u0001\u0000\u0000\u0000"+
+ "\u0328\u0329\u0005_\u0000\u0000\u0329^\u0001\u0000\u0000\u0000\u032a\u032e"+
+ "\u0003O\u001f\u0000\u032b\u032e\u0003M\u001e\u0000\u032c\u032e\u0003]"+
+ "&\u0000\u032d\u032a\u0001\u0000\u0000\u0000\u032d\u032b\u0001\u0000\u0000"+
+ "\u0000\u032d\u032c\u0001\u0000\u0000\u0000\u032e`\u0001\u0000\u0000\u0000"+
+ "\u032f\u0334\u0005\"\u0000\u0000\u0330\u0333\u0003Q \u0000\u0331\u0333"+
+ "\u0003S!\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0332\u0331\u0001\u0000"+
+ "\u0000\u0000\u0333\u0336\u0001\u0000\u0000\u0000\u0334\u0332\u0001\u0000"+
+ "\u0000\u0000\u0334\u0335\u0001\u0000\u0000\u0000\u0335\u0337\u0001\u0000"+
+ "\u0000\u0000\u0336\u0334\u0001\u0000\u0000\u0000\u0337\u034d\u0005\"\u0000"+
+ "\u0000\u0338\u0339\u0005\"\u0000\u0000\u0339\u033a\u0005\"\u0000\u0000"+
+ "\u033a\u033b\u0005\"\u0000\u0000\u033b\u033f\u0001\u0000\u0000\u0000\u033c"+
+ "\u033e\b\u0016\u0000\u0000\u033d\u033c\u0001\u0000\u0000\u0000\u033e\u0341"+
+ "\u0001\u0000\u0000\u0000\u033f\u0340\u0001\u0000\u0000\u0000\u033f\u033d"+
+ "\u0001\u0000\u0000\u0000\u0340\u0342\u0001\u0000\u0000\u0000\u0341\u033f"+
+ "\u0001\u0000\u0000\u0000\u0342\u0343\u0005\"\u0000\u0000\u0343\u0344\u0005"+
+ "\"\u0000\u0000\u0344\u0345\u0005\"\u0000\u0000\u0345\u0347\u0001\u0000"+
+ "\u0000\u0000\u0346\u0348\u0005\"\u0000\u0000\u0347\u0346\u0001\u0000\u0000"+
+ "\u0000\u0347\u0348\u0001\u0000\u0000\u0000\u0348\u034a\u0001\u0000\u0000"+
+ "\u0000\u0349\u034b\u0005\"\u0000\u0000\u034a\u0349\u0001\u0000\u0000\u0000"+
+ "\u034a\u034b\u0001\u0000\u0000\u0000\u034b\u034d\u0001\u0000\u0000\u0000"+
+ "\u034c\u032f\u0001\u0000\u0000\u0000\u034c\u0338\u0001\u0000\u0000\u0000"+
+ "\u034db\u0001\u0000\u0000\u0000\u034e\u0350\u0003M\u001e\u0000\u034f\u034e"+
+ "\u0001\u0000\u0000\u0000\u0350\u0351\u0001\u0000\u0000\u0000\u0351\u034f"+
+ "\u0001\u0000\u0000\u0000\u0351\u0352\u0001\u0000\u0000\u0000\u0352d\u0001"+
+ "\u0000\u0000\u0000\u0353\u0355\u0003M\u001e\u0000\u0354\u0353\u0001\u0000"+
+ "\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000\u0356\u0354\u0001\u0000"+
+ "\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357\u0358\u0001\u0000"+
+ "\u0000\u0000\u0358\u035c\u0003y4\u0000\u0359\u035b\u0003M\u001e\u0000"+
+ "\u035a\u0359\u0001\u0000\u0000\u0000\u035b\u035e\u0001\u0000\u0000\u0000"+
+ "\u035c\u035a\u0001\u0000\u0000\u0000\u035c\u035d\u0001\u0000\u0000\u0000"+
+ "\u035d\u037e\u0001\u0000\u0000\u0000\u035e\u035c\u0001\u0000\u0000\u0000"+
+ "\u035f\u0361\u0003y4\u0000\u0360\u0362\u0003M\u001e\u0000\u0361\u0360"+
+ "\u0001\u0000\u0000\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0361"+
+ "\u0001\u0000\u0000\u0000\u0363\u0364\u0001\u0000\u0000\u0000\u0364\u037e"+
+ "\u0001\u0000\u0000\u0000\u0365\u0367\u0003M\u001e\u0000\u0366\u0365\u0001"+
+ "\u0000\u0000\u0000\u0367\u0368\u0001\u0000\u0000\u0000\u0368\u0366\u0001"+
+ "\u0000\u0000\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u0371\u0001"+
+ "\u0000\u0000\u0000\u036a\u036e\u0003y4\u0000\u036b\u036d\u0003M\u001e"+
+ "\u0000\u036c\u036b\u0001\u0000\u0000\u0000\u036d\u0370\u0001\u0000\u0000"+
+ "\u0000\u036e\u036c\u0001\u0000\u0000\u0000\u036e\u036f\u0001\u0000\u0000"+
+ "\u0000\u036f\u0372\u0001\u0000\u0000\u0000\u0370\u036e\u0001\u0000\u0000"+
+ "\u0000\u0371\u036a\u0001\u0000\u0000\u0000\u0371\u0372\u0001\u0000\u0000"+
+ "\u0000\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0374\u0003U\"\u0000"+
+ "\u0374\u037e\u0001\u0000\u0000\u0000\u0375\u0377\u0003y4\u0000\u0376\u0378"+
+ "\u0003M\u001e\u0000\u0377\u0376\u0001\u0000\u0000\u0000\u0378\u0379\u0001"+
+ "\u0000\u0000\u0000\u0379\u0377\u0001\u0000\u0000\u0000\u0379\u037a\u0001"+
+ "\u0000\u0000\u0000\u037a\u037b\u0001\u0000\u0000\u0000\u037b\u037c\u0003"+
+ "U\"\u0000\u037c\u037e\u0001\u0000\u0000\u0000\u037d\u0354\u0001\u0000"+
+ "\u0000\u0000\u037d\u035f\u0001\u0000\u0000\u0000\u037d\u0366\u0001\u0000"+
+ "\u0000\u0000\u037d\u0375\u0001\u0000\u0000\u0000\u037ef\u0001\u0000\u0000"+
+ "\u0000\u037f\u0380\u0007\f\u0000\u0000\u0380\u0381\u0007\t\u0000\u0000"+
+ "\u0381\u0382\u0007\u0000\u0000\u0000\u0382h\u0001\u0000\u0000\u0000\u0383"+
+ "\u0384\u0007\f\u0000\u0000\u0384\u0385\u0007\u0002\u0000\u0000\u0385j"+
+ "\u0001\u0000\u0000\u0000\u0386\u0387\u0007\f\u0000\u0000\u0387\u0388\u0007"+
+ "\u0002\u0000\u0000\u0388\u0389\u0007\u0004\u0000\u0000\u0389l\u0001\u0000"+
+ "\u0000\u0000\u038a\u038b\u0005=\u0000\u0000\u038bn\u0001\u0000\u0000\u0000"+
+ "\u038c\u038d\u0007\u001e\u0000\u0000\u038d\u038e\u0007\u001f\u0000\u0000"+
+ "\u038ep\u0001\u0000\u0000\u0000\u038f\u0390\u0005:\u0000\u0000\u0390\u0391"+
+ "\u0005:\u0000\u0000\u0391r\u0001\u0000\u0000\u0000\u0392\u0393\u0005:"+
+ "\u0000\u0000\u0393t\u0001\u0000\u0000\u0000\u0394\u0395\u0005,\u0000\u0000"+
+ "\u0395v\u0001\u0000\u0000\u0000\u0396\u0397\u0007\u0000\u0000\u0000\u0397"+
+ "\u0398\u0007\u0003\u0000\u0000\u0398\u0399\u0007\u0002\u0000\u0000\u0399"+
+ "\u039a\u0007\u0004\u0000\u0000\u039ax\u0001\u0000\u0000\u0000\u039b\u039c"+
+ "\u0005.\u0000\u0000\u039cz\u0001\u0000\u0000\u0000\u039d\u039e\u0007\u000f"+
+ "\u0000\u0000\u039e\u039f\u0007\f\u0000\u0000\u039f\u03a0\u0007\r\u0000"+
+ "\u0000\u03a0\u03a1\u0007\u0002\u0000\u0000\u03a1\u03a2\u0007\u0003\u0000"+
+ "\u0000\u03a2|\u0001\u0000\u0000\u0000\u03a3\u03a4\u0007\u000f\u0000\u0000"+
+ "\u03a4\u03a5\u0007\u0001\u0000\u0000\u03a5\u03a6\u0007\u0006\u0000\u0000"+
+ "\u03a6\u03a7\u0007\u0002\u0000\u0000\u03a7\u03a8\u0007\u0005\u0000\u0000"+
+ "\u03a8~\u0001\u0000\u0000\u0000\u03a9\u03aa\u0007\u0001\u0000\u0000\u03aa"+
+ "\u03ab\u0007\t\u0000\u0000\u03ab\u0080\u0001\u0000\u0000\u0000\u03ac\u03ad"+
+ "\u0007\u0001\u0000\u0000\u03ad\u03ae\u0007\u0002\u0000\u0000\u03ae\u0082"+
+ "\u0001\u0000\u0000\u0000\u03af\u03b0\u0007\r\u0000\u0000\u03b0\u03b1\u0007"+
+ "\f\u0000\u0000\u03b1\u03b2\u0007\u0002\u0000\u0000\u03b2\u03b3\u0007\u0005"+
+ "\u0000\u0000\u03b3\u0084\u0001\u0000\u0000\u0000\u03b4\u03b5\u0007\r\u0000"+
+ "\u0000\u03b5\u03b6\u0007\u0001\u0000\u0000\u03b6\u03b7\u0007\u0012\u0000"+
+ "\u0000\u03b7\u03b8\u0007\u0003\u0000\u0000\u03b8\u0086\u0001\u0000\u0000"+
+ "\u0000\u03b9\u03ba\u0005(\u0000\u0000\u03ba\u0088\u0001\u0000\u0000\u0000"+
+ "\u03bb\u03bc\u0007\t\u0000\u0000\u03bc\u03bd\u0007\u0007\u0000\u0000\u03bd"+
+ "\u03be\u0007\u0005\u0000\u0000\u03be\u008a\u0001\u0000\u0000\u0000\u03bf"+
+ "\u03c0\u0007\t\u0000\u0000\u03c0\u03c1\u0007\u0014\u0000\u0000\u03c1\u03c2"+
+ "\u0007\r\u0000\u0000\u03c2\u03c3\u0007\r\u0000\u0000\u03c3\u008c\u0001"+
+ "\u0000\u0000\u0000\u03c4\u03c5\u0007\t\u0000\u0000\u03c5\u03c6\u0007\u0014"+
+ "\u0000\u0000\u03c6\u03c7\u0007\r\u0000\u0000\u03c7\u03c8\u0007\r\u0000"+
+ "\u0000\u03c8\u03c9\u0007\u0002\u0000\u0000\u03c9\u008e\u0001\u0000\u0000"+
+ "\u0000\u03ca\u03cb\u0007\u0007\u0000\u0000\u03cb\u03cc\u0007\t\u0000\u0000"+
+ "\u03cc\u0090\u0001\u0000\u0000\u0000\u03cd\u03ce\u0007\u0007\u0000\u0000"+
+ "\u03ce\u03cf\u0007\u0006\u0000\u0000\u03cf\u0092\u0001\u0000\u0000\u0000"+
+ "\u03d0\u03d1\u0005?\u0000\u0000\u03d1\u0094\u0001\u0000\u0000\u0000\u03d2"+
+ "\u03d3\u0007\u0006\u0000\u0000\u03d3\u03d4\u0007\r\u0000\u0000\u03d4\u03d5"+
+ "\u0007\u0001\u0000\u0000\u03d5\u03d6\u0007\u0012\u0000\u0000\u03d6\u03d7"+
+ "\u0007\u0003\u0000\u0000\u03d7\u0096\u0001\u0000\u0000\u0000\u03d8\u03d9"+
+ "\u0005)\u0000\u0000\u03d9\u0098\u0001\u0000\u0000\u0000\u03da\u03db\u0007"+
+ "\u0005\u0000\u0000\u03db\u03dc\u0007\u0006\u0000\u0000\u03dc\u03dd\u0007"+
+ "\u0014\u0000\u0000\u03dd\u03de\u0007\u0003\u0000\u0000\u03de\u009a\u0001"+
+ "\u0000\u0000\u0000\u03df\u03e0\u0007\u0013\u0000\u0000\u03e0\u03e1\u0007"+
+ "\u0001\u0000\u0000\u03e1\u03e2\u0007\u0005\u0000\u0000\u03e2\u03e3\u0007"+
+ "\n\u0000\u0000\u03e3\u009c\u0001\u0000\u0000\u0000\u03e4\u03e5\u0005="+
+ "\u0000\u0000\u03e5\u03e6\u0005=\u0000\u0000\u03e6\u009e\u0001\u0000\u0000"+
+ "\u0000\u03e7\u03e8\u0005=\u0000\u0000\u03e8\u03e9\u0005~\u0000\u0000\u03e9"+
+ "\u00a0\u0001\u0000\u0000\u0000\u03ea\u03eb\u0005!\u0000\u0000\u03eb\u03ec"+
+ "\u0005=\u0000\u0000\u03ec\u00a2\u0001\u0000\u0000\u0000\u03ed\u03ee\u0005"+
+ "<\u0000\u0000\u03ee\u00a4\u0001\u0000\u0000\u0000\u03ef\u03f0\u0005<\u0000"+
+ "\u0000\u03f0\u03f1\u0005=\u0000\u0000\u03f1\u00a6\u0001\u0000\u0000\u0000"+
+ "\u03f2\u03f3\u0005>\u0000\u0000\u03f3\u00a8\u0001\u0000\u0000\u0000\u03f4"+
+ "\u03f5\u0005>\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6\u00aa\u0001"+
+ "\u0000\u0000\u0000\u03f7\u03f8\u0005+\u0000\u0000\u03f8\u00ac\u0001\u0000"+
+ "\u0000\u0000\u03f9\u03fa\u0005-\u0000\u0000\u03fa\u00ae\u0001\u0000\u0000"+
+ "\u0000\u03fb\u03fc\u0005*\u0000\u0000\u03fc\u00b0\u0001\u0000\u0000\u0000"+
+ "\u03fd\u03fe\u0005/\u0000\u0000\u03fe\u00b2\u0001\u0000\u0000\u0000\u03ff"+
+ "\u0400\u0005%\u0000\u0000\u0400\u00b4\u0001\u0000\u0000\u0000\u0401\u0402"+
+ "\u0005{\u0000\u0000\u0402\u00b6\u0001\u0000\u0000\u0000\u0403\u0404\u0005"+
+ "}\u0000\u0000\u0404\u00b8\u0001\u0000\u0000\u0000\u0405\u0406\u0005?\u0000"+
+ "\u0000\u0406\u0407\u0005?\u0000\u0000\u0407\u00ba\u0001\u0000\u0000\u0000"+
+ "\u0408\u0409\u0003/\u000f\u0000\u0409\u040a\u0001\u0000\u0000\u0000\u040a"+
+ "\u040b\u0006U\u000e\u0000\u040b\u00bc\u0001\u0000\u0000\u0000\u040c\u040f"+
+ "\u0003\u0093A\u0000\u040d\u0410\u0003O\u001f\u0000\u040e\u0410\u0003]"+
+ "&\u0000\u040f\u040d\u0001\u0000\u0000\u0000\u040f\u040e\u0001\u0000\u0000"+
+ "\u0000\u0410\u0414\u0001\u0000\u0000\u0000\u0411\u0413\u0003_\'\u0000"+
+ "\u0412\u0411\u0001\u0000\u0000\u0000\u0413\u0416\u0001\u0000\u0000\u0000"+
+ "\u0414\u0412\u0001\u0000\u0000\u0000\u0414\u0415\u0001\u0000\u0000\u0000"+
+ "\u0415\u041e\u0001\u0000\u0000\u0000\u0416\u0414\u0001\u0000\u0000\u0000"+
+ "\u0417\u0419\u0003\u0093A\u0000\u0418\u041a\u0003M\u001e\u0000\u0419\u0418"+
+ "\u0001\u0000\u0000\u0000\u041a\u041b\u0001\u0000\u0000\u0000\u041b\u0419"+
+ "\u0001\u0000\u0000\u0000\u041b\u041c\u0001\u0000\u0000\u0000\u041c\u041e"+
+ "\u0001\u0000\u0000\u0000\u041d\u040c\u0001\u0000\u0000\u0000\u041d\u0417"+
+ "\u0001\u0000\u0000\u0000\u041e\u00be\u0001\u0000\u0000\u0000\u041f\u0422"+
+ "\u0003\u00b9T\u0000\u0420\u0423\u0003O\u001f\u0000\u0421\u0423\u0003]"+
+ "&\u0000\u0422\u0420\u0001\u0000\u0000\u0000\u0422\u0421\u0001\u0000\u0000"+
+ "\u0000\u0423\u0427\u0001\u0000\u0000\u0000\u0424\u0426\u0003_\'\u0000"+
+ "\u0425\u0424\u0001\u0000\u0000\u0000\u0426\u0429\u0001\u0000\u0000\u0000"+
+ "\u0427\u0425\u0001\u0000\u0000\u0000\u0427\u0428\u0001\u0000\u0000\u0000"+
+ "\u0428\u0431\u0001\u0000\u0000\u0000\u0429\u0427\u0001\u0000\u0000\u0000"+
+ "\u042a\u042c\u0003\u00b9T\u0000\u042b\u042d\u0003M\u001e\u0000\u042c\u042b"+
+ "\u0001\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000\u042e\u042c"+
+ "\u0001\u0000\u0000\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0431"+
+ "\u0001\u0000\u0000\u0000\u0430\u041f\u0001\u0000\u0000\u0000\u0430\u042a"+
+ "\u0001\u0000\u0000\u0000\u0431\u00c0\u0001\u0000\u0000\u0000\u0432\u0433"+
+ "\u0005[\u0000\u0000\u0433\u0434\u0001\u0000\u0000\u0000\u0434\u0435\u0006"+
+ "X\u0000\u0000\u0435\u0436\u0006X\u0000\u0000\u0436\u00c2\u0001\u0000\u0000"+
+ "\u0000\u0437\u0438\u0005]\u0000\u0000\u0438\u0439\u0001\u0000\u0000\u0000"+
+ "\u0439\u043a\u0006Y\r\u0000\u043a\u043b\u0006Y\r\u0000\u043b\u00c4\u0001"+
+ "\u0000\u0000\u0000\u043c\u0440\u0003O\u001f\u0000\u043d\u043f\u0003_\'"+
+ "\u0000\u043e\u043d\u0001\u0000\u0000\u0000\u043f\u0442\u0001\u0000\u0000"+
+ "\u0000\u0440\u043e\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000\u0000"+
+ "\u0000\u0441\u044d\u0001\u0000\u0000\u0000\u0442\u0440\u0001\u0000\u0000"+
+ "\u0000\u0443\u0446\u0003]&\u0000\u0444\u0446\u0003W#\u0000\u0445\u0443"+
+ "\u0001\u0000\u0000\u0000\u0445\u0444\u0001\u0000\u0000\u0000\u0446\u0448"+
+ "\u0001\u0000\u0000\u0000\u0447\u0449\u0003_\'\u0000\u0448\u0447\u0001"+
+ "\u0000\u0000\u0000\u0449\u044a\u0001\u0000\u0000\u0000\u044a\u0448\u0001"+
+ "\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044d\u0001"+
+ "\u0000\u0000\u0000\u044c\u043c\u0001\u0000\u0000\u0000\u044c\u0445\u0001"+
+ "\u0000\u0000\u0000\u044d\u00c6\u0001\u0000\u0000\u0000\u044e\u0450\u0003"+
+ "Y$\u0000\u044f\u0451\u0003[%\u0000\u0450\u044f\u0001\u0000\u0000\u0000"+
+ "\u0451\u0452\u0001\u0000\u0000\u0000\u0452\u0450\u0001\u0000\u0000\u0000"+
+ "\u0452\u0453\u0001\u0000\u0000\u0000\u0453\u0454\u0001\u0000\u0000\u0000"+
+ "\u0454\u0455\u0003Y$\u0000\u0455\u00c8\u0001\u0000\u0000\u0000\u0456\u0457"+
+ "\u0003\u00c7[\u0000\u0457\u00ca\u0001\u0000\u0000\u0000\u0458\u0459\u0003"+
+ "E\u001a\u0000\u0459\u045a\u0001\u0000\u0000\u0000\u045a\u045b\u0006]\f"+
+ "\u0000\u045b\u00cc\u0001\u0000\u0000\u0000\u045c\u045d\u0003G\u001b\u0000"+
+ "\u045d\u045e\u0001\u0000\u0000\u0000\u045e\u045f\u0006^\f\u0000\u045f"+
+ "\u00ce\u0001\u0000\u0000\u0000\u0460\u0461\u0003I\u001c\u0000\u0461\u0462"+
+ "\u0001\u0000\u0000\u0000\u0462\u0463\u0006_\f\u0000\u0463\u00d0\u0001"+
+ "\u0000\u0000\u0000\u0464\u0465\u0003\u00c1X\u0000\u0465\u0466\u0001\u0000"+
+ "\u0000\u0000\u0466\u0467\u0006`\u000f\u0000\u0467\u0468\u0006`\u0010\u0000"+
+ "\u0468\u00d2\u0001\u0000\u0000\u0000\u0469\u046a\u0003K\u001d\u0000\u046a"+
+ "\u046b\u0001\u0000\u0000\u0000\u046b\u046c\u0006a\u0011\u0000\u046c\u046d"+
+ "\u0006a\r\u0000\u046d\u00d4\u0001\u0000\u0000\u0000\u046e\u046f\u0003"+
+ "I\u001c\u0000\u046f\u0470\u0001\u0000\u0000\u0000\u0470\u0471\u0006b\f"+
+ "\u0000\u0471\u00d6\u0001\u0000\u0000\u0000\u0472\u0473\u0003E\u001a\u0000"+
+ "\u0473\u0474\u0001\u0000\u0000\u0000\u0474\u0475\u0006c\f\u0000\u0475"+
+ "\u00d8\u0001\u0000\u0000\u0000\u0476\u0477\u0003G\u001b\u0000\u0477\u0478"+
+ "\u0001\u0000\u0000\u0000\u0478\u0479\u0006d\f\u0000\u0479\u00da\u0001"+
+ "\u0000\u0000\u0000\u047a\u047b\u0003K\u001d\u0000\u047b\u047c\u0001\u0000"+
+ "\u0000\u0000\u047c\u047d\u0006e\u0011\u0000\u047d\u047e\u0006e\r\u0000"+
+ "\u047e\u00dc\u0001\u0000\u0000\u0000\u047f\u0480\u0003\u00c1X\u0000\u0480"+
+ "\u0481\u0001\u0000\u0000\u0000\u0481\u0482\u0006f\u000f\u0000\u0482\u00de"+
+ "\u0001\u0000\u0000\u0000\u0483\u0484\u0003\u00c3Y\u0000\u0484\u0485\u0001"+
+ "\u0000\u0000\u0000\u0485\u0486\u0006g\u0012\u0000\u0486\u00e0\u0001\u0000"+
+ "\u0000\u0000\u0487\u0488\u0003s1\u0000\u0488\u0489\u0001\u0000\u0000\u0000"+
+ "\u0489\u048a\u0006h\u0013\u0000\u048a\u00e2\u0001\u0000\u0000\u0000\u048b"+
+ "\u048c\u0003q0\u0000\u048c\u048d\u0001\u0000\u0000\u0000\u048d\u048e\u0006"+
+ "i\u0014\u0000\u048e\u00e4\u0001\u0000\u0000\u0000\u048f\u0490\u0003u2"+
+ "\u0000\u0490\u0491\u0001\u0000\u0000\u0000\u0491\u0492\u0006j\u0015\u0000"+
+ "\u0492\u00e6\u0001\u0000\u0000\u0000\u0493\u0494\u0003m.\u0000\u0494\u0495"+
+ "\u0001\u0000\u0000\u0000\u0495\u0496\u0006k\u0016\u0000\u0496\u00e8\u0001"+
+ "\u0000\u0000\u0000\u0497\u0498\u0007\u0010\u0000\u0000\u0498\u0499\u0007"+
+ "\u0003\u0000\u0000\u0499\u049a\u0007\u0005\u0000\u0000\u049a\u049b\u0007"+
+ "\f\u0000\u0000\u049b\u049c\u0007\u0000\u0000\u0000\u049c\u049d\u0007\f"+
+ "\u0000\u0000\u049d\u049e\u0007\u0005\u0000\u0000\u049e\u049f\u0007\f\u0000"+
+ "\u0000\u049f\u00ea\u0001\u0000\u0000\u0000\u04a0\u04a4\b \u0000\u0000"+
+ "\u04a1\u04a2\u0005/\u0000\u0000\u04a2\u04a4\b!\u0000\u0000\u04a3\u04a0"+
+ "\u0001\u0000\u0000\u0000\u04a3\u04a1\u0001\u0000\u0000\u0000\u04a4\u00ec"+
+ "\u0001\u0000\u0000\u0000\u04a5\u04a7\u0003\u00ebm\u0000\u04a6\u04a5\u0001"+
+ "\u0000\u0000\u0000\u04a7\u04a8\u0001\u0000\u0000\u0000\u04a8\u04a6\u0001"+
+ "\u0000\u0000\u0000\u04a8\u04a9\u0001\u0000\u0000\u0000\u04a9\u00ee\u0001"+
+ "\u0000\u0000\u0000\u04aa\u04ab\u0003\u00edn\u0000\u04ab\u04ac\u0001\u0000"+
+ "\u0000\u0000\u04ac\u04ad\u0006o\u0017\u0000\u04ad\u00f0\u0001\u0000\u0000"+
+ "\u0000\u04ae\u04af\u0003a(\u0000\u04af\u04b0\u0001\u0000\u0000\u0000\u04b0"+
+ "\u04b1\u0006p\u0018\u0000\u04b1\u00f2\u0001\u0000\u0000\u0000\u04b2\u04b3"+
+ "\u0003E\u001a\u0000\u04b3\u04b4\u0001\u0000\u0000\u0000\u04b4\u04b5\u0006"+
+ "q\f\u0000\u04b5\u00f4\u0001\u0000\u0000\u0000\u04b6\u04b7\u0003G\u001b"+
+ "\u0000\u04b7\u04b8\u0001\u0000\u0000\u0000\u04b8\u04b9\u0006r\f\u0000"+
+ "\u04b9\u00f6\u0001\u0000\u0000\u0000\u04ba\u04bb\u0003I\u001c\u0000\u04bb"+
+ "\u04bc\u0001\u0000\u0000\u0000\u04bc\u04bd\u0006s\f\u0000\u04bd\u00f8"+
+ "\u0001\u0000\u0000\u0000\u04be\u04bf\u0003K\u001d\u0000\u04bf\u04c0\u0001"+
+ "\u0000\u0000\u0000\u04c0\u04c1\u0006t\u0011\u0000\u04c1\u04c2\u0006t\r"+
+ "\u0000\u04c2\u00fa\u0001\u0000\u0000\u0000\u04c3\u04c4\u0003y4\u0000\u04c4"+
+ "\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0006u\u0019\u0000\u04c6\u00fc"+
+ "\u0001\u0000\u0000\u0000\u04c7\u04c8\u0003u2\u0000\u04c8\u04c9\u0001\u0000"+
+ "\u0000\u0000\u04c9\u04ca\u0006v\u0015\u0000\u04ca\u00fe\u0001\u0000\u0000"+
+ "\u0000\u04cb\u04cc\u0003\u0093A\u0000\u04cc\u04cd\u0001\u0000\u0000\u0000"+
+ "\u04cd\u04ce\u0006w\u001a\u0000\u04ce\u0100\u0001\u0000\u0000\u0000\u04cf"+
+ "\u04d0\u0003\u00bdV\u0000\u04d0\u04d1\u0001\u0000\u0000\u0000\u04d1\u04d2"+
+ "\u0006x\u001b\u0000\u04d2\u0102\u0001\u0000\u0000\u0000\u04d3\u04d4\u0003"+
+ "\u00b9T\u0000\u04d4\u04d5\u0001\u0000\u0000\u0000\u04d5\u04d6\u0006y\u001c"+
+ "\u0000\u04d6\u0104\u0001\u0000\u0000\u0000\u04d7\u04d8\u0003\u00bfW\u0000"+
+ "\u04d8\u04d9\u0001\u0000\u0000\u0000\u04d9\u04da\u0006z\u001d\u0000\u04da"+
+ "\u0106\u0001\u0000\u0000\u0000\u04db\u04e0\u0003O\u001f\u0000\u04dc\u04e0"+
+ "\u0003M\u001e\u0000\u04dd\u04e0\u0003]&\u0000\u04de\u04e0\u0003\u00af"+
+ "O\u0000\u04df\u04db\u0001\u0000\u0000\u0000\u04df\u04dc\u0001\u0000\u0000"+
+ "\u0000\u04df\u04dd\u0001\u0000\u0000\u0000\u04df\u04de\u0001\u0000\u0000"+
+ "\u0000\u04e0\u0108\u0001\u0000\u0000\u0000\u04e1\u04e4\u0003O\u001f\u0000"+
+ "\u04e2\u04e4\u0003\u00afO\u0000\u04e3\u04e1\u0001\u0000\u0000\u0000\u04e3"+
+ "\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e8\u0001\u0000\u0000\u0000\u04e5"+
+ "\u04e7\u0003\u0107{\u0000\u04e6\u04e5\u0001\u0000\u0000\u0000\u04e7\u04ea"+
+ "\u0001\u0000\u0000\u0000\u04e8\u04e6\u0001\u0000\u0000\u0000\u04e8\u04e9"+
+ "\u0001\u0000\u0000\u0000\u04e9\u04f5\u0001\u0000\u0000\u0000\u04ea\u04e8"+
+ "\u0001\u0000\u0000\u0000\u04eb\u04ee\u0003]&\u0000\u04ec\u04ee\u0003W"+
+ "#\u0000\u04ed\u04eb\u0001\u0000\u0000\u0000\u04ed\u04ec\u0001\u0000\u0000"+
+ "\u0000\u04ee\u04f0\u0001\u0000\u0000\u0000\u04ef\u04f1\u0003\u0107{\u0000"+
+ "\u04f0\u04ef\u0001\u0000\u0000\u0000\u04f1\u04f2\u0001\u0000\u0000\u0000"+
+ "\u04f2\u04f0\u0001\u0000\u0000\u0000\u04f2\u04f3\u0001\u0000\u0000\u0000"+
+ "\u04f3\u04f5\u0001\u0000\u0000\u0000\u04f4\u04e3\u0001\u0000\u0000\u0000"+
+ "\u04f4\u04ed\u0001\u0000\u0000\u0000\u04f5\u010a\u0001\u0000\u0000\u0000"+
+ "\u04f6\u04f9\u0003\u0109|\u0000\u04f7\u04f9\u0003\u00c7[\u0000\u04f8\u04f6"+
+ "\u0001\u0000\u0000\u0000\u04f8\u04f7\u0001\u0000\u0000\u0000\u04f9\u04fa"+
+ "\u0001\u0000\u0000\u0000\u04fa\u04f8\u0001\u0000\u0000\u0000\u04fa\u04fb"+
+ "\u0001\u0000\u0000\u0000\u04fb\u010c\u0001\u0000\u0000\u0000\u04fc\u04fd"+
+ "\u0003E\u001a\u0000\u04fd\u04fe\u0001\u0000\u0000\u0000\u04fe\u04ff\u0006"+
+ "~\f\u0000\u04ff\u010e\u0001\u0000\u0000\u0000\u0500\u0501\u0003G\u001b"+
+ "\u0000\u0501\u0502\u0001\u0000\u0000\u0000\u0502\u0503\u0006\u007f\f\u0000"+
+ "\u0503\u0110\u0001\u0000\u0000\u0000\u0504\u0505\u0003I\u001c\u0000\u0505"+
+ "\u0506\u0001\u0000\u0000\u0000\u0506\u0507\u0006\u0080\f\u0000\u0507\u0112"+
+ "\u0001\u0000\u0000\u0000\u0508\u0509\u0003K\u001d\u0000\u0509\u050a\u0001"+
+ "\u0000\u0000\u0000\u050a\u050b\u0006\u0081\u0011\u0000\u050b\u050c\u0006"+
+ "\u0081\r\u0000\u050c\u0114\u0001\u0000\u0000\u0000\u050d\u050e\u0003m"+
+ ".\u0000\u050e\u050f\u0001\u0000\u0000\u0000\u050f\u0510\u0006\u0082\u0016"+
+ "\u0000\u0510\u0116\u0001\u0000\u0000\u0000\u0511\u0512\u0003u2\u0000\u0512"+
+ "\u0513\u0001\u0000\u0000\u0000\u0513\u0514\u0006\u0083\u0015\u0000\u0514"+
+ "\u0118\u0001\u0000\u0000\u0000\u0515\u0516\u0003y4\u0000\u0516\u0517\u0001"+
+ "\u0000\u0000\u0000\u0517\u0518\u0006\u0084\u0019\u0000\u0518\u011a\u0001"+
+ "\u0000\u0000\u0000\u0519\u051a\u0003\u0093A\u0000\u051a\u051b\u0001\u0000"+
+ "\u0000\u0000\u051b\u051c\u0006\u0085\u001a\u0000\u051c\u011c\u0001\u0000"+
+ "\u0000\u0000\u051d\u051e\u0003\u00bdV\u0000\u051e\u051f\u0001\u0000\u0000"+
+ "\u0000\u051f\u0520\u0006\u0086\u001b\u0000\u0520\u011e\u0001\u0000\u0000"+
+ "\u0000\u0521\u0522\u0003\u00b9T\u0000\u0522\u0523\u0001\u0000\u0000\u0000"+
+ "\u0523\u0524\u0006\u0087\u001c\u0000\u0524\u0120\u0001\u0000\u0000\u0000"+
+ "\u0525\u0526\u0003\u00bfW\u0000\u0526\u0527\u0001\u0000\u0000\u0000\u0527"+
+ "\u0528\u0006\u0088\u001d\u0000\u0528\u0122\u0001\u0000\u0000\u0000\u0529"+
+ "\u052a\u0003i,\u0000\u052a\u052b\u0001\u0000\u0000\u0000\u052b\u052c\u0006"+
+ "\u0089\u001e\u0000\u052c\u0124\u0001\u0000\u0000\u0000\u052d\u052e\u0003"+
+ "\u010b}\u0000\u052e\u052f\u0001\u0000\u0000\u0000\u052f\u0530\u0006\u008a"+
+ "\u001f\u0000\u0530\u0126\u0001\u0000\u0000\u0000\u0531\u0532\u0003E\u001a"+
+ "\u0000\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0006\u008b\f\u0000"+
+ "\u0534\u0128\u0001\u0000\u0000\u0000\u0535\u0536\u0003G\u001b\u0000\u0536"+
+ "\u0537\u0001\u0000\u0000\u0000\u0537\u0538\u0006\u008c\f\u0000\u0538\u012a"+
+ "\u0001\u0000\u0000\u0000\u0539\u053a\u0003I\u001c\u0000\u053a\u053b\u0001"+
+ "\u0000\u0000\u0000\u053b\u053c\u0006\u008d\f\u0000\u053c\u012c\u0001\u0000"+
+ "\u0000\u0000\u053d\u053e\u0003K\u001d\u0000\u053e\u053f\u0001\u0000\u0000"+
+ "\u0000\u053f\u0540\u0006\u008e\u0011\u0000\u0540\u0541\u0006\u008e\r\u0000"+
+ "\u0541\u012e\u0001\u0000\u0000\u0000\u0542\u0543\u0003\u00c1X\u0000\u0543"+
+ "\u0544\u0001\u0000\u0000\u0000\u0544\u0545\u0006\u008f\u000f\u0000\u0545"+
+ "\u0546\u0006\u008f \u0000\u0546\u0130\u0001\u0000\u0000\u0000\u0547\u0548"+
+ "\u0003\u008f?\u0000\u0548\u0549\u0001\u0000\u0000\u0000\u0549\u054a\u0006"+
+ "\u0090!\u0000\u054a\u054b\u0006\u0090\"\u0000\u054b\u0132\u0001\u0000"+
+ "\u0000\u0000\u054c\u054d\u0003\u009bE\u0000\u054d\u054e\u0001\u0000\u0000"+
+ "\u0000\u054e\u054f\u0006\u0091#\u0000\u054f\u0550\u0006\u0091\"\u0000"+
+ "\u0550\u0134\u0001\u0000\u0000\u0000\u0551\u0552\b\"\u0000\u0000\u0552"+
+ "\u0136\u0001\u0000\u0000\u0000\u0553\u0555\u0003\u0135\u0092\u0000\u0554"+
+ "\u0553\u0001\u0000\u0000\u0000\u0555\u0556\u0001\u0000\u0000\u0000\u0556"+
+ "\u0554\u0001\u0000\u0000\u0000\u0556\u0557\u0001\u0000\u0000\u0000\u0557"+
+ "\u0558\u0001\u0000\u0000\u0000\u0558\u0559\u0003s1\u0000\u0559\u055b\u0001"+
+ "\u0000\u0000\u0000\u055a\u0554\u0001\u0000\u0000\u0000\u055a\u055b\u0001"+
+ "\u0000\u0000\u0000\u055b\u055d\u0001\u0000\u0000\u0000\u055c\u055e\u0003"+
+ "\u0135\u0092\u0000\u055d\u055c\u0001\u0000\u0000\u0000\u055e\u055f\u0001"+
+ "\u0000\u0000\u0000\u055f\u055d\u0001\u0000\u0000\u0000\u055f\u0560\u0001"+
+ "\u0000\u0000\u0000\u0560\u0138\u0001\u0000\u0000\u0000\u0561\u0562\u0003"+
+ "\u0137\u0093\u0000\u0562\u0563\u0001\u0000\u0000\u0000\u0563\u0564\u0006"+
+ "\u0094$\u0000\u0564\u013a\u0001\u0000\u0000\u0000\u0565\u0566\u0003E\u001a"+
+ "\u0000\u0566\u0567\u0001\u0000\u0000\u0000\u0567\u0568\u0006\u0095\f\u0000"+
+ "\u0568\u013c\u0001\u0000\u0000\u0000\u0569\u056a\u0003G\u001b\u0000\u056a"+
+ "\u056b\u0001\u0000\u0000\u0000\u056b\u056c\u0006\u0096\f\u0000\u056c\u013e"+
+ "\u0001\u0000\u0000\u0000\u056d\u056e\u0003I\u001c\u0000\u056e\u056f\u0001"+
+ "\u0000\u0000\u0000\u056f\u0570\u0006\u0097\f\u0000\u0570\u0140\u0001\u0000"+
+ "\u0000\u0000\u0571\u0572\u0003K\u001d\u0000\u0572\u0573\u0001\u0000\u0000"+
+ "\u0000\u0573\u0574\u0006\u0098\u0011\u0000\u0574\u0575\u0006\u0098\r\u0000"+
+ "\u0575\u0576\u0006\u0098\r\u0000\u0576\u0142\u0001\u0000\u0000\u0000\u0577"+
+ "\u0578\u0003m.\u0000\u0578\u0579\u0001\u0000\u0000\u0000\u0579\u057a\u0006"+
+ "\u0099\u0016\u0000\u057a\u0144\u0001\u0000\u0000\u0000\u057b\u057c\u0003"+
+ "u2\u0000\u057c\u057d\u0001\u0000\u0000\u0000\u057d\u057e\u0006\u009a\u0015"+
+ "\u0000\u057e\u0146\u0001\u0000\u0000\u0000\u057f\u0580\u0003y4\u0000\u0580"+
+ "\u0581\u0001\u0000\u0000\u0000\u0581\u0582\u0006\u009b\u0019\u0000\u0582"+
+ "\u0148\u0001\u0000\u0000\u0000\u0583\u0584\u0003\u009bE\u0000\u0584\u0585"+
+ "\u0001\u0000\u0000\u0000\u0585\u0586\u0006\u009c#\u0000\u0586\u014a\u0001"+
+ "\u0000\u0000\u0000\u0587\u0588\u0003\u010b}\u0000\u0588\u0589\u0001\u0000"+
+ "\u0000\u0000\u0589\u058a\u0006\u009d\u001f\u0000\u058a\u014c\u0001\u0000"+
+ "\u0000\u0000\u058b\u058c\u0003\u00c9\\\u0000\u058c\u058d\u0001\u0000\u0000"+
+ "\u0000\u058d\u058e\u0006\u009e%\u0000\u058e\u014e\u0001\u0000\u0000\u0000"+
+ "\u058f\u0590\u0003\u0093A\u0000\u0590\u0591\u0001\u0000\u0000\u0000\u0591"+
+ "\u0592\u0006\u009f\u001a\u0000\u0592\u0150\u0001\u0000\u0000\u0000\u0593"+
+ "\u0594\u0003\u00bdV\u0000\u0594\u0595\u0001\u0000\u0000\u0000\u0595\u0596"+
+ "\u0006\u00a0\u001b\u0000\u0596\u0152\u0001\u0000\u0000\u0000\u0597\u0598"+
+ "\u0003\u00b9T\u0000\u0598\u0599\u0001\u0000\u0000\u0000\u0599\u059a\u0006"+
+ "\u00a1\u001c\u0000\u059a\u0154\u0001\u0000\u0000\u0000\u059b\u059c\u0003"+
+ "\u00bfW\u0000\u059c\u059d\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u00a2"+
+ "\u001d\u0000\u059e\u0156\u0001\u0000\u0000\u0000\u059f\u05a0\u0003E\u001a"+
+ "\u0000\u05a0\u05a1\u0001\u0000\u0000\u0000\u05a1\u05a2\u0006\u00a3\f\u0000"+
+ "\u05a2\u0158\u0001\u0000\u0000\u0000\u05a3\u05a4\u0003G\u001b\u0000\u05a4"+
+ "\u05a5\u0001\u0000\u0000\u0000\u05a5\u05a6\u0006\u00a4\f\u0000\u05a6\u015a"+
+ "\u0001\u0000\u0000\u0000\u05a7\u05a8\u0003I\u001c\u0000\u05a8\u05a9\u0001"+
+ "\u0000\u0000\u0000\u05a9\u05aa\u0006\u00a5\f\u0000\u05aa\u015c\u0001\u0000"+
+ "\u0000\u0000\u05ab\u05ac\u0003K\u001d\u0000\u05ac\u05ad\u0001\u0000\u0000"+
+ "\u0000\u05ad\u05ae\u0006\u00a6\u0011\u0000\u05ae\u05af\u0006\u00a6\r\u0000"+
+ "\u05af\u015e\u0001\u0000\u0000\u0000\u05b0\u05b1\u0003y4\u0000\u05b1\u05b2"+
+ "\u0001\u0000\u0000\u0000\u05b2\u05b3\u0006\u00a7\u0019\u0000\u05b3\u0160"+
+ "\u0001\u0000\u0000\u0000\u05b4\u05b5\u0003\u0093A\u0000\u05b5\u05b6\u0001"+
+ "\u0000\u0000\u0000\u05b6\u05b7\u0006\u00a8\u001a\u0000\u05b7\u0162\u0001"+
+ "\u0000\u0000\u0000\u05b8\u05b9\u0003\u00bdV\u0000\u05b9\u05ba\u0001\u0000"+
+ "\u0000\u0000\u05ba\u05bb\u0006\u00a9\u001b\u0000\u05bb\u0164\u0001\u0000"+
+ "\u0000\u0000\u05bc\u05bd\u0003\u00b9T\u0000\u05bd\u05be\u0001\u0000\u0000"+
+ "\u0000\u05be\u05bf\u0006\u00aa\u001c\u0000\u05bf\u0166\u0001\u0000\u0000"+
+ "\u0000\u05c0\u05c1\u0003\u00bfW\u0000\u05c1\u05c2\u0001\u0000\u0000\u0000"+
+ "\u05c2\u05c3\u0006\u00ab\u001d\u0000\u05c3\u0168\u0001\u0000\u0000\u0000"+
+ "\u05c4\u05c5\u0003\u00c9\\\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6"+
+ "\u05c7\u0006\u00ac%\u0000\u05c7\u016a\u0001\u0000\u0000\u0000\u05c8\u05c9"+
+ "\u0003\u00c5Z\u0000\u05c9\u05ca\u0001\u0000\u0000\u0000\u05ca\u05cb\u0006"+
+ "\u00ad&\u0000\u05cb\u016c\u0001\u0000\u0000\u0000\u05cc\u05cd\u0003E\u001a"+
+ "\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce\u05cf\u0006\u00ae\f\u0000"+
+ "\u05cf\u016e\u0001\u0000\u0000\u0000\u05d0\u05d1\u0003G\u001b\u0000\u05d1"+
+ "\u05d2\u0001\u0000\u0000\u0000\u05d2\u05d3\u0006\u00af\f\u0000\u05d3\u0170"+
+ "\u0001\u0000\u0000\u0000\u05d4\u05d5\u0003I\u001c\u0000\u05d5\u05d6\u0001"+
+ "\u0000\u0000\u0000\u05d6\u05d7\u0006\u00b0\f\u0000\u05d7\u0172\u0001\u0000"+
+ "\u0000\u0000\u05d8\u05d9\u0003K\u001d\u0000\u05d9\u05da\u0001\u0000\u0000"+
+ "\u0000\u05da\u05db\u0006\u00b1\u0011\u0000\u05db\u05dc\u0006\u00b1\r\u0000"+
+ "\u05dc\u0174\u0001\u0000\u0000\u0000\u05dd\u05de\u0007\u0001\u0000\u0000"+
+ "\u05de\u05df\u0007\t\u0000\u0000\u05df\u05e0\u0007\u000f\u0000\u0000\u05e0"+
+ "\u05e1\u0007\u0007\u0000\u0000\u05e1\u0176\u0001\u0000\u0000\u0000\u05e2"+
+ "\u05e3\u0003E\u001a\u0000\u05e3\u05e4\u0001\u0000\u0000\u0000\u05e4\u05e5"+
+ "\u0006\u00b3\f\u0000\u05e5\u0178\u0001\u0000\u0000\u0000\u05e6\u05e7\u0003"+
+ "G\u001b\u0000\u05e7\u05e8\u0001\u0000\u0000\u0000\u05e8\u05e9\u0006\u00b4"+
+ "\f\u0000\u05e9\u017a\u0001\u0000\u0000\u0000\u05ea\u05eb\u0003I\u001c"+
+ "\u0000\u05eb\u05ec\u0001\u0000\u0000\u0000\u05ec\u05ed\u0006\u00b5\f\u0000"+
+ "\u05ed\u017c\u0001\u0000\u0000\u0000\u05ee\u05ef\u0003\u00c3Y\u0000\u05ef"+
+ "\u05f0\u0001\u0000\u0000\u0000\u05f0\u05f1\u0006\u00b6\u0012\u0000\u05f1"+
+ "\u05f2\u0006\u00b6\r\u0000\u05f2\u017e\u0001\u0000\u0000\u0000\u05f3\u05f4"+
+ "\u0003s1\u0000\u05f4\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f6\u0006\u00b7"+
+ "\u0013\u0000\u05f6\u0180\u0001\u0000\u0000\u0000\u05f7\u05fd\u0003W#\u0000"+
+ "\u05f8\u05fd\u0003M\u001e\u0000\u05f9\u05fd\u0003y4\u0000\u05fa\u05fd"+
+ "\u0003O\u001f\u0000\u05fb\u05fd\u0003]&\u0000\u05fc\u05f7\u0001\u0000"+
+ "\u0000\u0000\u05fc\u05f8\u0001\u0000\u0000\u0000\u05fc\u05f9\u0001\u0000"+
+ "\u0000\u0000\u05fc\u05fa\u0001\u0000\u0000\u0000\u05fc\u05fb\u0001\u0000"+
+ "\u0000\u0000\u05fd\u05fe\u0001\u0000\u0000\u0000\u05fe\u05fc\u0001\u0000"+
+ "\u0000\u0000\u05fe\u05ff\u0001\u0000\u0000\u0000\u05ff\u0182\u0001\u0000"+
+ "\u0000\u0000\u0600\u0601\u0003E\u001a\u0000\u0601\u0602\u0001\u0000\u0000"+
+ "\u0000\u0602\u0603\u0006\u00b9\f\u0000\u0603\u0184\u0001\u0000\u0000\u0000"+
+ "\u0604\u0605\u0003G\u001b\u0000\u0605\u0606\u0001\u0000\u0000\u0000\u0606"+
+ "\u0607\u0006\u00ba\f\u0000\u0607\u0186\u0001\u0000\u0000\u0000\u0608\u0609"+
+ "\u0003I\u001c\u0000\u0609\u060a\u0001\u0000\u0000\u0000\u060a\u060b\u0006"+
+ "\u00bb\f\u0000\u060b\u0188\u0001\u0000\u0000\u0000\u060c\u060d\u0003K"+
+ "\u001d\u0000\u060d\u060e\u0001\u0000\u0000\u0000\u060e\u060f\u0006\u00bc"+
+ "\u0011\u0000\u060f\u0610\u0006\u00bc\r\u0000\u0610\u018a\u0001\u0000\u0000"+
+ "\u0000\u0611\u0612\u0003s1\u0000\u0612\u0613\u0001\u0000\u0000\u0000\u0613"+
+ "\u0614\u0006\u00bd\u0013\u0000\u0614\u018c\u0001\u0000\u0000\u0000\u0615"+
+ "\u0616\u0003u2\u0000\u0616\u0617\u0001\u0000\u0000\u0000\u0617\u0618\u0006"+
+ "\u00be\u0015\u0000\u0618\u018e\u0001\u0000\u0000\u0000\u0619\u061a\u0003"+
+ "y4\u0000\u061a\u061b\u0001\u0000\u0000\u0000\u061b\u061c\u0006\u00bf\u0019"+
+ "\u0000\u061c\u0190\u0001\u0000\u0000\u0000\u061d\u061e\u0003\u008f?\u0000"+
+ "\u061e\u061f\u0001\u0000\u0000\u0000\u061f\u0620\u0006\u00c0!\u0000\u0620"+
+ "\u0621\u0006\u00c0\'\u0000\u0621\u0192\u0001\u0000\u0000\u0000\u0622\u0623"+
+ "\u0003\u00edn\u0000\u0623\u0624\u0001\u0000\u0000\u0000\u0624\u0625\u0006"+
+ "\u00c1\u0017\u0000\u0625\u0194\u0001\u0000\u0000\u0000\u0626\u0627\u0003"+
+ "a(\u0000\u0627\u0628\u0001\u0000\u0000\u0000\u0628\u0629\u0006\u00c2\u0018"+
+ "\u0000\u0629\u0196\u0001\u0000\u0000\u0000\u062a\u062b\u0003E\u001a\u0000"+
+ "\u062b\u062c\u0001\u0000\u0000\u0000\u062c\u062d\u0006\u00c3\f\u0000\u062d"+
+ "\u0198\u0001\u0000\u0000\u0000\u062e\u062f\u0003G\u001b\u0000\u062f\u0630"+
+ "\u0001\u0000\u0000\u0000\u0630\u0631\u0006\u00c4\f\u0000\u0631\u019a\u0001"+
+ "\u0000\u0000\u0000\u0632\u0633\u0003I\u001c\u0000\u0633\u0634\u0001\u0000"+
+ "\u0000\u0000\u0634\u0635\u0006\u00c5\f\u0000\u0635\u019c\u0001\u0000\u0000"+
+ "\u0000\u0636\u0637\u0003K\u001d\u0000\u0637\u0638\u0001\u0000\u0000\u0000"+
+ "\u0638\u0639\u0006\u00c6\u0011\u0000\u0639\u063a\u0006\u00c6\r\u0000\u063a"+
+ "\u063b\u0006\u00c6\r\u0000\u063b\u019e\u0001\u0000\u0000\u0000\u063c\u063d"+
+ "\u0003u2\u0000\u063d\u063e\u0001\u0000\u0000\u0000\u063e\u063f\u0006\u00c7"+
+ "\u0015\u0000\u063f\u01a0\u0001\u0000\u0000\u0000\u0640\u0641\u0003y4\u0000"+
+ "\u0641\u0642\u0001\u0000\u0000\u0000\u0642\u0643\u0006\u00c8\u0019\u0000"+
+ "\u0643\u01a2\u0001\u0000\u0000\u0000\u0644\u0645\u0003\u010b}\u0000\u0645"+
+ "\u0646\u0001\u0000\u0000\u0000\u0646\u0647\u0006\u00c9\u001f\u0000\u0647"+
+ "\u01a4\u0001\u0000\u0000\u0000\u0648\u0649\u0003E\u001a\u0000\u0649\u064a"+
+ "\u0001\u0000\u0000\u0000\u064a\u064b\u0006\u00ca\f\u0000\u064b\u01a6\u0001"+
+ "\u0000\u0000\u0000\u064c\u064d\u0003G\u001b\u0000\u064d\u064e\u0001\u0000"+
+ "\u0000\u0000\u064e\u064f\u0006\u00cb\f\u0000\u064f\u01a8\u0001\u0000\u0000"+
+ "\u0000\u0650\u0651\u0003I\u001c\u0000\u0651\u0652\u0001\u0000\u0000\u0000"+
+ "\u0652\u0653\u0006\u00cc\f\u0000\u0653\u01aa\u0001\u0000\u0000\u0000\u0654"+
+ "\u0655\u0003K\u001d\u0000\u0655\u0656\u0001\u0000\u0000\u0000\u0656\u0657"+
+ "\u0006\u00cd\u0011\u0000\u0657\u0658\u0006\u00cd\r\u0000\u0658\u01ac\u0001"+
+ "\u0000\u0000\u0000\u0659\u065a\u0007#\u0000\u0000\u065a\u065b\u0007\u0007"+
+ "\u0000\u0000\u065b\u065c\u0007\u0001\u0000\u0000\u065c\u065d\u0007\t\u0000"+
+ "\u0000\u065d\u01ae\u0001\u0000\u0000\u0000\u065e\u065f\u0003i,\u0000\u065f"+
+ "\u0660\u0001\u0000\u0000\u0000\u0660\u0661\u0006\u00cf\u001e\u0000\u0661"+
+ "\u01b0\u0001\u0000\u0000\u0000\u0662\u0663\u0003\u008f?\u0000\u0663\u0664"+
+ "\u0001\u0000\u0000\u0000\u0664\u0665\u0006\u00d0!\u0000\u0665\u0666\u0006"+
+ "\u00d0\r\u0000\u0666\u0667\u0006\u00d0\u0000\u0000\u0667\u01b2\u0001\u0000"+
+ "\u0000\u0000\u0668\u0669\u0007\u0014\u0000\u0000\u0669\u066a\u0007\u0002"+
+ "\u0000\u0000\u066a\u066b\u0007\u0001\u0000\u0000\u066b\u066c\u0007\t\u0000"+
+ "\u0000\u066c\u066d\u0007\u0011\u0000\u0000\u066d\u066e\u0001\u0000\u0000"+
+ "\u0000\u066e\u066f\u0006\u00d1\r\u0000\u066f\u0670\u0006\u00d1\u0000\u0000"+
+ "\u0670\u01b4\u0001\u0000\u0000\u0000\u0671\u0672\u0003\u00edn\u0000\u0672"+
+ "\u0673\u0001\u0000\u0000\u0000\u0673\u0674\u0006\u00d2\u0017\u0000\u0674"+
+ "\u01b6\u0001\u0000\u0000\u0000\u0675\u0676\u0003a(\u0000\u0676\u0677\u0001"+
+ "\u0000\u0000\u0000\u0677\u0678\u0006\u00d3\u0018\u0000\u0678\u01b8\u0001"+
+ "\u0000\u0000\u0000\u0679\u067a\u0003s1\u0000\u067a\u067b\u0001\u0000\u0000"+
+ "\u0000\u067b\u067c\u0006\u00d4\u0013\u0000\u067c\u01ba\u0001\u0000\u0000"+
+ "\u0000\u067d\u067e\u0003\u00c5Z\u0000\u067e\u067f\u0001\u0000\u0000\u0000"+
+ "\u067f\u0680\u0006\u00d5&\u0000\u0680\u01bc\u0001\u0000\u0000\u0000\u0681"+
+ "\u0682\u0003\u00c9\\\u0000\u0682\u0683\u0001\u0000\u0000\u0000\u0683\u0684"+
+ "\u0006\u00d6%\u0000\u0684\u01be\u0001\u0000\u0000\u0000\u0685\u0686\u0003"+
+ "E\u001a\u0000\u0686\u0687\u0001\u0000\u0000\u0000\u0687\u0688\u0006\u00d7"+
+ "\f\u0000\u0688\u01c0\u0001\u0000\u0000\u0000\u0689\u068a\u0003G\u001b"+
+ "\u0000\u068a\u068b\u0001\u0000\u0000\u0000\u068b\u068c\u0006\u00d8\f\u0000"+
+ "\u068c\u01c2\u0001\u0000\u0000\u0000\u068d\u068e\u0003I\u001c\u0000\u068e"+
+ "\u068f\u0001\u0000\u0000\u0000\u068f\u0690\u0006\u00d9\f\u0000\u0690\u01c4"+
+ "\u0001\u0000\u0000\u0000\u0691\u0692\u0003K\u001d\u0000\u0692\u0693\u0001"+
+ "\u0000\u0000\u0000\u0693\u0694\u0006\u00da\u0011\u0000\u0694\u0695\u0006"+
+ "\u00da\r\u0000\u0695\u01c6\u0001\u0000\u0000\u0000\u0696\u0697\u0003\u00ed"+
+ "n\u0000\u0697\u0698\u0001\u0000\u0000\u0000\u0698\u0699\u0006\u00db\u0017"+
+ "\u0000\u0699\u069a\u0006\u00db\r\u0000\u069a\u069b\u0006\u00db(\u0000"+
+ "\u069b\u01c8\u0001\u0000\u0000\u0000\u069c\u069d\u0003a(\u0000\u069d\u069e"+
+ "\u0001\u0000\u0000\u0000\u069e\u069f\u0006\u00dc\u0018\u0000\u069f\u06a0"+
+ "\u0006\u00dc\r\u0000\u06a0\u06a1\u0006\u00dc(\u0000\u06a1\u01ca\u0001"+
+ "\u0000\u0000\u0000\u06a2\u06a3\u0003E\u001a\u0000\u06a3\u06a4\u0001\u0000"+
+ "\u0000\u0000\u06a4\u06a5\u0006\u00dd\f\u0000\u06a5\u01cc\u0001\u0000\u0000"+
+ "\u0000\u06a6\u06a7\u0003G\u001b\u0000\u06a7\u06a8\u0001\u0000\u0000\u0000"+
+ "\u06a8\u06a9\u0006\u00de\f\u0000\u06a9\u01ce\u0001\u0000\u0000\u0000\u06aa"+
+ "\u06ab\u0003I\u001c\u0000\u06ab\u06ac\u0001\u0000\u0000\u0000\u06ac\u06ad"+
+ "\u0006\u00df\f\u0000\u06ad\u01d0\u0001\u0000\u0000\u0000\u06ae\u06af\u0003"+
+ "s1\u0000\u06af\u06b0\u0001\u0000\u0000\u0000\u06b0\u06b1\u0006\u00e0\u0013"+
+ "\u0000\u06b1\u06b2\u0006\u00e0\r\u0000\u06b2\u06b3\u0006\u00e0\u000b\u0000"+
+ "\u06b3\u01d2\u0001\u0000\u0000\u0000\u06b4\u06b5\u0003q0\u0000\u06b5\u06b6"+
+ "\u0001\u0000\u0000\u0000\u06b6\u06b7\u0006\u00e1\u0014\u0000\u06b7\u06b8"+
+ "\u0006\u00e1\r\u0000\u06b8\u06b9\u0006\u00e1\u000b\u0000\u06b9\u01d4\u0001"+
+ "\u0000\u0000\u0000\u06ba\u06bb\u0003u2\u0000\u06bb\u06bc\u0001\u0000\u0000"+
+ "\u0000\u06bc\u06bd\u0006\u00e2\u0015\u0000\u06bd\u06be\u0006\u00e2\r\u0000"+
+ "\u06be\u06bf\u0006\u00e2\u000b\u0000\u06bf\u01d6\u0001\u0000\u0000\u0000"+
+ "\u06c0\u06c1\u0003E\u001a\u0000\u06c1\u06c2\u0001\u0000\u0000\u0000\u06c2"+
+ "\u06c3\u0006\u00e3\f\u0000\u06c3\u01d8\u0001\u0000\u0000\u0000\u06c4\u06c5"+
+ "\u0003G\u001b\u0000\u06c5\u06c6\u0001\u0000\u0000\u0000\u06c6\u06c7\u0006"+
+ "\u00e4\f\u0000\u06c7\u01da\u0001\u0000\u0000\u0000\u06c8\u06c9\u0003I"+
+ "\u001c\u0000\u06c9\u06ca\u0001\u0000\u0000\u0000\u06ca\u06cb\u0006\u00e5"+
+ "\f\u0000\u06cb\u01dc\u0001\u0000\u0000\u0000\u06cc\u06cd\u0003\u00c9\\"+
+ "\u0000\u06cd\u06ce\u0001\u0000\u0000\u0000\u06ce\u06cf\u0006\u00e6\r\u0000"+
+ "\u06cf\u06d0\u0006\u00e6\u0000\u0000\u06d0\u06d1\u0006\u00e6%\u0000\u06d1"+
+ "\u01de\u0001\u0000\u0000\u0000\u06d2\u06d3\u0003\u00c5Z\u0000\u06d3\u06d4"+
+ "\u0001\u0000\u0000\u0000\u06d4\u06d5\u0006\u00e7\r\u0000\u06d5\u06d6\u0006"+
+ "\u00e7\u0000\u0000\u06d6\u06d7\u0006\u00e7&\u0000\u06d7\u01e0\u0001\u0000"+
+ "\u0000\u0000\u06d8\u06d9\u0003o/\u0000\u06d9\u06da\u0001\u0000\u0000\u0000"+
+ "\u06da\u06db\u0006\u00e8\r\u0000\u06db\u06dc\u0006\u00e8\u0000\u0000\u06dc"+
+ "\u06dd\u0006\u00e8)\u0000\u06dd\u01e2\u0001\u0000\u0000\u0000\u06de\u06df"+
+ "\u0003K\u001d\u0000\u06df\u06e0\u0001\u0000\u0000\u0000\u06e0\u06e1\u0006"+
+ "\u00e9\u0011\u0000\u06e1\u06e2\u0006\u00e9\r\u0000\u06e2\u01e4\u0001\u0000"+
+ "\u0000\u0000\u06e3\u06e4\u0003K\u001d\u0000\u06e4\u06e5\u0001\u0000\u0000"+
+ "\u0000\u06e5\u06e6\u0006\u00ea\u0011\u0000\u06e6\u06e7\u0006\u00ea\r\u0000"+
+ "\u06e7\u01e6\u0001\u0000\u0000\u0000\u06e8\u06e9\u0003\u008f?\u0000\u06e9"+
+ "\u06ea\u0001\u0000\u0000\u0000\u06ea\u06eb\u0006\u00eb!\u0000\u06eb\u01e8"+
+ "\u0001\u0000\u0000\u0000\u06ec\u06ed\u0003i,\u0000\u06ed\u06ee\u0001\u0000"+
+ "\u0000\u0000\u06ee\u06ef\u0006\u00ec\u001e\u0000\u06ef\u01ea\u0001\u0000"+
+ "\u0000\u0000\u06f0\u06f1\u0003y4\u0000\u06f1\u06f2\u0001\u0000\u0000\u0000"+
+ "\u06f2\u06f3\u0006\u00ed\u0019\u0000\u06f3\u01ec\u0001\u0000\u0000\u0000"+
+ "\u06f4\u06f5\u0003u2\u0000\u06f5\u06f6\u0001\u0000\u0000\u0000\u06f6\u06f7"+
+ "\u0006\u00ee\u0015\u0000\u06f7\u01ee\u0001\u0000\u0000\u0000\u06f8\u06f9"+
+ "\u0003\u00c9\\\u0000\u06f9\u06fa\u0001\u0000\u0000\u0000\u06fa\u06fb\u0006"+
+ "\u00ef%\u0000\u06fb\u01f0\u0001\u0000\u0000\u0000\u06fc\u06fd\u0003\u00c5"+
+ "Z\u0000\u06fd\u06fe\u0001\u0000\u0000\u0000\u06fe\u06ff\u0006\u00f0&\u0000"+
+ "\u06ff\u01f2\u0001\u0000\u0000\u0000\u0700\u0701\u0003E\u001a\u0000\u0701"+
+ "\u0702\u0001\u0000\u0000\u0000\u0702\u0703\u0006\u00f1\f\u0000\u0703\u01f4"+
+ "\u0001\u0000\u0000\u0000\u0704\u0705\u0003G\u001b\u0000\u0705\u0706\u0001"+
+ "\u0000\u0000\u0000\u0706\u0707\u0006\u00f2\f\u0000\u0707\u01f6\u0001\u0000"+
+ "\u0000\u0000\u0708\u0709\u0003I\u001c\u0000\u0709\u070a\u0001\u0000\u0000"+
+ "\u0000\u070a\u070b\u0006\u00f3\f\u0000\u070b\u01f8\u0001\u0000\u0000\u0000"+
+ "G\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e"+
+ "\u000f\u0010\u02de\u02e8\u02ec\u02ef\u02f8\u02fa\u0305\u0318\u031d\u0326"+
+ "\u032d\u0332\u0334\u033f\u0347\u034a\u034c\u0351\u0356\u035c\u0363\u0368"+
+ "\u036e\u0371\u0379\u037d\u040f\u0414\u041b\u041d\u0422\u0427\u042e\u0430"+
+ "\u0440\u0445\u044a\u044c\u0452\u04a3\u04a8\u04df\u04e3\u04e8\u04ed\u04f2"+
+ "\u04f4\u04f8\u04fa\u0556\u055a\u055f\u05fc\u05fe*\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\u0000\u0001\u0000\u0004\u0000\u0000"+
+ "\u0007\u0010\u0000\u0007N\u0000\u0005\u0000\u0000\u0007\u001e\u0000\u0007"+
+ "O\u0000\u0007(\u0000\u0007\'\u0000\u0007)\u0000\u0007%\u0000\u0007Y\u0000"+
+ "\u0007\u001f\u0000\u0007+\u0000\u00078\u0000\u0007L\u0000\u0007K\u0000"+
+ "\u0007M\u0000\u0007#\u0000\u0007]\u0000\u0005\n\u0000\u00076\u0000\u0005"+
+ "\u0007\u0000\u0007<\u0000\u0007d\u0000\u0007Q\u0000\u0007P\u0000\u0005"+
+ "\f\u0000\u0005\u000f\u0000\u0007&\u0000";
+ public static final ATN _ATN =
+ new ATNDeserializer().deserialize(_serializedATN.toCharArray());
+ static {
+ _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()];
+ for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) {
+ _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i);
+ }
+ }
+}
\ No newline at end of file
diff --git a/x-pack/plugin/esql/gen/EsqlBaseLexer.tokens b/x-pack/plugin/esql/gen/EsqlBaseLexer.tokens
new file mode 100644
index 0000000000000..d8b7213883a59
--- /dev/null
+++ b/x-pack/plugin/esql/gen/EsqlBaseLexer.tokens
@@ -0,0 +1,203 @@
+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
+CHANGE_POINT=18
+DEV_INLINESTATS=19
+DEV_LOOKUP=20
+DEV_METRICS=21
+DEV_RERANK=22
+DEV_JOIN_FULL=23
+DEV_JOIN_LEFT=24
+DEV_JOIN_RIGHT=25
+UNKNOWN_CMD=26
+LINE_COMMENT=27
+MULTILINE_COMMENT=28
+WS=29
+PIPE=30
+QUOTED_STRING=31
+INTEGER_LITERAL=32
+DECIMAL_LITERAL=33
+AND=34
+AS=35
+ASC=36
+ASSIGN=37
+BY=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
+ON=54
+OR=55
+PARAM=56
+RLIKE=57
+RP=58
+TRUE=59
+WITH=60
+EQ=61
+CIEQ=62
+NEQ=63
+LT=64
+LTE=65
+GT=66
+GTE=67
+PLUS=68
+MINUS=69
+ASTERISK=70
+SLASH=71
+PERCENT=72
+LEFT_BRACES=73
+RIGHT_BRACES=74
+DOUBLE_PARAMS=75
+NAMED_OR_POSITIONAL_PARAM=76
+NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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
+'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
+'lookup'=17
+'change_point'=18
+'|'=30
+'and'=34
+'as'=35
+'asc'=36
+'='=37
+'by'=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
+'on'=54
+'or'=55
+'?'=56
+'rlike'=57
+')'=58
+'true'=59
+'with'=60
+'=='=61
+'=~'=62
+'!='=63
+'<'=64
+'<='=65
+'>'=66
+'>='=67
+'+'=68
+'-'=69
+'*'=70
+'/'=71
+'%'=72
+'{'=73
+'}'=74
+'??'=75
+']'=79
+'metadata'=88
+'info'=110
+'join'=124
+'USING'=125
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 fe6936d86d406..3f31f46fd3faf 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
@@ -51,6 +51,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.qa.rest.EsqlSpecTestCase.Mode.SYNC;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doAnswer;
@@ -126,6 +127,8 @@ protected void shouldSkipTest(String testName) throws IOException {
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(INLINESTATS_V2.capabilityName()));
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_PLANNING_V1.capabilityName()));
assumeFalse("LOOKUP JOIN not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_LOOKUP_V12.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()));
}
@Override
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 d4850ce443021..a6d04fd69d3a2 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
@@ -67,8 +67,13 @@
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.clusterHasRerankInferenceEndpoint;
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoint;
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint;
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteInferenceEndpoint;
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.loadDataSetIntoEs;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.classpathResources;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.cap;
@@ -137,6 +142,10 @@ public void setup() throws IOException {
createInferenceEndpoint(client());
}
+ if (supportsInferenceTestService() && clusterHasRerankInferenceEndpoint(client()) == false) {
+ createRerankInferenceEndpoint(client());
+ }
+
if (indexExists(availableDatasetsForEs(client(), supportsIndexModeLookup()).iterator().next().indexName()) == false) {
loadDataSetIntoEs(client(), supportsIndexModeLookup());
}
@@ -158,6 +167,7 @@ public static void wipeTestData() throws IOException {
}
deleteInferenceEndpoint(client());
+ deleteRerankInferenceEndpoint(client());
}
public boolean logResults() {
diff --git a/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java
new file mode 100644
index 0000000000000..ce5e58d61fbb3
--- /dev/null
+++ b/x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/RestRerankTestCase.java
@@ -0,0 +1,192 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.qa.rest;
+
+import org.elasticsearch.client.Request;
+import org.elasticsearch.client.ResponseException;
+import org.elasticsearch.test.rest.ESRestTestCase;
+import org.elasticsearch.xpack.esql.action.EsqlCapabilities;
+import org.junit.After;
+import org.junit.Before;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Map;
+
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint;
+import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteRerankInferenceEndpoint;
+import static org.hamcrest.core.StringContains.containsString;
+
+public class RestRerankTestCase extends ESRestTestCase {
+
+ @Before
+ public void skipWhenRerankDisabled() throws IOException {
+ assumeTrue(
+ "Requires RERANK capability",
+ EsqlSpecTestCase.hasCapabilities(adminClient(), List.of(EsqlCapabilities.Cap.RERANK.capabilityName()))
+ );
+ }
+
+ @Before
+ @After
+ public void assertRequestBreakerEmpty() throws Exception {
+ EsqlSpecTestCase.assertRequestBreakerEmpty();
+ }
+
+ @Before
+ public void setUpInferenceEndpoint() throws IOException {
+ createRerankInferenceEndpoint(adminClient());
+ }
+
+ @Before
+ public void setUpTestIndex() throws IOException {
+ Request request = new Request("PUT", "/rerank-test-index");
+ request.setJsonEntity("""
+ {
+ "mappings": {
+ "properties": {
+ "title": { "type": "text" },
+ "author": { "type": "text" }
+ }
+ }
+ }""");
+ assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode());
+
+ request = new Request("POST", "/rerank-test-index/_bulk");
+ request.addParameter("refresh", "true");
+ request.setJsonEntity("""
+ { "index": {"_id": 1} }
+ { "title": "The Future of Exploration", "author": "John Doe" }
+ { "index": {"_id": 2} }
+ { "title": "Deep Sea Exploration", "author": "Jane Smith" }
+ { "index": {"_id": 3} }
+ { "title": "History of Space Exploration", "author": "Alice Johnson" }
+ """);
+ assertEquals(200, client().performRequest(request).getStatusLine().getStatusCode());
+ }
+
+ @After
+ public void wipeData() throws IOException {
+ try {
+ adminClient().performRequest(new Request("DELETE", "/rerank-test-index"));
+ } catch (ResponseException e) {
+ // 404 here just means we had no indexes
+ if (e.getResponse().getStatusLine().getStatusCode() != 404) {
+ throw e;
+ }
+ }
+
+ deleteRerankInferenceEndpoint(adminClient());
+ }
+
+ public void testRerankWithSingleField() throws IOException {
+ String query = """
+ FROM rerank-test-index
+ | WHERE match(title, "exploration")
+ | RERANK "exploration" ON title WITH test_reranker
+ | EVAL _score = ROUND(_score, 5)
+ """;
+
+ Map result = runEsqlQuery(query);
+
+ var expectedValues = List.of(
+ List.of("Jane Smith", "Deep Sea Exploration", 0.02941d),
+ List.of("John Doe", "The Future of Exploration", 0.02632d),
+ List.of("Alice Johnson", "History of Space Exploration", 0.02381d)
+ );
+
+ assertResultMap(result, defaultOutputColumns(), expectedValues);
+ }
+
+ public void testRerankWithMultipleFields() throws IOException {
+ String query = """
+ FROM rerank-test-index
+ | WHERE match(title, "exploration")
+ | RERANK "exploration" ON title, author WITH test_reranker
+ | EVAL _score = ROUND(_score, 5)
+ """;
+
+ Map result = runEsqlQuery(query);
+ ;
+ var expectedValues = List.of(
+ List.of("Jane Smith", "Deep Sea Exploration", 0.01818d),
+ List.of("John Doe", "The Future of Exploration", 0.01754d),
+ List.of("Alice Johnson", "History of Space Exploration", 0.01515d)
+ );
+
+ assertResultMap(result, defaultOutputColumns(), expectedValues);
+ }
+
+ public void testRerankWithPositionalParams() throws IOException {
+ String query = """
+ FROM rerank-test-index
+ | WHERE match(title, "exploration")
+ | RERANK ? ON title WITH ?
+ | EVAL _score = ROUND(_score, 5)
+ """;
+
+ Map result = runEsqlQuery(query, "[\"exploration\", \"test_reranker\"]");
+
+ var expectedValues = List.of(
+ List.of("Jane Smith", "Deep Sea Exploration", 0.02941d),
+ List.of("John Doe", "The Future of Exploration", 0.02632d),
+ List.of("Alice Johnson", "History of Space Exploration", 0.02381d)
+ );
+
+ assertResultMap(result, defaultOutputColumns(), expectedValues);
+ }
+
+ public void testRerankWithNamedParams() throws IOException {
+ String query = """
+ FROM rerank-test-index
+ | WHERE match(title, ?queryText)
+ | RERANK ?queryText ON title WITH ?inferenceId
+ | EVAL _score = ROUND(_score, 5)
+ """;
+
+ Map result = runEsqlQuery(query, "[{\"queryText\": \"exploration\"}, {\"inferenceId\": \"test_reranker\"}]");
+
+ var expectedValues = List.of(
+ List.of("Jane Smith", "Deep Sea Exploration", 0.02941d),
+ List.of("John Doe", "The Future of Exploration", 0.02632d),
+ List.of("Alice Johnson", "History of Space Exploration", 0.02381d)
+ );
+
+ assertResultMap(result, defaultOutputColumns(), expectedValues);
+ }
+
+ public void testRerankWithMissingInferenceId() {
+ String query = """
+ FROM rerank-test-index
+ | WHERE match(title, "exploration")
+ | RERANK "exploration" ON title WITH test_missing
+ | EVAL _score = ROUND(_score, 5)
+ """;
+
+ ResponseException re = expectThrows(ResponseException.class, () -> runEsqlQuery(query));
+ assertThat(re.getMessage(), containsString("Inference endpoint not found"));
+ }
+
+ private static List
*/
@Override public T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T 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 c4780ab18d371..66ccd97349a64 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
@@ -1045,4 +1045,14 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitJoinPredicate(EsqlBaseParser.JoinPredicateContext 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 91600e77c4e78..e0b0c26d9f960 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
@@ -629,4 +629,10 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitJoinPredicate(EsqlBaseParser.JoinPredicateContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#rerankCommand}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitRerankCommand(EsqlBaseParser.RerankCommandContext 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 397e7cafd7ae2..52581bdd9bda2 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
@@ -61,6 +61,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.show.ShowInfo;
import org.elasticsearch.xpack.esql.plugin.EsqlPlugin;
@@ -79,6 +80,7 @@
import static java.util.Collections.emptyList;
import static org.elasticsearch.common.logging.HeaderWarning.addWarning;
+import static org.elasticsearch.xpack.esql.core.type.DataType.KEYWORD;
import static org.elasticsearch.xpack.esql.core.util.StringUtils.WILDCARD;
import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputExpressions;
import static org.elasticsearch.xpack.esql.parser.ParserUtils.source;
@@ -461,7 +463,7 @@ public PlanFactory visitEnrichCommand(EsqlBaseParser.EnrichCommandContext ctx) {
source,
p,
mode,
- new Literal(source(ctx.policyName), policyNameString, DataType.KEYWORD),
+ new Literal(source(ctx.policyName), policyNameString, KEYWORD),
matchField,
null,
Map.of(),
@@ -478,7 +480,7 @@ public PlanFactory visitChangePointCommand(EsqlBaseParser.ChangePointCommandCont
Attribute targetType = new ReferenceAttribute(
src,
ctx.targetType == null ? "type" : visitQualifiedName(ctx.targetType).name(),
- DataType.KEYWORD
+ KEYWORD
);
Attribute targetPvalue = new ReferenceAttribute(
src,
@@ -531,7 +533,7 @@ public LogicalPlan visitMetricsCommand(EsqlBaseParser.MetricsCommandContext ctx)
source,
table,
false,
- List.of(new MetadataAttribute(source, MetadataAttribute.TSID_FIELD, DataType.KEYWORD, false)),
+ List.of(new MetadataAttribute(source, MetadataAttribute.TSID_FIELD, KEYWORD, false)),
IndexMode.TIME_SERIES,
null
);
@@ -558,7 +560,7 @@ public PlanFactory visitLookupCommand(EsqlBaseParser.LookupCommandContext ctx) {
}
});
- Literal tableName = new Literal(source, visitIndexPattern(List.of(ctx.indexPattern())), DataType.KEYWORD);
+ Literal tableName = new Literal(source, visitIndexPattern(List.of(ctx.indexPattern())), KEYWORD);
return p -> new Lookup(source, p, tableName, matchFields, null /* localRelation will be resolved later*/);
}
@@ -638,4 +640,56 @@ public PlanFactory visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) {
return new LookupJoin(source, p, right, joinFields);
};
}
+
+ @Override
+ 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");
+ }
+
+ Expression queryText = expression(ctx.queryText);
+ if (queryText instanceof Literal queryTextLiteral && DataType.isString(queryText.dataType())) {
+ if (queryTextLiteral.value() == null) {
+ throw new ParsingException(
+ source(ctx.queryText),
+ "Query text cannot be null or undefined in RERANK",
+ ctx.queryText.getText()
+ );
+ }
+ } else {
+ throw new ParsingException(
+ source(ctx.queryText),
+ "RERANK only support string as query text but [{}] cannot be used as string",
+ ctx.queryText.getText()
+ );
+ }
+
+ return p -> new Rerank(source, p, inferenceId(ctx.inferenceId), queryText, visitFields(ctx.fields()));
+ }
+
+ public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) {
+ if (ctx.identifier() != null) {
+ return new Literal(source(ctx), visitIdentifier(ctx.identifier()), KEYWORD);
+ }
+
+ if (expression(ctx.parameter()) instanceof Literal literalParam) {
+ if (literalParam.value() != null) {
+ return literalParam;
+ }
+
+ throw new ParsingException(
+ source(ctx.parameter()),
+ "Query parameter [{}] is null or undefined and cannot be used as inference id",
+ ctx.parameter().getText()
+ );
+ }
+
+ throw new ParsingException(
+ source(ctx.parameter()),
+ "Query parameter [{}] is not a string and cannot be used as inference id",
+ ctx.parameter().getText()
+ );
+ }
}
diff --git a/x-pack/plugin/esql/src/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 ab2b6b6e05858..9f1e5c053fd0f 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;
@@ -47,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;
@@ -79,6 +81,7 @@ public static List logical() {
MvExpand.ENTRY,
OrderBy.ENTRY,
Project.ENTRY,
+ Rerank.ENTRY,
TopN.ENTRY
);
}
@@ -103,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/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..9f12f258dd8ed
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/InferencePlan.java
@@ -0,0 +1,67 @@
+/*
+ * 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.expression.Expression;
+import org.elasticsearch.xpack.esql.core.expression.UnresolvedAttribute;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
+
+import java.io.IOException;
+import java.util.Objects;
+
+public abstract class InferencePlan extends UnaryPlan {
+
+ private final Expression inferenceId;
+
+ protected InferencePlan(Source source, LogicalPlan child, Expression inferenceId) {
+ super(source, child);
+ this.inferenceId = inferenceId;
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ Source.EMPTY.writeTo(out);
+ out.writeNamedWriteable(child());
+ out.writeNamedWriteable(inferenceId());
+ }
+
+ public Expression inferenceId() {
+ return inferenceId;
+ }
+
+ @Override
+ public boolean expressionsResolved() {
+ return inferenceId.resolved();
+ }
+
+ @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();
+
+ public abstract InferencePlan withInferenceId(Expression newInferenceId);
+
+ public InferencePlan withInferenceResolutionError(String inferenceId, String error) {
+ return withInferenceId(new UnresolvedAttribute(inferenceId().source(), inferenceId, error));
+ }
+}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java
new file mode 100644
index 0000000000000..c9cec8e083833
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java
@@ -0,0 +1,190 @@
+/*
+ * 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.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.QueryPlan;
+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;
+import java.util.List;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes;
+import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
+
+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;
+ private List lazyOutput;
+
+ public Rerank(Source source, LogicalPlan child, Expression inferenceId, Expression queryText, List rerankFields) {
+ 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 {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(LogicalPlan.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Expression.class),
+ in.readCollectionAsList(Alias::new),
+ in.readNamedWriteable(Attribute.class)
+ );
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ super.writeTo(out);
+ out.writeNamedWriteable(queryText);
+ out.writeCollection(rerankFields());
+ out.writeNamedWriteable(scoreAttribute);
+ }
+
+ public Expression queryText() {
+ return queryText;
+ }
+
+ public List rerankFields() {
+ return rerankFields;
+ }
+
+ public Attribute scoreAttribute() {
+ return scoreAttribute;
+ }
+
+ @Override
+ public TaskType taskType() {
+ return TaskType.RERANK;
+ }
+
+ @Override
+ public Rerank withInferenceId(Expression newInferenceId) {
+ 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
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ public UnaryPlan replaceChild(LogicalPlan newChild) {
+ return new Rerank(source(), newChild, inferenceId(), queryText, rerankFields, scoreAttribute);
+ }
+
+ @Override
+ protected AttributeSet computeReferences() {
+ AttributeSet.Builder refs = computeReferences(rerankFields).asBuilder();
+
+ if (planHasAttribute(child(), scoreAttribute)) {
+ refs.add(scoreAttribute);
+ }
+
+ return refs.build();
+ }
+
+ public static AttributeSet computeReferences(List fields) {
+ AttributeSet rerankFields = AttributeSet.of(asAttributes(fields));
+ return Expressions.references(fields).subtract(rerankFields);
+ }
+
+ @Override
+ public boolean expressionsResolved() {
+ 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, scoreAttribute);
+ }
+
+ @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)
+ && Objects.equals(scoreAttribute, rerank.scoreAttribute);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(super.hashCode(), queryText, rerankFields, scoreAttribute);
+ }
+
+ @Override
+ public LogicalPlan surrogate() {
+ Order sortOrder = new Order(source(), scoreAttribute, Order.OrderDirection.DESC, Order.NullsPosition.ANY);
+ return new OrderBy(source(), this, List.of(sortOrder));
+ }
+
+ @Override
+ public List output() {
+ if (lazyOutput == null) {
+ lazyOutput = planHasAttribute(child(), scoreAttribute)
+ ? child().output()
+ : mergeOutputAttributes(List.of(scoreAttribute), child().output());
+ }
+
+ return lazyOutput;
+ }
+
+ public static boolean planHasAttribute(QueryPlan> plan, Attribute attribute) {
+ return plan.outputSet().stream().anyMatch(attr -> attr.equals(attribute));
+ }
+}
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..4570775af2ed1
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExec.java
@@ -0,0 +1,138 @@
+/*
+ * 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.Attribute;
+import org.elasticsearch.xpack.esql.core.expression.AttributeSet;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
+import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
+import org.elasticsearch.xpack.esql.plan.physical.UnaryExec;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
+import static org.elasticsearch.xpack.esql.plan.logical.inference.Rerank.planHasAttribute;
+
+public class RerankExec extends InferenceExec {
+
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ PhysicalPlan.class,
+ "RerankExec",
+ RerankExec::new
+ );
+
+ private final Expression queryText;
+ private final 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 {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(PhysicalPlan.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Expression.class),
+ in.readCollectionAsList(Alias::new),
+ in.readNamedWriteable(Attribute.class)
+ );
+ }
+
+ public Expression queryText() {
+ return queryText;
+ }
+
+ public List rerankFields() {
+ return rerankFields;
+ }
+
+ public Attribute scoreAttribute() {
+ return scoreAttribute;
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ 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, scoreAttribute);
+ }
+
+ @Override
+ public UnaryExec replaceChild(PhysicalPlan newChild) {
+ return new RerankExec(source(), newChild, inferenceId(), queryText, rerankFields, scoreAttribute);
+ }
+
+ @Override
+ public List output() {
+ if (planHasAttribute(child(), scoreAttribute)) {
+ return child().output();
+ }
+
+ return mergeOutputAttributes(List.of(scoreAttribute), child().output());
+ }
+
+ @Override
+ protected AttributeSet computeReferences() {
+ AttributeSet.Builder refs = Rerank.computeReferences(rerankFields).asBuilder();
+
+ if (planHasAttribute(child(), scoreAttribute)) {
+ refs.add(scoreAttribute);
+ }
+
+ return refs.build();
+ }
+
+ @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)
+ && Objects.equals(scoreAttribute, rerank.scoreAttribute);
+ }
+
+ @Override
+ public int hashCode() {
+ 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 19ba43066a445..633bdc8923517 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;
@@ -53,6 +55,7 @@
import org.elasticsearch.logging.Logger;
import org.elasticsearch.tasks.CancellableTask;
import org.elasticsearch.xpack.esql.EsqlIllegalArgumentException;
+import org.elasticsearch.xpack.esql.action.ColumnInfoImpl;
import org.elasticsearch.xpack.esql.core.expression.Alias;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.Expression;
@@ -74,6 +77,9 @@
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.InferenceRunner;
+import org.elasticsearch.xpack.esql.inference.RerankOperator;
+import org.elasticsearch.xpack.esql.inference.XContentRowEncoder;
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 +103,7 @@
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.planner.EsPhysicalOperationProviders.ShardContext;
import org.elasticsearch.xpack.esql.plugin.QueryPragmas;
import org.elasticsearch.xpack.esql.score.ScoreMapper;
@@ -105,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;
@@ -137,6 +145,7 @@ public class LocalExecutionPlanner {
private final Supplier exchangeSinkSupplier;
private final EnrichLookupService enrichLookupService;
private final LookupFromIndexService lookupFromIndexService;
+ private final InferenceRunner inferenceRunner;
private final PhysicalOperationProviders physicalOperationProviders;
private final List shardContexts;
@@ -152,6 +161,7 @@ public LocalExecutionPlanner(
Supplier exchangeSinkSupplier,
EnrichLookupService enrichLookupService,
LookupFromIndexService lookupFromIndexService,
+ InferenceRunner inferenceRunner,
PhysicalOperationProviders physicalOperationProviders,
List shardContexts
) {
@@ -166,6 +176,7 @@ public LocalExecutionPlanner(
this.exchangeSinkSupplier = exchangeSinkSupplier;
this.enrichLookupService = enrichLookupService;
this.lookupFromIndexService = lookupFromIndexService;
+ this.inferenceRunner = inferenceRunner;
this.physicalOperationProviders = physicalOperationProviders;
this.configuration = configuration;
this.shardContexts = shardContexts;
@@ -227,6 +238,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 +516,36 @@ private PhysicalOperation planEnrich(EnrichExec enrich, LocalExecutionPlannerCon
);
}
+ private PhysicalOperation planRerank(RerankExec rerank, LocalExecutionPlannerContext context) {
+ PhysicalOperation source = plan(rerank.child(), context);
+
+ Map rerankFieldsEvaluatorSuppliers = new LinkedHashMap<>();
+
+ for (var rerankField : rerank.rerankFields()) {
+ rerankFieldsEvaluatorSuppliers.put(
+ new ColumnInfoImpl(rerankField.name(), rerankField.dataType(), null),
+ EvalMapper.toEvaluator(context.foldCtx(), rerankField.child(), source.layout)
+ );
+ }
+
+ XContentRowEncoder.Factory rowEncoderFactory = XContentRowEncoder.yamlRowEncoderFactory(rerankFieldsEvaluatorSuppliers);
+
+ String inferenceId = BytesRefs.toString(rerank.inferenceId().fold(context.foldCtx));
+ String queryText = BytesRefs.toString(rerank.queryText().fold(context.foldCtx));
+
+ Layout outputLayout = source.layout;
+ if (source.layout.get(rerank.scoreAttribute().id()) == null) {
+ outputLayout = source.layout.builder().append(rerank.scoreAttribute()).build();
+ }
+
+ int scoreChannel = outputLayout.get(rerank.scoreAttribute().id()).channel();
+
+ return source.with(
+ new RerankOperator.Factory(inferenceRunner, inferenceId, queryText, rowEncoderFactory, scoreChannel),
+ outputLayout
+ );
+ }
+
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 8ea19f545e67b..aa6955278216d 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
@@ -22,6 +22,8 @@
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;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes;
@@ -35,6 +37,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.List;
@@ -165,6 +168,18 @@ private PhysicalPlan mapUnary(UnaryPlan unary) {
return new TopNExec(topN.source(), mappedChild, topN.order(), topN.limit(), null);
}
+ if (unary instanceof Rerank rerank) {
+ mappedChild = addExchangeForFragment(rerank, mappedChild);
+ return new RerankExec(
+ rerank.source(),
+ mappedChild,
+ rerank.inferenceId(),
+ rerank.queryText(),
+ rerank.rerankFields(),
+ rerank.scoreAttribute()
+ );
+ }
+
//
// Pipeline operators
//
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..dee5fb764bec4 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,17 @@ 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(),
+ rerank.scoreAttribute()
+ );
+ }
+
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 bc79903a722ec..2c5f432b06e6f 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
@@ -50,6 +50,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.InferenceRunner;
import org.elasticsearch.xpack.esql.plan.physical.ExchangeSinkExec;
import org.elasticsearch.xpack.esql.plan.physical.ExchangeSourceExec;
import org.elasticsearch.xpack.esql.plan.physical.OutputExec;
@@ -89,6 +90,7 @@ public class ComputeService {
private final DriverTaskRunner driverRunner;
private final EnrichLookupService enrichLookupService;
private final LookupFromIndexService lookupFromIndexService;
+ private final InferenceRunner inferenceRunner;
private final ClusterService clusterService;
private final AtomicLong childSessionIdGenerator = new AtomicLong();
private final DataNodeComputeHandler dataNodeComputeHandler;
@@ -99,25 +101,24 @@ public class ComputeService {
@SuppressWarnings("this-escape")
public ComputeService(
- SearchService searchService,
- TransportService transportService,
- ExchangeService exchangeService,
+ TransportActionServices transportActionServices,
EnrichLookupService enrichLookupService,
LookupFromIndexService lookupFromIndexService,
- ClusterService clusterService,
ThreadPool threadPool,
BigArrays bigArrays,
BlockFactory blockFactory
) {
- this.searchService = searchService;
- this.transportService = transportService;
+ this.searchService = transportActionServices.searchService();
+ this.transportService = transportActionServices.transportService();
+ this.exchangeService = transportActionServices.exchangeService();
this.bigArrays = bigArrays.withCircuitBreaking();
this.blockFactory = blockFactory;
var esqlExecutor = threadPool.executor(ThreadPool.Names.SEARCH);
this.driverRunner = new DriverTaskRunner(transportService, esqlExecutor);
this.enrichLookupService = enrichLookupService;
this.lookupFromIndexService = lookupFromIndexService;
- this.clusterService = clusterService;
+ this.inferenceRunner = transportActionServices.inferenceRunner();
+ this.clusterService = transportActionServices.clusterService();
this.dataNodeComputeHandler = new DataNodeComputeHandler(
this,
clusterService,
@@ -133,7 +134,6 @@ public ComputeService(
esqlExecutor,
dataNodeComputeHandler
);
- this.exchangeService = exchangeService;
clusterService.getClusterSettings().initializeAndWatch(EsqlPlugin.DEFAULT_DATA_PARTITIONING, v -> this.defaultDataPartitioning = v);
}
@@ -412,6 +412,7 @@ public SourceProvider createSourceProvider() {
context.exchangeSinkSupplier(),
enrichLookupService,
lookupFromIndexService,
+ inferenceRunner,
physicalOperationProviders,
contexts
);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java
index ad112542e000a..0874ff4068227 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportActionServices.java
@@ -13,6 +13,7 @@
import org.elasticsearch.search.SearchService;
import org.elasticsearch.transport.TransportService;
import org.elasticsearch.usage.UsageService;
+import org.elasticsearch.xpack.esql.inference.InferenceRunner;
public record TransportActionServices(
TransportService transportService,
@@ -20,5 +21,6 @@ public record TransportActionServices(
ExchangeService exchangeService,
ClusterService clusterService,
IndexNameExpressionResolver indexNameExpressionResolver,
- UsageService usageService
+ UsageService usageService,
+ InferenceRunner inferenceRunner
) {}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plugin/TransportEsqlQueryAction.java
index 1225c3b7c78f5..f1a4e122dde8d 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.InferenceRunner;
import org.elasticsearch.xpack.esql.session.Configuration;
import org.elasticsearch.xpack.esql.session.EsqlSession.PlanRunner;
import org.elasticsearch.xpack.esql.session.Result;
@@ -130,17 +131,7 @@ public TransportEsqlQueryAction(
bigArrays,
blockFactoryProvider.blockFactory()
);
- this.computeService = new ComputeService(
- searchService,
- transportService,
- exchangeService,
- enrichLookupService,
- lookupFromIndexService,
- clusterService,
- threadPool,
- bigArrays,
- blockFactoryProvider.blockFactory()
- );
+
this.asyncTaskManagementService = new AsyncTaskManagementService<>(
XPackPlugin.ASYNC_RESULTS_INDEX,
client,
@@ -163,8 +154,19 @@ public TransportEsqlQueryAction(
exchangeService,
clusterService,
indexNameExpressionResolver,
- usageService
+ usageService,
+ new InferenceRunner(client)
);
+
+ this.computeService = new ComputeService(
+ services,
+ enrichLookupService,
+ lookupFromIndexService,
+ threadPool,
+ bigArrays,
+ blockFactoryProvider.blockFactory()
+ );
+
defaultAllowPartialResults = EsqlPlugin.QUERY_ALLOW_PARTIAL_RESULTS.get(clusterService.getSettings());
clusterService.getClusterSettings()
.addSettingsUpdateConsumer(EsqlPlugin.QUERY_ALLOW_PARTIAL_RESULTS, v -> defaultAllowPartialResults = v);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java
index 72c792d6f034b..610aa0db73000 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.InferenceRunner;
import org.elasticsearch.xpack.esql.optimizer.LogicalPlanOptimizer;
import org.elasticsearch.xpack.esql.optimizer.PhysicalOptimizerContext;
import org.elasticsearch.xpack.esql.optimizer.PhysicalPlanOptimizer;
@@ -73,6 +75,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Rename;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
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;
@@ -126,6 +129,7 @@ public interface PlanRunner {
private final PlanTelemetry planTelemetry;
private final IndicesExpressionGrouper indicesExpressionGrouper;
private Set configuredClusters;
+ private final InferenceRunner inferenceRunner;
public EsqlSession(
String sessionId,
@@ -153,6 +157,7 @@ public EsqlSession(
this.physicalPlanOptimizer = new PhysicalPlanOptimizer(new PhysicalOptimizerContext(configuration));
this.planTelemetry = planTelemetry;
this.indicesExpressionGrouper = indicesExpressionGrouper;
+ this.inferenceRunner = services.inferenceRunner();
this.preMapper = new PreMapper(services);
}
@@ -305,7 +310,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);
@@ -331,7 +336,9 @@ public void analyzedPlan(
var listener = SubscribableListener.newForked(
l -> enrichPolicyResolver.resolvePolicies(unresolvedPolicies, executionInfo, 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); });
@@ -538,6 +545,14 @@ private static void resolveFieldNames(LogicalPlan parsed, EnrichResolution enric
}
}
+ private void resolveInferences(
+ List inferencePlans,
+ PreAnalysisResult preAnalysisResult,
+ ActionListener l
+ ) {
+ inferenceRunner.resolveInferenceIds(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"
@@ -751,18 +766,37 @@ 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) {
@@ -771,11 +805,11 @@ 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 30756957416f3..c9866cd31ff0a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/CsvTests.java
@@ -66,6 +66,7 @@
import org.elasticsearch.xpack.esql.expression.function.EsqlFunctionRegistry;
import org.elasticsearch.xpack.esql.index.EsIndex;
import org.elasticsearch.xpack.esql.index.IndexResolution;
+import org.elasticsearch.xpack.esql.inference.InferenceRunner;
import org.elasticsearch.xpack.esql.optimizer.LocalLogicalOptimizerContext;
import org.elasticsearch.xpack.esql.optimizer.LocalLogicalPlanOptimizer;
import org.elasticsearch.xpack.esql.optimizer.LocalPhysicalOptimizerContext;
@@ -119,6 +120,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;
@@ -256,6 +258,10 @@ public final void test() throws Throwable {
*/
assumeFalse("metadata fields aren't supported", testCase.requiredCapabilities.contains(cap(EsqlFeatures.METADATA_FIELDS)));
assumeFalse("enrich can't load fields in csv tests", testCase.requiredCapabilities.contains(cap(EsqlFeatures.ENRICH_LOAD)));
+ assumeFalse(
+ "can't use rereank in csv tests",
+ testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.RERANK.capabilityName())
+ );
assumeFalse(
"can't use match in csv tests",
testCase.requiredCapabilities.contains(EsqlCapabilities.Cap.MATCH_OPERATOR_COLON.capabilityName())
@@ -454,7 +460,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);
@@ -639,6 +648,7 @@ void executeSubPlan(
() -> exchangeSink.createExchangeSink(() -> {}),
Mockito.mock(EnrichLookupService.class),
Mockito.mock(LookupFromIndexService.class),
+ Mockito.mock(InferenceRunner.class),
physicalOperationProviders,
List.of()
);
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..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
@@ -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;
@@ -29,6 +32,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 +61,8 @@ public static Analyzer analyzer(IndexResolution indexResolution, Verifier verifi
new EsqlFunctionRegistry(),
indexResolution,
defaultLookupResolution(),
- defaultEnrichResolution()
+ defaultEnrichResolution(),
+ emptyInferenceResolution()
),
verifier
);
@@ -70,7 +75,8 @@ public static Analyzer analyzer(IndexResolution indexResolution, Map analyze(
+ "FROM books METADATA _score | 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 METADATA _score | 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 METADATA _score | RERANK \"italian food recipe\" ON title WITH `unknown-inference-id`",
+ "mapping-books.json"
+ )
+
+ );
+ assertThat(ve.getMessage(), containsString("unresolved inference [unknown-inference-id]"));
+ }
+ }
+
+ public void testResolveRerankFields() {
+ assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled());
+
+ {
+ // Single field.
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | WHERE title:"italian food recipe" OR description:"italian food recipe"
+ | KEEP description, title, year, _score
+ | DROP description
+ | RERANK "italian food recipe" ON title WITH `reranking-inference-id`
+ """, "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))));
+ assertThat(
+ rerank.scoreAttribute(),
+ equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get())
+ );
+ }
+
+ {
+ // Multiple fields.
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | WHERE title:"food"
+ | RERANK "food" ON title, description=SUBSTRING(description, 0, 100), yearRenamed=year WITH `reranking-inference-id`
+ """, "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("food")));
+ 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)));
+ assertThat(
+ rerank.scoreAttribute(),
+ equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get())
+ );
+ }
+
+ {
+ VerificationException ve = expectThrows(
+ VerificationException.class,
+ () -> analyze(
+ "FROM books METADATA _score | RERANK \"italian food recipe\" ON missingField WITH `reranking-inference-id`",
+ "mapping-books.json"
+ )
+
+ );
+ assertThat(ve.getMessage(), containsString("Unknown column [missingField]"));
+ }
+ }
+
+ public void testResolveRerankScoreField() {
+ assumeTrue("Requires RERANK command", EsqlCapabilities.Cap.RERANK.isEnabled());
+
+ {
+ // When the metadata field is required in FROM, it is reused.
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | WHERE title:"italian food recipe" OR description:"italian food recipe"
+ | RERANK "italian food recipe" ON title WITH `reranking-inference-id`
+ """, "mapping-books.json");
+
+ 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);
+
+ Attribute metadataScoreAttribute = relation.output()
+ .stream()
+ .filter(attr -> attr.name().equals(MetadataAttribute.SCORE))
+ .findFirst()
+ .get();
+ assertThat(rerank.scoreAttribute(), equalTo(metadataScoreAttribute));
+ assertThat(rerank.output(), hasItem(metadataScoreAttribute));
+ }
+
+ {
+ // When the metadata field is not required in FROM, it is added to the output of RERANK
+ LogicalPlan plan = analyze("""
+ FROM books
+ | WHERE title:"italian food recipe" OR description:"italian food recipe"
+ | RERANK "italian food recipe" ON title WITH `reranking-inference-id`
+ """, "mapping-books.json");
+
+ Limit limit = as(plan, Limit.class); // Implicit limit added by AddImplicitLimit rule.
+ Rerank rerank = as(limit.child(), Rerank.class);
+ Filter filter = as(rerank.child(), Filter.class);
+ EsRelation relation = as(filter.child(), EsRelation.class);
+
+ assertThat(relation.output().stream().noneMatch(attr -> attr.name().equals(MetadataAttribute.SCORE)), is(true));
+ assertThat(rerank.scoreAttribute(), equalTo(MetadataAttribute.create(EMPTY, MetadataAttribute.SCORE)));
+ assertThat(rerank.output(), hasItem(rerank.scoreAttribute()));
+ }
+ }
+
@Override
protected IndexAnalyzers createDefaultIndexAnalyzers() {
return super.createDefaultIndexAnalyzers();
}
+
+ static Alias alias(String name, Expression value) {
+ return new Alias(EMPTY, name, value);
+ }
+
+ static Literal string(String value) {
+ return new Literal(EMPTY, value, DataType.KEYWORD);
+ }
+
+ static Literal literal(int value) {
+ return new Literal(EMPTY, value, DataType.INTEGER);
+ }
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
index 21a8976546b93..1ba9fb05ca65d 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/analysis/ParsingTests.java
@@ -35,6 +35,7 @@
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.as;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyPolicyResolution;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.hasSize;
@@ -45,7 +46,7 @@ public class ParsingTests extends ESTestCase {
private final IndexResolution defaultIndex = loadIndexResolution("mapping-basic.json");
private final Analyzer defaultAnalyzer = new Analyzer(
- new AnalyzerContext(TEST_CFG, new EsqlFunctionRegistry(), defaultIndex, emptyPolicyResolution()),
+ new AnalyzerContext(TEST_CFG, new EsqlFunctionRegistry(), defaultIndex, emptyPolicyResolution(), emptyInferenceResolution()),
TEST_VERIFIER
);
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/CheckLicenseTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/CheckLicenseTests.java
index cf2de30e44456..68a6f38cdd69a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/CheckLicenseTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/CheckLicenseTests.java
@@ -34,6 +34,7 @@
import java.util.List;
import java.util.Objects;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.emptyInferenceResolution;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.analyzerDefaultMapping;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultEnrichResolution;
import static org.hamcrest.Matchers.containsString;
@@ -90,7 +91,13 @@ public EsqlFunctionRegistry snapshotRegistry() {
private static Analyzer analyzer(EsqlFunctionRegistry registry, License.OperationMode operationMode) {
return new Analyzer(
- new AnalyzerContext(EsqlTestUtils.TEST_CFG, registry, analyzerDefaultMapping(), defaultEnrichResolution()),
+ new AnalyzerContext(
+ EsqlTestUtils.TEST_CFG,
+ registry,
+ analyzerDefaultMapping(),
+ defaultEnrichResolution(),
+ emptyInferenceResolution()
+ ),
new Verifier(new Metrics(new EsqlFunctionRegistry()), getLicenseState(operationMode))
);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
new file mode 100644
index 0000000000000..17ecbd0b32393
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
@@ -0,0 +1,146 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.inference;
+
+import org.apache.lucene.util.SetOnce;
+import org.elasticsearch.ResourceNotFoundException;
+import org.elasticsearch.action.ActionListener;
+import org.elasticsearch.action.ActionResponse;
+import org.elasticsearch.client.internal.Client;
+import org.elasticsearch.inference.ModelConfigurations;
+import org.elasticsearch.inference.ServiceSettings;
+import org.elasticsearch.inference.TaskType;
+import org.elasticsearch.test.ESTestCase;
+import org.elasticsearch.xpack.core.inference.action.GetInferenceModelAction;
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+import org.elasticsearch.xpack.esql.plan.logical.inference.InferencePlan;
+
+import java.util.List;
+
+import static org.hamcrest.Matchers.contains;
+import static org.hamcrest.Matchers.empty;
+import static org.hamcrest.Matchers.equalTo;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.ArgumentMatchers.eq;
+import static org.mockito.Mockito.doAnswer;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+public class InferenceRunnerTests extends ESTestCase {
+ public void testResolveInferenceIds() throws Exception {
+ InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
+ List inferencePlans = List.of(mockInferencePlan("rerank-plan"));
+ SetOnce inferenceResolutionSetOnce = new SetOnce<>();
+
+ inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> {
+ throw new RuntimeException(e);
+ }));
+
+ assertBusy(() -> {
+ InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get();
+ assertNotNull(inferenceResolution);
+ assertThat(inferenceResolution.resolvedInferences(), contains(new ResolvedInference("rerank-plan", TaskType.RERANK)));
+ assertThat(inferenceResolution.hasError(), equalTo(false));
+ });
+ }
+
+ public void testResolveMultipleInferenceIds() throws Exception {
+ InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
+ List inferencePlans = List.of(
+ mockInferencePlan("rerank-plan"),
+ mockInferencePlan("rerank-plan"),
+ mockInferencePlan("completion-plan")
+ );
+ SetOnce inferenceResolutionSetOnce = new SetOnce<>();
+
+ inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> {
+ throw new RuntimeException(e);
+ }));
+
+ assertBusy(() -> {
+ InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get();
+ assertNotNull(inferenceResolution);
+
+ assertThat(
+ inferenceResolution.resolvedInferences(),
+ contains(
+ new ResolvedInference("rerank-plan", TaskType.RERANK),
+ new ResolvedInference("completion-plan", TaskType.COMPLETION)
+ )
+ );
+ assertThat(inferenceResolution.hasError(), equalTo(false));
+ });
+ }
+
+ public void testResolveMissingInferenceIds() throws Exception {
+ InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
+ List inferencePlans = List.of(mockInferencePlan("missing-plan"));
+
+ SetOnce inferenceResolutionSetOnce = new SetOnce<>();
+
+ inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> {
+ throw new RuntimeException(e);
+ }));
+
+ assertBusy(() -> {
+ InferenceResolution inferenceResolution = inferenceResolutionSetOnce.get();
+ assertNotNull(inferenceResolution);
+
+ assertThat(inferenceResolution.resolvedInferences(), empty());
+ assertThat(inferenceResolution.hasError(), equalTo(true));
+ assertThat(inferenceResolution.getError("missing-plan"), equalTo("inference endpoint not found"));
+ });
+ }
+
+ @SuppressWarnings({ "unchecked", "raw-types" })
+ private static Client mockClient() {
+ Client client = mock(Client.class);
+ doAnswer(i -> {
+ GetInferenceModelAction.Request request = i.getArgument(1, GetInferenceModelAction.Request.class);
+ ActionListener listener = (ActionListener) i.getArgument(2, ActionListener.class);
+ ActionResponse response = getInferenceModelResponse(request);
+
+ if (response == null) {
+ listener.onFailure(new ResourceNotFoundException("inference endpoint not found"));
+ } else {
+ listener.onResponse(response);
+ }
+
+ return null;
+ }).when(client).execute(eq(GetInferenceModelAction.INSTANCE), any(), any());
+ return client;
+ }
+
+ private static ActionResponse getInferenceModelResponse(GetInferenceModelAction.Request request) {
+ GetInferenceModelAction.Response response = mock(GetInferenceModelAction.Response.class);
+
+ if (request.getInferenceEntityId().equals("rerank-plan")) {
+ when(response.getEndpoints()).thenReturn(List.of(mockModelConfig("rerank-plan", TaskType.RERANK)));
+ return response;
+ }
+
+ if (request.getInferenceEntityId().equals("completion-plan")) {
+ when(response.getEndpoints()).thenReturn(List.of(mockModelConfig("completion-plan", TaskType.COMPLETION)));
+ return response;
+ }
+
+ return null;
+ }
+
+ private static ModelConfigurations mockModelConfig(String inferenceId, TaskType taskType) {
+ return new ModelConfigurations(inferenceId, taskType, randomIdentifier(), mock(ServiceSettings.class));
+ }
+
+ private static InferencePlan mockInferencePlan(String inferenceId) {
+ InferencePlan plan = mock(InferencePlan.class);
+ when(plan.inferenceId()).thenReturn(new Literal(Source.EMPTY, inferenceId, DataType.KEYWORD));
+ return plan;
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java
new file mode 100644
index 0000000000000..670b0d69390c8
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/RerankOperatorTests.java
@@ -0,0 +1,297 @@
+/*
+ * 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.Operator;
+import org.elasticsearch.compute.operator.SourceOperator;
+import org.elasticsearch.compute.test.AbstractBlockSourceOperator;
+import org.elasticsearch.compute.test.OperatorTestCase;
+import org.elasticsearch.compute.test.RandomBlock;
+import org.elasticsearch.core.Releasables;
+import org.elasticsearch.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.List;
+import java.util.function.BiFunction;
+import java.util.function.Consumer;
+import java.util.stream.Collectors;
+import java.util.stream.IntStream;
+
+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 List inputChannelElementTypes;
+ private XContentRowEncoder.Factory rowEncoderFactory;
+ private int scoreChannel;
+
+ @Before
+ private void initChannels() {
+ int channelCount = randomIntBetween(2, 10);
+ scoreChannel = randomIntBetween(0, channelCount - 1);
+ inputChannelElementTypes = IntStream.range(0, channelCount).sorted().mapToObj(this::randomElementType).collect(Collectors.toList());
+ rowEncoderFactory = mockRowEncoderFactory();
+ }
+
+ @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() {
+ InferenceRunner inferenceRunner = mockedSimpleInferenceRunner();
+ return new RerankOperator.Factory(inferenceRunner, SIMPLE_INFERENCE_ID, SIMPLE_QUERY, rowEncoderFactory, scoreChannel);
+ }
+
+ private InferenceRunner mockedSimpleInferenceRunner() {
+ InferenceRunner inferenceRunner = mock(InferenceRunner.class);
+ when(inferenceRunner.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(inferenceRunner).doInference(any(), any());
+
+ return inferenceRunner;
+ }
+
+ 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=[" + SIMPLE_INFERENCE_ID + "], query=[" + SIMPLE_QUERY + "], 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) {
+ Block[] blocks = new Block[inputChannelElementTypes.size()];
+ try {
+ currentPosition += length;
+ for (int b = 0; b < inputChannelElementTypes.size(); b++) {
+ blocks[b] = RandomBlock.randomBlock(
+ blockFactory,
+ inputChannelElementTypes.get(b),
+ length,
+ randomBoolean(),
+ 0,
+ 10,
+ 0,
+ 10
+ ).block();
+ }
+ return new Page(blocks);
+ } catch (Exception e) {
+ Releasables.closeExpectNoException(blocks);
+ throw (e);
+ }
+ }
+ };
+ }
+
+ /**
+ * 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.totalTimeInMillis(), 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())
+ );
+ }
+ }
+ }
+ }
+ }
+
+ private int inputChannelCount() {
+ return inputChannelElementTypes.size();
+ }
+
+ private ElementType randomElementType(int channel) {
+ return channel == scoreChannel ? ElementType.DOUBLE : randomFrom(ElementType.FLOAT, ElementType.DOUBLE, ElementType.LONG);
+ }
+
+ private XContentRowEncoder.Factory mockRowEncoderFactory() {
+ XContentRowEncoder.Factory factory = mock(XContentRowEncoder.Factory.class);
+ doAnswer(factoryInvocation -> {
+ DriverContext driverContext = factoryInvocation.getArgument(0, DriverContext.class);
+ XContentRowEncoder rowEncoder = mock(XContentRowEncoder.class);
+ doAnswer(encoderInvocation -> {
+ Page inputPage = encoderInvocation.getArgument(0, Page.class);
+ return driverContext.blockFactory()
+ .newConstantBytesRefBlockWith(new BytesRef(randomRealisticUnicodeOfCodepointLength(4)), inputPage.getPositionCount());
+ }).when(rowEncoder).eval(any(Page.class));
+
+ return rowEncoder;
+ }).when(factory).get(any(DriverContext.class));
+
+ return factory;
+ }
+
+ private void assertExpectedScore(DoubleBlock scoreBlockResult) {
+ assertAllPositions(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);
+
+ assertAllPositions(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))
+ );
+ }
+ }
+ });
+ }
+
+ private void assertAllPositions(Block block, Consumer consumer) {
+ for (int pos = 0; pos < block.getPositionCount(); pos++) {
+ consumer.accept(pos);
+ }
+ }
+
+ private void assertByteRefsBlockContentEquals(Block input, Block result, BytesRef readBuffer) {
+ assertBlockContentEquals(input, result, (BytesRefBlock b, Integer pos) -> b.getBytesRef(pos, readBuffer), BytesRefBlock.class);
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java
new file mode 100644
index 0000000000000..b4dfd87224a3a
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/ResolvedInferenceTests.java
@@ -0,0 +1,41 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0; you may not use this file except in compliance with the Elastic License
+ * 2.0.
+ */
+
+package org.elasticsearch.xpack.esql.inference;
+
+import org.elasticsearch.TransportVersion;
+import org.elasticsearch.inference.TaskType;
+import org.elasticsearch.test.AbstractWireTestCase;
+import org.elasticsearch.test.ESTestCase;
+
+import java.io.IOException;
+
+public class ResolvedInferenceTests extends AbstractWireTestCase {
+
+ @Override
+ protected ResolvedInference createTestInstance() {
+ return new ResolvedInference(randomIdentifier(), randomTaskType());
+ }
+
+ @Override
+ protected ResolvedInference mutateInstance(ResolvedInference instance) throws IOException {
+ if (randomBoolean()) {
+ return new ResolvedInference(randomValueOtherThan(instance.inferenceId(), ESTestCase::randomIdentifier), instance.taskType());
+ }
+
+ return new ResolvedInference(instance.inferenceId(), randomValueOtherThan(instance.taskType(), this::randomTaskType));
+ }
+
+ @Override
+ protected ResolvedInference copyInstance(ResolvedInference instance, TransportVersion version) throws IOException {
+ return copyInstance(instance, getNamedWriteableRegistry(), (out, v) -> v.writeTo(out), in -> new ResolvedInference(in), version);
+ }
+
+ private TaskType randomTaskType() {
+ return randomFrom(TaskType.values());
+ }
+}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalLogicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalLogicalPlanOptimizerTests.java
index 1d5da09dea417..0d806771787dd 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalLogicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalLogicalPlanOptimizerTests.java
@@ -68,6 +68,8 @@
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.emptyPolicyResolution;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.getFieldAttribute;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.greaterThanOf;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping;
@@ -100,7 +102,13 @@ public static void init() {
logicalOptimizer = new LogicalPlanOptimizer(unboundLogicalOptimizerContext());
analyzer = new Analyzer(
- new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, EsqlTestUtils.emptyPolicyResolution()),
+ new AnalyzerContext(
+ EsqlTestUtils.TEST_CFG,
+ new EsqlFunctionRegistry(),
+ getIndexResult,
+ emptyPolicyResolution(),
+ emptyInferenceResolution()
+ ),
TEST_VERIFIER
);
}
@@ -484,7 +492,13 @@ public void testSparseDocument() throws Exception {
var logicalOptimizer = new LogicalPlanOptimizer(unboundLogicalOptimizerContext());
var analyzer = new Analyzer(
- new AnalyzerContext(EsqlTestUtils.TEST_CFG, new EsqlFunctionRegistry(), getIndexResult, EsqlTestUtils.emptyPolicyResolution()),
+ new AnalyzerContext(
+ EsqlTestUtils.TEST_CFG,
+ new EsqlFunctionRegistry(),
+ getIndexResult,
+ emptyPolicyResolution(),
+ emptyInferenceResolution()
+ ),
TEST_VERIFIER
);
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java
index 5f27004f9e61b..33ec509d20fb1 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java
@@ -110,6 +110,7 @@
import static org.elasticsearch.index.query.QueryBuilders.termsQuery;
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.unboundLogicalOptimizerContext;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning;
@@ -206,7 +207,7 @@ private Analyzer makeAnalyzer(String mappingFileName, EnrichResolution enrichRes
IndexResolution getIndexResult = IndexResolution.valid(test);
return new Analyzer(
- new AnalyzerContext(config, new EsqlFunctionRegistry(), getIndexResult, defaultLookupResolution(), enrichResolution),
+ new AnalyzerContext(config, new EsqlFunctionRegistry(), getIndexResult, defaultLookupResolution(), enrichResolution, emptyInferenceResolution()),
new Verifier(new Metrics(new EsqlFunctionRegistry()), new XPackLicenseState(() -> 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 b461d94432e2b..6d3d2610c4bdc 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
@@ -151,6 +151,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;
@@ -161,6 +162,7 @@
import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning;
import static org.elasticsearch.xpack.esql.analysis.Analyzer.NO_FIELDS;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.analyze;
+import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultInferenceResolution;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.defaultLookupResolution;
import static org.elasticsearch.xpack.esql.core.expression.Literal.NULL;
import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY;
@@ -241,7 +243,8 @@ public static void init() {
new EsqlFunctionRegistry(),
getIndexResult,
defaultLookupResolution(),
- enrichResolution
+ enrichResolution,
+ emptyInferenceResolution()
),
TEST_VERIFIER
);
@@ -251,7 +254,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
);
@@ -260,7 +269,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
);
@@ -269,14 +284,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
);
}
@@ -5290,7 +5317,7 @@ 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, defaultInferenceResolution()),
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 d9e8205db345b..265db3ad34bb9 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
@@ -167,6 +167,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;
@@ -361,7 +362,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);
@@ -7581,6 +7582,7 @@ private LocalExecutionPlanner.LocalExecutionPlan physicalOperationsFromPhysicalP
() -> exchangeSinkHandler.createExchangeSink(() -> {}),
null,
null,
+ null,
new EsPhysicalOperationProviders(FoldContext.small(), List.of(), null, DataPartitioning.AUTO),
List.of()
);
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 a4921447f0705..a549a2fb0bf66 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
@@ -16,6 +16,7 @@
import org.elasticsearch.xpack.esql.core.expression.Alias;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.EmptyAttribute;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
import org.elasticsearch.xpack.esql.core.expression.Expressions;
import org.elasticsearch.xpack.esql.core.expression.FoldContext;
import org.elasticsearch.xpack.esql.core.expression.Literal;
@@ -62,6 +63,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;
@@ -3217,6 +3219,91 @@ public void testInvalidJoinPatterns() {
}
}
+ 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(literalString("query text")));
+ assertThat(rerank.inferenceId(), equalTo(literalString("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(literalString("query text")));
+ assertThat(rerank.inferenceId(), equalTo(literalString("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(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"), integer(0), integer(100))))
+ )
+ )
+ );
+ }
+
+ 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(literalString("query text")));
+ assertThat(rerank.inferenceId(), equalTo(literalString("reranker")));
+ assertThat(rerank.rerankFields(), equalTo(List.of(alias("title", attribute("title")))));
+ }
+
+ public void testRerankWithNamedParameters() {
+ assumeTrue("RERANK requires corresponding capability", EsqlCapabilities.Cap.RERANK.isEnabled());
+
+ var queryParams = new QueryParams(List.of(paramAsConstant("queryText", "query text"), paramAsConstant("inferenceId", "reranker")));
+ var rerank = as(parser.createStatement("row a = 1 | RERANK ?queryText ON title WITH ?inferenceId", queryParams), Rerank.class);
+
+ assertThat(rerank.queryText(), equalTo(literalString("query text")));
+ assertThat(rerank.inferenceId(), equalTo(literalString("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");
+
+ expectError("FROM foo* | RERANK \"query text\" WITH inferenceId", "line 1:33: mismatched input 'WITH' expecting 'on'");
+
+ expectError("FROM foo* | RERANK \"query text\" ON title", "line 1:41: mismatched input '' expecting {'and',");
+ }
+
+ static Alias alias(String name, Expression value) {
+ return new Alias(EMPTY, name, value);
+ }
+
public void testDoubleParamsForIdentifier() {
assumeTrue("double parameters markers for identifiers", EsqlCapabilities.Cap.DOUBLE_PARAMETER_MARKERS_FOR_IDENTIFIERS.isEnabled());
// There are three variations of double parameters - named, positional or anonymous, e.g. ??n, ??1 or ??, covered.
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..1bb8bab502f92
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/RerankSerializationTests.java
@@ -0,0 +1,66 @@
+/*
+ * 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.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;
+import org.elasticsearch.xpack.esql.plan.logical.AbstractLogicalPlanSerializationTests;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+
+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, string(randomIdentifier()), string(randomIdentifier()), randomFields(), scoreAttribute());
+ }
+
+ @Override
+ protected Rerank mutateInstance(Rerank instance) throws IOException {
+ LogicalPlan 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(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, instance.scoreAttribute());
+ }
+
+ @Override
+ protected boolean alwaysEmptySource() {
+ return true;
+ }
+
+ private List randomFields() {
+ return randomList(0, 10, AliasTests::randomAlias);
+ }
+
+ 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
new file mode 100644
index 0000000000000..ecdbb1a1b4fd0
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/RerankExecSerializationTests.java
@@ -0,0 +1,66 @@
+/*
+ * 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.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;
+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(), scoreAttribute());
+ }
+
+ @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, scoreAttribute());
+ }
+
+ @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);
+ }
+
+ 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/planner/FilterTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/FilterTests.java
index 4c1b009e847ed..04d2cac31af55 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;
@@ -84,7 +85,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/LocalExecutionPlannerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/planner/LocalExecutionPlannerTests.java
index 02c0f639f8e3c..000bb9bf359f5 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
@@ -205,6 +205,7 @@ private LocalExecutionPlanner planner() throws IOException {
null,
null,
null,
+ null,
esPhysicalOperationProviders(shardContexts),
shardContexts
);
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 64f073310d3e6..02b108dcf6adb 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)));
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 7575cf5197dff..61524a3531fac 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
@@ -92,6 +92,10 @@ public void parseRequestConfig(
parsedModelListener.onResponse(new TestServiceModel(modelId, taskType, name(), serviceSettings, taskSettings, secretSettings));
}
+ protected TaskSettings getTasksSettingsFromMap(Map taskSettingsMap) {
+ return TestRerankingServiceExtension.TestTaskSettings.fromMap(taskSettingsMap);
+ }
+
@Override
protected TaskSettings getTasksSettingsFromMap(Map taskSettingsMap) {
return TestRerankingServiceExtension.TestTaskSettings.fromMap(taskSettingsMap);
From ac63795e929f88bf3258c48736d58f39a1b8756b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Fri, 11 Apr 2025 09:20:54 +0200
Subject: [PATCH 02/34] [ES|QL] COMPLETION command grammar and logical plan
(#126319)
---
docs/changelog/126319.yaml | 5 +
.../esql/src/main/antlr/EsqlBaseParser.g4 | 5 +
.../xpack/esql/action/EsqlCapabilities.java | 5 +
.../xpack/esql/analysis/Analyzer.java | 4 +-
.../xpack/esql/analysis/PreAnalyzer.java | 6 +-
.../xpack/esql/inference/InferenceRunner.java | 4 +-
.../xpack/esql/parser/LogicalPlanBuilder.java | 20 ++-
.../xpack/esql/plan/PlanWritables.java | 2 +
.../plan/logical/inference/Completion.java | 152 ++++++++++++++++++
.../plan/logical/inference/InferencePlan.java | 8 +-
.../esql/plan/logical/inference/Rerank.java | 2 +-
.../xpack/esql/session/EsqlSession.java | 2 +-
.../esql/inference/InferenceRunnerTests.java | 10 +-
.../GrammarInDevelopmentParsingTests.java | 6 +-
.../esql/parser/StatementParserTests.java | 63 ++++++++
.../CompletionSerializationTests.java | 62 +++++++
16 files changed, 331 insertions(+), 25 deletions(-)
create mode 100644 docs/changelog/126319.yaml
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
diff --git a/docs/changelog/126319.yaml b/docs/changelog/126319.yaml
new file mode 100644
index 0000000000000..c8e84df61ad06
--- /dev/null
+++ b/docs/changelog/126319.yaml
@@ -0,0 +1,5 @@
+pr: 126319
+summary: COMPLETION command grammar and logical plan
+area: ES|QL
+type: feature
+issues: []
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 13e95174c002c..0d0362a3e8c49 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -54,6 +54,7 @@ processingCommand
| joinCommand
| changePointCommand
// in development
+ | {this.isDevVersion()}? completionCommand
| {this.isDevVersion()}? inlinestatsCommand
| {this.isDevVersion()}? lookupCommand
| {this.isDevVersion()}? rerankCommand
@@ -371,3 +372,7 @@ joinPredicate
rerankCommand
: DEV_RERANK queryText=constant ON fields WITH inferenceId=identifierOrParameter
;
+
+completionCommand
+ : DEV_COMPLETION prompt=primaryExpression WITH inferenceId=identifierOrParameter (AS targetField=qualifiedName)?
+ ;
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 9881b5635c7cc..b2c3d5cd70e39 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
@@ -771,6 +771,11 @@ public enum Cap {
*/
RERANK(Build.current().isSnapshot()),
+ /**
+ * Support for COMPLETION command
+ */
+ COMPLETION(Build.current().isSnapshot()),
+
/**
* Allow mixed numeric types in conditional functions - case, greatest and least
*/
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 d131f69d0b34f..743fdfb21ee98 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
@@ -385,9 +385,9 @@ private static NamedExpression createEnrichFieldExpression(
}
}
- private static class ResolveInference extends ParameterizedAnalyzerRule {
+ private static class ResolveInference extends ParameterizedAnalyzerRule, AnalyzerContext> {
@Override
- protected LogicalPlan rule(InferencePlan plan, AnalyzerContext context) {
+ protected LogicalPlan rule(InferencePlan> plan, AnalyzerContext context) {
assert plan.inferenceId().resolved() && plan.inferenceId().foldable();
String inferenceId = plan.inferenceId().fold(FoldContext.small()).toString();
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 6622dad994ede..9236c4c2ad2fd 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
@@ -28,10 +28,10 @@ public static class PreAnalysis {
public final List indices;
public final List enriches;
- public final List inferencePlans;
+ public final List> inferencePlans;
public final List lookupIndices;
- public PreAnalysis(List indices, List enriches, List inferencePlans, List lookupIndices) {
+ public PreAnalysis(List indices, List enriches, List> inferencePlans, List lookupIndices) {
this.indices = indices;
this.enriches = enriches;
this.inferencePlans = inferencePlans;
@@ -51,7 +51,7 @@ protected PreAnalysis doPreAnalyze(LogicalPlan plan) {
List indices = new ArrayList<>();
List unresolvedEnriches = new ArrayList<>();
List lookupIndices = new ArrayList<>();
- List unresolvedInferencePlans = new ArrayList<>();
+ List> unresolvedInferencePlans = new ArrayList<>();
plan.forEachUp(UnresolvedRelation.class, p -> {
List list = p.indexMode() == IndexMode.LOOKUP ? lookupIndices : indices;
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java
index 9adc6c965a54b..30725ef9903c4 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/inference/InferenceRunner.java
@@ -33,7 +33,7 @@ public ThreadContext getThreadContext() {
return client.threadPool().getThreadContext();
}
- public void resolveInferenceIds(List plans, ActionListener listener) {
+ public void resolveInferenceIds(List> plans, ActionListener listener) {
resolveInferenceIds(plans.stream().map(InferenceRunner::planInferenceId).collect(Collectors.toSet()), listener);
}
@@ -68,7 +68,7 @@ private void resolveInferenceIds(Set inferenceIds, ActionListener plan) {
return plan.inferenceId().fold(FoldContext.small()).toString();
}
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 52581bdd9bda2..a20d65ffa52b1 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
@@ -61,6 +61,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.Completion;
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.show.ShowInfo;
@@ -643,12 +644,7 @@ public PlanFactory visitJoinCommand(EsqlBaseParser.JoinCommandContext ctx) {
@Override
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");
- }
-
+ Source source = source(ctx);
Expression queryText = expression(ctx.queryText);
if (queryText instanceof Literal queryTextLiteral && DataType.isString(queryText.dataType())) {
if (queryTextLiteral.value() == null) {
@@ -669,6 +665,18 @@ public PlanFactory visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) {
return p -> new Rerank(source, p, inferenceId(ctx.inferenceId), queryText, visitFields(ctx.fields()));
}
+ @Override
+ public PlanFactory visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) {
+ Source source = source(ctx);
+ Expression prompt = expression(ctx.prompt);
+ Literal inferenceId = inferenceId(ctx.inferenceId);
+ Attribute targetField = ctx.targetField == null
+ ? new UnresolvedAttribute(source, Completion.DEFAULT_OUTPUT_FIELD_NAME)
+ : visitQualifiedName(ctx.targetField);
+
+ return p -> new Completion(source, p, inferenceId, prompt, targetField);
+ }
+
public Literal inferenceId(EsqlBaseParser.IdentifierOrParameterContext ctx) {
if (ctx.identifier() != null) {
return new Literal(source(ctx), visitIdentifier(ctx.identifier()), KEYWORD);
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 9f1e5c053fd0f..1354fc38473fc 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.Completion;
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;
@@ -65,6 +66,7 @@ public static List getNamedWriteables() {
public static List logical() {
return List.of(
Aggregate.ENTRY,
+ Completion.ENTRY,
Dissect.ENTRY,
Enrich.ENTRY,
EsRelation.ENTRY,
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
new file mode 100644
index 0000000000000..0ebd1c7c670ac
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
@@ -0,0 +1,152 @@
+/*
+ * 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.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.NameId;
+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.GeneratingPlan;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.SortAgnostic;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
+
+public class Completion extends InferencePlan implements GeneratingPlan, SortAgnostic {
+
+ public static final String DEFAULT_OUTPUT_FIELD_NAME = "completion";
+
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ LogicalPlan.class,
+ "Completion",
+ Completion::new
+ );
+ private final Expression prompt;
+ private final Attribute targetField;
+ private List lazyOutput;
+
+ public Completion(Source source, LogicalPlan child, Expression inferenceId, Expression prompt, Attribute targetField) {
+ super(source, child, inferenceId);
+ this.prompt = prompt;
+ this.targetField = targetField;
+ }
+
+ public Completion(StreamInput in) throws IOException {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(LogicalPlan.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Attribute.class)
+ );
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ super.writeTo(out);
+ out.writeNamedWriteable(prompt);
+ out.writeNamedWriteable(targetField);
+ }
+
+ public Expression prompt() {
+ return prompt;
+ }
+
+ public Attribute targetField() {
+ return targetField;
+ }
+
+ @Override
+ public Completion withInferenceId(Expression newInferenceId) {
+ return new Completion(source(), child(), newInferenceId, prompt, targetField);
+ }
+
+ @Override
+ public Completion replaceChild(LogicalPlan newChild) {
+ return new Completion(source(), newChild, inferenceId(), prompt, targetField);
+ }
+
+ @Override
+ public TaskType taskType() {
+ return TaskType.COMPLETION;
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ public List output() {
+ if (lazyOutput == null) {
+ lazyOutput = mergeOutputAttributes(List.of(targetField), child().output());
+ }
+
+ return lazyOutput;
+ }
+
+ @Override
+ public List generatedAttributes() {
+ return List.of(targetField);
+ }
+
+ @Override
+ public Completion withGeneratedNames(List newNames) {
+ checkNumberOfNewNames(newNames);
+ return new Completion(source(), child(), inferenceId(), prompt, this.renameTargetField(newNames.get(0)));
+ }
+
+ private Attribute renameTargetField(String newName) {
+ if (newName.equals(targetField.name())) {
+ return targetField;
+ }
+
+ return targetField.withName(newName).withId(new NameId());
+ }
+
+ @Override
+ protected AttributeSet computeReferences() {
+ return prompt.references();
+ }
+
+ @Override
+ public boolean expressionsResolved() {
+ return super.expressionsResolved() && prompt.resolved();
+ }
+
+ @Override
+ protected NodeInfo extends LogicalPlan> info() {
+ return NodeInfo.create(this, Completion::new, child(), inferenceId(), prompt, targetField);
+ }
+
+ @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;
+ Completion completion = (Completion) o;
+
+ return Objects.equals(prompt, completion.prompt) && Objects.equals(targetField, completion.targetField);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(super.hashCode(), prompt, targetField);
+ }
+}
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 9f12f258dd8ed..85f60b4038a96 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
@@ -18,7 +18,7 @@
import java.io.IOException;
import java.util.Objects;
-public abstract class InferencePlan extends UnaryPlan {
+public abstract class InferencePlan> extends UnaryPlan {
private final Expression inferenceId;
@@ -48,7 +48,7 @@ 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;
+ InferencePlan> other = (InferencePlan>) o;
return Objects.equals(inferenceId(), other.inferenceId());
}
@@ -59,9 +59,9 @@ public int hashCode() {
public abstract TaskType taskType();
- public abstract InferencePlan withInferenceId(Expression newInferenceId);
+ public abstract PlanType withInferenceId(Expression newInferenceId);
- public InferencePlan withInferenceResolutionError(String inferenceId, String error) {
+ public PlanType withInferenceResolutionError(String inferenceId, String error) {
return withInferenceId(new UnresolvedAttribute(inferenceId().source(), inferenceId, error));
}
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Rerank.java
index c9cec8e083833..e4101fe338117 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
@@ -37,7 +37,7 @@
import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes;
import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
-public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan {
+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;
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 610aa0db73000..c73cc8fb59a39 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
@@ -546,7 +546,7 @@ private static void resolveFieldNames(LogicalPlan parsed, EnrichResolution enric
}
private void resolveInferences(
- List inferencePlans,
+ List> inferencePlans,
PreAnalysisResult preAnalysisResult,
ActionListener l
) {
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
index 17ecbd0b32393..b72bce05c506a 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/inference/InferenceRunnerTests.java
@@ -36,7 +36,7 @@
public class InferenceRunnerTests extends ESTestCase {
public void testResolveInferenceIds() throws Exception {
InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
- List inferencePlans = List.of(mockInferencePlan("rerank-plan"));
+ List> inferencePlans = List.of(mockInferencePlan("rerank-plan"));
SetOnce inferenceResolutionSetOnce = new SetOnce<>();
inferenceRunner.resolveInferenceIds(inferencePlans, ActionListener.wrap(inferenceResolutionSetOnce::set, e -> {
@@ -53,7 +53,7 @@ public void testResolveInferenceIds() throws Exception {
public void testResolveMultipleInferenceIds() throws Exception {
InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
- List inferencePlans = List.of(
+ List> inferencePlans = List.of(
mockInferencePlan("rerank-plan"),
mockInferencePlan("rerank-plan"),
mockInferencePlan("completion-plan")
@@ -81,7 +81,7 @@ public void testResolveMultipleInferenceIds() throws Exception {
public void testResolveMissingInferenceIds() throws Exception {
InferenceRunner inferenceRunner = new InferenceRunner(mockClient());
- List inferencePlans = List.of(mockInferencePlan("missing-plan"));
+ List> inferencePlans = List.of(mockInferencePlan("missing-plan"));
SetOnce inferenceResolutionSetOnce = new SetOnce<>();
@@ -138,8 +138,8 @@ private static ModelConfigurations mockModelConfig(String inferenceId, TaskType
return new ModelConfigurations(inferenceId, taskType, randomIdentifier(), mock(ServiceSettings.class));
}
- private static InferencePlan mockInferencePlan(String inferenceId) {
- InferencePlan plan = mock(InferencePlan.class);
+ private static InferencePlan> mockInferencePlan(String inferenceId) {
+ InferencePlan> plan = mock(InferencePlan.class);
when(plan.inferenceId()).thenReturn(new Literal(Source.EMPTY, inferenceId, DataType.KEYWORD));
return plan;
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/parser/GrammarInDevelopmentParsingTests.java
index 9c9fc1d62ecb4..811bc11e5df8f 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
@@ -31,7 +31,11 @@ public void testDevelopmentMatch() throws Exception {
}
public void testDevelopmentRerank() {
- parse("row a = 1 | rerank \"foo\" ON title WITH reranker", "rerank");
+ parse("row a = 1 | rerank \"foo\" on title with reranker", "rerank");
+ }
+
+ public void testDevelopmentCompletion() {
+ parse("row a = 1 | completion concat(\"test\", \"a\") with inferenceId as fieldName", "completion");
}
void parse(String query, String 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 a549a2fb0bf66..f99dae9379070 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
@@ -63,6 +63,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.Completion;
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;
@@ -3300,6 +3301,68 @@ public void testInvalidRerank() {
expectError("FROM foo* | RERANK \"query text\" ON title", "line 1:41: mismatched input '' expecting {'and',");
}
+ public void testCompletionUsingFieldAsPrompt() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ var plan = as(processingCommand("COMPLETION prompt_field WITH inferenceID AS targetField"), Completion.class);
+
+ assertThat(plan.prompt(), equalTo(attribute("prompt_field")));
+ assertThat(plan.inferenceId(), equalTo(literalString("inferenceID")));
+ assertThat(plan.targetField(), equalTo(attribute("targetField")));
+ }
+
+ public void testCompletionUsingFunctionAsPrompt() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ var plan = as(processingCommand("COMPLETION CONCAT(fieldA, fieldB) WITH inferenceID AS targetField"), Completion.class);
+
+ assertThat(plan.prompt(), equalTo(function("CONCAT", List.of(attribute("fieldA"), attribute("fieldB")))));
+ assertThat(plan.inferenceId(), equalTo(literalString("inferenceID")));
+ assertThat(plan.targetField(), equalTo(attribute("targetField")));
+ }
+
+ public void testCompletionDefaultFieldName() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ var plan = as(processingCommand("COMPLETION prompt_field WITH inferenceID"), Completion.class);
+
+ assertThat(plan.prompt(), equalTo(attribute("prompt_field")));
+ assertThat(plan.inferenceId(), equalTo(literalString("inferenceID")));
+ assertThat(plan.targetField(), equalTo(attribute("completion")));
+ }
+
+ public void testCompletionWithPositionalParameters() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ var queryParams = new QueryParams(List.of(paramAsConstant(null, "inferenceId")));
+ var plan = as(parser.createStatement("row a = 1 | COMPLETION prompt_field WITH ?", queryParams), Completion.class);
+
+ assertThat(plan.prompt(), equalTo(attribute("prompt_field")));
+ assertThat(plan.inferenceId(), equalTo(literalString("inferenceId")));
+ assertThat(plan.targetField(), equalTo(attribute("completion")));
+ }
+
+ public void testCompletionWithNamedParameters() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ var queryParams = new QueryParams(List.of(paramAsConstant("inferenceId", "myInference")));
+ var plan = as(parser.createStatement("row a = 1 | COMPLETION prompt_field WITH ?inferenceId", queryParams), Completion.class);
+
+ assertThat(plan.prompt(), equalTo(attribute("prompt_field")));
+ assertThat(plan.inferenceId(), equalTo(literalString("myInference")));
+ assertThat(plan.targetField(), equalTo(attribute("completion")));
+ }
+
+ public void testInvalidCompletion() {
+ assumeTrue("COMPLETION requires corresponding capability", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ expectError("FROM foo* | COMPLETION WITH inferenceId", "line 1:24: extraneous input 'WITH' expecting {");
+
+ expectError("FROM foo* | COMPLETION prompt WITH", "line 1:35: mismatched input '' expecting {");
+
+ expectError("FROM foo* | COMPLETION prompt AS targetField", "line 1:31: mismatched input 'AS' expecting {");
+ }
+
static Alias alias(String name, Expression value) {
return new Alias(EMPTY, name, value);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
new file mode 100644
index 0000000000000..d5f7c868f4b47
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
@@ -0,0 +1,62 @@
+/*
+ * 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.Attribute;
+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.function.FieldAttributeTests;
+import org.elasticsearch.xpack.esql.plan.logical.AbstractLogicalPlanSerializationTests;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+
+import java.io.IOException;
+
+public class CompletionSerializationTests extends AbstractLogicalPlanSerializationTests {
+
+ @Override
+ protected Completion createTestInstance() {
+ Source source = randomSource();
+ LogicalPlan child = randomChild(0);
+ return new Completion(source, child, randomInferenceId(), randomPrompt(), randomAttribute());
+ }
+
+ @Override
+ protected Completion mutateInstance(Completion instance) throws IOException {
+ LogicalPlan child = instance.child();
+ Expression inferenceId = instance.inferenceId();
+ Expression prompt = instance.prompt();
+ Attribute targetField = instance.targetField();
+
+ switch (between(0, 3)) {
+ case 0 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ case 1 -> inferenceId = randomValueOtherThan(inferenceId, this::randomInferenceId);
+ case 2 -> prompt = randomValueOtherThan(prompt, this::randomPrompt);
+ case 3 -> targetField = randomValueOtherThan(targetField, this::randomAttribute);
+ }
+ return new Completion(instance.source(), child, inferenceId, prompt, targetField);
+ }
+
+ @Override
+ protected boolean alwaysEmptySource() {
+ return true;
+ }
+
+ private Literal randomInferenceId() {
+ return new Literal(Source.EMPTY, randomIdentifier(), DataType.KEYWORD);
+ }
+
+ private Expression randomPrompt() {
+ return randomBoolean() ? new Literal(Source.EMPTY, randomIdentifier(), DataType.KEYWORD) : randomAttribute();
+ }
+
+ private Attribute randomAttribute() {
+ return FieldAttributeTests.createFieldAttribute(3, randomBoolean());
+ }
+}
From 708180e32b8a78cef8b2eb82e9aa29c453c8995c Mon Sep 17 00:00:00 2001
From: Nhat Nguyen
Date: Mon, 7 Apr 2025 09:43:55 -0700
Subject: [PATCH 03/34] Skip rerank tests in mixed clusters (#126415)
If the clusters don't support inference test services, skip tests that require inference services.
Hence, we should check for rerank tests.
Relates #123074
---
.../xpack/esql/qa/rest/EsqlSpecTestCase.java | 2 +-
.../esql/src/main/antlr/EsqlBaseLexer.g4 | 1 +
.../esql/src/main/antlr/EsqlBaseLexer.tokens | 335 +--
.../esql/src/main/antlr/EsqlBaseParser.tokens | 335 +--
.../xpack/esql/parser/EsqlBaseLexer.interp | 5 +-
.../xpack/esql/parser/EsqlBaseLexer.java | 2217 +++++++++--------
.../xpack/esql/parser/EsqlBaseParser.interp | 5 +-
.../xpack/esql/parser/EsqlBaseParser.java | 1847 +++++++-------
.../parser/EsqlBaseParserBaseListener.java | 12 +
.../parser/EsqlBaseParserBaseVisitor.java | 7 +
.../esql/parser/EsqlBaseParserListener.java | 10 +
.../esql/parser/EsqlBaseParserVisitor.java | 6 +
12 files changed, 2473 insertions(+), 2309 deletions(-)
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 a6d04fd69d3a2..45d745564aac7 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
@@ -184,7 +184,7 @@ public final void test() throws Throwable {
}
protected void shouldSkipTest(String testName) throws IOException {
- if (testCase.requiredCapabilities.contains("semantic_text_field_caps")) {
+ if (testCase.requiredCapabilities.contains("semantic_text_field_caps") || testCase.requiredCapabilities.contains("rerank")) {
assumeTrue("Inference test service needs to be supported for semantic_text", supportsInferenceTestService());
}
checkCapabilities(adminClient(), testFeatureService, testName, testCase);
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
index 296544705c4f9..80071c61a65da 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.g4
@@ -86,6 +86,7 @@ CHANGE_POINT : 'change_point' -> pushMode(CHANGE_POINT_MODE);
// Once the command has been stabilized, remove the DEV_ prefix and the {}? conditional and move the command to the
// main section while preserving alphabetical order:
// MYCOMMAND : 'mycommand' -> ...
+DEV_COMPLETION : {this.isDevVersion()}? 'completion' -> pushMode(EXPRESSION_MODE);
DEV_INLINESTATS : {this.isDevVersion()}? 'inlinestats' -> pushMode(EXPRESSION_MODE);
DEV_LOOKUP : {this.isDevVersion()}? 'lookup_🐔' -> pushMode(LOOKUP_MODE);
DEV_METRICS : {this.isDevVersion()}? 'metrics' -> pushMode(METRICS_MODE);
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
index d8b7213883a59..96596d53d0742 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseLexer.tokens
@@ -16,125 +16,126 @@ STATS=15
WHERE=16
JOIN_LOOKUP=17
CHANGE_POINT=18
-DEV_INLINESTATS=19
-DEV_LOOKUP=20
-DEV_METRICS=21
-DEV_RERANK=22
-DEV_JOIN_FULL=23
-DEV_JOIN_LEFT=24
-DEV_JOIN_RIGHT=25
-UNKNOWN_CMD=26
-LINE_COMMENT=27
-MULTILINE_COMMENT=28
-WS=29
-PIPE=30
-QUOTED_STRING=31
-INTEGER_LITERAL=32
-DECIMAL_LITERAL=33
-AND=34
-AS=35
-ASC=36
-ASSIGN=37
-BY=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
-ON=54
-OR=55
-PARAM=56
-RLIKE=57
-RP=58
-TRUE=59
-WITH=60
-EQ=61
-CIEQ=62
-NEQ=63
-LT=64
-LTE=65
-GT=66
-GTE=67
-PLUS=68
-MINUS=69
-ASTERISK=70
-SLASH=71
-PERCENT=72
-LEFT_BRACES=73
-RIGHT_BRACES=74
-DOUBLE_PARAMS=75
-NAMED_OR_POSITIONAL_PARAM=76
-NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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
+DEV_COMPLETION=19
+DEV_INLINESTATS=20
+DEV_LOOKUP=21
+DEV_METRICS=22
+DEV_RERANK=23
+DEV_JOIN_FULL=24
+DEV_JOIN_LEFT=25
+DEV_JOIN_RIGHT=26
+UNKNOWN_CMD=27
+LINE_COMMENT=28
+MULTILINE_COMMENT=29
+WS=30
+PIPE=31
+QUOTED_STRING=32
+INTEGER_LITERAL=33
+DECIMAL_LITERAL=34
+AND=35
+AS=36
+ASC=37
+ASSIGN=38
+BY=39
+CAST_OP=40
+COLON=41
+COMMA=42
+DESC=43
+DOT=44
+FALSE=45
+FIRST=46
+IN=47
+IS=48
+LAST=49
+LIKE=50
+LP=51
+NOT=52
+NULL=53
+NULLS=54
+ON=55
+OR=56
+PARAM=57
+RLIKE=58
+RP=59
+TRUE=60
+WITH=61
+EQ=62
+CIEQ=63
+NEQ=64
+LT=65
+LTE=66
+GT=67
+GTE=68
+PLUS=69
+MINUS=70
+ASTERISK=71
+SLASH=72
+PERCENT=73
+LEFT_BRACES=74
+RIGHT_BRACES=75
+DOUBLE_PARAMS=76
+NAMED_OR_POSITIONAL_PARAM=77
+NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78
+OPENING_BRACKET=79
+CLOSING_BRACKET=80
+UNQUOTED_IDENTIFIER=81
+QUOTED_IDENTIFIER=82
+EXPR_LINE_COMMENT=83
+EXPR_MULTILINE_COMMENT=84
+EXPR_WS=85
+EXPLAIN_WS=86
+EXPLAIN_LINE_COMMENT=87
+EXPLAIN_MULTILINE_COMMENT=88
+METADATA=89
+UNQUOTED_SOURCE=90
+FROM_LINE_COMMENT=91
+FROM_MULTILINE_COMMENT=92
+FROM_WS=93
+ID_PATTERN=94
+PROJECT_LINE_COMMENT=95
+PROJECT_MULTILINE_COMMENT=96
+PROJECT_WS=97
+RENAME_LINE_COMMENT=98
+RENAME_MULTILINE_COMMENT=99
+RENAME_WS=100
+ENRICH_POLICY_NAME=101
+ENRICH_LINE_COMMENT=102
+ENRICH_MULTILINE_COMMENT=103
+ENRICH_WS=104
+ENRICH_FIELD_LINE_COMMENT=105
+ENRICH_FIELD_MULTILINE_COMMENT=106
+ENRICH_FIELD_WS=107
+MVEXPAND_LINE_COMMENT=108
+MVEXPAND_MULTILINE_COMMENT=109
+MVEXPAND_WS=110
+INFO=111
+SHOW_LINE_COMMENT=112
+SHOW_MULTILINE_COMMENT=113
+SHOW_WS=114
+SETTING=115
+SETTING_LINE_COMMENT=116
+SETTTING_MULTILINE_COMMENT=117
+SETTING_WS=118
+LOOKUP_LINE_COMMENT=119
+LOOKUP_MULTILINE_COMMENT=120
+LOOKUP_WS=121
+LOOKUP_FIELD_LINE_COMMENT=122
+LOOKUP_FIELD_MULTILINE_COMMENT=123
+LOOKUP_FIELD_WS=124
+JOIN=125
+USING=126
+JOIN_LINE_COMMENT=127
+JOIN_MULTILINE_COMMENT=128
+JOIN_WS=129
+METRICS_LINE_COMMENT=130
+METRICS_MULTILINE_COMMENT=131
+METRICS_WS=132
+CLOSING_METRICS_LINE_COMMENT=133
+CLOSING_METRICS_MULTILINE_COMMENT=134
+CLOSING_METRICS_WS=135
+CHANGE_POINT_LINE_COMMENT=136
+CHANGE_POINT_MULTILINE_COMMENT=137
+CHANGE_POINT_WS=138
'dissect'=1
'drop'=2
'enrich'=3
@@ -153,51 +154,51 @@ CHANGE_POINT_WS=137
'where'=16
'lookup'=17
'change_point'=18
-'|'=30
-'and'=34
-'as'=35
-'asc'=36
-'='=37
-'by'=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
-'on'=54
-'or'=55
-'?'=56
-'rlike'=57
-')'=58
-'true'=59
-'with'=60
-'=='=61
-'=~'=62
-'!='=63
-'<'=64
-'<='=65
-'>'=66
-'>='=67
-'+'=68
-'-'=69
-'*'=70
-'/'=71
-'%'=72
-'{'=73
-'}'=74
-'??'=75
-']'=79
-'metadata'=88
-'info'=110
-'join'=124
-'USING'=125
+'|'=31
+'and'=35
+'as'=36
+'asc'=37
+'='=38
+'by'=39
+'::'=40
+':'=41
+','=42
+'desc'=43
+'.'=44
+'false'=45
+'first'=46
+'in'=47
+'is'=48
+'last'=49
+'like'=50
+'('=51
+'not'=52
+'null'=53
+'nulls'=54
+'on'=55
+'or'=56
+'?'=57
+'rlike'=58
+')'=59
+'true'=60
+'with'=61
+'=='=62
+'=~'=63
+'!='=64
+'<'=65
+'<='=66
+'>'=67
+'>='=68
+'+'=69
+'-'=70
+'*'=71
+'/'=72
+'%'=73
+'{'=74
+'}'=75
+'??'=76
+']'=80
+'metadata'=89
+'info'=111
+'join'=125
+'USING'=126
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
index d8b7213883a59..96596d53d0742 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.tokens
@@ -16,125 +16,126 @@ STATS=15
WHERE=16
JOIN_LOOKUP=17
CHANGE_POINT=18
-DEV_INLINESTATS=19
-DEV_LOOKUP=20
-DEV_METRICS=21
-DEV_RERANK=22
-DEV_JOIN_FULL=23
-DEV_JOIN_LEFT=24
-DEV_JOIN_RIGHT=25
-UNKNOWN_CMD=26
-LINE_COMMENT=27
-MULTILINE_COMMENT=28
-WS=29
-PIPE=30
-QUOTED_STRING=31
-INTEGER_LITERAL=32
-DECIMAL_LITERAL=33
-AND=34
-AS=35
-ASC=36
-ASSIGN=37
-BY=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
-ON=54
-OR=55
-PARAM=56
-RLIKE=57
-RP=58
-TRUE=59
-WITH=60
-EQ=61
-CIEQ=62
-NEQ=63
-LT=64
-LTE=65
-GT=66
-GTE=67
-PLUS=68
-MINUS=69
-ASTERISK=70
-SLASH=71
-PERCENT=72
-LEFT_BRACES=73
-RIGHT_BRACES=74
-DOUBLE_PARAMS=75
-NAMED_OR_POSITIONAL_PARAM=76
-NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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
+DEV_COMPLETION=19
+DEV_INLINESTATS=20
+DEV_LOOKUP=21
+DEV_METRICS=22
+DEV_RERANK=23
+DEV_JOIN_FULL=24
+DEV_JOIN_LEFT=25
+DEV_JOIN_RIGHT=26
+UNKNOWN_CMD=27
+LINE_COMMENT=28
+MULTILINE_COMMENT=29
+WS=30
+PIPE=31
+QUOTED_STRING=32
+INTEGER_LITERAL=33
+DECIMAL_LITERAL=34
+AND=35
+AS=36
+ASC=37
+ASSIGN=38
+BY=39
+CAST_OP=40
+COLON=41
+COMMA=42
+DESC=43
+DOT=44
+FALSE=45
+FIRST=46
+IN=47
+IS=48
+LAST=49
+LIKE=50
+LP=51
+NOT=52
+NULL=53
+NULLS=54
+ON=55
+OR=56
+PARAM=57
+RLIKE=58
+RP=59
+TRUE=60
+WITH=61
+EQ=62
+CIEQ=63
+NEQ=64
+LT=65
+LTE=66
+GT=67
+GTE=68
+PLUS=69
+MINUS=70
+ASTERISK=71
+SLASH=72
+PERCENT=73
+LEFT_BRACES=74
+RIGHT_BRACES=75
+DOUBLE_PARAMS=76
+NAMED_OR_POSITIONAL_PARAM=77
+NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78
+OPENING_BRACKET=79
+CLOSING_BRACKET=80
+UNQUOTED_IDENTIFIER=81
+QUOTED_IDENTIFIER=82
+EXPR_LINE_COMMENT=83
+EXPR_MULTILINE_COMMENT=84
+EXPR_WS=85
+EXPLAIN_WS=86
+EXPLAIN_LINE_COMMENT=87
+EXPLAIN_MULTILINE_COMMENT=88
+METADATA=89
+UNQUOTED_SOURCE=90
+FROM_LINE_COMMENT=91
+FROM_MULTILINE_COMMENT=92
+FROM_WS=93
+ID_PATTERN=94
+PROJECT_LINE_COMMENT=95
+PROJECT_MULTILINE_COMMENT=96
+PROJECT_WS=97
+RENAME_LINE_COMMENT=98
+RENAME_MULTILINE_COMMENT=99
+RENAME_WS=100
+ENRICH_POLICY_NAME=101
+ENRICH_LINE_COMMENT=102
+ENRICH_MULTILINE_COMMENT=103
+ENRICH_WS=104
+ENRICH_FIELD_LINE_COMMENT=105
+ENRICH_FIELD_MULTILINE_COMMENT=106
+ENRICH_FIELD_WS=107
+MVEXPAND_LINE_COMMENT=108
+MVEXPAND_MULTILINE_COMMENT=109
+MVEXPAND_WS=110
+INFO=111
+SHOW_LINE_COMMENT=112
+SHOW_MULTILINE_COMMENT=113
+SHOW_WS=114
+SETTING=115
+SETTING_LINE_COMMENT=116
+SETTTING_MULTILINE_COMMENT=117
+SETTING_WS=118
+LOOKUP_LINE_COMMENT=119
+LOOKUP_MULTILINE_COMMENT=120
+LOOKUP_WS=121
+LOOKUP_FIELD_LINE_COMMENT=122
+LOOKUP_FIELD_MULTILINE_COMMENT=123
+LOOKUP_FIELD_WS=124
+JOIN=125
+USING=126
+JOIN_LINE_COMMENT=127
+JOIN_MULTILINE_COMMENT=128
+JOIN_WS=129
+METRICS_LINE_COMMENT=130
+METRICS_MULTILINE_COMMENT=131
+METRICS_WS=132
+CLOSING_METRICS_LINE_COMMENT=133
+CLOSING_METRICS_MULTILINE_COMMENT=134
+CLOSING_METRICS_WS=135
+CHANGE_POINT_LINE_COMMENT=136
+CHANGE_POINT_MULTILINE_COMMENT=137
+CHANGE_POINT_WS=138
'dissect'=1
'drop'=2
'enrich'=3
@@ -153,51 +154,51 @@ CHANGE_POINT_WS=137
'where'=16
'lookup'=17
'change_point'=18
-'|'=30
-'and'=34
-'as'=35
-'asc'=36
-'='=37
-'by'=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
-'on'=54
-'or'=55
-'?'=56
-'rlike'=57
-')'=58
-'true'=59
-'with'=60
-'=='=61
-'=~'=62
-'!='=63
-'<'=64
-'<='=65
-'>'=66
-'>='=67
-'+'=68
-'-'=69
-'*'=70
-'/'=71
-'%'=72
-'{'=73
-'}'=74
-'??'=75
-']'=79
-'metadata'=88
-'info'=110
-'join'=124
-'USING'=125
+'|'=31
+'and'=35
+'as'=36
+'asc'=37
+'='=38
+'by'=39
+'::'=40
+':'=41
+','=42
+'desc'=43
+'.'=44
+'false'=45
+'first'=46
+'in'=47
+'is'=48
+'last'=49
+'like'=50
+'('=51
+'not'=52
+'null'=53
+'nulls'=54
+'on'=55
+'or'=56
+'?'=57
+'rlike'=58
+')'=59
+'true'=60
+'with'=61
+'=='=62
+'=~'=63
+'!='=64
+'<'=65
+'<='=66
+'>'=67
+'>='=68
+'+'=69
+'-'=70
+'*'=71
+'/'=72
+'%'=73
+'{'=74
+'}'=75
+'??'=76
+']'=80
+'metadata'=89
+'info'=111
+'join'=125
+'USING'=126
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 8de44af15548c..49f08a59b438b 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
@@ -29,6 +29,7 @@ null
null
null
null
+null
'|'
null
null
@@ -158,6 +159,7 @@ STATS
WHERE
JOIN_LOOKUP
CHANGE_POINT
+DEV_COMPLETION
DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
@@ -297,6 +299,7 @@ STATS
WHERE
JOIN_LOOKUP
CHANGE_POINT
+DEV_COMPLETION
DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
@@ -548,4 +551,4 @@ CLOSING_METRICS_MODE
CHANGE_POINT_MODE
atn:
-[4, 0, 137, 1804, 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, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 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, 4, 25, 733, 8, 25, 11, 25, 12, 25, 734, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 743, 8, 26, 10, 26, 12, 26, 746, 9, 26, 1, 26, 3, 26, 749, 8, 26, 1, 26, 3, 26, 752, 8, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 761, 8, 27, 10, 27, 12, 27, 764, 9, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 4, 28, 772, 8, 28, 11, 28, 12, 28, 773, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 793, 8, 34, 1, 34, 4, 34, 796, 8, 34, 11, 34, 12, 34, 797, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 3, 37, 807, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 814, 8, 39, 1, 40, 1, 40, 1, 40, 5, 40, 819, 8, 40, 10, 40, 12, 40, 822, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 830, 8, 40, 10, 40, 12, 40, 833, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 840, 8, 40, 1, 40, 3, 40, 843, 8, 40, 3, 40, 845, 8, 40, 1, 41, 4, 41, 848, 8, 41, 11, 41, 12, 41, 849, 1, 42, 4, 42, 853, 8, 42, 11, 42, 12, 42, 854, 1, 42, 1, 42, 5, 42, 859, 8, 42, 10, 42, 12, 42, 862, 9, 42, 1, 42, 1, 42, 4, 42, 866, 8, 42, 11, 42, 12, 42, 867, 1, 42, 4, 42, 871, 8, 42, 11, 42, 12, 42, 872, 1, 42, 1, 42, 5, 42, 877, 8, 42, 10, 42, 12, 42, 880, 9, 42, 3, 42, 882, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 888, 8, 42, 11, 42, 12, 42, 889, 1, 42, 1, 42, 3, 42, 894, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 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, 64, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 71, 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, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 1040, 8, 86, 1, 86, 5, 86, 1043, 8, 86, 10, 86, 12, 86, 1046, 9, 86, 1, 86, 1, 86, 4, 86, 1050, 8, 86, 11, 86, 12, 86, 1051, 3, 86, 1054, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1059, 8, 87, 1, 87, 5, 87, 1062, 8, 87, 10, 87, 12, 87, 1065, 9, 87, 1, 87, 1, 87, 4, 87, 1069, 8, 87, 11, 87, 12, 87, 1070, 3, 87, 1073, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 5, 90, 1087, 8, 90, 10, 90, 12, 90, 1090, 9, 90, 1, 90, 1, 90, 3, 90, 1094, 8, 90, 1, 90, 4, 90, 1097, 8, 90, 11, 90, 12, 90, 1098, 3, 90, 1101, 8, 90, 1, 91, 1, 91, 4, 91, 1105, 8, 91, 11, 91, 12, 91, 1106, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 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, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 3, 109, 1188, 8, 109, 1, 110, 4, 110, 1191, 8, 110, 11, 110, 12, 110, 1192, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 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, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1248, 8, 123, 1, 124, 1, 124, 3, 124, 1252, 8, 124, 1, 124, 5, 124, 1255, 8, 124, 10, 124, 12, 124, 1258, 9, 124, 1, 124, 1, 124, 3, 124, 1262, 8, 124, 1, 124, 4, 124, 1265, 8, 124, 11, 124, 12, 124, 1266, 3, 124, 1269, 8, 124, 1, 125, 1, 125, 4, 125, 1273, 8, 125, 11, 125, 12, 125, 1274, 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, 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, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 4, 147, 1365, 8, 147, 11, 147, 12, 147, 1366, 1, 147, 1, 147, 3, 147, 1371, 8, 147, 1, 147, 4, 147, 1374, 8, 147, 11, 147, 12, 147, 1375, 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, 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, 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, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 4, 184, 1533, 8, 184, 11, 184, 12, 184, 1534, 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, 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, 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, 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, 205, 1, 206, 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, 208, 1, 208, 1, 209, 1, 209, 1, 209, 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, 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, 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, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 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, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 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, 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, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 2, 762, 831, 0, 244, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 30, 77, 0, 79, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 31, 99, 32, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 71, 179, 72, 181, 73, 183, 74, 185, 75, 187, 0, 189, 76, 191, 77, 193, 78, 195, 79, 197, 80, 199, 0, 201, 81, 203, 82, 205, 83, 207, 84, 209, 0, 211, 0, 213, 85, 215, 86, 217, 87, 219, 0, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 88, 235, 0, 237, 89, 239, 0, 241, 0, 243, 90, 245, 91, 247, 92, 249, 0, 251, 0, 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, 0, 293, 0, 295, 97, 297, 98, 299, 99, 301, 0, 303, 0, 305, 0, 307, 0, 309, 0, 311, 100, 313, 0, 315, 101, 317, 102, 319, 103, 321, 0, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 104, 345, 105, 347, 106, 349, 0, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 107, 367, 108, 369, 109, 371, 0, 373, 110, 375, 111, 377, 112, 379, 113, 381, 0, 383, 0, 385, 114, 387, 115, 389, 116, 391, 117, 393, 0, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 118, 409, 119, 411, 120, 413, 0, 415, 0, 417, 0, 419, 0, 421, 121, 423, 122, 425, 123, 427, 0, 429, 124, 431, 0, 433, 0, 435, 125, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 126, 449, 127, 451, 128, 453, 0, 455, 0, 457, 0, 459, 129, 461, 130, 463, 131, 465, 0, 467, 0, 469, 0, 471, 132, 473, 133, 475, 134, 477, 0, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 135, 501, 136, 503, 137, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 68, 68, 100, 100, 2, 0, 73, 73, 105, 105, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 78, 78, 110, 110, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 77, 77, 109, 109, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1834, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 1, 75, 1, 0, 0, 0, 1, 97, 1, 0, 0, 0, 1, 99, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 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, 201, 1, 0, 0, 0, 1, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 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, 2, 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, 231, 1, 0, 0, 0, 3, 233, 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, 3, 245, 1, 0, 0, 0, 3, 247, 1, 0, 0, 0, 4, 249, 1, 0, 0, 0, 4, 251, 1, 0, 0, 0, 4, 253, 1, 0, 0, 0, 4, 255, 1, 0, 0, 0, 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, 5, 297, 1, 0, 0, 0, 5, 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, 6, 311, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 6, 317, 1, 0, 0, 0, 6, 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, 7, 341, 1, 0, 0, 0, 7, 343, 1, 0, 0, 0, 7, 345, 1, 0, 0, 0, 7, 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, 8, 359, 1, 0, 0, 0, 8, 361, 1, 0, 0, 0, 8, 363, 1, 0, 0, 0, 8, 365, 1, 0, 0, 0, 8, 367, 1, 0, 0, 0, 8, 369, 1, 0, 0, 0, 9, 371, 1, 0, 0, 0, 9, 373, 1, 0, 0, 0, 9, 375, 1, 0, 0, 0, 9, 377, 1, 0, 0, 0, 9, 379, 1, 0, 0, 0, 10, 381, 1, 0, 0, 0, 10, 383, 1, 0, 0, 0, 10, 385, 1, 0, 0, 0, 10, 387, 1, 0, 0, 0, 10, 389, 1, 0, 0, 0, 10, 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, 11, 401, 1, 0, 0, 0, 11, 403, 1, 0, 0, 0, 11, 405, 1, 0, 0, 0, 11, 407, 1, 0, 0, 0, 11, 409, 1, 0, 0, 0, 11, 411, 1, 0, 0, 0, 12, 413, 1, 0, 0, 0, 12, 415, 1, 0, 0, 0, 12, 417, 1, 0, 0, 0, 12, 419, 1, 0, 0, 0, 12, 421, 1, 0, 0, 0, 12, 423, 1, 0, 0, 0, 12, 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, 13, 441, 1, 0, 0, 0, 13, 443, 1, 0, 0, 0, 13, 445, 1, 0, 0, 0, 13, 447, 1, 0, 0, 0, 13, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 14, 453, 1, 0, 0, 0, 14, 455, 1, 0, 0, 0, 14, 457, 1, 0, 0, 0, 14, 459, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 14, 463, 1, 0, 0, 0, 15, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 15, 471, 1, 0, 0, 0, 15, 473, 1, 0, 0, 0, 15, 475, 1, 0, 0, 0, 15, 477, 1, 0, 0, 0, 15, 479, 1, 0, 0, 0, 15, 481, 1, 0, 0, 0, 15, 483, 1, 0, 0, 0, 16, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 16, 493, 1, 0, 0, 0, 16, 495, 1, 0, 0, 0, 16, 497, 1, 0, 0, 0, 16, 499, 1, 0, 0, 0, 16, 501, 1, 0, 0, 0, 16, 503, 1, 0, 0, 0, 17, 505, 1, 0, 0, 0, 19, 515, 1, 0, 0, 0, 21, 522, 1, 0, 0, 0, 23, 531, 1, 0, 0, 0, 25, 538, 1, 0, 0, 0, 27, 548, 1, 0, 0, 0, 29, 555, 1, 0, 0, 0, 31, 562, 1, 0, 0, 0, 33, 569, 1, 0, 0, 0, 35, 577, 1, 0, 0, 0, 37, 589, 1, 0, 0, 0, 39, 598, 1, 0, 0, 0, 41, 604, 1, 0, 0, 0, 43, 611, 1, 0, 0, 0, 45, 618, 1, 0, 0, 0, 47, 626, 1, 0, 0, 0, 49, 634, 1, 0, 0, 0, 51, 643, 1, 0, 0, 0, 53, 658, 1, 0, 0, 0, 55, 673, 1, 0, 0, 0, 57, 685, 1, 0, 0, 0, 59, 696, 1, 0, 0, 0, 61, 706, 1, 0, 0, 0, 63, 714, 1, 0, 0, 0, 65, 722, 1, 0, 0, 0, 67, 732, 1, 0, 0, 0, 69, 738, 1, 0, 0, 0, 71, 755, 1, 0, 0, 0, 73, 771, 1, 0, 0, 0, 75, 777, 1, 0, 0, 0, 77, 781, 1, 0, 0, 0, 79, 783, 1, 0, 0, 0, 81, 785, 1, 0, 0, 0, 83, 788, 1, 0, 0, 0, 85, 790, 1, 0, 0, 0, 87, 799, 1, 0, 0, 0, 89, 801, 1, 0, 0, 0, 91, 806, 1, 0, 0, 0, 93, 808, 1, 0, 0, 0, 95, 813, 1, 0, 0, 0, 97, 844, 1, 0, 0, 0, 99, 847, 1, 0, 0, 0, 101, 893, 1, 0, 0, 0, 103, 895, 1, 0, 0, 0, 105, 899, 1, 0, 0, 0, 107, 902, 1, 0, 0, 0, 109, 906, 1, 0, 0, 0, 111, 908, 1, 0, 0, 0, 113, 911, 1, 0, 0, 0, 115, 914, 1, 0, 0, 0, 117, 916, 1, 0, 0, 0, 119, 918, 1, 0, 0, 0, 121, 923, 1, 0, 0, 0, 123, 925, 1, 0, 0, 0, 125, 931, 1, 0, 0, 0, 127, 937, 1, 0, 0, 0, 129, 940, 1, 0, 0, 0, 131, 943, 1, 0, 0, 0, 133, 948, 1, 0, 0, 0, 135, 953, 1, 0, 0, 0, 137, 955, 1, 0, 0, 0, 139, 959, 1, 0, 0, 0, 141, 964, 1, 0, 0, 0, 143, 970, 1, 0, 0, 0, 145, 973, 1, 0, 0, 0, 147, 976, 1, 0, 0, 0, 149, 978, 1, 0, 0, 0, 151, 984, 1, 0, 0, 0, 153, 986, 1, 0, 0, 0, 155, 991, 1, 0, 0, 0, 157, 996, 1, 0, 0, 0, 159, 999, 1, 0, 0, 0, 161, 1002, 1, 0, 0, 0, 163, 1005, 1, 0, 0, 0, 165, 1007, 1, 0, 0, 0, 167, 1010, 1, 0, 0, 0, 169, 1012, 1, 0, 0, 0, 171, 1015, 1, 0, 0, 0, 173, 1017, 1, 0, 0, 0, 175, 1019, 1, 0, 0, 0, 177, 1021, 1, 0, 0, 0, 179, 1023, 1, 0, 0, 0, 181, 1025, 1, 0, 0, 0, 183, 1027, 1, 0, 0, 0, 185, 1029, 1, 0, 0, 0, 187, 1032, 1, 0, 0, 0, 189, 1053, 1, 0, 0, 0, 191, 1072, 1, 0, 0, 0, 193, 1074, 1, 0, 0, 0, 195, 1079, 1, 0, 0, 0, 197, 1100, 1, 0, 0, 0, 199, 1102, 1, 0, 0, 0, 201, 1110, 1, 0, 0, 0, 203, 1112, 1, 0, 0, 0, 205, 1116, 1, 0, 0, 0, 207, 1120, 1, 0, 0, 0, 209, 1124, 1, 0, 0, 0, 211, 1129, 1, 0, 0, 0, 213, 1134, 1, 0, 0, 0, 215, 1138, 1, 0, 0, 0, 217, 1142, 1, 0, 0, 0, 219, 1146, 1, 0, 0, 0, 221, 1151, 1, 0, 0, 0, 223, 1155, 1, 0, 0, 0, 225, 1159, 1, 0, 0, 0, 227, 1163, 1, 0, 0, 0, 229, 1167, 1, 0, 0, 0, 231, 1171, 1, 0, 0, 0, 233, 1175, 1, 0, 0, 0, 235, 1187, 1, 0, 0, 0, 237, 1190, 1, 0, 0, 0, 239, 1194, 1, 0, 0, 0, 241, 1198, 1, 0, 0, 0, 243, 1202, 1, 0, 0, 0, 245, 1206, 1, 0, 0, 0, 247, 1210, 1, 0, 0, 0, 249, 1214, 1, 0, 0, 0, 251, 1219, 1, 0, 0, 0, 253, 1223, 1, 0, 0, 0, 255, 1227, 1, 0, 0, 0, 257, 1231, 1, 0, 0, 0, 259, 1235, 1, 0, 0, 0, 261, 1239, 1, 0, 0, 0, 263, 1247, 1, 0, 0, 0, 265, 1268, 1, 0, 0, 0, 267, 1272, 1, 0, 0, 0, 269, 1276, 1, 0, 0, 0, 271, 1280, 1, 0, 0, 0, 273, 1284, 1, 0, 0, 0, 275, 1288, 1, 0, 0, 0, 277, 1293, 1, 0, 0, 0, 279, 1297, 1, 0, 0, 0, 281, 1301, 1, 0, 0, 0, 283, 1305, 1, 0, 0, 0, 285, 1309, 1, 0, 0, 0, 287, 1313, 1, 0, 0, 0, 289, 1317, 1, 0, 0, 0, 291, 1321, 1, 0, 0, 0, 293, 1325, 1, 0, 0, 0, 295, 1329, 1, 0, 0, 0, 297, 1333, 1, 0, 0, 0, 299, 1337, 1, 0, 0, 0, 301, 1341, 1, 0, 0, 0, 303, 1346, 1, 0, 0, 0, 305, 1351, 1, 0, 0, 0, 307, 1356, 1, 0, 0, 0, 309, 1361, 1, 0, 0, 0, 311, 1370, 1, 0, 0, 0, 313, 1377, 1, 0, 0, 0, 315, 1381, 1, 0, 0, 0, 317, 1385, 1, 0, 0, 0, 319, 1389, 1, 0, 0, 0, 321, 1393, 1, 0, 0, 0, 323, 1399, 1, 0, 0, 0, 325, 1403, 1, 0, 0, 0, 327, 1407, 1, 0, 0, 0, 329, 1411, 1, 0, 0, 0, 331, 1415, 1, 0, 0, 0, 333, 1419, 1, 0, 0, 0, 335, 1423, 1, 0, 0, 0, 337, 1427, 1, 0, 0, 0, 339, 1431, 1, 0, 0, 0, 341, 1435, 1, 0, 0, 0, 343, 1439, 1, 0, 0, 0, 345, 1443, 1, 0, 0, 0, 347, 1447, 1, 0, 0, 0, 349, 1451, 1, 0, 0, 0, 351, 1456, 1, 0, 0, 0, 353, 1460, 1, 0, 0, 0, 355, 1464, 1, 0, 0, 0, 357, 1468, 1, 0, 0, 0, 359, 1472, 1, 0, 0, 0, 361, 1476, 1, 0, 0, 0, 363, 1480, 1, 0, 0, 0, 365, 1484, 1, 0, 0, 0, 367, 1488, 1, 0, 0, 0, 369, 1492, 1, 0, 0, 0, 371, 1496, 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, 1532, 1, 0, 0, 0, 387, 1536, 1, 0, 0, 0, 389, 1540, 1, 0, 0, 0, 391, 1544, 1, 0, 0, 0, 393, 1548, 1, 0, 0, 0, 395, 1553, 1, 0, 0, 0, 397, 1557, 1, 0, 0, 0, 399, 1561, 1, 0, 0, 0, 401, 1565, 1, 0, 0, 0, 403, 1570, 1, 0, 0, 0, 405, 1574, 1, 0, 0, 0, 407, 1578, 1, 0, 0, 0, 409, 1582, 1, 0, 0, 0, 411, 1586, 1, 0, 0, 0, 413, 1590, 1, 0, 0, 0, 415, 1596, 1, 0, 0, 0, 417, 1600, 1, 0, 0, 0, 419, 1604, 1, 0, 0, 0, 421, 1608, 1, 0, 0, 0, 423, 1612, 1, 0, 0, 0, 425, 1616, 1, 0, 0, 0, 427, 1620, 1, 0, 0, 0, 429, 1625, 1, 0, 0, 0, 431, 1630, 1, 0, 0, 0, 433, 1634, 1, 0, 0, 0, 435, 1640, 1, 0, 0, 0, 437, 1649, 1, 0, 0, 0, 439, 1653, 1, 0, 0, 0, 441, 1657, 1, 0, 0, 0, 443, 1661, 1, 0, 0, 0, 445, 1665, 1, 0, 0, 0, 447, 1669, 1, 0, 0, 0, 449, 1673, 1, 0, 0, 0, 451, 1677, 1, 0, 0, 0, 453, 1681, 1, 0, 0, 0, 455, 1686, 1, 0, 0, 0, 457, 1692, 1, 0, 0, 0, 459, 1698, 1, 0, 0, 0, 461, 1702, 1, 0, 0, 0, 463, 1706, 1, 0, 0, 0, 465, 1710, 1, 0, 0, 0, 467, 1716, 1, 0, 0, 0, 469, 1722, 1, 0, 0, 0, 471, 1728, 1, 0, 0, 0, 473, 1732, 1, 0, 0, 0, 475, 1736, 1, 0, 0, 0, 477, 1740, 1, 0, 0, 0, 479, 1746, 1, 0, 0, 0, 481, 1752, 1, 0, 0, 0, 483, 1758, 1, 0, 0, 0, 485, 1763, 1, 0, 0, 0, 487, 1768, 1, 0, 0, 0, 489, 1772, 1, 0, 0, 0, 491, 1776, 1, 0, 0, 0, 493, 1780, 1, 0, 0, 0, 495, 1784, 1, 0, 0, 0, 497, 1788, 1, 0, 0, 0, 499, 1792, 1, 0, 0, 0, 501, 1796, 1, 0, 0, 0, 503, 1800, 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, 18, 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, 20, 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, 22, 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, 24, 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, 26, 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, 28, 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, 30, 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, 32, 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, 34, 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, 36, 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, 38, 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, 40, 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, 42, 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, 44, 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, 46, 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, 48, 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, 50, 1, 0, 0, 0, 643, 644, 7, 4, 0, 0, 644, 645, 7, 10, 0, 0, 645, 646, 7, 12, 0, 0, 646, 647, 7, 9, 0, 0, 647, 648, 7, 17, 0, 0, 648, 649, 7, 3, 0, 0, 649, 650, 5, 95, 0, 0, 650, 651, 7, 8, 0, 0, 651, 652, 7, 7, 0, 0, 652, 653, 7, 1, 0, 0, 653, 654, 7, 9, 0, 0, 654, 655, 7, 5, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 6, 17, 9, 0, 657, 52, 1, 0, 0, 0, 658, 659, 4, 18, 0, 0, 659, 660, 7, 1, 0, 0, 660, 661, 7, 9, 0, 0, 661, 662, 7, 13, 0, 0, 662, 663, 7, 1, 0, 0, 663, 664, 7, 9, 0, 0, 664, 665, 7, 3, 0, 0, 665, 666, 7, 2, 0, 0, 666, 667, 7, 5, 0, 0, 667, 668, 7, 12, 0, 0, 668, 669, 7, 5, 0, 0, 669, 670, 7, 2, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 6, 18, 0, 0, 672, 54, 1, 0, 0, 0, 673, 674, 4, 19, 1, 0, 674, 675, 7, 13, 0, 0, 675, 676, 7, 7, 0, 0, 676, 677, 7, 7, 0, 0, 677, 678, 7, 18, 0, 0, 678, 679, 7, 20, 0, 0, 679, 680, 7, 8, 0, 0, 680, 681, 5, 95, 0, 0, 681, 682, 5, 128020, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 6, 19, 10, 0, 684, 56, 1, 0, 0, 0, 685, 686, 4, 20, 2, 0, 686, 687, 7, 16, 0, 0, 687, 688, 7, 3, 0, 0, 688, 689, 7, 5, 0, 0, 689, 690, 7, 6, 0, 0, 690, 691, 7, 1, 0, 0, 691, 692, 7, 4, 0, 0, 692, 693, 7, 2, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 6, 20, 11, 0, 695, 58, 1, 0, 0, 0, 696, 697, 4, 21, 3, 0, 697, 698, 7, 6, 0, 0, 698, 699, 7, 3, 0, 0, 699, 700, 7, 6, 0, 0, 700, 701, 7, 12, 0, 0, 701, 702, 7, 9, 0, 0, 702, 703, 7, 18, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 6, 21, 0, 0, 705, 60, 1, 0, 0, 0, 706, 707, 4, 22, 4, 0, 707, 708, 7, 15, 0, 0, 708, 709, 7, 20, 0, 0, 709, 710, 7, 13, 0, 0, 710, 711, 7, 13, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 6, 22, 8, 0, 713, 62, 1, 0, 0, 0, 714, 715, 4, 23, 5, 0, 715, 716, 7, 13, 0, 0, 716, 717, 7, 3, 0, 0, 717, 718, 7, 15, 0, 0, 718, 719, 7, 5, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 23, 8, 0, 721, 64, 1, 0, 0, 0, 722, 723, 4, 24, 6, 0, 723, 724, 7, 6, 0, 0, 724, 725, 7, 1, 0, 0, 725, 726, 7, 17, 0, 0, 726, 727, 7, 10, 0, 0, 727, 728, 7, 5, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 6, 24, 8, 0, 730, 66, 1, 0, 0, 0, 731, 733, 8, 21, 0, 0, 732, 731, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 6, 25, 0, 0, 737, 68, 1, 0, 0, 0, 738, 739, 5, 47, 0, 0, 739, 740, 5, 47, 0, 0, 740, 744, 1, 0, 0, 0, 741, 743, 8, 22, 0, 0, 742, 741, 1, 0, 0, 0, 743, 746, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 748, 1, 0, 0, 0, 746, 744, 1, 0, 0, 0, 747, 749, 5, 13, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 751, 1, 0, 0, 0, 750, 752, 5, 10, 0, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 754, 6, 26, 12, 0, 754, 70, 1, 0, 0, 0, 755, 756, 5, 47, 0, 0, 756, 757, 5, 42, 0, 0, 757, 762, 1, 0, 0, 0, 758, 761, 3, 71, 27, 0, 759, 761, 9, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 759, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 765, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 766, 5, 42, 0, 0, 766, 767, 5, 47, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 6, 27, 12, 0, 769, 72, 1, 0, 0, 0, 770, 772, 7, 23, 0, 0, 771, 770, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 776, 6, 28, 12, 0, 776, 74, 1, 0, 0, 0, 777, 778, 5, 124, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 6, 29, 13, 0, 780, 76, 1, 0, 0, 0, 781, 782, 7, 24, 0, 0, 782, 78, 1, 0, 0, 0, 783, 784, 7, 25, 0, 0, 784, 80, 1, 0, 0, 0, 785, 786, 5, 92, 0, 0, 786, 787, 7, 26, 0, 0, 787, 82, 1, 0, 0, 0, 788, 789, 8, 27, 0, 0, 789, 84, 1, 0, 0, 0, 790, 792, 7, 3, 0, 0, 791, 793, 7, 28, 0, 0, 792, 791, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 795, 1, 0, 0, 0, 794, 796, 3, 77, 30, 0, 795, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 86, 1, 0, 0, 0, 799, 800, 5, 64, 0, 0, 800, 88, 1, 0, 0, 0, 801, 802, 5, 96, 0, 0, 802, 90, 1, 0, 0, 0, 803, 807, 8, 29, 0, 0, 804, 805, 5, 96, 0, 0, 805, 807, 5, 96, 0, 0, 806, 803, 1, 0, 0, 0, 806, 804, 1, 0, 0, 0, 807, 92, 1, 0, 0, 0, 808, 809, 5, 95, 0, 0, 809, 94, 1, 0, 0, 0, 810, 814, 3, 79, 31, 0, 811, 814, 3, 77, 30, 0, 812, 814, 3, 93, 38, 0, 813, 810, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 813, 812, 1, 0, 0, 0, 814, 96, 1, 0, 0, 0, 815, 820, 5, 34, 0, 0, 816, 819, 3, 81, 32, 0, 817, 819, 3, 83, 33, 0, 818, 816, 1, 0, 0, 0, 818, 817, 1, 0, 0, 0, 819, 822, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 823, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 845, 5, 34, 0, 0, 824, 825, 5, 34, 0, 0, 825, 826, 5, 34, 0, 0, 826, 827, 5, 34, 0, 0, 827, 831, 1, 0, 0, 0, 828, 830, 8, 22, 0, 0, 829, 828, 1, 0, 0, 0, 830, 833, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 831, 829, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 835, 5, 34, 0, 0, 835, 836, 5, 34, 0, 0, 836, 837, 5, 34, 0, 0, 837, 839, 1, 0, 0, 0, 838, 840, 5, 34, 0, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 842, 1, 0, 0, 0, 841, 843, 5, 34, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 815, 1, 0, 0, 0, 844, 824, 1, 0, 0, 0, 845, 98, 1, 0, 0, 0, 846, 848, 3, 77, 30, 0, 847, 846, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 100, 1, 0, 0, 0, 851, 853, 3, 77, 30, 0, 852, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 860, 3, 121, 52, 0, 857, 859, 3, 77, 30, 0, 858, 857, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 894, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 865, 3, 121, 52, 0, 864, 866, 3, 77, 30, 0, 865, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 894, 1, 0, 0, 0, 869, 871, 3, 77, 30, 0, 870, 869, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 881, 1, 0, 0, 0, 874, 878, 3, 121, 52, 0, 875, 877, 3, 77, 30, 0, 876, 875, 1, 0, 0, 0, 877, 880, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 882, 1, 0, 0, 0, 880, 878, 1, 0, 0, 0, 881, 874, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 3, 85, 34, 0, 884, 894, 1, 0, 0, 0, 885, 887, 3, 121, 52, 0, 886, 888, 3, 77, 30, 0, 887, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 3, 85, 34, 0, 892, 894, 1, 0, 0, 0, 893, 852, 1, 0, 0, 0, 893, 863, 1, 0, 0, 0, 893, 870, 1, 0, 0, 0, 893, 885, 1, 0, 0, 0, 894, 102, 1, 0, 0, 0, 895, 896, 7, 12, 0, 0, 896, 897, 7, 9, 0, 0, 897, 898, 7, 0, 0, 0, 898, 104, 1, 0, 0, 0, 899, 900, 7, 12, 0, 0, 900, 901, 7, 2, 0, 0, 901, 106, 1, 0, 0, 0, 902, 903, 7, 12, 0, 0, 903, 904, 7, 2, 0, 0, 904, 905, 7, 4, 0, 0, 905, 108, 1, 0, 0, 0, 906, 907, 5, 61, 0, 0, 907, 110, 1, 0, 0, 0, 908, 909, 7, 30, 0, 0, 909, 910, 7, 31, 0, 0, 910, 112, 1, 0, 0, 0, 911, 912, 5, 58, 0, 0, 912, 913, 5, 58, 0, 0, 913, 114, 1, 0, 0, 0, 914, 915, 5, 58, 0, 0, 915, 116, 1, 0, 0, 0, 916, 917, 5, 44, 0, 0, 917, 118, 1, 0, 0, 0, 918, 919, 7, 0, 0, 0, 919, 920, 7, 3, 0, 0, 920, 921, 7, 2, 0, 0, 921, 922, 7, 4, 0, 0, 922, 120, 1, 0, 0, 0, 923, 924, 5, 46, 0, 0, 924, 122, 1, 0, 0, 0, 925, 926, 7, 15, 0, 0, 926, 927, 7, 12, 0, 0, 927, 928, 7, 13, 0, 0, 928, 929, 7, 2, 0, 0, 929, 930, 7, 3, 0, 0, 930, 124, 1, 0, 0, 0, 931, 932, 7, 15, 0, 0, 932, 933, 7, 1, 0, 0, 933, 934, 7, 6, 0, 0, 934, 935, 7, 2, 0, 0, 935, 936, 7, 5, 0, 0, 936, 126, 1, 0, 0, 0, 937, 938, 7, 1, 0, 0, 938, 939, 7, 9, 0, 0, 939, 128, 1, 0, 0, 0, 940, 941, 7, 1, 0, 0, 941, 942, 7, 2, 0, 0, 942, 130, 1, 0, 0, 0, 943, 944, 7, 13, 0, 0, 944, 945, 7, 12, 0, 0, 945, 946, 7, 2, 0, 0, 946, 947, 7, 5, 0, 0, 947, 132, 1, 0, 0, 0, 948, 949, 7, 13, 0, 0, 949, 950, 7, 1, 0, 0, 950, 951, 7, 18, 0, 0, 951, 952, 7, 3, 0, 0, 952, 134, 1, 0, 0, 0, 953, 954, 5, 40, 0, 0, 954, 136, 1, 0, 0, 0, 955, 956, 7, 9, 0, 0, 956, 957, 7, 7, 0, 0, 957, 958, 7, 5, 0, 0, 958, 138, 1, 0, 0, 0, 959, 960, 7, 9, 0, 0, 960, 961, 7, 20, 0, 0, 961, 962, 7, 13, 0, 0, 962, 963, 7, 13, 0, 0, 963, 140, 1, 0, 0, 0, 964, 965, 7, 9, 0, 0, 965, 966, 7, 20, 0, 0, 966, 967, 7, 13, 0, 0, 967, 968, 7, 13, 0, 0, 968, 969, 7, 2, 0, 0, 969, 142, 1, 0, 0, 0, 970, 971, 7, 7, 0, 0, 971, 972, 7, 9, 0, 0, 972, 144, 1, 0, 0, 0, 973, 974, 7, 7, 0, 0, 974, 975, 7, 6, 0, 0, 975, 146, 1, 0, 0, 0, 976, 977, 5, 63, 0, 0, 977, 148, 1, 0, 0, 0, 978, 979, 7, 6, 0, 0, 979, 980, 7, 13, 0, 0, 980, 981, 7, 1, 0, 0, 981, 982, 7, 18, 0, 0, 982, 983, 7, 3, 0, 0, 983, 150, 1, 0, 0, 0, 984, 985, 5, 41, 0, 0, 985, 152, 1, 0, 0, 0, 986, 987, 7, 5, 0, 0, 987, 988, 7, 6, 0, 0, 988, 989, 7, 20, 0, 0, 989, 990, 7, 3, 0, 0, 990, 154, 1, 0, 0, 0, 991, 992, 7, 19, 0, 0, 992, 993, 7, 1, 0, 0, 993, 994, 7, 5, 0, 0, 994, 995, 7, 10, 0, 0, 995, 156, 1, 0, 0, 0, 996, 997, 5, 61, 0, 0, 997, 998, 5, 61, 0, 0, 998, 158, 1, 0, 0, 0, 999, 1000, 5, 61, 0, 0, 1000, 1001, 5, 126, 0, 0, 1001, 160, 1, 0, 0, 0, 1002, 1003, 5, 33, 0, 0, 1003, 1004, 5, 61, 0, 0, 1004, 162, 1, 0, 0, 0, 1005, 1006, 5, 60, 0, 0, 1006, 164, 1, 0, 0, 0, 1007, 1008, 5, 60, 0, 0, 1008, 1009, 5, 61, 0, 0, 1009, 166, 1, 0, 0, 0, 1010, 1011, 5, 62, 0, 0, 1011, 168, 1, 0, 0, 0, 1012, 1013, 5, 62, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 170, 1, 0, 0, 0, 1015, 1016, 5, 43, 0, 0, 1016, 172, 1, 0, 0, 0, 1017, 1018, 5, 45, 0, 0, 1018, 174, 1, 0, 0, 0, 1019, 1020, 5, 42, 0, 0, 1020, 176, 1, 0, 0, 0, 1021, 1022, 5, 47, 0, 0, 1022, 178, 1, 0, 0, 0, 1023, 1024, 5, 37, 0, 0, 1024, 180, 1, 0, 0, 0, 1025, 1026, 5, 123, 0, 0, 1026, 182, 1, 0, 0, 0, 1027, 1028, 5, 125, 0, 0, 1028, 184, 1, 0, 0, 0, 1029, 1030, 5, 63, 0, 0, 1030, 1031, 5, 63, 0, 0, 1031, 186, 1, 0, 0, 0, 1032, 1033, 3, 47, 15, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 6, 85, 14, 0, 1035, 188, 1, 0, 0, 0, 1036, 1039, 3, 147, 65, 0, 1037, 1040, 3, 79, 31, 0, 1038, 1040, 3, 93, 38, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1044, 1, 0, 0, 0, 1041, 1043, 3, 95, 39, 0, 1042, 1041, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1054, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1049, 3, 147, 65, 0, 1048, 1050, 3, 77, 30, 0, 1049, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1049, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1054, 1, 0, 0, 0, 1053, 1036, 1, 0, 0, 0, 1053, 1047, 1, 0, 0, 0, 1054, 190, 1, 0, 0, 0, 1055, 1058, 3, 185, 84, 0, 1056, 1059, 3, 79, 31, 0, 1057, 1059, 3, 93, 38, 0, 1058, 1056, 1, 0, 0, 0, 1058, 1057, 1, 0, 0, 0, 1059, 1063, 1, 0, 0, 0, 1060, 1062, 3, 95, 39, 0, 1061, 1060, 1, 0, 0, 0, 1062, 1065, 1, 0, 0, 0, 1063, 1061, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1073, 1, 0, 0, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1068, 3, 185, 84, 0, 1067, 1069, 3, 77, 30, 0, 1068, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1068, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 1055, 1, 0, 0, 0, 1072, 1066, 1, 0, 0, 0, 1073, 192, 1, 0, 0, 0, 1074, 1075, 5, 91, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 6, 88, 0, 0, 1077, 1078, 6, 88, 0, 0, 1078, 194, 1, 0, 0, 0, 1079, 1080, 5, 93, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 6, 89, 13, 0, 1082, 1083, 6, 89, 13, 0, 1083, 196, 1, 0, 0, 0, 1084, 1088, 3, 79, 31, 0, 1085, 1087, 3, 95, 39, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1101, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1094, 3, 93, 38, 0, 1092, 1094, 3, 87, 35, 0, 1093, 1091, 1, 0, 0, 0, 1093, 1092, 1, 0, 0, 0, 1094, 1096, 1, 0, 0, 0, 1095, 1097, 3, 95, 39, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1084, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 198, 1, 0, 0, 0, 1102, 1104, 3, 89, 36, 0, 1103, 1105, 3, 91, 37, 0, 1104, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 89, 36, 0, 1109, 200, 1, 0, 0, 0, 1110, 1111, 3, 199, 91, 0, 1111, 202, 1, 0, 0, 0, 1112, 1113, 3, 69, 26, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1115, 6, 93, 12, 0, 1115, 204, 1, 0, 0, 0, 1116, 1117, 3, 71, 27, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 6, 94, 12, 0, 1119, 206, 1, 0, 0, 0, 1120, 1121, 3, 73, 28, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 6, 95, 12, 0, 1123, 208, 1, 0, 0, 0, 1124, 1125, 3, 193, 88, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 6, 96, 15, 0, 1127, 1128, 6, 96, 16, 0, 1128, 210, 1, 0, 0, 0, 1129, 1130, 3, 75, 29, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1132, 6, 97, 17, 0, 1132, 1133, 6, 97, 13, 0, 1133, 212, 1, 0, 0, 0, 1134, 1135, 3, 73, 28, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 6, 98, 12, 0, 1137, 214, 1, 0, 0, 0, 1138, 1139, 3, 69, 26, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 6, 99, 12, 0, 1141, 216, 1, 0, 0, 0, 1142, 1143, 3, 71, 27, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1145, 6, 100, 12, 0, 1145, 218, 1, 0, 0, 0, 1146, 1147, 3, 75, 29, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1149, 6, 101, 17, 0, 1149, 1150, 6, 101, 13, 0, 1150, 220, 1, 0, 0, 0, 1151, 1152, 3, 193, 88, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1154, 6, 102, 15, 0, 1154, 222, 1, 0, 0, 0, 1155, 1156, 3, 195, 89, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 6, 103, 18, 0, 1158, 224, 1, 0, 0, 0, 1159, 1160, 3, 115, 49, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 6, 104, 19, 0, 1162, 226, 1, 0, 0, 0, 1163, 1164, 3, 113, 48, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1166, 6, 105, 20, 0, 1166, 228, 1, 0, 0, 0, 1167, 1168, 3, 117, 50, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 6, 106, 21, 0, 1170, 230, 1, 0, 0, 0, 1171, 1172, 3, 109, 46, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 6, 107, 22, 0, 1174, 232, 1, 0, 0, 0, 1175, 1176, 7, 16, 0, 0, 1176, 1177, 7, 3, 0, 0, 1177, 1178, 7, 5, 0, 0, 1178, 1179, 7, 12, 0, 0, 1179, 1180, 7, 0, 0, 0, 1180, 1181, 7, 12, 0, 0, 1181, 1182, 7, 5, 0, 0, 1182, 1183, 7, 12, 0, 0, 1183, 234, 1, 0, 0, 0, 1184, 1188, 8, 32, 0, 0, 1185, 1186, 5, 47, 0, 0, 1186, 1188, 8, 33, 0, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 236, 1, 0, 0, 0, 1189, 1191, 3, 235, 109, 0, 1190, 1189, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1190, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 238, 1, 0, 0, 0, 1194, 1195, 3, 237, 110, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 6, 111, 23, 0, 1197, 240, 1, 0, 0, 0, 1198, 1199, 3, 97, 40, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 6, 112, 24, 0, 1201, 242, 1, 0, 0, 0, 1202, 1203, 3, 69, 26, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 6, 113, 12, 0, 1205, 244, 1, 0, 0, 0, 1206, 1207, 3, 71, 27, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1209, 6, 114, 12, 0, 1209, 246, 1, 0, 0, 0, 1210, 1211, 3, 73, 28, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 6, 115, 12, 0, 1213, 248, 1, 0, 0, 0, 1214, 1215, 3, 75, 29, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 6, 116, 17, 0, 1217, 1218, 6, 116, 13, 0, 1218, 250, 1, 0, 0, 0, 1219, 1220, 3, 121, 52, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 6, 117, 25, 0, 1222, 252, 1, 0, 0, 0, 1223, 1224, 3, 117, 50, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 6, 118, 21, 0, 1226, 254, 1, 0, 0, 0, 1227, 1228, 3, 147, 65, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 6, 119, 26, 0, 1230, 256, 1, 0, 0, 0, 1231, 1232, 3, 189, 86, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 6, 120, 27, 0, 1234, 258, 1, 0, 0, 0, 1235, 1236, 3, 185, 84, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 6, 121, 28, 0, 1238, 260, 1, 0, 0, 0, 1239, 1240, 3, 191, 87, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 6, 122, 29, 0, 1242, 262, 1, 0, 0, 0, 1243, 1248, 3, 79, 31, 0, 1244, 1248, 3, 77, 30, 0, 1245, 1248, 3, 93, 38, 0, 1246, 1248, 3, 175, 79, 0, 1247, 1243, 1, 0, 0, 0, 1247, 1244, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1247, 1246, 1, 0, 0, 0, 1248, 264, 1, 0, 0, 0, 1249, 1252, 3, 79, 31, 0, 1250, 1252, 3, 175, 79, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 1256, 1, 0, 0, 0, 1253, 1255, 3, 263, 123, 0, 1254, 1253, 1, 0, 0, 0, 1255, 1258, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1269, 1, 0, 0, 0, 1258, 1256, 1, 0, 0, 0, 1259, 1262, 3, 93, 38, 0, 1260, 1262, 3, 87, 35, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1265, 3, 263, 123, 0, 1264, 1263, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1251, 1, 0, 0, 0, 1268, 1261, 1, 0, 0, 0, 1269, 266, 1, 0, 0, 0, 1270, 1273, 3, 265, 124, 0, 1271, 1273, 3, 199, 91, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 268, 1, 0, 0, 0, 1276, 1277, 3, 69, 26, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 6, 126, 12, 0, 1279, 270, 1, 0, 0, 0, 1280, 1281, 3, 71, 27, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 6, 127, 12, 0, 1283, 272, 1, 0, 0, 0, 1284, 1285, 3, 73, 28, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 6, 128, 12, 0, 1287, 274, 1, 0, 0, 0, 1288, 1289, 3, 75, 29, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 6, 129, 17, 0, 1291, 1292, 6, 129, 13, 0, 1292, 276, 1, 0, 0, 0, 1293, 1294, 3, 109, 46, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 6, 130, 22, 0, 1296, 278, 1, 0, 0, 0, 1297, 1298, 3, 117, 50, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 6, 131, 21, 0, 1300, 280, 1, 0, 0, 0, 1301, 1302, 3, 121, 52, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 6, 132, 25, 0, 1304, 282, 1, 0, 0, 0, 1305, 1306, 3, 147, 65, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 6, 133, 26, 0, 1308, 284, 1, 0, 0, 0, 1309, 1310, 3, 189, 86, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 6, 134, 27, 0, 1312, 286, 1, 0, 0, 0, 1313, 1314, 3, 185, 84, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 6, 135, 28, 0, 1316, 288, 1, 0, 0, 0, 1317, 1318, 3, 191, 87, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 6, 136, 29, 0, 1320, 290, 1, 0, 0, 0, 1321, 1322, 3, 105, 44, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 6, 137, 30, 0, 1324, 292, 1, 0, 0, 0, 1325, 1326, 3, 267, 125, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 6, 138, 31, 0, 1328, 294, 1, 0, 0, 0, 1329, 1330, 3, 69, 26, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 6, 139, 12, 0, 1332, 296, 1, 0, 0, 0, 1333, 1334, 3, 71, 27, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 6, 140, 12, 0, 1336, 298, 1, 0, 0, 0, 1337, 1338, 3, 73, 28, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 6, 141, 12, 0, 1340, 300, 1, 0, 0, 0, 1341, 1342, 3, 75, 29, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 6, 142, 17, 0, 1344, 1345, 6, 142, 13, 0, 1345, 302, 1, 0, 0, 0, 1346, 1347, 3, 193, 88, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 6, 143, 15, 0, 1349, 1350, 6, 143, 32, 0, 1350, 304, 1, 0, 0, 0, 1351, 1352, 3, 143, 63, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 6, 144, 33, 0, 1354, 1355, 6, 144, 34, 0, 1355, 306, 1, 0, 0, 0, 1356, 1357, 3, 155, 69, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 6, 145, 35, 0, 1359, 1360, 6, 145, 34, 0, 1360, 308, 1, 0, 0, 0, 1361, 1362, 8, 34, 0, 0, 1362, 310, 1, 0, 0, 0, 1363, 1365, 3, 309, 146, 0, 1364, 1363, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 3, 115, 49, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1364, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1374, 3, 309, 146, 0, 1373, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1373, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 312, 1, 0, 0, 0, 1377, 1378, 3, 311, 147, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 6, 148, 36, 0, 1380, 314, 1, 0, 0, 0, 1381, 1382, 3, 69, 26, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 6, 149, 12, 0, 1384, 316, 1, 0, 0, 0, 1385, 1386, 3, 71, 27, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 6, 150, 12, 0, 1388, 318, 1, 0, 0, 0, 1389, 1390, 3, 73, 28, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 6, 151, 12, 0, 1392, 320, 1, 0, 0, 0, 1393, 1394, 3, 75, 29, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 6, 152, 17, 0, 1396, 1397, 6, 152, 13, 0, 1397, 1398, 6, 152, 13, 0, 1398, 322, 1, 0, 0, 0, 1399, 1400, 3, 109, 46, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 6, 153, 22, 0, 1402, 324, 1, 0, 0, 0, 1403, 1404, 3, 117, 50, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 6, 154, 21, 0, 1406, 326, 1, 0, 0, 0, 1407, 1408, 3, 121, 52, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1410, 6, 155, 25, 0, 1410, 328, 1, 0, 0, 0, 1411, 1412, 3, 155, 69, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 6, 156, 35, 0, 1414, 330, 1, 0, 0, 0, 1415, 1416, 3, 267, 125, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 6, 157, 31, 0, 1418, 332, 1, 0, 0, 0, 1419, 1420, 3, 201, 92, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 6, 158, 37, 0, 1422, 334, 1, 0, 0, 0, 1423, 1424, 3, 147, 65, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 6, 159, 26, 0, 1426, 336, 1, 0, 0, 0, 1427, 1428, 3, 189, 86, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 6, 160, 27, 0, 1430, 338, 1, 0, 0, 0, 1431, 1432, 3, 185, 84, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 6, 161, 28, 0, 1434, 340, 1, 0, 0, 0, 1435, 1436, 3, 191, 87, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 162, 29, 0, 1438, 342, 1, 0, 0, 0, 1439, 1440, 3, 69, 26, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 6, 163, 12, 0, 1442, 344, 1, 0, 0, 0, 1443, 1444, 3, 71, 27, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 6, 164, 12, 0, 1446, 346, 1, 0, 0, 0, 1447, 1448, 3, 73, 28, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 6, 165, 12, 0, 1450, 348, 1, 0, 0, 0, 1451, 1452, 3, 75, 29, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 6, 166, 17, 0, 1454, 1455, 6, 166, 13, 0, 1455, 350, 1, 0, 0, 0, 1456, 1457, 3, 121, 52, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 6, 167, 25, 0, 1459, 352, 1, 0, 0, 0, 1460, 1461, 3, 147, 65, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 6, 168, 26, 0, 1463, 354, 1, 0, 0, 0, 1464, 1465, 3, 189, 86, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1467, 6, 169, 27, 0, 1467, 356, 1, 0, 0, 0, 1468, 1469, 3, 185, 84, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 6, 170, 28, 0, 1471, 358, 1, 0, 0, 0, 1472, 1473, 3, 191, 87, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 6, 171, 29, 0, 1475, 360, 1, 0, 0, 0, 1476, 1477, 3, 201, 92, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 6, 172, 37, 0, 1479, 362, 1, 0, 0, 0, 1480, 1481, 3, 197, 90, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 6, 173, 38, 0, 1483, 364, 1, 0, 0, 0, 1484, 1485, 3, 69, 26, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 6, 174, 12, 0, 1487, 366, 1, 0, 0, 0, 1488, 1489, 3, 71, 27, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 6, 175, 12, 0, 1491, 368, 1, 0, 0, 0, 1492, 1493, 3, 73, 28, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 6, 176, 12, 0, 1495, 370, 1, 0, 0, 0, 1496, 1497, 3, 75, 29, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 6, 177, 17, 0, 1499, 1500, 6, 177, 13, 0, 1500, 372, 1, 0, 0, 0, 1501, 1502, 7, 1, 0, 0, 1502, 1503, 7, 9, 0, 0, 1503, 1504, 7, 15, 0, 0, 1504, 1505, 7, 7, 0, 0, 1505, 374, 1, 0, 0, 0, 1506, 1507, 3, 69, 26, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 6, 179, 12, 0, 1509, 376, 1, 0, 0, 0, 1510, 1511, 3, 71, 27, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1513, 6, 180, 12, 0, 1513, 378, 1, 0, 0, 0, 1514, 1515, 3, 73, 28, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 6, 181, 12, 0, 1517, 380, 1, 0, 0, 0, 1518, 1519, 3, 195, 89, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 6, 182, 18, 0, 1521, 1522, 6, 182, 13, 0, 1522, 382, 1, 0, 0, 0, 1523, 1524, 3, 115, 49, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1526, 6, 183, 19, 0, 1526, 384, 1, 0, 0, 0, 1527, 1533, 3, 87, 35, 0, 1528, 1533, 3, 77, 30, 0, 1529, 1533, 3, 121, 52, 0, 1530, 1533, 3, 79, 31, 0, 1531, 1533, 3, 93, 38, 0, 1532, 1527, 1, 0, 0, 0, 1532, 1528, 1, 0, 0, 0, 1532, 1529, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1532, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1532, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 386, 1, 0, 0, 0, 1536, 1537, 3, 69, 26, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 6, 185, 12, 0, 1539, 388, 1, 0, 0, 0, 1540, 1541, 3, 71, 27, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 6, 186, 12, 0, 1543, 390, 1, 0, 0, 0, 1544, 1545, 3, 73, 28, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 6, 187, 12, 0, 1547, 392, 1, 0, 0, 0, 1548, 1549, 3, 75, 29, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 6, 188, 17, 0, 1551, 1552, 6, 188, 13, 0, 1552, 394, 1, 0, 0, 0, 1553, 1554, 3, 115, 49, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1556, 6, 189, 19, 0, 1556, 396, 1, 0, 0, 0, 1557, 1558, 3, 117, 50, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 6, 190, 21, 0, 1560, 398, 1, 0, 0, 0, 1561, 1562, 3, 121, 52, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1564, 6, 191, 25, 0, 1564, 400, 1, 0, 0, 0, 1565, 1566, 3, 143, 63, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 6, 192, 33, 0, 1568, 1569, 6, 192, 39, 0, 1569, 402, 1, 0, 0, 0, 1570, 1571, 3, 237, 110, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 6, 193, 23, 0, 1573, 404, 1, 0, 0, 0, 1574, 1575, 3, 97, 40, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 6, 194, 24, 0, 1577, 406, 1, 0, 0, 0, 1578, 1579, 3, 69, 26, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 6, 195, 12, 0, 1581, 408, 1, 0, 0, 0, 1582, 1583, 3, 71, 27, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 6, 196, 12, 0, 1585, 410, 1, 0, 0, 0, 1586, 1587, 3, 73, 28, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 197, 12, 0, 1589, 412, 1, 0, 0, 0, 1590, 1591, 3, 75, 29, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 198, 17, 0, 1593, 1594, 6, 198, 13, 0, 1594, 1595, 6, 198, 13, 0, 1595, 414, 1, 0, 0, 0, 1596, 1597, 3, 117, 50, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1599, 6, 199, 21, 0, 1599, 416, 1, 0, 0, 0, 1600, 1601, 3, 121, 52, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 6, 200, 25, 0, 1603, 418, 1, 0, 0, 0, 1604, 1605, 3, 267, 125, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1607, 6, 201, 31, 0, 1607, 420, 1, 0, 0, 0, 1608, 1609, 3, 69, 26, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1611, 6, 202, 12, 0, 1611, 422, 1, 0, 0, 0, 1612, 1613, 3, 71, 27, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 6, 203, 12, 0, 1615, 424, 1, 0, 0, 0, 1616, 1617, 3, 73, 28, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 6, 204, 12, 0, 1619, 426, 1, 0, 0, 0, 1620, 1621, 3, 75, 29, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 6, 205, 17, 0, 1623, 1624, 6, 205, 13, 0, 1624, 428, 1, 0, 0, 0, 1625, 1626, 7, 35, 0, 0, 1626, 1627, 7, 7, 0, 0, 1627, 1628, 7, 1, 0, 0, 1628, 1629, 7, 9, 0, 0, 1629, 430, 1, 0, 0, 0, 1630, 1631, 3, 105, 44, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 6, 207, 30, 0, 1633, 432, 1, 0, 0, 0, 1634, 1635, 3, 143, 63, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1637, 6, 208, 33, 0, 1637, 1638, 6, 208, 13, 0, 1638, 1639, 6, 208, 0, 0, 1639, 434, 1, 0, 0, 0, 1640, 1641, 7, 20, 0, 0, 1641, 1642, 7, 2, 0, 0, 1642, 1643, 7, 1, 0, 0, 1643, 1644, 7, 9, 0, 0, 1644, 1645, 7, 17, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 6, 209, 13, 0, 1647, 1648, 6, 209, 0, 0, 1648, 436, 1, 0, 0, 0, 1649, 1650, 3, 237, 110, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 6, 210, 23, 0, 1652, 438, 1, 0, 0, 0, 1653, 1654, 3, 97, 40, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 6, 211, 24, 0, 1656, 440, 1, 0, 0, 0, 1657, 1658, 3, 115, 49, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1660, 6, 212, 19, 0, 1660, 442, 1, 0, 0, 0, 1661, 1662, 3, 197, 90, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1664, 6, 213, 38, 0, 1664, 444, 1, 0, 0, 0, 1665, 1666, 3, 201, 92, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 6, 214, 37, 0, 1668, 446, 1, 0, 0, 0, 1669, 1670, 3, 69, 26, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 6, 215, 12, 0, 1672, 448, 1, 0, 0, 0, 1673, 1674, 3, 71, 27, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 6, 216, 12, 0, 1676, 450, 1, 0, 0, 0, 1677, 1678, 3, 73, 28, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 6, 217, 12, 0, 1680, 452, 1, 0, 0, 0, 1681, 1682, 3, 75, 29, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 6, 218, 17, 0, 1684, 1685, 6, 218, 13, 0, 1685, 454, 1, 0, 0, 0, 1686, 1687, 3, 237, 110, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 6, 219, 23, 0, 1689, 1690, 6, 219, 13, 0, 1690, 1691, 6, 219, 40, 0, 1691, 456, 1, 0, 0, 0, 1692, 1693, 3, 97, 40, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 6, 220, 24, 0, 1695, 1696, 6, 220, 13, 0, 1696, 1697, 6, 220, 40, 0, 1697, 458, 1, 0, 0, 0, 1698, 1699, 3, 69, 26, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 6, 221, 12, 0, 1701, 460, 1, 0, 0, 0, 1702, 1703, 3, 71, 27, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 222, 12, 0, 1705, 462, 1, 0, 0, 0, 1706, 1707, 3, 73, 28, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 6, 223, 12, 0, 1709, 464, 1, 0, 0, 0, 1710, 1711, 3, 115, 49, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1713, 6, 224, 19, 0, 1713, 1714, 6, 224, 13, 0, 1714, 1715, 6, 224, 11, 0, 1715, 466, 1, 0, 0, 0, 1716, 1717, 3, 113, 48, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 6, 225, 20, 0, 1719, 1720, 6, 225, 13, 0, 1720, 1721, 6, 225, 11, 0, 1721, 468, 1, 0, 0, 0, 1722, 1723, 3, 117, 50, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 6, 226, 21, 0, 1725, 1726, 6, 226, 13, 0, 1726, 1727, 6, 226, 11, 0, 1727, 470, 1, 0, 0, 0, 1728, 1729, 3, 69, 26, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 6, 227, 12, 0, 1731, 472, 1, 0, 0, 0, 1732, 1733, 3, 71, 27, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 6, 228, 12, 0, 1735, 474, 1, 0, 0, 0, 1736, 1737, 3, 73, 28, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 6, 229, 12, 0, 1739, 476, 1, 0, 0, 0, 1740, 1741, 3, 201, 92, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 6, 230, 13, 0, 1743, 1744, 6, 230, 0, 0, 1744, 1745, 6, 230, 37, 0, 1745, 478, 1, 0, 0, 0, 1746, 1747, 3, 197, 90, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 6, 231, 13, 0, 1749, 1750, 6, 231, 0, 0, 1750, 1751, 6, 231, 38, 0, 1751, 480, 1, 0, 0, 0, 1752, 1753, 3, 111, 47, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 6, 232, 13, 0, 1755, 1756, 6, 232, 0, 0, 1756, 1757, 6, 232, 41, 0, 1757, 482, 1, 0, 0, 0, 1758, 1759, 3, 75, 29, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 6, 233, 17, 0, 1761, 1762, 6, 233, 13, 0, 1762, 484, 1, 0, 0, 0, 1763, 1764, 3, 75, 29, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 234, 17, 0, 1766, 1767, 6, 234, 13, 0, 1767, 486, 1, 0, 0, 0, 1768, 1769, 3, 143, 63, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 6, 235, 33, 0, 1771, 488, 1, 0, 0, 0, 1772, 1773, 3, 105, 44, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 6, 236, 30, 0, 1775, 490, 1, 0, 0, 0, 1776, 1777, 3, 121, 52, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 6, 237, 25, 0, 1779, 492, 1, 0, 0, 0, 1780, 1781, 3, 117, 50, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 6, 238, 21, 0, 1783, 494, 1, 0, 0, 0, 1784, 1785, 3, 201, 92, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 6, 239, 37, 0, 1787, 496, 1, 0, 0, 0, 1788, 1789, 3, 197, 90, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 6, 240, 38, 0, 1791, 498, 1, 0, 0, 0, 1792, 1793, 3, 69, 26, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 6, 241, 12, 0, 1795, 500, 1, 0, 0, 0, 1796, 1797, 3, 71, 27, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 6, 242, 12, 0, 1799, 502, 1, 0, 0, 0, 1800, 1801, 3, 73, 28, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 6, 243, 12, 0, 1803, 504, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 734, 744, 748, 751, 760, 762, 773, 792, 797, 806, 813, 818, 820, 831, 839, 842, 844, 849, 854, 860, 867, 872, 878, 881, 889, 893, 1039, 1044, 1051, 1053, 1058, 1063, 1070, 1072, 1088, 1093, 1098, 1100, 1106, 1187, 1192, 1247, 1251, 1256, 1261, 1266, 1268, 1272, 1274, 1366, 1370, 1375, 1532, 1534, 42, 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, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 78, 0, 5, 0, 0, 7, 30, 0, 7, 79, 0, 7, 40, 0, 7, 39, 0, 7, 41, 0, 7, 37, 0, 7, 89, 0, 7, 31, 0, 7, 43, 0, 7, 56, 0, 7, 76, 0, 7, 75, 0, 7, 77, 0, 7, 35, 0, 7, 93, 0, 5, 10, 0, 7, 54, 0, 5, 7, 0, 7, 60, 0, 7, 100, 0, 7, 81, 0, 7, 80, 0, 5, 12, 0, 5, 15, 0, 7, 38, 0]
\ No newline at end of file
+[4, 0, 138, 1820, 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, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 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, 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, 4, 26, 749, 8, 26, 11, 26, 12, 26, 750, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 759, 8, 27, 10, 27, 12, 27, 762, 9, 27, 1, 27, 3, 27, 765, 8, 27, 1, 27, 3, 27, 768, 8, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 777, 8, 28, 10, 28, 12, 28, 780, 9, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 4, 29, 788, 8, 29, 11, 29, 12, 29, 789, 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, 809, 8, 35, 1, 35, 4, 35, 812, 8, 35, 11, 35, 12, 35, 813, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 823, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 830, 8, 40, 1, 41, 1, 41, 1, 41, 5, 41, 835, 8, 41, 10, 41, 12, 41, 838, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 5, 41, 846, 8, 41, 10, 41, 12, 41, 849, 9, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 856, 8, 41, 1, 41, 3, 41, 859, 8, 41, 3, 41, 861, 8, 41, 1, 42, 4, 42, 864, 8, 42, 11, 42, 12, 42, 865, 1, 43, 4, 43, 869, 8, 43, 11, 43, 12, 43, 870, 1, 43, 1, 43, 5, 43, 875, 8, 43, 10, 43, 12, 43, 878, 9, 43, 1, 43, 1, 43, 4, 43, 882, 8, 43, 11, 43, 12, 43, 883, 1, 43, 4, 43, 887, 8, 43, 11, 43, 12, 43, 888, 1, 43, 1, 43, 5, 43, 893, 8, 43, 10, 43, 12, 43, 896, 9, 43, 3, 43, 898, 8, 43, 1, 43, 1, 43, 1, 43, 1, 43, 4, 43, 904, 8, 43, 11, 43, 12, 43, 905, 1, 43, 1, 43, 3, 43, 910, 8, 43, 1, 44, 1, 44, 1, 44, 1, 44, 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, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1056, 8, 87, 1, 87, 5, 87, 1059, 8, 87, 10, 87, 12, 87, 1062, 9, 87, 1, 87, 1, 87, 4, 87, 1066, 8, 87, 11, 87, 12, 87, 1067, 3, 87, 1070, 8, 87, 1, 88, 1, 88, 1, 88, 3, 88, 1075, 8, 88, 1, 88, 5, 88, 1078, 8, 88, 10, 88, 12, 88, 1081, 9, 88, 1, 88, 1, 88, 4, 88, 1085, 8, 88, 11, 88, 12, 88, 1086, 3, 88, 1089, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 5, 91, 1103, 8, 91, 10, 91, 12, 91, 1106, 9, 91, 1, 91, 1, 91, 3, 91, 1110, 8, 91, 1, 91, 4, 91, 1113, 8, 91, 11, 91, 12, 91, 1114, 3, 91, 1117, 8, 91, 1, 92, 1, 92, 4, 92, 1121, 8, 92, 11, 92, 12, 92, 1122, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 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, 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, 1204, 8, 110, 1, 111, 4, 111, 1207, 8, 111, 11, 111, 12, 111, 1208, 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, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1264, 8, 124, 1, 125, 1, 125, 3, 125, 1268, 8, 125, 1, 125, 5, 125, 1271, 8, 125, 10, 125, 12, 125, 1274, 9, 125, 1, 125, 1, 125, 3, 125, 1278, 8, 125, 1, 125, 4, 125, 1281, 8, 125, 11, 125, 12, 125, 1282, 3, 125, 1285, 8, 125, 1, 126, 1, 126, 4, 126, 1289, 8, 126, 11, 126, 12, 126, 1290, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 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, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 4, 148, 1381, 8, 148, 11, 148, 12, 148, 1382, 1, 148, 1, 148, 3, 148, 1387, 8, 148, 1, 148, 4, 148, 1390, 8, 148, 11, 148, 12, 148, 1391, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 4, 185, 1549, 8, 185, 11, 185, 12, 185, 1550, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 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, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 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, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 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, 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, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 2, 778, 847, 0, 245, 17, 1, 19, 2, 21, 3, 23, 4, 25, 5, 27, 6, 29, 7, 31, 8, 33, 9, 35, 10, 37, 11, 39, 12, 41, 13, 43, 14, 45, 15, 47, 16, 49, 17, 51, 18, 53, 19, 55, 20, 57, 21, 59, 22, 61, 23, 63, 24, 65, 25, 67, 26, 69, 27, 71, 28, 73, 29, 75, 30, 77, 31, 79, 0, 81, 0, 83, 0, 85, 0, 87, 0, 89, 0, 91, 0, 93, 0, 95, 0, 97, 0, 99, 32, 101, 33, 103, 34, 105, 35, 107, 36, 109, 37, 111, 38, 113, 39, 115, 40, 117, 41, 119, 42, 121, 43, 123, 44, 125, 45, 127, 46, 129, 47, 131, 48, 133, 49, 135, 50, 137, 51, 139, 52, 141, 53, 143, 54, 145, 55, 147, 56, 149, 57, 151, 58, 153, 59, 155, 60, 157, 61, 159, 62, 161, 63, 163, 64, 165, 65, 167, 66, 169, 67, 171, 68, 173, 69, 175, 70, 177, 71, 179, 72, 181, 73, 183, 74, 185, 75, 187, 76, 189, 0, 191, 77, 193, 78, 195, 79, 197, 80, 199, 81, 201, 0, 203, 82, 205, 83, 207, 84, 209, 85, 211, 0, 213, 0, 215, 86, 217, 87, 219, 88, 221, 0, 223, 0, 225, 0, 227, 0, 229, 0, 231, 0, 233, 0, 235, 89, 237, 0, 239, 90, 241, 0, 243, 0, 245, 91, 247, 92, 249, 93, 251, 0, 253, 0, 255, 0, 257, 0, 259, 0, 261, 0, 263, 0, 265, 0, 267, 0, 269, 94, 271, 95, 273, 96, 275, 97, 277, 0, 279, 0, 281, 0, 283, 0, 285, 0, 287, 0, 289, 0, 291, 0, 293, 0, 295, 0, 297, 98, 299, 99, 301, 100, 303, 0, 305, 0, 307, 0, 309, 0, 311, 0, 313, 101, 315, 0, 317, 102, 319, 103, 321, 104, 323, 0, 325, 0, 327, 0, 329, 0, 331, 0, 333, 0, 335, 0, 337, 0, 339, 0, 341, 0, 343, 0, 345, 105, 347, 106, 349, 107, 351, 0, 353, 0, 355, 0, 357, 0, 359, 0, 361, 0, 363, 0, 365, 0, 367, 108, 369, 109, 371, 110, 373, 0, 375, 111, 377, 112, 379, 113, 381, 114, 383, 0, 385, 0, 387, 115, 389, 116, 391, 117, 393, 118, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 119, 411, 120, 413, 121, 415, 0, 417, 0, 419, 0, 421, 0, 423, 122, 425, 123, 427, 124, 429, 0, 431, 125, 433, 0, 435, 0, 437, 126, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 127, 451, 128, 453, 129, 455, 0, 457, 0, 459, 0, 461, 130, 463, 131, 465, 132, 467, 0, 469, 0, 471, 0, 473, 133, 475, 134, 477, 135, 479, 0, 481, 0, 483, 0, 485, 0, 487, 0, 489, 0, 491, 0, 493, 0, 495, 0, 497, 0, 499, 0, 501, 136, 503, 137, 505, 138, 17, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 36, 2, 0, 68, 68, 100, 100, 2, 0, 73, 73, 105, 105, 2, 0, 83, 83, 115, 115, 2, 0, 69, 69, 101, 101, 2, 0, 67, 67, 99, 99, 2, 0, 84, 84, 116, 116, 2, 0, 82, 82, 114, 114, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 78, 78, 110, 110, 2, 0, 72, 72, 104, 104, 2, 0, 86, 86, 118, 118, 2, 0, 65, 65, 97, 97, 2, 0, 76, 76, 108, 108, 2, 0, 88, 88, 120, 120, 2, 0, 70, 70, 102, 102, 2, 0, 77, 77, 109, 109, 2, 0, 71, 71, 103, 103, 2, 0, 75, 75, 107, 107, 2, 0, 87, 87, 119, 119, 2, 0, 85, 85, 117, 117, 6, 0, 9, 10, 13, 13, 32, 32, 47, 47, 91, 91, 93, 93, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 8, 0, 34, 34, 78, 78, 82, 82, 84, 84, 92, 92, 110, 110, 114, 114, 116, 116, 4, 0, 10, 10, 13, 13, 34, 34, 92, 92, 2, 0, 43, 43, 45, 45, 1, 0, 96, 96, 2, 0, 66, 66, 98, 98, 2, 0, 89, 89, 121, 121, 11, 0, 9, 10, 13, 13, 32, 32, 34, 34, 44, 44, 47, 47, 58, 58, 61, 61, 91, 91, 93, 93, 124, 124, 2, 0, 42, 42, 47, 47, 11, 0, 9, 10, 13, 13, 32, 32, 34, 35, 44, 44, 47, 47, 58, 58, 60, 60, 62, 63, 92, 92, 124, 124, 2, 0, 74, 74, 106, 106, 1850, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 1, 77, 1, 0, 0, 0, 1, 99, 1, 0, 0, 0, 1, 101, 1, 0, 0, 0, 1, 103, 1, 0, 0, 0, 1, 105, 1, 0, 0, 0, 1, 107, 1, 0, 0, 0, 1, 109, 1, 0, 0, 0, 1, 111, 1, 0, 0, 0, 1, 113, 1, 0, 0, 0, 1, 115, 1, 0, 0, 0, 1, 117, 1, 0, 0, 0, 1, 119, 1, 0, 0, 0, 1, 121, 1, 0, 0, 0, 1, 123, 1, 0, 0, 0, 1, 125, 1, 0, 0, 0, 1, 127, 1, 0, 0, 0, 1, 129, 1, 0, 0, 0, 1, 131, 1, 0, 0, 0, 1, 133, 1, 0, 0, 0, 1, 135, 1, 0, 0, 0, 1, 137, 1, 0, 0, 0, 1, 139, 1, 0, 0, 0, 1, 141, 1, 0, 0, 0, 1, 143, 1, 0, 0, 0, 1, 145, 1, 0, 0, 0, 1, 147, 1, 0, 0, 0, 1, 149, 1, 0, 0, 0, 1, 151, 1, 0, 0, 0, 1, 153, 1, 0, 0, 0, 1, 155, 1, 0, 0, 0, 1, 157, 1, 0, 0, 0, 1, 159, 1, 0, 0, 0, 1, 161, 1, 0, 0, 0, 1, 163, 1, 0, 0, 0, 1, 165, 1, 0, 0, 0, 1, 167, 1, 0, 0, 0, 1, 169, 1, 0, 0, 0, 1, 171, 1, 0, 0, 0, 1, 173, 1, 0, 0, 0, 1, 175, 1, 0, 0, 0, 1, 177, 1, 0, 0, 0, 1, 179, 1, 0, 0, 0, 1, 181, 1, 0, 0, 0, 1, 183, 1, 0, 0, 0, 1, 185, 1, 0, 0, 0, 1, 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, 203, 1, 0, 0, 0, 1, 205, 1, 0, 0, 0, 1, 207, 1, 0, 0, 0, 1, 209, 1, 0, 0, 0, 2, 211, 1, 0, 0, 0, 2, 213, 1, 0, 0, 0, 2, 215, 1, 0, 0, 0, 2, 217, 1, 0, 0, 0, 2, 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, 231, 1, 0, 0, 0, 3, 233, 1, 0, 0, 0, 3, 235, 1, 0, 0, 0, 3, 239, 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, 4, 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, 263, 1, 0, 0, 0, 4, 269, 1, 0, 0, 0, 4, 271, 1, 0, 0, 0, 4, 273, 1, 0, 0, 0, 4, 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, 5, 297, 1, 0, 0, 0, 5, 299, 1, 0, 0, 0, 5, 301, 1, 0, 0, 0, 6, 303, 1, 0, 0, 0, 6, 305, 1, 0, 0, 0, 6, 307, 1, 0, 0, 0, 6, 309, 1, 0, 0, 0, 6, 313, 1, 0, 0, 0, 6, 315, 1, 0, 0, 0, 6, 317, 1, 0, 0, 0, 6, 319, 1, 0, 0, 0, 6, 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, 7, 341, 1, 0, 0, 0, 7, 343, 1, 0, 0, 0, 7, 345, 1, 0, 0, 0, 7, 347, 1, 0, 0, 0, 7, 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, 8, 359, 1, 0, 0, 0, 8, 361, 1, 0, 0, 0, 8, 363, 1, 0, 0, 0, 8, 365, 1, 0, 0, 0, 8, 367, 1, 0, 0, 0, 8, 369, 1, 0, 0, 0, 8, 371, 1, 0, 0, 0, 9, 373, 1, 0, 0, 0, 9, 375, 1, 0, 0, 0, 9, 377, 1, 0, 0, 0, 9, 379, 1, 0, 0, 0, 9, 381, 1, 0, 0, 0, 10, 383, 1, 0, 0, 0, 10, 385, 1, 0, 0, 0, 10, 387, 1, 0, 0, 0, 10, 389, 1, 0, 0, 0, 10, 391, 1, 0, 0, 0, 10, 393, 1, 0, 0, 0, 11, 395, 1, 0, 0, 0, 11, 397, 1, 0, 0, 0, 11, 399, 1, 0, 0, 0, 11, 401, 1, 0, 0, 0, 11, 403, 1, 0, 0, 0, 11, 405, 1, 0, 0, 0, 11, 407, 1, 0, 0, 0, 11, 409, 1, 0, 0, 0, 11, 411, 1, 0, 0, 0, 11, 413, 1, 0, 0, 0, 12, 415, 1, 0, 0, 0, 12, 417, 1, 0, 0, 0, 12, 419, 1, 0, 0, 0, 12, 421, 1, 0, 0, 0, 12, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 12, 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, 13, 441, 1, 0, 0, 0, 13, 443, 1, 0, 0, 0, 13, 445, 1, 0, 0, 0, 13, 447, 1, 0, 0, 0, 13, 449, 1, 0, 0, 0, 13, 451, 1, 0, 0, 0, 13, 453, 1, 0, 0, 0, 14, 455, 1, 0, 0, 0, 14, 457, 1, 0, 0, 0, 14, 459, 1, 0, 0, 0, 14, 461, 1, 0, 0, 0, 14, 463, 1, 0, 0, 0, 14, 465, 1, 0, 0, 0, 15, 467, 1, 0, 0, 0, 15, 469, 1, 0, 0, 0, 15, 471, 1, 0, 0, 0, 15, 473, 1, 0, 0, 0, 15, 475, 1, 0, 0, 0, 15, 477, 1, 0, 0, 0, 15, 479, 1, 0, 0, 0, 15, 481, 1, 0, 0, 0, 15, 483, 1, 0, 0, 0, 15, 485, 1, 0, 0, 0, 16, 487, 1, 0, 0, 0, 16, 489, 1, 0, 0, 0, 16, 491, 1, 0, 0, 0, 16, 493, 1, 0, 0, 0, 16, 495, 1, 0, 0, 0, 16, 497, 1, 0, 0, 0, 16, 499, 1, 0, 0, 0, 16, 501, 1, 0, 0, 0, 16, 503, 1, 0, 0, 0, 16, 505, 1, 0, 0, 0, 17, 507, 1, 0, 0, 0, 19, 517, 1, 0, 0, 0, 21, 524, 1, 0, 0, 0, 23, 533, 1, 0, 0, 0, 25, 540, 1, 0, 0, 0, 27, 550, 1, 0, 0, 0, 29, 557, 1, 0, 0, 0, 31, 564, 1, 0, 0, 0, 33, 571, 1, 0, 0, 0, 35, 579, 1, 0, 0, 0, 37, 591, 1, 0, 0, 0, 39, 600, 1, 0, 0, 0, 41, 606, 1, 0, 0, 0, 43, 613, 1, 0, 0, 0, 45, 620, 1, 0, 0, 0, 47, 628, 1, 0, 0, 0, 49, 636, 1, 0, 0, 0, 51, 645, 1, 0, 0, 0, 53, 660, 1, 0, 0, 0, 55, 674, 1, 0, 0, 0, 57, 689, 1, 0, 0, 0, 59, 701, 1, 0, 0, 0, 61, 712, 1, 0, 0, 0, 63, 722, 1, 0, 0, 0, 65, 730, 1, 0, 0, 0, 67, 738, 1, 0, 0, 0, 69, 748, 1, 0, 0, 0, 71, 754, 1, 0, 0, 0, 73, 771, 1, 0, 0, 0, 75, 787, 1, 0, 0, 0, 77, 793, 1, 0, 0, 0, 79, 797, 1, 0, 0, 0, 81, 799, 1, 0, 0, 0, 83, 801, 1, 0, 0, 0, 85, 804, 1, 0, 0, 0, 87, 806, 1, 0, 0, 0, 89, 815, 1, 0, 0, 0, 91, 817, 1, 0, 0, 0, 93, 822, 1, 0, 0, 0, 95, 824, 1, 0, 0, 0, 97, 829, 1, 0, 0, 0, 99, 860, 1, 0, 0, 0, 101, 863, 1, 0, 0, 0, 103, 909, 1, 0, 0, 0, 105, 911, 1, 0, 0, 0, 107, 915, 1, 0, 0, 0, 109, 918, 1, 0, 0, 0, 111, 922, 1, 0, 0, 0, 113, 924, 1, 0, 0, 0, 115, 927, 1, 0, 0, 0, 117, 930, 1, 0, 0, 0, 119, 932, 1, 0, 0, 0, 121, 934, 1, 0, 0, 0, 123, 939, 1, 0, 0, 0, 125, 941, 1, 0, 0, 0, 127, 947, 1, 0, 0, 0, 129, 953, 1, 0, 0, 0, 131, 956, 1, 0, 0, 0, 133, 959, 1, 0, 0, 0, 135, 964, 1, 0, 0, 0, 137, 969, 1, 0, 0, 0, 139, 971, 1, 0, 0, 0, 141, 975, 1, 0, 0, 0, 143, 980, 1, 0, 0, 0, 145, 986, 1, 0, 0, 0, 147, 989, 1, 0, 0, 0, 149, 992, 1, 0, 0, 0, 151, 994, 1, 0, 0, 0, 153, 1000, 1, 0, 0, 0, 155, 1002, 1, 0, 0, 0, 157, 1007, 1, 0, 0, 0, 159, 1012, 1, 0, 0, 0, 161, 1015, 1, 0, 0, 0, 163, 1018, 1, 0, 0, 0, 165, 1021, 1, 0, 0, 0, 167, 1023, 1, 0, 0, 0, 169, 1026, 1, 0, 0, 0, 171, 1028, 1, 0, 0, 0, 173, 1031, 1, 0, 0, 0, 175, 1033, 1, 0, 0, 0, 177, 1035, 1, 0, 0, 0, 179, 1037, 1, 0, 0, 0, 181, 1039, 1, 0, 0, 0, 183, 1041, 1, 0, 0, 0, 185, 1043, 1, 0, 0, 0, 187, 1045, 1, 0, 0, 0, 189, 1048, 1, 0, 0, 0, 191, 1069, 1, 0, 0, 0, 193, 1088, 1, 0, 0, 0, 195, 1090, 1, 0, 0, 0, 197, 1095, 1, 0, 0, 0, 199, 1116, 1, 0, 0, 0, 201, 1118, 1, 0, 0, 0, 203, 1126, 1, 0, 0, 0, 205, 1128, 1, 0, 0, 0, 207, 1132, 1, 0, 0, 0, 209, 1136, 1, 0, 0, 0, 211, 1140, 1, 0, 0, 0, 213, 1145, 1, 0, 0, 0, 215, 1150, 1, 0, 0, 0, 217, 1154, 1, 0, 0, 0, 219, 1158, 1, 0, 0, 0, 221, 1162, 1, 0, 0, 0, 223, 1167, 1, 0, 0, 0, 225, 1171, 1, 0, 0, 0, 227, 1175, 1, 0, 0, 0, 229, 1179, 1, 0, 0, 0, 231, 1183, 1, 0, 0, 0, 233, 1187, 1, 0, 0, 0, 235, 1191, 1, 0, 0, 0, 237, 1203, 1, 0, 0, 0, 239, 1206, 1, 0, 0, 0, 241, 1210, 1, 0, 0, 0, 243, 1214, 1, 0, 0, 0, 245, 1218, 1, 0, 0, 0, 247, 1222, 1, 0, 0, 0, 249, 1226, 1, 0, 0, 0, 251, 1230, 1, 0, 0, 0, 253, 1235, 1, 0, 0, 0, 255, 1239, 1, 0, 0, 0, 257, 1243, 1, 0, 0, 0, 259, 1247, 1, 0, 0, 0, 261, 1251, 1, 0, 0, 0, 263, 1255, 1, 0, 0, 0, 265, 1263, 1, 0, 0, 0, 267, 1284, 1, 0, 0, 0, 269, 1288, 1, 0, 0, 0, 271, 1292, 1, 0, 0, 0, 273, 1296, 1, 0, 0, 0, 275, 1300, 1, 0, 0, 0, 277, 1304, 1, 0, 0, 0, 279, 1309, 1, 0, 0, 0, 281, 1313, 1, 0, 0, 0, 283, 1317, 1, 0, 0, 0, 285, 1321, 1, 0, 0, 0, 287, 1325, 1, 0, 0, 0, 289, 1329, 1, 0, 0, 0, 291, 1333, 1, 0, 0, 0, 293, 1337, 1, 0, 0, 0, 295, 1341, 1, 0, 0, 0, 297, 1345, 1, 0, 0, 0, 299, 1349, 1, 0, 0, 0, 301, 1353, 1, 0, 0, 0, 303, 1357, 1, 0, 0, 0, 305, 1362, 1, 0, 0, 0, 307, 1367, 1, 0, 0, 0, 309, 1372, 1, 0, 0, 0, 311, 1377, 1, 0, 0, 0, 313, 1386, 1, 0, 0, 0, 315, 1393, 1, 0, 0, 0, 317, 1397, 1, 0, 0, 0, 319, 1401, 1, 0, 0, 0, 321, 1405, 1, 0, 0, 0, 323, 1409, 1, 0, 0, 0, 325, 1415, 1, 0, 0, 0, 327, 1419, 1, 0, 0, 0, 329, 1423, 1, 0, 0, 0, 331, 1427, 1, 0, 0, 0, 333, 1431, 1, 0, 0, 0, 335, 1435, 1, 0, 0, 0, 337, 1439, 1, 0, 0, 0, 339, 1443, 1, 0, 0, 0, 341, 1447, 1, 0, 0, 0, 343, 1451, 1, 0, 0, 0, 345, 1455, 1, 0, 0, 0, 347, 1459, 1, 0, 0, 0, 349, 1463, 1, 0, 0, 0, 351, 1467, 1, 0, 0, 0, 353, 1472, 1, 0, 0, 0, 355, 1476, 1, 0, 0, 0, 357, 1480, 1, 0, 0, 0, 359, 1484, 1, 0, 0, 0, 361, 1488, 1, 0, 0, 0, 363, 1492, 1, 0, 0, 0, 365, 1496, 1, 0, 0, 0, 367, 1500, 1, 0, 0, 0, 369, 1504, 1, 0, 0, 0, 371, 1508, 1, 0, 0, 0, 373, 1512, 1, 0, 0, 0, 375, 1517, 1, 0, 0, 0, 377, 1522, 1, 0, 0, 0, 379, 1526, 1, 0, 0, 0, 381, 1530, 1, 0, 0, 0, 383, 1534, 1, 0, 0, 0, 385, 1539, 1, 0, 0, 0, 387, 1548, 1, 0, 0, 0, 389, 1552, 1, 0, 0, 0, 391, 1556, 1, 0, 0, 0, 393, 1560, 1, 0, 0, 0, 395, 1564, 1, 0, 0, 0, 397, 1569, 1, 0, 0, 0, 399, 1573, 1, 0, 0, 0, 401, 1577, 1, 0, 0, 0, 403, 1581, 1, 0, 0, 0, 405, 1586, 1, 0, 0, 0, 407, 1590, 1, 0, 0, 0, 409, 1594, 1, 0, 0, 0, 411, 1598, 1, 0, 0, 0, 413, 1602, 1, 0, 0, 0, 415, 1606, 1, 0, 0, 0, 417, 1612, 1, 0, 0, 0, 419, 1616, 1, 0, 0, 0, 421, 1620, 1, 0, 0, 0, 423, 1624, 1, 0, 0, 0, 425, 1628, 1, 0, 0, 0, 427, 1632, 1, 0, 0, 0, 429, 1636, 1, 0, 0, 0, 431, 1641, 1, 0, 0, 0, 433, 1646, 1, 0, 0, 0, 435, 1650, 1, 0, 0, 0, 437, 1656, 1, 0, 0, 0, 439, 1665, 1, 0, 0, 0, 441, 1669, 1, 0, 0, 0, 443, 1673, 1, 0, 0, 0, 445, 1677, 1, 0, 0, 0, 447, 1681, 1, 0, 0, 0, 449, 1685, 1, 0, 0, 0, 451, 1689, 1, 0, 0, 0, 453, 1693, 1, 0, 0, 0, 455, 1697, 1, 0, 0, 0, 457, 1702, 1, 0, 0, 0, 459, 1708, 1, 0, 0, 0, 461, 1714, 1, 0, 0, 0, 463, 1718, 1, 0, 0, 0, 465, 1722, 1, 0, 0, 0, 467, 1726, 1, 0, 0, 0, 469, 1732, 1, 0, 0, 0, 471, 1738, 1, 0, 0, 0, 473, 1744, 1, 0, 0, 0, 475, 1748, 1, 0, 0, 0, 477, 1752, 1, 0, 0, 0, 479, 1756, 1, 0, 0, 0, 481, 1762, 1, 0, 0, 0, 483, 1768, 1, 0, 0, 0, 485, 1774, 1, 0, 0, 0, 487, 1779, 1, 0, 0, 0, 489, 1784, 1, 0, 0, 0, 491, 1788, 1, 0, 0, 0, 493, 1792, 1, 0, 0, 0, 495, 1796, 1, 0, 0, 0, 497, 1800, 1, 0, 0, 0, 499, 1804, 1, 0, 0, 0, 501, 1808, 1, 0, 0, 0, 503, 1812, 1, 0, 0, 0, 505, 1816, 1, 0, 0, 0, 507, 508, 7, 0, 0, 0, 508, 509, 7, 1, 0, 0, 509, 510, 7, 2, 0, 0, 510, 511, 7, 2, 0, 0, 511, 512, 7, 3, 0, 0, 512, 513, 7, 4, 0, 0, 513, 514, 7, 5, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 6, 0, 0, 0, 516, 18, 1, 0, 0, 0, 517, 518, 7, 0, 0, 0, 518, 519, 7, 6, 0, 0, 519, 520, 7, 7, 0, 0, 520, 521, 7, 8, 0, 0, 521, 522, 1, 0, 0, 0, 522, 523, 6, 1, 1, 0, 523, 20, 1, 0, 0, 0, 524, 525, 7, 3, 0, 0, 525, 526, 7, 9, 0, 0, 526, 527, 7, 6, 0, 0, 527, 528, 7, 1, 0, 0, 528, 529, 7, 4, 0, 0, 529, 530, 7, 10, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 6, 2, 2, 0, 532, 22, 1, 0, 0, 0, 533, 534, 7, 3, 0, 0, 534, 535, 7, 11, 0, 0, 535, 536, 7, 12, 0, 0, 536, 537, 7, 13, 0, 0, 537, 538, 1, 0, 0, 0, 538, 539, 6, 3, 0, 0, 539, 24, 1, 0, 0, 0, 540, 541, 7, 3, 0, 0, 541, 542, 7, 14, 0, 0, 542, 543, 7, 8, 0, 0, 543, 544, 7, 13, 0, 0, 544, 545, 7, 12, 0, 0, 545, 546, 7, 1, 0, 0, 546, 547, 7, 9, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 6, 4, 3, 0, 549, 26, 1, 0, 0, 0, 550, 551, 7, 15, 0, 0, 551, 552, 7, 6, 0, 0, 552, 553, 7, 7, 0, 0, 553, 554, 7, 16, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 6, 5, 4, 0, 556, 28, 1, 0, 0, 0, 557, 558, 7, 17, 0, 0, 558, 559, 7, 6, 0, 0, 559, 560, 7, 7, 0, 0, 560, 561, 7, 18, 0, 0, 561, 562, 1, 0, 0, 0, 562, 563, 6, 6, 0, 0, 563, 30, 1, 0, 0, 0, 564, 565, 7, 18, 0, 0, 565, 566, 7, 3, 0, 0, 566, 567, 7, 3, 0, 0, 567, 568, 7, 8, 0, 0, 568, 569, 1, 0, 0, 0, 569, 570, 6, 7, 1, 0, 570, 32, 1, 0, 0, 0, 571, 572, 7, 13, 0, 0, 572, 573, 7, 1, 0, 0, 573, 574, 7, 16, 0, 0, 574, 575, 7, 1, 0, 0, 575, 576, 7, 5, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 6, 8, 0, 0, 578, 34, 1, 0, 0, 0, 579, 580, 7, 16, 0, 0, 580, 581, 7, 11, 0, 0, 581, 582, 5, 95, 0, 0, 582, 583, 7, 3, 0, 0, 583, 584, 7, 14, 0, 0, 584, 585, 7, 8, 0, 0, 585, 586, 7, 12, 0, 0, 586, 587, 7, 9, 0, 0, 587, 588, 7, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 6, 9, 5, 0, 590, 36, 1, 0, 0, 0, 591, 592, 7, 6, 0, 0, 592, 593, 7, 3, 0, 0, 593, 594, 7, 9, 0, 0, 594, 595, 7, 12, 0, 0, 595, 596, 7, 16, 0, 0, 596, 597, 7, 3, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 6, 10, 6, 0, 599, 38, 1, 0, 0, 0, 600, 601, 7, 6, 0, 0, 601, 602, 7, 7, 0, 0, 602, 603, 7, 19, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 6, 11, 0, 0, 605, 40, 1, 0, 0, 0, 606, 607, 7, 2, 0, 0, 607, 608, 7, 10, 0, 0, 608, 609, 7, 7, 0, 0, 609, 610, 7, 19, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 6, 12, 7, 0, 612, 42, 1, 0, 0, 0, 613, 614, 7, 2, 0, 0, 614, 615, 7, 7, 0, 0, 615, 616, 7, 6, 0, 0, 616, 617, 7, 5, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 6, 13, 0, 0, 619, 44, 1, 0, 0, 0, 620, 621, 7, 2, 0, 0, 621, 622, 7, 5, 0, 0, 622, 623, 7, 12, 0, 0, 623, 624, 7, 5, 0, 0, 624, 625, 7, 2, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 6, 14, 0, 0, 627, 46, 1, 0, 0, 0, 628, 629, 7, 19, 0, 0, 629, 630, 7, 10, 0, 0, 630, 631, 7, 3, 0, 0, 631, 632, 7, 6, 0, 0, 632, 633, 7, 3, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 6, 15, 0, 0, 635, 48, 1, 0, 0, 0, 636, 637, 7, 13, 0, 0, 637, 638, 7, 7, 0, 0, 638, 639, 7, 7, 0, 0, 639, 640, 7, 18, 0, 0, 640, 641, 7, 20, 0, 0, 641, 642, 7, 8, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 6, 16, 8, 0, 644, 50, 1, 0, 0, 0, 645, 646, 7, 4, 0, 0, 646, 647, 7, 10, 0, 0, 647, 648, 7, 12, 0, 0, 648, 649, 7, 9, 0, 0, 649, 650, 7, 17, 0, 0, 650, 651, 7, 3, 0, 0, 651, 652, 5, 95, 0, 0, 652, 653, 7, 8, 0, 0, 653, 654, 7, 7, 0, 0, 654, 655, 7, 1, 0, 0, 655, 656, 7, 9, 0, 0, 656, 657, 7, 5, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 6, 17, 9, 0, 659, 52, 1, 0, 0, 0, 660, 661, 4, 18, 0, 0, 661, 662, 7, 4, 0, 0, 662, 663, 7, 7, 0, 0, 663, 664, 7, 16, 0, 0, 664, 665, 7, 8, 0, 0, 665, 666, 7, 13, 0, 0, 666, 667, 7, 3, 0, 0, 667, 668, 7, 5, 0, 0, 668, 669, 7, 1, 0, 0, 669, 670, 7, 7, 0, 0, 670, 671, 7, 9, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 6, 18, 0, 0, 673, 54, 1, 0, 0, 0, 674, 675, 4, 19, 1, 0, 675, 676, 7, 1, 0, 0, 676, 677, 7, 9, 0, 0, 677, 678, 7, 13, 0, 0, 678, 679, 7, 1, 0, 0, 679, 680, 7, 9, 0, 0, 680, 681, 7, 3, 0, 0, 681, 682, 7, 2, 0, 0, 682, 683, 7, 5, 0, 0, 683, 684, 7, 12, 0, 0, 684, 685, 7, 5, 0, 0, 685, 686, 7, 2, 0, 0, 686, 687, 1, 0, 0, 0, 687, 688, 6, 19, 0, 0, 688, 56, 1, 0, 0, 0, 689, 690, 4, 20, 2, 0, 690, 691, 7, 13, 0, 0, 691, 692, 7, 7, 0, 0, 692, 693, 7, 7, 0, 0, 693, 694, 7, 18, 0, 0, 694, 695, 7, 20, 0, 0, 695, 696, 7, 8, 0, 0, 696, 697, 5, 95, 0, 0, 697, 698, 5, 128020, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 6, 20, 10, 0, 700, 58, 1, 0, 0, 0, 701, 702, 4, 21, 3, 0, 702, 703, 7, 16, 0, 0, 703, 704, 7, 3, 0, 0, 704, 705, 7, 5, 0, 0, 705, 706, 7, 6, 0, 0, 706, 707, 7, 1, 0, 0, 707, 708, 7, 4, 0, 0, 708, 709, 7, 2, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 6, 21, 11, 0, 711, 60, 1, 0, 0, 0, 712, 713, 4, 22, 4, 0, 713, 714, 7, 6, 0, 0, 714, 715, 7, 3, 0, 0, 715, 716, 7, 6, 0, 0, 716, 717, 7, 12, 0, 0, 717, 718, 7, 9, 0, 0, 718, 719, 7, 18, 0, 0, 719, 720, 1, 0, 0, 0, 720, 721, 6, 22, 0, 0, 721, 62, 1, 0, 0, 0, 722, 723, 4, 23, 5, 0, 723, 724, 7, 15, 0, 0, 724, 725, 7, 20, 0, 0, 725, 726, 7, 13, 0, 0, 726, 727, 7, 13, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 6, 23, 8, 0, 729, 64, 1, 0, 0, 0, 730, 731, 4, 24, 6, 0, 731, 732, 7, 13, 0, 0, 732, 733, 7, 3, 0, 0, 733, 734, 7, 15, 0, 0, 734, 735, 7, 5, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 6, 24, 8, 0, 737, 66, 1, 0, 0, 0, 738, 739, 4, 25, 7, 0, 739, 740, 7, 6, 0, 0, 740, 741, 7, 1, 0, 0, 741, 742, 7, 17, 0, 0, 742, 743, 7, 10, 0, 0, 743, 744, 7, 5, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 6, 25, 8, 0, 746, 68, 1, 0, 0, 0, 747, 749, 8, 21, 0, 0, 748, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 753, 6, 26, 0, 0, 753, 70, 1, 0, 0, 0, 754, 755, 5, 47, 0, 0, 755, 756, 5, 47, 0, 0, 756, 760, 1, 0, 0, 0, 757, 759, 8, 22, 0, 0, 758, 757, 1, 0, 0, 0, 759, 762, 1, 0, 0, 0, 760, 758, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 763, 765, 5, 13, 0, 0, 764, 763, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 767, 1, 0, 0, 0, 766, 768, 5, 10, 0, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 769, 770, 6, 27, 12, 0, 770, 72, 1, 0, 0, 0, 771, 772, 5, 47, 0, 0, 772, 773, 5, 42, 0, 0, 773, 778, 1, 0, 0, 0, 774, 777, 3, 73, 28, 0, 775, 777, 9, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 775, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 1, 0, 0, 0, 780, 778, 1, 0, 0, 0, 781, 782, 5, 42, 0, 0, 782, 783, 5, 47, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 6, 28, 12, 0, 785, 74, 1, 0, 0, 0, 786, 788, 7, 23, 0, 0, 787, 786, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 6, 29, 12, 0, 792, 76, 1, 0, 0, 0, 793, 794, 5, 124, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 6, 30, 13, 0, 796, 78, 1, 0, 0, 0, 797, 798, 7, 24, 0, 0, 798, 80, 1, 0, 0, 0, 799, 800, 7, 25, 0, 0, 800, 82, 1, 0, 0, 0, 801, 802, 5, 92, 0, 0, 802, 803, 7, 26, 0, 0, 803, 84, 1, 0, 0, 0, 804, 805, 8, 27, 0, 0, 805, 86, 1, 0, 0, 0, 806, 808, 7, 3, 0, 0, 807, 809, 7, 28, 0, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 811, 1, 0, 0, 0, 810, 812, 3, 79, 31, 0, 811, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 88, 1, 0, 0, 0, 815, 816, 5, 64, 0, 0, 816, 90, 1, 0, 0, 0, 817, 818, 5, 96, 0, 0, 818, 92, 1, 0, 0, 0, 819, 823, 8, 29, 0, 0, 820, 821, 5, 96, 0, 0, 821, 823, 5, 96, 0, 0, 822, 819, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 823, 94, 1, 0, 0, 0, 824, 825, 5, 95, 0, 0, 825, 96, 1, 0, 0, 0, 826, 830, 3, 81, 32, 0, 827, 830, 3, 79, 31, 0, 828, 830, 3, 95, 39, 0, 829, 826, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 829, 828, 1, 0, 0, 0, 830, 98, 1, 0, 0, 0, 831, 836, 5, 34, 0, 0, 832, 835, 3, 83, 33, 0, 833, 835, 3, 85, 34, 0, 834, 832, 1, 0, 0, 0, 834, 833, 1, 0, 0, 0, 835, 838, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 861, 5, 34, 0, 0, 840, 841, 5, 34, 0, 0, 841, 842, 5, 34, 0, 0, 842, 843, 5, 34, 0, 0, 843, 847, 1, 0, 0, 0, 844, 846, 8, 22, 0, 0, 845, 844, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 850, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 850, 851, 5, 34, 0, 0, 851, 852, 5, 34, 0, 0, 852, 853, 5, 34, 0, 0, 853, 855, 1, 0, 0, 0, 854, 856, 5, 34, 0, 0, 855, 854, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 858, 1, 0, 0, 0, 857, 859, 5, 34, 0, 0, 858, 857, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 831, 1, 0, 0, 0, 860, 840, 1, 0, 0, 0, 861, 100, 1, 0, 0, 0, 862, 864, 3, 79, 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, 102, 1, 0, 0, 0, 867, 869, 3, 79, 31, 0, 868, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 876, 3, 123, 53, 0, 873, 875, 3, 79, 31, 0, 874, 873, 1, 0, 0, 0, 875, 878, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 910, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 879, 881, 3, 123, 53, 0, 880, 882, 3, 79, 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, 910, 1, 0, 0, 0, 885, 887, 3, 79, 31, 0, 886, 885, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 897, 1, 0, 0, 0, 890, 894, 3, 123, 53, 0, 891, 893, 3, 79, 31, 0, 892, 891, 1, 0, 0, 0, 893, 896, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 898, 1, 0, 0, 0, 896, 894, 1, 0, 0, 0, 897, 890, 1, 0, 0, 0, 897, 898, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 900, 3, 87, 35, 0, 900, 910, 1, 0, 0, 0, 901, 903, 3, 123, 53, 0, 902, 904, 3, 79, 31, 0, 903, 902, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 908, 3, 87, 35, 0, 908, 910, 1, 0, 0, 0, 909, 868, 1, 0, 0, 0, 909, 879, 1, 0, 0, 0, 909, 886, 1, 0, 0, 0, 909, 901, 1, 0, 0, 0, 910, 104, 1, 0, 0, 0, 911, 912, 7, 12, 0, 0, 912, 913, 7, 9, 0, 0, 913, 914, 7, 0, 0, 0, 914, 106, 1, 0, 0, 0, 915, 916, 7, 12, 0, 0, 916, 917, 7, 2, 0, 0, 917, 108, 1, 0, 0, 0, 918, 919, 7, 12, 0, 0, 919, 920, 7, 2, 0, 0, 920, 921, 7, 4, 0, 0, 921, 110, 1, 0, 0, 0, 922, 923, 5, 61, 0, 0, 923, 112, 1, 0, 0, 0, 924, 925, 7, 30, 0, 0, 925, 926, 7, 31, 0, 0, 926, 114, 1, 0, 0, 0, 927, 928, 5, 58, 0, 0, 928, 929, 5, 58, 0, 0, 929, 116, 1, 0, 0, 0, 930, 931, 5, 58, 0, 0, 931, 118, 1, 0, 0, 0, 932, 933, 5, 44, 0, 0, 933, 120, 1, 0, 0, 0, 934, 935, 7, 0, 0, 0, 935, 936, 7, 3, 0, 0, 936, 937, 7, 2, 0, 0, 937, 938, 7, 4, 0, 0, 938, 122, 1, 0, 0, 0, 939, 940, 5, 46, 0, 0, 940, 124, 1, 0, 0, 0, 941, 942, 7, 15, 0, 0, 942, 943, 7, 12, 0, 0, 943, 944, 7, 13, 0, 0, 944, 945, 7, 2, 0, 0, 945, 946, 7, 3, 0, 0, 946, 126, 1, 0, 0, 0, 947, 948, 7, 15, 0, 0, 948, 949, 7, 1, 0, 0, 949, 950, 7, 6, 0, 0, 950, 951, 7, 2, 0, 0, 951, 952, 7, 5, 0, 0, 952, 128, 1, 0, 0, 0, 953, 954, 7, 1, 0, 0, 954, 955, 7, 9, 0, 0, 955, 130, 1, 0, 0, 0, 956, 957, 7, 1, 0, 0, 957, 958, 7, 2, 0, 0, 958, 132, 1, 0, 0, 0, 959, 960, 7, 13, 0, 0, 960, 961, 7, 12, 0, 0, 961, 962, 7, 2, 0, 0, 962, 963, 7, 5, 0, 0, 963, 134, 1, 0, 0, 0, 964, 965, 7, 13, 0, 0, 965, 966, 7, 1, 0, 0, 966, 967, 7, 18, 0, 0, 967, 968, 7, 3, 0, 0, 968, 136, 1, 0, 0, 0, 969, 970, 5, 40, 0, 0, 970, 138, 1, 0, 0, 0, 971, 972, 7, 9, 0, 0, 972, 973, 7, 7, 0, 0, 973, 974, 7, 5, 0, 0, 974, 140, 1, 0, 0, 0, 975, 976, 7, 9, 0, 0, 976, 977, 7, 20, 0, 0, 977, 978, 7, 13, 0, 0, 978, 979, 7, 13, 0, 0, 979, 142, 1, 0, 0, 0, 980, 981, 7, 9, 0, 0, 981, 982, 7, 20, 0, 0, 982, 983, 7, 13, 0, 0, 983, 984, 7, 13, 0, 0, 984, 985, 7, 2, 0, 0, 985, 144, 1, 0, 0, 0, 986, 987, 7, 7, 0, 0, 987, 988, 7, 9, 0, 0, 988, 146, 1, 0, 0, 0, 989, 990, 7, 7, 0, 0, 990, 991, 7, 6, 0, 0, 991, 148, 1, 0, 0, 0, 992, 993, 5, 63, 0, 0, 993, 150, 1, 0, 0, 0, 994, 995, 7, 6, 0, 0, 995, 996, 7, 13, 0, 0, 996, 997, 7, 1, 0, 0, 997, 998, 7, 18, 0, 0, 998, 999, 7, 3, 0, 0, 999, 152, 1, 0, 0, 0, 1000, 1001, 5, 41, 0, 0, 1001, 154, 1, 0, 0, 0, 1002, 1003, 7, 5, 0, 0, 1003, 1004, 7, 6, 0, 0, 1004, 1005, 7, 20, 0, 0, 1005, 1006, 7, 3, 0, 0, 1006, 156, 1, 0, 0, 0, 1007, 1008, 7, 19, 0, 0, 1008, 1009, 7, 1, 0, 0, 1009, 1010, 7, 5, 0, 0, 1010, 1011, 7, 10, 0, 0, 1011, 158, 1, 0, 0, 0, 1012, 1013, 5, 61, 0, 0, 1013, 1014, 5, 61, 0, 0, 1014, 160, 1, 0, 0, 0, 1015, 1016, 5, 61, 0, 0, 1016, 1017, 5, 126, 0, 0, 1017, 162, 1, 0, 0, 0, 1018, 1019, 5, 33, 0, 0, 1019, 1020, 5, 61, 0, 0, 1020, 164, 1, 0, 0, 0, 1021, 1022, 5, 60, 0, 0, 1022, 166, 1, 0, 0, 0, 1023, 1024, 5, 60, 0, 0, 1024, 1025, 5, 61, 0, 0, 1025, 168, 1, 0, 0, 0, 1026, 1027, 5, 62, 0, 0, 1027, 170, 1, 0, 0, 0, 1028, 1029, 5, 62, 0, 0, 1029, 1030, 5, 61, 0, 0, 1030, 172, 1, 0, 0, 0, 1031, 1032, 5, 43, 0, 0, 1032, 174, 1, 0, 0, 0, 1033, 1034, 5, 45, 0, 0, 1034, 176, 1, 0, 0, 0, 1035, 1036, 5, 42, 0, 0, 1036, 178, 1, 0, 0, 0, 1037, 1038, 5, 47, 0, 0, 1038, 180, 1, 0, 0, 0, 1039, 1040, 5, 37, 0, 0, 1040, 182, 1, 0, 0, 0, 1041, 1042, 5, 123, 0, 0, 1042, 184, 1, 0, 0, 0, 1043, 1044, 5, 125, 0, 0, 1044, 186, 1, 0, 0, 0, 1045, 1046, 5, 63, 0, 0, 1046, 1047, 5, 63, 0, 0, 1047, 188, 1, 0, 0, 0, 1048, 1049, 3, 47, 15, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 6, 86, 14, 0, 1051, 190, 1, 0, 0, 0, 1052, 1055, 3, 149, 66, 0, 1053, 1056, 3, 81, 32, 0, 1054, 1056, 3, 95, 39, 0, 1055, 1053, 1, 0, 0, 0, 1055, 1054, 1, 0, 0, 0, 1056, 1060, 1, 0, 0, 0, 1057, 1059, 3, 97, 40, 0, 1058, 1057, 1, 0, 0, 0, 1059, 1062, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1070, 1, 0, 0, 0, 1062, 1060, 1, 0, 0, 0, 1063, 1065, 3, 149, 66, 0, 1064, 1066, 3, 79, 31, 0, 1065, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 1, 0, 0, 0, 1069, 1052, 1, 0, 0, 0, 1069, 1063, 1, 0, 0, 0, 1070, 192, 1, 0, 0, 0, 1071, 1074, 3, 187, 85, 0, 1072, 1075, 3, 81, 32, 0, 1073, 1075, 3, 95, 39, 0, 1074, 1072, 1, 0, 0, 0, 1074, 1073, 1, 0, 0, 0, 1075, 1079, 1, 0, 0, 0, 1076, 1078, 3, 97, 40, 0, 1077, 1076, 1, 0, 0, 0, 1078, 1081, 1, 0, 0, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1089, 1, 0, 0, 0, 1081, 1079, 1, 0, 0, 0, 1082, 1084, 3, 187, 85, 0, 1083, 1085, 3, 79, 31, 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, 1071, 1, 0, 0, 0, 1088, 1082, 1, 0, 0, 0, 1089, 194, 1, 0, 0, 0, 1090, 1091, 5, 91, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 6, 89, 0, 0, 1093, 1094, 6, 89, 0, 0, 1094, 196, 1, 0, 0, 0, 1095, 1096, 5, 93, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 6, 90, 13, 0, 1098, 1099, 6, 90, 13, 0, 1099, 198, 1, 0, 0, 0, 1100, 1104, 3, 81, 32, 0, 1101, 1103, 3, 97, 40, 0, 1102, 1101, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1117, 1, 0, 0, 0, 1106, 1104, 1, 0, 0, 0, 1107, 1110, 3, 95, 39, 0, 1108, 1110, 3, 89, 36, 0, 1109, 1107, 1, 0, 0, 0, 1109, 1108, 1, 0, 0, 0, 1110, 1112, 1, 0, 0, 0, 1111, 1113, 3, 97, 40, 0, 1112, 1111, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1112, 1, 0, 0, 0, 1114, 1115, 1, 0, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1100, 1, 0, 0, 0, 1116, 1109, 1, 0, 0, 0, 1117, 200, 1, 0, 0, 0, 1118, 1120, 3, 91, 37, 0, 1119, 1121, 3, 93, 38, 0, 1120, 1119, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 3, 91, 37, 0, 1125, 202, 1, 0, 0, 0, 1126, 1127, 3, 201, 92, 0, 1127, 204, 1, 0, 0, 0, 1128, 1129, 3, 71, 27, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 6, 94, 12, 0, 1131, 206, 1, 0, 0, 0, 1132, 1133, 3, 73, 28, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 6, 95, 12, 0, 1135, 208, 1, 0, 0, 0, 1136, 1137, 3, 75, 29, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1139, 6, 96, 12, 0, 1139, 210, 1, 0, 0, 0, 1140, 1141, 3, 195, 89, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1143, 6, 97, 15, 0, 1143, 1144, 6, 97, 16, 0, 1144, 212, 1, 0, 0, 0, 1145, 1146, 3, 77, 30, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1148, 6, 98, 17, 0, 1148, 1149, 6, 98, 13, 0, 1149, 214, 1, 0, 0, 0, 1150, 1151, 3, 75, 29, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 6, 99, 12, 0, 1153, 216, 1, 0, 0, 0, 1154, 1155, 3, 71, 27, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 6, 100, 12, 0, 1157, 218, 1, 0, 0, 0, 1158, 1159, 3, 73, 28, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 6, 101, 12, 0, 1161, 220, 1, 0, 0, 0, 1162, 1163, 3, 77, 30, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 6, 102, 17, 0, 1165, 1166, 6, 102, 13, 0, 1166, 222, 1, 0, 0, 0, 1167, 1168, 3, 195, 89, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 6, 103, 15, 0, 1170, 224, 1, 0, 0, 0, 1171, 1172, 3, 197, 90, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 6, 104, 18, 0, 1174, 226, 1, 0, 0, 0, 1175, 1176, 3, 117, 50, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1178, 6, 105, 19, 0, 1178, 228, 1, 0, 0, 0, 1179, 1180, 3, 115, 49, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 6, 106, 20, 0, 1182, 230, 1, 0, 0, 0, 1183, 1184, 3, 119, 51, 0, 1184, 1185, 1, 0, 0, 0, 1185, 1186, 6, 107, 21, 0, 1186, 232, 1, 0, 0, 0, 1187, 1188, 3, 111, 47, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1190, 6, 108, 22, 0, 1190, 234, 1, 0, 0, 0, 1191, 1192, 7, 16, 0, 0, 1192, 1193, 7, 3, 0, 0, 1193, 1194, 7, 5, 0, 0, 1194, 1195, 7, 12, 0, 0, 1195, 1196, 7, 0, 0, 0, 1196, 1197, 7, 12, 0, 0, 1197, 1198, 7, 5, 0, 0, 1198, 1199, 7, 12, 0, 0, 1199, 236, 1, 0, 0, 0, 1200, 1204, 8, 32, 0, 0, 1201, 1202, 5, 47, 0, 0, 1202, 1204, 8, 33, 0, 0, 1203, 1200, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1204, 238, 1, 0, 0, 0, 1205, 1207, 3, 237, 110, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 240, 1, 0, 0, 0, 1210, 1211, 3, 239, 111, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 6, 112, 23, 0, 1213, 242, 1, 0, 0, 0, 1214, 1215, 3, 99, 41, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1217, 6, 113, 24, 0, 1217, 244, 1, 0, 0, 0, 1218, 1219, 3, 71, 27, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 6, 114, 12, 0, 1221, 246, 1, 0, 0, 0, 1222, 1223, 3, 73, 28, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1225, 6, 115, 12, 0, 1225, 248, 1, 0, 0, 0, 1226, 1227, 3, 75, 29, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1229, 6, 116, 12, 0, 1229, 250, 1, 0, 0, 0, 1230, 1231, 3, 77, 30, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 6, 117, 17, 0, 1233, 1234, 6, 117, 13, 0, 1234, 252, 1, 0, 0, 0, 1235, 1236, 3, 123, 53, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 6, 118, 25, 0, 1238, 254, 1, 0, 0, 0, 1239, 1240, 3, 119, 51, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1242, 6, 119, 21, 0, 1242, 256, 1, 0, 0, 0, 1243, 1244, 3, 149, 66, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 6, 120, 26, 0, 1246, 258, 1, 0, 0, 0, 1247, 1248, 3, 191, 87, 0, 1248, 1249, 1, 0, 0, 0, 1249, 1250, 6, 121, 27, 0, 1250, 260, 1, 0, 0, 0, 1251, 1252, 3, 187, 85, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1254, 6, 122, 28, 0, 1254, 262, 1, 0, 0, 0, 1255, 1256, 3, 193, 88, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 6, 123, 29, 0, 1258, 264, 1, 0, 0, 0, 1259, 1264, 3, 81, 32, 0, 1260, 1264, 3, 79, 31, 0, 1261, 1264, 3, 95, 39, 0, 1262, 1264, 3, 177, 80, 0, 1263, 1259, 1, 0, 0, 0, 1263, 1260, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1262, 1, 0, 0, 0, 1264, 266, 1, 0, 0, 0, 1265, 1268, 3, 81, 32, 0, 1266, 1268, 3, 177, 80, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1266, 1, 0, 0, 0, 1268, 1272, 1, 0, 0, 0, 1269, 1271, 3, 265, 124, 0, 1270, 1269, 1, 0, 0, 0, 1271, 1274, 1, 0, 0, 0, 1272, 1270, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1285, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1278, 3, 95, 39, 0, 1276, 1278, 3, 89, 36, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1276, 1, 0, 0, 0, 1278, 1280, 1, 0, 0, 0, 1279, 1281, 3, 265, 124, 0, 1280, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1285, 1, 0, 0, 0, 1284, 1267, 1, 0, 0, 0, 1284, 1277, 1, 0, 0, 0, 1285, 268, 1, 0, 0, 0, 1286, 1289, 3, 267, 125, 0, 1287, 1289, 3, 201, 92, 0, 1288, 1286, 1, 0, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 270, 1, 0, 0, 0, 1292, 1293, 3, 71, 27, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 6, 127, 12, 0, 1295, 272, 1, 0, 0, 0, 1296, 1297, 3, 73, 28, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 6, 128, 12, 0, 1299, 274, 1, 0, 0, 0, 1300, 1301, 3, 75, 29, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 6, 129, 12, 0, 1303, 276, 1, 0, 0, 0, 1304, 1305, 3, 77, 30, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 6, 130, 17, 0, 1307, 1308, 6, 130, 13, 0, 1308, 278, 1, 0, 0, 0, 1309, 1310, 3, 111, 47, 0, 1310, 1311, 1, 0, 0, 0, 1311, 1312, 6, 131, 22, 0, 1312, 280, 1, 0, 0, 0, 1313, 1314, 3, 119, 51, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1316, 6, 132, 21, 0, 1316, 282, 1, 0, 0, 0, 1317, 1318, 3, 123, 53, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 6, 133, 25, 0, 1320, 284, 1, 0, 0, 0, 1321, 1322, 3, 149, 66, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1324, 6, 134, 26, 0, 1324, 286, 1, 0, 0, 0, 1325, 1326, 3, 191, 87, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 6, 135, 27, 0, 1328, 288, 1, 0, 0, 0, 1329, 1330, 3, 187, 85, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 6, 136, 28, 0, 1332, 290, 1, 0, 0, 0, 1333, 1334, 3, 193, 88, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 6, 137, 29, 0, 1336, 292, 1, 0, 0, 0, 1337, 1338, 3, 107, 45, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 6, 138, 30, 0, 1340, 294, 1, 0, 0, 0, 1341, 1342, 3, 269, 126, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 6, 139, 31, 0, 1344, 296, 1, 0, 0, 0, 1345, 1346, 3, 71, 27, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 6, 140, 12, 0, 1348, 298, 1, 0, 0, 0, 1349, 1350, 3, 73, 28, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1352, 6, 141, 12, 0, 1352, 300, 1, 0, 0, 0, 1353, 1354, 3, 75, 29, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 6, 142, 12, 0, 1356, 302, 1, 0, 0, 0, 1357, 1358, 3, 77, 30, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 6, 143, 17, 0, 1360, 1361, 6, 143, 13, 0, 1361, 304, 1, 0, 0, 0, 1362, 1363, 3, 195, 89, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1365, 6, 144, 15, 0, 1365, 1366, 6, 144, 32, 0, 1366, 306, 1, 0, 0, 0, 1367, 1368, 3, 145, 64, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 6, 145, 33, 0, 1370, 1371, 6, 145, 34, 0, 1371, 308, 1, 0, 0, 0, 1372, 1373, 3, 157, 70, 0, 1373, 1374, 1, 0, 0, 0, 1374, 1375, 6, 146, 35, 0, 1375, 1376, 6, 146, 34, 0, 1376, 310, 1, 0, 0, 0, 1377, 1378, 8, 34, 0, 0, 1378, 312, 1, 0, 0, 0, 1379, 1381, 3, 311, 147, 0, 1380, 1379, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1380, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 3, 117, 50, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1380, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1389, 1, 0, 0, 0, 1388, 1390, 3, 311, 147, 0, 1389, 1388, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 314, 1, 0, 0, 0, 1393, 1394, 3, 313, 148, 0, 1394, 1395, 1, 0, 0, 0, 1395, 1396, 6, 149, 36, 0, 1396, 316, 1, 0, 0, 0, 1397, 1398, 3, 71, 27, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 6, 150, 12, 0, 1400, 318, 1, 0, 0, 0, 1401, 1402, 3, 73, 28, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1404, 6, 151, 12, 0, 1404, 320, 1, 0, 0, 0, 1405, 1406, 3, 75, 29, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1408, 6, 152, 12, 0, 1408, 322, 1, 0, 0, 0, 1409, 1410, 3, 77, 30, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 6, 153, 17, 0, 1412, 1413, 6, 153, 13, 0, 1413, 1414, 6, 153, 13, 0, 1414, 324, 1, 0, 0, 0, 1415, 1416, 3, 111, 47, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 6, 154, 22, 0, 1418, 326, 1, 0, 0, 0, 1419, 1420, 3, 119, 51, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1422, 6, 155, 21, 0, 1422, 328, 1, 0, 0, 0, 1423, 1424, 3, 123, 53, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 6, 156, 25, 0, 1426, 330, 1, 0, 0, 0, 1427, 1428, 3, 157, 70, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1430, 6, 157, 35, 0, 1430, 332, 1, 0, 0, 0, 1431, 1432, 3, 269, 126, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 6, 158, 31, 0, 1434, 334, 1, 0, 0, 0, 1435, 1436, 3, 203, 93, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 6, 159, 37, 0, 1438, 336, 1, 0, 0, 0, 1439, 1440, 3, 149, 66, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1442, 6, 160, 26, 0, 1442, 338, 1, 0, 0, 0, 1443, 1444, 3, 191, 87, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 6, 161, 27, 0, 1446, 340, 1, 0, 0, 0, 1447, 1448, 3, 187, 85, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1450, 6, 162, 28, 0, 1450, 342, 1, 0, 0, 0, 1451, 1452, 3, 193, 88, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 6, 163, 29, 0, 1454, 344, 1, 0, 0, 0, 1455, 1456, 3, 71, 27, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 6, 164, 12, 0, 1458, 346, 1, 0, 0, 0, 1459, 1460, 3, 73, 28, 0, 1460, 1461, 1, 0, 0, 0, 1461, 1462, 6, 165, 12, 0, 1462, 348, 1, 0, 0, 0, 1463, 1464, 3, 75, 29, 0, 1464, 1465, 1, 0, 0, 0, 1465, 1466, 6, 166, 12, 0, 1466, 350, 1, 0, 0, 0, 1467, 1468, 3, 77, 30, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 6, 167, 17, 0, 1470, 1471, 6, 167, 13, 0, 1471, 352, 1, 0, 0, 0, 1472, 1473, 3, 123, 53, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 6, 168, 25, 0, 1475, 354, 1, 0, 0, 0, 1476, 1477, 3, 149, 66, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1479, 6, 169, 26, 0, 1479, 356, 1, 0, 0, 0, 1480, 1481, 3, 191, 87, 0, 1481, 1482, 1, 0, 0, 0, 1482, 1483, 6, 170, 27, 0, 1483, 358, 1, 0, 0, 0, 1484, 1485, 3, 187, 85, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 6, 171, 28, 0, 1487, 360, 1, 0, 0, 0, 1488, 1489, 3, 193, 88, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 6, 172, 29, 0, 1491, 362, 1, 0, 0, 0, 1492, 1493, 3, 203, 93, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1495, 6, 173, 37, 0, 1495, 364, 1, 0, 0, 0, 1496, 1497, 3, 199, 91, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1499, 6, 174, 38, 0, 1499, 366, 1, 0, 0, 0, 1500, 1501, 3, 71, 27, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 6, 175, 12, 0, 1503, 368, 1, 0, 0, 0, 1504, 1505, 3, 73, 28, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 6, 176, 12, 0, 1507, 370, 1, 0, 0, 0, 1508, 1509, 3, 75, 29, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 6, 177, 12, 0, 1511, 372, 1, 0, 0, 0, 1512, 1513, 3, 77, 30, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 6, 178, 17, 0, 1515, 1516, 6, 178, 13, 0, 1516, 374, 1, 0, 0, 0, 1517, 1518, 7, 1, 0, 0, 1518, 1519, 7, 9, 0, 0, 1519, 1520, 7, 15, 0, 0, 1520, 1521, 7, 7, 0, 0, 1521, 376, 1, 0, 0, 0, 1522, 1523, 3, 71, 27, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1525, 6, 180, 12, 0, 1525, 378, 1, 0, 0, 0, 1526, 1527, 3, 73, 28, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 6, 181, 12, 0, 1529, 380, 1, 0, 0, 0, 1530, 1531, 3, 75, 29, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1533, 6, 182, 12, 0, 1533, 382, 1, 0, 0, 0, 1534, 1535, 3, 197, 90, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 6, 183, 18, 0, 1537, 1538, 6, 183, 13, 0, 1538, 384, 1, 0, 0, 0, 1539, 1540, 3, 117, 50, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 6, 184, 19, 0, 1542, 386, 1, 0, 0, 0, 1543, 1549, 3, 89, 36, 0, 1544, 1549, 3, 79, 31, 0, 1545, 1549, 3, 123, 53, 0, 1546, 1549, 3, 81, 32, 0, 1547, 1549, 3, 95, 39, 0, 1548, 1543, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1545, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1548, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 388, 1, 0, 0, 0, 1552, 1553, 3, 71, 27, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 6, 186, 12, 0, 1555, 390, 1, 0, 0, 0, 1556, 1557, 3, 73, 28, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 6, 187, 12, 0, 1559, 392, 1, 0, 0, 0, 1560, 1561, 3, 75, 29, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1563, 6, 188, 12, 0, 1563, 394, 1, 0, 0, 0, 1564, 1565, 3, 77, 30, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 6, 189, 17, 0, 1567, 1568, 6, 189, 13, 0, 1568, 396, 1, 0, 0, 0, 1569, 1570, 3, 117, 50, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 6, 190, 19, 0, 1572, 398, 1, 0, 0, 0, 1573, 1574, 3, 119, 51, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 6, 191, 21, 0, 1576, 400, 1, 0, 0, 0, 1577, 1578, 3, 123, 53, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 6, 192, 25, 0, 1580, 402, 1, 0, 0, 0, 1581, 1582, 3, 145, 64, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 6, 193, 33, 0, 1584, 1585, 6, 193, 39, 0, 1585, 404, 1, 0, 0, 0, 1586, 1587, 3, 239, 111, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 6, 194, 23, 0, 1589, 406, 1, 0, 0, 0, 1590, 1591, 3, 99, 41, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 6, 195, 24, 0, 1593, 408, 1, 0, 0, 0, 1594, 1595, 3, 71, 27, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 6, 196, 12, 0, 1597, 410, 1, 0, 0, 0, 1598, 1599, 3, 73, 28, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 6, 197, 12, 0, 1601, 412, 1, 0, 0, 0, 1602, 1603, 3, 75, 29, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1605, 6, 198, 12, 0, 1605, 414, 1, 0, 0, 0, 1606, 1607, 3, 77, 30, 0, 1607, 1608, 1, 0, 0, 0, 1608, 1609, 6, 199, 17, 0, 1609, 1610, 6, 199, 13, 0, 1610, 1611, 6, 199, 13, 0, 1611, 416, 1, 0, 0, 0, 1612, 1613, 3, 119, 51, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 6, 200, 21, 0, 1615, 418, 1, 0, 0, 0, 1616, 1617, 3, 123, 53, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 6, 201, 25, 0, 1619, 420, 1, 0, 0, 0, 1620, 1621, 3, 269, 126, 0, 1621, 1622, 1, 0, 0, 0, 1622, 1623, 6, 202, 31, 0, 1623, 422, 1, 0, 0, 0, 1624, 1625, 3, 71, 27, 0, 1625, 1626, 1, 0, 0, 0, 1626, 1627, 6, 203, 12, 0, 1627, 424, 1, 0, 0, 0, 1628, 1629, 3, 73, 28, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 6, 204, 12, 0, 1631, 426, 1, 0, 0, 0, 1632, 1633, 3, 75, 29, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1635, 6, 205, 12, 0, 1635, 428, 1, 0, 0, 0, 1636, 1637, 3, 77, 30, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 6, 206, 17, 0, 1639, 1640, 6, 206, 13, 0, 1640, 430, 1, 0, 0, 0, 1641, 1642, 7, 35, 0, 0, 1642, 1643, 7, 7, 0, 0, 1643, 1644, 7, 1, 0, 0, 1644, 1645, 7, 9, 0, 0, 1645, 432, 1, 0, 0, 0, 1646, 1647, 3, 107, 45, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1649, 6, 208, 30, 0, 1649, 434, 1, 0, 0, 0, 1650, 1651, 3, 145, 64, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 6, 209, 33, 0, 1653, 1654, 6, 209, 13, 0, 1654, 1655, 6, 209, 0, 0, 1655, 436, 1, 0, 0, 0, 1656, 1657, 7, 20, 0, 0, 1657, 1658, 7, 2, 0, 0, 1658, 1659, 7, 1, 0, 0, 1659, 1660, 7, 9, 0, 0, 1660, 1661, 7, 17, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 6, 210, 13, 0, 1663, 1664, 6, 210, 0, 0, 1664, 438, 1, 0, 0, 0, 1665, 1666, 3, 239, 111, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 6, 211, 23, 0, 1668, 440, 1, 0, 0, 0, 1669, 1670, 3, 99, 41, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1672, 6, 212, 24, 0, 1672, 442, 1, 0, 0, 0, 1673, 1674, 3, 117, 50, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 6, 213, 19, 0, 1676, 444, 1, 0, 0, 0, 1677, 1678, 3, 199, 91, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1680, 6, 214, 38, 0, 1680, 446, 1, 0, 0, 0, 1681, 1682, 3, 203, 93, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 6, 215, 37, 0, 1684, 448, 1, 0, 0, 0, 1685, 1686, 3, 71, 27, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 6, 216, 12, 0, 1688, 450, 1, 0, 0, 0, 1689, 1690, 3, 73, 28, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 6, 217, 12, 0, 1692, 452, 1, 0, 0, 0, 1693, 1694, 3, 75, 29, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 6, 218, 12, 0, 1696, 454, 1, 0, 0, 0, 1697, 1698, 3, 77, 30, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 6, 219, 17, 0, 1700, 1701, 6, 219, 13, 0, 1701, 456, 1, 0, 0, 0, 1702, 1703, 3, 239, 111, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 6, 220, 23, 0, 1705, 1706, 6, 220, 13, 0, 1706, 1707, 6, 220, 40, 0, 1707, 458, 1, 0, 0, 0, 1708, 1709, 3, 99, 41, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1711, 6, 221, 24, 0, 1711, 1712, 6, 221, 13, 0, 1712, 1713, 6, 221, 40, 0, 1713, 460, 1, 0, 0, 0, 1714, 1715, 3, 71, 27, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 6, 222, 12, 0, 1717, 462, 1, 0, 0, 0, 1718, 1719, 3, 73, 28, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 6, 223, 12, 0, 1721, 464, 1, 0, 0, 0, 1722, 1723, 3, 75, 29, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1725, 6, 224, 12, 0, 1725, 466, 1, 0, 0, 0, 1726, 1727, 3, 117, 50, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 6, 225, 19, 0, 1729, 1730, 6, 225, 13, 0, 1730, 1731, 6, 225, 11, 0, 1731, 468, 1, 0, 0, 0, 1732, 1733, 3, 115, 49, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1735, 6, 226, 20, 0, 1735, 1736, 6, 226, 13, 0, 1736, 1737, 6, 226, 11, 0, 1737, 470, 1, 0, 0, 0, 1738, 1739, 3, 119, 51, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 6, 227, 21, 0, 1741, 1742, 6, 227, 13, 0, 1742, 1743, 6, 227, 11, 0, 1743, 472, 1, 0, 0, 0, 1744, 1745, 3, 71, 27, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 6, 228, 12, 0, 1747, 474, 1, 0, 0, 0, 1748, 1749, 3, 73, 28, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1751, 6, 229, 12, 0, 1751, 476, 1, 0, 0, 0, 1752, 1753, 3, 75, 29, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 6, 230, 12, 0, 1755, 478, 1, 0, 0, 0, 1756, 1757, 3, 203, 93, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 6, 231, 13, 0, 1759, 1760, 6, 231, 0, 0, 1760, 1761, 6, 231, 37, 0, 1761, 480, 1, 0, 0, 0, 1762, 1763, 3, 199, 91, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 6, 232, 13, 0, 1765, 1766, 6, 232, 0, 0, 1766, 1767, 6, 232, 38, 0, 1767, 482, 1, 0, 0, 0, 1768, 1769, 3, 113, 48, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 6, 233, 13, 0, 1771, 1772, 6, 233, 0, 0, 1772, 1773, 6, 233, 41, 0, 1773, 484, 1, 0, 0, 0, 1774, 1775, 3, 77, 30, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 6, 234, 17, 0, 1777, 1778, 6, 234, 13, 0, 1778, 486, 1, 0, 0, 0, 1779, 1780, 3, 77, 30, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 6, 235, 17, 0, 1782, 1783, 6, 235, 13, 0, 1783, 488, 1, 0, 0, 0, 1784, 1785, 3, 145, 64, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 6, 236, 33, 0, 1787, 490, 1, 0, 0, 0, 1788, 1789, 3, 107, 45, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 6, 237, 30, 0, 1791, 492, 1, 0, 0, 0, 1792, 1793, 3, 123, 53, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 6, 238, 25, 0, 1795, 494, 1, 0, 0, 0, 1796, 1797, 3, 119, 51, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 6, 239, 21, 0, 1799, 496, 1, 0, 0, 0, 1800, 1801, 3, 203, 93, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 6, 240, 37, 0, 1803, 498, 1, 0, 0, 0, 1804, 1805, 3, 199, 91, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 6, 241, 38, 0, 1807, 500, 1, 0, 0, 0, 1808, 1809, 3, 71, 27, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 6, 242, 12, 0, 1811, 502, 1, 0, 0, 0, 1812, 1813, 3, 73, 28, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1815, 6, 243, 12, 0, 1815, 504, 1, 0, 0, 0, 1816, 1817, 3, 75, 29, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 6, 244, 12, 0, 1819, 506, 1, 0, 0, 0, 71, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 750, 760, 764, 767, 776, 778, 789, 808, 813, 822, 829, 834, 836, 847, 855, 858, 860, 865, 870, 876, 883, 888, 894, 897, 905, 909, 1055, 1060, 1067, 1069, 1074, 1079, 1086, 1088, 1104, 1109, 1114, 1116, 1122, 1203, 1208, 1263, 1267, 1272, 1277, 1282, 1284, 1288, 1290, 1382, 1386, 1391, 1548, 1550, 42, 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, 0, 1, 0, 4, 0, 0, 7, 16, 0, 7, 79, 0, 5, 0, 0, 7, 31, 0, 7, 80, 0, 7, 41, 0, 7, 40, 0, 7, 42, 0, 7, 38, 0, 7, 90, 0, 7, 32, 0, 7, 44, 0, 7, 57, 0, 7, 77, 0, 7, 76, 0, 7, 78, 0, 7, 36, 0, 7, 94, 0, 5, 10, 0, 7, 55, 0, 5, 7, 0, 7, 61, 0, 7, 101, 0, 7, 82, 0, 7, 81, 0, 5, 12, 0, 5, 15, 0, 7, 39, 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 799b8cc5a53c8..323464d46cb96 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseLexer.java
@@ -27,33 +27,34 @@ public class EsqlBaseLexer extends LexerConfig {
public static final int
DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8,
LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15,
- WHERE=16, JOIN_LOOKUP=17, CHANGE_POINT=18, DEV_INLINESTATS=19, DEV_LOOKUP=20,
- DEV_METRICS=21, DEV_RERANK=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24, DEV_JOIN_RIGHT=25,
- UNKNOWN_CMD=26, LINE_COMMENT=27, MULTILINE_COMMENT=28, WS=29, PIPE=30,
- QUOTED_STRING=31, INTEGER_LITERAL=32, DECIMAL_LITERAL=33, AND=34, AS=35,
- ASC=36, ASSIGN=37, BY=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, ON=54, OR=55, PARAM=56, RLIKE=57, RP=58, TRUE=59, WITH=60, EQ=61,
- CIEQ=62, NEQ=63, LT=64, LTE=65, GT=66, GTE=67, PLUS=68, MINUS=69, ASTERISK=70,
- SLASH=71, PERCENT=72, LEFT_BRACES=73, RIGHT_BRACES=74, DOUBLE_PARAMS=75,
- NAMED_OR_POSITIONAL_PARAM=76, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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;
+ WHERE=16, JOIN_LOOKUP=17, CHANGE_POINT=18, DEV_COMPLETION=19, DEV_INLINESTATS=20,
+ DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_JOIN_FULL=24, DEV_JOIN_LEFT=25,
+ DEV_JOIN_RIGHT=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29,
+ WS=30, PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34,
+ AND=35, AS=36, ASC=37, ASSIGN=38, BY=39, CAST_OP=40, COLON=41, COMMA=42,
+ DESC=43, DOT=44, FALSE=45, FIRST=46, IN=47, IS=48, LAST=49, LIKE=50, LP=51,
+ NOT=52, NULL=53, NULLS=54, ON=55, OR=56, PARAM=57, RLIKE=58, RP=59, TRUE=60,
+ WITH=61, EQ=62, CIEQ=63, NEQ=64, LT=65, LTE=66, GT=67, GTE=68, PLUS=69,
+ MINUS=70, ASTERISK=71, SLASH=72, PERCENT=73, LEFT_BRACES=74, RIGHT_BRACES=75,
+ DOUBLE_PARAMS=76, NAMED_OR_POSITIONAL_PARAM=77, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78,
+ OPENING_BRACKET=79, CLOSING_BRACKET=80, UNQUOTED_IDENTIFIER=81, QUOTED_IDENTIFIER=82,
+ EXPR_LINE_COMMENT=83, EXPR_MULTILINE_COMMENT=84, EXPR_WS=85, EXPLAIN_WS=86,
+ EXPLAIN_LINE_COMMENT=87, EXPLAIN_MULTILINE_COMMENT=88, METADATA=89, UNQUOTED_SOURCE=90,
+ FROM_LINE_COMMENT=91, FROM_MULTILINE_COMMENT=92, FROM_WS=93, ID_PATTERN=94,
+ PROJECT_LINE_COMMENT=95, PROJECT_MULTILINE_COMMENT=96, PROJECT_WS=97,
+ RENAME_LINE_COMMENT=98, RENAME_MULTILINE_COMMENT=99, RENAME_WS=100, ENRICH_POLICY_NAME=101,
+ ENRICH_LINE_COMMENT=102, ENRICH_MULTILINE_COMMENT=103, ENRICH_WS=104,
+ ENRICH_FIELD_LINE_COMMENT=105, ENRICH_FIELD_MULTILINE_COMMENT=106, ENRICH_FIELD_WS=107,
+ MVEXPAND_LINE_COMMENT=108, MVEXPAND_MULTILINE_COMMENT=109, MVEXPAND_WS=110,
+ INFO=111, SHOW_LINE_COMMENT=112, SHOW_MULTILINE_COMMENT=113, SHOW_WS=114,
+ SETTING=115, SETTING_LINE_COMMENT=116, SETTTING_MULTILINE_COMMENT=117,
+ SETTING_WS=118, LOOKUP_LINE_COMMENT=119, LOOKUP_MULTILINE_COMMENT=120,
+ LOOKUP_WS=121, LOOKUP_FIELD_LINE_COMMENT=122, LOOKUP_FIELD_MULTILINE_COMMENT=123,
+ LOOKUP_FIELD_WS=124, JOIN=125, USING=126, JOIN_LINE_COMMENT=127, JOIN_MULTILINE_COMMENT=128,
+ JOIN_WS=129, METRICS_LINE_COMMENT=130, METRICS_MULTILINE_COMMENT=131,
+ METRICS_WS=132, CLOSING_METRICS_LINE_COMMENT=133, CLOSING_METRICS_MULTILINE_COMMENT=134,
+ CLOSING_METRICS_WS=135, CHANGE_POINT_LINE_COMMENT=136, CHANGE_POINT_MULTILINE_COMMENT=137,
+ CHANGE_POINT_WS=138;
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,
@@ -74,11 +75,11 @@ private static String[] makeRuleNames() {
return new String[] {
"DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK", "KEEP",
"LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS", "WHERE",
- "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP", "DEV_METRICS",
- "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT", "UNKNOWN_CMD",
- "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "DIGIT", "LETTER",
- "ESCAPE_SEQUENCE", "UNESCAPED_CHARS", "EXPONENT", "ASPERAND", "BACKQUOTE",
- "BACKQUOTE_BLOCK", "UNDERSCORE", "UNQUOTED_ID_BODY", "QUOTED_STRING",
+ "JOIN_LOOKUP", "CHANGE_POINT", "DEV_COMPLETION", "DEV_INLINESTATS", "DEV_LOOKUP",
+ "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT",
+ "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "DIGIT",
+ "LETTER", "ESCAPE_SEQUENCE", "UNESCAPED_CHARS", "EXPONENT", "ASPERAND",
+ "BACKQUOTE", "BACKQUOTE_BLOCK", "UNDERSCORE", "UNQUOTED_ID_BODY", "QUOTED_STRING",
"INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY",
"CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS",
"LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE",
@@ -138,8 +139,8 @@ private static String[] makeLiteralNames() {
null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'",
"'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'",
"'sort'", "'stats'", "'where'", "'lookup'", "'change_point'", null, null,
- null, null, null, null, null, null, null, null, null, "'|'", null, null,
- null, "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
+ null, null, null, null, null, null, null, null, null, null, "'|'", null,
+ null, null, "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
"'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'",
"'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'",
"')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'",
@@ -156,32 +157,32 @@ private static String[] makeSymbolicNames() {
return new String[] {
null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK",
"KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS",
- "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
- "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT",
- "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING",
- "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY",
- "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS",
- "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE",
- "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE",
- "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES",
- "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
- "OPENING_BRACKET", "CLOSING_BRACKET", "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",
- "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT",
- "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT",
- "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT",
- "LOOKUP_FIELD_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT",
- "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS",
- "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT",
- "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT",
- "CHANGE_POINT_WS"
+ "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_COMPLETION", "DEV_INLINESTATS",
+ "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
+ "DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT",
+ "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL",
+ "AND", "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC",
+ "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "LP", "NOT", "NULL",
+ "NULLS", "ON", "OR", "PARAM", "RLIKE", "RP", "TRUE", "WITH", "EQ", "CIEQ",
+ "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH",
+ "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM",
+ "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET",
+ "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", "SHOW_MULTILINE_COMMENT",
+ "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT",
+ "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS",
+ "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS",
+ "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS",
+ "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT",
+ "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT",
+ "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS"
};
}
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
@@ -247,74 +248,83 @@ public EsqlBaseLexer(CharStream input) {
public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) {
switch (ruleIndex) {
case 18:
- return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex);
+ return DEV_COMPLETION_sempred((RuleContext)_localctx, predIndex);
case 19:
- return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex);
+ return DEV_INLINESTATS_sempred((RuleContext)_localctx, predIndex);
case 20:
- return DEV_METRICS_sempred((RuleContext)_localctx, predIndex);
+ return DEV_LOOKUP_sempred((RuleContext)_localctx, predIndex);
case 21:
- return DEV_RERANK_sempred((RuleContext)_localctx, predIndex);
+ 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_LEFT_sempred((RuleContext)_localctx, predIndex);
+ case 25:
return DEV_JOIN_RIGHT_sempred((RuleContext)_localctx, predIndex);
}
return true;
}
- private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_COMPLETION_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 0:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_INLINESTATS_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 1:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_LOOKUP_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 2:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_METRICS_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 3:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_RERANK_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 4:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_JOIN_FULL_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 5:
return this.isDevVersion();
}
return true;
}
- private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
+ private boolean DEV_JOIN_LEFT_sempred(RuleContext _localctx, int predIndex) {
switch (predIndex) {
case 6:
return this.isDevVersion();
}
return true;
}
+ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
+ switch (predIndex) {
+ case 7:
+ return this.isDevVersion();
+ }
+ return true;
+ }
public static final String _serializedATN =
- "\u0004\u0000\u0089\u070c\u0006\uffff\uffff\u0006\uffff\uffff\u0006\uffff"+
+ "\u0004\u0000\u008a\u071c\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"+
@@ -386,221 +396,224 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
"\u0002\u00e9\u0007\u00e9\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\u0001\u0000\u0001\u0000"+
+ "\u0002\u00f2\u0007\u00f2\u0002\u00f3\u0007\u00f3\u0002\u00f4\u0007\u00f4"+
"\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\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\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
- "\u0001\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004"+
- "\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
- "\u0001\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\u0007"+
- "\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0001"+
- "\b\u0001\b\u0001\b\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001"+
- "\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\n\u0001\n\u0001\n\u0001"+
- "\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\u000b\u0001\u000b\u0001"+
- "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\f\u0001"+
- "\f\u0001\f\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0001\r\u0001"+
- "\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\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\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\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\u0012"+
- "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
+ "\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011\u0001\u0011"+
+ "\u0001\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
"\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0012"+
- "\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013"+
"\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
- "\u0001\u0013\u0001\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
+ "\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
"\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014"+
- "\u0001\u0014\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
+ "\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015\u0001\u0015"+
"\u0001\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\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017"+
- "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018\u0001\u0018"+
+ "\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0017"+
+ "\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0017\u0001\u0018"+
"\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018\u0001\u0018"+
- "\u0001\u0019\u0004\u0019\u02dd\b\u0019\u000b\u0019\f\u0019\u02de\u0001"+
- "\u0019\u0001\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0005"+
- "\u001a\u02e7\b\u001a\n\u001a\f\u001a\u02ea\t\u001a\u0001\u001a\u0003\u001a"+
- "\u02ed\b\u001a\u0001\u001a\u0003\u001a\u02f0\b\u001a\u0001\u001a\u0001"+
- "\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0005"+
- "\u001b\u02f9\b\u001b\n\u001b\f\u001b\u02fc\t\u001b\u0001\u001b\u0001\u001b"+
- "\u0001\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0004\u001c\u0304\b\u001c"+
- "\u000b\u001c\f\u001c\u0305\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d"+
- "\u0001\u001d\u0001\u001d\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f"+
- "\u0001 \u0001 \u0001 \u0001!\u0001!\u0001\"\u0001\"\u0003\"\u0319\b\""+
- "\u0001\"\u0004\"\u031c\b\"\u000b\"\f\"\u031d\u0001#\u0001#\u0001$\u0001"+
- "$\u0001%\u0001%\u0001%\u0003%\u0327\b%\u0001&\u0001&\u0001\'\u0001\'\u0001"+
- "\'\u0003\'\u032e\b\'\u0001(\u0001(\u0001(\u0005(\u0333\b(\n(\f(\u0336"+
- "\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0001(\u0005(\u033e\b(\n(\f(\u0341"+
- "\t(\u0001(\u0001(\u0001(\u0001(\u0001(\u0003(\u0348\b(\u0001(\u0003(\u034b"+
- "\b(\u0003(\u034d\b(\u0001)\u0004)\u0350\b)\u000b)\f)\u0351\u0001*\u0004"+
- "*\u0355\b*\u000b*\f*\u0356\u0001*\u0001*\u0005*\u035b\b*\n*\f*\u035e\t"+
- "*\u0001*\u0001*\u0004*\u0362\b*\u000b*\f*\u0363\u0001*\u0004*\u0367\b"+
- "*\u000b*\f*\u0368\u0001*\u0001*\u0005*\u036d\b*\n*\f*\u0370\t*\u0003*"+
- "\u0372\b*\u0001*\u0001*\u0001*\u0001*\u0004*\u0378\b*\u000b*\f*\u0379"+
- "\u0001*\u0001*\u0003*\u037e\b*\u0001+\u0001+\u0001+\u0001+\u0001,\u0001"+
- ",\u0001,\u0001-\u0001-\u0001-\u0001-\u0001.\u0001.\u0001/\u0001/\u0001"+
- "/\u00010\u00010\u00010\u00011\u00011\u00012\u00012\u00013\u00013\u0001"+
- "3\u00013\u00013\u00014\u00014\u00015\u00015\u00015\u00015\u00015\u0001"+
+ "\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+
+ "\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u001a\u0004\u001a"+
+ "\u02ed\b\u001a\u000b\u001a\f\u001a\u02ee\u0001\u001a\u0001\u001a\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u02f7\b\u001b\n"+
+ "\u001b\f\u001b\u02fa\t\u001b\u0001\u001b\u0003\u001b\u02fd\b\u001b\u0001"+
+ "\u001b\u0003\u001b\u0300\b\u001b\u0001\u001b\u0001\u001b\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0005\u001c\u0309\b\u001c\n"+
+ "\u001c\f\u001c\u030c\t\u001c\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001c\u0001\u001c\u0001\u001d\u0004\u001d\u0314\b\u001d\u000b\u001d\f"+
+ "\u001d\u0315\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#\u0329\b#\u0001#\u0004#\u032c\b"+
+ "#\u000b#\f#\u032d\u0001$\u0001$\u0001%\u0001%\u0001&\u0001&\u0001&\u0003"+
+ "&\u0337\b&\u0001\'\u0001\'\u0001(\u0001(\u0001(\u0003(\u033e\b(\u0001"+
+ ")\u0001)\u0001)\u0005)\u0343\b)\n)\f)\u0346\t)\u0001)\u0001)\u0001)\u0001"+
+ ")\u0001)\u0001)\u0005)\u034e\b)\n)\f)\u0351\t)\u0001)\u0001)\u0001)\u0001"+
+ ")\u0001)\u0003)\u0358\b)\u0001)\u0003)\u035b\b)\u0003)\u035d\b)\u0001"+
+ "*\u0004*\u0360\b*\u000b*\f*\u0361\u0001+\u0004+\u0365\b+\u000b+\f+\u0366"+
+ "\u0001+\u0001+\u0005+\u036b\b+\n+\f+\u036e\t+\u0001+\u0001+\u0004+\u0372"+
+ "\b+\u000b+\f+\u0373\u0001+\u0004+\u0377\b+\u000b+\f+\u0378\u0001+\u0001"+
+ "+\u0005+\u037d\b+\n+\f+\u0380\t+\u0003+\u0382\b+\u0001+\u0001+\u0001+"+
+ "\u0001+\u0004+\u0388\b+\u000b+\f+\u0389\u0001+\u0001+\u0003+\u038e\b+"+
+ "\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+
+ ".\u0001.\u0001/\u0001/\u00010\u00010\u00010\u00011\u00011\u00011\u0001"+
+ "2\u00012\u00013\u00013\u00014\u00014\u00014\u00014\u00014\u00015\u0001"+
"5\u00016\u00016\u00016\u00016\u00016\u00016\u00017\u00017\u00017\u0001"+
- "8\u00018\u00018\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\u0001B\u0001B\u0001"+
- "B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001"+
- "D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001G\u0001"+
- "G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001I\u0001J\u0001J\u0001J\u0001"+
- "K\u0001K\u0001L\u0001L\u0001L\u0001M\u0001M\u0001N\u0001N\u0001O\u0001"+
- "O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001R\u0001S\u0001S\u0001T\u0001"+
- "T\u0001T\u0001U\u0001U\u0001U\u0001U\u0001V\u0001V\u0001V\u0003V\u0410"+
- "\bV\u0001V\u0005V\u0413\bV\nV\fV\u0416\tV\u0001V\u0001V\u0004V\u041a\b"+
- "V\u000bV\fV\u041b\u0003V\u041e\bV\u0001W\u0001W\u0001W\u0003W\u0423\b"+
- "W\u0001W\u0005W\u0426\bW\nW\fW\u0429\tW\u0001W\u0001W\u0004W\u042d\bW"+
- "\u000bW\fW\u042e\u0003W\u0431\bW\u0001X\u0001X\u0001X\u0001X\u0001X\u0001"+
- "Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0005Z\u043f\bZ\nZ\fZ\u0442"+
- "\tZ\u0001Z\u0001Z\u0003Z\u0446\bZ\u0001Z\u0004Z\u0449\bZ\u000bZ\fZ\u044a"+
- "\u0003Z\u044d\bZ\u0001[\u0001[\u0004[\u0451\b[\u000b[\f[\u0452\u0001["+
- "\u0001[\u0001\\\u0001\\\u0001]\u0001]\u0001]\u0001]\u0001^\u0001^\u0001"+
- "^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001`\u0001`\u0001"+
- "`\u0001a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001b\u0001"+
- "c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001e\u0001e\u0001"+
- "e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001g\u0001g\u0001g\u0001"+
- "g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001i\u0001j\u0001"+
- "j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001l\u0001l\u0001"+
- "l\u0001l\u0001l\u0001l\u0001l\u0001l\u0001m\u0001m\u0001m\u0003m\u04a4"+
- "\bm\u0001n\u0004n\u04a7\bn\u000bn\fn\u04a8\u0001o\u0001o\u0001o\u0001"+
- "o\u0001p\u0001p\u0001p\u0001p\u0001q\u0001q\u0001q\u0001q\u0001r\u0001"+
- "r\u0001r\u0001r\u0001s\u0001s\u0001s\u0001s\u0001t\u0001t\u0001t\u0001"+
- "t\u0001t\u0001u\u0001u\u0001u\u0001u\u0001v\u0001v\u0001v\u0001v\u0001"+
- "w\u0001w\u0001w\u0001w\u0001x\u0001x\u0001x\u0001x\u0001y\u0001y\u0001"+
- "y\u0001y\u0001z\u0001z\u0001z\u0001z\u0001{\u0001{\u0001{\u0001{\u0003"+
- "{\u04e0\b{\u0001|\u0001|\u0003|\u04e4\b|\u0001|\u0005|\u04e7\b|\n|\f|"+
- "\u04ea\t|\u0001|\u0001|\u0003|\u04ee\b|\u0001|\u0004|\u04f1\b|\u000b|"+
- "\f|\u04f2\u0003|\u04f5\b|\u0001}\u0001}\u0004}\u04f9\b}\u000b}\f}\u04fa"+
- "\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\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\u008c\u0001\u008c\u0001\u008c\u0001\u008c\u0001"+
- "\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e\u0001"+
- "\u008e\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001"+
- "\u008f\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001"+
- "\u0090\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001"+
- "\u0092\u0001\u0092\u0001\u0093\u0004\u0093\u0555\b\u0093\u000b\u0093\f"+
- "\u0093\u0556\u0001\u0093\u0001\u0093\u0003\u0093\u055b\b\u0093\u0001\u0093"+
- "\u0004\u0093\u055e\b\u0093\u000b\u0093\f\u0093\u055f\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\u0098\u0001\u0098\u0001\u0099\u0001\u0099\u0001\u0099\u0001"+
- "\u0099\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b\u0001"+
- "\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c\u0001"+
- "\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e\u0001"+
- "\u009e\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f\u0001"+
- "\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1\u0001"+
- "\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2\u0001"+
- "\u00a2\u0001\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\u00a8\u0001\u00a8\u0001"+
- "\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001"+
- "\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab\u0001"+
- "\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001"+
- "\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae\u0001"+
- "\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af\u0001"+
- "\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1\u0001"+
- "\u00b1\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001"+
- "\u00b2\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001"+
- "\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5\u0001"+
- "\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001"+
- "\u00b6\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8\u0001"+
- "\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0004\u00b8\u05fd\b\u00b8\u000b"+
- "\u00b8\f\u00b8\u05fe\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"+
- "\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\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\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"+
+ "7\u00017\u00017\u00018\u00018\u00018\u00019\u00019\u00019\u0001:\u0001"+
+ ":\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001;\u0001<\u0001"+
+ "<\u0001=\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0001>\u0001"+
+ "?\u0001?\u0001?\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001A\u0001"+
+ "A\u0001A\u0001B\u0001B\u0001C\u0001C\u0001C\u0001C\u0001C\u0001C\u0001"+
+ "D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001"+
+ "F\u0001F\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001I\u0001I\u0001"+
+ "I\u0001J\u0001J\u0001K\u0001K\u0001K\u0001L\u0001L\u0001M\u0001M\u0001"+
+ "M\u0001N\u0001N\u0001O\u0001O\u0001P\u0001P\u0001Q\u0001Q\u0001R\u0001"+
+ "R\u0001S\u0001S\u0001T\u0001T\u0001U\u0001U\u0001U\u0001V\u0001V\u0001"+
+ "V\u0001V\u0001W\u0001W\u0001W\u0003W\u0420\bW\u0001W\u0005W\u0423\bW\n"+
+ "W\fW\u0426\tW\u0001W\u0001W\u0004W\u042a\bW\u000bW\fW\u042b\u0003W\u042e"+
+ "\bW\u0001X\u0001X\u0001X\u0003X\u0433\bX\u0001X\u0005X\u0436\bX\nX\fX"+
+ "\u0439\tX\u0001X\u0001X\u0004X\u043d\bX\u000bX\fX\u043e\u0003X\u0441\b"+
+ "X\u0001Y\u0001Y\u0001Y\u0001Y\u0001Y\u0001Z\u0001Z\u0001Z\u0001Z\u0001"+
+ "Z\u0001[\u0001[\u0005[\u044f\b[\n[\f[\u0452\t[\u0001[\u0001[\u0003[\u0456"+
+ "\b[\u0001[\u0004[\u0459\b[\u000b[\f[\u045a\u0003[\u045d\b[\u0001\\\u0001"+
+ "\\\u0004\\\u0461\b\\\u000b\\\f\\\u0462\u0001\\\u0001\\\u0001]\u0001]\u0001"+
+ "^\u0001^\u0001^\u0001^\u0001_\u0001_\u0001_\u0001_\u0001`\u0001`\u0001"+
+ "`\u0001`\u0001a\u0001a\u0001a\u0001a\u0001a\u0001b\u0001b\u0001b\u0001"+
+ "b\u0001b\u0001c\u0001c\u0001c\u0001c\u0001d\u0001d\u0001d\u0001d\u0001"+
+ "e\u0001e\u0001e\u0001e\u0001f\u0001f\u0001f\u0001f\u0001f\u0001g\u0001"+
+ "g\u0001g\u0001g\u0001h\u0001h\u0001h\u0001h\u0001i\u0001i\u0001i\u0001"+
+ "i\u0001j\u0001j\u0001j\u0001j\u0001k\u0001k\u0001k\u0001k\u0001l\u0001"+
+ "l\u0001l\u0001l\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001m\u0001"+
+ "m\u0001m\u0001n\u0001n\u0001n\u0003n\u04b4\bn\u0001o\u0004o\u04b7\bo\u000b"+
+ "o\fo\u04b8\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\u0001{\u0001{\u0001{\u0001"+
+ "{\u0001|\u0001|\u0001|\u0001|\u0003|\u04f0\b|\u0001}\u0001}\u0003}\u04f4"+
+ "\b}\u0001}\u0005}\u04f7\b}\n}\f}\u04fa\t}\u0001}\u0001}\u0003}\u04fe\b"+
+ "}\u0001}\u0004}\u0501\b}\u000b}\f}\u0502\u0003}\u0505\b}\u0001~\u0001"+
+ "~\u0004~\u0509\b~\u000b~\f~\u050a\u0001\u007f\u0001\u007f\u0001\u007f"+
+ "\u0001\u007f\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0080\u0001\u0081"+
+ "\u0001\u0081\u0001\u0081\u0001\u0081\u0001\u0082\u0001\u0082\u0001\u0082"+
+ "\u0001\u0082\u0001\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\u008c\u0001\u008c\u0001\u008c\u0001\u008c"+
+ "\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008d\u0001\u008e\u0001\u008e"+
+ "\u0001\u008e\u0001\u008e\u0001\u008f\u0001\u008f\u0001\u008f\u0001\u008f"+
+ "\u0001\u008f\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090\u0001\u0090"+
+ "\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0091\u0001\u0092"+
+ "\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0092\u0001\u0093\u0001\u0093"+
+ "\u0001\u0094\u0004\u0094\u0565\b\u0094\u000b\u0094\f\u0094\u0566\u0001"+
+ "\u0094\u0001\u0094\u0003\u0094\u056b\b\u0094\u0001\u0094\u0004\u0094\u056e"+
+ "\b\u0094\u000b\u0094\f\u0094\u056f\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\u0099"+
+ "\u0001\u0099\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009a\u0001\u009b"+
+ "\u0001\u009b\u0001\u009b\u0001\u009b\u0001\u009c\u0001\u009c\u0001\u009c"+
+ "\u0001\u009c\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009d\u0001\u009e"+
+ "\u0001\u009e\u0001\u009e\u0001\u009e\u0001\u009f\u0001\u009f\u0001\u009f"+
+ "\u0001\u009f\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a0\u0001\u00a1"+
+ "\u0001\u00a1\u0001\u00a1\u0001\u00a1\u0001\u00a2\u0001\u00a2\u0001\u00a2"+
+ "\u0001\u00a2\u0001\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\u00a7\u0001\u00a8\u0001\u00a8"+
+ "\u0001\u00a8\u0001\u00a8\u0001\u00a9\u0001\u00a9\u0001\u00a9\u0001\u00a9"+
+ "\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00aa\u0001\u00ab\u0001\u00ab"+
+ "\u0001\u00ab\u0001\u00ab\u0001\u00ac\u0001\u00ac\u0001\u00ac\u0001\u00ac"+
+ "\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ad\u0001\u00ae\u0001\u00ae"+
+ "\u0001\u00ae\u0001\u00ae\u0001\u00af\u0001\u00af\u0001\u00af\u0001\u00af"+
+ "\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b0\u0001\u00b1\u0001\u00b1"+
+ "\u0001\u00b1\u0001\u00b1\u0001\u00b2\u0001\u00b2\u0001\u00b2\u0001\u00b2"+
+ "\u0001\u00b2\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3\u0001\u00b3"+
+ "\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b4\u0001\u00b5\u0001\u00b5"+
+ "\u0001\u00b5\u0001\u00b5\u0001\u00b6\u0001\u00b6\u0001\u00b6\u0001\u00b6"+
+ "\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b7\u0001\u00b8"+
+ "\u0001\u00b8\u0001\u00b8\u0001\u00b8\u0001\u00b9\u0001\u00b9\u0001\u00b9"+
+ "\u0001\u00b9\u0001\u00b9\u0004\u00b9\u060d\b\u00b9\u000b\u00b9\f\u00b9"+
+ "\u060e\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00ba\u0001\u00bb\u0001"+
+ "\u00bb\u0001\u00bb\u0001\u00bb\u0001\u00bc\u0001\u00bc\u0001\u00bc\u0001"+
+ "\u00bc\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001\u00bd\u0001"+
+ "\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\u00c1\u0001\u00c2\u0001"+
+ "\u00c2\u0001\u00c2\u0001\u00c2\u0001\u00c3\u0001\u00c3\u0001\u00c3\u0001"+
+ "\u00c3\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c4\u0001\u00c5\u0001"+
+ "\u00c5\u0001\u00c5\u0001\u00c5\u0001\u00c6\u0001\u00c6\u0001\u00c6\u0001"+
+ "\u00c6\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\u00c7\u0001\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\u00ce\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\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\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"+
+ "\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00cf\u0001\u00d0\u0001"+
+ "\u00d0\u0001\u00d0\u0001\u00d0\u0001\u00d1\u0001\u00d1\u0001\u00d1\u0001"+
+ "\u00d1\u0001\u00d1\u0001\u00d1\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
+ "\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001\u00d2\u0001"+
+ "\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d3\u0001\u00d4\u0001\u00d4\u0001"+
+ "\u00d4\u0001\u00d4\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001\u00d5\u0001"+
+ "\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d6\u0001\u00d7\u0001\u00d7\u0001"+
+ "\u00d7\u0001\u00d7\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001\u00d8\u0001"+
+ "\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00d9\u0001\u00da\u0001\u00da\u0001"+
"\u00da\u0001\u00da\u0001\u00db\u0001\u00db\u0001\u00db\u0001\u00db\u0001"+
- "\u00db\u0001\u00db\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001\u00dc\u0001"+
- "\u00dc\u0001\u00dc\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001\u00dd\u0001"+
- "\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001\u00df\u0001"+
- "\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001"+
- "\u00e0\u0001\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001"+
- "\u00e1\u0001\u00e1\u0001\u00e2\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"+
- "\u00e6\u0001\u00e6\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001\u00e7\u0001"+
- "\u00e7\u0001\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+
- "\u00e8\u0001\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\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"+
+ "\u00dd\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00de\u0001\u00df\u0001"+
+ "\u00df\u0001\u00df\u0001\u00df\u0001\u00e0\u0001\u00e0\u0001\u00e0\u0001"+
+ "\u00e0\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001\u00e1\u0001"+
+ "\u00e1\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001\u00e2\u0001"+
+ "\u00e2\u0001\u00e3\u0001\u00e3\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\u00e7\u0001"+
+ "\u00e7\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001\u00e8\u0001"+
+ "\u00e8\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001\u00e9\u0001"+
"\u00e9\u0001\u00ea\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"+
- "\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\u00f2\u0001\u00f2\u0001"+
- "\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0002"+
- "\u02fa\u033f\u0000\u00f4\u0011\u0001\u0013\u0002\u0015\u0003\u0017\u0004"+
- "\u0019\u0005\u001b\u0006\u001d\u0007\u001f\b!\t#\n%\u000b\'\f)\r+\u000e"+
- "-\u000f/\u00101\u00113\u00125\u00137\u00149\u0015;\u0016=\u0017?\u0018"+
- "A\u0019C\u001aE\u001bG\u001cI\u001dK\u001eM\u0000O\u0000Q\u0000S\u0000"+
- "U\u0000W\u0000Y\u0000[\u0000]\u0000_\u0000a\u001fc e!g\"i#k$m%o&q\'s("+
- "u)w*y+{,}-\u007f.\u0081/\u00830\u00851\u00872\u00893\u008b4\u008d5\u008f"+
- "6\u00917\u00938\u00959\u0097:\u0099;\u009b<\u009d=\u009f>\u00a1?\u00a3"+
- "@\u00a5A\u00a7B\u00a9C\u00abD\u00adE\u00afF\u00b1G\u00b3H\u00b5I\u00b7"+
- "J\u00b9K\u00bb\u0000\u00bdL\u00bfM\u00c1N\u00c3O\u00c5P\u00c7\u0000\u00c9"+
- "Q\u00cbR\u00cdS\u00cfT\u00d1\u0000\u00d3\u0000\u00d5U\u00d7V\u00d9W\u00db"+
- "\u0000\u00dd\u0000\u00df\u0000\u00e1\u0000\u00e3\u0000\u00e5\u0000\u00e7"+
- "\u0000\u00e9X\u00eb\u0000\u00edY\u00ef\u0000\u00f1\u0000\u00f3Z\u00f5"+
- "[\u00f7\\\u00f9\u0000\u00fb\u0000\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\u0123\u0000\u0125\u0000\u0127a\u0129b\u012b"+
- "c\u012d\u0000\u012f\u0000\u0131\u0000\u0133\u0000\u0135\u0000\u0137d\u0139"+
- "\u0000\u013be\u013df\u013fg\u0141\u0000\u0143\u0000\u0145\u0000\u0147"+
- "\u0000\u0149\u0000\u014b\u0000\u014d\u0000\u014f\u0000\u0151\u0000\u0153"+
- "\u0000\u0155\u0000\u0157h\u0159i\u015bj\u015d\u0000\u015f\u0000\u0161"+
- "\u0000\u0163\u0000\u0165\u0000\u0167\u0000\u0169\u0000\u016b\u0000\u016d"+
- "k\u016fl\u0171m\u0173\u0000\u0175n\u0177o\u0179p\u017bq\u017d\u0000\u017f"+
- "\u0000\u0181r\u0183s\u0185t\u0187u\u0189\u0000\u018b\u0000\u018d\u0000"+
- "\u018f\u0000\u0191\u0000\u0193\u0000\u0195\u0000\u0197v\u0199w\u019bx"+
- "\u019d\u0000\u019f\u0000\u01a1\u0000\u01a3\u0000\u01a5y\u01a7z\u01a9{"+
- "\u01ab\u0000\u01ad|\u01af\u0000\u01b1\u0000\u01b3}\u01b5\u0000\u01b7\u0000"+
- "\u01b9\u0000\u01bb\u0000\u01bd\u0000\u01bf~\u01c1\u007f\u01c3\u0080\u01c5"+
- "\u0000\u01c7\u0000\u01c9\u0000\u01cb\u0081\u01cd\u0082\u01cf\u0083\u01d1"+
- "\u0000\u01d3\u0000\u01d5\u0000\u01d7\u0084\u01d9\u0085\u01db\u0086\u01dd"+
- "\u0000\u01df\u0000\u01e1\u0000\u01e3\u0000\u01e5\u0000\u01e7\u0000\u01e9"+
- "\u0000\u01eb\u0000\u01ed\u0000\u01ef\u0000\u01f1\u0000\u01f3\u0087\u01f5"+
- "\u0088\u01f7\u0089\u0011\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
+ "\u00eb\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\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\u00f2\u0001"+
+ "\u00f2\u0001\u00f2\u0001\u00f2\u0001\u00f3\u0001\u00f3\u0001\u00f3\u0001"+
+ "\u00f3\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0001\u00f4\u0002\u030a\u034f"+
+ "\u0000\u00f5\u0011\u0001\u0013\u0002\u0015\u0003\u0017\u0004\u0019\u0005"+
+ "\u001b\u0006\u001d\u0007\u001f\b!\t#\n%\u000b\'\f)\r+\u000e-\u000f/\u0010"+
+ "1\u00113\u00125\u00137\u00149\u0015;\u0016=\u0017?\u0018A\u0019C\u001a"+
+ "E\u001bG\u001cI\u001dK\u001eM\u001fO\u0000Q\u0000S\u0000U\u0000W\u0000"+
+ "Y\u0000[\u0000]\u0000_\u0000a\u0000c e!g\"i#k$m%o&q\'s(u)w*y+{,}-\u007f"+
+ ".\u0081/\u00830\u00851\u00872\u00893\u008b4\u008d5\u008f6\u00917\u0093"+
+ "8\u00959\u0097:\u0099;\u009b<\u009d=\u009f>\u00a1?\u00a3@\u00a5A\u00a7"+
+ "B\u00a9C\u00abD\u00adE\u00afF\u00b1G\u00b3H\u00b5I\u00b7J\u00b9K\u00bb"+
+ "L\u00bd\u0000\u00bfM\u00c1N\u00c3O\u00c5P\u00c7Q\u00c9\u0000\u00cbR\u00cd"+
+ "S\u00cfT\u00d1U\u00d3\u0000\u00d5\u0000\u00d7V\u00d9W\u00dbX\u00dd\u0000"+
+ "\u00df\u0000\u00e1\u0000\u00e3\u0000\u00e5\u0000\u00e7\u0000\u00e9\u0000"+
+ "\u00ebY\u00ed\u0000\u00efZ\u00f1\u0000\u00f3\u0000\u00f5[\u00f7\\\u00f9"+
+ "]\u00fb\u0000\u00fd\u0000\u00ff\u0000\u0101\u0000\u0103\u0000\u0105\u0000"+
+ "\u0107\u0000\u0109\u0000\u010b\u0000\u010d^\u010f_\u0111`\u0113a\u0115"+
+ "\u0000\u0117\u0000\u0119\u0000\u011b\u0000\u011d\u0000\u011f\u0000\u0121"+
+ "\u0000\u0123\u0000\u0125\u0000\u0127\u0000\u0129b\u012bc\u012dd\u012f"+
+ "\u0000\u0131\u0000\u0133\u0000\u0135\u0000\u0137\u0000\u0139e\u013b\u0000"+
+ "\u013df\u013fg\u0141h\u0143\u0000\u0145\u0000\u0147\u0000\u0149\u0000"+
+ "\u014b\u0000\u014d\u0000\u014f\u0000\u0151\u0000\u0153\u0000\u0155\u0000"+
+ "\u0157\u0000\u0159i\u015bj\u015dk\u015f\u0000\u0161\u0000\u0163\u0000"+
+ "\u0165\u0000\u0167\u0000\u0169\u0000\u016b\u0000\u016d\u0000\u016fl\u0171"+
+ "m\u0173n\u0175\u0000\u0177o\u0179p\u017bq\u017dr\u017f\u0000\u0181\u0000"+
+ "\u0183s\u0185t\u0187u\u0189v\u018b\u0000\u018d\u0000\u018f\u0000\u0191"+
+ "\u0000\u0193\u0000\u0195\u0000\u0197\u0000\u0199w\u019bx\u019dy\u019f"+
+ "\u0000\u01a1\u0000\u01a3\u0000\u01a5\u0000\u01a7z\u01a9{\u01ab|\u01ad"+
+ "\u0000\u01af}\u01b1\u0000\u01b3\u0000\u01b5~\u01b7\u0000\u01b9\u0000\u01bb"+
+ "\u0000\u01bd\u0000\u01bf\u0000\u01c1\u007f\u01c3\u0080\u01c5\u0081\u01c7"+
+ "\u0000\u01c9\u0000\u01cb\u0000\u01cd\u0082\u01cf\u0083\u01d1\u0084\u01d3"+
+ "\u0000\u01d5\u0000\u01d7\u0000\u01d9\u0085\u01db\u0086\u01dd\u0087\u01df"+
+ "\u0000\u01e1\u0000\u01e3\u0000\u01e5\u0000\u01e7\u0000\u01e9\u0000\u01eb"+
+ "\u0000\u01ed\u0000\u01ef\u0000\u01f1\u0000\u01f3\u0000\u01f5\u0088\u01f7"+
+ "\u0089\u01f9\u008a\u0011\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007"+
"\b\t\n\u000b\f\r\u000e\u000f\u0010$\u0002\u0000DDdd\u0002\u0000IIii\u0002"+
"\u0000SSss\u0002\u0000EEee\u0002\u0000CCcc\u0002\u0000TTtt\u0002\u0000"+
"RRrr\u0002\u0000OOoo\u0002\u0000PPpp\u0002\u0000NNnn\u0002\u0000HHhh\u0002"+
@@ -610,7 +623,7 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
"\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\u072a\u0000\u0011"+
+ "\u0000\t\n\r\r \"#,,//::<<>?\\\\||\u0002\u0000JJjj\u073a\u0000\u0011"+
"\u0001\u0000\u0000\u0000\u0000\u0013\u0001\u0000\u0000\u0000\u0000\u0015"+
"\u0001\u0000\u0000\u0000\u0000\u0017\u0001\u0000\u0000\u0000\u0000\u0019"+
"\u0001\u0000\u0000\u0000\u0000\u001b\u0001\u0000\u0000\u0000\u0000\u001d"+
@@ -623,8 +636,8 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
"\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\u0001K"+
- "\u0001\u0000\u0000\u0000\u0001a\u0001\u0000\u0000\u0000\u0001c\u0001\u0000"+
+ "\u0000G\u0001\u0000\u0000\u0000\u0000I\u0001\u0000\u0000\u0000\u0000K"+
+ "\u0001\u0000\u0000\u0000\u0001M\u0001\u0000\u0000\u0000\u0001c\u0001\u0000"+
"\u0000\u0000\u0001e\u0001\u0000\u0000\u0000\u0001g\u0001\u0000\u0000\u0000"+
"\u0001i\u0001\u0000\u0000\u0000\u0001k\u0001\u0000\u0000\u0000\u0001m"+
"\u0001\u0000\u0000\u0000\u0001o\u0001\u0000\u0000\u0000\u0001q\u0001\u0000"+
@@ -648,850 +661,858 @@ private boolean DEV_JOIN_RIGHT_sempred(RuleContext _localctx, int predIndex) {
"\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\u00c9\u0001"+
+ "\u0000\u0000\u0000\u0001\u00c5\u0001\u0000\u0000\u0000\u0001\u00c7\u0001"+
"\u0000\u0000\u0000\u0001\u00cb\u0001\u0000\u0000\u0000\u0001\u00cd\u0001"+
- "\u0000\u0000\u0000\u0001\u00cf\u0001\u0000\u0000\u0000\u0002\u00d1\u0001"+
+ "\u0000\u0000\u0000\u0001\u00cf\u0001\u0000\u0000\u0000\u0001\u00d1\u0001"+
"\u0000\u0000\u0000\u0002\u00d3\u0001\u0000\u0000\u0000\u0002\u00d5\u0001"+
"\u0000\u0000\u0000\u0002\u00d7\u0001\u0000\u0000\u0000\u0002\u00d9\u0001"+
- "\u0000\u0000\u0000\u0003\u00db\u0001\u0000\u0000\u0000\u0003\u00dd\u0001"+
+ "\u0000\u0000\u0000\u0002\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\u00e7\u0001\u0000\u0000\u0000\u0003\u00e9\u0001"+
- "\u0000\u0000\u0000\u0003\u00ed\u0001\u0000\u0000\u0000\u0003\u00ef\u0001"+
+ "\u0000\u0000\u0000\u0003\u00eb\u0001\u0000\u0000\u0000\u0003\u00ef\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\u0004\u00f9\u0001\u0000\u0000\u0000\u0004\u00fb\u0001"+
+ "\u0000\u0000\u0000\u0003\u00f9\u0001\u0000\u0000\u0000\u0004\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\u0105\u0001\u0000\u0000\u0000\u0004\u0107\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\u0004\u0111\u0001\u0000\u0000\u0000\u0004\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\u0005\u0129\u0001\u0000\u0000\u0000\u0005\u012b\u0001"+
- "\u0000\u0000\u0000\u0006\u012d\u0001\u0000\u0000\u0000\u0006\u012f\u0001"+
+ "\u0000\u0000\u0000\u0005\u012d\u0001\u0000\u0000\u0000\u0006\u012f\u0001"+
"\u0000\u0000\u0000\u0006\u0131\u0001\u0000\u0000\u0000\u0006\u0133\u0001"+
- "\u0000\u0000\u0000\u0006\u0137\u0001\u0000\u0000\u0000\u0006\u0139\u0001"+
+ "\u0000\u0000\u0000\u0006\u0135\u0001\u0000\u0000\u0000\u0006\u0139\u0001"+
"\u0000\u0000\u0000\u0006\u013b\u0001\u0000\u0000\u0000\u0006\u013d\u0001"+
- "\u0000\u0000\u0000\u0006\u013f\u0001\u0000\u0000\u0000\u0007\u0141\u0001"+
+ "\u0000\u0000\u0000\u0006\u013f\u0001\u0000\u0000\u0000\u0006\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\u0007\u0155\u0001"+
"\u0000\u0000\u0000\u0007\u0157\u0001\u0000\u0000\u0000\u0007\u0159\u0001"+
- "\u0000\u0000\u0000\u0007\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"+
- "\b\u0167\u0001\u0000\u0000\u0000\b\u0169\u0001\u0000\u0000\u0000\b\u016b"+
- "\u0001\u0000\u0000\u0000\b\u016d\u0001\u0000\u0000\u0000\b\u016f\u0001"+
- "\u0000\u0000\u0000\b\u0171\u0001\u0000\u0000\u0000\t\u0173\u0001\u0000"+
- "\u0000\u0000\t\u0175\u0001\u0000\u0000\u0000\t\u0177\u0001\u0000\u0000"+
- "\u0000\t\u0179\u0001\u0000\u0000\u0000\t\u017b\u0001\u0000\u0000\u0000"+
- "\n\u017d\u0001\u0000\u0000\u0000\n\u017f\u0001\u0000\u0000\u0000\n\u0181"+
- "\u0001\u0000\u0000\u0000\n\u0183\u0001\u0000\u0000\u0000\n\u0185\u0001"+
- "\u0000\u0000\u0000\n\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\u000b\u0191\u0001\u0000"+
- "\u0000\u0000\u000b\u0193\u0001\u0000\u0000\u0000\u000b\u0195\u0001\u0000"+
- "\u0000\u0000\u000b\u0197\u0001\u0000\u0000\u0000\u000b\u0199\u0001\u0000"+
- "\u0000\u0000\u000b\u019b\u0001\u0000\u0000\u0000\f\u019d\u0001\u0000\u0000"+
- "\u0000\f\u019f\u0001\u0000\u0000\u0000\f\u01a1\u0001\u0000\u0000\u0000"+
- "\f\u01a3\u0001\u0000\u0000\u0000\f\u01a5\u0001\u0000\u0000\u0000\f\u01a7"+
- "\u0001\u0000\u0000\u0000\f\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"+
- "\r\u01b9\u0001\u0000\u0000\u0000\r\u01bb\u0001\u0000\u0000\u0000\r\u01bd"+
- "\u0001\u0000\u0000\u0000\r\u01bf\u0001\u0000\u0000\u0000\r\u01c1\u0001"+
- "\u0000\u0000\u0000\r\u01c3\u0001\u0000\u0000\u0000\u000e\u01c5\u0001\u0000"+
- "\u0000\u0000\u000e\u01c7\u0001\u0000\u0000\u0000\u000e\u01c9\u0001\u0000"+
- "\u0000\u0000\u000e\u01cb\u0001\u0000\u0000\u0000\u000e\u01cd\u0001\u0000"+
- "\u0000\u0000\u000e\u01cf\u0001\u0000\u0000\u0000\u000f\u01d1\u0001\u0000"+
- "\u0000\u0000\u000f\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5\u0001\u0000"+
- "\u0000\u0000\u000f\u01d7\u0001\u0000\u0000\u0000\u000f\u01d9\u0001\u0000"+
- "\u0000\u0000\u000f\u01db\u0001\u0000\u0000\u0000\u000f\u01dd\u0001\u0000"+
- "\u0000\u0000\u000f\u01df\u0001\u0000\u0000\u0000\u000f\u01e1\u0001\u0000"+
- "\u0000\u0000\u000f\u01e3\u0001\u0000\u0000\u0000\u0010\u01e5\u0001\u0000"+
- "\u0000\u0000\u0010\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9\u0001\u0000"+
- "\u0000\u0000\u0010\u01eb\u0001\u0000\u0000\u0000\u0010\u01ed\u0001\u0000"+
- "\u0000\u0000\u0010\u01ef\u0001\u0000\u0000\u0000\u0010\u01f1\u0001\u0000"+
- "\u0000\u0000\u0010\u01f3\u0001\u0000\u0000\u0000\u0010\u01f5\u0001\u0000"+
- "\u0000\u0000\u0010\u01f7\u0001\u0000\u0000\u0000\u0011\u01f9\u0001\u0000"+
- "\u0000\u0000\u0013\u0203\u0001\u0000\u0000\u0000\u0015\u020a\u0001\u0000"+
- "\u0000\u0000\u0017\u0213\u0001\u0000\u0000\u0000\u0019\u021a\u0001\u0000"+
- "\u0000\u0000\u001b\u0224\u0001\u0000\u0000\u0000\u001d\u022b\u0001\u0000"+
- "\u0000\u0000\u001f\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\u0000/\u0272\u0001\u0000\u0000"+
- "\u00001\u027a\u0001\u0000\u0000\u00003\u0283\u0001\u0000\u0000\u00005"+
- "\u0292\u0001\u0000\u0000\u00007\u02a1\u0001\u0000\u0000\u00009\u02ad\u0001"+
- "\u0000\u0000\u0000;\u02b8\u0001\u0000\u0000\u0000=\u02c2\u0001\u0000\u0000"+
- "\u0000?\u02ca\u0001\u0000\u0000\u0000A\u02d2\u0001\u0000\u0000\u0000C"+
- "\u02dc\u0001\u0000\u0000\u0000E\u02e2\u0001\u0000\u0000\u0000G\u02f3\u0001"+
- "\u0000\u0000\u0000I\u0303\u0001\u0000\u0000\u0000K\u0309\u0001\u0000\u0000"+
- "\u0000M\u030d\u0001\u0000\u0000\u0000O\u030f\u0001\u0000\u0000\u0000Q"+
- "\u0311\u0001\u0000\u0000\u0000S\u0314\u0001\u0000\u0000\u0000U\u0316\u0001"+
- "\u0000\u0000\u0000W\u031f\u0001\u0000\u0000\u0000Y\u0321\u0001\u0000\u0000"+
- "\u0000[\u0326\u0001\u0000\u0000\u0000]\u0328\u0001\u0000\u0000\u0000_"+
- "\u032d\u0001\u0000\u0000\u0000a\u034c\u0001\u0000\u0000\u0000c\u034f\u0001"+
- "\u0000\u0000\u0000e\u037d\u0001\u0000\u0000\u0000g\u037f\u0001\u0000\u0000"+
- "\u0000i\u0383\u0001\u0000\u0000\u0000k\u0386\u0001\u0000\u0000\u0000m"+
- "\u038a\u0001\u0000\u0000\u0000o\u038c\u0001\u0000\u0000\u0000q\u038f\u0001"+
- "\u0000\u0000\u0000s\u0392\u0001\u0000\u0000\u0000u\u0394\u0001\u0000\u0000"+
- "\u0000w\u0396\u0001\u0000\u0000\u0000y\u039b\u0001\u0000\u0000\u0000{"+
- "\u039d\u0001\u0000\u0000\u0000}\u03a3\u0001\u0000\u0000\u0000\u007f\u03a9"+
- "\u0001\u0000\u0000\u0000\u0081\u03ac\u0001\u0000\u0000\u0000\u0083\u03af"+
- "\u0001\u0000\u0000\u0000\u0085\u03b4\u0001\u0000\u0000\u0000\u0087\u03b9"+
- "\u0001\u0000\u0000\u0000\u0089\u03bb\u0001\u0000\u0000\u0000\u008b\u03bf"+
- "\u0001\u0000\u0000\u0000\u008d\u03c4\u0001\u0000\u0000\u0000\u008f\u03ca"+
- "\u0001\u0000\u0000\u0000\u0091\u03cd\u0001\u0000\u0000\u0000\u0093\u03d0"+
- "\u0001\u0000\u0000\u0000\u0095\u03d2\u0001\u0000\u0000\u0000\u0097\u03d8"+
- "\u0001\u0000\u0000\u0000\u0099\u03da\u0001\u0000\u0000\u0000\u009b\u03df"+
- "\u0001\u0000\u0000\u0000\u009d\u03e4\u0001\u0000\u0000\u0000\u009f\u03e7"+
- "\u0001\u0000\u0000\u0000\u00a1\u03ea\u0001\u0000\u0000\u0000\u00a3\u03ed"+
- "\u0001\u0000\u0000\u0000\u00a5\u03ef\u0001\u0000\u0000\u0000\u00a7\u03f2"+
- "\u0001\u0000\u0000\u0000\u00a9\u03f4\u0001\u0000\u0000\u0000\u00ab\u03f7"+
- "\u0001\u0000\u0000\u0000\u00ad\u03f9\u0001\u0000\u0000\u0000\u00af\u03fb"+
- "\u0001\u0000\u0000\u0000\u00b1\u03fd\u0001\u0000\u0000\u0000\u00b3\u03ff"+
- "\u0001\u0000\u0000\u0000\u00b5\u0401\u0001\u0000\u0000\u0000\u00b7\u0403"+
- "\u0001\u0000\u0000\u0000\u00b9\u0405\u0001\u0000\u0000\u0000\u00bb\u0408"+
- "\u0001\u0000\u0000\u0000\u00bd\u041d\u0001\u0000\u0000\u0000\u00bf\u0430"+
- "\u0001\u0000\u0000\u0000\u00c1\u0432\u0001\u0000\u0000\u0000\u00c3\u0437"+
- "\u0001\u0000\u0000\u0000\u00c5\u044c\u0001\u0000\u0000\u0000\u00c7\u044e"+
- "\u0001\u0000\u0000\u0000\u00c9\u0456\u0001\u0000\u0000\u0000\u00cb\u0458"+
- "\u0001\u0000\u0000\u0000\u00cd\u045c\u0001\u0000\u0000\u0000\u00cf\u0460"+
- "\u0001\u0000\u0000\u0000\u00d1\u0464\u0001\u0000\u0000\u0000\u00d3\u0469"+
- "\u0001\u0000\u0000\u0000\u00d5\u046e\u0001\u0000\u0000\u0000\u00d7\u0472"+
- "\u0001\u0000\u0000\u0000\u00d9\u0476\u0001\u0000\u0000\u0000\u00db\u047a"+
- "\u0001\u0000\u0000\u0000\u00dd\u047f\u0001\u0000\u0000\u0000\u00df\u0483"+
- "\u0001\u0000\u0000\u0000\u00e1\u0487\u0001\u0000\u0000\u0000\u00e3\u048b"+
- "\u0001\u0000\u0000\u0000\u00e5\u048f\u0001\u0000\u0000\u0000\u00e7\u0493"+
- "\u0001\u0000\u0000\u0000\u00e9\u0497\u0001\u0000\u0000\u0000\u00eb\u04a3"+
- "\u0001\u0000\u0000\u0000\u00ed\u04a6\u0001\u0000\u0000\u0000\u00ef\u04aa"+
- "\u0001\u0000\u0000\u0000\u00f1\u04ae\u0001\u0000\u0000\u0000\u00f3\u04b2"+
- "\u0001\u0000\u0000\u0000\u00f5\u04b6\u0001\u0000\u0000\u0000\u00f7\u04ba"+
- "\u0001\u0000\u0000\u0000\u00f9\u04be\u0001\u0000\u0000\u0000\u00fb\u04c3"+
- "\u0001\u0000\u0000\u0000\u00fd\u04c7\u0001\u0000\u0000\u0000\u00ff\u04cb"+
- "\u0001\u0000\u0000\u0000\u0101\u04cf\u0001\u0000\u0000\u0000\u0103\u04d3"+
- "\u0001\u0000\u0000\u0000\u0105\u04d7\u0001\u0000\u0000\u0000\u0107\u04df"+
- "\u0001\u0000\u0000\u0000\u0109\u04f4\u0001\u0000\u0000\u0000\u010b\u04f8"+
- "\u0001\u0000\u0000\u0000\u010d\u04fc\u0001\u0000\u0000\u0000\u010f\u0500"+
- "\u0001\u0000\u0000\u0000\u0111\u0504\u0001\u0000\u0000\u0000\u0113\u0508"+
- "\u0001\u0000\u0000\u0000\u0115\u050d\u0001\u0000\u0000\u0000\u0117\u0511"+
- "\u0001\u0000\u0000\u0000\u0119\u0515\u0001\u0000\u0000\u0000\u011b\u0519"+
- "\u0001\u0000\u0000\u0000\u011d\u051d\u0001\u0000\u0000\u0000\u011f\u0521"+
- "\u0001\u0000\u0000\u0000\u0121\u0525\u0001\u0000\u0000\u0000\u0123\u0529"+
- "\u0001\u0000\u0000\u0000\u0125\u052d\u0001\u0000\u0000\u0000\u0127\u0531"+
- "\u0001\u0000\u0000\u0000\u0129\u0535\u0001\u0000\u0000\u0000\u012b\u0539"+
- "\u0001\u0000\u0000\u0000\u012d\u053d\u0001\u0000\u0000\u0000\u012f\u0542"+
- "\u0001\u0000\u0000\u0000\u0131\u0547\u0001\u0000\u0000\u0000\u0133\u054c"+
- "\u0001\u0000\u0000\u0000\u0135\u0551\u0001\u0000\u0000\u0000\u0137\u055a"+
- "\u0001\u0000\u0000\u0000\u0139\u0561\u0001\u0000\u0000\u0000\u013b\u0565"+
- "\u0001\u0000\u0000\u0000\u013d\u0569\u0001\u0000\u0000\u0000\u013f\u056d"+
- "\u0001\u0000\u0000\u0000\u0141\u0571\u0001\u0000\u0000\u0000\u0143\u0577"+
- "\u0001\u0000\u0000\u0000\u0145\u057b\u0001\u0000\u0000\u0000\u0147\u057f"+
- "\u0001\u0000\u0000\u0000\u0149\u0583\u0001\u0000\u0000\u0000\u014b\u0587"+
- "\u0001\u0000\u0000\u0000\u014d\u058b\u0001\u0000\u0000\u0000\u014f\u058f"+
- "\u0001\u0000\u0000\u0000\u0151\u0593\u0001\u0000\u0000\u0000\u0153\u0597"+
- "\u0001\u0000\u0000\u0000\u0155\u059b\u0001\u0000\u0000\u0000\u0157\u059f"+
- "\u0001\u0000\u0000\u0000\u0159\u05a3\u0001\u0000\u0000\u0000\u015b\u05a7"+
- "\u0001\u0000\u0000\u0000\u015d\u05ab\u0001\u0000\u0000\u0000\u015f\u05b0"+
- "\u0001\u0000\u0000\u0000\u0161\u05b4\u0001\u0000\u0000\u0000\u0163\u05b8"+
- "\u0001\u0000\u0000\u0000\u0165\u05bc\u0001\u0000\u0000\u0000\u0167\u05c0"+
- "\u0001\u0000\u0000\u0000\u0169\u05c4\u0001\u0000\u0000\u0000\u016b\u05c8"+
- "\u0001\u0000\u0000\u0000\u016d\u05cc\u0001\u0000\u0000\u0000\u016f\u05d0"+
- "\u0001\u0000\u0000\u0000\u0171\u05d4\u0001\u0000\u0000\u0000\u0173\u05d8"+
- "\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\u05fc\u0001\u0000\u0000\u0000\u0183\u0600"+
- "\u0001\u0000\u0000\u0000\u0185\u0604\u0001\u0000\u0000\u0000\u0187\u0608"+
- "\u0001\u0000\u0000\u0000\u0189\u060c\u0001\u0000\u0000\u0000\u018b\u0611"+
- "\u0001\u0000\u0000\u0000\u018d\u0615\u0001\u0000\u0000\u0000\u018f\u0619"+
- "\u0001\u0000\u0000\u0000\u0191\u061d\u0001\u0000\u0000\u0000\u0193\u0622"+
- "\u0001\u0000\u0000\u0000\u0195\u0626\u0001\u0000\u0000\u0000\u0197\u062a"+
- "\u0001\u0000\u0000\u0000\u0199\u062e\u0001\u0000\u0000\u0000\u019b\u0632"+
- "\u0001\u0000\u0000\u0000\u019d\u0636\u0001\u0000\u0000\u0000\u019f\u063c"+
- "\u0001\u0000\u0000\u0000\u01a1\u0640\u0001\u0000\u0000\u0000\u01a3\u0644"+
- "\u0001\u0000\u0000\u0000\u01a5\u0648\u0001\u0000\u0000\u0000\u01a7\u064c"+
- "\u0001\u0000\u0000\u0000\u01a9\u0650\u0001\u0000\u0000\u0000\u01ab\u0654"+
- "\u0001\u0000\u0000\u0000\u01ad\u0659\u0001\u0000\u0000\u0000\u01af\u065e"+
- "\u0001\u0000\u0000\u0000\u01b1\u0662\u0001\u0000\u0000\u0000\u01b3\u0668"+
- "\u0001\u0000\u0000\u0000\u01b5\u0671\u0001\u0000\u0000\u0000\u01b7\u0675"+
- "\u0001\u0000\u0000\u0000\u01b9\u0679\u0001\u0000\u0000\u0000\u01bb\u067d"+
- "\u0001\u0000\u0000\u0000\u01bd\u0681\u0001\u0000\u0000\u0000\u01bf\u0685"+
- "\u0001\u0000\u0000\u0000\u01c1\u0689\u0001\u0000\u0000\u0000\u01c3\u068d"+
- "\u0001\u0000\u0000\u0000\u01c5\u0691\u0001\u0000\u0000\u0000\u01c7\u0696"+
- "\u0001\u0000\u0000\u0000\u01c9\u069c\u0001\u0000\u0000\u0000\u01cb\u06a2"+
- "\u0001\u0000\u0000\u0000\u01cd\u06a6\u0001\u0000\u0000\u0000\u01cf\u06aa"+
- "\u0001\u0000\u0000\u0000\u01d1\u06ae\u0001\u0000\u0000\u0000\u01d3\u06b4"+
- "\u0001\u0000\u0000\u0000\u01d5\u06ba\u0001\u0000\u0000\u0000\u01d7\u06c0"+
- "\u0001\u0000\u0000\u0000\u01d9\u06c4\u0001\u0000\u0000\u0000\u01db\u06c8"+
- "\u0001\u0000\u0000\u0000\u01dd\u06cc\u0001\u0000\u0000\u0000\u01df\u06d2"+
- "\u0001\u0000\u0000\u0000\u01e1\u06d8\u0001\u0000\u0000\u0000\u01e3\u06de"+
- "\u0001\u0000\u0000\u0000\u01e5\u06e3\u0001\u0000\u0000\u0000\u01e7\u06e8"+
- "\u0001\u0000\u0000\u0000\u01e9\u06ec\u0001\u0000\u0000\u0000\u01eb\u06f0"+
- "\u0001\u0000\u0000\u0000\u01ed\u06f4\u0001\u0000\u0000\u0000\u01ef\u06f8"+
- "\u0001\u0000\u0000\u0000\u01f1\u06fc\u0001\u0000\u0000\u0000\u01f3\u0700"+
- "\u0001\u0000\u0000\u0000\u01f5\u0704\u0001\u0000\u0000\u0000\u01f7\u0708"+
- "\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\u0012"+
- "\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\u0014\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\u0016\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\u0018\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\u001a\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\u001c\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\u001e\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\u0271.\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\u02790\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\u02822\u0001\u0000\u0000\u0000\u0283"+
- "\u0284\u0007\u0004\u0000\u0000\u0284\u0285\u0007\n\u0000\u0000\u0285\u0286"+
- "\u0007\f\u0000\u0000\u0286\u0287\u0007\t\u0000\u0000\u0287\u0288\u0007"+
- "\u0011\u0000\u0000\u0288\u0289\u0007\u0003\u0000\u0000\u0289\u028a\u0005"+
- "_\u0000\u0000\u028a\u028b\u0007\b\u0000\u0000\u028b\u028c\u0007\u0007"+
- "\u0000\u0000\u028c\u028d\u0007\u0001\u0000\u0000\u028d\u028e\u0007\t\u0000"+
- "\u0000\u028e\u028f\u0007\u0005\u0000\u0000\u028f\u0290\u0001\u0000\u0000"+
- "\u0000\u0290\u0291\u0006\u0011\t\u0000\u02914\u0001\u0000\u0000\u0000"+
- "\u0292\u0293\u0004\u0012\u0000\u0000\u0293\u0294\u0007\u0001\u0000\u0000"+
- "\u0294\u0295\u0007\t\u0000\u0000\u0295\u0296\u0007\r\u0000\u0000\u0296"+
- "\u0297\u0007\u0001\u0000\u0000\u0297\u0298\u0007\t\u0000\u0000\u0298\u0299"+
- "\u0007\u0003\u0000\u0000\u0299\u029a\u0007\u0002\u0000\u0000\u029a\u029b"+
- "\u0007\u0005\u0000\u0000\u029b\u029c\u0007\f\u0000\u0000\u029c\u029d\u0007"+
- "\u0005\u0000\u0000\u029d\u029e\u0007\u0002\u0000\u0000\u029e\u029f\u0001"+
- "\u0000\u0000\u0000\u029f\u02a0\u0006\u0012\u0000\u0000\u02a06\u0001\u0000"+
- "\u0000\u0000\u02a1\u02a2\u0004\u0013\u0001\u0000\u02a2\u02a3\u0007\r\u0000"+
- "\u0000\u02a3\u02a4\u0007\u0007\u0000\u0000\u02a4\u02a5\u0007\u0007\u0000"+
- "\u0000\u02a5\u02a6\u0007\u0012\u0000\u0000\u02a6\u02a7\u0007\u0014\u0000"+
- "\u0000\u02a7\u02a8\u0007\b\u0000\u0000\u02a8\u02a9\u0005_\u0000\u0000"+
- "\u02a9\u02aa\u0005\u8001\uf414\u0000\u0000\u02aa\u02ab\u0001\u0000\u0000"+
- "\u0000\u02ab\u02ac\u0006\u0013\n\u0000\u02ac8\u0001\u0000\u0000\u0000"+
- "\u02ad\u02ae\u0004\u0014\u0002\u0000\u02ae\u02af\u0007\u0010\u0000\u0000"+
- "\u02af\u02b0\u0007\u0003\u0000\u0000\u02b0\u02b1\u0007\u0005\u0000\u0000"+
- "\u02b1\u02b2\u0007\u0006\u0000\u0000\u02b2\u02b3\u0007\u0001\u0000\u0000"+
- "\u02b3\u02b4\u0007\u0004\u0000\u0000\u02b4\u02b5\u0007\u0002\u0000\u0000"+
- "\u02b5\u02b6\u0001\u0000\u0000\u0000\u02b6\u02b7\u0006\u0014\u000b\u0000"+
- "\u02b7:\u0001\u0000\u0000\u0000\u02b8\u02b9\u0004\u0015\u0003\u0000\u02b9"+
- "\u02ba\u0007\u0006\u0000\u0000\u02ba\u02bb\u0007\u0003\u0000\u0000\u02bb"+
- "\u02bc\u0007\u0006\u0000\u0000\u02bc\u02bd\u0007\f\u0000\u0000\u02bd\u02be"+
- "\u0007\t\u0000\u0000\u02be\u02bf\u0007\u0012\u0000\u0000\u02bf\u02c0\u0001"+
- "\u0000\u0000\u0000\u02c0\u02c1\u0006\u0015\u0000\u0000\u02c1<\u0001\u0000"+
- "\u0000\u0000\u02c2\u02c3\u0004\u0016\u0004\u0000\u02c3\u02c4\u0007\u000f"+
- "\u0000\u0000\u02c4\u02c5\u0007\u0014\u0000\u0000\u02c5\u02c6\u0007\r\u0000"+
- "\u0000\u02c6\u02c7\u0007\r\u0000\u0000\u02c7\u02c8\u0001\u0000\u0000\u0000"+
- "\u02c8\u02c9\u0006\u0016\b\u0000\u02c9>\u0001\u0000\u0000\u0000\u02ca"+
- "\u02cb\u0004\u0017\u0005\u0000\u02cb\u02cc\u0007\r\u0000\u0000\u02cc\u02cd"+
- "\u0007\u0003\u0000\u0000\u02cd\u02ce\u0007\u000f\u0000\u0000\u02ce\u02cf"+
- "\u0007\u0005\u0000\u0000\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d1"+
- "\u0006\u0017\b\u0000\u02d1@\u0001\u0000\u0000\u0000\u02d2\u02d3\u0004"+
- "\u0018\u0006\u0000\u02d3\u02d4\u0007\u0006\u0000\u0000\u02d4\u02d5\u0007"+
- "\u0001\u0000\u0000\u02d5\u02d6\u0007\u0011\u0000\u0000\u02d6\u02d7\u0007"+
- "\n\u0000\u0000\u02d7\u02d8\u0007\u0005\u0000\u0000\u02d8\u02d9\u0001\u0000"+
- "\u0000\u0000\u02d9\u02da\u0006\u0018\b\u0000\u02daB\u0001\u0000\u0000"+
- "\u0000\u02db\u02dd\b\u0015\u0000\u0000\u02dc\u02db\u0001\u0000\u0000\u0000"+
- "\u02dd\u02de\u0001\u0000\u0000\u0000\u02de\u02dc\u0001\u0000\u0000\u0000"+
- "\u02de\u02df\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000"+
- "\u02e0\u02e1\u0006\u0019\u0000\u0000\u02e1D\u0001\u0000\u0000\u0000\u02e2"+
- "\u02e3\u0005/\u0000\u0000\u02e3\u02e4\u0005/\u0000\u0000\u02e4\u02e8\u0001"+
- "\u0000\u0000\u0000\u02e5\u02e7\b\u0016\u0000\u0000\u02e6\u02e5\u0001\u0000"+
- "\u0000\u0000\u02e7\u02ea\u0001\u0000\u0000\u0000\u02e8\u02e6\u0001\u0000"+
- "\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000\u0000\u02e9\u02ec\u0001\u0000"+
- "\u0000\u0000\u02ea\u02e8\u0001\u0000\u0000\u0000\u02eb\u02ed\u0005\r\u0000"+
- "\u0000\u02ec\u02eb\u0001\u0000\u0000\u0000\u02ec\u02ed\u0001\u0000\u0000"+
- "\u0000\u02ed\u02ef\u0001\u0000\u0000\u0000\u02ee\u02f0\u0005\n\u0000\u0000"+
- "\u02ef\u02ee\u0001\u0000\u0000\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000"+
- "\u02f0\u02f1\u0001\u0000\u0000\u0000\u02f1\u02f2\u0006\u001a\f\u0000\u02f2"+
- "F\u0001\u0000\u0000\u0000\u02f3\u02f4\u0005/\u0000\u0000\u02f4\u02f5\u0005"+
- "*\u0000\u0000\u02f5\u02fa\u0001\u0000\u0000\u0000\u02f6\u02f9\u0003G\u001b"+
- "\u0000\u02f7\u02f9\t\u0000\u0000\u0000\u02f8\u02f6\u0001\u0000\u0000\u0000"+
- "\u02f8\u02f7\u0001\u0000\u0000\u0000\u02f9\u02fc\u0001\u0000\u0000\u0000"+
- "\u02fa\u02fb\u0001\u0000\u0000\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000"+
- "\u02fb\u02fd\u0001\u0000\u0000\u0000\u02fc\u02fa\u0001\u0000\u0000\u0000"+
- "\u02fd\u02fe\u0005*\u0000\u0000\u02fe\u02ff\u0005/\u0000\u0000\u02ff\u0300"+
- "\u0001\u0000\u0000\u0000\u0300\u0301\u0006\u001b\f\u0000\u0301H\u0001"+
- "\u0000\u0000\u0000\u0302\u0304\u0007\u0017\u0000\u0000\u0303\u0302\u0001"+
- "\u0000\u0000\u0000\u0304\u0305\u0001\u0000\u0000\u0000\u0305\u0303\u0001"+
- "\u0000\u0000\u0000\u0305\u0306\u0001\u0000\u0000\u0000\u0306\u0307\u0001"+
- "\u0000\u0000\u0000\u0307\u0308\u0006\u001c\f\u0000\u0308J\u0001\u0000"+
- "\u0000\u0000\u0309\u030a\u0005|\u0000\u0000\u030a\u030b\u0001\u0000\u0000"+
- "\u0000\u030b\u030c\u0006\u001d\r\u0000\u030cL\u0001\u0000\u0000\u0000"+
- "\u030d\u030e\u0007\u0018\u0000\u0000\u030eN\u0001\u0000\u0000\u0000\u030f"+
- "\u0310\u0007\u0019\u0000\u0000\u0310P\u0001\u0000\u0000\u0000\u0311\u0312"+
- "\u0005\\\u0000\u0000\u0312\u0313\u0007\u001a\u0000\u0000\u0313R\u0001"+
- "\u0000\u0000\u0000\u0314\u0315\b\u001b\u0000\u0000\u0315T\u0001\u0000"+
- "\u0000\u0000\u0316\u0318\u0007\u0003\u0000\u0000\u0317\u0319\u0007\u001c"+
- "\u0000\u0000\u0318\u0317\u0001\u0000\u0000\u0000\u0318\u0319\u0001\u0000"+
- "\u0000\u0000\u0319\u031b\u0001\u0000\u0000\u0000\u031a\u031c\u0003M\u001e"+
- "\u0000\u031b\u031a\u0001\u0000\u0000\u0000\u031c\u031d\u0001\u0000\u0000"+
- "\u0000\u031d\u031b\u0001\u0000\u0000\u0000\u031d\u031e\u0001\u0000\u0000"+
- "\u0000\u031eV\u0001\u0000\u0000\u0000\u031f\u0320\u0005@\u0000\u0000\u0320"+
- "X\u0001\u0000\u0000\u0000\u0321\u0322\u0005`\u0000\u0000\u0322Z\u0001"+
- "\u0000\u0000\u0000\u0323\u0327\b\u001d\u0000\u0000\u0324\u0325\u0005`"+
- "\u0000\u0000\u0325\u0327\u0005`\u0000\u0000\u0326\u0323\u0001\u0000\u0000"+
- "\u0000\u0326\u0324\u0001\u0000\u0000\u0000\u0327\\\u0001\u0000\u0000\u0000"+
- "\u0328\u0329\u0005_\u0000\u0000\u0329^\u0001\u0000\u0000\u0000\u032a\u032e"+
- "\u0003O\u001f\u0000\u032b\u032e\u0003M\u001e\u0000\u032c\u032e\u0003]"+
- "&\u0000\u032d\u032a\u0001\u0000\u0000\u0000\u032d\u032b\u0001\u0000\u0000"+
- "\u0000\u032d\u032c\u0001\u0000\u0000\u0000\u032e`\u0001\u0000\u0000\u0000"+
- "\u032f\u0334\u0005\"\u0000\u0000\u0330\u0333\u0003Q \u0000\u0331\u0333"+
- "\u0003S!\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0332\u0331\u0001\u0000"+
- "\u0000\u0000\u0333\u0336\u0001\u0000\u0000\u0000\u0334\u0332\u0001\u0000"+
- "\u0000\u0000\u0334\u0335\u0001\u0000\u0000\u0000\u0335\u0337\u0001\u0000"+
- "\u0000\u0000\u0336\u0334\u0001\u0000\u0000\u0000\u0337\u034d\u0005\"\u0000"+
- "\u0000\u0338\u0339\u0005\"\u0000\u0000\u0339\u033a\u0005\"\u0000\u0000"+
- "\u033a\u033b\u0005\"\u0000\u0000\u033b\u033f\u0001\u0000\u0000\u0000\u033c"+
- "\u033e\b\u0016\u0000\u0000\u033d\u033c\u0001\u0000\u0000\u0000\u033e\u0341"+
- "\u0001\u0000\u0000\u0000\u033f\u0340\u0001\u0000\u0000\u0000\u033f\u033d"+
- "\u0001\u0000\u0000\u0000\u0340\u0342\u0001\u0000\u0000\u0000\u0341\u033f"+
- "\u0001\u0000\u0000\u0000\u0342\u0343\u0005\"\u0000\u0000\u0343\u0344\u0005"+
- "\"\u0000\u0000\u0344\u0345\u0005\"\u0000\u0000\u0345\u0347\u0001\u0000"+
- "\u0000\u0000\u0346\u0348\u0005\"\u0000\u0000\u0347\u0346\u0001\u0000\u0000"+
- "\u0000\u0347\u0348\u0001\u0000\u0000\u0000\u0348\u034a\u0001\u0000\u0000"+
- "\u0000\u0349\u034b\u0005\"\u0000\u0000\u034a\u0349\u0001\u0000\u0000\u0000"+
- "\u034a\u034b\u0001\u0000\u0000\u0000\u034b\u034d\u0001\u0000\u0000\u0000"+
- "\u034c\u032f\u0001\u0000\u0000\u0000\u034c\u0338\u0001\u0000\u0000\u0000"+
- "\u034db\u0001\u0000\u0000\u0000\u034e\u0350\u0003M\u001e\u0000\u034f\u034e"+
- "\u0001\u0000\u0000\u0000\u0350\u0351\u0001\u0000\u0000\u0000\u0351\u034f"+
- "\u0001\u0000\u0000\u0000\u0351\u0352\u0001\u0000\u0000\u0000\u0352d\u0001"+
- "\u0000\u0000\u0000\u0353\u0355\u0003M\u001e\u0000\u0354\u0353\u0001\u0000"+
- "\u0000\u0000\u0355\u0356\u0001\u0000\u0000\u0000\u0356\u0354\u0001\u0000"+
- "\u0000\u0000\u0356\u0357\u0001\u0000\u0000\u0000\u0357\u0358\u0001\u0000"+
- "\u0000\u0000\u0358\u035c\u0003y4\u0000\u0359\u035b\u0003M\u001e\u0000"+
- "\u035a\u0359\u0001\u0000\u0000\u0000\u035b\u035e\u0001\u0000\u0000\u0000"+
- "\u035c\u035a\u0001\u0000\u0000\u0000\u035c\u035d\u0001\u0000\u0000\u0000"+
- "\u035d\u037e\u0001\u0000\u0000\u0000\u035e\u035c\u0001\u0000\u0000\u0000"+
- "\u035f\u0361\u0003y4\u0000\u0360\u0362\u0003M\u001e\u0000\u0361\u0360"+
- "\u0001\u0000\u0000\u0000\u0362\u0363\u0001\u0000\u0000\u0000\u0363\u0361"+
- "\u0001\u0000\u0000\u0000\u0363\u0364\u0001\u0000\u0000\u0000\u0364\u037e"+
- "\u0001\u0000\u0000\u0000\u0365\u0367\u0003M\u001e\u0000\u0366\u0365\u0001"+
- "\u0000\u0000\u0000\u0367\u0368\u0001\u0000\u0000\u0000\u0368\u0366\u0001"+
- "\u0000\u0000\u0000\u0368\u0369\u0001\u0000\u0000\u0000\u0369\u0371\u0001"+
- "\u0000\u0000\u0000\u036a\u036e\u0003y4\u0000\u036b\u036d\u0003M\u001e"+
- "\u0000\u036c\u036b\u0001\u0000\u0000\u0000\u036d\u0370\u0001\u0000\u0000"+
- "\u0000\u036e\u036c\u0001\u0000\u0000\u0000\u036e\u036f\u0001\u0000\u0000"+
- "\u0000\u036f\u0372\u0001\u0000\u0000\u0000\u0370\u036e\u0001\u0000\u0000"+
- "\u0000\u0371\u036a\u0001\u0000\u0000\u0000\u0371\u0372\u0001\u0000\u0000"+
- "\u0000\u0372\u0373\u0001\u0000\u0000\u0000\u0373\u0374\u0003U\"\u0000"+
- "\u0374\u037e\u0001\u0000\u0000\u0000\u0375\u0377\u0003y4\u0000\u0376\u0378"+
- "\u0003M\u001e\u0000\u0377\u0376\u0001\u0000\u0000\u0000\u0378\u0379\u0001"+
- "\u0000\u0000\u0000\u0379\u0377\u0001\u0000\u0000\u0000\u0379\u037a\u0001"+
- "\u0000\u0000\u0000\u037a\u037b\u0001\u0000\u0000\u0000\u037b\u037c\u0003"+
- "U\"\u0000\u037c\u037e\u0001\u0000\u0000\u0000\u037d\u0354\u0001\u0000"+
- "\u0000\u0000\u037d\u035f\u0001\u0000\u0000\u0000\u037d\u0366\u0001\u0000"+
- "\u0000\u0000\u037d\u0375\u0001\u0000\u0000\u0000\u037ef\u0001\u0000\u0000"+
- "\u0000\u037f\u0380\u0007\f\u0000\u0000\u0380\u0381\u0007\t\u0000\u0000"+
- "\u0381\u0382\u0007\u0000\u0000\u0000\u0382h\u0001\u0000\u0000\u0000\u0383"+
- "\u0384\u0007\f\u0000\u0000\u0384\u0385\u0007\u0002\u0000\u0000\u0385j"+
- "\u0001\u0000\u0000\u0000\u0386\u0387\u0007\f\u0000\u0000\u0387\u0388\u0007"+
- "\u0002\u0000\u0000\u0388\u0389\u0007\u0004\u0000\u0000\u0389l\u0001\u0000"+
- "\u0000\u0000\u038a\u038b\u0005=\u0000\u0000\u038bn\u0001\u0000\u0000\u0000"+
- "\u038c\u038d\u0007\u001e\u0000\u0000\u038d\u038e\u0007\u001f\u0000\u0000"+
- "\u038ep\u0001\u0000\u0000\u0000\u038f\u0390\u0005:\u0000\u0000\u0390\u0391"+
- "\u0005:\u0000\u0000\u0391r\u0001\u0000\u0000\u0000\u0392\u0393\u0005:"+
- "\u0000\u0000\u0393t\u0001\u0000\u0000\u0000\u0394\u0395\u0005,\u0000\u0000"+
- "\u0395v\u0001\u0000\u0000\u0000\u0396\u0397\u0007\u0000\u0000\u0000\u0397"+
- "\u0398\u0007\u0003\u0000\u0000\u0398\u0399\u0007\u0002\u0000\u0000\u0399"+
- "\u039a\u0007\u0004\u0000\u0000\u039ax\u0001\u0000\u0000\u0000\u039b\u039c"+
- "\u0005.\u0000\u0000\u039cz\u0001\u0000\u0000\u0000\u039d\u039e\u0007\u000f"+
- "\u0000\u0000\u039e\u039f\u0007\f\u0000\u0000\u039f\u03a0\u0007\r\u0000"+
- "\u0000\u03a0\u03a1\u0007\u0002\u0000\u0000\u03a1\u03a2\u0007\u0003\u0000"+
- "\u0000\u03a2|\u0001\u0000\u0000\u0000\u03a3\u03a4\u0007\u000f\u0000\u0000"+
- "\u03a4\u03a5\u0007\u0001\u0000\u0000\u03a5\u03a6\u0007\u0006\u0000\u0000"+
- "\u03a6\u03a7\u0007\u0002\u0000\u0000\u03a7\u03a8\u0007\u0005\u0000\u0000"+
- "\u03a8~\u0001\u0000\u0000\u0000\u03a9\u03aa\u0007\u0001\u0000\u0000\u03aa"+
- "\u03ab\u0007\t\u0000\u0000\u03ab\u0080\u0001\u0000\u0000\u0000\u03ac\u03ad"+
- "\u0007\u0001\u0000\u0000\u03ad\u03ae\u0007\u0002\u0000\u0000\u03ae\u0082"+
- "\u0001\u0000\u0000\u0000\u03af\u03b0\u0007\r\u0000\u0000\u03b0\u03b1\u0007"+
- "\f\u0000\u0000\u03b1\u03b2\u0007\u0002\u0000\u0000\u03b2\u03b3\u0007\u0005"+
- "\u0000\u0000\u03b3\u0084\u0001\u0000\u0000\u0000\u03b4\u03b5\u0007\r\u0000"+
- "\u0000\u03b5\u03b6\u0007\u0001\u0000\u0000\u03b6\u03b7\u0007\u0012\u0000"+
- "\u0000\u03b7\u03b8\u0007\u0003\u0000\u0000\u03b8\u0086\u0001\u0000\u0000"+
- "\u0000\u03b9\u03ba\u0005(\u0000\u0000\u03ba\u0088\u0001\u0000\u0000\u0000"+
- "\u03bb\u03bc\u0007\t\u0000\u0000\u03bc\u03bd\u0007\u0007\u0000\u0000\u03bd"+
- "\u03be\u0007\u0005\u0000\u0000\u03be\u008a\u0001\u0000\u0000\u0000\u03bf"+
- "\u03c0\u0007\t\u0000\u0000\u03c0\u03c1\u0007\u0014\u0000\u0000\u03c1\u03c2"+
- "\u0007\r\u0000\u0000\u03c2\u03c3\u0007\r\u0000\u0000\u03c3\u008c\u0001"+
- "\u0000\u0000\u0000\u03c4\u03c5\u0007\t\u0000\u0000\u03c5\u03c6\u0007\u0014"+
- "\u0000\u0000\u03c6\u03c7\u0007\r\u0000\u0000\u03c7\u03c8\u0007\r\u0000"+
- "\u0000\u03c8\u03c9\u0007\u0002\u0000\u0000\u03c9\u008e\u0001\u0000\u0000"+
- "\u0000\u03ca\u03cb\u0007\u0007\u0000\u0000\u03cb\u03cc\u0007\t\u0000\u0000"+
- "\u03cc\u0090\u0001\u0000\u0000\u0000\u03cd\u03ce\u0007\u0007\u0000\u0000"+
- "\u03ce\u03cf\u0007\u0006\u0000\u0000\u03cf\u0092\u0001\u0000\u0000\u0000"+
- "\u03d0\u03d1\u0005?\u0000\u0000\u03d1\u0094\u0001\u0000\u0000\u0000\u03d2"+
- "\u03d3\u0007\u0006\u0000\u0000\u03d3\u03d4\u0007\r\u0000\u0000\u03d4\u03d5"+
- "\u0007\u0001\u0000\u0000\u03d5\u03d6\u0007\u0012\u0000\u0000\u03d6\u03d7"+
- "\u0007\u0003\u0000\u0000\u03d7\u0096\u0001\u0000\u0000\u0000\u03d8\u03d9"+
- "\u0005)\u0000\u0000\u03d9\u0098\u0001\u0000\u0000\u0000\u03da\u03db\u0007"+
- "\u0005\u0000\u0000\u03db\u03dc\u0007\u0006\u0000\u0000\u03dc\u03dd\u0007"+
- "\u0014\u0000\u0000\u03dd\u03de\u0007\u0003\u0000\u0000\u03de\u009a\u0001"+
- "\u0000\u0000\u0000\u03df\u03e0\u0007\u0013\u0000\u0000\u03e0\u03e1\u0007"+
- "\u0001\u0000\u0000\u03e1\u03e2\u0007\u0005\u0000\u0000\u03e2\u03e3\u0007"+
- "\n\u0000\u0000\u03e3\u009c\u0001\u0000\u0000\u0000\u03e4\u03e5\u0005="+
- "\u0000\u0000\u03e5\u03e6\u0005=\u0000\u0000\u03e6\u009e\u0001\u0000\u0000"+
- "\u0000\u03e7\u03e8\u0005=\u0000\u0000\u03e8\u03e9\u0005~\u0000\u0000\u03e9"+
- "\u00a0\u0001\u0000\u0000\u0000\u03ea\u03eb\u0005!\u0000\u0000\u03eb\u03ec"+
- "\u0005=\u0000\u0000\u03ec\u00a2\u0001\u0000\u0000\u0000\u03ed\u03ee\u0005"+
- "<\u0000\u0000\u03ee\u00a4\u0001\u0000\u0000\u0000\u03ef\u03f0\u0005<\u0000"+
- "\u0000\u03f0\u03f1\u0005=\u0000\u0000\u03f1\u00a6\u0001\u0000\u0000\u0000"+
- "\u03f2\u03f3\u0005>\u0000\u0000\u03f3\u00a8\u0001\u0000\u0000\u0000\u03f4"+
- "\u03f5\u0005>\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6\u00aa\u0001"+
- "\u0000\u0000\u0000\u03f7\u03f8\u0005+\u0000\u0000\u03f8\u00ac\u0001\u0000"+
- "\u0000\u0000\u03f9\u03fa\u0005-\u0000\u0000\u03fa\u00ae\u0001\u0000\u0000"+
- "\u0000\u03fb\u03fc\u0005*\u0000\u0000\u03fc\u00b0\u0001\u0000\u0000\u0000"+
- "\u03fd\u03fe\u0005/\u0000\u0000\u03fe\u00b2\u0001\u0000\u0000\u0000\u03ff"+
- "\u0400\u0005%\u0000\u0000\u0400\u00b4\u0001\u0000\u0000\u0000\u0401\u0402"+
- "\u0005{\u0000\u0000\u0402\u00b6\u0001\u0000\u0000\u0000\u0403\u0404\u0005"+
- "}\u0000\u0000\u0404\u00b8\u0001\u0000\u0000\u0000\u0405\u0406\u0005?\u0000"+
- "\u0000\u0406\u0407\u0005?\u0000\u0000\u0407\u00ba\u0001\u0000\u0000\u0000"+
- "\u0408\u0409\u0003/\u000f\u0000\u0409\u040a\u0001\u0000\u0000\u0000\u040a"+
- "\u040b\u0006U\u000e\u0000\u040b\u00bc\u0001\u0000\u0000\u0000\u040c\u040f"+
- "\u0003\u0093A\u0000\u040d\u0410\u0003O\u001f\u0000\u040e\u0410\u0003]"+
- "&\u0000\u040f\u040d\u0001\u0000\u0000\u0000\u040f\u040e\u0001\u0000\u0000"+
- "\u0000\u0410\u0414\u0001\u0000\u0000\u0000\u0411\u0413\u0003_\'\u0000"+
- "\u0412\u0411\u0001\u0000\u0000\u0000\u0413\u0416\u0001\u0000\u0000\u0000"+
- "\u0414\u0412\u0001\u0000\u0000\u0000\u0414\u0415\u0001\u0000\u0000\u0000"+
- "\u0415\u041e\u0001\u0000\u0000\u0000\u0416\u0414\u0001\u0000\u0000\u0000"+
- "\u0417\u0419\u0003\u0093A\u0000\u0418\u041a\u0003M\u001e\u0000\u0419\u0418"+
- "\u0001\u0000\u0000\u0000\u041a\u041b\u0001\u0000\u0000\u0000\u041b\u0419"+
- "\u0001\u0000\u0000\u0000\u041b\u041c\u0001\u0000\u0000\u0000\u041c\u041e"+
- "\u0001\u0000\u0000\u0000\u041d\u040c\u0001\u0000\u0000\u0000\u041d\u0417"+
- "\u0001\u0000\u0000\u0000\u041e\u00be\u0001\u0000\u0000\u0000\u041f\u0422"+
- "\u0003\u00b9T\u0000\u0420\u0423\u0003O\u001f\u0000\u0421\u0423\u0003]"+
- "&\u0000\u0422\u0420\u0001\u0000\u0000\u0000\u0422\u0421\u0001\u0000\u0000"+
- "\u0000\u0423\u0427\u0001\u0000\u0000\u0000\u0424\u0426\u0003_\'\u0000"+
- "\u0425\u0424\u0001\u0000\u0000\u0000\u0426\u0429\u0001\u0000\u0000\u0000"+
- "\u0427\u0425\u0001\u0000\u0000\u0000\u0427\u0428\u0001\u0000\u0000\u0000"+
- "\u0428\u0431\u0001\u0000\u0000\u0000\u0429\u0427\u0001\u0000\u0000\u0000"+
- "\u042a\u042c\u0003\u00b9T\u0000\u042b\u042d\u0003M\u001e\u0000\u042c\u042b"+
- "\u0001\u0000\u0000\u0000\u042d\u042e\u0001\u0000\u0000\u0000\u042e\u042c"+
- "\u0001\u0000\u0000\u0000\u042e\u042f\u0001\u0000\u0000\u0000\u042f\u0431"+
- "\u0001\u0000\u0000\u0000\u0430\u041f\u0001\u0000\u0000\u0000\u0430\u042a"+
- "\u0001\u0000\u0000\u0000\u0431\u00c0\u0001\u0000\u0000\u0000\u0432\u0433"+
- "\u0005[\u0000\u0000\u0433\u0434\u0001\u0000\u0000\u0000\u0434\u0435\u0006"+
- "X\u0000\u0000\u0435\u0436\u0006X\u0000\u0000\u0436\u00c2\u0001\u0000\u0000"+
- "\u0000\u0437\u0438\u0005]\u0000\u0000\u0438\u0439\u0001\u0000\u0000\u0000"+
- "\u0439\u043a\u0006Y\r\u0000\u043a\u043b\u0006Y\r\u0000\u043b\u00c4\u0001"+
- "\u0000\u0000\u0000\u043c\u0440\u0003O\u001f\u0000\u043d\u043f\u0003_\'"+
- "\u0000\u043e\u043d\u0001\u0000\u0000\u0000\u043f\u0442\u0001\u0000\u0000"+
- "\u0000\u0440\u043e\u0001\u0000\u0000\u0000\u0440\u0441\u0001\u0000\u0000"+
- "\u0000\u0441\u044d\u0001\u0000\u0000\u0000\u0442\u0440\u0001\u0000\u0000"+
- "\u0000\u0443\u0446\u0003]&\u0000\u0444\u0446\u0003W#\u0000\u0445\u0443"+
- "\u0001\u0000\u0000\u0000\u0445\u0444\u0001\u0000\u0000\u0000\u0446\u0448"+
- "\u0001\u0000\u0000\u0000\u0447\u0449\u0003_\'\u0000\u0448\u0447\u0001"+
- "\u0000\u0000\u0000\u0449\u044a\u0001\u0000\u0000\u0000\u044a\u0448\u0001"+
- "\u0000\u0000\u0000\u044a\u044b\u0001\u0000\u0000\u0000\u044b\u044d\u0001"+
- "\u0000\u0000\u0000\u044c\u043c\u0001\u0000\u0000\u0000\u044c\u0445\u0001"+
- "\u0000\u0000\u0000\u044d\u00c6\u0001\u0000\u0000\u0000\u044e\u0450\u0003"+
- "Y$\u0000\u044f\u0451\u0003[%\u0000\u0450\u044f\u0001\u0000\u0000\u0000"+
- "\u0451\u0452\u0001\u0000\u0000\u0000\u0452\u0450\u0001\u0000\u0000\u0000"+
- "\u0452\u0453\u0001\u0000\u0000\u0000\u0453\u0454\u0001\u0000\u0000\u0000"+
- "\u0454\u0455\u0003Y$\u0000\u0455\u00c8\u0001\u0000\u0000\u0000\u0456\u0457"+
- "\u0003\u00c7[\u0000\u0457\u00ca\u0001\u0000\u0000\u0000\u0458\u0459\u0003"+
- "E\u001a\u0000\u0459\u045a\u0001\u0000\u0000\u0000\u045a\u045b\u0006]\f"+
- "\u0000\u045b\u00cc\u0001\u0000\u0000\u0000\u045c\u045d\u0003G\u001b\u0000"+
- "\u045d\u045e\u0001\u0000\u0000\u0000\u045e\u045f\u0006^\f\u0000\u045f"+
- "\u00ce\u0001\u0000\u0000\u0000\u0460\u0461\u0003I\u001c\u0000\u0461\u0462"+
- "\u0001\u0000\u0000\u0000\u0462\u0463\u0006_\f\u0000\u0463\u00d0\u0001"+
- "\u0000\u0000\u0000\u0464\u0465\u0003\u00c1X\u0000\u0465\u0466\u0001\u0000"+
- "\u0000\u0000\u0466\u0467\u0006`\u000f\u0000\u0467\u0468\u0006`\u0010\u0000"+
- "\u0468\u00d2\u0001\u0000\u0000\u0000\u0469\u046a\u0003K\u001d\u0000\u046a"+
- "\u046b\u0001\u0000\u0000\u0000\u046b\u046c\u0006a\u0011\u0000\u046c\u046d"+
- "\u0006a\r\u0000\u046d\u00d4\u0001\u0000\u0000\u0000\u046e\u046f\u0003"+
- "I\u001c\u0000\u046f\u0470\u0001\u0000\u0000\u0000\u0470\u0471\u0006b\f"+
- "\u0000\u0471\u00d6\u0001\u0000\u0000\u0000\u0472\u0473\u0003E\u001a\u0000"+
- "\u0473\u0474\u0001\u0000\u0000\u0000\u0474\u0475\u0006c\f\u0000\u0475"+
- "\u00d8\u0001\u0000\u0000\u0000\u0476\u0477\u0003G\u001b\u0000\u0477\u0478"+
- "\u0001\u0000\u0000\u0000\u0478\u0479\u0006d\f\u0000\u0479\u00da\u0001"+
- "\u0000\u0000\u0000\u047a\u047b\u0003K\u001d\u0000\u047b\u047c\u0001\u0000"+
- "\u0000\u0000\u047c\u047d\u0006e\u0011\u0000\u047d\u047e\u0006e\r\u0000"+
- "\u047e\u00dc\u0001\u0000\u0000\u0000\u047f\u0480\u0003\u00c1X\u0000\u0480"+
- "\u0481\u0001\u0000\u0000\u0000\u0481\u0482\u0006f\u000f\u0000\u0482\u00de"+
- "\u0001\u0000\u0000\u0000\u0483\u0484\u0003\u00c3Y\u0000\u0484\u0485\u0001"+
- "\u0000\u0000\u0000\u0485\u0486\u0006g\u0012\u0000\u0486\u00e0\u0001\u0000"+
- "\u0000\u0000\u0487\u0488\u0003s1\u0000\u0488\u0489\u0001\u0000\u0000\u0000"+
- "\u0489\u048a\u0006h\u0013\u0000\u048a\u00e2\u0001\u0000\u0000\u0000\u048b"+
- "\u048c\u0003q0\u0000\u048c\u048d\u0001\u0000\u0000\u0000\u048d\u048e\u0006"+
- "i\u0014\u0000\u048e\u00e4\u0001\u0000\u0000\u0000\u048f\u0490\u0003u2"+
- "\u0000\u0490\u0491\u0001\u0000\u0000\u0000\u0491\u0492\u0006j\u0015\u0000"+
- "\u0492\u00e6\u0001\u0000\u0000\u0000\u0493\u0494\u0003m.\u0000\u0494\u0495"+
- "\u0001\u0000\u0000\u0000\u0495\u0496\u0006k\u0016\u0000\u0496\u00e8\u0001"+
- "\u0000\u0000\u0000\u0497\u0498\u0007\u0010\u0000\u0000\u0498\u0499\u0007"+
- "\u0003\u0000\u0000\u0499\u049a\u0007\u0005\u0000\u0000\u049a\u049b\u0007"+
- "\f\u0000\u0000\u049b\u049c\u0007\u0000\u0000\u0000\u049c\u049d\u0007\f"+
- "\u0000\u0000\u049d\u049e\u0007\u0005\u0000\u0000\u049e\u049f\u0007\f\u0000"+
- "\u0000\u049f\u00ea\u0001\u0000\u0000\u0000\u04a0\u04a4\b \u0000\u0000"+
- "\u04a1\u04a2\u0005/\u0000\u0000\u04a2\u04a4\b!\u0000\u0000\u04a3\u04a0"+
- "\u0001\u0000\u0000\u0000\u04a3\u04a1\u0001\u0000\u0000\u0000\u04a4\u00ec"+
- "\u0001\u0000\u0000\u0000\u04a5\u04a7\u0003\u00ebm\u0000\u04a6\u04a5\u0001"+
- "\u0000\u0000\u0000\u04a7\u04a8\u0001\u0000\u0000\u0000\u04a8\u04a6\u0001"+
- "\u0000\u0000\u0000\u04a8\u04a9\u0001\u0000\u0000\u0000\u04a9\u00ee\u0001"+
- "\u0000\u0000\u0000\u04aa\u04ab\u0003\u00edn\u0000\u04ab\u04ac\u0001\u0000"+
- "\u0000\u0000\u04ac\u04ad\u0006o\u0017\u0000\u04ad\u00f0\u0001\u0000\u0000"+
- "\u0000\u04ae\u04af\u0003a(\u0000\u04af\u04b0\u0001\u0000\u0000\u0000\u04b0"+
- "\u04b1\u0006p\u0018\u0000\u04b1\u00f2\u0001\u0000\u0000\u0000\u04b2\u04b3"+
- "\u0003E\u001a\u0000\u04b3\u04b4\u0001\u0000\u0000\u0000\u04b4\u04b5\u0006"+
- "q\f\u0000\u04b5\u00f4\u0001\u0000\u0000\u0000\u04b6\u04b7\u0003G\u001b"+
- "\u0000\u04b7\u04b8\u0001\u0000\u0000\u0000\u04b8\u04b9\u0006r\f\u0000"+
- "\u04b9\u00f6\u0001\u0000\u0000\u0000\u04ba\u04bb\u0003I\u001c\u0000\u04bb"+
- "\u04bc\u0001\u0000\u0000\u0000\u04bc\u04bd\u0006s\f\u0000\u04bd\u00f8"+
- "\u0001\u0000\u0000\u0000\u04be\u04bf\u0003K\u001d\u0000\u04bf\u04c0\u0001"+
- "\u0000\u0000\u0000\u04c0\u04c1\u0006t\u0011\u0000\u04c1\u04c2\u0006t\r"+
- "\u0000\u04c2\u00fa\u0001\u0000\u0000\u0000\u04c3\u04c4\u0003y4\u0000\u04c4"+
- "\u04c5\u0001\u0000\u0000\u0000\u04c5\u04c6\u0006u\u0019\u0000\u04c6\u00fc"+
- "\u0001\u0000\u0000\u0000\u04c7\u04c8\u0003u2\u0000\u04c8\u04c9\u0001\u0000"+
- "\u0000\u0000\u04c9\u04ca\u0006v\u0015\u0000\u04ca\u00fe\u0001\u0000\u0000"+
- "\u0000\u04cb\u04cc\u0003\u0093A\u0000\u04cc\u04cd\u0001\u0000\u0000\u0000"+
- "\u04cd\u04ce\u0006w\u001a\u0000\u04ce\u0100\u0001\u0000\u0000\u0000\u04cf"+
- "\u04d0\u0003\u00bdV\u0000\u04d0\u04d1\u0001\u0000\u0000\u0000\u04d1\u04d2"+
- "\u0006x\u001b\u0000\u04d2\u0102\u0001\u0000\u0000\u0000\u04d3\u04d4\u0003"+
- "\u00b9T\u0000\u04d4\u04d5\u0001\u0000\u0000\u0000\u04d5\u04d6\u0006y\u001c"+
- "\u0000\u04d6\u0104\u0001\u0000\u0000\u0000\u04d7\u04d8\u0003\u00bfW\u0000"+
- "\u04d8\u04d9\u0001\u0000\u0000\u0000\u04d9\u04da\u0006z\u001d\u0000\u04da"+
- "\u0106\u0001\u0000\u0000\u0000\u04db\u04e0\u0003O\u001f\u0000\u04dc\u04e0"+
- "\u0003M\u001e\u0000\u04dd\u04e0\u0003]&\u0000\u04de\u04e0\u0003\u00af"+
- "O\u0000\u04df\u04db\u0001\u0000\u0000\u0000\u04df\u04dc\u0001\u0000\u0000"+
- "\u0000\u04df\u04dd\u0001\u0000\u0000\u0000\u04df\u04de\u0001\u0000\u0000"+
- "\u0000\u04e0\u0108\u0001\u0000\u0000\u0000\u04e1\u04e4\u0003O\u001f\u0000"+
- "\u04e2\u04e4\u0003\u00afO\u0000\u04e3\u04e1\u0001\u0000\u0000\u0000\u04e3"+
- "\u04e2\u0001\u0000\u0000\u0000\u04e4\u04e8\u0001\u0000\u0000\u0000\u04e5"+
- "\u04e7\u0003\u0107{\u0000\u04e6\u04e5\u0001\u0000\u0000\u0000\u04e7\u04ea"+
- "\u0001\u0000\u0000\u0000\u04e8\u04e6\u0001\u0000\u0000\u0000\u04e8\u04e9"+
- "\u0001\u0000\u0000\u0000\u04e9\u04f5\u0001\u0000\u0000\u0000\u04ea\u04e8"+
- "\u0001\u0000\u0000\u0000\u04eb\u04ee\u0003]&\u0000\u04ec\u04ee\u0003W"+
- "#\u0000\u04ed\u04eb\u0001\u0000\u0000\u0000\u04ed\u04ec\u0001\u0000\u0000"+
- "\u0000\u04ee\u04f0\u0001\u0000\u0000\u0000\u04ef\u04f1\u0003\u0107{\u0000"+
- "\u04f0\u04ef\u0001\u0000\u0000\u0000\u04f1\u04f2\u0001\u0000\u0000\u0000"+
- "\u04f2\u04f0\u0001\u0000\u0000\u0000\u04f2\u04f3\u0001\u0000\u0000\u0000"+
- "\u04f3\u04f5\u0001\u0000\u0000\u0000\u04f4\u04e3\u0001\u0000\u0000\u0000"+
- "\u04f4\u04ed\u0001\u0000\u0000\u0000\u04f5\u010a\u0001\u0000\u0000\u0000"+
- "\u04f6\u04f9\u0003\u0109|\u0000\u04f7\u04f9\u0003\u00c7[\u0000\u04f8\u04f6"+
- "\u0001\u0000\u0000\u0000\u04f8\u04f7\u0001\u0000\u0000\u0000\u04f9\u04fa"+
- "\u0001\u0000\u0000\u0000\u04fa\u04f8\u0001\u0000\u0000\u0000\u04fa\u04fb"+
- "\u0001\u0000\u0000\u0000\u04fb\u010c\u0001\u0000\u0000\u0000\u04fc\u04fd"+
- "\u0003E\u001a\u0000\u04fd\u04fe\u0001\u0000\u0000\u0000\u04fe\u04ff\u0006"+
- "~\f\u0000\u04ff\u010e\u0001\u0000\u0000\u0000\u0500\u0501\u0003G\u001b"+
- "\u0000\u0501\u0502\u0001\u0000\u0000\u0000\u0502\u0503\u0006\u007f\f\u0000"+
- "\u0503\u0110\u0001\u0000\u0000\u0000\u0504\u0505\u0003I\u001c\u0000\u0505"+
- "\u0506\u0001\u0000\u0000\u0000\u0506\u0507\u0006\u0080\f\u0000\u0507\u0112"+
- "\u0001\u0000\u0000\u0000\u0508\u0509\u0003K\u001d\u0000\u0509\u050a\u0001"+
- "\u0000\u0000\u0000\u050a\u050b\u0006\u0081\u0011\u0000\u050b\u050c\u0006"+
- "\u0081\r\u0000\u050c\u0114\u0001\u0000\u0000\u0000\u050d\u050e\u0003m"+
- ".\u0000\u050e\u050f\u0001\u0000\u0000\u0000\u050f\u0510\u0006\u0082\u0016"+
- "\u0000\u0510\u0116\u0001\u0000\u0000\u0000\u0511\u0512\u0003u2\u0000\u0512"+
- "\u0513\u0001\u0000\u0000\u0000\u0513\u0514\u0006\u0083\u0015\u0000\u0514"+
- "\u0118\u0001\u0000\u0000\u0000\u0515\u0516\u0003y4\u0000\u0516\u0517\u0001"+
- "\u0000\u0000\u0000\u0517\u0518\u0006\u0084\u0019\u0000\u0518\u011a\u0001"+
- "\u0000\u0000\u0000\u0519\u051a\u0003\u0093A\u0000\u051a\u051b\u0001\u0000"+
- "\u0000\u0000\u051b\u051c\u0006\u0085\u001a\u0000\u051c\u011c\u0001\u0000"+
- "\u0000\u0000\u051d\u051e\u0003\u00bdV\u0000\u051e\u051f\u0001\u0000\u0000"+
- "\u0000\u051f\u0520\u0006\u0086\u001b\u0000\u0520\u011e\u0001\u0000\u0000"+
- "\u0000\u0521\u0522\u0003\u00b9T\u0000\u0522\u0523\u0001\u0000\u0000\u0000"+
- "\u0523\u0524\u0006\u0087\u001c\u0000\u0524\u0120\u0001\u0000\u0000\u0000"+
- "\u0525\u0526\u0003\u00bfW\u0000\u0526\u0527\u0001\u0000\u0000\u0000\u0527"+
- "\u0528\u0006\u0088\u001d\u0000\u0528\u0122\u0001\u0000\u0000\u0000\u0529"+
- "\u052a\u0003i,\u0000\u052a\u052b\u0001\u0000\u0000\u0000\u052b\u052c\u0006"+
- "\u0089\u001e\u0000\u052c\u0124\u0001\u0000\u0000\u0000\u052d\u052e\u0003"+
- "\u010b}\u0000\u052e\u052f\u0001\u0000\u0000\u0000\u052f\u0530\u0006\u008a"+
- "\u001f\u0000\u0530\u0126\u0001\u0000\u0000\u0000\u0531\u0532\u0003E\u001a"+
- "\u0000\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0006\u008b\f\u0000"+
- "\u0534\u0128\u0001\u0000\u0000\u0000\u0535\u0536\u0003G\u001b\u0000\u0536"+
- "\u0537\u0001\u0000\u0000\u0000\u0537\u0538\u0006\u008c\f\u0000\u0538\u012a"+
- "\u0001\u0000\u0000\u0000\u0539\u053a\u0003I\u001c\u0000\u053a\u053b\u0001"+
- "\u0000\u0000\u0000\u053b\u053c\u0006\u008d\f\u0000\u053c\u012c\u0001\u0000"+
- "\u0000\u0000\u053d\u053e\u0003K\u001d\u0000\u053e\u053f\u0001\u0000\u0000"+
- "\u0000\u053f\u0540\u0006\u008e\u0011\u0000\u0540\u0541\u0006\u008e\r\u0000"+
- "\u0541\u012e\u0001\u0000\u0000\u0000\u0542\u0543\u0003\u00c1X\u0000\u0543"+
- "\u0544\u0001\u0000\u0000\u0000\u0544\u0545\u0006\u008f\u000f\u0000\u0545"+
- "\u0546\u0006\u008f \u0000\u0546\u0130\u0001\u0000\u0000\u0000\u0547\u0548"+
- "\u0003\u008f?\u0000\u0548\u0549\u0001\u0000\u0000\u0000\u0549\u054a\u0006"+
- "\u0090!\u0000\u054a\u054b\u0006\u0090\"\u0000\u054b\u0132\u0001\u0000"+
- "\u0000\u0000\u054c\u054d\u0003\u009bE\u0000\u054d\u054e\u0001\u0000\u0000"+
- "\u0000\u054e\u054f\u0006\u0091#\u0000\u054f\u0550\u0006\u0091\"\u0000"+
- "\u0550\u0134\u0001\u0000\u0000\u0000\u0551\u0552\b\"\u0000\u0000\u0552"+
- "\u0136\u0001\u0000\u0000\u0000\u0553\u0555\u0003\u0135\u0092\u0000\u0554"+
- "\u0553\u0001\u0000\u0000\u0000\u0555\u0556\u0001\u0000\u0000\u0000\u0556"+
- "\u0554\u0001\u0000\u0000\u0000\u0556\u0557\u0001\u0000\u0000\u0000\u0557"+
- "\u0558\u0001\u0000\u0000\u0000\u0558\u0559\u0003s1\u0000\u0559\u055b\u0001"+
- "\u0000\u0000\u0000\u055a\u0554\u0001\u0000\u0000\u0000\u055a\u055b\u0001"+
- "\u0000\u0000\u0000\u055b\u055d\u0001\u0000\u0000\u0000\u055c\u055e\u0003"+
- "\u0135\u0092\u0000\u055d\u055c\u0001\u0000\u0000\u0000\u055e\u055f\u0001"+
- "\u0000\u0000\u0000\u055f\u055d\u0001\u0000\u0000\u0000\u055f\u0560\u0001"+
- "\u0000\u0000\u0000\u0560\u0138\u0001\u0000\u0000\u0000\u0561\u0562\u0003"+
- "\u0137\u0093\u0000\u0562\u0563\u0001\u0000\u0000\u0000\u0563\u0564\u0006"+
- "\u0094$\u0000\u0564\u013a\u0001\u0000\u0000\u0000\u0565\u0566\u0003E\u001a"+
- "\u0000\u0566\u0567\u0001\u0000\u0000\u0000\u0567\u0568\u0006\u0095\f\u0000"+
- "\u0568\u013c\u0001\u0000\u0000\u0000\u0569\u056a\u0003G\u001b\u0000\u056a"+
- "\u056b\u0001\u0000\u0000\u0000\u056b\u056c\u0006\u0096\f\u0000\u056c\u013e"+
- "\u0001\u0000\u0000\u0000\u056d\u056e\u0003I\u001c\u0000\u056e\u056f\u0001"+
- "\u0000\u0000\u0000\u056f\u0570\u0006\u0097\f\u0000\u0570\u0140\u0001\u0000"+
- "\u0000\u0000\u0571\u0572\u0003K\u001d\u0000\u0572\u0573\u0001\u0000\u0000"+
- "\u0000\u0573\u0574\u0006\u0098\u0011\u0000\u0574\u0575\u0006\u0098\r\u0000"+
- "\u0575\u0576\u0006\u0098\r\u0000\u0576\u0142\u0001\u0000\u0000\u0000\u0577"+
- "\u0578\u0003m.\u0000\u0578\u0579\u0001\u0000\u0000\u0000\u0579\u057a\u0006"+
- "\u0099\u0016\u0000\u057a\u0144\u0001\u0000\u0000\u0000\u057b\u057c\u0003"+
- "u2\u0000\u057c\u057d\u0001\u0000\u0000\u0000\u057d\u057e\u0006\u009a\u0015"+
- "\u0000\u057e\u0146\u0001\u0000\u0000\u0000\u057f\u0580\u0003y4\u0000\u0580"+
- "\u0581\u0001\u0000\u0000\u0000\u0581\u0582\u0006\u009b\u0019\u0000\u0582"+
- "\u0148\u0001\u0000\u0000\u0000\u0583\u0584\u0003\u009bE\u0000\u0584\u0585"+
- "\u0001\u0000\u0000\u0000\u0585\u0586\u0006\u009c#\u0000\u0586\u014a\u0001"+
- "\u0000\u0000\u0000\u0587\u0588\u0003\u010b}\u0000\u0588\u0589\u0001\u0000"+
- "\u0000\u0000\u0589\u058a\u0006\u009d\u001f\u0000\u058a\u014c\u0001\u0000"+
- "\u0000\u0000\u058b\u058c\u0003\u00c9\\\u0000\u058c\u058d\u0001\u0000\u0000"+
- "\u0000\u058d\u058e\u0006\u009e%\u0000\u058e\u014e\u0001\u0000\u0000\u0000"+
- "\u058f\u0590\u0003\u0093A\u0000\u0590\u0591\u0001\u0000\u0000\u0000\u0591"+
- "\u0592\u0006\u009f\u001a\u0000\u0592\u0150\u0001\u0000\u0000\u0000\u0593"+
- "\u0594\u0003\u00bdV\u0000\u0594\u0595\u0001\u0000\u0000\u0000\u0595\u0596"+
- "\u0006\u00a0\u001b\u0000\u0596\u0152\u0001\u0000\u0000\u0000\u0597\u0598"+
- "\u0003\u00b9T\u0000\u0598\u0599\u0001\u0000\u0000\u0000\u0599\u059a\u0006"+
- "\u00a1\u001c\u0000\u059a\u0154\u0001\u0000\u0000\u0000\u059b\u059c\u0003"+
- "\u00bfW\u0000\u059c\u059d\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u00a2"+
- "\u001d\u0000\u059e\u0156\u0001\u0000\u0000\u0000\u059f\u05a0\u0003E\u001a"+
- "\u0000\u05a0\u05a1\u0001\u0000\u0000\u0000\u05a1\u05a2\u0006\u00a3\f\u0000"+
- "\u05a2\u0158\u0001\u0000\u0000\u0000\u05a3\u05a4\u0003G\u001b\u0000\u05a4"+
- "\u05a5\u0001\u0000\u0000\u0000\u05a5\u05a6\u0006\u00a4\f\u0000\u05a6\u015a"+
- "\u0001\u0000\u0000\u0000\u05a7\u05a8\u0003I\u001c\u0000\u05a8\u05a9\u0001"+
- "\u0000\u0000\u0000\u05a9\u05aa\u0006\u00a5\f\u0000\u05aa\u015c\u0001\u0000"+
- "\u0000\u0000\u05ab\u05ac\u0003K\u001d\u0000\u05ac\u05ad\u0001\u0000\u0000"+
- "\u0000\u05ad\u05ae\u0006\u00a6\u0011\u0000\u05ae\u05af\u0006\u00a6\r\u0000"+
- "\u05af\u015e\u0001\u0000\u0000\u0000\u05b0\u05b1\u0003y4\u0000\u05b1\u05b2"+
- "\u0001\u0000\u0000\u0000\u05b2\u05b3\u0006\u00a7\u0019\u0000\u05b3\u0160"+
- "\u0001\u0000\u0000\u0000\u05b4\u05b5\u0003\u0093A\u0000\u05b5\u05b6\u0001"+
- "\u0000\u0000\u0000\u05b6\u05b7\u0006\u00a8\u001a\u0000\u05b7\u0162\u0001"+
- "\u0000\u0000\u0000\u05b8\u05b9\u0003\u00bdV\u0000\u05b9\u05ba\u0001\u0000"+
- "\u0000\u0000\u05ba\u05bb\u0006\u00a9\u001b\u0000\u05bb\u0164\u0001\u0000"+
- "\u0000\u0000\u05bc\u05bd\u0003\u00b9T\u0000\u05bd\u05be\u0001\u0000\u0000"+
- "\u0000\u05be\u05bf\u0006\u00aa\u001c\u0000\u05bf\u0166\u0001\u0000\u0000"+
- "\u0000\u05c0\u05c1\u0003\u00bfW\u0000\u05c1\u05c2\u0001\u0000\u0000\u0000"+
- "\u05c2\u05c3\u0006\u00ab\u001d\u0000\u05c3\u0168\u0001\u0000\u0000\u0000"+
- "\u05c4\u05c5\u0003\u00c9\\\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6"+
- "\u05c7\u0006\u00ac%\u0000\u05c7\u016a\u0001\u0000\u0000\u0000\u05c8\u05c9"+
- "\u0003\u00c5Z\u0000\u05c9\u05ca\u0001\u0000\u0000\u0000\u05ca\u05cb\u0006"+
- "\u00ad&\u0000\u05cb\u016c\u0001\u0000\u0000\u0000\u05cc\u05cd\u0003E\u001a"+
- "\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce\u05cf\u0006\u00ae\f\u0000"+
- "\u05cf\u016e\u0001\u0000\u0000\u0000\u05d0\u05d1\u0003G\u001b\u0000\u05d1"+
- "\u05d2\u0001\u0000\u0000\u0000\u05d2\u05d3\u0006\u00af\f\u0000\u05d3\u0170"+
- "\u0001\u0000\u0000\u0000\u05d4\u05d5\u0003I\u001c\u0000\u05d5\u05d6\u0001"+
- "\u0000\u0000\u0000\u05d6\u05d7\u0006\u00b0\f\u0000\u05d7\u0172\u0001\u0000"+
- "\u0000\u0000\u05d8\u05d9\u0003K\u001d\u0000\u05d9\u05da\u0001\u0000\u0000"+
- "\u0000\u05da\u05db\u0006\u00b1\u0011\u0000\u05db\u05dc\u0006\u00b1\r\u0000"+
- "\u05dc\u0174\u0001\u0000\u0000\u0000\u05dd\u05de\u0007\u0001\u0000\u0000"+
- "\u05de\u05df\u0007\t\u0000\u0000\u05df\u05e0\u0007\u000f\u0000\u0000\u05e0"+
- "\u05e1\u0007\u0007\u0000\u0000\u05e1\u0176\u0001\u0000\u0000\u0000\u05e2"+
- "\u05e3\u0003E\u001a\u0000\u05e3\u05e4\u0001\u0000\u0000\u0000\u05e4\u05e5"+
- "\u0006\u00b3\f\u0000\u05e5\u0178\u0001\u0000\u0000\u0000\u05e6\u05e7\u0003"+
- "G\u001b\u0000\u05e7\u05e8\u0001\u0000\u0000\u0000\u05e8\u05e9\u0006\u00b4"+
- "\f\u0000\u05e9\u017a\u0001\u0000\u0000\u0000\u05ea\u05eb\u0003I\u001c"+
- "\u0000\u05eb\u05ec\u0001\u0000\u0000\u0000\u05ec\u05ed\u0006\u00b5\f\u0000"+
- "\u05ed\u017c\u0001\u0000\u0000\u0000\u05ee\u05ef\u0003\u00c3Y\u0000\u05ef"+
- "\u05f0\u0001\u0000\u0000\u0000\u05f0\u05f1\u0006\u00b6\u0012\u0000\u05f1"+
- "\u05f2\u0006\u00b6\r\u0000\u05f2\u017e\u0001\u0000\u0000\u0000\u05f3\u05f4"+
- "\u0003s1\u0000\u05f4\u05f5\u0001\u0000\u0000\u0000\u05f5\u05f6\u0006\u00b7"+
- "\u0013\u0000\u05f6\u0180\u0001\u0000\u0000\u0000\u05f7\u05fd\u0003W#\u0000"+
- "\u05f8\u05fd\u0003M\u001e\u0000\u05f9\u05fd\u0003y4\u0000\u05fa\u05fd"+
- "\u0003O\u001f\u0000\u05fb\u05fd\u0003]&\u0000\u05fc\u05f7\u0001\u0000"+
- "\u0000\u0000\u05fc\u05f8\u0001\u0000\u0000\u0000\u05fc\u05f9\u0001\u0000"+
- "\u0000\u0000\u05fc\u05fa\u0001\u0000\u0000\u0000\u05fc\u05fb\u0001\u0000"+
- "\u0000\u0000\u05fd\u05fe\u0001\u0000\u0000\u0000\u05fe\u05fc\u0001\u0000"+
- "\u0000\u0000\u05fe\u05ff\u0001\u0000\u0000\u0000\u05ff\u0182\u0001\u0000"+
- "\u0000\u0000\u0600\u0601\u0003E\u001a\u0000\u0601\u0602\u0001\u0000\u0000"+
- "\u0000\u0602\u0603\u0006\u00b9\f\u0000\u0603\u0184\u0001\u0000\u0000\u0000"+
- "\u0604\u0605\u0003G\u001b\u0000\u0605\u0606\u0001\u0000\u0000\u0000\u0606"+
- "\u0607\u0006\u00ba\f\u0000\u0607\u0186\u0001\u0000\u0000\u0000\u0608\u0609"+
- "\u0003I\u001c\u0000\u0609\u060a\u0001\u0000\u0000\u0000\u060a\u060b\u0006"+
- "\u00bb\f\u0000\u060b\u0188\u0001\u0000\u0000\u0000\u060c\u060d\u0003K"+
- "\u001d\u0000\u060d\u060e\u0001\u0000\u0000\u0000\u060e\u060f\u0006\u00bc"+
- "\u0011\u0000\u060f\u0610\u0006\u00bc\r\u0000\u0610\u018a\u0001\u0000\u0000"+
- "\u0000\u0611\u0612\u0003s1\u0000\u0612\u0613\u0001\u0000\u0000\u0000\u0613"+
- "\u0614\u0006\u00bd\u0013\u0000\u0614\u018c\u0001\u0000\u0000\u0000\u0615"+
- "\u0616\u0003u2\u0000\u0616\u0617\u0001\u0000\u0000\u0000\u0617\u0618\u0006"+
- "\u00be\u0015\u0000\u0618\u018e\u0001\u0000\u0000\u0000\u0619\u061a\u0003"+
- "y4\u0000\u061a\u061b\u0001\u0000\u0000\u0000\u061b\u061c\u0006\u00bf\u0019"+
- "\u0000\u061c\u0190\u0001\u0000\u0000\u0000\u061d\u061e\u0003\u008f?\u0000"+
- "\u061e\u061f\u0001\u0000\u0000\u0000\u061f\u0620\u0006\u00c0!\u0000\u0620"+
- "\u0621\u0006\u00c0\'\u0000\u0621\u0192\u0001\u0000\u0000\u0000\u0622\u0623"+
- "\u0003\u00edn\u0000\u0623\u0624\u0001\u0000\u0000\u0000\u0624\u0625\u0006"+
- "\u00c1\u0017\u0000\u0625\u0194\u0001\u0000\u0000\u0000\u0626\u0627\u0003"+
- "a(\u0000\u0627\u0628\u0001\u0000\u0000\u0000\u0628\u0629\u0006\u00c2\u0018"+
- "\u0000\u0629\u0196\u0001\u0000\u0000\u0000\u062a\u062b\u0003E\u001a\u0000"+
- "\u062b\u062c\u0001\u0000\u0000\u0000\u062c\u062d\u0006\u00c3\f\u0000\u062d"+
- "\u0198\u0001\u0000\u0000\u0000\u062e\u062f\u0003G\u001b\u0000\u062f\u0630"+
- "\u0001\u0000\u0000\u0000\u0630\u0631\u0006\u00c4\f\u0000\u0631\u019a\u0001"+
- "\u0000\u0000\u0000\u0632\u0633\u0003I\u001c\u0000\u0633\u0634\u0001\u0000"+
- "\u0000\u0000\u0634\u0635\u0006\u00c5\f\u0000\u0635\u019c\u0001\u0000\u0000"+
- "\u0000\u0636\u0637\u0003K\u001d\u0000\u0637\u0638\u0001\u0000\u0000\u0000"+
- "\u0638\u0639\u0006\u00c6\u0011\u0000\u0639\u063a\u0006\u00c6\r\u0000\u063a"+
- "\u063b\u0006\u00c6\r\u0000\u063b\u019e\u0001\u0000\u0000\u0000\u063c\u063d"+
- "\u0003u2\u0000\u063d\u063e\u0001\u0000\u0000\u0000\u063e\u063f\u0006\u00c7"+
- "\u0015\u0000\u063f\u01a0\u0001\u0000\u0000\u0000\u0640\u0641\u0003y4\u0000"+
- "\u0641\u0642\u0001\u0000\u0000\u0000\u0642\u0643\u0006\u00c8\u0019\u0000"+
- "\u0643\u01a2\u0001\u0000\u0000\u0000\u0644\u0645\u0003\u010b}\u0000\u0645"+
- "\u0646\u0001\u0000\u0000\u0000\u0646\u0647\u0006\u00c9\u001f\u0000\u0647"+
- "\u01a4\u0001\u0000\u0000\u0000\u0648\u0649\u0003E\u001a\u0000\u0649\u064a"+
- "\u0001\u0000\u0000\u0000\u064a\u064b\u0006\u00ca\f\u0000\u064b\u01a6\u0001"+
- "\u0000\u0000\u0000\u064c\u064d\u0003G\u001b\u0000\u064d\u064e\u0001\u0000"+
- "\u0000\u0000\u064e\u064f\u0006\u00cb\f\u0000\u064f\u01a8\u0001\u0000\u0000"+
- "\u0000\u0650\u0651\u0003I\u001c\u0000\u0651\u0652\u0001\u0000\u0000\u0000"+
- "\u0652\u0653\u0006\u00cc\f\u0000\u0653\u01aa\u0001\u0000\u0000\u0000\u0654"+
- "\u0655\u0003K\u001d\u0000\u0655\u0656\u0001\u0000\u0000\u0000\u0656\u0657"+
- "\u0006\u00cd\u0011\u0000\u0657\u0658\u0006\u00cd\r\u0000\u0658\u01ac\u0001"+
- "\u0000\u0000\u0000\u0659\u065a\u0007#\u0000\u0000\u065a\u065b\u0007\u0007"+
- "\u0000\u0000\u065b\u065c\u0007\u0001\u0000\u0000\u065c\u065d\u0007\t\u0000"+
- "\u0000\u065d\u01ae\u0001\u0000\u0000\u0000\u065e\u065f\u0003i,\u0000\u065f"+
- "\u0660\u0001\u0000\u0000\u0000\u0660\u0661\u0006\u00cf\u001e\u0000\u0661"+
- "\u01b0\u0001\u0000\u0000\u0000\u0662\u0663\u0003\u008f?\u0000\u0663\u0664"+
- "\u0001\u0000\u0000\u0000\u0664\u0665\u0006\u00d0!\u0000\u0665\u0666\u0006"+
- "\u00d0\r\u0000\u0666\u0667\u0006\u00d0\u0000\u0000\u0667\u01b2\u0001\u0000"+
- "\u0000\u0000\u0668\u0669\u0007\u0014\u0000\u0000\u0669\u066a\u0007\u0002"+
- "\u0000\u0000\u066a\u066b\u0007\u0001\u0000\u0000\u066b\u066c\u0007\t\u0000"+
- "\u0000\u066c\u066d\u0007\u0011\u0000\u0000\u066d\u066e\u0001\u0000\u0000"+
- "\u0000\u066e\u066f\u0006\u00d1\r\u0000\u066f\u0670\u0006\u00d1\u0000\u0000"+
- "\u0670\u01b4\u0001\u0000\u0000\u0000\u0671\u0672\u0003\u00edn\u0000\u0672"+
- "\u0673\u0001\u0000\u0000\u0000\u0673\u0674\u0006\u00d2\u0017\u0000\u0674"+
- "\u01b6\u0001\u0000\u0000\u0000\u0675\u0676\u0003a(\u0000\u0676\u0677\u0001"+
- "\u0000\u0000\u0000\u0677\u0678\u0006\u00d3\u0018\u0000\u0678\u01b8\u0001"+
- "\u0000\u0000\u0000\u0679\u067a\u0003s1\u0000\u067a\u067b\u0001\u0000\u0000"+
- "\u0000\u067b\u067c\u0006\u00d4\u0013\u0000\u067c\u01ba\u0001\u0000\u0000"+
- "\u0000\u067d\u067e\u0003\u00c5Z\u0000\u067e\u067f\u0001\u0000\u0000\u0000"+
- "\u067f\u0680\u0006\u00d5&\u0000\u0680\u01bc\u0001\u0000\u0000\u0000\u0681"+
- "\u0682\u0003\u00c9\\\u0000\u0682\u0683\u0001\u0000\u0000\u0000\u0683\u0684"+
- "\u0006\u00d6%\u0000\u0684\u01be\u0001\u0000\u0000\u0000\u0685\u0686\u0003"+
- "E\u001a\u0000\u0686\u0687\u0001\u0000\u0000\u0000\u0687\u0688\u0006\u00d7"+
- "\f\u0000\u0688\u01c0\u0001\u0000\u0000\u0000\u0689\u068a\u0003G\u001b"+
- "\u0000\u068a\u068b\u0001\u0000\u0000\u0000\u068b\u068c\u0006\u00d8\f\u0000"+
- "\u068c\u01c2\u0001\u0000\u0000\u0000\u068d\u068e\u0003I\u001c\u0000\u068e"+
- "\u068f\u0001\u0000\u0000\u0000\u068f\u0690\u0006\u00d9\f\u0000\u0690\u01c4"+
- "\u0001\u0000\u0000\u0000\u0691\u0692\u0003K\u001d\u0000\u0692\u0693\u0001"+
- "\u0000\u0000\u0000\u0693\u0694\u0006\u00da\u0011\u0000\u0694\u0695\u0006"+
- "\u00da\r\u0000\u0695\u01c6\u0001\u0000\u0000\u0000\u0696\u0697\u0003\u00ed"+
- "n\u0000\u0697\u0698\u0001\u0000\u0000\u0000\u0698\u0699\u0006\u00db\u0017"+
- "\u0000\u0699\u069a\u0006\u00db\r\u0000\u069a\u069b\u0006\u00db(\u0000"+
- "\u069b\u01c8\u0001\u0000\u0000\u0000\u069c\u069d\u0003a(\u0000\u069d\u069e"+
- "\u0001\u0000\u0000\u0000\u069e\u069f\u0006\u00dc\u0018\u0000\u069f\u06a0"+
- "\u0006\u00dc\r\u0000\u06a0\u06a1\u0006\u00dc(\u0000\u06a1\u01ca\u0001"+
- "\u0000\u0000\u0000\u06a2\u06a3\u0003E\u001a\u0000\u06a3\u06a4\u0001\u0000"+
- "\u0000\u0000\u06a4\u06a5\u0006\u00dd\f\u0000\u06a5\u01cc\u0001\u0000\u0000"+
- "\u0000\u06a6\u06a7\u0003G\u001b\u0000\u06a7\u06a8\u0001\u0000\u0000\u0000"+
- "\u06a8\u06a9\u0006\u00de\f\u0000\u06a9\u01ce\u0001\u0000\u0000\u0000\u06aa"+
- "\u06ab\u0003I\u001c\u0000\u06ab\u06ac\u0001\u0000\u0000\u0000\u06ac\u06ad"+
- "\u0006\u00df\f\u0000\u06ad\u01d0\u0001\u0000\u0000\u0000\u06ae\u06af\u0003"+
- "s1\u0000\u06af\u06b0\u0001\u0000\u0000\u0000\u06b0\u06b1\u0006\u00e0\u0013"+
- "\u0000\u06b1\u06b2\u0006\u00e0\r\u0000\u06b2\u06b3\u0006\u00e0\u000b\u0000"+
- "\u06b3\u01d2\u0001\u0000\u0000\u0000\u06b4\u06b5\u0003q0\u0000\u06b5\u06b6"+
- "\u0001\u0000\u0000\u0000\u06b6\u06b7\u0006\u00e1\u0014\u0000\u06b7\u06b8"+
- "\u0006\u00e1\r\u0000\u06b8\u06b9\u0006\u00e1\u000b\u0000\u06b9\u01d4\u0001"+
- "\u0000\u0000\u0000\u06ba\u06bb\u0003u2\u0000\u06bb\u06bc\u0001\u0000\u0000"+
- "\u0000\u06bc\u06bd\u0006\u00e2\u0015\u0000\u06bd\u06be\u0006\u00e2\r\u0000"+
- "\u06be\u06bf\u0006\u00e2\u000b\u0000\u06bf\u01d6\u0001\u0000\u0000\u0000"+
- "\u06c0\u06c1\u0003E\u001a\u0000\u06c1\u06c2\u0001\u0000\u0000\u0000\u06c2"+
- "\u06c3\u0006\u00e3\f\u0000\u06c3\u01d8\u0001\u0000\u0000\u0000\u06c4\u06c5"+
- "\u0003G\u001b\u0000\u06c5\u06c6\u0001\u0000\u0000\u0000\u06c6\u06c7\u0006"+
- "\u00e4\f\u0000\u06c7\u01da\u0001\u0000\u0000\u0000\u06c8\u06c9\u0003I"+
- "\u001c\u0000\u06c9\u06ca\u0001\u0000\u0000\u0000\u06ca\u06cb\u0006\u00e5"+
- "\f\u0000\u06cb\u01dc\u0001\u0000\u0000\u0000\u06cc\u06cd\u0003\u00c9\\"+
- "\u0000\u06cd\u06ce\u0001\u0000\u0000\u0000\u06ce\u06cf\u0006\u00e6\r\u0000"+
- "\u06cf\u06d0\u0006\u00e6\u0000\u0000\u06d0\u06d1\u0006\u00e6%\u0000\u06d1"+
- "\u01de\u0001\u0000\u0000\u0000\u06d2\u06d3\u0003\u00c5Z\u0000\u06d3\u06d4"+
- "\u0001\u0000\u0000\u0000\u06d4\u06d5\u0006\u00e7\r\u0000\u06d5\u06d6\u0006"+
- "\u00e7\u0000\u0000\u06d6\u06d7\u0006\u00e7&\u0000\u06d7\u01e0\u0001\u0000"+
- "\u0000\u0000\u06d8\u06d9\u0003o/\u0000\u06d9\u06da\u0001\u0000\u0000\u0000"+
- "\u06da\u06db\u0006\u00e8\r\u0000\u06db\u06dc\u0006\u00e8\u0000\u0000\u06dc"+
- "\u06dd\u0006\u00e8)\u0000\u06dd\u01e2\u0001\u0000\u0000\u0000\u06de\u06df"+
- "\u0003K\u001d\u0000\u06df\u06e0\u0001\u0000\u0000\u0000\u06e0\u06e1\u0006"+
- "\u00e9\u0011\u0000\u06e1\u06e2\u0006\u00e9\r\u0000\u06e2\u01e4\u0001\u0000"+
- "\u0000\u0000\u06e3\u06e4\u0003K\u001d\u0000\u06e4\u06e5\u0001\u0000\u0000"+
- "\u0000\u06e5\u06e6\u0006\u00ea\u0011\u0000\u06e6\u06e7\u0006\u00ea\r\u0000"+
- "\u06e7\u01e6\u0001\u0000\u0000\u0000\u06e8\u06e9\u0003\u008f?\u0000\u06e9"+
- "\u06ea\u0001\u0000\u0000\u0000\u06ea\u06eb\u0006\u00eb!\u0000\u06eb\u01e8"+
- "\u0001\u0000\u0000\u0000\u06ec\u06ed\u0003i,\u0000\u06ed\u06ee\u0001\u0000"+
- "\u0000\u0000\u06ee\u06ef\u0006\u00ec\u001e\u0000\u06ef\u01ea\u0001\u0000"+
- "\u0000\u0000\u06f0\u06f1\u0003y4\u0000\u06f1\u06f2\u0001\u0000\u0000\u0000"+
- "\u06f2\u06f3\u0006\u00ed\u0019\u0000\u06f3\u01ec\u0001\u0000\u0000\u0000"+
- "\u06f4\u06f5\u0003u2\u0000\u06f5\u06f6\u0001\u0000\u0000\u0000\u06f6\u06f7"+
- "\u0006\u00ee\u0015\u0000\u06f7\u01ee\u0001\u0000\u0000\u0000\u06f8\u06f9"+
- "\u0003\u00c9\\\u0000\u06f9\u06fa\u0001\u0000\u0000\u0000\u06fa\u06fb\u0006"+
- "\u00ef%\u0000\u06fb\u01f0\u0001\u0000\u0000\u0000\u06fc\u06fd\u0003\u00c5"+
- "Z\u0000\u06fd\u06fe\u0001\u0000\u0000\u0000\u06fe\u06ff\u0006\u00f0&\u0000"+
- "\u06ff\u01f2\u0001\u0000\u0000\u0000\u0700\u0701\u0003E\u001a\u0000\u0701"+
- "\u0702\u0001\u0000\u0000\u0000\u0702\u0703\u0006\u00f1\f\u0000\u0703\u01f4"+
- "\u0001\u0000\u0000\u0000\u0704\u0705\u0003G\u001b\u0000\u0705\u0706\u0001"+
- "\u0000\u0000\u0000\u0706\u0707\u0006\u00f2\f\u0000\u0707\u01f6\u0001\u0000"+
- "\u0000\u0000\u0708\u0709\u0003I\u001c\u0000\u0709\u070a\u0001\u0000\u0000"+
- "\u0000\u070a\u070b\u0006\u00f3\f\u0000\u070b\u01f8\u0001\u0000\u0000\u0000"+
- "G\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e"+
- "\u000f\u0010\u02de\u02e8\u02ec\u02ef\u02f8\u02fa\u0305\u0318\u031d\u0326"+
- "\u032d\u0332\u0334\u033f\u0347\u034a\u034c\u0351\u0356\u035c\u0363\u0368"+
- "\u036e\u0371\u0379\u037d\u040f\u0414\u041b\u041d\u0422\u0427\u042e\u0430"+
- "\u0440\u0445\u044a\u044c\u0452\u04a3\u04a8\u04df\u04e3\u04e8\u04ed\u04f2"+
- "\u04f4\u04f8\u04fa\u0556\u055a\u055f\u05fc\u05fe*\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\u0000\u0001\u0000\u0004\u0000\u0000"+
- "\u0007\u0010\u0000\u0007N\u0000\u0005\u0000\u0000\u0007\u001e\u0000\u0007"+
- "O\u0000\u0007(\u0000\u0007\'\u0000\u0007)\u0000\u0007%\u0000\u0007Y\u0000"+
- "\u0007\u001f\u0000\u0007+\u0000\u00078\u0000\u0007L\u0000\u0007K\u0000"+
- "\u0007M\u0000\u0007#\u0000\u0007]\u0000\u0005\n\u0000\u00076\u0000\u0005"+
- "\u0007\u0000\u0007<\u0000\u0007d\u0000\u0007Q\u0000\u0007P\u0000\u0005"+
- "\f\u0000\u0005\u000f\u0000\u0007&\u0000";
+ "\u0000\u0000\u0000\u0007\u015b\u0001\u0000\u0000\u0000\u0007\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\b\u0167\u0001\u0000\u0000\u0000\b\u0169\u0001\u0000\u0000\u0000"+
+ "\b\u016b\u0001\u0000\u0000\u0000\b\u016d\u0001\u0000\u0000\u0000\b\u016f"+
+ "\u0001\u0000\u0000\u0000\b\u0171\u0001\u0000\u0000\u0000\b\u0173\u0001"+
+ "\u0000\u0000\u0000\t\u0175\u0001\u0000\u0000\u0000\t\u0177\u0001\u0000"+
+ "\u0000\u0000\t\u0179\u0001\u0000\u0000\u0000\t\u017b\u0001\u0000\u0000"+
+ "\u0000\t\u017d\u0001\u0000\u0000\u0000\n\u017f\u0001\u0000\u0000\u0000"+
+ "\n\u0181\u0001\u0000\u0000\u0000\n\u0183\u0001\u0000\u0000\u0000\n\u0185"+
+ "\u0001\u0000\u0000\u0000\n\u0187\u0001\u0000\u0000\u0000\n\u0189\u0001"+
+ "\u0000\u0000\u0000\u000b\u018b\u0001\u0000\u0000\u0000\u000b\u018d\u0001"+
+ "\u0000\u0000\u0000\u000b\u018f\u0001\u0000\u0000\u0000\u000b\u0191\u0001"+
+ "\u0000\u0000\u0000\u000b\u0193\u0001\u0000\u0000\u0000\u000b\u0195\u0001"+
+ "\u0000\u0000\u0000\u000b\u0197\u0001\u0000\u0000\u0000\u000b\u0199\u0001"+
+ "\u0000\u0000\u0000\u000b\u019b\u0001\u0000\u0000\u0000\u000b\u019d\u0001"+
+ "\u0000\u0000\u0000\f\u019f\u0001\u0000\u0000\u0000\f\u01a1\u0001\u0000"+
+ "\u0000\u0000\f\u01a3\u0001\u0000\u0000\u0000\f\u01a5\u0001\u0000\u0000"+
+ "\u0000\f\u01a7\u0001\u0000\u0000\u0000\f\u01a9\u0001\u0000\u0000\u0000"+
+ "\f\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\r\u01b9\u0001\u0000\u0000\u0000\r\u01bb\u0001\u0000\u0000"+
+ "\u0000\r\u01bd\u0001\u0000\u0000\u0000\r\u01bf\u0001\u0000\u0000\u0000"+
+ "\r\u01c1\u0001\u0000\u0000\u0000\r\u01c3\u0001\u0000\u0000\u0000\r\u01c5"+
+ "\u0001\u0000\u0000\u0000\u000e\u01c7\u0001\u0000\u0000\u0000\u000e\u01c9"+
+ "\u0001\u0000\u0000\u0000\u000e\u01cb\u0001\u0000\u0000\u0000\u000e\u01cd"+
+ "\u0001\u0000\u0000\u0000\u000e\u01cf\u0001\u0000\u0000\u0000\u000e\u01d1"+
+ "\u0001\u0000\u0000\u0000\u000f\u01d3\u0001\u0000\u0000\u0000\u000f\u01d5"+
+ "\u0001\u0000\u0000\u0000\u000f\u01d7\u0001\u0000\u0000\u0000\u000f\u01d9"+
+ "\u0001\u0000\u0000\u0000\u000f\u01db\u0001\u0000\u0000\u0000\u000f\u01dd"+
+ "\u0001\u0000\u0000\u0000\u000f\u01df\u0001\u0000\u0000\u0000\u000f\u01e1"+
+ "\u0001\u0000\u0000\u0000\u000f\u01e3\u0001\u0000\u0000\u0000\u000f\u01e5"+
+ "\u0001\u0000\u0000\u0000\u0010\u01e7\u0001\u0000\u0000\u0000\u0010\u01e9"+
+ "\u0001\u0000\u0000\u0000\u0010\u01eb\u0001\u0000\u0000\u0000\u0010\u01ed"+
+ "\u0001\u0000\u0000\u0000\u0010\u01ef\u0001\u0000\u0000\u0000\u0010\u01f1"+
+ "\u0001\u0000\u0000\u0000\u0010\u01f3\u0001\u0000\u0000\u0000\u0010\u01f5"+
+ "\u0001\u0000\u0000\u0000\u0010\u01f7\u0001\u0000\u0000\u0000\u0010\u01f9"+
+ "\u0001\u0000\u0000\u0000\u0011\u01fb\u0001\u0000\u0000\u0000\u0013\u0205"+
+ "\u0001\u0000\u0000\u0000\u0015\u020c\u0001\u0000\u0000\u0000\u0017\u0215"+
+ "\u0001\u0000\u0000\u0000\u0019\u021c\u0001\u0000\u0000\u0000\u001b\u0226"+
+ "\u0001\u0000\u0000\u0000\u001d\u022d\u0001\u0000\u0000\u0000\u001f\u0234"+
+ "\u0001\u0000\u0000\u0000!\u023b\u0001\u0000\u0000\u0000#\u0243\u0001\u0000"+
+ "\u0000\u0000%\u024f\u0001\u0000\u0000\u0000\'\u0258\u0001\u0000\u0000"+
+ "\u0000)\u025e\u0001\u0000\u0000\u0000+\u0265\u0001\u0000\u0000\u0000-"+
+ "\u026c\u0001\u0000\u0000\u0000/\u0274\u0001\u0000\u0000\u00001\u027c\u0001"+
+ "\u0000\u0000\u00003\u0285\u0001\u0000\u0000\u00005\u0294\u0001\u0000\u0000"+
+ "\u00007\u02a2\u0001\u0000\u0000\u00009\u02b1\u0001\u0000\u0000\u0000;"+
+ "\u02bd\u0001\u0000\u0000\u0000=\u02c8\u0001\u0000\u0000\u0000?\u02d2\u0001"+
+ "\u0000\u0000\u0000A\u02da\u0001\u0000\u0000\u0000C\u02e2\u0001\u0000\u0000"+
+ "\u0000E\u02ec\u0001\u0000\u0000\u0000G\u02f2\u0001\u0000\u0000\u0000I"+
+ "\u0303\u0001\u0000\u0000\u0000K\u0313\u0001\u0000\u0000\u0000M\u0319\u0001"+
+ "\u0000\u0000\u0000O\u031d\u0001\u0000\u0000\u0000Q\u031f\u0001\u0000\u0000"+
+ "\u0000S\u0321\u0001\u0000\u0000\u0000U\u0324\u0001\u0000\u0000\u0000W"+
+ "\u0326\u0001\u0000\u0000\u0000Y\u032f\u0001\u0000\u0000\u0000[\u0331\u0001"+
+ "\u0000\u0000\u0000]\u0336\u0001\u0000\u0000\u0000_\u0338\u0001\u0000\u0000"+
+ "\u0000a\u033d\u0001\u0000\u0000\u0000c\u035c\u0001\u0000\u0000\u0000e"+
+ "\u035f\u0001\u0000\u0000\u0000g\u038d\u0001\u0000\u0000\u0000i\u038f\u0001"+
+ "\u0000\u0000\u0000k\u0393\u0001\u0000\u0000\u0000m\u0396\u0001\u0000\u0000"+
+ "\u0000o\u039a\u0001\u0000\u0000\u0000q\u039c\u0001\u0000\u0000\u0000s"+
+ "\u039f\u0001\u0000\u0000\u0000u\u03a2\u0001\u0000\u0000\u0000w\u03a4\u0001"+
+ "\u0000\u0000\u0000y\u03a6\u0001\u0000\u0000\u0000{\u03ab\u0001\u0000\u0000"+
+ "\u0000}\u03ad\u0001\u0000\u0000\u0000\u007f\u03b3\u0001\u0000\u0000\u0000"+
+ "\u0081\u03b9\u0001\u0000\u0000\u0000\u0083\u03bc\u0001\u0000\u0000\u0000"+
+ "\u0085\u03bf\u0001\u0000\u0000\u0000\u0087\u03c4\u0001\u0000\u0000\u0000"+
+ "\u0089\u03c9\u0001\u0000\u0000\u0000\u008b\u03cb\u0001\u0000\u0000\u0000"+
+ "\u008d\u03cf\u0001\u0000\u0000\u0000\u008f\u03d4\u0001\u0000\u0000\u0000"+
+ "\u0091\u03da\u0001\u0000\u0000\u0000\u0093\u03dd\u0001\u0000\u0000\u0000"+
+ "\u0095\u03e0\u0001\u0000\u0000\u0000\u0097\u03e2\u0001\u0000\u0000\u0000"+
+ "\u0099\u03e8\u0001\u0000\u0000\u0000\u009b\u03ea\u0001\u0000\u0000\u0000"+
+ "\u009d\u03ef\u0001\u0000\u0000\u0000\u009f\u03f4\u0001\u0000\u0000\u0000"+
+ "\u00a1\u03f7\u0001\u0000\u0000\u0000\u00a3\u03fa\u0001\u0000\u0000\u0000"+
+ "\u00a5\u03fd\u0001\u0000\u0000\u0000\u00a7\u03ff\u0001\u0000\u0000\u0000"+
+ "\u00a9\u0402\u0001\u0000\u0000\u0000\u00ab\u0404\u0001\u0000\u0000\u0000"+
+ "\u00ad\u0407\u0001\u0000\u0000\u0000\u00af\u0409\u0001\u0000\u0000\u0000"+
+ "\u00b1\u040b\u0001\u0000\u0000\u0000\u00b3\u040d\u0001\u0000\u0000\u0000"+
+ "\u00b5\u040f\u0001\u0000\u0000\u0000\u00b7\u0411\u0001\u0000\u0000\u0000"+
+ "\u00b9\u0413\u0001\u0000\u0000\u0000\u00bb\u0415\u0001\u0000\u0000\u0000"+
+ "\u00bd\u0418\u0001\u0000\u0000\u0000\u00bf\u042d\u0001\u0000\u0000\u0000"+
+ "\u00c1\u0440\u0001\u0000\u0000\u0000\u00c3\u0442\u0001\u0000\u0000\u0000"+
+ "\u00c5\u0447\u0001\u0000\u0000\u0000\u00c7\u045c\u0001\u0000\u0000\u0000"+
+ "\u00c9\u045e\u0001\u0000\u0000\u0000\u00cb\u0466\u0001\u0000\u0000\u0000"+
+ "\u00cd\u0468\u0001\u0000\u0000\u0000\u00cf\u046c\u0001\u0000\u0000\u0000"+
+ "\u00d1\u0470\u0001\u0000\u0000\u0000\u00d3\u0474\u0001\u0000\u0000\u0000"+
+ "\u00d5\u0479\u0001\u0000\u0000\u0000\u00d7\u047e\u0001\u0000\u0000\u0000"+
+ "\u00d9\u0482\u0001\u0000\u0000\u0000\u00db\u0486\u0001\u0000\u0000\u0000"+
+ "\u00dd\u048a\u0001\u0000\u0000\u0000\u00df\u048f\u0001\u0000\u0000\u0000"+
+ "\u00e1\u0493\u0001\u0000\u0000\u0000\u00e3\u0497\u0001\u0000\u0000\u0000"+
+ "\u00e5\u049b\u0001\u0000\u0000\u0000\u00e7\u049f\u0001\u0000\u0000\u0000"+
+ "\u00e9\u04a3\u0001\u0000\u0000\u0000\u00eb\u04a7\u0001\u0000\u0000\u0000"+
+ "\u00ed\u04b3\u0001\u0000\u0000\u0000\u00ef\u04b6\u0001\u0000\u0000\u0000"+
+ "\u00f1\u04ba\u0001\u0000\u0000\u0000\u00f3\u04be\u0001\u0000\u0000\u0000"+
+ "\u00f5\u04c2\u0001\u0000\u0000\u0000\u00f7\u04c6\u0001\u0000\u0000\u0000"+
+ "\u00f9\u04ca\u0001\u0000\u0000\u0000\u00fb\u04ce\u0001\u0000\u0000\u0000"+
+ "\u00fd\u04d3\u0001\u0000\u0000\u0000\u00ff\u04d7\u0001\u0000\u0000\u0000"+
+ "\u0101\u04db\u0001\u0000\u0000\u0000\u0103\u04df\u0001\u0000\u0000\u0000"+
+ "\u0105\u04e3\u0001\u0000\u0000\u0000\u0107\u04e7\u0001\u0000\u0000\u0000"+
+ "\u0109\u04ef\u0001\u0000\u0000\u0000\u010b\u0504\u0001\u0000\u0000\u0000"+
+ "\u010d\u0508\u0001\u0000\u0000\u0000\u010f\u050c\u0001\u0000\u0000\u0000"+
+ "\u0111\u0510\u0001\u0000\u0000\u0000\u0113\u0514\u0001\u0000\u0000\u0000"+
+ "\u0115\u0518\u0001\u0000\u0000\u0000\u0117\u051d\u0001\u0000\u0000\u0000"+
+ "\u0119\u0521\u0001\u0000\u0000\u0000\u011b\u0525\u0001\u0000\u0000\u0000"+
+ "\u011d\u0529\u0001\u0000\u0000\u0000\u011f\u052d\u0001\u0000\u0000\u0000"+
+ "\u0121\u0531\u0001\u0000\u0000\u0000\u0123\u0535\u0001\u0000\u0000\u0000"+
+ "\u0125\u0539\u0001\u0000\u0000\u0000\u0127\u053d\u0001\u0000\u0000\u0000"+
+ "\u0129\u0541\u0001\u0000\u0000\u0000\u012b\u0545\u0001\u0000\u0000\u0000"+
+ "\u012d\u0549\u0001\u0000\u0000\u0000\u012f\u054d\u0001\u0000\u0000\u0000"+
+ "\u0131\u0552\u0001\u0000\u0000\u0000\u0133\u0557\u0001\u0000\u0000\u0000"+
+ "\u0135\u055c\u0001\u0000\u0000\u0000\u0137\u0561\u0001\u0000\u0000\u0000"+
+ "\u0139\u056a\u0001\u0000\u0000\u0000\u013b\u0571\u0001\u0000\u0000\u0000"+
+ "\u013d\u0575\u0001\u0000\u0000\u0000\u013f\u0579\u0001\u0000\u0000\u0000"+
+ "\u0141\u057d\u0001\u0000\u0000\u0000\u0143\u0581\u0001\u0000\u0000\u0000"+
+ "\u0145\u0587\u0001\u0000\u0000\u0000\u0147\u058b\u0001\u0000\u0000\u0000"+
+ "\u0149\u058f\u0001\u0000\u0000\u0000\u014b\u0593\u0001\u0000\u0000\u0000"+
+ "\u014d\u0597\u0001\u0000\u0000\u0000\u014f\u059b\u0001\u0000\u0000\u0000"+
+ "\u0151\u059f\u0001\u0000\u0000\u0000\u0153\u05a3\u0001\u0000\u0000\u0000"+
+ "\u0155\u05a7\u0001\u0000\u0000\u0000\u0157\u05ab\u0001\u0000\u0000\u0000"+
+ "\u0159\u05af\u0001\u0000\u0000\u0000\u015b\u05b3\u0001\u0000\u0000\u0000"+
+ "\u015d\u05b7\u0001\u0000\u0000\u0000\u015f\u05bb\u0001\u0000\u0000\u0000"+
+ "\u0161\u05c0\u0001\u0000\u0000\u0000\u0163\u05c4\u0001\u0000\u0000\u0000"+
+ "\u0165\u05c8\u0001\u0000\u0000\u0000\u0167\u05cc\u0001\u0000\u0000\u0000"+
+ "\u0169\u05d0\u0001\u0000\u0000\u0000\u016b\u05d4\u0001\u0000\u0000\u0000"+
+ "\u016d\u05d8\u0001\u0000\u0000\u0000\u016f\u05dc\u0001\u0000\u0000\u0000"+
+ "\u0171\u05e0\u0001\u0000\u0000\u0000\u0173\u05e4\u0001\u0000\u0000\u0000"+
+ "\u0175\u05e8\u0001\u0000\u0000\u0000\u0177\u05ed\u0001\u0000\u0000\u0000"+
+ "\u0179\u05f2\u0001\u0000\u0000\u0000\u017b\u05f6\u0001\u0000\u0000\u0000"+
+ "\u017d\u05fa\u0001\u0000\u0000\u0000\u017f\u05fe\u0001\u0000\u0000\u0000"+
+ "\u0181\u0603\u0001\u0000\u0000\u0000\u0183\u060c\u0001\u0000\u0000\u0000"+
+ "\u0185\u0610\u0001\u0000\u0000\u0000\u0187\u0614\u0001\u0000\u0000\u0000"+
+ "\u0189\u0618\u0001\u0000\u0000\u0000\u018b\u061c\u0001\u0000\u0000\u0000"+
+ "\u018d\u0621\u0001\u0000\u0000\u0000\u018f\u0625\u0001\u0000\u0000\u0000"+
+ "\u0191\u0629\u0001\u0000\u0000\u0000\u0193\u062d\u0001\u0000\u0000\u0000"+
+ "\u0195\u0632\u0001\u0000\u0000\u0000\u0197\u0636\u0001\u0000\u0000\u0000"+
+ "\u0199\u063a\u0001\u0000\u0000\u0000\u019b\u063e\u0001\u0000\u0000\u0000"+
+ "\u019d\u0642\u0001\u0000\u0000\u0000\u019f\u0646\u0001\u0000\u0000\u0000"+
+ "\u01a1\u064c\u0001\u0000\u0000\u0000\u01a3\u0650\u0001\u0000\u0000\u0000"+
+ "\u01a5\u0654\u0001\u0000\u0000\u0000\u01a7\u0658\u0001\u0000\u0000\u0000"+
+ "\u01a9\u065c\u0001\u0000\u0000\u0000\u01ab\u0660\u0001\u0000\u0000\u0000"+
+ "\u01ad\u0664\u0001\u0000\u0000\u0000\u01af\u0669\u0001\u0000\u0000\u0000"+
+ "\u01b1\u066e\u0001\u0000\u0000\u0000\u01b3\u0672\u0001\u0000\u0000\u0000"+
+ "\u01b5\u0678\u0001\u0000\u0000\u0000\u01b7\u0681\u0001\u0000\u0000\u0000"+
+ "\u01b9\u0685\u0001\u0000\u0000\u0000\u01bb\u0689\u0001\u0000\u0000\u0000"+
+ "\u01bd\u068d\u0001\u0000\u0000\u0000\u01bf\u0691\u0001\u0000\u0000\u0000"+
+ "\u01c1\u0695\u0001\u0000\u0000\u0000\u01c3\u0699\u0001\u0000\u0000\u0000"+
+ "\u01c5\u069d\u0001\u0000\u0000\u0000\u01c7\u06a1\u0001\u0000\u0000\u0000"+
+ "\u01c9\u06a6\u0001\u0000\u0000\u0000\u01cb\u06ac\u0001\u0000\u0000\u0000"+
+ "\u01cd\u06b2\u0001\u0000\u0000\u0000\u01cf\u06b6\u0001\u0000\u0000\u0000"+
+ "\u01d1\u06ba\u0001\u0000\u0000\u0000\u01d3\u06be\u0001\u0000\u0000\u0000"+
+ "\u01d5\u06c4\u0001\u0000\u0000\u0000\u01d7\u06ca\u0001\u0000\u0000\u0000"+
+ "\u01d9\u06d0\u0001\u0000\u0000\u0000\u01db\u06d4\u0001\u0000\u0000\u0000"+
+ "\u01dd\u06d8\u0001\u0000\u0000\u0000\u01df\u06dc\u0001\u0000\u0000\u0000"+
+ "\u01e1\u06e2\u0001\u0000\u0000\u0000\u01e3\u06e8\u0001\u0000\u0000\u0000"+
+ "\u01e5\u06ee\u0001\u0000\u0000\u0000\u01e7\u06f3\u0001\u0000\u0000\u0000"+
+ "\u01e9\u06f8\u0001\u0000\u0000\u0000\u01eb\u06fc\u0001\u0000\u0000\u0000"+
+ "\u01ed\u0700\u0001\u0000\u0000\u0000\u01ef\u0704\u0001\u0000\u0000\u0000"+
+ "\u01f1\u0708\u0001\u0000\u0000\u0000\u01f3\u070c\u0001\u0000\u0000\u0000"+
+ "\u01f5\u0710\u0001\u0000\u0000\u0000\u01f7\u0714\u0001\u0000\u0000\u0000"+
+ "\u01f9\u0718\u0001\u0000\u0000\u0000\u01fb\u01fc\u0007\u0000\u0000\u0000"+
+ "\u01fc\u01fd\u0007\u0001\u0000\u0000\u01fd\u01fe\u0007\u0002\u0000\u0000"+
+ "\u01fe\u01ff\u0007\u0002\u0000\u0000\u01ff\u0200\u0007\u0003\u0000\u0000"+
+ "\u0200\u0201\u0007\u0004\u0000\u0000\u0201\u0202\u0007\u0005\u0000\u0000"+
+ "\u0202\u0203\u0001\u0000\u0000\u0000\u0203\u0204\u0006\u0000\u0000\u0000"+
+ "\u0204\u0012\u0001\u0000\u0000\u0000\u0205\u0206\u0007\u0000\u0000\u0000"+
+ "\u0206\u0207\u0007\u0006\u0000\u0000\u0207\u0208\u0007\u0007\u0000\u0000"+
+ "\u0208\u0209\u0007\b\u0000\u0000\u0209\u020a\u0001\u0000\u0000\u0000\u020a"+
+ "\u020b\u0006\u0001\u0001\u0000\u020b\u0014\u0001\u0000\u0000\u0000\u020c"+
+ "\u020d\u0007\u0003\u0000\u0000\u020d\u020e\u0007\t\u0000\u0000\u020e\u020f"+
+ "\u0007\u0006\u0000\u0000\u020f\u0210\u0007\u0001\u0000\u0000\u0210\u0211"+
+ "\u0007\u0004\u0000\u0000\u0211\u0212\u0007\n\u0000\u0000\u0212\u0213\u0001"+
+ "\u0000\u0000\u0000\u0213\u0214\u0006\u0002\u0002\u0000\u0214\u0016\u0001"+
+ "\u0000\u0000\u0000\u0215\u0216\u0007\u0003\u0000\u0000\u0216\u0217\u0007"+
+ "\u000b\u0000\u0000\u0217\u0218\u0007\f\u0000\u0000\u0218\u0219\u0007\r"+
+ "\u0000\u0000\u0219\u021a\u0001\u0000\u0000\u0000\u021a\u021b\u0006\u0003"+
+ "\u0000\u0000\u021b\u0018\u0001\u0000\u0000\u0000\u021c\u021d\u0007\u0003"+
+ "\u0000\u0000\u021d\u021e\u0007\u000e\u0000\u0000\u021e\u021f\u0007\b\u0000"+
+ "\u0000\u021f\u0220\u0007\r\u0000\u0000\u0220\u0221\u0007\f\u0000\u0000"+
+ "\u0221\u0222\u0007\u0001\u0000\u0000\u0222\u0223\u0007\t\u0000\u0000\u0223"+
+ "\u0224\u0001\u0000\u0000\u0000\u0224\u0225\u0006\u0004\u0003\u0000\u0225"+
+ "\u001a\u0001\u0000\u0000\u0000\u0226\u0227\u0007\u000f\u0000\u0000\u0227"+
+ "\u0228\u0007\u0006\u0000\u0000\u0228\u0229\u0007\u0007\u0000\u0000\u0229"+
+ "\u022a\u0007\u0010\u0000\u0000\u022a\u022b\u0001\u0000\u0000\u0000\u022b"+
+ "\u022c\u0006\u0005\u0004\u0000\u022c\u001c\u0001\u0000\u0000\u0000\u022d"+
+ "\u022e\u0007\u0011\u0000\u0000\u022e\u022f\u0007\u0006\u0000\u0000\u022f"+
+ "\u0230\u0007\u0007\u0000\u0000\u0230\u0231\u0007\u0012\u0000\u0000\u0231"+
+ "\u0232\u0001\u0000\u0000\u0000\u0232\u0233\u0006\u0006\u0000\u0000\u0233"+
+ "\u001e\u0001\u0000\u0000\u0000\u0234\u0235\u0007\u0012\u0000\u0000\u0235"+
+ "\u0236\u0007\u0003\u0000\u0000\u0236\u0237\u0007\u0003\u0000\u0000\u0237"+
+ "\u0238\u0007\b\u0000\u0000\u0238\u0239\u0001\u0000\u0000\u0000\u0239\u023a"+
+ "\u0006\u0007\u0001\u0000\u023a \u0001\u0000\u0000\u0000\u023b\u023c\u0007"+
+ "\r\u0000\u0000\u023c\u023d\u0007\u0001\u0000\u0000\u023d\u023e\u0007\u0010"+
+ "\u0000\u0000\u023e\u023f\u0007\u0001\u0000\u0000\u023f\u0240\u0007\u0005"+
+ "\u0000\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0006\b\u0000"+
+ "\u0000\u0242\"\u0001\u0000\u0000\u0000\u0243\u0244\u0007\u0010\u0000\u0000"+
+ "\u0244\u0245\u0007\u000b\u0000\u0000\u0245\u0246\u0005_\u0000\u0000\u0246"+
+ "\u0247\u0007\u0003\u0000\u0000\u0247\u0248\u0007\u000e\u0000\u0000\u0248"+
+ "\u0249\u0007\b\u0000\u0000\u0249\u024a\u0007\f\u0000\u0000\u024a\u024b"+
+ "\u0007\t\u0000\u0000\u024b\u024c\u0007\u0000\u0000\u0000\u024c\u024d\u0001"+
+ "\u0000\u0000\u0000\u024d\u024e\u0006\t\u0005\u0000\u024e$\u0001\u0000"+
+ "\u0000\u0000\u024f\u0250\u0007\u0006\u0000\u0000\u0250\u0251\u0007\u0003"+
+ "\u0000\u0000\u0251\u0252\u0007\t\u0000\u0000\u0252\u0253\u0007\f\u0000"+
+ "\u0000\u0253\u0254\u0007\u0010\u0000\u0000\u0254\u0255\u0007\u0003\u0000"+
+ "\u0000\u0255\u0256\u0001\u0000\u0000\u0000\u0256\u0257\u0006\n\u0006\u0000"+
+ "\u0257&\u0001\u0000\u0000\u0000\u0258\u0259\u0007\u0006\u0000\u0000\u0259"+
+ "\u025a\u0007\u0007\u0000\u0000\u025a\u025b\u0007\u0013\u0000\u0000\u025b"+
+ "\u025c\u0001\u0000\u0000\u0000\u025c\u025d\u0006\u000b\u0000\u0000\u025d"+
+ "(\u0001\u0000\u0000\u0000\u025e\u025f\u0007\u0002\u0000\u0000\u025f\u0260"+
+ "\u0007\n\u0000\u0000\u0260\u0261\u0007\u0007\u0000\u0000\u0261\u0262\u0007"+
+ "\u0013\u0000\u0000\u0262\u0263\u0001\u0000\u0000\u0000\u0263\u0264\u0006"+
+ "\f\u0007\u0000\u0264*\u0001\u0000\u0000\u0000\u0265\u0266\u0007\u0002"+
+ "\u0000\u0000\u0266\u0267\u0007\u0007\u0000\u0000\u0267\u0268\u0007\u0006"+
+ "\u0000\u0000\u0268\u0269\u0007\u0005\u0000\u0000\u0269\u026a\u0001\u0000"+
+ "\u0000\u0000\u026a\u026b\u0006\r\u0000\u0000\u026b,\u0001\u0000\u0000"+
+ "\u0000\u026c\u026d\u0007\u0002\u0000\u0000\u026d\u026e\u0007\u0005\u0000"+
+ "\u0000\u026e\u026f\u0007\f\u0000\u0000\u026f\u0270\u0007\u0005\u0000\u0000"+
+ "\u0270\u0271\u0007\u0002\u0000\u0000\u0271\u0272\u0001\u0000\u0000\u0000"+
+ "\u0272\u0273\u0006\u000e\u0000\u0000\u0273.\u0001\u0000\u0000\u0000\u0274"+
+ "\u0275\u0007\u0013\u0000\u0000\u0275\u0276\u0007\n\u0000\u0000\u0276\u0277"+
+ "\u0007\u0003\u0000\u0000\u0277\u0278\u0007\u0006\u0000\u0000\u0278\u0279"+
+ "\u0007\u0003\u0000\u0000\u0279\u027a\u0001\u0000\u0000\u0000\u027a\u027b"+
+ "\u0006\u000f\u0000\u0000\u027b0\u0001\u0000\u0000\u0000\u027c\u027d\u0007"+
+ "\r\u0000\u0000\u027d\u027e\u0007\u0007\u0000\u0000\u027e\u027f\u0007\u0007"+
+ "\u0000\u0000\u027f\u0280\u0007\u0012\u0000\u0000\u0280\u0281\u0007\u0014"+
+ "\u0000\u0000\u0281\u0282\u0007\b\u0000\u0000\u0282\u0283\u0001\u0000\u0000"+
+ "\u0000\u0283\u0284\u0006\u0010\b\u0000\u02842\u0001\u0000\u0000\u0000"+
+ "\u0285\u0286\u0007\u0004\u0000\u0000\u0286\u0287\u0007\n\u0000\u0000\u0287"+
+ "\u0288\u0007\f\u0000\u0000\u0288\u0289\u0007\t\u0000\u0000\u0289\u028a"+
+ "\u0007\u0011\u0000\u0000\u028a\u028b\u0007\u0003\u0000\u0000\u028b\u028c"+
+ "\u0005_\u0000\u0000\u028c\u028d\u0007\b\u0000\u0000\u028d\u028e\u0007"+
+ "\u0007\u0000\u0000\u028e\u028f\u0007\u0001\u0000\u0000\u028f\u0290\u0007"+
+ "\t\u0000\u0000\u0290\u0291\u0007\u0005\u0000\u0000\u0291\u0292\u0001\u0000"+
+ "\u0000\u0000\u0292\u0293\u0006\u0011\t\u0000\u02934\u0001\u0000\u0000"+
+ "\u0000\u0294\u0295\u0004\u0012\u0000\u0000\u0295\u0296\u0007\u0004\u0000"+
+ "\u0000\u0296\u0297\u0007\u0007\u0000\u0000\u0297\u0298\u0007\u0010\u0000"+
+ "\u0000\u0298\u0299\u0007\b\u0000\u0000\u0299\u029a\u0007\r\u0000\u0000"+
+ "\u029a\u029b\u0007\u0003\u0000\u0000\u029b\u029c\u0007\u0005\u0000\u0000"+
+ "\u029c\u029d\u0007\u0001\u0000\u0000\u029d\u029e\u0007\u0007\u0000\u0000"+
+ "\u029e\u029f\u0007\t\u0000\u0000\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0"+
+ "\u02a1\u0006\u0012\u0000\u0000\u02a16\u0001\u0000\u0000\u0000\u02a2\u02a3"+
+ "\u0004\u0013\u0001\u0000\u02a3\u02a4\u0007\u0001\u0000\u0000\u02a4\u02a5"+
+ "\u0007\t\u0000\u0000\u02a5\u02a6\u0007\r\u0000\u0000\u02a6\u02a7\u0007"+
+ "\u0001\u0000\u0000\u02a7\u02a8\u0007\t\u0000\u0000\u02a8\u02a9\u0007\u0003"+
+ "\u0000\u0000\u02a9\u02aa\u0007\u0002\u0000\u0000\u02aa\u02ab\u0007\u0005"+
+ "\u0000\u0000\u02ab\u02ac\u0007\f\u0000\u0000\u02ac\u02ad\u0007\u0005\u0000"+
+ "\u0000\u02ad\u02ae\u0007\u0002\u0000\u0000\u02ae\u02af\u0001\u0000\u0000"+
+ "\u0000\u02af\u02b0\u0006\u0013\u0000\u0000\u02b08\u0001\u0000\u0000\u0000"+
+ "\u02b1\u02b2\u0004\u0014\u0002\u0000\u02b2\u02b3\u0007\r\u0000\u0000\u02b3"+
+ "\u02b4\u0007\u0007\u0000\u0000\u02b4\u02b5\u0007\u0007\u0000\u0000\u02b5"+
+ "\u02b6\u0007\u0012\u0000\u0000\u02b6\u02b7\u0007\u0014\u0000\u0000\u02b7"+
+ "\u02b8\u0007\b\u0000\u0000\u02b8\u02b9\u0005_\u0000\u0000\u02b9\u02ba"+
+ "\u0005\u8001\uf414\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb"+
+ "\u02bc\u0006\u0014\n\u0000\u02bc:\u0001\u0000\u0000\u0000\u02bd\u02be"+
+ "\u0004\u0015\u0003\u0000\u02be\u02bf\u0007\u0010\u0000\u0000\u02bf\u02c0"+
+ "\u0007\u0003\u0000\u0000\u02c0\u02c1\u0007\u0005\u0000\u0000\u02c1\u02c2"+
+ "\u0007\u0006\u0000\u0000\u02c2\u02c3\u0007\u0001\u0000\u0000\u02c3\u02c4"+
+ "\u0007\u0004\u0000\u0000\u02c4\u02c5\u0007\u0002\u0000\u0000\u02c5\u02c6"+
+ "\u0001\u0000\u0000\u0000\u02c6\u02c7\u0006\u0015\u000b\u0000\u02c7<\u0001"+
+ "\u0000\u0000\u0000\u02c8\u02c9\u0004\u0016\u0004\u0000\u02c9\u02ca\u0007"+
+ "\u0006\u0000\u0000\u02ca\u02cb\u0007\u0003\u0000\u0000\u02cb\u02cc\u0007"+
+ "\u0006\u0000\u0000\u02cc\u02cd\u0007\f\u0000\u0000\u02cd\u02ce\u0007\t"+
+ "\u0000\u0000\u02ce\u02cf\u0007\u0012\u0000\u0000\u02cf\u02d0\u0001\u0000"+
+ "\u0000\u0000\u02d0\u02d1\u0006\u0016\u0000\u0000\u02d1>\u0001\u0000\u0000"+
+ "\u0000\u02d2\u02d3\u0004\u0017\u0005\u0000\u02d3\u02d4\u0007\u000f\u0000"+
+ "\u0000\u02d4\u02d5\u0007\u0014\u0000\u0000\u02d5\u02d6\u0007\r\u0000\u0000"+
+ "\u02d6\u02d7\u0007\r\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8"+
+ "\u02d9\u0006\u0017\b\u0000\u02d9@\u0001\u0000\u0000\u0000\u02da\u02db"+
+ "\u0004\u0018\u0006\u0000\u02db\u02dc\u0007\r\u0000\u0000\u02dc\u02dd\u0007"+
+ "\u0003\u0000\u0000\u02dd\u02de\u0007\u000f\u0000\u0000\u02de\u02df\u0007"+
+ "\u0005\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000\u02e0\u02e1\u0006"+
+ "\u0018\b\u0000\u02e1B\u0001\u0000\u0000\u0000\u02e2\u02e3\u0004\u0019"+
+ "\u0007\u0000\u02e3\u02e4\u0007\u0006\u0000\u0000\u02e4\u02e5\u0007\u0001"+
+ "\u0000\u0000\u02e5\u02e6\u0007\u0011\u0000\u0000\u02e6\u02e7\u0007\n\u0000"+
+ "\u0000\u02e7\u02e8\u0007\u0005\u0000\u0000\u02e8\u02e9\u0001\u0000\u0000"+
+ "\u0000\u02e9\u02ea\u0006\u0019\b\u0000\u02eaD\u0001\u0000\u0000\u0000"+
+ "\u02eb\u02ed\b\u0015\u0000\u0000\u02ec\u02eb\u0001\u0000\u0000\u0000\u02ed"+
+ "\u02ee\u0001\u0000\u0000\u0000\u02ee\u02ec\u0001\u0000\u0000\u0000\u02ee"+
+ "\u02ef\u0001\u0000\u0000\u0000\u02ef\u02f0\u0001\u0000\u0000\u0000\u02f0"+
+ "\u02f1\u0006\u001a\u0000\u0000\u02f1F\u0001\u0000\u0000\u0000\u02f2\u02f3"+
+ "\u0005/\u0000\u0000\u02f3\u02f4\u0005/\u0000\u0000\u02f4\u02f8\u0001\u0000"+
+ "\u0000\u0000\u02f5\u02f7\b\u0016\u0000\u0000\u02f6\u02f5\u0001\u0000\u0000"+
+ "\u0000\u02f7\u02fa\u0001\u0000\u0000\u0000\u02f8\u02f6\u0001\u0000\u0000"+
+ "\u0000\u02f8\u02f9\u0001\u0000\u0000\u0000\u02f9\u02fc\u0001\u0000\u0000"+
+ "\u0000\u02fa\u02f8\u0001\u0000\u0000\u0000\u02fb\u02fd\u0005\r\u0000\u0000"+
+ "\u02fc\u02fb\u0001\u0000\u0000\u0000\u02fc\u02fd\u0001\u0000\u0000\u0000"+
+ "\u02fd\u02ff\u0001\u0000\u0000\u0000\u02fe\u0300\u0005\n\u0000\u0000\u02ff"+
+ "\u02fe\u0001\u0000\u0000\u0000\u02ff\u0300\u0001\u0000\u0000\u0000\u0300"+
+ "\u0301\u0001\u0000\u0000\u0000\u0301\u0302\u0006\u001b\f\u0000\u0302H"+
+ "\u0001\u0000\u0000\u0000\u0303\u0304\u0005/\u0000\u0000\u0304\u0305\u0005"+
+ "*\u0000\u0000\u0305\u030a\u0001\u0000\u0000\u0000\u0306\u0309\u0003I\u001c"+
+ "\u0000\u0307\u0309\t\u0000\u0000\u0000\u0308\u0306\u0001\u0000\u0000\u0000"+
+ "\u0308\u0307\u0001\u0000\u0000\u0000\u0309\u030c\u0001\u0000\u0000\u0000"+
+ "\u030a\u030b\u0001\u0000\u0000\u0000\u030a\u0308\u0001\u0000\u0000\u0000"+
+ "\u030b\u030d\u0001\u0000\u0000\u0000\u030c\u030a\u0001\u0000\u0000\u0000"+
+ "\u030d\u030e\u0005*\u0000\u0000\u030e\u030f\u0005/\u0000\u0000\u030f\u0310"+
+ "\u0001\u0000\u0000\u0000\u0310\u0311\u0006\u001c\f\u0000\u0311J\u0001"+
+ "\u0000\u0000\u0000\u0312\u0314\u0007\u0017\u0000\u0000\u0313\u0312\u0001"+
+ "\u0000\u0000\u0000\u0314\u0315\u0001\u0000\u0000\u0000\u0315\u0313\u0001"+
+ "\u0000\u0000\u0000\u0315\u0316\u0001\u0000\u0000\u0000\u0316\u0317\u0001"+
+ "\u0000\u0000\u0000\u0317\u0318\u0006\u001d\f\u0000\u0318L\u0001\u0000"+
+ "\u0000\u0000\u0319\u031a\u0005|\u0000\u0000\u031a\u031b\u0001\u0000\u0000"+
+ "\u0000\u031b\u031c\u0006\u001e\r\u0000\u031cN\u0001\u0000\u0000\u0000"+
+ "\u031d\u031e\u0007\u0018\u0000\u0000\u031eP\u0001\u0000\u0000\u0000\u031f"+
+ "\u0320\u0007\u0019\u0000\u0000\u0320R\u0001\u0000\u0000\u0000\u0321\u0322"+
+ "\u0005\\\u0000\u0000\u0322\u0323\u0007\u001a\u0000\u0000\u0323T\u0001"+
+ "\u0000\u0000\u0000\u0324\u0325\b\u001b\u0000\u0000\u0325V\u0001\u0000"+
+ "\u0000\u0000\u0326\u0328\u0007\u0003\u0000\u0000\u0327\u0329\u0007\u001c"+
+ "\u0000\u0000\u0328\u0327\u0001\u0000\u0000\u0000\u0328\u0329\u0001\u0000"+
+ "\u0000\u0000\u0329\u032b\u0001\u0000\u0000\u0000\u032a\u032c\u0003O\u001f"+
+ "\u0000\u032b\u032a\u0001\u0000\u0000\u0000\u032c\u032d\u0001\u0000\u0000"+
+ "\u0000\u032d\u032b\u0001\u0000\u0000\u0000\u032d\u032e\u0001\u0000\u0000"+
+ "\u0000\u032eX\u0001\u0000\u0000\u0000\u032f\u0330\u0005@\u0000\u0000\u0330"+
+ "Z\u0001\u0000\u0000\u0000\u0331\u0332\u0005`\u0000\u0000\u0332\\\u0001"+
+ "\u0000\u0000\u0000\u0333\u0337\b\u001d\u0000\u0000\u0334\u0335\u0005`"+
+ "\u0000\u0000\u0335\u0337\u0005`\u0000\u0000\u0336\u0333\u0001\u0000\u0000"+
+ "\u0000\u0336\u0334\u0001\u0000\u0000\u0000\u0337^\u0001\u0000\u0000\u0000"+
+ "\u0338\u0339\u0005_\u0000\u0000\u0339`\u0001\u0000\u0000\u0000\u033a\u033e"+
+ "\u0003Q \u0000\u033b\u033e\u0003O\u001f\u0000\u033c\u033e\u0003_\'\u0000"+
+ "\u033d\u033a\u0001\u0000\u0000\u0000\u033d\u033b\u0001\u0000\u0000\u0000"+
+ "\u033d\u033c\u0001\u0000\u0000\u0000\u033eb\u0001\u0000\u0000\u0000\u033f"+
+ "\u0344\u0005\"\u0000\u0000\u0340\u0343\u0003S!\u0000\u0341\u0343\u0003"+
+ "U\"\u0000\u0342\u0340\u0001\u0000\u0000\u0000\u0342\u0341\u0001\u0000"+
+ "\u0000\u0000\u0343\u0346\u0001\u0000\u0000\u0000\u0344\u0342\u0001\u0000"+
+ "\u0000\u0000\u0344\u0345\u0001\u0000\u0000\u0000\u0345\u0347\u0001\u0000"+
+ "\u0000\u0000\u0346\u0344\u0001\u0000\u0000\u0000\u0347\u035d\u0005\"\u0000"+
+ "\u0000\u0348\u0349\u0005\"\u0000\u0000\u0349\u034a\u0005\"\u0000\u0000"+
+ "\u034a\u034b\u0005\"\u0000\u0000\u034b\u034f\u0001\u0000\u0000\u0000\u034c"+
+ "\u034e\b\u0016\u0000\u0000\u034d\u034c\u0001\u0000\u0000\u0000\u034e\u0351"+
+ "\u0001\u0000\u0000\u0000\u034f\u0350\u0001\u0000\u0000\u0000\u034f\u034d"+
+ "\u0001\u0000\u0000\u0000\u0350\u0352\u0001\u0000\u0000\u0000\u0351\u034f"+
+ "\u0001\u0000\u0000\u0000\u0352\u0353\u0005\"\u0000\u0000\u0353\u0354\u0005"+
+ "\"\u0000\u0000\u0354\u0355\u0005\"\u0000\u0000\u0355\u0357\u0001\u0000"+
+ "\u0000\u0000\u0356\u0358\u0005\"\u0000\u0000\u0357\u0356\u0001\u0000\u0000"+
+ "\u0000\u0357\u0358\u0001\u0000\u0000\u0000\u0358\u035a\u0001\u0000\u0000"+
+ "\u0000\u0359\u035b\u0005\"\u0000\u0000\u035a\u0359\u0001\u0000\u0000\u0000"+
+ "\u035a\u035b\u0001\u0000\u0000\u0000\u035b\u035d\u0001\u0000\u0000\u0000"+
+ "\u035c\u033f\u0001\u0000\u0000\u0000\u035c\u0348\u0001\u0000\u0000\u0000"+
+ "\u035dd\u0001\u0000\u0000\u0000\u035e\u0360\u0003O\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\u0362f\u0001"+
+ "\u0000\u0000\u0000\u0363\u0365\u0003O\u001f\u0000\u0364\u0363\u0001\u0000"+
+ "\u0000\u0000\u0365\u0366\u0001\u0000\u0000\u0000\u0366\u0364\u0001\u0000"+
+ "\u0000\u0000\u0366\u0367\u0001\u0000\u0000\u0000\u0367\u0368\u0001\u0000"+
+ "\u0000\u0000\u0368\u036c\u0003{5\u0000\u0369\u036b\u0003O\u001f\u0000"+
+ "\u036a\u0369\u0001\u0000\u0000\u0000\u036b\u036e\u0001\u0000\u0000\u0000"+
+ "\u036c\u036a\u0001\u0000\u0000\u0000\u036c\u036d\u0001\u0000\u0000\u0000"+
+ "\u036d\u038e\u0001\u0000\u0000\u0000\u036e\u036c\u0001\u0000\u0000\u0000"+
+ "\u036f\u0371\u0003{5\u0000\u0370\u0372\u0003O\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\u038e"+
+ "\u0001\u0000\u0000\u0000\u0375\u0377\u0003O\u001f\u0000\u0376\u0375\u0001"+
+ "\u0000\u0000\u0000\u0377\u0378\u0001\u0000\u0000\u0000\u0378\u0376\u0001"+
+ "\u0000\u0000\u0000\u0378\u0379\u0001\u0000\u0000\u0000\u0379\u0381\u0001"+
+ "\u0000\u0000\u0000\u037a\u037e\u0003{5\u0000\u037b\u037d\u0003O\u001f"+
+ "\u0000\u037c\u037b\u0001\u0000\u0000\u0000\u037d\u0380\u0001\u0000\u0000"+
+ "\u0000\u037e\u037c\u0001\u0000\u0000\u0000\u037e\u037f\u0001\u0000\u0000"+
+ "\u0000\u037f\u0382\u0001\u0000\u0000\u0000\u0380\u037e\u0001\u0000\u0000"+
+ "\u0000\u0381\u037a\u0001\u0000\u0000\u0000\u0381\u0382\u0001\u0000\u0000"+
+ "\u0000\u0382\u0383\u0001\u0000\u0000\u0000\u0383\u0384\u0003W#\u0000\u0384"+
+ "\u038e\u0001\u0000\u0000\u0000\u0385\u0387\u0003{5\u0000\u0386\u0388\u0003"+
+ "O\u001f\u0000\u0387\u0386\u0001\u0000\u0000\u0000\u0388\u0389\u0001\u0000"+
+ "\u0000\u0000\u0389\u0387\u0001\u0000\u0000\u0000\u0389\u038a\u0001\u0000"+
+ "\u0000\u0000\u038a\u038b\u0001\u0000\u0000\u0000\u038b\u038c\u0003W#\u0000"+
+ "\u038c\u038e\u0001\u0000\u0000\u0000\u038d\u0364\u0001\u0000\u0000\u0000"+
+ "\u038d\u036f\u0001\u0000\u0000\u0000\u038d\u0376\u0001\u0000\u0000\u0000"+
+ "\u038d\u0385\u0001\u0000\u0000\u0000\u038eh\u0001\u0000\u0000\u0000\u038f"+
+ "\u0390\u0007\f\u0000\u0000\u0390\u0391\u0007\t\u0000\u0000\u0391\u0392"+
+ "\u0007\u0000\u0000\u0000\u0392j\u0001\u0000\u0000\u0000\u0393\u0394\u0007"+
+ "\f\u0000\u0000\u0394\u0395\u0007\u0002\u0000\u0000\u0395l\u0001\u0000"+
+ "\u0000\u0000\u0396\u0397\u0007\f\u0000\u0000\u0397\u0398\u0007\u0002\u0000"+
+ "\u0000\u0398\u0399\u0007\u0004\u0000\u0000\u0399n\u0001\u0000\u0000\u0000"+
+ "\u039a\u039b\u0005=\u0000\u0000\u039bp\u0001\u0000\u0000\u0000\u039c\u039d"+
+ "\u0007\u001e\u0000\u0000\u039d\u039e\u0007\u001f\u0000\u0000\u039er\u0001"+
+ "\u0000\u0000\u0000\u039f\u03a0\u0005:\u0000\u0000\u03a0\u03a1\u0005:\u0000"+
+ "\u0000\u03a1t\u0001\u0000\u0000\u0000\u03a2\u03a3\u0005:\u0000\u0000\u03a3"+
+ "v\u0001\u0000\u0000\u0000\u03a4\u03a5\u0005,\u0000\u0000\u03a5x\u0001"+
+ "\u0000\u0000\u0000\u03a6\u03a7\u0007\u0000\u0000\u0000\u03a7\u03a8\u0007"+
+ "\u0003\u0000\u0000\u03a8\u03a9\u0007\u0002\u0000\u0000\u03a9\u03aa\u0007"+
+ "\u0004\u0000\u0000\u03aaz\u0001\u0000\u0000\u0000\u03ab\u03ac\u0005.\u0000"+
+ "\u0000\u03ac|\u0001\u0000\u0000\u0000\u03ad\u03ae\u0007\u000f\u0000\u0000"+
+ "\u03ae\u03af\u0007\f\u0000\u0000\u03af\u03b0\u0007\r\u0000\u0000\u03b0"+
+ "\u03b1\u0007\u0002\u0000\u0000\u03b1\u03b2\u0007\u0003\u0000\u0000\u03b2"+
+ "~\u0001\u0000\u0000\u0000\u03b3\u03b4\u0007\u000f\u0000\u0000\u03b4\u03b5"+
+ "\u0007\u0001\u0000\u0000\u03b5\u03b6\u0007\u0006\u0000\u0000\u03b6\u03b7"+
+ "\u0007\u0002\u0000\u0000\u03b7\u03b8\u0007\u0005\u0000\u0000\u03b8\u0080"+
+ "\u0001\u0000\u0000\u0000\u03b9\u03ba\u0007\u0001\u0000\u0000\u03ba\u03bb"+
+ "\u0007\t\u0000\u0000\u03bb\u0082\u0001\u0000\u0000\u0000\u03bc\u03bd\u0007"+
+ "\u0001\u0000\u0000\u03bd\u03be\u0007\u0002\u0000\u0000\u03be\u0084\u0001"+
+ "\u0000\u0000\u0000\u03bf\u03c0\u0007\r\u0000\u0000\u03c0\u03c1\u0007\f"+
+ "\u0000\u0000\u03c1\u03c2\u0007\u0002\u0000\u0000\u03c2\u03c3\u0007\u0005"+
+ "\u0000\u0000\u03c3\u0086\u0001\u0000\u0000\u0000\u03c4\u03c5\u0007\r\u0000"+
+ "\u0000\u03c5\u03c6\u0007\u0001\u0000\u0000\u03c6\u03c7\u0007\u0012\u0000"+
+ "\u0000\u03c7\u03c8\u0007\u0003\u0000\u0000\u03c8\u0088\u0001\u0000\u0000"+
+ "\u0000\u03c9\u03ca\u0005(\u0000\u0000\u03ca\u008a\u0001\u0000\u0000\u0000"+
+ "\u03cb\u03cc\u0007\t\u0000\u0000\u03cc\u03cd\u0007\u0007\u0000\u0000\u03cd"+
+ "\u03ce\u0007\u0005\u0000\u0000\u03ce\u008c\u0001\u0000\u0000\u0000\u03cf"+
+ "\u03d0\u0007\t\u0000\u0000\u03d0\u03d1\u0007\u0014\u0000\u0000\u03d1\u03d2"+
+ "\u0007\r\u0000\u0000\u03d2\u03d3\u0007\r\u0000\u0000\u03d3\u008e\u0001"+
+ "\u0000\u0000\u0000\u03d4\u03d5\u0007\t\u0000\u0000\u03d5\u03d6\u0007\u0014"+
+ "\u0000\u0000\u03d6\u03d7\u0007\r\u0000\u0000\u03d7\u03d8\u0007\r\u0000"+
+ "\u0000\u03d8\u03d9\u0007\u0002\u0000\u0000\u03d9\u0090\u0001\u0000\u0000"+
+ "\u0000\u03da\u03db\u0007\u0007\u0000\u0000\u03db\u03dc\u0007\t\u0000\u0000"+
+ "\u03dc\u0092\u0001\u0000\u0000\u0000\u03dd\u03de\u0007\u0007\u0000\u0000"+
+ "\u03de\u03df\u0007\u0006\u0000\u0000\u03df\u0094\u0001\u0000\u0000\u0000"+
+ "\u03e0\u03e1\u0005?\u0000\u0000\u03e1\u0096\u0001\u0000\u0000\u0000\u03e2"+
+ "\u03e3\u0007\u0006\u0000\u0000\u03e3\u03e4\u0007\r\u0000\u0000\u03e4\u03e5"+
+ "\u0007\u0001\u0000\u0000\u03e5\u03e6\u0007\u0012\u0000\u0000\u03e6\u03e7"+
+ "\u0007\u0003\u0000\u0000\u03e7\u0098\u0001\u0000\u0000\u0000\u03e8\u03e9"+
+ "\u0005)\u0000\u0000\u03e9\u009a\u0001\u0000\u0000\u0000\u03ea\u03eb\u0007"+
+ "\u0005\u0000\u0000\u03eb\u03ec\u0007\u0006\u0000\u0000\u03ec\u03ed\u0007"+
+ "\u0014\u0000\u0000\u03ed\u03ee\u0007\u0003\u0000\u0000\u03ee\u009c\u0001"+
+ "\u0000\u0000\u0000\u03ef\u03f0\u0007\u0013\u0000\u0000\u03f0\u03f1\u0007"+
+ "\u0001\u0000\u0000\u03f1\u03f2\u0007\u0005\u0000\u0000\u03f2\u03f3\u0007"+
+ "\n\u0000\u0000\u03f3\u009e\u0001\u0000\u0000\u0000\u03f4\u03f5\u0005="+
+ "\u0000\u0000\u03f5\u03f6\u0005=\u0000\u0000\u03f6\u00a0\u0001\u0000\u0000"+
+ "\u0000\u03f7\u03f8\u0005=\u0000\u0000\u03f8\u03f9\u0005~\u0000\u0000\u03f9"+
+ "\u00a2\u0001\u0000\u0000\u0000\u03fa\u03fb\u0005!\u0000\u0000\u03fb\u03fc"+
+ "\u0005=\u0000\u0000\u03fc\u00a4\u0001\u0000\u0000\u0000\u03fd\u03fe\u0005"+
+ "<\u0000\u0000\u03fe\u00a6\u0001\u0000\u0000\u0000\u03ff\u0400\u0005<\u0000"+
+ "\u0000\u0400\u0401\u0005=\u0000\u0000\u0401\u00a8\u0001\u0000\u0000\u0000"+
+ "\u0402\u0403\u0005>\u0000\u0000\u0403\u00aa\u0001\u0000\u0000\u0000\u0404"+
+ "\u0405\u0005>\u0000\u0000\u0405\u0406\u0005=\u0000\u0000\u0406\u00ac\u0001"+
+ "\u0000\u0000\u0000\u0407\u0408\u0005+\u0000\u0000\u0408\u00ae\u0001\u0000"+
+ "\u0000\u0000\u0409\u040a\u0005-\u0000\u0000\u040a\u00b0\u0001\u0000\u0000"+
+ "\u0000\u040b\u040c\u0005*\u0000\u0000\u040c\u00b2\u0001\u0000\u0000\u0000"+
+ "\u040d\u040e\u0005/\u0000\u0000\u040e\u00b4\u0001\u0000\u0000\u0000\u040f"+
+ "\u0410\u0005%\u0000\u0000\u0410\u00b6\u0001\u0000\u0000\u0000\u0411\u0412"+
+ "\u0005{\u0000\u0000\u0412\u00b8\u0001\u0000\u0000\u0000\u0413\u0414\u0005"+
+ "}\u0000\u0000\u0414\u00ba\u0001\u0000\u0000\u0000\u0415\u0416\u0005?\u0000"+
+ "\u0000\u0416\u0417\u0005?\u0000\u0000\u0417\u00bc\u0001\u0000\u0000\u0000"+
+ "\u0418\u0419\u0003/\u000f\u0000\u0419\u041a\u0001\u0000\u0000\u0000\u041a"+
+ "\u041b\u0006V\u000e\u0000\u041b\u00be\u0001\u0000\u0000\u0000\u041c\u041f"+
+ "\u0003\u0095B\u0000\u041d\u0420\u0003Q \u0000\u041e\u0420\u0003_\'\u0000"+
+ "\u041f\u041d\u0001\u0000\u0000\u0000\u041f\u041e\u0001\u0000\u0000\u0000"+
+ "\u0420\u0424\u0001\u0000\u0000\u0000\u0421\u0423\u0003a(\u0000\u0422\u0421"+
+ "\u0001\u0000\u0000\u0000\u0423\u0426\u0001\u0000\u0000\u0000\u0424\u0422"+
+ "\u0001\u0000\u0000\u0000\u0424\u0425\u0001\u0000\u0000\u0000\u0425\u042e"+
+ "\u0001\u0000\u0000\u0000\u0426\u0424\u0001\u0000\u0000\u0000\u0427\u0429"+
+ "\u0003\u0095B\u0000\u0428\u042a\u0003O\u001f\u0000\u0429\u0428\u0001\u0000"+
+ "\u0000\u0000\u042a\u042b\u0001\u0000\u0000\u0000\u042b\u0429\u0001\u0000"+
+ "\u0000\u0000\u042b\u042c\u0001\u0000\u0000\u0000\u042c\u042e\u0001\u0000"+
+ "\u0000\u0000\u042d\u041c\u0001\u0000\u0000\u0000\u042d\u0427\u0001\u0000"+
+ "\u0000\u0000\u042e\u00c0\u0001\u0000\u0000\u0000\u042f\u0432\u0003\u00bb"+
+ "U\u0000\u0430\u0433\u0003Q \u0000\u0431\u0433\u0003_\'\u0000\u0432\u0430"+
+ "\u0001\u0000\u0000\u0000\u0432\u0431\u0001\u0000\u0000\u0000\u0433\u0437"+
+ "\u0001\u0000\u0000\u0000\u0434\u0436\u0003a(\u0000\u0435\u0434\u0001\u0000"+
+ "\u0000\u0000\u0436\u0439\u0001\u0000\u0000\u0000\u0437\u0435\u0001\u0000"+
+ "\u0000\u0000\u0437\u0438\u0001\u0000\u0000\u0000\u0438\u0441\u0001\u0000"+
+ "\u0000\u0000\u0439\u0437\u0001\u0000\u0000\u0000\u043a\u043c\u0003\u00bb"+
+ "U\u0000\u043b\u043d\u0003O\u001f\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\u042f\u0001\u0000\u0000\u0000\u0440\u043a\u0001\u0000\u0000\u0000"+
+ "\u0441\u00c2\u0001\u0000\u0000\u0000\u0442\u0443\u0005[\u0000\u0000\u0443"+
+ "\u0444\u0001\u0000\u0000\u0000\u0444\u0445\u0006Y\u0000\u0000\u0445\u0446"+
+ "\u0006Y\u0000\u0000\u0446\u00c4\u0001\u0000\u0000\u0000\u0447\u0448\u0005"+
+ "]\u0000\u0000\u0448\u0449\u0001\u0000\u0000\u0000\u0449\u044a\u0006Z\r"+
+ "\u0000\u044a\u044b\u0006Z\r\u0000\u044b\u00c6\u0001\u0000\u0000\u0000"+
+ "\u044c\u0450\u0003Q \u0000\u044d\u044f\u0003a(\u0000\u044e\u044d\u0001"+
+ "\u0000\u0000\u0000\u044f\u0452\u0001\u0000\u0000\u0000\u0450\u044e\u0001"+
+ "\u0000\u0000\u0000\u0450\u0451\u0001\u0000\u0000\u0000\u0451\u045d\u0001"+
+ "\u0000\u0000\u0000\u0452\u0450\u0001\u0000\u0000\u0000\u0453\u0456\u0003"+
+ "_\'\u0000\u0454\u0456\u0003Y$\u0000\u0455\u0453\u0001\u0000\u0000\u0000"+
+ "\u0455\u0454\u0001\u0000\u0000\u0000\u0456\u0458\u0001\u0000\u0000\u0000"+
+ "\u0457\u0459\u0003a(\u0000\u0458\u0457\u0001\u0000\u0000\u0000\u0459\u045a"+
+ "\u0001\u0000\u0000\u0000\u045a\u0458\u0001\u0000\u0000\u0000\u045a\u045b"+
+ "\u0001\u0000\u0000\u0000\u045b\u045d\u0001\u0000\u0000\u0000\u045c\u044c"+
+ "\u0001\u0000\u0000\u0000\u045c\u0455\u0001\u0000\u0000\u0000\u045d\u00c8"+
+ "\u0001\u0000\u0000\u0000\u045e\u0460\u0003[%\u0000\u045f\u0461\u0003]"+
+ "&\u0000\u0460\u045f\u0001\u0000\u0000\u0000\u0461\u0462\u0001\u0000\u0000"+
+ "\u0000\u0462\u0460\u0001\u0000\u0000\u0000\u0462\u0463\u0001\u0000\u0000"+
+ "\u0000\u0463\u0464\u0001\u0000\u0000\u0000\u0464\u0465\u0003[%\u0000\u0465"+
+ "\u00ca\u0001\u0000\u0000\u0000\u0466\u0467\u0003\u00c9\\\u0000\u0467\u00cc"+
+ "\u0001\u0000\u0000\u0000\u0468\u0469\u0003G\u001b\u0000\u0469\u046a\u0001"+
+ "\u0000\u0000\u0000\u046a\u046b\u0006^\f\u0000\u046b\u00ce\u0001\u0000"+
+ "\u0000\u0000\u046c\u046d\u0003I\u001c\u0000\u046d\u046e\u0001\u0000\u0000"+
+ "\u0000\u046e\u046f\u0006_\f\u0000\u046f\u00d0\u0001\u0000\u0000\u0000"+
+ "\u0470\u0471\u0003K\u001d\u0000\u0471\u0472\u0001\u0000\u0000\u0000\u0472"+
+ "\u0473\u0006`\f\u0000\u0473\u00d2\u0001\u0000\u0000\u0000\u0474\u0475"+
+ "\u0003\u00c3Y\u0000\u0475\u0476\u0001\u0000\u0000\u0000\u0476\u0477\u0006"+
+ "a\u000f\u0000\u0477\u0478\u0006a\u0010\u0000\u0478\u00d4\u0001\u0000\u0000"+
+ "\u0000\u0479\u047a\u0003M\u001e\u0000\u047a\u047b\u0001\u0000\u0000\u0000"+
+ "\u047b\u047c\u0006b\u0011\u0000\u047c\u047d\u0006b\r\u0000\u047d\u00d6"+
+ "\u0001\u0000\u0000\u0000\u047e\u047f\u0003K\u001d\u0000\u047f\u0480\u0001"+
+ "\u0000\u0000\u0000\u0480\u0481\u0006c\f\u0000\u0481\u00d8\u0001\u0000"+
+ "\u0000\u0000\u0482\u0483\u0003G\u001b\u0000\u0483\u0484\u0001\u0000\u0000"+
+ "\u0000\u0484\u0485\u0006d\f\u0000\u0485\u00da\u0001\u0000\u0000\u0000"+
+ "\u0486\u0487\u0003I\u001c\u0000\u0487\u0488\u0001\u0000\u0000\u0000\u0488"+
+ "\u0489\u0006e\f\u0000\u0489\u00dc\u0001\u0000\u0000\u0000\u048a\u048b"+
+ "\u0003M\u001e\u0000\u048b\u048c\u0001\u0000\u0000\u0000\u048c\u048d\u0006"+
+ "f\u0011\u0000\u048d\u048e\u0006f\r\u0000\u048e\u00de\u0001\u0000\u0000"+
+ "\u0000\u048f\u0490\u0003\u00c3Y\u0000\u0490\u0491\u0001\u0000\u0000\u0000"+
+ "\u0491\u0492\u0006g\u000f\u0000\u0492\u00e0\u0001\u0000\u0000\u0000\u0493"+
+ "\u0494\u0003\u00c5Z\u0000\u0494\u0495\u0001\u0000\u0000\u0000\u0495\u0496"+
+ "\u0006h\u0012\u0000\u0496\u00e2\u0001\u0000\u0000\u0000\u0497\u0498\u0003"+
+ "u2\u0000\u0498\u0499\u0001\u0000\u0000\u0000\u0499\u049a\u0006i\u0013"+
+ "\u0000\u049a\u00e4\u0001\u0000\u0000\u0000\u049b\u049c\u0003s1\u0000\u049c"+
+ "\u049d\u0001\u0000\u0000\u0000\u049d\u049e\u0006j\u0014\u0000\u049e\u00e6"+
+ "\u0001\u0000\u0000\u0000\u049f\u04a0\u0003w3\u0000\u04a0\u04a1\u0001\u0000"+
+ "\u0000\u0000\u04a1\u04a2\u0006k\u0015\u0000\u04a2\u00e8\u0001\u0000\u0000"+
+ "\u0000\u04a3\u04a4\u0003o/\u0000\u04a4\u04a5\u0001\u0000\u0000\u0000\u04a5"+
+ "\u04a6\u0006l\u0016\u0000\u04a6\u00ea\u0001\u0000\u0000\u0000\u04a7\u04a8"+
+ "\u0007\u0010\u0000\u0000\u04a8\u04a9\u0007\u0003\u0000\u0000\u04a9\u04aa"+
+ "\u0007\u0005\u0000\u0000\u04aa\u04ab\u0007\f\u0000\u0000\u04ab\u04ac\u0007"+
+ "\u0000\u0000\u0000\u04ac\u04ad\u0007\f\u0000\u0000\u04ad\u04ae\u0007\u0005"+
+ "\u0000\u0000\u04ae\u04af\u0007\f\u0000\u0000\u04af\u00ec\u0001\u0000\u0000"+
+ "\u0000\u04b0\u04b4\b \u0000\u0000\u04b1\u04b2\u0005/\u0000\u0000\u04b2"+
+ "\u04b4\b!\u0000\u0000\u04b3\u04b0\u0001\u0000\u0000\u0000\u04b3\u04b1"+
+ "\u0001\u0000\u0000\u0000\u04b4\u00ee\u0001\u0000\u0000\u0000\u04b5\u04b7"+
+ "\u0003\u00edn\u0000\u04b6\u04b5\u0001\u0000\u0000\u0000\u04b7\u04b8\u0001"+
+ "\u0000\u0000\u0000\u04b8\u04b6\u0001\u0000\u0000\u0000\u04b8\u04b9\u0001"+
+ "\u0000\u0000\u0000\u04b9\u00f0\u0001\u0000\u0000\u0000\u04ba\u04bb\u0003"+
+ "\u00efo\u0000\u04bb\u04bc\u0001\u0000\u0000\u0000\u04bc\u04bd\u0006p\u0017"+
+ "\u0000\u04bd\u00f2\u0001\u0000\u0000\u0000\u04be\u04bf\u0003c)\u0000\u04bf"+
+ "\u04c0\u0001\u0000\u0000\u0000\u04c0\u04c1\u0006q\u0018\u0000\u04c1\u00f4"+
+ "\u0001\u0000\u0000\u0000\u04c2\u04c3\u0003G\u001b\u0000\u04c3\u04c4\u0001"+
+ "\u0000\u0000\u0000\u04c4\u04c5\u0006r\f\u0000\u04c5\u00f6\u0001\u0000"+
+ "\u0000\u0000\u04c6\u04c7\u0003I\u001c\u0000\u04c7\u04c8\u0001\u0000\u0000"+
+ "\u0000\u04c8\u04c9\u0006s\f\u0000\u04c9\u00f8\u0001\u0000\u0000\u0000"+
+ "\u04ca\u04cb\u0003K\u001d\u0000\u04cb\u04cc\u0001\u0000\u0000\u0000\u04cc"+
+ "\u04cd\u0006t\f\u0000\u04cd\u00fa\u0001\u0000\u0000\u0000\u04ce\u04cf"+
+ "\u0003M\u001e\u0000\u04cf\u04d0\u0001\u0000\u0000\u0000\u04d0\u04d1\u0006"+
+ "u\u0011\u0000\u04d1\u04d2\u0006u\r\u0000\u04d2\u00fc\u0001\u0000\u0000"+
+ "\u0000\u04d3\u04d4\u0003{5\u0000\u04d4\u04d5\u0001\u0000\u0000\u0000\u04d5"+
+ "\u04d6\u0006v\u0019\u0000\u04d6\u00fe\u0001\u0000\u0000\u0000\u04d7\u04d8"+
+ "\u0003w3\u0000\u04d8\u04d9\u0001\u0000\u0000\u0000\u04d9\u04da\u0006w"+
+ "\u0015\u0000\u04da\u0100\u0001\u0000\u0000\u0000\u04db\u04dc\u0003\u0095"+
+ "B\u0000\u04dc\u04dd\u0001\u0000\u0000\u0000\u04dd\u04de\u0006x\u001a\u0000"+
+ "\u04de\u0102\u0001\u0000\u0000\u0000\u04df\u04e0\u0003\u00bfW\u0000\u04e0"+
+ "\u04e1\u0001\u0000\u0000\u0000\u04e1\u04e2\u0006y\u001b\u0000\u04e2\u0104"+
+ "\u0001\u0000\u0000\u0000\u04e3\u04e4\u0003\u00bbU\u0000\u04e4\u04e5\u0001"+
+ "\u0000\u0000\u0000\u04e5\u04e6\u0006z\u001c\u0000\u04e6\u0106\u0001\u0000"+
+ "\u0000\u0000\u04e7\u04e8\u0003\u00c1X\u0000\u04e8\u04e9\u0001\u0000\u0000"+
+ "\u0000\u04e9\u04ea\u0006{\u001d\u0000\u04ea\u0108\u0001\u0000\u0000\u0000"+
+ "\u04eb\u04f0\u0003Q \u0000\u04ec\u04f0\u0003O\u001f\u0000\u04ed\u04f0"+
+ "\u0003_\'\u0000\u04ee\u04f0\u0003\u00b1P\u0000\u04ef\u04eb\u0001\u0000"+
+ "\u0000\u0000\u04ef\u04ec\u0001\u0000\u0000\u0000\u04ef\u04ed\u0001\u0000"+
+ "\u0000\u0000\u04ef\u04ee\u0001\u0000\u0000\u0000\u04f0\u010a\u0001\u0000"+
+ "\u0000\u0000\u04f1\u04f4\u0003Q \u0000\u04f2\u04f4\u0003\u00b1P\u0000"+
+ "\u04f3\u04f1\u0001\u0000\u0000\u0000\u04f3\u04f2\u0001\u0000\u0000\u0000"+
+ "\u04f4\u04f8\u0001\u0000\u0000\u0000\u04f5\u04f7\u0003\u0109|\u0000\u04f6"+
+ "\u04f5\u0001\u0000\u0000\u0000\u04f7\u04fa\u0001\u0000\u0000\u0000\u04f8"+
+ "\u04f6\u0001\u0000\u0000\u0000\u04f8\u04f9\u0001\u0000\u0000\u0000\u04f9"+
+ "\u0505\u0001\u0000\u0000\u0000\u04fa\u04f8\u0001\u0000\u0000\u0000\u04fb"+
+ "\u04fe\u0003_\'\u0000\u04fc\u04fe\u0003Y$\u0000\u04fd\u04fb\u0001\u0000"+
+ "\u0000\u0000\u04fd\u04fc\u0001\u0000\u0000\u0000\u04fe\u0500\u0001\u0000"+
+ "\u0000\u0000\u04ff\u0501\u0003\u0109|\u0000\u0500\u04ff\u0001\u0000\u0000"+
+ "\u0000\u0501\u0502\u0001\u0000\u0000\u0000\u0502\u0500\u0001\u0000\u0000"+
+ "\u0000\u0502\u0503\u0001\u0000\u0000\u0000\u0503\u0505\u0001\u0000\u0000"+
+ "\u0000\u0504\u04f3\u0001\u0000\u0000\u0000\u0504\u04fd\u0001\u0000\u0000"+
+ "\u0000\u0505\u010c\u0001\u0000\u0000\u0000\u0506\u0509\u0003\u010b}\u0000"+
+ "\u0507\u0509\u0003\u00c9\\\u0000\u0508\u0506\u0001\u0000\u0000\u0000\u0508"+
+ "\u0507\u0001\u0000\u0000\u0000\u0509\u050a\u0001\u0000\u0000\u0000\u050a"+
+ "\u0508\u0001\u0000\u0000\u0000\u050a\u050b\u0001\u0000\u0000\u0000\u050b"+
+ "\u010e\u0001\u0000\u0000\u0000\u050c\u050d\u0003G\u001b\u0000\u050d\u050e"+
+ "\u0001\u0000\u0000\u0000\u050e\u050f\u0006\u007f\f\u0000\u050f\u0110\u0001"+
+ "\u0000\u0000\u0000\u0510\u0511\u0003I\u001c\u0000\u0511\u0512\u0001\u0000"+
+ "\u0000\u0000\u0512\u0513\u0006\u0080\f\u0000\u0513\u0112\u0001\u0000\u0000"+
+ "\u0000\u0514\u0515\u0003K\u001d\u0000\u0515\u0516\u0001\u0000\u0000\u0000"+
+ "\u0516\u0517\u0006\u0081\f\u0000\u0517\u0114\u0001\u0000\u0000\u0000\u0518"+
+ "\u0519\u0003M\u001e\u0000\u0519\u051a\u0001\u0000\u0000\u0000\u051a\u051b"+
+ "\u0006\u0082\u0011\u0000\u051b\u051c\u0006\u0082\r\u0000\u051c\u0116\u0001"+
+ "\u0000\u0000\u0000\u051d\u051e\u0003o/\u0000\u051e\u051f\u0001\u0000\u0000"+
+ "\u0000\u051f\u0520\u0006\u0083\u0016\u0000\u0520\u0118\u0001\u0000\u0000"+
+ "\u0000\u0521\u0522\u0003w3\u0000\u0522\u0523\u0001\u0000\u0000\u0000\u0523"+
+ "\u0524\u0006\u0084\u0015\u0000\u0524\u011a\u0001\u0000\u0000\u0000\u0525"+
+ "\u0526\u0003{5\u0000\u0526\u0527\u0001\u0000\u0000\u0000\u0527\u0528\u0006"+
+ "\u0085\u0019\u0000\u0528\u011c\u0001\u0000\u0000\u0000\u0529\u052a\u0003"+
+ "\u0095B\u0000\u052a\u052b\u0001\u0000\u0000\u0000\u052b\u052c\u0006\u0086"+
+ "\u001a\u0000\u052c\u011e\u0001\u0000\u0000\u0000\u052d\u052e\u0003\u00bf"+
+ "W\u0000\u052e\u052f\u0001\u0000\u0000\u0000\u052f\u0530\u0006\u0087\u001b"+
+ "\u0000\u0530\u0120\u0001\u0000\u0000\u0000\u0531\u0532\u0003\u00bbU\u0000"+
+ "\u0532\u0533\u0001\u0000\u0000\u0000\u0533\u0534\u0006\u0088\u001c\u0000"+
+ "\u0534\u0122\u0001\u0000\u0000\u0000\u0535\u0536\u0003\u00c1X\u0000\u0536"+
+ "\u0537\u0001\u0000\u0000\u0000\u0537\u0538\u0006\u0089\u001d\u0000\u0538"+
+ "\u0124\u0001\u0000\u0000\u0000\u0539\u053a\u0003k-\u0000\u053a\u053b\u0001"+
+ "\u0000\u0000\u0000\u053b\u053c\u0006\u008a\u001e\u0000\u053c\u0126\u0001"+
+ "\u0000\u0000\u0000\u053d\u053e\u0003\u010d~\u0000\u053e\u053f\u0001\u0000"+
+ "\u0000\u0000\u053f\u0540\u0006\u008b\u001f\u0000\u0540\u0128\u0001\u0000"+
+ "\u0000\u0000\u0541\u0542\u0003G\u001b\u0000\u0542\u0543\u0001\u0000\u0000"+
+ "\u0000\u0543\u0544\u0006\u008c\f\u0000\u0544\u012a\u0001\u0000\u0000\u0000"+
+ "\u0545\u0546\u0003I\u001c\u0000\u0546\u0547\u0001\u0000\u0000\u0000\u0547"+
+ "\u0548\u0006\u008d\f\u0000\u0548\u012c\u0001\u0000\u0000\u0000\u0549\u054a"+
+ "\u0003K\u001d\u0000\u054a\u054b\u0001\u0000\u0000\u0000\u054b\u054c\u0006"+
+ "\u008e\f\u0000\u054c\u012e\u0001\u0000\u0000\u0000\u054d\u054e\u0003M"+
+ "\u001e\u0000\u054e\u054f\u0001\u0000\u0000\u0000\u054f\u0550\u0006\u008f"+
+ "\u0011\u0000\u0550\u0551\u0006\u008f\r\u0000\u0551\u0130\u0001\u0000\u0000"+
+ "\u0000\u0552\u0553\u0003\u00c3Y\u0000\u0553\u0554\u0001\u0000\u0000\u0000"+
+ "\u0554\u0555\u0006\u0090\u000f\u0000\u0555\u0556\u0006\u0090 \u0000\u0556"+
+ "\u0132\u0001\u0000\u0000\u0000\u0557\u0558\u0003\u0091@\u0000\u0558\u0559"+
+ "\u0001\u0000\u0000\u0000\u0559\u055a\u0006\u0091!\u0000\u055a\u055b\u0006"+
+ "\u0091\"\u0000\u055b\u0134\u0001\u0000\u0000\u0000\u055c\u055d\u0003\u009d"+
+ "F\u0000\u055d\u055e\u0001\u0000\u0000\u0000\u055e\u055f\u0006\u0092#\u0000"+
+ "\u055f\u0560\u0006\u0092\"\u0000\u0560\u0136\u0001\u0000\u0000\u0000\u0561"+
+ "\u0562\b\"\u0000\u0000\u0562\u0138\u0001\u0000\u0000\u0000\u0563\u0565"+
+ "\u0003\u0137\u0093\u0000\u0564\u0563\u0001\u0000\u0000\u0000\u0565\u0566"+
+ "\u0001\u0000\u0000\u0000\u0566\u0564\u0001\u0000\u0000\u0000\u0566\u0567"+
+ "\u0001\u0000\u0000\u0000\u0567\u0568\u0001\u0000\u0000\u0000\u0568\u0569"+
+ "\u0003u2\u0000\u0569\u056b\u0001\u0000\u0000\u0000\u056a\u0564\u0001\u0000"+
+ "\u0000\u0000\u056a\u056b\u0001\u0000\u0000\u0000\u056b\u056d\u0001\u0000"+
+ "\u0000\u0000\u056c\u056e\u0003\u0137\u0093\u0000\u056d\u056c\u0001\u0000"+
+ "\u0000\u0000\u056e\u056f\u0001\u0000\u0000\u0000\u056f\u056d\u0001\u0000"+
+ "\u0000\u0000\u056f\u0570\u0001\u0000\u0000\u0000\u0570\u013a\u0001\u0000"+
+ "\u0000\u0000\u0571\u0572\u0003\u0139\u0094\u0000\u0572\u0573\u0001\u0000"+
+ "\u0000\u0000\u0573\u0574\u0006\u0095$\u0000\u0574\u013c\u0001\u0000\u0000"+
+ "\u0000\u0575\u0576\u0003G\u001b\u0000\u0576\u0577\u0001\u0000\u0000\u0000"+
+ "\u0577\u0578\u0006\u0096\f\u0000\u0578\u013e\u0001\u0000\u0000\u0000\u0579"+
+ "\u057a\u0003I\u001c\u0000\u057a\u057b\u0001\u0000\u0000\u0000\u057b\u057c"+
+ "\u0006\u0097\f\u0000\u057c\u0140\u0001\u0000\u0000\u0000\u057d\u057e\u0003"+
+ "K\u001d\u0000\u057e\u057f\u0001\u0000\u0000\u0000\u057f\u0580\u0006\u0098"+
+ "\f\u0000\u0580\u0142\u0001\u0000\u0000\u0000\u0581\u0582\u0003M\u001e"+
+ "\u0000\u0582\u0583\u0001\u0000\u0000\u0000\u0583\u0584\u0006\u0099\u0011"+
+ "\u0000\u0584\u0585\u0006\u0099\r\u0000\u0585\u0586\u0006\u0099\r\u0000"+
+ "\u0586\u0144\u0001\u0000\u0000\u0000\u0587\u0588\u0003o/\u0000\u0588\u0589"+
+ "\u0001\u0000\u0000\u0000\u0589\u058a\u0006\u009a\u0016\u0000\u058a\u0146"+
+ "\u0001\u0000\u0000\u0000\u058b\u058c\u0003w3\u0000\u058c\u058d\u0001\u0000"+
+ "\u0000\u0000\u058d\u058e\u0006\u009b\u0015\u0000\u058e\u0148\u0001\u0000"+
+ "\u0000\u0000\u058f\u0590\u0003{5\u0000\u0590\u0591\u0001\u0000\u0000\u0000"+
+ "\u0591\u0592\u0006\u009c\u0019\u0000\u0592\u014a\u0001\u0000\u0000\u0000"+
+ "\u0593\u0594\u0003\u009dF\u0000\u0594\u0595\u0001\u0000\u0000\u0000\u0595"+
+ "\u0596\u0006\u009d#\u0000\u0596\u014c\u0001\u0000\u0000\u0000\u0597\u0598"+
+ "\u0003\u010d~\u0000\u0598\u0599\u0001\u0000\u0000\u0000\u0599\u059a\u0006"+
+ "\u009e\u001f\u0000\u059a\u014e\u0001\u0000\u0000\u0000\u059b\u059c\u0003"+
+ "\u00cb]\u0000\u059c\u059d\u0001\u0000\u0000\u0000\u059d\u059e\u0006\u009f"+
+ "%\u0000\u059e\u0150\u0001\u0000\u0000\u0000\u059f\u05a0\u0003\u0095B\u0000"+
+ "\u05a0\u05a1\u0001\u0000\u0000\u0000\u05a1\u05a2\u0006\u00a0\u001a\u0000"+
+ "\u05a2\u0152\u0001\u0000\u0000\u0000\u05a3\u05a4\u0003\u00bfW\u0000\u05a4"+
+ "\u05a5\u0001\u0000\u0000\u0000\u05a5\u05a6\u0006\u00a1\u001b\u0000\u05a6"+
+ "\u0154\u0001\u0000\u0000\u0000\u05a7\u05a8\u0003\u00bbU\u0000\u05a8\u05a9"+
+ "\u0001\u0000\u0000\u0000\u05a9\u05aa\u0006\u00a2\u001c\u0000\u05aa\u0156"+
+ "\u0001\u0000\u0000\u0000\u05ab\u05ac\u0003\u00c1X\u0000\u05ac\u05ad\u0001"+
+ "\u0000\u0000\u0000\u05ad\u05ae\u0006\u00a3\u001d\u0000\u05ae\u0158\u0001"+
+ "\u0000\u0000\u0000\u05af\u05b0\u0003G\u001b\u0000\u05b0\u05b1\u0001\u0000"+
+ "\u0000\u0000\u05b1\u05b2\u0006\u00a4\f\u0000\u05b2\u015a\u0001\u0000\u0000"+
+ "\u0000\u05b3\u05b4\u0003I\u001c\u0000\u05b4\u05b5\u0001\u0000\u0000\u0000"+
+ "\u05b5\u05b6\u0006\u00a5\f\u0000\u05b6\u015c\u0001\u0000\u0000\u0000\u05b7"+
+ "\u05b8\u0003K\u001d\u0000\u05b8\u05b9\u0001\u0000\u0000\u0000\u05b9\u05ba"+
+ "\u0006\u00a6\f\u0000\u05ba\u015e\u0001\u0000\u0000\u0000\u05bb\u05bc\u0003"+
+ "M\u001e\u0000\u05bc\u05bd\u0001\u0000\u0000\u0000\u05bd\u05be\u0006\u00a7"+
+ "\u0011\u0000\u05be\u05bf\u0006\u00a7\r\u0000\u05bf\u0160\u0001\u0000\u0000"+
+ "\u0000\u05c0\u05c1\u0003{5\u0000\u05c1\u05c2\u0001\u0000\u0000\u0000\u05c2"+
+ "\u05c3\u0006\u00a8\u0019\u0000\u05c3\u0162\u0001\u0000\u0000\u0000\u05c4"+
+ "\u05c5\u0003\u0095B\u0000\u05c5\u05c6\u0001\u0000\u0000\u0000\u05c6\u05c7"+
+ "\u0006\u00a9\u001a\u0000\u05c7\u0164\u0001\u0000\u0000\u0000\u05c8\u05c9"+
+ "\u0003\u00bfW\u0000\u05c9\u05ca\u0001\u0000\u0000\u0000\u05ca\u05cb\u0006"+
+ "\u00aa\u001b\u0000\u05cb\u0166\u0001\u0000\u0000\u0000\u05cc\u05cd\u0003"+
+ "\u00bbU\u0000\u05cd\u05ce\u0001\u0000\u0000\u0000\u05ce\u05cf\u0006\u00ab"+
+ "\u001c\u0000\u05cf\u0168\u0001\u0000\u0000\u0000\u05d0\u05d1\u0003\u00c1"+
+ "X\u0000\u05d1\u05d2\u0001\u0000\u0000\u0000\u05d2\u05d3\u0006\u00ac\u001d"+
+ "\u0000\u05d3\u016a\u0001\u0000\u0000\u0000\u05d4\u05d5\u0003\u00cb]\u0000"+
+ "\u05d5\u05d6\u0001\u0000\u0000\u0000\u05d6\u05d7\u0006\u00ad%\u0000\u05d7"+
+ "\u016c\u0001\u0000\u0000\u0000\u05d8\u05d9\u0003\u00c7[\u0000\u05d9\u05da"+
+ "\u0001\u0000\u0000\u0000\u05da\u05db\u0006\u00ae&\u0000\u05db\u016e\u0001"+
+ "\u0000\u0000\u0000\u05dc\u05dd\u0003G\u001b\u0000\u05dd\u05de\u0001\u0000"+
+ "\u0000\u0000\u05de\u05df\u0006\u00af\f\u0000\u05df\u0170\u0001\u0000\u0000"+
+ "\u0000\u05e0\u05e1\u0003I\u001c\u0000\u05e1\u05e2\u0001\u0000\u0000\u0000"+
+ "\u05e2\u05e3\u0006\u00b0\f\u0000\u05e3\u0172\u0001\u0000\u0000\u0000\u05e4"+
+ "\u05e5\u0003K\u001d\u0000\u05e5\u05e6\u0001\u0000\u0000\u0000\u05e6\u05e7"+
+ "\u0006\u00b1\f\u0000\u05e7\u0174\u0001\u0000\u0000\u0000\u05e8\u05e9\u0003"+
+ "M\u001e\u0000\u05e9\u05ea\u0001\u0000\u0000\u0000\u05ea\u05eb\u0006\u00b2"+
+ "\u0011\u0000\u05eb\u05ec\u0006\u00b2\r\u0000\u05ec\u0176\u0001\u0000\u0000"+
+ "\u0000\u05ed\u05ee\u0007\u0001\u0000\u0000\u05ee\u05ef\u0007\t\u0000\u0000"+
+ "\u05ef\u05f0\u0007\u000f\u0000\u0000\u05f0\u05f1\u0007\u0007\u0000\u0000"+
+ "\u05f1\u0178\u0001\u0000\u0000\u0000\u05f2\u05f3\u0003G\u001b\u0000\u05f3"+
+ "\u05f4\u0001\u0000\u0000\u0000\u05f4\u05f5\u0006\u00b4\f\u0000\u05f5\u017a"+
+ "\u0001\u0000\u0000\u0000\u05f6\u05f7\u0003I\u001c\u0000\u05f7\u05f8\u0001"+
+ "\u0000\u0000\u0000\u05f8\u05f9\u0006\u00b5\f\u0000\u05f9\u017c\u0001\u0000"+
+ "\u0000\u0000\u05fa\u05fb\u0003K\u001d\u0000\u05fb\u05fc\u0001\u0000\u0000"+
+ "\u0000\u05fc\u05fd\u0006\u00b6\f\u0000\u05fd\u017e\u0001\u0000\u0000\u0000"+
+ "\u05fe\u05ff\u0003\u00c5Z\u0000\u05ff\u0600\u0001\u0000\u0000\u0000\u0600"+
+ "\u0601\u0006\u00b7\u0012\u0000\u0601\u0602\u0006\u00b7\r\u0000\u0602\u0180"+
+ "\u0001\u0000\u0000\u0000\u0603\u0604\u0003u2\u0000\u0604\u0605\u0001\u0000"+
+ "\u0000\u0000\u0605\u0606\u0006\u00b8\u0013\u0000\u0606\u0182\u0001\u0000"+
+ "\u0000\u0000\u0607\u060d\u0003Y$\u0000\u0608\u060d\u0003O\u001f\u0000"+
+ "\u0609\u060d\u0003{5\u0000\u060a\u060d\u0003Q \u0000\u060b\u060d\u0003"+
+ "_\'\u0000\u060c\u0607\u0001\u0000\u0000\u0000\u060c\u0608\u0001\u0000"+
+ "\u0000\u0000\u060c\u0609\u0001\u0000\u0000\u0000\u060c\u060a\u0001\u0000"+
+ "\u0000\u0000\u060c\u060b\u0001\u0000\u0000\u0000\u060d\u060e\u0001\u0000"+
+ "\u0000\u0000\u060e\u060c\u0001\u0000\u0000\u0000\u060e\u060f\u0001\u0000"+
+ "\u0000\u0000\u060f\u0184\u0001\u0000\u0000\u0000\u0610\u0611\u0003G\u001b"+
+ "\u0000\u0611\u0612\u0001\u0000\u0000\u0000\u0612\u0613\u0006\u00ba\f\u0000"+
+ "\u0613\u0186\u0001\u0000\u0000\u0000\u0614\u0615\u0003I\u001c\u0000\u0615"+
+ "\u0616\u0001\u0000\u0000\u0000\u0616\u0617\u0006\u00bb\f\u0000\u0617\u0188"+
+ "\u0001\u0000\u0000\u0000\u0618\u0619\u0003K\u001d\u0000\u0619\u061a\u0001"+
+ "\u0000\u0000\u0000\u061a\u061b\u0006\u00bc\f\u0000\u061b\u018a\u0001\u0000"+
+ "\u0000\u0000\u061c\u061d\u0003M\u001e\u0000\u061d\u061e\u0001\u0000\u0000"+
+ "\u0000\u061e\u061f\u0006\u00bd\u0011\u0000\u061f\u0620\u0006\u00bd\r\u0000"+
+ "\u0620\u018c\u0001\u0000\u0000\u0000\u0621\u0622\u0003u2\u0000\u0622\u0623"+
+ "\u0001\u0000\u0000\u0000\u0623\u0624\u0006\u00be\u0013\u0000\u0624\u018e"+
+ "\u0001\u0000\u0000\u0000\u0625\u0626\u0003w3\u0000\u0626\u0627\u0001\u0000"+
+ "\u0000\u0000\u0627\u0628\u0006\u00bf\u0015\u0000\u0628\u0190\u0001\u0000"+
+ "\u0000\u0000\u0629\u062a\u0003{5\u0000\u062a\u062b\u0001\u0000\u0000\u0000"+
+ "\u062b\u062c\u0006\u00c0\u0019\u0000\u062c\u0192\u0001\u0000\u0000\u0000"+
+ "\u062d\u062e\u0003\u0091@\u0000\u062e\u062f\u0001\u0000\u0000\u0000\u062f"+
+ "\u0630\u0006\u00c1!\u0000\u0630\u0631\u0006\u00c1\'\u0000\u0631\u0194"+
+ "\u0001\u0000\u0000\u0000\u0632\u0633\u0003\u00efo\u0000\u0633\u0634\u0001"+
+ "\u0000\u0000\u0000\u0634\u0635\u0006\u00c2\u0017\u0000\u0635\u0196\u0001"+
+ "\u0000\u0000\u0000\u0636\u0637\u0003c)\u0000\u0637\u0638\u0001\u0000\u0000"+
+ "\u0000\u0638\u0639\u0006\u00c3\u0018\u0000\u0639\u0198\u0001\u0000\u0000"+
+ "\u0000\u063a\u063b\u0003G\u001b\u0000\u063b\u063c\u0001\u0000\u0000\u0000"+
+ "\u063c\u063d\u0006\u00c4\f\u0000\u063d\u019a\u0001\u0000\u0000\u0000\u063e"+
+ "\u063f\u0003I\u001c\u0000\u063f\u0640\u0001\u0000\u0000\u0000\u0640\u0641"+
+ "\u0006\u00c5\f\u0000\u0641\u019c\u0001\u0000\u0000\u0000\u0642\u0643\u0003"+
+ "K\u001d\u0000\u0643\u0644\u0001\u0000\u0000\u0000\u0644\u0645\u0006\u00c6"+
+ "\f\u0000\u0645\u019e\u0001\u0000\u0000\u0000\u0646\u0647\u0003M\u001e"+
+ "\u0000\u0647\u0648\u0001\u0000\u0000\u0000\u0648\u0649\u0006\u00c7\u0011"+
+ "\u0000\u0649\u064a\u0006\u00c7\r\u0000\u064a\u064b\u0006\u00c7\r\u0000"+
+ "\u064b\u01a0\u0001\u0000\u0000\u0000\u064c\u064d\u0003w3\u0000\u064d\u064e"+
+ "\u0001\u0000\u0000\u0000\u064e\u064f\u0006\u00c8\u0015\u0000\u064f\u01a2"+
+ "\u0001\u0000\u0000\u0000\u0650\u0651\u0003{5\u0000\u0651\u0652\u0001\u0000"+
+ "\u0000\u0000\u0652\u0653\u0006\u00c9\u0019\u0000\u0653\u01a4\u0001\u0000"+
+ "\u0000\u0000\u0654\u0655\u0003\u010d~\u0000\u0655\u0656\u0001\u0000\u0000"+
+ "\u0000\u0656\u0657\u0006\u00ca\u001f\u0000\u0657\u01a6\u0001\u0000\u0000"+
+ "\u0000\u0658\u0659\u0003G\u001b\u0000\u0659\u065a\u0001\u0000\u0000\u0000"+
+ "\u065a\u065b\u0006\u00cb\f\u0000\u065b\u01a8\u0001\u0000\u0000\u0000\u065c"+
+ "\u065d\u0003I\u001c\u0000\u065d\u065e\u0001\u0000\u0000\u0000\u065e\u065f"+
+ "\u0006\u00cc\f\u0000\u065f\u01aa\u0001\u0000\u0000\u0000\u0660\u0661\u0003"+
+ "K\u001d\u0000\u0661\u0662\u0001\u0000\u0000\u0000\u0662\u0663\u0006\u00cd"+
+ "\f\u0000\u0663\u01ac\u0001\u0000\u0000\u0000\u0664\u0665\u0003M\u001e"+
+ "\u0000\u0665\u0666\u0001\u0000\u0000\u0000\u0666\u0667\u0006\u00ce\u0011"+
+ "\u0000\u0667\u0668\u0006\u00ce\r\u0000\u0668\u01ae\u0001\u0000\u0000\u0000"+
+ "\u0669\u066a\u0007#\u0000\u0000\u066a\u066b\u0007\u0007\u0000\u0000\u066b"+
+ "\u066c\u0007\u0001\u0000\u0000\u066c\u066d\u0007\t\u0000\u0000\u066d\u01b0"+
+ "\u0001\u0000\u0000\u0000\u066e\u066f\u0003k-\u0000\u066f\u0670\u0001\u0000"+
+ "\u0000\u0000\u0670\u0671\u0006\u00d0\u001e\u0000\u0671\u01b2\u0001\u0000"+
+ "\u0000\u0000\u0672\u0673\u0003\u0091@\u0000\u0673\u0674\u0001\u0000\u0000"+
+ "\u0000\u0674\u0675\u0006\u00d1!\u0000\u0675\u0676\u0006\u00d1\r\u0000"+
+ "\u0676\u0677\u0006\u00d1\u0000\u0000\u0677\u01b4\u0001\u0000\u0000\u0000"+
+ "\u0678\u0679\u0007\u0014\u0000\u0000\u0679\u067a\u0007\u0002\u0000\u0000"+
+ "\u067a\u067b\u0007\u0001\u0000\u0000\u067b\u067c\u0007\t\u0000\u0000\u067c"+
+ "\u067d\u0007\u0011\u0000\u0000\u067d\u067e\u0001\u0000\u0000\u0000\u067e"+
+ "\u067f\u0006\u00d2\r\u0000\u067f\u0680\u0006\u00d2\u0000\u0000\u0680\u01b6"+
+ "\u0001\u0000\u0000\u0000\u0681\u0682\u0003\u00efo\u0000\u0682\u0683\u0001"+
+ "\u0000\u0000\u0000\u0683\u0684\u0006\u00d3\u0017\u0000\u0684\u01b8\u0001"+
+ "\u0000\u0000\u0000\u0685\u0686\u0003c)\u0000\u0686\u0687\u0001\u0000\u0000"+
+ "\u0000\u0687\u0688\u0006\u00d4\u0018\u0000\u0688\u01ba\u0001\u0000\u0000"+
+ "\u0000\u0689\u068a\u0003u2\u0000\u068a\u068b\u0001\u0000\u0000\u0000\u068b"+
+ "\u068c\u0006\u00d5\u0013\u0000\u068c\u01bc\u0001\u0000\u0000\u0000\u068d"+
+ "\u068e\u0003\u00c7[\u0000\u068e\u068f\u0001\u0000\u0000\u0000\u068f\u0690"+
+ "\u0006\u00d6&\u0000\u0690\u01be\u0001\u0000\u0000\u0000\u0691\u0692\u0003"+
+ "\u00cb]\u0000\u0692\u0693\u0001\u0000\u0000\u0000\u0693\u0694\u0006\u00d7"+
+ "%\u0000\u0694\u01c0\u0001\u0000\u0000\u0000\u0695\u0696\u0003G\u001b\u0000"+
+ "\u0696\u0697\u0001\u0000\u0000\u0000\u0697\u0698\u0006\u00d8\f\u0000\u0698"+
+ "\u01c2\u0001\u0000\u0000\u0000\u0699\u069a\u0003I\u001c\u0000\u069a\u069b"+
+ "\u0001\u0000\u0000\u0000\u069b\u069c\u0006\u00d9\f\u0000\u069c\u01c4\u0001"+
+ "\u0000\u0000\u0000\u069d\u069e\u0003K\u001d\u0000\u069e\u069f\u0001\u0000"+
+ "\u0000\u0000\u069f\u06a0\u0006\u00da\f\u0000\u06a0\u01c6\u0001\u0000\u0000"+
+ "\u0000\u06a1\u06a2\u0003M\u001e\u0000\u06a2\u06a3\u0001\u0000\u0000\u0000"+
+ "\u06a3\u06a4\u0006\u00db\u0011\u0000\u06a4\u06a5\u0006\u00db\r\u0000\u06a5"+
+ "\u01c8\u0001\u0000\u0000\u0000\u06a6\u06a7\u0003\u00efo\u0000\u06a7\u06a8"+
+ "\u0001\u0000\u0000\u0000\u06a8\u06a9\u0006\u00dc\u0017\u0000\u06a9\u06aa"+
+ "\u0006\u00dc\r\u0000\u06aa\u06ab\u0006\u00dc(\u0000\u06ab\u01ca\u0001"+
+ "\u0000\u0000\u0000\u06ac\u06ad\u0003c)\u0000\u06ad\u06ae\u0001\u0000\u0000"+
+ "\u0000\u06ae\u06af\u0006\u00dd\u0018\u0000\u06af\u06b0\u0006\u00dd\r\u0000"+
+ "\u06b0\u06b1\u0006\u00dd(\u0000\u06b1\u01cc\u0001\u0000\u0000\u0000\u06b2"+
+ "\u06b3\u0003G\u001b\u0000\u06b3\u06b4\u0001\u0000\u0000\u0000\u06b4\u06b5"+
+ "\u0006\u00de\f\u0000\u06b5\u01ce\u0001\u0000\u0000\u0000\u06b6\u06b7\u0003"+
+ "I\u001c\u0000\u06b7\u06b8\u0001\u0000\u0000\u0000\u06b8\u06b9\u0006\u00df"+
+ "\f\u0000\u06b9\u01d0\u0001\u0000\u0000\u0000\u06ba\u06bb\u0003K\u001d"+
+ "\u0000\u06bb\u06bc\u0001\u0000\u0000\u0000\u06bc\u06bd\u0006\u00e0\f\u0000"+
+ "\u06bd\u01d2\u0001\u0000\u0000\u0000\u06be\u06bf\u0003u2\u0000\u06bf\u06c0"+
+ "\u0001\u0000\u0000\u0000\u06c0\u06c1\u0006\u00e1\u0013\u0000\u06c1\u06c2"+
+ "\u0006\u00e1\r\u0000\u06c2\u06c3\u0006\u00e1\u000b\u0000\u06c3\u01d4\u0001"+
+ "\u0000\u0000\u0000\u06c4\u06c5\u0003s1\u0000\u06c5\u06c6\u0001\u0000\u0000"+
+ "\u0000\u06c6\u06c7\u0006\u00e2\u0014\u0000\u06c7\u06c8\u0006\u00e2\r\u0000"+
+ "\u06c8\u06c9\u0006\u00e2\u000b\u0000\u06c9\u01d6\u0001\u0000\u0000\u0000"+
+ "\u06ca\u06cb\u0003w3\u0000\u06cb\u06cc\u0001\u0000\u0000\u0000\u06cc\u06cd"+
+ "\u0006\u00e3\u0015\u0000\u06cd\u06ce\u0006\u00e3\r\u0000\u06ce\u06cf\u0006"+
+ "\u00e3\u000b\u0000\u06cf\u01d8\u0001\u0000\u0000\u0000\u06d0\u06d1\u0003"+
+ "G\u001b\u0000\u06d1\u06d2\u0001\u0000\u0000\u0000\u06d2\u06d3\u0006\u00e4"+
+ "\f\u0000\u06d3\u01da\u0001\u0000\u0000\u0000\u06d4\u06d5\u0003I\u001c"+
+ "\u0000\u06d5\u06d6\u0001\u0000\u0000\u0000\u06d6\u06d7\u0006\u00e5\f\u0000"+
+ "\u06d7\u01dc\u0001\u0000\u0000\u0000\u06d8\u06d9\u0003K\u001d\u0000\u06d9"+
+ "\u06da\u0001\u0000\u0000\u0000\u06da\u06db\u0006\u00e6\f\u0000\u06db\u01de"+
+ "\u0001\u0000\u0000\u0000\u06dc\u06dd\u0003\u00cb]\u0000\u06dd\u06de\u0001"+
+ "\u0000\u0000\u0000\u06de\u06df\u0006\u00e7\r\u0000\u06df\u06e0\u0006\u00e7"+
+ "\u0000\u0000\u06e0\u06e1\u0006\u00e7%\u0000\u06e1\u01e0\u0001\u0000\u0000"+
+ "\u0000\u06e2\u06e3\u0003\u00c7[\u0000\u06e3\u06e4\u0001\u0000\u0000\u0000"+
+ "\u06e4\u06e5\u0006\u00e8\r\u0000\u06e5\u06e6\u0006\u00e8\u0000\u0000\u06e6"+
+ "\u06e7\u0006\u00e8&\u0000\u06e7\u01e2\u0001\u0000\u0000\u0000\u06e8\u06e9"+
+ "\u0003q0\u0000\u06e9\u06ea\u0001\u0000\u0000\u0000\u06ea\u06eb\u0006\u00e9"+
+ "\r\u0000\u06eb\u06ec\u0006\u00e9\u0000\u0000\u06ec\u06ed\u0006\u00e9)"+
+ "\u0000\u06ed\u01e4\u0001\u0000\u0000\u0000\u06ee\u06ef\u0003M\u001e\u0000"+
+ "\u06ef\u06f0\u0001\u0000\u0000\u0000\u06f0\u06f1\u0006\u00ea\u0011\u0000"+
+ "\u06f1\u06f2\u0006\u00ea\r\u0000\u06f2\u01e6\u0001\u0000\u0000\u0000\u06f3"+
+ "\u06f4\u0003M\u001e\u0000\u06f4\u06f5\u0001\u0000\u0000\u0000\u06f5\u06f6"+
+ "\u0006\u00eb\u0011\u0000\u06f6\u06f7\u0006\u00eb\r\u0000\u06f7\u01e8\u0001"+
+ "\u0000\u0000\u0000\u06f8\u06f9\u0003\u0091@\u0000\u06f9\u06fa\u0001\u0000"+
+ "\u0000\u0000\u06fa\u06fb\u0006\u00ec!\u0000\u06fb\u01ea\u0001\u0000\u0000"+
+ "\u0000\u06fc\u06fd\u0003k-\u0000\u06fd\u06fe\u0001\u0000\u0000\u0000\u06fe"+
+ "\u06ff\u0006\u00ed\u001e\u0000\u06ff\u01ec\u0001\u0000\u0000\u0000\u0700"+
+ "\u0701\u0003{5\u0000\u0701\u0702\u0001\u0000\u0000\u0000\u0702\u0703\u0006"+
+ "\u00ee\u0019\u0000\u0703\u01ee\u0001\u0000\u0000\u0000\u0704\u0705\u0003"+
+ "w3\u0000\u0705\u0706\u0001\u0000\u0000\u0000\u0706\u0707\u0006\u00ef\u0015"+
+ "\u0000\u0707\u01f0\u0001\u0000\u0000\u0000\u0708\u0709\u0003\u00cb]\u0000"+
+ "\u0709\u070a\u0001\u0000\u0000\u0000\u070a\u070b\u0006\u00f0%\u0000\u070b"+
+ "\u01f2\u0001\u0000\u0000\u0000\u070c\u070d\u0003\u00c7[\u0000\u070d\u070e"+
+ "\u0001\u0000\u0000\u0000\u070e\u070f\u0006\u00f1&\u0000\u070f\u01f4\u0001"+
+ "\u0000\u0000\u0000\u0710\u0711\u0003G\u001b\u0000\u0711\u0712\u0001\u0000"+
+ "\u0000\u0000\u0712\u0713\u0006\u00f2\f\u0000\u0713\u01f6\u0001\u0000\u0000"+
+ "\u0000\u0714\u0715\u0003I\u001c\u0000\u0715\u0716\u0001\u0000\u0000\u0000"+
+ "\u0716\u0717\u0006\u00f3\f\u0000\u0717\u01f8\u0001\u0000\u0000\u0000\u0718"+
+ "\u0719\u0003K\u001d\u0000\u0719\u071a\u0001\u0000\u0000\u0000\u071a\u071b"+
+ "\u0006\u00f4\f\u0000\u071b\u01fa\u0001\u0000\u0000\u0000G\u0000\u0001"+
+ "\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\f\r\u000e\u000f\u0010"+
+ "\u02ee\u02f8\u02fc\u02ff\u0308\u030a\u0315\u0328\u032d\u0336\u033d\u0342"+
+ "\u0344\u034f\u0357\u035a\u035c\u0361\u0366\u036c\u0373\u0378\u037e\u0381"+
+ "\u0389\u038d\u041f\u0424\u042b\u042d\u0432\u0437\u043e\u0440\u0450\u0455"+
+ "\u045a\u045c\u0462\u04b3\u04b8\u04ef\u04f3\u04f8\u04fd\u0502\u0504\u0508"+
+ "\u050a\u0566\u056a\u056f\u060c\u060e*\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\u0000\u0001\u0000\u0004\u0000\u0000\u0007\u0010"+
+ "\u0000\u0007O\u0000\u0005\u0000\u0000\u0007\u001f\u0000\u0007P\u0000\u0007"+
+ ")\u0000\u0007(\u0000\u0007*\u0000\u0007&\u0000\u0007Z\u0000\u0007 \u0000"+
+ "\u0007,\u0000\u00079\u0000\u0007M\u0000\u0007L\u0000\u0007N\u0000\u0007"+
+ "$\u0000\u0007^\u0000\u0005\n\u0000\u00077\u0000\u0005\u0007\u0000\u0007"+
+ "=\u0000\u0007e\u0000\u0007R\u0000\u0007Q\u0000\u0005\f\u0000\u0005\u000f"+
+ "\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 ab638fc076b1d..e75a666352279 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
@@ -29,6 +29,7 @@ null
null
null
null
+null
'|'
null
null
@@ -158,6 +159,7 @@ STATS
WHERE
JOIN_LOOKUP
CHANGE_POINT
+DEV_COMPLETION
DEV_INLINESTATS
DEV_LOOKUP
DEV_METRICS
@@ -351,7 +353,8 @@ joinTarget
joinCondition
joinPredicate
rerankCommand
+completionCommand
atn:
-[4, 1, 137, 699, 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, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 154, 8, 1, 10, 1, 12, 1, 157, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 165, 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, 3, 3, 187, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 199, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 206, 8, 5, 10, 5, 12, 5, 209, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 216, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 221, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 229, 8, 5, 10, 5, 12, 5, 232, 9, 5, 1, 6, 1, 6, 3, 6, 236, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 243, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 248, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 253, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 263, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 269, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 277, 8, 9, 10, 9, 12, 9, 280, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 290, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 295, 8, 10, 10, 10, 12, 10, 298, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 306, 8, 11, 10, 11, 12, 11, 309, 9, 11, 1, 11, 1, 11, 3, 11, 313, 8, 11, 3, 11, 315, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 325, 8, 13, 10, 13, 12, 13, 328, 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, 344, 8, 17, 10, 17, 12, 17, 347, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 352, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 360, 8, 19, 10, 19, 12, 19, 363, 9, 19, 1, 19, 3, 19, 366, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 371, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 377, 8, 20, 3, 20, 379, 8, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 389, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 395, 8, 25, 10, 25, 12, 25, 398, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 408, 8, 27, 10, 27, 12, 27, 411, 9, 27, 1, 27, 3, 27, 414, 8, 27, 1, 27, 1, 27, 3, 27, 418, 8, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 425, 8, 29, 1, 29, 1, 29, 3, 29, 429, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 434, 8, 30, 10, 30, 12, 30, 437, 9, 30, 1, 31, 1, 31, 1, 31, 3, 31, 442, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 447, 8, 32, 10, 32, 12, 32, 450, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 455, 8, 33, 10, 33, 12, 33, 458, 9, 33, 1, 34, 1, 34, 1, 34, 5, 34, 463, 8, 34, 10, 34, 12, 34, 466, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 3, 36, 473, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 488, 8, 37, 10, 37, 12, 37, 491, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 499, 8, 37, 10, 37, 12, 37, 502, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 510, 8, 37, 10, 37, 12, 37, 513, 9, 37, 1, 37, 1, 37, 3, 37, 517, 8, 37, 1, 38, 1, 38, 3, 38, 521, 8, 38, 1, 39, 1, 39, 3, 39, 525, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 530, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 539, 8, 42, 10, 42, 12, 42, 542, 9, 42, 1, 43, 1, 43, 3, 43, 546, 8, 43, 1, 43, 1, 43, 3, 43, 550, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 562, 8, 46, 10, 46, 12, 46, 565, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 575, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 5, 51, 587, 8, 51, 10, 51, 12, 51, 590, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 600, 8, 54, 1, 55, 3, 55, 603, 8, 55, 1, 55, 1, 55, 1, 56, 3, 56, 608, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 630, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 636, 8, 62, 10, 62, 12, 62, 639, 9, 62, 3, 62, 641, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 646, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 654, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 661, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 672, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 685, 8, 69, 10, 69, 12, 69, 688, 9, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 0, 4, 2, 10, 18, 20, 72, 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, 0, 9, 1, 0, 68, 69, 1, 0, 70, 72, 2, 0, 31, 31, 89, 89, 1, 0, 80, 81, 2, 0, 36, 36, 42, 42, 2, 0, 45, 45, 48, 48, 2, 0, 44, 44, 59, 59, 2, 0, 61, 61, 63, 67, 2, 0, 17, 17, 24, 25, 728, 0, 144, 1, 0, 0, 0, 2, 147, 1, 0, 0, 0, 4, 164, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 188, 1, 0, 0, 0, 10, 220, 1, 0, 0, 0, 12, 247, 1, 0, 0, 0, 14, 249, 1, 0, 0, 0, 16, 262, 1, 0, 0, 0, 18, 268, 1, 0, 0, 0, 20, 289, 1, 0, 0, 0, 22, 299, 1, 0, 0, 0, 24, 318, 1, 0, 0, 0, 26, 320, 1, 0, 0, 0, 28, 331, 1, 0, 0, 0, 30, 335, 1, 0, 0, 0, 32, 337, 1, 0, 0, 0, 34, 340, 1, 0, 0, 0, 36, 351, 1, 0, 0, 0, 38, 355, 1, 0, 0, 0, 40, 378, 1, 0, 0, 0, 42, 380, 1, 0, 0, 0, 44, 382, 1, 0, 0, 0, 46, 384, 1, 0, 0, 0, 48, 388, 1, 0, 0, 0, 50, 390, 1, 0, 0, 0, 52, 399, 1, 0, 0, 0, 54, 403, 1, 0, 0, 0, 56, 419, 1, 0, 0, 0, 58, 422, 1, 0, 0, 0, 60, 430, 1, 0, 0, 0, 62, 438, 1, 0, 0, 0, 64, 443, 1, 0, 0, 0, 66, 451, 1, 0, 0, 0, 68, 459, 1, 0, 0, 0, 70, 467, 1, 0, 0, 0, 72, 472, 1, 0, 0, 0, 74, 516, 1, 0, 0, 0, 76, 520, 1, 0, 0, 0, 78, 524, 1, 0, 0, 0, 80, 529, 1, 0, 0, 0, 82, 531, 1, 0, 0, 0, 84, 534, 1, 0, 0, 0, 86, 543, 1, 0, 0, 0, 88, 551, 1, 0, 0, 0, 90, 554, 1, 0, 0, 0, 92, 557, 1, 0, 0, 0, 94, 566, 1, 0, 0, 0, 96, 570, 1, 0, 0, 0, 98, 576, 1, 0, 0, 0, 100, 580, 1, 0, 0, 0, 102, 583, 1, 0, 0, 0, 104, 591, 1, 0, 0, 0, 106, 595, 1, 0, 0, 0, 108, 599, 1, 0, 0, 0, 110, 602, 1, 0, 0, 0, 112, 607, 1, 0, 0, 0, 114, 611, 1, 0, 0, 0, 116, 613, 1, 0, 0, 0, 118, 615, 1, 0, 0, 0, 120, 618, 1, 0, 0, 0, 122, 622, 1, 0, 0, 0, 124, 625, 1, 0, 0, 0, 126, 645, 1, 0, 0, 0, 128, 649, 1, 0, 0, 0, 130, 662, 1, 0, 0, 0, 132, 667, 1, 0, 0, 0, 134, 673, 1, 0, 0, 0, 136, 678, 1, 0, 0, 0, 138, 680, 1, 0, 0, 0, 140, 689, 1, 0, 0, 0, 142, 691, 1, 0, 0, 0, 144, 145, 3, 2, 1, 0, 145, 146, 5, 0, 0, 1, 146, 1, 1, 0, 0, 0, 147, 148, 6, 1, -1, 0, 148, 149, 3, 4, 2, 0, 149, 155, 1, 0, 0, 0, 150, 151, 10, 1, 0, 0, 151, 152, 5, 30, 0, 0, 152, 154, 3, 6, 3, 0, 153, 150, 1, 0, 0, 0, 154, 157, 1, 0, 0, 0, 155, 153, 1, 0, 0, 0, 155, 156, 1, 0, 0, 0, 156, 3, 1, 0, 0, 0, 157, 155, 1, 0, 0, 0, 158, 165, 3, 118, 59, 0, 159, 165, 3, 38, 19, 0, 160, 165, 3, 32, 16, 0, 161, 165, 3, 122, 61, 0, 162, 163, 4, 2, 1, 0, 163, 165, 3, 54, 27, 0, 164, 158, 1, 0, 0, 0, 164, 159, 1, 0, 0, 0, 164, 160, 1, 0, 0, 0, 164, 161, 1, 0, 0, 0, 164, 162, 1, 0, 0, 0, 165, 5, 1, 0, 0, 0, 166, 187, 3, 56, 28, 0, 167, 187, 3, 8, 4, 0, 168, 187, 3, 88, 44, 0, 169, 187, 3, 82, 41, 0, 170, 187, 3, 58, 29, 0, 171, 187, 3, 84, 42, 0, 172, 187, 3, 90, 45, 0, 173, 187, 3, 92, 46, 0, 174, 187, 3, 96, 48, 0, 175, 187, 3, 98, 49, 0, 176, 187, 3, 124, 62, 0, 177, 187, 3, 100, 50, 0, 178, 187, 3, 134, 67, 0, 179, 187, 3, 128, 64, 0, 180, 181, 4, 3, 2, 0, 181, 187, 3, 132, 66, 0, 182, 183, 4, 3, 3, 0, 183, 187, 3, 130, 65, 0, 184, 185, 4, 3, 4, 0, 185, 187, 3, 142, 71, 0, 186, 166, 1, 0, 0, 0, 186, 167, 1, 0, 0, 0, 186, 168, 1, 0, 0, 0, 186, 169, 1, 0, 0, 0, 186, 170, 1, 0, 0, 0, 186, 171, 1, 0, 0, 0, 186, 172, 1, 0, 0, 0, 186, 173, 1, 0, 0, 0, 186, 174, 1, 0, 0, 0, 186, 175, 1, 0, 0, 0, 186, 176, 1, 0, 0, 0, 186, 177, 1, 0, 0, 0, 186, 178, 1, 0, 0, 0, 186, 179, 1, 0, 0, 0, 186, 180, 1, 0, 0, 0, 186, 182, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 187, 7, 1, 0, 0, 0, 188, 189, 5, 16, 0, 0, 189, 190, 3, 10, 5, 0, 190, 9, 1, 0, 0, 0, 191, 192, 6, 5, -1, 0, 192, 193, 5, 51, 0, 0, 193, 221, 3, 10, 5, 8, 194, 221, 3, 16, 8, 0, 195, 221, 3, 12, 6, 0, 196, 198, 3, 16, 8, 0, 197, 199, 5, 51, 0, 0, 198, 197, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 201, 5, 46, 0, 0, 201, 202, 5, 50, 0, 0, 202, 207, 3, 16, 8, 0, 203, 204, 5, 41, 0, 0, 204, 206, 3, 16, 8, 0, 205, 203, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 210, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 211, 5, 58, 0, 0, 211, 221, 1, 0, 0, 0, 212, 213, 3, 16, 8, 0, 213, 215, 5, 47, 0, 0, 214, 216, 5, 51, 0, 0, 215, 214, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 217, 1, 0, 0, 0, 217, 218, 5, 52, 0, 0, 218, 221, 1, 0, 0, 0, 219, 221, 3, 14, 7, 0, 220, 191, 1, 0, 0, 0, 220, 194, 1, 0, 0, 0, 220, 195, 1, 0, 0, 0, 220, 196, 1, 0, 0, 0, 220, 212, 1, 0, 0, 0, 220, 219, 1, 0, 0, 0, 221, 230, 1, 0, 0, 0, 222, 223, 10, 5, 0, 0, 223, 224, 5, 34, 0, 0, 224, 229, 3, 10, 5, 6, 225, 226, 10, 4, 0, 0, 226, 227, 5, 55, 0, 0, 227, 229, 3, 10, 5, 5, 228, 222, 1, 0, 0, 0, 228, 225, 1, 0, 0, 0, 229, 232, 1, 0, 0, 0, 230, 228, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 11, 1, 0, 0, 0, 232, 230, 1, 0, 0, 0, 233, 235, 3, 16, 8, 0, 234, 236, 5, 51, 0, 0, 235, 234, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 5, 49, 0, 0, 238, 239, 3, 114, 57, 0, 239, 248, 1, 0, 0, 0, 240, 242, 3, 16, 8, 0, 241, 243, 5, 51, 0, 0, 242, 241, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 245, 5, 57, 0, 0, 245, 246, 3, 114, 57, 0, 246, 248, 1, 0, 0, 0, 247, 233, 1, 0, 0, 0, 247, 240, 1, 0, 0, 0, 248, 13, 1, 0, 0, 0, 249, 252, 3, 64, 32, 0, 250, 251, 5, 39, 0, 0, 251, 253, 3, 30, 15, 0, 252, 250, 1, 0, 0, 0, 252, 253, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 255, 5, 40, 0, 0, 255, 256, 3, 74, 37, 0, 256, 15, 1, 0, 0, 0, 257, 263, 3, 18, 9, 0, 258, 259, 3, 18, 9, 0, 259, 260, 3, 116, 58, 0, 260, 261, 3, 18, 9, 0, 261, 263, 1, 0, 0, 0, 262, 257, 1, 0, 0, 0, 262, 258, 1, 0, 0, 0, 263, 17, 1, 0, 0, 0, 264, 265, 6, 9, -1, 0, 265, 269, 3, 20, 10, 0, 266, 267, 7, 0, 0, 0, 267, 269, 3, 18, 9, 3, 268, 264, 1, 0, 0, 0, 268, 266, 1, 0, 0, 0, 269, 278, 1, 0, 0, 0, 270, 271, 10, 2, 0, 0, 271, 272, 7, 1, 0, 0, 272, 277, 3, 18, 9, 3, 273, 274, 10, 1, 0, 0, 274, 275, 7, 0, 0, 0, 275, 277, 3, 18, 9, 2, 276, 270, 1, 0, 0, 0, 276, 273, 1, 0, 0, 0, 277, 280, 1, 0, 0, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 19, 1, 0, 0, 0, 280, 278, 1, 0, 0, 0, 281, 282, 6, 10, -1, 0, 282, 290, 3, 74, 37, 0, 283, 290, 3, 64, 32, 0, 284, 290, 3, 22, 11, 0, 285, 286, 5, 50, 0, 0, 286, 287, 3, 10, 5, 0, 287, 288, 5, 58, 0, 0, 288, 290, 1, 0, 0, 0, 289, 281, 1, 0, 0, 0, 289, 283, 1, 0, 0, 0, 289, 284, 1, 0, 0, 0, 289, 285, 1, 0, 0, 0, 290, 296, 1, 0, 0, 0, 291, 292, 10, 1, 0, 0, 292, 293, 5, 39, 0, 0, 293, 295, 3, 30, 15, 0, 294, 291, 1, 0, 0, 0, 295, 298, 1, 0, 0, 0, 296, 294, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 21, 1, 0, 0, 0, 298, 296, 1, 0, 0, 0, 299, 300, 3, 24, 12, 0, 300, 314, 5, 50, 0, 0, 301, 315, 5, 70, 0, 0, 302, 307, 3, 10, 5, 0, 303, 304, 5, 41, 0, 0, 304, 306, 3, 10, 5, 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, 312, 1, 0, 0, 0, 309, 307, 1, 0, 0, 0, 310, 311, 5, 41, 0, 0, 311, 313, 3, 26, 13, 0, 312, 310, 1, 0, 0, 0, 312, 313, 1, 0, 0, 0, 313, 315, 1, 0, 0, 0, 314, 301, 1, 0, 0, 0, 314, 302, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 5, 58, 0, 0, 317, 23, 1, 0, 0, 0, 318, 319, 3, 80, 40, 0, 319, 25, 1, 0, 0, 0, 320, 321, 5, 73, 0, 0, 321, 326, 3, 28, 14, 0, 322, 323, 5, 41, 0, 0, 323, 325, 3, 28, 14, 0, 324, 322, 1, 0, 0, 0, 325, 328, 1, 0, 0, 0, 326, 324, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 329, 1, 0, 0, 0, 328, 326, 1, 0, 0, 0, 329, 330, 5, 74, 0, 0, 330, 27, 1, 0, 0, 0, 331, 332, 3, 114, 57, 0, 332, 333, 5, 40, 0, 0, 333, 334, 3, 74, 37, 0, 334, 29, 1, 0, 0, 0, 335, 336, 3, 70, 35, 0, 336, 31, 1, 0, 0, 0, 337, 338, 5, 12, 0, 0, 338, 339, 3, 34, 17, 0, 339, 33, 1, 0, 0, 0, 340, 345, 3, 36, 18, 0, 341, 342, 5, 41, 0, 0, 342, 344, 3, 36, 18, 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, 35, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 348, 349, 3, 64, 32, 0, 349, 350, 5, 37, 0, 0, 350, 352, 1, 0, 0, 0, 351, 348, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 3, 10, 5, 0, 354, 37, 1, 0, 0, 0, 355, 356, 5, 6, 0, 0, 356, 361, 3, 40, 20, 0, 357, 358, 5, 41, 0, 0, 358, 360, 3, 40, 20, 0, 359, 357, 1, 0, 0, 0, 360, 363, 1, 0, 0, 0, 361, 359, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 365, 1, 0, 0, 0, 363, 361, 1, 0, 0, 0, 364, 366, 3, 48, 24, 0, 365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 39, 1, 0, 0, 0, 367, 368, 3, 42, 21, 0, 368, 369, 5, 40, 0, 0, 369, 371, 1, 0, 0, 0, 370, 367, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 1, 0, 0, 0, 372, 379, 3, 46, 23, 0, 373, 376, 3, 46, 23, 0, 374, 375, 5, 39, 0, 0, 375, 377, 3, 44, 22, 0, 376, 374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 379, 1, 0, 0, 0, 378, 370, 1, 0, 0, 0, 378, 373, 1, 0, 0, 0, 379, 41, 1, 0, 0, 0, 380, 381, 7, 2, 0, 0, 381, 43, 1, 0, 0, 0, 382, 383, 7, 2, 0, 0, 383, 45, 1, 0, 0, 0, 384, 385, 7, 2, 0, 0, 385, 47, 1, 0, 0, 0, 386, 389, 3, 50, 25, 0, 387, 389, 3, 52, 26, 0, 388, 386, 1, 0, 0, 0, 388, 387, 1, 0, 0, 0, 389, 49, 1, 0, 0, 0, 390, 391, 5, 88, 0, 0, 391, 396, 5, 89, 0, 0, 392, 393, 5, 41, 0, 0, 393, 395, 5, 89, 0, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 51, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 400, 5, 78, 0, 0, 400, 401, 3, 50, 25, 0, 401, 402, 5, 79, 0, 0, 402, 53, 1, 0, 0, 0, 403, 404, 5, 21, 0, 0, 404, 409, 3, 40, 20, 0, 405, 406, 5, 41, 0, 0, 406, 408, 3, 40, 20, 0, 407, 405, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 413, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 412, 414, 3, 60, 30, 0, 413, 412, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 416, 5, 38, 0, 0, 416, 418, 3, 34, 17, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 55, 1, 0, 0, 0, 419, 420, 5, 4, 0, 0, 420, 421, 3, 34, 17, 0, 421, 57, 1, 0, 0, 0, 422, 424, 5, 15, 0, 0, 423, 425, 3, 60, 30, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 428, 1, 0, 0, 0, 426, 427, 5, 38, 0, 0, 427, 429, 3, 34, 17, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 59, 1, 0, 0, 0, 430, 435, 3, 62, 31, 0, 431, 432, 5, 41, 0, 0, 432, 434, 3, 62, 31, 0, 433, 431, 1, 0, 0, 0, 434, 437, 1, 0, 0, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 61, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 438, 441, 3, 36, 18, 0, 439, 440, 5, 16, 0, 0, 440, 442, 3, 10, 5, 0, 441, 439, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 63, 1, 0, 0, 0, 443, 448, 3, 80, 40, 0, 444, 445, 5, 43, 0, 0, 445, 447, 3, 80, 40, 0, 446, 444, 1, 0, 0, 0, 447, 450, 1, 0, 0, 0, 448, 446, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 65, 1, 0, 0, 0, 450, 448, 1, 0, 0, 0, 451, 456, 3, 72, 36, 0, 452, 453, 5, 43, 0, 0, 453, 455, 3, 72, 36, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 67, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 464, 3, 66, 33, 0, 460, 461, 5, 41, 0, 0, 461, 463, 3, 66, 33, 0, 462, 460, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 69, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 468, 7, 3, 0, 0, 468, 71, 1, 0, 0, 0, 469, 473, 5, 93, 0, 0, 470, 473, 3, 76, 38, 0, 471, 473, 3, 78, 39, 0, 472, 469, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 472, 471, 1, 0, 0, 0, 473, 73, 1, 0, 0, 0, 474, 517, 5, 52, 0, 0, 475, 476, 3, 112, 56, 0, 476, 477, 5, 80, 0, 0, 477, 517, 1, 0, 0, 0, 478, 517, 3, 110, 55, 0, 479, 517, 3, 112, 56, 0, 480, 517, 3, 106, 53, 0, 481, 517, 3, 76, 38, 0, 482, 517, 3, 114, 57, 0, 483, 484, 5, 78, 0, 0, 484, 489, 3, 108, 54, 0, 485, 486, 5, 41, 0, 0, 486, 488, 3, 108, 54, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 493, 5, 79, 0, 0, 493, 517, 1, 0, 0, 0, 494, 495, 5, 78, 0, 0, 495, 500, 3, 106, 53, 0, 496, 497, 5, 41, 0, 0, 497, 499, 3, 106, 53, 0, 498, 496, 1, 0, 0, 0, 499, 502, 1, 0, 0, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 503, 504, 5, 79, 0, 0, 504, 517, 1, 0, 0, 0, 505, 506, 5, 78, 0, 0, 506, 511, 3, 114, 57, 0, 507, 508, 5, 41, 0, 0, 508, 510, 3, 114, 57, 0, 509, 507, 1, 0, 0, 0, 510, 513, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 511, 1, 0, 0, 0, 514, 515, 5, 79, 0, 0, 515, 517, 1, 0, 0, 0, 516, 474, 1, 0, 0, 0, 516, 475, 1, 0, 0, 0, 516, 478, 1, 0, 0, 0, 516, 479, 1, 0, 0, 0, 516, 480, 1, 0, 0, 0, 516, 481, 1, 0, 0, 0, 516, 482, 1, 0, 0, 0, 516, 483, 1, 0, 0, 0, 516, 494, 1, 0, 0, 0, 516, 505, 1, 0, 0, 0, 517, 75, 1, 0, 0, 0, 518, 521, 5, 56, 0, 0, 519, 521, 5, 76, 0, 0, 520, 518, 1, 0, 0, 0, 520, 519, 1, 0, 0, 0, 521, 77, 1, 0, 0, 0, 522, 525, 5, 75, 0, 0, 523, 525, 5, 77, 0, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 79, 1, 0, 0, 0, 526, 530, 3, 70, 35, 0, 527, 530, 3, 76, 38, 0, 528, 530, 3, 78, 39, 0, 529, 526, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 529, 528, 1, 0, 0, 0, 530, 81, 1, 0, 0, 0, 531, 532, 5, 9, 0, 0, 532, 533, 3, 74, 37, 0, 533, 83, 1, 0, 0, 0, 534, 535, 5, 14, 0, 0, 535, 540, 3, 86, 43, 0, 536, 537, 5, 41, 0, 0, 537, 539, 3, 86, 43, 0, 538, 536, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 85, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 543, 545, 3, 10, 5, 0, 544, 546, 7, 4, 0, 0, 545, 544, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 549, 1, 0, 0, 0, 547, 548, 5, 53, 0, 0, 548, 550, 7, 5, 0, 0, 549, 547, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 87, 1, 0, 0, 0, 551, 552, 5, 8, 0, 0, 552, 553, 3, 68, 34, 0, 553, 89, 1, 0, 0, 0, 554, 555, 5, 2, 0, 0, 555, 556, 3, 68, 34, 0, 556, 91, 1, 0, 0, 0, 557, 558, 5, 11, 0, 0, 558, 563, 3, 94, 47, 0, 559, 560, 5, 41, 0, 0, 560, 562, 3, 94, 47, 0, 561, 559, 1, 0, 0, 0, 562, 565, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 93, 1, 0, 0, 0, 565, 563, 1, 0, 0, 0, 566, 567, 3, 66, 33, 0, 567, 568, 5, 35, 0, 0, 568, 569, 3, 66, 33, 0, 569, 95, 1, 0, 0, 0, 570, 571, 5, 1, 0, 0, 571, 572, 3, 20, 10, 0, 572, 574, 3, 114, 57, 0, 573, 575, 3, 102, 51, 0, 574, 573, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 97, 1, 0, 0, 0, 576, 577, 5, 7, 0, 0, 577, 578, 3, 20, 10, 0, 578, 579, 3, 114, 57, 0, 579, 99, 1, 0, 0, 0, 580, 581, 5, 10, 0, 0, 581, 582, 3, 64, 32, 0, 582, 101, 1, 0, 0, 0, 583, 588, 3, 104, 52, 0, 584, 585, 5, 41, 0, 0, 585, 587, 3, 104, 52, 0, 586, 584, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 586, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 103, 1, 0, 0, 0, 590, 588, 1, 0, 0, 0, 591, 592, 3, 70, 35, 0, 592, 593, 5, 37, 0, 0, 593, 594, 3, 74, 37, 0, 594, 105, 1, 0, 0, 0, 595, 596, 7, 6, 0, 0, 596, 107, 1, 0, 0, 0, 597, 600, 3, 110, 55, 0, 598, 600, 3, 112, 56, 0, 599, 597, 1, 0, 0, 0, 599, 598, 1, 0, 0, 0, 600, 109, 1, 0, 0, 0, 601, 603, 7, 0, 0, 0, 602, 601, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 5, 33, 0, 0, 605, 111, 1, 0, 0, 0, 606, 608, 7, 0, 0, 0, 607, 606, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 1, 0, 0, 0, 609, 610, 5, 32, 0, 0, 610, 113, 1, 0, 0, 0, 611, 612, 5, 31, 0, 0, 612, 115, 1, 0, 0, 0, 613, 614, 7, 7, 0, 0, 614, 117, 1, 0, 0, 0, 615, 616, 5, 5, 0, 0, 616, 617, 3, 120, 60, 0, 617, 119, 1, 0, 0, 0, 618, 619, 5, 78, 0, 0, 619, 620, 3, 2, 1, 0, 620, 621, 5, 79, 0, 0, 621, 121, 1, 0, 0, 0, 622, 623, 5, 13, 0, 0, 623, 624, 5, 110, 0, 0, 624, 123, 1, 0, 0, 0, 625, 626, 5, 3, 0, 0, 626, 629, 5, 100, 0, 0, 627, 628, 5, 54, 0, 0, 628, 630, 3, 66, 33, 0, 629, 627, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 640, 1, 0, 0, 0, 631, 632, 5, 60, 0, 0, 632, 637, 3, 126, 63, 0, 633, 634, 5, 41, 0, 0, 634, 636, 3, 126, 63, 0, 635, 633, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 641, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 631, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 125, 1, 0, 0, 0, 642, 643, 3, 66, 33, 0, 643, 644, 5, 37, 0, 0, 644, 646, 1, 0, 0, 0, 645, 642, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 3, 66, 33, 0, 648, 127, 1, 0, 0, 0, 649, 650, 5, 18, 0, 0, 650, 653, 3, 64, 32, 0, 651, 652, 5, 54, 0, 0, 652, 654, 3, 64, 32, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 660, 1, 0, 0, 0, 655, 656, 5, 35, 0, 0, 656, 657, 3, 64, 32, 0, 657, 658, 5, 41, 0, 0, 658, 659, 3, 64, 32, 0, 659, 661, 1, 0, 0, 0, 660, 655, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 129, 1, 0, 0, 0, 662, 663, 5, 20, 0, 0, 663, 664, 3, 40, 20, 0, 664, 665, 5, 54, 0, 0, 665, 666, 3, 68, 34, 0, 666, 131, 1, 0, 0, 0, 667, 668, 5, 19, 0, 0, 668, 671, 3, 60, 30, 0, 669, 670, 5, 38, 0, 0, 670, 672, 3, 34, 17, 0, 671, 669, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 133, 1, 0, 0, 0, 673, 674, 7, 8, 0, 0, 674, 675, 5, 124, 0, 0, 675, 676, 3, 136, 68, 0, 676, 677, 3, 138, 69, 0, 677, 135, 1, 0, 0, 0, 678, 679, 3, 40, 20, 0, 679, 137, 1, 0, 0, 0, 680, 681, 5, 54, 0, 0, 681, 686, 3, 140, 70, 0, 682, 683, 5, 41, 0, 0, 683, 685, 3, 140, 70, 0, 684, 682, 1, 0, 0, 0, 685, 688, 1, 0, 0, 0, 686, 684, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 139, 1, 0, 0, 0, 688, 686, 1, 0, 0, 0, 689, 690, 3, 16, 8, 0, 690, 141, 1, 0, 0, 0, 691, 692, 5, 22, 0, 0, 692, 693, 3, 74, 37, 0, 693, 694, 5, 54, 0, 0, 694, 695, 3, 34, 17, 0, 695, 696, 5, 60, 0, 0, 696, 697, 3, 80, 40, 0, 697, 143, 1, 0, 0, 0, 67, 155, 164, 186, 198, 207, 215, 220, 228, 230, 235, 242, 247, 252, 262, 268, 276, 278, 289, 296, 307, 312, 314, 326, 345, 351, 361, 365, 370, 376, 378, 388, 396, 409, 413, 417, 424, 428, 435, 441, 448, 456, 464, 472, 489, 500, 511, 516, 520, 524, 529, 540, 545, 549, 563, 574, 588, 599, 602, 607, 629, 637, 640, 645, 653, 660, 671, 686]
\ No newline at end of file
+[4, 1, 138, 711, 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, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 203, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 210, 8, 5, 10, 5, 12, 5, 213, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 220, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 225, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 233, 8, 5, 10, 5, 12, 5, 236, 9, 5, 1, 6, 1, 6, 3, 6, 240, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 247, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 252, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 257, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 267, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 273, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 281, 8, 9, 10, 9, 12, 9, 284, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 294, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 299, 8, 10, 10, 10, 12, 10, 302, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 310, 8, 11, 10, 11, 12, 11, 313, 9, 11, 1, 11, 1, 11, 3, 11, 317, 8, 11, 3, 11, 319, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 329, 8, 13, 10, 13, 12, 13, 332, 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, 348, 8, 17, 10, 17, 12, 17, 351, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 356, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 364, 8, 19, 10, 19, 12, 19, 367, 9, 19, 1, 19, 3, 19, 370, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 375, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 381, 8, 20, 3, 20, 383, 8, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 393, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 399, 8, 25, 10, 25, 12, 25, 402, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 412, 8, 27, 10, 27, 12, 27, 415, 9, 27, 1, 27, 3, 27, 418, 8, 27, 1, 27, 1, 27, 3, 27, 422, 8, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 429, 8, 29, 1, 29, 1, 29, 3, 29, 433, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 438, 8, 30, 10, 30, 12, 30, 441, 9, 30, 1, 31, 1, 31, 1, 31, 3, 31, 446, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 451, 8, 32, 10, 32, 12, 32, 454, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 459, 8, 33, 10, 33, 12, 33, 462, 9, 33, 1, 34, 1, 34, 1, 34, 5, 34, 467, 8, 34, 10, 34, 12, 34, 470, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 3, 36, 477, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 492, 8, 37, 10, 37, 12, 37, 495, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 503, 8, 37, 10, 37, 12, 37, 506, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 514, 8, 37, 10, 37, 12, 37, 517, 9, 37, 1, 37, 1, 37, 3, 37, 521, 8, 37, 1, 38, 1, 38, 3, 38, 525, 8, 38, 1, 39, 1, 39, 3, 39, 529, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 534, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 543, 8, 42, 10, 42, 12, 42, 546, 9, 42, 1, 43, 1, 43, 3, 43, 550, 8, 43, 1, 43, 1, 43, 3, 43, 554, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 566, 8, 46, 10, 46, 12, 46, 569, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 579, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 5, 51, 591, 8, 51, 10, 51, 12, 51, 594, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 604, 8, 54, 1, 55, 3, 55, 607, 8, 55, 1, 55, 1, 55, 1, 56, 3, 56, 612, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 634, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 640, 8, 62, 10, 62, 12, 62, 643, 9, 62, 3, 62, 645, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 650, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 658, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 665, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 676, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 689, 8, 69, 10, 69, 12, 69, 692, 9, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 709, 8, 72, 1, 72, 0, 4, 2, 10, 18, 20, 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, 69, 70, 1, 0, 71, 73, 2, 0, 32, 32, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 17, 17, 25, 26, 741, 0, 146, 1, 0, 0, 0, 2, 149, 1, 0, 0, 0, 4, 166, 1, 0, 0, 0, 6, 190, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 224, 1, 0, 0, 0, 12, 251, 1, 0, 0, 0, 14, 253, 1, 0, 0, 0, 16, 266, 1, 0, 0, 0, 18, 272, 1, 0, 0, 0, 20, 293, 1, 0, 0, 0, 22, 303, 1, 0, 0, 0, 24, 322, 1, 0, 0, 0, 26, 324, 1, 0, 0, 0, 28, 335, 1, 0, 0, 0, 30, 339, 1, 0, 0, 0, 32, 341, 1, 0, 0, 0, 34, 344, 1, 0, 0, 0, 36, 355, 1, 0, 0, 0, 38, 359, 1, 0, 0, 0, 40, 382, 1, 0, 0, 0, 42, 384, 1, 0, 0, 0, 44, 386, 1, 0, 0, 0, 46, 388, 1, 0, 0, 0, 48, 392, 1, 0, 0, 0, 50, 394, 1, 0, 0, 0, 52, 403, 1, 0, 0, 0, 54, 407, 1, 0, 0, 0, 56, 423, 1, 0, 0, 0, 58, 426, 1, 0, 0, 0, 60, 434, 1, 0, 0, 0, 62, 442, 1, 0, 0, 0, 64, 447, 1, 0, 0, 0, 66, 455, 1, 0, 0, 0, 68, 463, 1, 0, 0, 0, 70, 471, 1, 0, 0, 0, 72, 476, 1, 0, 0, 0, 74, 520, 1, 0, 0, 0, 76, 524, 1, 0, 0, 0, 78, 528, 1, 0, 0, 0, 80, 533, 1, 0, 0, 0, 82, 535, 1, 0, 0, 0, 84, 538, 1, 0, 0, 0, 86, 547, 1, 0, 0, 0, 88, 555, 1, 0, 0, 0, 90, 558, 1, 0, 0, 0, 92, 561, 1, 0, 0, 0, 94, 570, 1, 0, 0, 0, 96, 574, 1, 0, 0, 0, 98, 580, 1, 0, 0, 0, 100, 584, 1, 0, 0, 0, 102, 587, 1, 0, 0, 0, 104, 595, 1, 0, 0, 0, 106, 599, 1, 0, 0, 0, 108, 603, 1, 0, 0, 0, 110, 606, 1, 0, 0, 0, 112, 611, 1, 0, 0, 0, 114, 615, 1, 0, 0, 0, 116, 617, 1, 0, 0, 0, 118, 619, 1, 0, 0, 0, 120, 622, 1, 0, 0, 0, 122, 626, 1, 0, 0, 0, 124, 629, 1, 0, 0, 0, 126, 649, 1, 0, 0, 0, 128, 653, 1, 0, 0, 0, 130, 666, 1, 0, 0, 0, 132, 671, 1, 0, 0, 0, 134, 677, 1, 0, 0, 0, 136, 682, 1, 0, 0, 0, 138, 684, 1, 0, 0, 0, 140, 693, 1, 0, 0, 0, 142, 695, 1, 0, 0, 0, 144, 702, 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, 118, 59, 0, 161, 167, 3, 38, 19, 0, 162, 167, 3, 32, 16, 0, 163, 167, 3, 122, 61, 0, 164, 165, 4, 2, 1, 0, 165, 167, 3, 54, 27, 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, 191, 3, 56, 28, 0, 169, 191, 3, 8, 4, 0, 170, 191, 3, 88, 44, 0, 171, 191, 3, 82, 41, 0, 172, 191, 3, 58, 29, 0, 173, 191, 3, 84, 42, 0, 174, 191, 3, 90, 45, 0, 175, 191, 3, 92, 46, 0, 176, 191, 3, 96, 48, 0, 177, 191, 3, 98, 49, 0, 178, 191, 3, 124, 62, 0, 179, 191, 3, 100, 50, 0, 180, 191, 3, 134, 67, 0, 181, 191, 3, 128, 64, 0, 182, 183, 4, 3, 2, 0, 183, 191, 3, 144, 72, 0, 184, 185, 4, 3, 3, 0, 185, 191, 3, 132, 66, 0, 186, 187, 4, 3, 4, 0, 187, 191, 3, 130, 65, 0, 188, 189, 4, 3, 5, 0, 189, 191, 3, 142, 71, 0, 190, 168, 1, 0, 0, 0, 190, 169, 1, 0, 0, 0, 190, 170, 1, 0, 0, 0, 190, 171, 1, 0, 0, 0, 190, 172, 1, 0, 0, 0, 190, 173, 1, 0, 0, 0, 190, 174, 1, 0, 0, 0, 190, 175, 1, 0, 0, 0, 190, 176, 1, 0, 0, 0, 190, 177, 1, 0, 0, 0, 190, 178, 1, 0, 0, 0, 190, 179, 1, 0, 0, 0, 190, 180, 1, 0, 0, 0, 190, 181, 1, 0, 0, 0, 190, 182, 1, 0, 0, 0, 190, 184, 1, 0, 0, 0, 190, 186, 1, 0, 0, 0, 190, 188, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 16, 0, 0, 193, 194, 3, 10, 5, 0, 194, 9, 1, 0, 0, 0, 195, 196, 6, 5, -1, 0, 196, 197, 5, 52, 0, 0, 197, 225, 3, 10, 5, 8, 198, 225, 3, 16, 8, 0, 199, 225, 3, 12, 6, 0, 200, 202, 3, 16, 8, 0, 201, 203, 5, 52, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 205, 5, 47, 0, 0, 205, 206, 5, 51, 0, 0, 206, 211, 3, 16, 8, 0, 207, 208, 5, 42, 0, 0, 208, 210, 3, 16, 8, 0, 209, 207, 1, 0, 0, 0, 210, 213, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 214, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 214, 215, 5, 59, 0, 0, 215, 225, 1, 0, 0, 0, 216, 217, 3, 16, 8, 0, 217, 219, 5, 48, 0, 0, 218, 220, 5, 52, 0, 0, 219, 218, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 222, 5, 53, 0, 0, 222, 225, 1, 0, 0, 0, 223, 225, 3, 14, 7, 0, 224, 195, 1, 0, 0, 0, 224, 198, 1, 0, 0, 0, 224, 199, 1, 0, 0, 0, 224, 200, 1, 0, 0, 0, 224, 216, 1, 0, 0, 0, 224, 223, 1, 0, 0, 0, 225, 234, 1, 0, 0, 0, 226, 227, 10, 5, 0, 0, 227, 228, 5, 35, 0, 0, 228, 233, 3, 10, 5, 6, 229, 230, 10, 4, 0, 0, 230, 231, 5, 56, 0, 0, 231, 233, 3, 10, 5, 5, 232, 226, 1, 0, 0, 0, 232, 229, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 11, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 239, 3, 16, 8, 0, 238, 240, 5, 52, 0, 0, 239, 238, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 5, 50, 0, 0, 242, 243, 3, 114, 57, 0, 243, 252, 1, 0, 0, 0, 244, 246, 3, 16, 8, 0, 245, 247, 5, 52, 0, 0, 246, 245, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 5, 58, 0, 0, 249, 250, 3, 114, 57, 0, 250, 252, 1, 0, 0, 0, 251, 237, 1, 0, 0, 0, 251, 244, 1, 0, 0, 0, 252, 13, 1, 0, 0, 0, 253, 256, 3, 64, 32, 0, 254, 255, 5, 40, 0, 0, 255, 257, 3, 30, 15, 0, 256, 254, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 259, 5, 41, 0, 0, 259, 260, 3, 74, 37, 0, 260, 15, 1, 0, 0, 0, 261, 267, 3, 18, 9, 0, 262, 263, 3, 18, 9, 0, 263, 264, 3, 116, 58, 0, 264, 265, 3, 18, 9, 0, 265, 267, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 267, 17, 1, 0, 0, 0, 268, 269, 6, 9, -1, 0, 269, 273, 3, 20, 10, 0, 270, 271, 7, 0, 0, 0, 271, 273, 3, 18, 9, 3, 272, 268, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 273, 282, 1, 0, 0, 0, 274, 275, 10, 2, 0, 0, 275, 276, 7, 1, 0, 0, 276, 281, 3, 18, 9, 3, 277, 278, 10, 1, 0, 0, 278, 279, 7, 0, 0, 0, 279, 281, 3, 18, 9, 2, 280, 274, 1, 0, 0, 0, 280, 277, 1, 0, 0, 0, 281, 284, 1, 0, 0, 0, 282, 280, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 19, 1, 0, 0, 0, 284, 282, 1, 0, 0, 0, 285, 286, 6, 10, -1, 0, 286, 294, 3, 74, 37, 0, 287, 294, 3, 64, 32, 0, 288, 294, 3, 22, 11, 0, 289, 290, 5, 51, 0, 0, 290, 291, 3, 10, 5, 0, 291, 292, 5, 59, 0, 0, 292, 294, 1, 0, 0, 0, 293, 285, 1, 0, 0, 0, 293, 287, 1, 0, 0, 0, 293, 288, 1, 0, 0, 0, 293, 289, 1, 0, 0, 0, 294, 300, 1, 0, 0, 0, 295, 296, 10, 1, 0, 0, 296, 297, 5, 40, 0, 0, 297, 299, 3, 30, 15, 0, 298, 295, 1, 0, 0, 0, 299, 302, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 21, 1, 0, 0, 0, 302, 300, 1, 0, 0, 0, 303, 304, 3, 24, 12, 0, 304, 318, 5, 51, 0, 0, 305, 319, 5, 71, 0, 0, 306, 311, 3, 10, 5, 0, 307, 308, 5, 42, 0, 0, 308, 310, 3, 10, 5, 0, 309, 307, 1, 0, 0, 0, 310, 313, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 316, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 314, 315, 5, 42, 0, 0, 315, 317, 3, 26, 13, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 319, 1, 0, 0, 0, 318, 305, 1, 0, 0, 0, 318, 306, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 321, 5, 59, 0, 0, 321, 23, 1, 0, 0, 0, 322, 323, 3, 80, 40, 0, 323, 25, 1, 0, 0, 0, 324, 325, 5, 74, 0, 0, 325, 330, 3, 28, 14, 0, 326, 327, 5, 42, 0, 0, 327, 329, 3, 28, 14, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 333, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 5, 75, 0, 0, 334, 27, 1, 0, 0, 0, 335, 336, 3, 114, 57, 0, 336, 337, 5, 41, 0, 0, 337, 338, 3, 74, 37, 0, 338, 29, 1, 0, 0, 0, 339, 340, 3, 70, 35, 0, 340, 31, 1, 0, 0, 0, 341, 342, 5, 12, 0, 0, 342, 343, 3, 34, 17, 0, 343, 33, 1, 0, 0, 0, 344, 349, 3, 36, 18, 0, 345, 346, 5, 42, 0, 0, 346, 348, 3, 36, 18, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 35, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 3, 64, 32, 0, 353, 354, 5, 38, 0, 0, 354, 356, 1, 0, 0, 0, 355, 352, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, 3, 10, 5, 0, 358, 37, 1, 0, 0, 0, 359, 360, 5, 6, 0, 0, 360, 365, 3, 40, 20, 0, 361, 362, 5, 42, 0, 0, 362, 364, 3, 40, 20, 0, 363, 361, 1, 0, 0, 0, 364, 367, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 370, 3, 48, 24, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 39, 1, 0, 0, 0, 371, 372, 3, 42, 21, 0, 372, 373, 5, 41, 0, 0, 373, 375, 1, 0, 0, 0, 374, 371, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 383, 3, 46, 23, 0, 377, 380, 3, 46, 23, 0, 378, 379, 5, 40, 0, 0, 379, 381, 3, 44, 22, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 383, 1, 0, 0, 0, 382, 374, 1, 0, 0, 0, 382, 377, 1, 0, 0, 0, 383, 41, 1, 0, 0, 0, 384, 385, 7, 2, 0, 0, 385, 43, 1, 0, 0, 0, 386, 387, 7, 2, 0, 0, 387, 45, 1, 0, 0, 0, 388, 389, 7, 2, 0, 0, 389, 47, 1, 0, 0, 0, 390, 393, 3, 50, 25, 0, 391, 393, 3, 52, 26, 0, 392, 390, 1, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 49, 1, 0, 0, 0, 394, 395, 5, 89, 0, 0, 395, 400, 5, 90, 0, 0, 396, 397, 5, 42, 0, 0, 397, 399, 5, 90, 0, 0, 398, 396, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 51, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 403, 404, 5, 79, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 80, 0, 0, 406, 53, 1, 0, 0, 0, 407, 408, 5, 22, 0, 0, 408, 413, 3, 40, 20, 0, 409, 410, 5, 42, 0, 0, 410, 412, 3, 40, 20, 0, 411, 409, 1, 0, 0, 0, 412, 415, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 416, 418, 3, 60, 30, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 421, 1, 0, 0, 0, 419, 420, 5, 39, 0, 0, 420, 422, 3, 34, 17, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 55, 1, 0, 0, 0, 423, 424, 5, 4, 0, 0, 424, 425, 3, 34, 17, 0, 425, 57, 1, 0, 0, 0, 426, 428, 5, 15, 0, 0, 427, 429, 3, 60, 30, 0, 428, 427, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 431, 5, 39, 0, 0, 431, 433, 3, 34, 17, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 59, 1, 0, 0, 0, 434, 439, 3, 62, 31, 0, 435, 436, 5, 42, 0, 0, 436, 438, 3, 62, 31, 0, 437, 435, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 61, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 445, 3, 36, 18, 0, 443, 444, 5, 16, 0, 0, 444, 446, 3, 10, 5, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 63, 1, 0, 0, 0, 447, 452, 3, 80, 40, 0, 448, 449, 5, 44, 0, 0, 449, 451, 3, 80, 40, 0, 450, 448, 1, 0, 0, 0, 451, 454, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 65, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 455, 460, 3, 72, 36, 0, 456, 457, 5, 44, 0, 0, 457, 459, 3, 72, 36, 0, 458, 456, 1, 0, 0, 0, 459, 462, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 67, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 463, 468, 3, 66, 33, 0, 464, 465, 5, 42, 0, 0, 465, 467, 3, 66, 33, 0, 466, 464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 69, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 7, 3, 0, 0, 472, 71, 1, 0, 0, 0, 473, 477, 5, 94, 0, 0, 474, 477, 3, 76, 38, 0, 475, 477, 3, 78, 39, 0, 476, 473, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 475, 1, 0, 0, 0, 477, 73, 1, 0, 0, 0, 478, 521, 5, 53, 0, 0, 479, 480, 3, 112, 56, 0, 480, 481, 5, 81, 0, 0, 481, 521, 1, 0, 0, 0, 482, 521, 3, 110, 55, 0, 483, 521, 3, 112, 56, 0, 484, 521, 3, 106, 53, 0, 485, 521, 3, 76, 38, 0, 486, 521, 3, 114, 57, 0, 487, 488, 5, 79, 0, 0, 488, 493, 3, 108, 54, 0, 489, 490, 5, 42, 0, 0, 490, 492, 3, 108, 54, 0, 491, 489, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 496, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 496, 497, 5, 80, 0, 0, 497, 521, 1, 0, 0, 0, 498, 499, 5, 79, 0, 0, 499, 504, 3, 106, 53, 0, 500, 501, 5, 42, 0, 0, 501, 503, 3, 106, 53, 0, 502, 500, 1, 0, 0, 0, 503, 506, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 507, 508, 5, 80, 0, 0, 508, 521, 1, 0, 0, 0, 509, 510, 5, 79, 0, 0, 510, 515, 3, 114, 57, 0, 511, 512, 5, 42, 0, 0, 512, 514, 3, 114, 57, 0, 513, 511, 1, 0, 0, 0, 514, 517, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 518, 519, 5, 80, 0, 0, 519, 521, 1, 0, 0, 0, 520, 478, 1, 0, 0, 0, 520, 479, 1, 0, 0, 0, 520, 482, 1, 0, 0, 0, 520, 483, 1, 0, 0, 0, 520, 484, 1, 0, 0, 0, 520, 485, 1, 0, 0, 0, 520, 486, 1, 0, 0, 0, 520, 487, 1, 0, 0, 0, 520, 498, 1, 0, 0, 0, 520, 509, 1, 0, 0, 0, 521, 75, 1, 0, 0, 0, 522, 525, 5, 57, 0, 0, 523, 525, 5, 77, 0, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 77, 1, 0, 0, 0, 526, 529, 5, 76, 0, 0, 527, 529, 5, 78, 0, 0, 528, 526, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 79, 1, 0, 0, 0, 530, 534, 3, 70, 35, 0, 531, 534, 3, 76, 38, 0, 532, 534, 3, 78, 39, 0, 533, 530, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 533, 532, 1, 0, 0, 0, 534, 81, 1, 0, 0, 0, 535, 536, 5, 9, 0, 0, 536, 537, 3, 74, 37, 0, 537, 83, 1, 0, 0, 0, 538, 539, 5, 14, 0, 0, 539, 544, 3, 86, 43, 0, 540, 541, 5, 42, 0, 0, 541, 543, 3, 86, 43, 0, 542, 540, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 85, 1, 0, 0, 0, 546, 544, 1, 0, 0, 0, 547, 549, 3, 10, 5, 0, 548, 550, 7, 4, 0, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 552, 5, 54, 0, 0, 552, 554, 7, 5, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 87, 1, 0, 0, 0, 555, 556, 5, 8, 0, 0, 556, 557, 3, 68, 34, 0, 557, 89, 1, 0, 0, 0, 558, 559, 5, 2, 0, 0, 559, 560, 3, 68, 34, 0, 560, 91, 1, 0, 0, 0, 561, 562, 5, 11, 0, 0, 562, 567, 3, 94, 47, 0, 563, 564, 5, 42, 0, 0, 564, 566, 3, 94, 47, 0, 565, 563, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 93, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 571, 3, 66, 33, 0, 571, 572, 5, 36, 0, 0, 572, 573, 3, 66, 33, 0, 573, 95, 1, 0, 0, 0, 574, 575, 5, 1, 0, 0, 575, 576, 3, 20, 10, 0, 576, 578, 3, 114, 57, 0, 577, 579, 3, 102, 51, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 97, 1, 0, 0, 0, 580, 581, 5, 7, 0, 0, 581, 582, 3, 20, 10, 0, 582, 583, 3, 114, 57, 0, 583, 99, 1, 0, 0, 0, 584, 585, 5, 10, 0, 0, 585, 586, 3, 64, 32, 0, 586, 101, 1, 0, 0, 0, 587, 592, 3, 104, 52, 0, 588, 589, 5, 42, 0, 0, 589, 591, 3, 104, 52, 0, 590, 588, 1, 0, 0, 0, 591, 594, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 103, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 3, 70, 35, 0, 596, 597, 5, 38, 0, 0, 597, 598, 3, 74, 37, 0, 598, 105, 1, 0, 0, 0, 599, 600, 7, 6, 0, 0, 600, 107, 1, 0, 0, 0, 601, 604, 3, 110, 55, 0, 602, 604, 3, 112, 56, 0, 603, 601, 1, 0, 0, 0, 603, 602, 1, 0, 0, 0, 604, 109, 1, 0, 0, 0, 605, 607, 7, 0, 0, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 34, 0, 0, 609, 111, 1, 0, 0, 0, 610, 612, 7, 0, 0, 0, 611, 610, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 5, 33, 0, 0, 614, 113, 1, 0, 0, 0, 615, 616, 5, 32, 0, 0, 616, 115, 1, 0, 0, 0, 617, 618, 7, 7, 0, 0, 618, 117, 1, 0, 0, 0, 619, 620, 5, 5, 0, 0, 620, 621, 3, 120, 60, 0, 621, 119, 1, 0, 0, 0, 622, 623, 5, 79, 0, 0, 623, 624, 3, 2, 1, 0, 624, 625, 5, 80, 0, 0, 625, 121, 1, 0, 0, 0, 626, 627, 5, 13, 0, 0, 627, 628, 5, 111, 0, 0, 628, 123, 1, 0, 0, 0, 629, 630, 5, 3, 0, 0, 630, 633, 5, 101, 0, 0, 631, 632, 5, 55, 0, 0, 632, 634, 3, 66, 33, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 644, 1, 0, 0, 0, 635, 636, 5, 61, 0, 0, 636, 641, 3, 126, 63, 0, 637, 638, 5, 42, 0, 0, 638, 640, 3, 126, 63, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 635, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 125, 1, 0, 0, 0, 646, 647, 3, 66, 33, 0, 647, 648, 5, 38, 0, 0, 648, 650, 1, 0, 0, 0, 649, 646, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 3, 66, 33, 0, 652, 127, 1, 0, 0, 0, 653, 654, 5, 18, 0, 0, 654, 657, 3, 64, 32, 0, 655, 656, 5, 55, 0, 0, 656, 658, 3, 64, 32, 0, 657, 655, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 664, 1, 0, 0, 0, 659, 660, 5, 36, 0, 0, 660, 661, 3, 64, 32, 0, 661, 662, 5, 42, 0, 0, 662, 663, 3, 64, 32, 0, 663, 665, 1, 0, 0, 0, 664, 659, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 129, 1, 0, 0, 0, 666, 667, 5, 21, 0, 0, 667, 668, 3, 40, 20, 0, 668, 669, 5, 55, 0, 0, 669, 670, 3, 68, 34, 0, 670, 131, 1, 0, 0, 0, 671, 672, 5, 20, 0, 0, 672, 675, 3, 60, 30, 0, 673, 674, 5, 39, 0, 0, 674, 676, 3, 34, 17, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 133, 1, 0, 0, 0, 677, 678, 7, 8, 0, 0, 678, 679, 5, 125, 0, 0, 679, 680, 3, 136, 68, 0, 680, 681, 3, 138, 69, 0, 681, 135, 1, 0, 0, 0, 682, 683, 3, 40, 20, 0, 683, 137, 1, 0, 0, 0, 684, 685, 5, 55, 0, 0, 685, 690, 3, 140, 70, 0, 686, 687, 5, 42, 0, 0, 687, 689, 3, 140, 70, 0, 688, 686, 1, 0, 0, 0, 689, 692, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 139, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 694, 3, 16, 8, 0, 694, 141, 1, 0, 0, 0, 695, 696, 5, 23, 0, 0, 696, 697, 3, 74, 37, 0, 697, 698, 5, 55, 0, 0, 698, 699, 3, 34, 17, 0, 699, 700, 5, 61, 0, 0, 700, 701, 3, 80, 40, 0, 701, 143, 1, 0, 0, 0, 702, 703, 5, 19, 0, 0, 703, 704, 3, 20, 10, 0, 704, 705, 5, 61, 0, 0, 705, 708, 3, 80, 40, 0, 706, 707, 5, 36, 0, 0, 707, 709, 3, 64, 32, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 68, 157, 166, 190, 202, 211, 219, 224, 232, 234, 239, 246, 251, 256, 266, 272, 280, 282, 293, 300, 311, 316, 318, 330, 349, 355, 365, 369, 374, 380, 382, 392, 400, 413, 417, 421, 428, 432, 439, 445, 452, 460, 468, 476, 493, 504, 515, 520, 524, 528, 533, 544, 549, 553, 567, 578, 592, 603, 606, 611, 633, 641, 644, 649, 657, 664, 675, 690, 708]
\ 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 606d3b0d66f7c..2b4f3e5b786d3 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParser.java
@@ -27,33 +27,34 @@ public class EsqlBaseParser extends ParserConfig {
public static final int
DISSECT=1, DROP=2, ENRICH=3, EVAL=4, EXPLAIN=5, FROM=6, GROK=7, KEEP=8,
LIMIT=9, MV_EXPAND=10, RENAME=11, ROW=12, SHOW=13, SORT=14, STATS=15,
- WHERE=16, JOIN_LOOKUP=17, CHANGE_POINT=18, DEV_INLINESTATS=19, DEV_LOOKUP=20,
- DEV_METRICS=21, DEV_RERANK=22, DEV_JOIN_FULL=23, DEV_JOIN_LEFT=24, DEV_JOIN_RIGHT=25,
- UNKNOWN_CMD=26, LINE_COMMENT=27, MULTILINE_COMMENT=28, WS=29, PIPE=30,
- QUOTED_STRING=31, INTEGER_LITERAL=32, DECIMAL_LITERAL=33, AND=34, AS=35,
- ASC=36, ASSIGN=37, BY=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, ON=54, OR=55, PARAM=56, RLIKE=57, RP=58, TRUE=59, WITH=60, EQ=61,
- CIEQ=62, NEQ=63, LT=64, LTE=65, GT=66, GTE=67, PLUS=68, MINUS=69, ASTERISK=70,
- SLASH=71, PERCENT=72, LEFT_BRACES=73, RIGHT_BRACES=74, DOUBLE_PARAMS=75,
- NAMED_OR_POSITIONAL_PARAM=76, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=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;
+ WHERE=16, JOIN_LOOKUP=17, CHANGE_POINT=18, DEV_COMPLETION=19, DEV_INLINESTATS=20,
+ DEV_LOOKUP=21, DEV_METRICS=22, DEV_RERANK=23, DEV_JOIN_FULL=24, DEV_JOIN_LEFT=25,
+ DEV_JOIN_RIGHT=26, UNKNOWN_CMD=27, LINE_COMMENT=28, MULTILINE_COMMENT=29,
+ WS=30, PIPE=31, QUOTED_STRING=32, INTEGER_LITERAL=33, DECIMAL_LITERAL=34,
+ AND=35, AS=36, ASC=37, ASSIGN=38, BY=39, CAST_OP=40, COLON=41, COMMA=42,
+ DESC=43, DOT=44, FALSE=45, FIRST=46, IN=47, IS=48, LAST=49, LIKE=50, LP=51,
+ NOT=52, NULL=53, NULLS=54, ON=55, OR=56, PARAM=57, RLIKE=58, RP=59, TRUE=60,
+ WITH=61, EQ=62, CIEQ=63, NEQ=64, LT=65, LTE=66, GT=67, GTE=68, PLUS=69,
+ MINUS=70, ASTERISK=71, SLASH=72, PERCENT=73, LEFT_BRACES=74, RIGHT_BRACES=75,
+ DOUBLE_PARAMS=76, NAMED_OR_POSITIONAL_PARAM=77, NAMED_OR_POSITIONAL_DOUBLE_PARAMS=78,
+ OPENING_BRACKET=79, CLOSING_BRACKET=80, UNQUOTED_IDENTIFIER=81, QUOTED_IDENTIFIER=82,
+ EXPR_LINE_COMMENT=83, EXPR_MULTILINE_COMMENT=84, EXPR_WS=85, EXPLAIN_WS=86,
+ EXPLAIN_LINE_COMMENT=87, EXPLAIN_MULTILINE_COMMENT=88, METADATA=89, UNQUOTED_SOURCE=90,
+ FROM_LINE_COMMENT=91, FROM_MULTILINE_COMMENT=92, FROM_WS=93, ID_PATTERN=94,
+ PROJECT_LINE_COMMENT=95, PROJECT_MULTILINE_COMMENT=96, PROJECT_WS=97,
+ RENAME_LINE_COMMENT=98, RENAME_MULTILINE_COMMENT=99, RENAME_WS=100, ENRICH_POLICY_NAME=101,
+ ENRICH_LINE_COMMENT=102, ENRICH_MULTILINE_COMMENT=103, ENRICH_WS=104,
+ ENRICH_FIELD_LINE_COMMENT=105, ENRICH_FIELD_MULTILINE_COMMENT=106, ENRICH_FIELD_WS=107,
+ MVEXPAND_LINE_COMMENT=108, MVEXPAND_MULTILINE_COMMENT=109, MVEXPAND_WS=110,
+ INFO=111, SHOW_LINE_COMMENT=112, SHOW_MULTILINE_COMMENT=113, SHOW_WS=114,
+ SETTING=115, SETTING_LINE_COMMENT=116, SETTTING_MULTILINE_COMMENT=117,
+ SETTING_WS=118, LOOKUP_LINE_COMMENT=119, LOOKUP_MULTILINE_COMMENT=120,
+ LOOKUP_WS=121, LOOKUP_FIELD_LINE_COMMENT=122, LOOKUP_FIELD_MULTILINE_COMMENT=123,
+ LOOKUP_FIELD_WS=124, JOIN=125, USING=126, JOIN_LINE_COMMENT=127, JOIN_MULTILINE_COMMENT=128,
+ JOIN_WS=129, METRICS_LINE_COMMENT=130, METRICS_MULTILINE_COMMENT=131,
+ METRICS_WS=132, CLOSING_METRICS_LINE_COMMENT=133, CLOSING_METRICS_MULTILINE_COMMENT=134,
+ CLOSING_METRICS_WS=135, CHANGE_POINT_LINE_COMMENT=136, CHANGE_POINT_MULTILINE_COMMENT=137,
+ CHANGE_POINT_WS=138;
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,
@@ -77,7 +78,7 @@ public class EsqlBaseParser extends ParserConfig {
RULE_enrichCommand = 62, RULE_enrichWithClause = 63, RULE_changePointCommand = 64,
RULE_lookupCommand = 65, RULE_inlinestatsCommand = 66, RULE_joinCommand = 67,
RULE_joinTarget = 68, RULE_joinCondition = 69, RULE_joinPredicate = 70,
- RULE_rerankCommand = 71;
+ RULE_rerankCommand = 71, RULE_completionCommand = 72;
private static String[] makeRuleNames() {
return new String[] {
"singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand",
@@ -95,7 +96,7 @@ private static String[] makeRuleNames() {
"integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression",
"showCommand", "enrichCommand", "enrichWithClause", "changePointCommand",
"lookupCommand", "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition",
- "joinPredicate", "rerankCommand"
+ "joinPredicate", "rerankCommand", "completionCommand"
};
}
public static final String[] ruleNames = makeRuleNames();
@@ -105,8 +106,8 @@ private static String[] makeLiteralNames() {
null, "'dissect'", "'drop'", "'enrich'", "'eval'", "'explain'", "'from'",
"'grok'", "'keep'", "'limit'", "'mv_expand'", "'rename'", "'row'", "'show'",
"'sort'", "'stats'", "'where'", "'lookup'", "'change_point'", null, null,
- null, null, null, null, null, null, null, null, null, "'|'", null, null,
- null, "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
+ null, null, null, null, null, null, null, null, null, null, "'|'", null,
+ null, null, "'and'", "'as'", "'asc'", "'='", "'by'", "'::'", "':'", "','",
"'desc'", "'.'", "'false'", "'first'", "'in'", "'is'", "'last'", "'like'",
"'('", "'not'", "'null'", "'nulls'", "'on'", "'or'", "'?'", "'rlike'",
"')'", "'true'", "'with'", "'=='", "'=~'", "'!='", "'<'", "'<='", "'>'",
@@ -123,32 +124,32 @@ private static String[] makeSymbolicNames() {
return new String[] {
null, "DISSECT", "DROP", "ENRICH", "EVAL", "EXPLAIN", "FROM", "GROK",
"KEEP", "LIMIT", "MV_EXPAND", "RENAME", "ROW", "SHOW", "SORT", "STATS",
- "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_INLINESTATS", "DEV_LOOKUP",
- "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT", "DEV_JOIN_RIGHT",
- "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT", "WS", "PIPE", "QUOTED_STRING",
- "INTEGER_LITERAL", "DECIMAL_LITERAL", "AND", "AS", "ASC", "ASSIGN", "BY",
- "CAST_OP", "COLON", "COMMA", "DESC", "DOT", "FALSE", "FIRST", "IN", "IS",
- "LAST", "LIKE", "LP", "NOT", "NULL", "NULLS", "ON", "OR", "PARAM", "RLIKE",
- "RP", "TRUE", "WITH", "EQ", "CIEQ", "NEQ", "LT", "LTE", "GT", "GTE",
- "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "LEFT_BRACES", "RIGHT_BRACES",
- "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM", "NAMED_OR_POSITIONAL_DOUBLE_PARAMS",
- "OPENING_BRACKET", "CLOSING_BRACKET", "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",
- "SHOW_MULTILINE_COMMENT", "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT",
- "SETTTING_MULTILINE_COMMENT", "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT",
- "LOOKUP_WS", "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT",
- "LOOKUP_FIELD_WS", "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT",
- "JOIN_WS", "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS",
- "CLOSING_METRICS_LINE_COMMENT", "CLOSING_METRICS_MULTILINE_COMMENT",
- "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT", "CHANGE_POINT_MULTILINE_COMMENT",
- "CHANGE_POINT_WS"
+ "WHERE", "JOIN_LOOKUP", "CHANGE_POINT", "DEV_COMPLETION", "DEV_INLINESTATS",
+ "DEV_LOOKUP", "DEV_METRICS", "DEV_RERANK", "DEV_JOIN_FULL", "DEV_JOIN_LEFT",
+ "DEV_JOIN_RIGHT", "UNKNOWN_CMD", "LINE_COMMENT", "MULTILINE_COMMENT",
+ "WS", "PIPE", "QUOTED_STRING", "INTEGER_LITERAL", "DECIMAL_LITERAL",
+ "AND", "AS", "ASC", "ASSIGN", "BY", "CAST_OP", "COLON", "COMMA", "DESC",
+ "DOT", "FALSE", "FIRST", "IN", "IS", "LAST", "LIKE", "LP", "NOT", "NULL",
+ "NULLS", "ON", "OR", "PARAM", "RLIKE", "RP", "TRUE", "WITH", "EQ", "CIEQ",
+ "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH",
+ "PERCENT", "LEFT_BRACES", "RIGHT_BRACES", "DOUBLE_PARAMS", "NAMED_OR_POSITIONAL_PARAM",
+ "NAMED_OR_POSITIONAL_DOUBLE_PARAMS", "OPENING_BRACKET", "CLOSING_BRACKET",
+ "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", "SHOW_MULTILINE_COMMENT",
+ "SHOW_WS", "SETTING", "SETTING_LINE_COMMENT", "SETTTING_MULTILINE_COMMENT",
+ "SETTING_WS", "LOOKUP_LINE_COMMENT", "LOOKUP_MULTILINE_COMMENT", "LOOKUP_WS",
+ "LOOKUP_FIELD_LINE_COMMENT", "LOOKUP_FIELD_MULTILINE_COMMENT", "LOOKUP_FIELD_WS",
+ "JOIN", "USING", "JOIN_LINE_COMMENT", "JOIN_MULTILINE_COMMENT", "JOIN_WS",
+ "METRICS_LINE_COMMENT", "METRICS_MULTILINE_COMMENT", "METRICS_WS", "CLOSING_METRICS_LINE_COMMENT",
+ "CLOSING_METRICS_MULTILINE_COMMENT", "CLOSING_METRICS_WS", "CHANGE_POINT_LINE_COMMENT",
+ "CHANGE_POINT_MULTILINE_COMMENT", "CHANGE_POINT_WS"
};
}
private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames();
@@ -235,9 +236,9 @@ public final SingleStatementContext singleStatement() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(144);
+ setState(146);
query(0);
- setState(145);
+ setState(147);
match(EOF);
}
}
@@ -333,11 +334,11 @@ private QueryContext query(int _p) throws RecognitionException {
_ctx = _localctx;
_prevctx = _localctx;
- setState(148);
+ setState(150);
sourceCommand();
}
_ctx.stop = _input.LT(-1);
- setState(155);
+ setState(157);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -348,16 +349,16 @@ private QueryContext query(int _p) throws RecognitionException {
{
_localctx = new CompositeQueryContext(new QueryContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_query);
- setState(150);
+ setState(152);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(151);
+ setState(153);
match(PIPE);
- setState(152);
+ setState(154);
processingCommand();
}
}
}
- setState(157);
+ setState(159);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,0,_ctx);
}
@@ -415,43 +416,43 @@ public final SourceCommandContext sourceCommand() throws RecognitionException {
SourceCommandContext _localctx = new SourceCommandContext(_ctx, getState());
enterRule(_localctx, 4, RULE_sourceCommand);
try {
- setState(164);
+ setState(166);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(158);
+ setState(160);
explainCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(159);
+ setState(161);
fromCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(160);
+ setState(162);
rowCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(161);
+ setState(163);
showCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(162);
+ setState(164);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(163);
+ setState(165);
metricsCommand();
}
break;
@@ -512,6 +513,9 @@ public JoinCommandContext joinCommand() {
public ChangePointCommandContext changePointCommand() {
return getRuleContext(ChangePointCommandContext.class,0);
}
+ public CompletionCommandContext completionCommand() {
+ return getRuleContext(CompletionCommandContext.class,0);
+ }
public InlinestatsCommandContext inlinestatsCommand() {
return getRuleContext(InlinestatsCommandContext.class,0);
}
@@ -545,131 +549,140 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_processingCommand);
try {
- setState(186);
+ setState(190);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(166);
+ setState(168);
evalCommand();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(167);
+ setState(169);
whereCommand();
}
break;
case 3:
enterOuterAlt(_localctx, 3);
{
- setState(168);
+ setState(170);
keepCommand();
}
break;
case 4:
enterOuterAlt(_localctx, 4);
{
- setState(169);
+ setState(171);
limitCommand();
}
break;
case 5:
enterOuterAlt(_localctx, 5);
{
- setState(170);
+ setState(172);
statsCommand();
}
break;
case 6:
enterOuterAlt(_localctx, 6);
{
- setState(171);
+ setState(173);
sortCommand();
}
break;
case 7:
enterOuterAlt(_localctx, 7);
{
- setState(172);
+ setState(174);
dropCommand();
}
break;
case 8:
enterOuterAlt(_localctx, 8);
{
- setState(173);
+ setState(175);
renameCommand();
}
break;
case 9:
enterOuterAlt(_localctx, 9);
{
- setState(174);
+ setState(176);
dissectCommand();
}
break;
case 10:
enterOuterAlt(_localctx, 10);
{
- setState(175);
+ setState(177);
grokCommand();
}
break;
case 11:
enterOuterAlt(_localctx, 11);
{
- setState(176);
+ setState(178);
enrichCommand();
}
break;
case 12:
enterOuterAlt(_localctx, 12);
{
- setState(177);
+ setState(179);
mvExpandCommand();
}
break;
case 13:
enterOuterAlt(_localctx, 13);
{
- setState(178);
+ setState(180);
joinCommand();
}
break;
case 14:
enterOuterAlt(_localctx, 14);
{
- setState(179);
+ setState(181);
changePointCommand();
}
break;
case 15:
enterOuterAlt(_localctx, 15);
{
- setState(180);
+ setState(182);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(181);
- inlinestatsCommand();
+ setState(183);
+ completionCommand();
}
break;
case 16:
enterOuterAlt(_localctx, 16);
{
- setState(182);
+ setState(184);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(183);
- lookupCommand();
+ setState(185);
+ inlinestatsCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(184);
+ setState(186);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(185);
+ setState(187);
+ lookupCommand();
+ }
+ break;
+ case 18:
+ enterOuterAlt(_localctx, 18);
+ {
+ setState(188);
+ if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
+ setState(189);
rerankCommand();
}
break;
@@ -718,9 +731,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(188);
+ setState(192);
match(WHERE);
- setState(189);
+ setState(193);
booleanExpression(0);
}
}
@@ -936,7 +949,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(220);
+ setState(224);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
@@ -945,9 +958,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(192);
+ setState(196);
match(NOT);
- setState(193);
+ setState(197);
booleanExpression(8);
}
break;
@@ -956,7 +969,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(194);
+ setState(198);
valueExpression();
}
break;
@@ -965,7 +978,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(195);
+ setState(199);
regexBooleanExpression();
}
break;
@@ -974,41 +987,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(196);
+ setState(200);
valueExpression();
- setState(198);
+ setState(202);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(197);
+ setState(201);
match(NOT);
}
}
- setState(200);
+ setState(204);
match(IN);
- setState(201);
+ setState(205);
match(LP);
- setState(202);
+ setState(206);
valueExpression();
- setState(207);
+ setState(211);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(203);
+ setState(207);
match(COMMA);
- setState(204);
+ setState(208);
valueExpression();
}
}
- setState(209);
+ setState(213);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(210);
+ setState(214);
match(RP);
}
break;
@@ -1017,21 +1030,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(212);
+ setState(216);
valueExpression();
- setState(213);
+ setState(217);
match(IS);
- setState(215);
+ setState(219);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(214);
+ setState(218);
match(NOT);
}
}
- setState(217);
+ setState(221);
match(NULL);
}
break;
@@ -1040,13 +1053,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(219);
+ setState(223);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(230);
+ setState(234);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1054,7 +1067,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(228);
+ setState(232);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
@@ -1062,11 +1075,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(222);
+ setState(226);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(223);
+ setState(227);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(224);
+ setState(228);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -1075,18 +1088,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(225);
+ setState(229);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(226);
+ setState(230);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(227);
+ setState(231);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(232);
+ setState(236);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
}
@@ -1141,48 +1154,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
enterRule(_localctx, 12, RULE_regexBooleanExpression);
int _la;
try {
- setState(247);
+ setState(251);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(233);
+ setState(237);
valueExpression();
- setState(235);
+ setState(239);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(234);
+ setState(238);
match(NOT);
}
}
- setState(237);
+ setState(241);
((RegexBooleanExpressionContext)_localctx).kind = match(LIKE);
- setState(238);
+ setState(242);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(240);
+ setState(244);
valueExpression();
- setState(242);
+ setState(246);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(241);
+ setState(245);
match(NOT);
}
}
- setState(244);
+ setState(248);
((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE);
- setState(245);
+ setState(249);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
@@ -1242,23 +1255,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(249);
+ setState(253);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(252);
+ setState(256);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(250);
+ setState(254);
match(CAST_OP);
- setState(251);
+ setState(255);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(254);
+ setState(258);
match(COLON);
- setState(255);
+ setState(259);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -1342,14 +1355,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
enterRule(_localctx, 16, RULE_valueExpression);
try {
- setState(262);
+ setState(266);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(257);
+ setState(261);
operatorExpression(0);
}
break;
@@ -1357,11 +1370,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(258);
+ setState(262);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(259);
+ setState(263);
comparisonOperator();
- setState(260);
+ setState(264);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -1486,7 +1499,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(268);
+ setState(272);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
case 1:
@@ -1495,7 +1508,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_ctx = _localctx;
_prevctx = _localctx;
- setState(265);
+ setState(269);
primaryExpression(0);
}
break;
@@ -1504,7 +1517,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(266);
+ setState(270);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1515,13 +1528,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(267);
+ setState(271);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(278);
+ setState(282);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1529,7 +1542,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(276);
+ setState(280);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
@@ -1537,12 +1550,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(270);
+ setState(274);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(271);
+ setState(275);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
- if ( !(((((_la - 70)) & ~0x3f) == 0 && ((1L << (_la - 70)) & 7L) != 0)) ) {
+ if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) {
((ArithmeticBinaryContext)_localctx).operator = (Token)_errHandler.recoverInline(this);
}
else {
@@ -1550,7 +1563,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(272);
+ setState(276);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -1559,9 +1572,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(273);
+ setState(277);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(274);
+ setState(278);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1572,14 +1585,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(275);
+ setState(279);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(280);
+ setState(284);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
}
@@ -1737,7 +1750,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(289);
+ setState(293);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
@@ -1746,7 +1759,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(282);
+ setState(286);
constant();
}
break;
@@ -1755,7 +1768,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(283);
+ setState(287);
qualifiedName();
}
break;
@@ -1764,7 +1777,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(284);
+ setState(288);
functionExpression();
}
break;
@@ -1773,17 +1786,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(285);
+ setState(289);
match(LP);
- setState(286);
+ setState(290);
booleanExpression(0);
- setState(287);
+ setState(291);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(296);
+ setState(300);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1794,16 +1807,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(291);
+ setState(295);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(292);
+ setState(296);
match(CAST_OP);
- setState(293);
+ setState(297);
dataType();
}
}
}
- setState(298);
+ setState(302);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
}
@@ -1869,16 +1882,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(299);
+ setState(303);
functionName();
- setState(300);
+ setState(304);
match(LP);
- setState(314);
+ setState(318);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(301);
+ setState(305);
match(ASTERISK);
}
break;
@@ -1901,34 +1914,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(302);
+ setState(306);
booleanExpression(0);
- setState(307);
+ setState(311);
_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(303);
+ setState(307);
match(COMMA);
- setState(304);
+ setState(308);
booleanExpression(0);
}
}
}
- setState(309);
+ setState(313);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
}
- setState(312);
+ setState(316);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(310);
+ setState(314);
match(COMMA);
- setState(311);
+ setState(315);
mapExpression();
}
}
@@ -1941,7 +1954,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(316);
+ setState(320);
match(RP);
}
}
@@ -1987,7 +2000,7 @@ public final FunctionNameContext functionName() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(318);
+ setState(322);
identifierOrParameter();
}
}
@@ -2043,27 +2056,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(320);
+ setState(324);
match(LEFT_BRACES);
- setState(321);
+ setState(325);
entryExpression();
- setState(326);
+ setState(330);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(322);
+ setState(326);
match(COMMA);
- setState(323);
+ setState(327);
entryExpression();
}
}
- setState(328);
+ setState(332);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(329);
+ setState(333);
match(RIGHT_BRACES);
}
}
@@ -2115,11 +2128,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(331);
+ setState(335);
((EntryExpressionContext)_localctx).key = string();
- setState(332);
+ setState(336);
match(COLON);
- setState(333);
+ setState(337);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -2177,7 +2190,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(335);
+ setState(339);
identifier();
}
}
@@ -2224,9 +2237,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(337);
+ setState(341);
match(ROW);
- setState(338);
+ setState(342);
fields();
}
}
@@ -2280,23 +2293,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(340);
+ setState(344);
field();
- setState(345);
+ setState(349);
_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(341);
+ setState(345);
match(COMMA);
- setState(342);
+ setState(346);
field();
}
}
}
- setState(347);
+ setState(351);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,23,_ctx);
}
@@ -2348,19 +2361,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(351);
+ setState(355);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
case 1:
{
- setState(348);
+ setState(352);
qualifiedName();
- setState(349);
+ setState(353);
match(ASSIGN);
}
break;
}
- setState(353);
+ setState(357);
booleanExpression(0);
}
}
@@ -2418,34 +2431,34 @@ public final FromCommandContext fromCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(355);
+ setState(359);
match(FROM);
- setState(356);
+ setState(360);
indexPattern();
- setState(361);
+ setState(365);
_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(357);
+ setState(361);
match(COMMA);
- setState(358);
+ setState(362);
indexPattern();
}
}
}
- setState(363);
+ setState(367);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,25,_ctx);
}
- setState(365);
+ setState(369);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
case 1:
{
- setState(364);
+ setState(368);
metadata();
}
break;
@@ -2500,41 +2513,41 @@ public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
enterRule(_localctx, 40, RULE_indexPattern);
try {
- setState(378);
+ setState(382);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(370);
+ setState(374);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) {
case 1:
{
- setState(367);
+ setState(371);
clusterString();
- setState(368);
+ setState(372);
match(COLON);
}
break;
}
- setState(372);
+ setState(376);
indexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(373);
+ setState(377);
indexString();
- setState(376);
+ setState(380);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
case 1:
{
- setState(374);
+ setState(378);
match(CAST_OP);
- setState(375);
+ setState(379);
selectorString();
}
break;
@@ -2585,7 +2598,7 @@ public final ClusterStringContext clusterString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(380);
+ setState(384);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2639,7 +2652,7 @@ public final SelectorStringContext selectorString() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(382);
+ setState(386);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2693,7 +2706,7 @@ public final IndexStringContext indexString() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(384);
+ setState(388);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2748,20 +2761,20 @@ public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
enterRule(_localctx, 48, RULE_metadata);
try {
- setState(388);
+ setState(392);
_errHandler.sync(this);
switch (_input.LA(1)) {
case METADATA:
enterOuterAlt(_localctx, 1);
{
- setState(386);
+ setState(390);
metadataOption();
}
break;
case OPENING_BRACKET:
enterOuterAlt(_localctx, 2);
{
- setState(387);
+ setState(391);
deprecated_metadata();
}
break;
@@ -2818,25 +2831,25 @@ public final MetadataOptionContext metadataOption() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(390);
+ setState(394);
match(METADATA);
- setState(391);
+ setState(395);
match(UNQUOTED_SOURCE);
- setState(396);
+ setState(400);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(392);
+ setState(396);
match(COMMA);
- setState(393);
+ setState(397);
match(UNQUOTED_SOURCE);
}
}
}
- setState(398);
+ setState(402);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,31,_ctx);
}
@@ -2885,11 +2898,11 @@ public final Deprecated_metadataContext deprecated_metadata() throws Recognition
try {
enterOuterAlt(_localctx, 1);
{
- setState(399);
+ setState(403);
match(OPENING_BRACKET);
- setState(400);
+ setState(404);
metadataOption();
- setState(401);
+ setState(405);
match(CLOSING_BRACKET);
}
}
@@ -2953,46 +2966,46 @@ public final MetricsCommandContext metricsCommand() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(403);
+ setState(407);
match(DEV_METRICS);
- setState(404);
+ setState(408);
indexPattern();
- setState(409);
+ setState(413);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(405);
+ setState(409);
match(COMMA);
- setState(406);
+ setState(410);
indexPattern();
}
}
}
- setState(411);
+ setState(415);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,32,_ctx);
}
- setState(413);
+ setState(417);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
case 1:
{
- setState(412);
+ setState(416);
((MetricsCommandContext)_localctx).aggregates = aggFields();
}
break;
}
- setState(417);
+ setState(421);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
case 1:
{
- setState(415);
+ setState(419);
match(BY);
- setState(416);
+ setState(420);
((MetricsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3042,9 +3055,9 @@ public final EvalCommandContext evalCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(419);
+ setState(423);
match(EVAL);
- setState(420);
+ setState(424);
fields();
}
}
@@ -3097,26 +3110,26 @@ public final StatsCommandContext statsCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(422);
+ setState(426);
match(STATS);
- setState(424);
+ setState(428);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(423);
+ setState(427);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(428);
+ setState(432);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
{
- setState(426);
+ setState(430);
match(BY);
- setState(427);
+ setState(431);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3173,23 +3186,23 @@ public final AggFieldsContext aggFields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(430);
+ setState(434);
aggField();
- setState(435);
+ setState(439);
_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(431);
+ setState(435);
match(COMMA);
- setState(432);
+ setState(436);
aggField();
}
}
}
- setState(437);
+ setState(441);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,37,_ctx);
}
@@ -3241,16 +3254,16 @@ public final AggFieldContext aggField() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(438);
+ setState(442);
field();
- setState(441);
+ setState(445);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(439);
+ setState(443);
match(WHERE);
- setState(440);
+ setState(444);
booleanExpression(0);
}
break;
@@ -3307,23 +3320,23 @@ public final QualifiedNameContext qualifiedName() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(443);
+ setState(447);
identifierOrParameter();
- setState(448);
+ setState(452);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(444);
+ setState(448);
match(DOT);
- setState(445);
+ setState(449);
identifierOrParameter();
}
}
}
- setState(450);
+ setState(454);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,39,_ctx);
}
@@ -3379,23 +3392,23 @@ public final QualifiedNamePatternContext qualifiedNamePattern() throws Recogniti
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(451);
+ setState(455);
identifierPattern();
- setState(456);
+ setState(460);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,40,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(452);
+ setState(456);
match(DOT);
- setState(453);
+ setState(457);
identifierPattern();
}
}
}
- setState(458);
+ setState(462);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,40,_ctx);
}
@@ -3451,23 +3464,23 @@ public final QualifiedNamePatternsContext qualifiedNamePatterns() throws Recogni
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(459);
+ setState(463);
qualifiedNamePattern();
- setState(464);
+ setState(468);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,41,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(460);
+ setState(464);
match(COMMA);
- setState(461);
+ setState(465);
qualifiedNamePattern();
}
}
}
- setState(466);
+ setState(470);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,41,_ctx);
}
@@ -3515,7 +3528,7 @@ public final IdentifierContext identifier() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(467);
+ setState(471);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -3571,13 +3584,13 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
enterRule(_localctx, 72, RULE_identifierPattern);
try {
- setState(472);
+ setState(476);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(469);
+ setState(473);
match(ID_PATTERN);
}
break;
@@ -3585,7 +3598,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(470);
+ setState(474);
parameter();
}
break;
@@ -3593,7 +3606,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(471);
+ setState(475);
doubleParameter();
}
break;
@@ -3868,14 +3881,14 @@ public final ConstantContext constant() throws RecognitionException {
enterRule(_localctx, 74, RULE_constant);
int _la;
try {
- setState(516);
+ setState(520);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(474);
+ setState(478);
match(NULL);
}
break;
@@ -3883,9 +3896,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(475);
+ setState(479);
integerValue();
- setState(476);
+ setState(480);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -3893,7 +3906,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(478);
+ setState(482);
decimalValue();
}
break;
@@ -3901,7 +3914,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(479);
+ setState(483);
integerValue();
}
break;
@@ -3909,7 +3922,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(480);
+ setState(484);
booleanValue();
}
break;
@@ -3917,7 +3930,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(481);
+ setState(485);
parameter();
}
break;
@@ -3925,7 +3938,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(482);
+ setState(486);
string();
}
break;
@@ -3933,27 +3946,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(483);
+ setState(487);
match(OPENING_BRACKET);
- setState(484);
+ setState(488);
numericValue();
- setState(489);
+ setState(493);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(485);
+ setState(489);
match(COMMA);
- setState(486);
+ setState(490);
numericValue();
}
}
- setState(491);
+ setState(495);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(492);
+ setState(496);
match(CLOSING_BRACKET);
}
break;
@@ -3961,27 +3974,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(494);
+ setState(498);
match(OPENING_BRACKET);
- setState(495);
+ setState(499);
booleanValue();
- setState(500);
+ setState(504);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(496);
+ setState(500);
match(COMMA);
- setState(497);
+ setState(501);
booleanValue();
}
}
- setState(502);
+ setState(506);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(503);
+ setState(507);
match(CLOSING_BRACKET);
}
break;
@@ -3989,27 +4002,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(505);
+ setState(509);
match(OPENING_BRACKET);
- setState(506);
+ setState(510);
string();
- setState(511);
+ setState(515);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(507);
+ setState(511);
match(COMMA);
- setState(508);
+ setState(512);
string();
}
}
- setState(513);
+ setState(517);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(514);
+ setState(518);
match(CLOSING_BRACKET);
}
break;
@@ -4083,14 +4096,14 @@ public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
enterRule(_localctx, 76, RULE_parameter);
try {
- setState(520);
+ setState(524);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(518);
+ setState(522);
match(PARAM);
}
break;
@@ -4098,7 +4111,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(519);
+ setState(523);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -4174,14 +4187,14 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
enterRule(_localctx, 78, RULE_doubleParameter);
try {
- setState(524);
+ setState(528);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(522);
+ setState(526);
match(DOUBLE_PARAMS);
}
break;
@@ -4189,7 +4202,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(523);
+ setState(527);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -4243,14 +4256,14 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
enterRule(_localctx, 80, RULE_identifierOrParameter);
try {
- setState(529);
+ setState(533);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(526);
+ setState(530);
identifier();
}
break;
@@ -4258,7 +4271,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(527);
+ setState(531);
parameter();
}
break;
@@ -4266,7 +4279,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(528);
+ setState(532);
doubleParameter();
}
break;
@@ -4317,9 +4330,9 @@ public final LimitCommandContext limitCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(531);
+ setState(535);
match(LIMIT);
- setState(532);
+ setState(536);
constant();
}
}
@@ -4374,25 +4387,25 @@ public final SortCommandContext sortCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(534);
+ setState(538);
match(SORT);
- setState(535);
+ setState(539);
orderExpression();
- setState(540);
+ setState(544);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,50,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(536);
+ setState(540);
match(COMMA);
- setState(537);
+ setState(541);
orderExpression();
}
}
}
- setState(542);
+ setState(546);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,50,_ctx);
}
@@ -4448,14 +4461,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(543);
+ setState(547);
booleanExpression(0);
- setState(545);
+ setState(549);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
case 1:
{
- setState(544);
+ setState(548);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -4469,14 +4482,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(549);
+ setState(553);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
case 1:
{
- setState(547);
+ setState(551);
match(NULLS);
- setState(548);
+ setState(552);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -4535,9 +4548,9 @@ public final KeepCommandContext keepCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(551);
+ setState(555);
match(KEEP);
- setState(552);
+ setState(556);
qualifiedNamePatterns();
}
}
@@ -4584,9 +4597,9 @@ public final DropCommandContext dropCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(554);
+ setState(558);
match(DROP);
- setState(555);
+ setState(559);
qualifiedNamePatterns();
}
}
@@ -4641,25 +4654,25 @@ public final RenameCommandContext renameCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(557);
+ setState(561);
match(RENAME);
- setState(558);
+ setState(562);
renameClause();
- setState(563);
+ setState(567);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,53,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(559);
+ setState(563);
match(COMMA);
- setState(560);
+ setState(564);
renameClause();
}
}
}
- setState(565);
+ setState(569);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,53,_ctx);
}
@@ -4713,11 +4726,11 @@ public final RenameClauseContext renameClause() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(566);
+ setState(570);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(567);
+ setState(571);
match(AS);
- setState(568);
+ setState(572);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
}
@@ -4770,18 +4783,18 @@ public final DissectCommandContext dissectCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(570);
+ setState(574);
match(DISSECT);
- setState(571);
+ setState(575);
primaryExpression(0);
- setState(572);
+ setState(576);
string();
- setState(574);
+ setState(578);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
- setState(573);
+ setState(577);
commandOptions();
}
break;
@@ -4834,11 +4847,11 @@ public final GrokCommandContext grokCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(576);
+ setState(580);
match(GROK);
- setState(577);
+ setState(581);
primaryExpression(0);
- setState(578);
+ setState(582);
string();
}
}
@@ -4885,9 +4898,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(580);
+ setState(584);
match(MV_EXPAND);
- setState(581);
+ setState(585);
qualifiedName();
}
}
@@ -4941,23 +4954,23 @@ public final CommandOptionsContext commandOptions() throws RecognitionException
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(583);
+ setState(587);
commandOption();
- setState(588);
+ setState(592);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,55,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(584);
+ setState(588);
match(COMMA);
- setState(585);
+ setState(589);
commandOption();
}
}
}
- setState(590);
+ setState(594);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,55,_ctx);
}
@@ -5009,11 +5022,11 @@ public final CommandOptionContext commandOption() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(591);
+ setState(595);
identifier();
- setState(592);
+ setState(596);
match(ASSIGN);
- setState(593);
+ setState(597);
constant();
}
}
@@ -5059,7 +5072,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(595);
+ setState(599);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -5114,20 +5127,20 @@ public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
enterRule(_localctx, 108, RULE_numericValue);
try {
- setState(599);
+ setState(603);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(597);
+ setState(601);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(598);
+ setState(602);
integerValue();
}
break;
@@ -5176,12 +5189,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(602);
+ setState(606);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(601);
+ setState(605);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5194,7 +5207,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(604);
+ setState(608);
match(DECIMAL_LITERAL);
}
}
@@ -5241,12 +5254,12 @@ public final IntegerValueContext integerValue() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(607);
+ setState(611);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(606);
+ setState(610);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5259,7 +5272,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(609);
+ setState(613);
match(INTEGER_LITERAL);
}
}
@@ -5303,7 +5316,7 @@ public final StringContext string() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(611);
+ setState(615);
match(QUOTED_STRING);
}
}
@@ -5353,9 +5366,9 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(613);
+ setState(617);
_la = _input.LA(1);
- if ( !(((((_la - 61)) & ~0x3f) == 0 && ((1L << (_la - 61)) & 125L) != 0)) ) {
+ if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
}
else {
@@ -5408,9 +5421,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException
try {
enterOuterAlt(_localctx, 1);
{
- setState(615);
+ setState(619);
match(EXPLAIN);
- setState(616);
+ setState(620);
subqueryExpression();
}
}
@@ -5458,11 +5471,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(618);
+ setState(622);
match(OPENING_BRACKET);
- setState(619);
+ setState(623);
query(0);
- setState(620);
+ setState(624);
match(CLOSING_BRACKET);
}
}
@@ -5519,9 +5532,9 @@ public final ShowCommandContext showCommand() throws RecognitionException {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(622);
+ setState(626);
match(SHOW);
- setState(623);
+ setState(627);
match(INFO);
}
}
@@ -5584,46 +5597,46 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(625);
+ setState(629);
match(ENRICH);
- setState(626);
+ setState(630);
((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME);
- setState(629);
+ setState(633);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
case 1:
{
- setState(627);
+ setState(631);
match(ON);
- setState(628);
+ setState(632);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(640);
+ setState(644);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) {
case 1:
{
- setState(631);
+ setState(635);
match(WITH);
- setState(632);
+ setState(636);
enrichWithClause();
- setState(637);
+ setState(641);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,60,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(633);
+ setState(637);
match(COMMA);
- setState(634);
+ setState(638);
enrichWithClause();
}
}
}
- setState(639);
+ setState(643);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,60,_ctx);
}
@@ -5680,19 +5693,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept
try {
enterOuterAlt(_localctx, 1);
{
- setState(645);
+ setState(649);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
case 1:
{
- setState(642);
+ setState(646);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(643);
+ setState(647);
match(ASSIGN);
}
break;
}
- setState(647);
+ setState(651);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -5749,34 +5762,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(649);
+ setState(653);
match(CHANGE_POINT);
- setState(650);
+ setState(654);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(653);
+ setState(657);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
case 1:
{
- setState(651);
+ setState(655);
match(ON);
- setState(652);
+ setState(656);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(660);
+ setState(664);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
{
- setState(655);
+ setState(659);
match(AS);
- setState(656);
+ setState(660);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(657);
+ setState(661);
match(COMMA);
- setState(658);
+ setState(662);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -5832,13 +5845,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(662);
+ setState(666);
match(DEV_LOOKUP);
- setState(663);
+ setState(667);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(664);
+ setState(668);
match(ON);
- setState(665);
+ setState(669);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -5891,18 +5904,18 @@ public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionEx
try {
enterOuterAlt(_localctx, 1);
{
- setState(667);
+ setState(671);
match(DEV_INLINESTATS);
- setState(668);
+ setState(672);
((InlinestatsCommandContext)_localctx).stats = aggFields();
- setState(671);
+ setState(675);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
case 1:
{
- setState(669);
+ setState(673);
match(BY);
- setState(670);
+ setState(674);
((InlinestatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -5960,10 +5973,10 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(673);
+ setState(677);
((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 {
@@ -5971,11 +5984,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(674);
+ setState(678);
match(JOIN);
- setState(675);
+ setState(679);
joinTarget();
- setState(676);
+ setState(680);
joinCondition();
}
}
@@ -6022,7 +6035,7 @@ public final JoinTargetContext joinTarget() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(678);
+ setState(682);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6077,25 +6090,25 @@ public final JoinConditionContext joinCondition() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(680);
+ setState(684);
match(ON);
- setState(681);
+ setState(685);
joinPredicate();
- setState(686);
+ setState(690);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,66,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(682);
+ setState(686);
match(COMMA);
- setState(683);
+ setState(687);
joinPredicate();
}
}
}
- setState(688);
+ setState(692);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,66,_ctx);
}
@@ -6143,7 +6156,7 @@ public final JoinPredicateContext joinPredicate() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(689);
+ setState(693);
valueExpression();
}
}
@@ -6200,17 +6213,17 @@ public final RerankCommandContext rerankCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(691);
+ setState(695);
match(DEV_RERANK);
- setState(692);
+ setState(696);
((RerankCommandContext)_localctx).queryText = constant();
- setState(693);
+ setState(697);
match(ON);
- setState(694);
+ setState(698);
fields();
- setState(695);
+ setState(699);
match(WITH);
- setState(696);
+ setState(700);
((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
}
}
@@ -6225,6 +6238,82 @@ public final RerankCommandContext rerankCommand() throws RecognitionException {
return _localctx;
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class CompletionCommandContext extends ParserRuleContext {
+ public PrimaryExpressionContext prompt;
+ public IdentifierOrParameterContext inferenceId;
+ public QualifiedNameContext targetField;
+ public TerminalNode DEV_COMPLETION() { return getToken(EsqlBaseParser.DEV_COMPLETION, 0); }
+ public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); }
+ public PrimaryExpressionContext primaryExpression() {
+ return getRuleContext(PrimaryExpressionContext.class,0);
+ }
+ public IdentifierOrParameterContext identifierOrParameter() {
+ return getRuleContext(IdentifierOrParameterContext.class,0);
+ }
+ public TerminalNode AS() { return getToken(EsqlBaseParser.AS, 0); }
+ public QualifiedNameContext qualifiedName() {
+ return getRuleContext(QualifiedNameContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public CompletionCommandContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_completionCommand; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterCompletionCommand(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitCompletionCommand(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitCompletionCommand(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final CompletionCommandContext completionCommand() throws RecognitionException {
+ CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState());
+ enterRule(_localctx, 144, RULE_completionCommand);
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(702);
+ match(DEV_COMPLETION);
+ setState(703);
+ ((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
+ setState(704);
+ match(WITH);
+ setState(705);
+ ((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
+ setState(708);
+ _errHandler.sync(this);
+ switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
+ case 1:
+ {
+ setState(706);
+ match(AS);
+ setState(707);
+ ((CompletionCommandContext)_localctx).targetField = qualifiedName();
+ }
+ break;
+ }
+ }
+ }
+ 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:
@@ -6264,37 +6353,39 @@ private boolean processingCommand_sempred(ProcessingCommandContext _localctx, in
return this.isDevVersion();
case 4:
return this.isDevVersion();
+ case 5:
+ return this.isDevVersion();
}
return true;
}
private boolean booleanExpression_sempred(BooleanExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 5:
- return precpred(_ctx, 5);
case 6:
+ return precpred(_ctx, 5);
+ case 7:
return precpred(_ctx, 4);
}
return true;
}
private boolean operatorExpression_sempred(OperatorExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 7:
- return precpred(_ctx, 2);
case 8:
+ return precpred(_ctx, 2);
+ case 9:
return precpred(_ctx, 1);
}
return true;
}
private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, int predIndex) {
switch (predIndex) {
- case 9:
+ case 10:
return precpred(_ctx, 1);
}
return true;
}
public static final String _serializedATN =
- "\u0004\u0001\u0089\u02bb\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008a\u02c7\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"+
@@ -6312,425 +6403,433 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"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\u0001\u0000\u0001\u0000\u0001\u0000\u0001"+
- "\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0005"+
- "\u0001\u009a\b\u0001\n\u0001\f\u0001\u009d\t\u0001\u0001\u0002\u0001\u0002"+
- "\u0001\u0002\u0001\u0002\u0001\u0002\u0001\u0002\u0003\u0002\u00a5\b\u0002"+
- "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003"+
+ "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"+
"\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\u00bb\b\u0003\u0001\u0004\u0001\u0004"+
- "\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0003\u0005\u00c7\b\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00ce\b\u0005\n\u0005"+
- "\f\u0005\u00d1\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0003\u0005\u00d8\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0003\u0005\u00dd\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0005\u0005\u00e5\b\u0005\n\u0005\f\u0005\u00e8"+
- "\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00ec\b\u0006\u0001\u0006"+
- "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u00f3\b\u0006"+
- "\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u00f8\b\u0006\u0001\u0007"+
- "\u0001\u0007\u0001\u0007\u0003\u0007\u00fd\b\u0007\u0001\u0007\u0001\u0007"+
- "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u0107\b\b"+
- "\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u010d\b\t\u0001\t\u0001\t\u0001"+
- "\t\u0001\t\u0001\t\u0001\t\u0005\t\u0115\b\t\n\t\f\t\u0118\t\t\u0001\n"+
- "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u0122"+
- "\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u0127\b\n\n\n\f\n\u012a\t\n\u0001"+
- "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005"+
- "\u000b\u0132\b\u000b\n\u000b\f\u000b\u0135\t\u000b\u0001\u000b\u0001\u000b"+
- "\u0003\u000b\u0139\b\u000b\u0003\u000b\u013b\b\u000b\u0001\u000b\u0001"+
- "\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0005\r\u0145\b"+
- "\r\n\r\f\r\u0148\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\u0158\b\u0011\n\u0011"+
- "\f\u0011\u015b\t\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012"+
- "\u0160\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013"+
- "\u0001\u0013\u0005\u0013\u0168\b\u0013\n\u0013\f\u0013\u016b\t\u0013\u0001"+
- "\u0013\u0003\u0013\u016e\b\u0013\u0001\u0014\u0001\u0014\u0001\u0014\u0003"+
- "\u0014\u0173\b\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0001\u0014\u0003"+
- "\u0014\u0179\b\u0014\u0003\u0014\u017b\b\u0014\u0001\u0015\u0001\u0015"+
- "\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017\u0001\u0018\u0001\u0018"+
- "\u0003\u0018\u0185\b\u0018\u0001\u0019\u0001\u0019\u0001\u0019\u0001\u0019"+
- "\u0005\u0019\u018b\b\u0019\n\u0019\f\u0019\u018e\t\u0019\u0001\u001a\u0001"+
- "\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
- "\u001b\u0005\u001b\u0198\b\u001b\n\u001b\f\u001b\u019b\t\u001b\u0001\u001b"+
- "\u0003\u001b\u019e\b\u001b\u0001\u001b\u0001\u001b\u0003\u001b\u01a2\b"+
- "\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0003"+
- "\u001d\u01a9\b\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u01ad\b\u001d"+
- "\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01b2\b\u001e\n\u001e"+
- "\f\u001e\u01b5\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f\u0003\u001f"+
- "\u01ba\b\u001f\u0001 \u0001 \u0001 \u0005 \u01bf\b \n \f \u01c2\t \u0001"+
- "!\u0001!\u0001!\u0005!\u01c7\b!\n!\f!\u01ca\t!\u0001\"\u0001\"\u0001\""+
- "\u0005\"\u01cf\b\"\n\"\f\"\u01d2\t\"\u0001#\u0001#\u0001$\u0001$\u0001"+
- "$\u0003$\u01d9\b$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
- "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01e8\b%\n%\f%\u01eb\t%\u0001"+
- "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01f3\b%\n%\f%\u01f6\t%\u0001"+
- "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01fe\b%\n%\f%\u0201\t%\u0001"+
- "%\u0001%\u0003%\u0205\b%\u0001&\u0001&\u0003&\u0209\b&\u0001\'\u0001\'"+
- "\u0003\'\u020d\b\'\u0001(\u0001(\u0001(\u0003(\u0212\b(\u0001)\u0001)"+
- "\u0001)\u0001*\u0001*\u0001*\u0001*\u0005*\u021b\b*\n*\f*\u021e\t*\u0001"+
- "+\u0001+\u0003+\u0222\b+\u0001+\u0001+\u0003+\u0226\b+\u0001,\u0001,\u0001"+
- ",\u0001-\u0001-\u0001-\u0001.\u0001.\u0001.\u0001.\u0005.\u0232\b.\n."+
- "\f.\u0235\t.\u0001/\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00010\u0003"+
- "0\u023f\b0\u00011\u00011\u00011\u00011\u00012\u00012\u00012\u00013\u0001"+
- "3\u00013\u00053\u024b\b3\n3\f3\u024e\t3\u00014\u00014\u00014\u00014\u0001"+
- "5\u00015\u00016\u00016\u00036\u0258\b6\u00017\u00037\u025b\b7\u00017\u0001"+
- "7\u00018\u00038\u0260\b8\u00018\u00018\u00019\u00019\u0001:\u0001:\u0001"+
- ";\u0001;\u0001;\u0001<\u0001<\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+
- ">\u0001>\u0001>\u0001>\u0003>\u0276\b>\u0001>\u0001>\u0001>\u0001>\u0005"+
- ">\u027c\b>\n>\f>\u027f\t>\u0003>\u0281\b>\u0001?\u0001?\u0001?\u0003?"+
- "\u0286\b?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001@\u0003@\u028e\b@\u0001"+
- "@\u0001@\u0001@\u0001@\u0001@\u0003@\u0295\b@\u0001A\u0001A\u0001A\u0001"+
- "A\u0001A\u0001B\u0001B\u0001B\u0001B\u0003B\u02a0\bB\u0001C\u0001C\u0001"+
- "C\u0001C\u0001C\u0001D\u0001D\u0001E\u0001E\u0001E\u0001E\u0005E\u02ad"+
- "\bE\nE\fE\u02b0\tE\u0001F\u0001F\u0001G\u0001G\u0001G\u0001G\u0001G\u0001"+
- "G\u0001G\u0001G\u0000\u0004\u0002\n\u0012\u0014H\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\u0000\t\u0001\u0000DE\u0001\u0000FH\u0002\u0000\u001f"+
- "\u001fYY\u0001\u0000PQ\u0002\u0000$$**\u0002\u0000--00\u0002\u0000,,;"+
- ";\u0002\u0000==?C\u0002\u0000\u0011\u0011\u0018\u0019\u02d8\u0000\u0090"+
- "\u0001\u0000\u0000\u0000\u0002\u0093\u0001\u0000\u0000\u0000\u0004\u00a4"+
- "\u0001\u0000\u0000\u0000\u0006\u00ba\u0001\u0000\u0000\u0000\b\u00bc\u0001"+
- "\u0000\u0000\u0000\n\u00dc\u0001\u0000\u0000\u0000\f\u00f7\u0001\u0000"+
- "\u0000\u0000\u000e\u00f9\u0001\u0000\u0000\u0000\u0010\u0106\u0001\u0000"+
- "\u0000\u0000\u0012\u010c\u0001\u0000\u0000\u0000\u0014\u0121\u0001\u0000"+
- "\u0000\u0000\u0016\u012b\u0001\u0000\u0000\u0000\u0018\u013e\u0001\u0000"+
- "\u0000\u0000\u001a\u0140\u0001\u0000\u0000\u0000\u001c\u014b\u0001\u0000"+
- "\u0000\u0000\u001e\u014f\u0001\u0000\u0000\u0000 \u0151\u0001\u0000\u0000"+
- "\u0000\"\u0154\u0001\u0000\u0000\u0000$\u015f\u0001\u0000\u0000\u0000"+
- "&\u0163\u0001\u0000\u0000\u0000(\u017a\u0001\u0000\u0000\u0000*\u017c"+
- "\u0001\u0000\u0000\u0000,\u017e\u0001\u0000\u0000\u0000.\u0180\u0001\u0000"+
- "\u0000\u00000\u0184\u0001\u0000\u0000\u00002\u0186\u0001\u0000\u0000\u0000"+
- "4\u018f\u0001\u0000\u0000\u00006\u0193\u0001\u0000\u0000\u00008\u01a3"+
- "\u0001\u0000\u0000\u0000:\u01a6\u0001\u0000\u0000\u0000<\u01ae\u0001\u0000"+
- "\u0000\u0000>\u01b6\u0001\u0000\u0000\u0000@\u01bb\u0001\u0000\u0000\u0000"+
- "B\u01c3\u0001\u0000\u0000\u0000D\u01cb\u0001\u0000\u0000\u0000F\u01d3"+
- "\u0001\u0000\u0000\u0000H\u01d8\u0001\u0000\u0000\u0000J\u0204\u0001\u0000"+
- "\u0000\u0000L\u0208\u0001\u0000\u0000\u0000N\u020c\u0001\u0000\u0000\u0000"+
- "P\u0211\u0001\u0000\u0000\u0000R\u0213\u0001\u0000\u0000\u0000T\u0216"+
- "\u0001\u0000\u0000\u0000V\u021f\u0001\u0000\u0000\u0000X\u0227\u0001\u0000"+
- "\u0000\u0000Z\u022a\u0001\u0000\u0000\u0000\\\u022d\u0001\u0000\u0000"+
- "\u0000^\u0236\u0001\u0000\u0000\u0000`\u023a\u0001\u0000\u0000\u0000b"+
- "\u0240\u0001\u0000\u0000\u0000d\u0244\u0001\u0000\u0000\u0000f\u0247\u0001"+
- "\u0000\u0000\u0000h\u024f\u0001\u0000\u0000\u0000j\u0253\u0001\u0000\u0000"+
- "\u0000l\u0257\u0001\u0000\u0000\u0000n\u025a\u0001\u0000\u0000\u0000p"+
- "\u025f\u0001\u0000\u0000\u0000r\u0263\u0001\u0000\u0000\u0000t\u0265\u0001"+
- "\u0000\u0000\u0000v\u0267\u0001\u0000\u0000\u0000x\u026a\u0001\u0000\u0000"+
- "\u0000z\u026e\u0001\u0000\u0000\u0000|\u0271\u0001\u0000\u0000\u0000~"+
- "\u0285\u0001\u0000\u0000\u0000\u0080\u0289\u0001\u0000\u0000\u0000\u0082"+
- "\u0296\u0001\u0000\u0000\u0000\u0084\u029b\u0001\u0000\u0000\u0000\u0086"+
- "\u02a1\u0001\u0000\u0000\u0000\u0088\u02a6\u0001\u0000\u0000\u0000\u008a"+
- "\u02a8\u0001\u0000\u0000\u0000\u008c\u02b1\u0001\u0000\u0000\u0000\u008e"+
- "\u02b3\u0001\u0000\u0000\u0000\u0090\u0091\u0003\u0002\u0001\u0000\u0091"+
- "\u0092\u0005\u0000\u0000\u0001\u0092\u0001\u0001\u0000\u0000\u0000\u0093"+
- "\u0094\u0006\u0001\uffff\uffff\u0000\u0094\u0095\u0003\u0004\u0002\u0000"+
- "\u0095\u009b\u0001\u0000\u0000\u0000\u0096\u0097\n\u0001\u0000\u0000\u0097"+
- "\u0098\u0005\u001e\u0000\u0000\u0098\u009a\u0003\u0006\u0003\u0000\u0099"+
- "\u0096\u0001\u0000\u0000\u0000\u009a\u009d\u0001\u0000\u0000\u0000\u009b"+
- "\u0099\u0001\u0000\u0000\u0000\u009b\u009c\u0001\u0000\u0000\u0000\u009c"+
- "\u0003\u0001\u0000\u0000\u0000\u009d\u009b\u0001\u0000\u0000\u0000\u009e"+
- "\u00a5\u0003v;\u0000\u009f\u00a5\u0003&\u0013\u0000\u00a0\u00a5\u0003"+
- " \u0010\u0000\u00a1\u00a5\u0003z=\u0000\u00a2\u00a3\u0004\u0002\u0001"+
- "\u0000\u00a3\u00a5\u00036\u001b\u0000\u00a4\u009e\u0001\u0000\u0000\u0000"+
- "\u00a4\u009f\u0001\u0000\u0000\u0000\u00a4\u00a0\u0001\u0000\u0000\u0000"+
- "\u00a4\u00a1\u0001\u0000\u0000\u0000\u00a4\u00a2\u0001\u0000\u0000\u0000"+
- "\u00a5\u0005\u0001\u0000\u0000\u0000\u00a6\u00bb\u00038\u001c\u0000\u00a7"+
- "\u00bb\u0003\b\u0004\u0000\u00a8\u00bb\u0003X,\u0000\u00a9\u00bb\u0003"+
- "R)\u0000\u00aa\u00bb\u0003:\u001d\u0000\u00ab\u00bb\u0003T*\u0000\u00ac"+
- "\u00bb\u0003Z-\u0000\u00ad\u00bb\u0003\\.\u0000\u00ae\u00bb\u0003`0\u0000"+
- "\u00af\u00bb\u0003b1\u0000\u00b0\u00bb\u0003|>\u0000\u00b1\u00bb\u0003"+
- "d2\u0000\u00b2\u00bb\u0003\u0086C\u0000\u00b3\u00bb\u0003\u0080@\u0000"+
- "\u00b4\u00b5\u0004\u0003\u0002\u0000\u00b5\u00bb\u0003\u0084B\u0000\u00b6"+
- "\u00b7\u0004\u0003\u0003\u0000\u00b7\u00bb\u0003\u0082A\u0000\u00b8\u00b9"+
- "\u0004\u0003\u0004\u0000\u00b9\u00bb\u0003\u008eG\u0000\u00ba\u00a6\u0001"+
- "\u0000\u0000\u0000\u00ba\u00a7\u0001\u0000\u0000\u0000\u00ba\u00a8\u0001"+
- "\u0000\u0000\u0000\u00ba\u00a9\u0001\u0000\u0000\u0000\u00ba\u00aa\u0001"+
- "\u0000\u0000\u0000\u00ba\u00ab\u0001\u0000\u0000\u0000\u00ba\u00ac\u0001"+
- "\u0000\u0000\u0000\u00ba\u00ad\u0001\u0000\u0000\u0000\u00ba\u00ae\u0001"+
- "\u0000\u0000\u0000\u00ba\u00af\u0001\u0000\u0000\u0000\u00ba\u00b0\u0001"+
- "\u0000\u0000\u0000\u00ba\u00b1\u0001\u0000\u0000\u0000\u00ba\u00b2\u0001"+
- "\u0000\u0000\u0000\u00ba\u00b3\u0001\u0000\u0000\u0000\u00ba\u00b4\u0001"+
- "\u0000\u0000\u0000\u00ba\u00b6\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001"+
- "\u0000\u0000\u0000\u00bb\u0007\u0001\u0000\u0000\u0000\u00bc\u00bd\u0005"+
- "\u0010\u0000\u0000\u00bd\u00be\u0003\n\u0005\u0000\u00be\t\u0001\u0000"+
- "\u0000\u0000\u00bf\u00c0\u0006\u0005\uffff\uffff\u0000\u00c0\u00c1\u0005"+
- "3\u0000\u0000\u00c1\u00dd\u0003\n\u0005\b\u00c2\u00dd\u0003\u0010\b\u0000"+
- "\u00c3\u00dd\u0003\f\u0006\u0000\u00c4\u00c6\u0003\u0010\b\u0000\u00c5"+
- "\u00c7\u00053\u0000\u0000\u00c6\u00c5\u0001\u0000\u0000\u0000\u00c6\u00c7"+
- "\u0001\u0000\u0000\u0000\u00c7\u00c8\u0001\u0000\u0000\u0000\u00c8\u00c9"+
- "\u0005.\u0000\u0000\u00c9\u00ca\u00052\u0000\u0000\u00ca\u00cf\u0003\u0010"+
- "\b\u0000\u00cb\u00cc\u0005)\u0000\u0000\u00cc\u00ce\u0003\u0010\b\u0000"+
- "\u00cd\u00cb\u0001\u0000\u0000\u0000\u00ce\u00d1\u0001\u0000\u0000\u0000"+
- "\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf\u00d0\u0001\u0000\u0000\u0000"+
- "\u00d0\u00d2\u0001\u0000\u0000\u0000\u00d1\u00cf\u0001\u0000\u0000\u0000"+
- "\u00d2\u00d3\u0005:\u0000\u0000\u00d3\u00dd\u0001\u0000\u0000\u0000\u00d4"+
- "\u00d5\u0003\u0010\b\u0000\u00d5\u00d7\u0005/\u0000\u0000\u00d6\u00d8"+
- "\u00053\u0000\u0000\u00d7\u00d6\u0001\u0000\u0000\u0000\u00d7\u00d8\u0001"+
- "\u0000\u0000\u0000\u00d8\u00d9\u0001\u0000\u0000\u0000\u00d9\u00da\u0005"+
- "4\u0000\u0000\u00da\u00dd\u0001\u0000\u0000\u0000\u00db\u00dd\u0003\u000e"+
- "\u0007\u0000\u00dc\u00bf\u0001\u0000\u0000\u0000\u00dc\u00c2\u0001\u0000"+
- "\u0000\u0000\u00dc\u00c3\u0001\u0000\u0000\u0000\u00dc\u00c4\u0001\u0000"+
- "\u0000\u0000\u00dc\u00d4\u0001\u0000\u0000\u0000\u00dc\u00db\u0001\u0000"+
- "\u0000\u0000\u00dd\u00e6\u0001\u0000\u0000\u0000\u00de\u00df\n\u0005\u0000"+
- "\u0000\u00df\u00e0\u0005\"\u0000\u0000\u00e0\u00e5\u0003\n\u0005\u0006"+
- "\u00e1\u00e2\n\u0004\u0000\u0000\u00e2\u00e3\u00057\u0000\u0000\u00e3"+
- "\u00e5\u0003\n\u0005\u0005\u00e4\u00de\u0001\u0000\u0000\u0000\u00e4\u00e1"+
- "\u0001\u0000\u0000\u0000\u00e5\u00e8\u0001\u0000\u0000\u0000\u00e6\u00e4"+
- "\u0001\u0000\u0000\u0000\u00e6\u00e7\u0001\u0000\u0000\u0000\u00e7\u000b"+
- "\u0001\u0000\u0000\u0000\u00e8\u00e6\u0001\u0000\u0000\u0000\u00e9\u00eb"+
- "\u0003\u0010\b\u0000\u00ea\u00ec\u00053\u0000\u0000\u00eb\u00ea\u0001"+
- "\u0000\u0000\u0000\u00eb\u00ec\u0001\u0000\u0000\u0000\u00ec\u00ed\u0001"+
- "\u0000\u0000\u0000\u00ed\u00ee\u00051\u0000\u0000\u00ee\u00ef\u0003r9"+
- "\u0000\u00ef\u00f8\u0001\u0000\u0000\u0000\u00f0\u00f2\u0003\u0010\b\u0000"+
- "\u00f1\u00f3\u00053\u0000\u0000\u00f2\u00f1\u0001\u0000\u0000\u0000\u00f2"+
- "\u00f3\u0001\u0000\u0000\u0000\u00f3\u00f4\u0001\u0000\u0000\u0000\u00f4"+
- "\u00f5\u00059\u0000\u0000\u00f5\u00f6\u0003r9\u0000\u00f6\u00f8\u0001"+
- "\u0000\u0000\u0000\u00f7\u00e9\u0001\u0000\u0000\u0000\u00f7\u00f0\u0001"+
- "\u0000\u0000\u0000\u00f8\r\u0001\u0000\u0000\u0000\u00f9\u00fc\u0003@"+
- " \u0000\u00fa\u00fb\u0005\'\u0000\u0000\u00fb\u00fd\u0003\u001e\u000f"+
- "\u0000\u00fc\u00fa\u0001\u0000\u0000\u0000\u00fc\u00fd\u0001\u0000\u0000"+
- "\u0000\u00fd\u00fe\u0001\u0000\u0000\u0000\u00fe\u00ff\u0005(\u0000\u0000"+
- "\u00ff\u0100\u0003J%\u0000\u0100\u000f\u0001\u0000\u0000\u0000\u0101\u0107"+
- "\u0003\u0012\t\u0000\u0102\u0103\u0003\u0012\t\u0000\u0103\u0104\u0003"+
- "t:\u0000\u0104\u0105\u0003\u0012\t\u0000\u0105\u0107\u0001\u0000\u0000"+
- "\u0000\u0106\u0101\u0001\u0000\u0000\u0000\u0106\u0102\u0001\u0000\u0000"+
- "\u0000\u0107\u0011\u0001\u0000\u0000\u0000\u0108\u0109\u0006\t\uffff\uffff"+
- "\u0000\u0109\u010d\u0003\u0014\n\u0000\u010a\u010b\u0007\u0000\u0000\u0000"+
- "\u010b\u010d\u0003\u0012\t\u0003\u010c\u0108\u0001\u0000\u0000\u0000\u010c"+
- "\u010a\u0001\u0000\u0000\u0000\u010d\u0116\u0001\u0000\u0000\u0000\u010e"+
- "\u010f\n\u0002\u0000\u0000\u010f\u0110\u0007\u0001\u0000\u0000\u0110\u0115"+
- "\u0003\u0012\t\u0003\u0111\u0112\n\u0001\u0000\u0000\u0112\u0113\u0007"+
- "\u0000\u0000\u0000\u0113\u0115\u0003\u0012\t\u0002\u0114\u010e\u0001\u0000"+
- "\u0000\u0000\u0114\u0111\u0001\u0000\u0000\u0000\u0115\u0118\u0001\u0000"+
- "\u0000\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116\u0117\u0001\u0000"+
- "\u0000\u0000\u0117\u0013\u0001\u0000\u0000\u0000\u0118\u0116\u0001\u0000"+
- "\u0000\u0000\u0119\u011a\u0006\n\uffff\uffff\u0000\u011a\u0122\u0003J"+
- "%\u0000\u011b\u0122\u0003@ \u0000\u011c\u0122\u0003\u0016\u000b\u0000"+
- "\u011d\u011e\u00052\u0000\u0000\u011e\u011f\u0003\n\u0005\u0000\u011f"+
- "\u0120\u0005:\u0000\u0000\u0120\u0122\u0001\u0000\u0000\u0000\u0121\u0119"+
- "\u0001\u0000\u0000\u0000\u0121\u011b\u0001\u0000\u0000\u0000\u0121\u011c"+
- "\u0001\u0000\u0000\u0000\u0121\u011d\u0001\u0000\u0000\u0000\u0122\u0128"+
- "\u0001\u0000\u0000\u0000\u0123\u0124\n\u0001\u0000\u0000\u0124\u0125\u0005"+
- "\'\u0000\u0000\u0125\u0127\u0003\u001e\u000f\u0000\u0126\u0123\u0001\u0000"+
- "\u0000\u0000\u0127\u012a\u0001\u0000\u0000\u0000\u0128\u0126\u0001\u0000"+
- "\u0000\u0000\u0128\u0129\u0001\u0000\u0000\u0000\u0129\u0015\u0001\u0000"+
- "\u0000\u0000\u012a\u0128\u0001\u0000\u0000\u0000\u012b\u012c\u0003\u0018"+
- "\f\u0000\u012c\u013a\u00052\u0000\u0000\u012d\u013b\u0005F\u0000\u0000"+
- "\u012e\u0133\u0003\n\u0005\u0000\u012f\u0130\u0005)\u0000\u0000\u0130"+
- "\u0132\u0003\n\u0005\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\u0138\u0001\u0000\u0000\u0000\u0135\u0133"+
- "\u0001\u0000\u0000\u0000\u0136\u0137\u0005)\u0000\u0000\u0137\u0139\u0003"+
- "\u001a\r\u0000\u0138\u0136\u0001\u0000\u0000\u0000\u0138\u0139\u0001\u0000"+
- "\u0000\u0000\u0139\u013b\u0001\u0000\u0000\u0000\u013a\u012d\u0001\u0000"+
- "\u0000\u0000\u013a\u012e\u0001\u0000\u0000\u0000\u013a\u013b\u0001\u0000"+
- "\u0000\u0000\u013b\u013c\u0001\u0000\u0000\u0000\u013c\u013d\u0005:\u0000"+
- "\u0000\u013d\u0017\u0001\u0000\u0000\u0000\u013e\u013f\u0003P(\u0000\u013f"+
- "\u0019\u0001\u0000\u0000\u0000\u0140\u0141\u0005I\u0000\u0000\u0141\u0146"+
- "\u0003\u001c\u000e\u0000\u0142\u0143\u0005)\u0000\u0000\u0143\u0145\u0003"+
- "\u001c\u000e\u0000\u0144\u0142\u0001\u0000\u0000\u0000\u0145\u0148\u0001"+
- "\u0000\u0000\u0000\u0146\u0144\u0001\u0000\u0000\u0000\u0146\u0147\u0001"+
- "\u0000\u0000\u0000\u0147\u0149\u0001\u0000\u0000\u0000\u0148\u0146\u0001"+
- "\u0000\u0000\u0000\u0149\u014a\u0005J\u0000\u0000\u014a\u001b\u0001\u0000"+
- "\u0000\u0000\u014b\u014c\u0003r9\u0000\u014c\u014d\u0005(\u0000\u0000"+
- "\u014d\u014e\u0003J%\u0000\u014e\u001d\u0001\u0000\u0000\u0000\u014f\u0150"+
- "\u0003F#\u0000\u0150\u001f\u0001\u0000\u0000\u0000\u0151\u0152\u0005\f"+
- "\u0000\u0000\u0152\u0153\u0003\"\u0011\u0000\u0153!\u0001\u0000\u0000"+
- "\u0000\u0154\u0159\u0003$\u0012\u0000\u0155\u0156\u0005)\u0000\u0000\u0156"+
- "\u0158\u0003$\u0012\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\u015a#\u0001\u0000\u0000\u0000\u015b\u0159\u0001"+
- "\u0000\u0000\u0000\u015c\u015d\u0003@ \u0000\u015d\u015e\u0005%\u0000"+
- "\u0000\u015e\u0160\u0001\u0000\u0000\u0000\u015f\u015c\u0001\u0000\u0000"+
- "\u0000\u015f\u0160\u0001\u0000\u0000\u0000\u0160\u0161\u0001\u0000\u0000"+
- "\u0000\u0161\u0162\u0003\n\u0005\u0000\u0162%\u0001\u0000\u0000\u0000"+
- "\u0163\u0164\u0005\u0006\u0000\u0000\u0164\u0169\u0003(\u0014\u0000\u0165"+
- "\u0166\u0005)\u0000\u0000\u0166\u0168\u0003(\u0014\u0000\u0167\u0165\u0001"+
- "\u0000\u0000\u0000\u0168\u016b\u0001\u0000\u0000\u0000\u0169\u0167\u0001"+
- "\u0000\u0000\u0000\u0169\u016a\u0001\u0000\u0000\u0000\u016a\u016d\u0001"+
- "\u0000\u0000\u0000\u016b\u0169\u0001\u0000\u0000\u0000\u016c\u016e\u0003"+
- "0\u0018\u0000\u016d\u016c\u0001\u0000\u0000\u0000\u016d\u016e\u0001\u0000"+
- "\u0000\u0000\u016e\'\u0001\u0000\u0000\u0000\u016f\u0170\u0003*\u0015"+
- "\u0000\u0170\u0171\u0005(\u0000\u0000\u0171\u0173\u0001\u0000\u0000\u0000"+
- "\u0172\u016f\u0001\u0000\u0000\u0000\u0172\u0173\u0001\u0000\u0000\u0000"+
- "\u0173\u0174\u0001\u0000\u0000\u0000\u0174\u017b\u0003.\u0017\u0000\u0175"+
- "\u0178\u0003.\u0017\u0000\u0176\u0177\u0005\'\u0000\u0000\u0177\u0179"+
- "\u0003,\u0016\u0000\u0178\u0176\u0001\u0000\u0000\u0000\u0178\u0179\u0001"+
- "\u0000\u0000\u0000\u0179\u017b\u0001\u0000\u0000\u0000\u017a\u0172\u0001"+
- "\u0000\u0000\u0000\u017a\u0175\u0001\u0000\u0000\u0000\u017b)\u0001\u0000"+
- "\u0000\u0000\u017c\u017d\u0007\u0002\u0000\u0000\u017d+\u0001\u0000\u0000"+
- "\u0000\u017e\u017f\u0007\u0002\u0000\u0000\u017f-\u0001\u0000\u0000\u0000"+
- "\u0180\u0181\u0007\u0002\u0000\u0000\u0181/\u0001\u0000\u0000\u0000\u0182"+
- "\u0185\u00032\u0019\u0000\u0183\u0185\u00034\u001a\u0000\u0184\u0182\u0001"+
- "\u0000\u0000\u0000\u0184\u0183\u0001\u0000\u0000\u0000\u01851\u0001\u0000"+
- "\u0000\u0000\u0186\u0187\u0005X\u0000\u0000\u0187\u018c\u0005Y\u0000\u0000"+
- "\u0188\u0189\u0005)\u0000\u0000\u0189\u018b\u0005Y\u0000\u0000\u018a\u0188"+
- "\u0001\u0000\u0000\u0000\u018b\u018e\u0001\u0000\u0000\u0000\u018c\u018a"+
- "\u0001\u0000\u0000\u0000\u018c\u018d\u0001\u0000\u0000\u0000\u018d3\u0001"+
- "\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018f\u0190\u0005"+
- "N\u0000\u0000\u0190\u0191\u00032\u0019\u0000\u0191\u0192\u0005O\u0000"+
- "\u0000\u01925\u0001\u0000\u0000\u0000\u0193\u0194\u0005\u0015\u0000\u0000"+
- "\u0194\u0199\u0003(\u0014\u0000\u0195\u0196\u0005)\u0000\u0000\u0196\u0198"+
- "\u0003(\u0014\u0000\u0197\u0195\u0001\u0000\u0000\u0000\u0198\u019b\u0001"+
- "\u0000\u0000\u0000\u0199\u0197\u0001\u0000\u0000\u0000\u0199\u019a\u0001"+
- "\u0000\u0000\u0000\u019a\u019d\u0001\u0000\u0000\u0000\u019b\u0199\u0001"+
- "\u0000\u0000\u0000\u019c\u019e\u0003<\u001e\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\u01a27\u0001\u0000\u0000\u0000\u01a3\u01a4\u0005\u0004\u0000\u0000"+
- "\u01a4\u01a5\u0003\"\u0011\u0000\u01a59\u0001\u0000\u0000\u0000\u01a6"+
- "\u01a8\u0005\u000f\u0000\u0000\u01a7\u01a9\u0003<\u001e\u0000\u01a8\u01a7"+
- "\u0001\u0000\u0000\u0000\u01a8\u01a9\u0001\u0000\u0000\u0000\u01a9\u01ac"+
- "\u0001\u0000\u0000\u0000\u01aa\u01ab\u0005&\u0000\u0000\u01ab\u01ad\u0003"+
- "\"\u0011\u0000\u01ac\u01aa\u0001\u0000\u0000\u0000\u01ac\u01ad\u0001\u0000"+
- "\u0000\u0000\u01ad;\u0001\u0000\u0000\u0000\u01ae\u01b3\u0003>\u001f\u0000"+
- "\u01af\u01b0\u0005)\u0000\u0000\u01b0\u01b2\u0003>\u001f\u0000\u01b1\u01af"+
- "\u0001\u0000\u0000\u0000\u01b2\u01b5\u0001\u0000\u0000\u0000\u01b3\u01b1"+
- "\u0001\u0000\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4=\u0001"+
- "\u0000\u0000\u0000\u01b5\u01b3\u0001\u0000\u0000\u0000\u01b6\u01b9\u0003"+
- "$\u0012\u0000\u01b7\u01b8\u0005\u0010\u0000\u0000\u01b8\u01ba\u0003\n"+
- "\u0005\u0000\u01b9\u01b7\u0001\u0000\u0000\u0000\u01b9\u01ba\u0001\u0000"+
- "\u0000\u0000\u01ba?\u0001\u0000\u0000\u0000\u01bb\u01c0\u0003P(\u0000"+
- "\u01bc\u01bd\u0005+\u0000\u0000\u01bd\u01bf\u0003P(\u0000\u01be\u01bc"+
- "\u0001\u0000\u0000\u0000\u01bf\u01c2\u0001\u0000\u0000\u0000\u01c0\u01be"+
- "\u0001\u0000\u0000\u0000\u01c0\u01c1\u0001\u0000\u0000\u0000\u01c1A\u0001"+
- "\u0000\u0000\u0000\u01c2\u01c0\u0001\u0000\u0000\u0000\u01c3\u01c8\u0003"+
- "H$\u0000\u01c4\u01c5\u0005+\u0000\u0000\u01c5\u01c7\u0003H$\u0000\u01c6"+
- "\u01c4\u0001\u0000\u0000\u0000\u01c7\u01ca\u0001\u0000\u0000\u0000\u01c8"+
- "\u01c6\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000\u0000\u0000\u01c9"+
- "C\u0001\u0000\u0000\u0000\u01ca\u01c8\u0001\u0000\u0000\u0000\u01cb\u01d0"+
- "\u0003B!\u0000\u01cc\u01cd\u0005)\u0000\u0000\u01cd\u01cf\u0003B!\u0000"+
- "\u01ce\u01cc\u0001\u0000\u0000\u0000\u01cf\u01d2\u0001\u0000\u0000\u0000"+
- "\u01d0\u01ce\u0001\u0000\u0000\u0000\u01d0\u01d1\u0001\u0000\u0000\u0000"+
- "\u01d1E\u0001\u0000\u0000\u0000\u01d2\u01d0\u0001\u0000\u0000\u0000\u01d3"+
- "\u01d4\u0007\u0003\u0000\u0000\u01d4G\u0001\u0000\u0000\u0000\u01d5\u01d9"+
- "\u0005]\u0000\u0000\u01d6\u01d9\u0003L&\u0000\u01d7\u01d9\u0003N\'\u0000"+
- "\u01d8\u01d5\u0001\u0000\u0000\u0000\u01d8\u01d6\u0001\u0000\u0000\u0000"+
- "\u01d8\u01d7\u0001\u0000\u0000\u0000\u01d9I\u0001\u0000\u0000\u0000\u01da"+
- "\u0205\u00054\u0000\u0000\u01db\u01dc\u0003p8\u0000\u01dc\u01dd\u0005"+
- "P\u0000\u0000\u01dd\u0205\u0001\u0000\u0000\u0000\u01de\u0205\u0003n7"+
- "\u0000\u01df\u0205\u0003p8\u0000\u01e0\u0205\u0003j5\u0000\u01e1\u0205"+
- "\u0003L&\u0000\u01e2\u0205\u0003r9\u0000\u01e3\u01e4\u0005N\u0000\u0000"+
- "\u01e4\u01e9\u0003l6\u0000\u01e5\u01e6\u0005)\u0000\u0000\u01e6\u01e8"+
- "\u0003l6\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000\u01e8\u01eb\u0001\u0000"+
- "\u0000\u0000\u01e9\u01e7\u0001\u0000\u0000\u0000\u01e9\u01ea\u0001\u0000"+
- "\u0000\u0000\u01ea\u01ec\u0001\u0000\u0000\u0000\u01eb\u01e9\u0001\u0000"+
- "\u0000\u0000\u01ec\u01ed\u0005O\u0000\u0000\u01ed\u0205\u0001\u0000\u0000"+
- "\u0000\u01ee\u01ef\u0005N\u0000\u0000\u01ef\u01f4\u0003j5\u0000\u01f0"+
- "\u01f1\u0005)\u0000\u0000\u01f1\u01f3\u0003j5\u0000\u01f2\u01f0\u0001"+
- "\u0000\u0000\u0000\u01f3\u01f6\u0001\u0000\u0000\u0000\u01f4\u01f2\u0001"+
- "\u0000\u0000\u0000\u01f4\u01f5\u0001\u0000\u0000\u0000\u01f5\u01f7\u0001"+
- "\u0000\u0000\u0000\u01f6\u01f4\u0001\u0000\u0000\u0000\u01f7\u01f8\u0005"+
- "O\u0000\u0000\u01f8\u0205\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005N\u0000"+
- "\u0000\u01fa\u01ff\u0003r9\u0000\u01fb\u01fc\u0005)\u0000\u0000\u01fc"+
- "\u01fe\u0003r9\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fe\u0201\u0001"+
- "\u0000\u0000\u0000\u01ff\u01fd\u0001\u0000\u0000\u0000\u01ff\u0200\u0001"+
- "\u0000\u0000\u0000\u0200\u0202\u0001\u0000\u0000\u0000\u0201\u01ff\u0001"+
- "\u0000\u0000\u0000\u0202\u0203\u0005O\u0000\u0000\u0203\u0205\u0001\u0000"+
- "\u0000\u0000\u0204\u01da\u0001\u0000\u0000\u0000\u0204\u01db\u0001\u0000"+
- "\u0000\u0000\u0204\u01de\u0001\u0000\u0000\u0000\u0204\u01df\u0001\u0000"+
- "\u0000\u0000\u0204\u01e0\u0001\u0000\u0000\u0000\u0204\u01e1\u0001\u0000"+
- "\u0000\u0000\u0204\u01e2\u0001\u0000\u0000\u0000\u0204\u01e3\u0001\u0000"+
- "\u0000\u0000\u0204\u01ee\u0001\u0000\u0000\u0000\u0204\u01f9\u0001\u0000"+
- "\u0000\u0000\u0205K\u0001\u0000\u0000\u0000\u0206\u0209\u00058\u0000\u0000"+
- "\u0207\u0209\u0005L\u0000\u0000\u0208\u0206\u0001\u0000\u0000\u0000\u0208"+
- "\u0207\u0001\u0000\u0000\u0000\u0209M\u0001\u0000\u0000\u0000\u020a\u020d"+
- "\u0005K\u0000\u0000\u020b\u020d\u0005M\u0000\u0000\u020c\u020a\u0001\u0000"+
- "\u0000\u0000\u020c\u020b\u0001\u0000\u0000\u0000\u020dO\u0001\u0000\u0000"+
- "\u0000\u020e\u0212\u0003F#\u0000\u020f\u0212\u0003L&\u0000\u0210\u0212"+
- "\u0003N\'\u0000\u0211\u020e\u0001\u0000\u0000\u0000\u0211\u020f\u0001"+
- "\u0000\u0000\u0000\u0211\u0210\u0001\u0000\u0000\u0000\u0212Q\u0001\u0000"+
- "\u0000\u0000\u0213\u0214\u0005\t\u0000\u0000\u0214\u0215\u0003J%\u0000"+
- "\u0215S\u0001\u0000\u0000\u0000\u0216\u0217\u0005\u000e\u0000\u0000\u0217"+
- "\u021c\u0003V+\u0000\u0218\u0219\u0005)\u0000\u0000\u0219\u021b\u0003"+
- "V+\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021b\u021e\u0001\u0000\u0000"+
- "\u0000\u021c\u021a\u0001\u0000\u0000\u0000\u021c\u021d\u0001\u0000\u0000"+
- "\u0000\u021dU\u0001\u0000\u0000\u0000\u021e\u021c\u0001\u0000\u0000\u0000"+
- "\u021f\u0221\u0003\n\u0005\u0000\u0220\u0222\u0007\u0004\u0000\u0000\u0221"+
- "\u0220\u0001\u0000\u0000\u0000\u0221\u0222\u0001\u0000\u0000\u0000\u0222"+
- "\u0225\u0001\u0000\u0000\u0000\u0223\u0224\u00055\u0000\u0000\u0224\u0226"+
- "\u0007\u0005\u0000\u0000\u0225\u0223\u0001\u0000\u0000\u0000\u0225\u0226"+
- "\u0001\u0000\u0000\u0000\u0226W\u0001\u0000\u0000\u0000\u0227\u0228\u0005"+
- "\b\u0000\u0000\u0228\u0229\u0003D\"\u0000\u0229Y\u0001\u0000\u0000\u0000"+
- "\u022a\u022b\u0005\u0002\u0000\u0000\u022b\u022c\u0003D\"\u0000\u022c"+
- "[\u0001\u0000\u0000\u0000\u022d\u022e\u0005\u000b\u0000\u0000\u022e\u0233"+
- "\u0003^/\u0000\u022f\u0230\u0005)\u0000\u0000\u0230\u0232\u0003^/\u0000"+
- "\u0231\u022f\u0001\u0000\u0000\u0000\u0232\u0235\u0001\u0000\u0000\u0000"+
- "\u0233\u0231\u0001\u0000\u0000\u0000\u0233\u0234\u0001\u0000\u0000\u0000"+
- "\u0234]\u0001\u0000\u0000\u0000\u0235\u0233\u0001\u0000\u0000\u0000\u0236"+
- "\u0237\u0003B!\u0000\u0237\u0238\u0005#\u0000\u0000\u0238\u0239\u0003"+
- "B!\u0000\u0239_\u0001\u0000\u0000\u0000\u023a\u023b\u0005\u0001\u0000"+
- "\u0000\u023b\u023c\u0003\u0014\n\u0000\u023c\u023e\u0003r9\u0000\u023d"+
- "\u023f\u0003f3\u0000\u023e\u023d\u0001\u0000\u0000\u0000\u023e\u023f\u0001"+
- "\u0000\u0000\u0000\u023fa\u0001\u0000\u0000\u0000\u0240\u0241\u0005\u0007"+
- "\u0000\u0000\u0241\u0242\u0003\u0014\n\u0000\u0242\u0243\u0003r9\u0000"+
- "\u0243c\u0001\u0000\u0000\u0000\u0244\u0245\u0005\n\u0000\u0000\u0245"+
- "\u0246\u0003@ \u0000\u0246e\u0001\u0000\u0000\u0000\u0247\u024c\u0003"+
- "h4\u0000\u0248\u0249\u0005)\u0000\u0000\u0249\u024b\u0003h4\u0000\u024a"+
- "\u0248\u0001\u0000\u0000\u0000\u024b\u024e\u0001\u0000\u0000\u0000\u024c"+
- "\u024a\u0001\u0000\u0000\u0000\u024c\u024d\u0001\u0000\u0000\u0000\u024d"+
- "g\u0001\u0000\u0000\u0000\u024e\u024c\u0001\u0000\u0000\u0000\u024f\u0250"+
- "\u0003F#\u0000\u0250\u0251\u0005%\u0000\u0000\u0251\u0252\u0003J%\u0000"+
- "\u0252i\u0001\u0000\u0000\u0000\u0253\u0254\u0007\u0006\u0000\u0000\u0254"+
- "k\u0001\u0000\u0000\u0000\u0255\u0258\u0003n7\u0000\u0256\u0258\u0003"+
- "p8\u0000\u0257\u0255\u0001\u0000\u0000\u0000\u0257\u0256\u0001\u0000\u0000"+
- "\u0000\u0258m\u0001\u0000\u0000\u0000\u0259\u025b\u0007\u0000\u0000\u0000"+
- "\u025a\u0259\u0001\u0000\u0000\u0000\u025a\u025b\u0001\u0000\u0000\u0000"+
- "\u025b\u025c\u0001\u0000\u0000\u0000\u025c\u025d\u0005!\u0000\u0000\u025d"+
- "o\u0001\u0000\u0000\u0000\u025e\u0260\u0007\u0000\u0000\u0000\u025f\u025e"+
- "\u0001\u0000\u0000\u0000\u025f\u0260\u0001\u0000\u0000\u0000\u0260\u0261"+
- "\u0001\u0000\u0000\u0000\u0261\u0262\u0005 \u0000\u0000\u0262q\u0001\u0000"+
- "\u0000\u0000\u0263\u0264\u0005\u001f\u0000\u0000\u0264s\u0001\u0000\u0000"+
- "\u0000\u0265\u0266\u0007\u0007\u0000\u0000\u0266u\u0001\u0000\u0000\u0000"+
- "\u0267\u0268\u0005\u0005\u0000\u0000\u0268\u0269\u0003x<\u0000\u0269w"+
- "\u0001\u0000\u0000\u0000\u026a\u026b\u0005N\u0000\u0000\u026b\u026c\u0003"+
- "\u0002\u0001\u0000\u026c\u026d\u0005O\u0000\u0000\u026dy\u0001\u0000\u0000"+
- "\u0000\u026e\u026f\u0005\r\u0000\u0000\u026f\u0270\u0005n\u0000\u0000"+
- "\u0270{\u0001\u0000\u0000\u0000\u0271\u0272\u0005\u0003\u0000\u0000\u0272"+
- "\u0275\u0005d\u0000\u0000\u0273\u0274\u00056\u0000\u0000\u0274\u0276\u0003"+
- "B!\u0000\u0275\u0273\u0001\u0000\u0000\u0000\u0275\u0276\u0001\u0000\u0000"+
- "\u0000\u0276\u0280\u0001\u0000\u0000\u0000\u0277\u0278\u0005<\u0000\u0000"+
- "\u0278\u027d\u0003~?\u0000\u0279\u027a\u0005)\u0000\u0000\u027a\u027c"+
- "\u0003~?\u0000\u027b\u0279\u0001\u0000\u0000\u0000\u027c\u027f\u0001\u0000"+
- "\u0000\u0000\u027d\u027b\u0001\u0000\u0000\u0000\u027d\u027e\u0001\u0000"+
- "\u0000\u0000\u027e\u0281\u0001\u0000\u0000\u0000\u027f\u027d\u0001\u0000"+
- "\u0000\u0000\u0280\u0277\u0001\u0000\u0000\u0000\u0280\u0281\u0001\u0000"+
- "\u0000\u0000\u0281}\u0001\u0000\u0000\u0000\u0282\u0283\u0003B!\u0000"+
- "\u0283\u0284\u0005%\u0000\u0000\u0284\u0286\u0001\u0000\u0000\u0000\u0285"+
- "\u0282\u0001\u0000\u0000\u0000\u0285\u0286\u0001\u0000\u0000\u0000\u0286"+
- "\u0287\u0001\u0000\u0000\u0000\u0287\u0288\u0003B!\u0000\u0288\u007f\u0001"+
- "\u0000\u0000\u0000\u0289\u028a\u0005\u0012\u0000\u0000\u028a\u028d\u0003"+
- "@ \u0000\u028b\u028c\u00056\u0000\u0000\u028c\u028e\u0003@ \u0000\u028d"+
- "\u028b\u0001\u0000\u0000\u0000\u028d\u028e\u0001\u0000\u0000\u0000\u028e"+
- "\u0294\u0001\u0000\u0000\u0000\u028f\u0290\u0005#\u0000\u0000\u0290\u0291"+
- "\u0003@ \u0000\u0291\u0292\u0005)\u0000\u0000\u0292\u0293\u0003@ \u0000"+
- "\u0293\u0295\u0001\u0000\u0000\u0000\u0294\u028f\u0001\u0000\u0000\u0000"+
- "\u0294\u0295\u0001\u0000\u0000\u0000\u0295\u0081\u0001\u0000\u0000\u0000"+
- "\u0296\u0297\u0005\u0014\u0000\u0000\u0297\u0298\u0003(\u0014\u0000\u0298"+
- "\u0299\u00056\u0000\u0000\u0299\u029a\u0003D\"\u0000\u029a\u0083\u0001"+
- "\u0000\u0000\u0000\u029b\u029c\u0005\u0013\u0000\u0000\u029c\u029f\u0003"+
- "<\u001e\u0000\u029d\u029e\u0005&\u0000\u0000\u029e\u02a0\u0003\"\u0011"+
- "\u0000\u029f\u029d\u0001\u0000\u0000\u0000\u029f\u02a0\u0001\u0000\u0000"+
- "\u0000\u02a0\u0085\u0001\u0000\u0000\u0000\u02a1\u02a2\u0007\b\u0000\u0000"+
- "\u02a2\u02a3\u0005|\u0000\u0000\u02a3\u02a4\u0003\u0088D\u0000\u02a4\u02a5"+
- "\u0003\u008aE\u0000\u02a5\u0087\u0001\u0000\u0000\u0000\u02a6\u02a7\u0003"+
- "(\u0014\u0000\u02a7\u0089\u0001\u0000\u0000\u0000\u02a8\u02a9\u00056\u0000"+
- "\u0000\u02a9\u02ae\u0003\u008cF\u0000\u02aa\u02ab\u0005)\u0000\u0000\u02ab"+
- "\u02ad\u0003\u008cF\u0000\u02ac\u02aa\u0001\u0000\u0000\u0000\u02ad\u02b0"+
- "\u0001\u0000\u0000\u0000\u02ae\u02ac\u0001\u0000\u0000\u0000\u02ae\u02af"+
- "\u0001\u0000\u0000\u0000\u02af\u008b\u0001\u0000\u0000\u0000\u02b0\u02ae"+
- "\u0001\u0000\u0000\u0000\u02b1\u02b2\u0003\u0010\b\u0000\u02b2\u008d\u0001"+
- "\u0000\u0000\u0000\u02b3\u02b4\u0005\u0016\u0000\u0000\u02b4\u02b5\u0003"+
- "J%\u0000\u02b5\u02b6\u00056\u0000\u0000\u02b6\u02b7\u0003\"\u0011\u0000"+
- "\u02b7\u02b8\u0005<\u0000\u0000\u02b8\u02b9\u0003P(\u0000\u02b9\u008f"+
- "\u0001\u0000\u0000\u0000C\u009b\u00a4\u00ba\u00c6\u00cf\u00d7\u00dc\u00e4"+
- "\u00e6\u00eb\u00f2\u00f7\u00fc\u0106\u010c\u0114\u0116\u0121\u0128\u0133"+
- "\u0138\u013a\u0146\u0159\u015f\u0169\u016d\u0172\u0178\u017a\u0184\u018c"+
- "\u0199\u019d\u01a1\u01a8\u01ac\u01b3\u01b9\u01c0\u01c8\u01d0\u01d8\u01e9"+
- "\u01f4\u01ff\u0204\u0208\u020c\u0211\u021c\u0221\u0225\u0233\u023e\u024c"+
- "\u0257\u025a\u025f\u0275\u027d\u0280\u0285\u028d\u0294\u029f\u02ae";
+ "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+
+ "\u00bf\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+
+ "\u00cb\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0005\u0005\u00d2\b\u0005\n\u0005\f\u0005\u00d5\t\u0005\u0001\u0005\u0001"+
+ "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00dc\b\u0005\u0001"+
+ "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e1\b\u0005\u0001\u0005\u0001"+
+ "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00e9"+
+ "\b\u0005\n\u0005\f\u0005\u00ec\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+
+ "\u00f0\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
+ "\u0003\u0006\u00f7\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+
+ "\u00fc\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0101\b"+
+ "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001"+
+ "\b\u0001\b\u0003\b\u010b\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0111"+
+ "\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u0119\b\t"+
+ "\n\t\f\t\u011c\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+
+ "\n\u0001\n\u0003\n\u0126\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u012b\b\n"+
+ "\n\n\f\n\u012e\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
+ "\u000b\u0001\u000b\u0005\u000b\u0136\b\u000b\n\u000b\f\u000b\u0139\t\u000b"+
+ "\u0001\u000b\u0001\u000b\u0003\u000b\u013d\b\u000b\u0003\u000b\u013f\b"+
+ "\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r"+
+ "\u0001\r\u0005\r\u0149\b\r\n\r\f\r\u014c\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"+
+ "\u015c\b\u0011\n\u0011\f\u0011\u015f\t\u0011\u0001\u0012\u0001\u0012\u0001"+
+ "\u0012\u0003\u0012\u0164\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001"+
+ "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u016c\b\u0013\n\u0013\f\u0013"+
+ "\u016f\t\u0013\u0001\u0013\u0003\u0013\u0172\b\u0013\u0001\u0014\u0001"+
+ "\u0014\u0001\u0014\u0003\u0014\u0177\b\u0014\u0001\u0014\u0001\u0014\u0001"+
+ "\u0014\u0001\u0014\u0003\u0014\u017d\b\u0014\u0003\u0014\u017f\b\u0014"+
+ "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017"+
+ "\u0001\u0018\u0001\u0018\u0003\u0018\u0189\b\u0018\u0001\u0019\u0001\u0019"+
+ "\u0001\u0019\u0001\u0019\u0005\u0019\u018f\b\u0019\n\u0019\f\u0019\u0192"+
+ "\t\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001"+
+ "\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u019c\b\u001b\n\u001b\f\u001b"+
+ "\u019f\t\u001b\u0001\u001b\u0003\u001b\u01a2\b\u001b\u0001\u001b\u0001"+
+ "\u001b\u0003\u001b\u01a6\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
+ "\u001d\u0001\u001d\u0003\u001d\u01ad\b\u001d\u0001\u001d\u0001\u001d\u0003"+
+ "\u001d\u01b1\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01b6"+
+ "\b\u001e\n\u001e\f\u001e\u01b9\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+
+ "\u0003\u001f\u01be\b\u001f\u0001 \u0001 \u0001 \u0005 \u01c3\b \n \f "+
+ "\u01c6\t \u0001!\u0001!\u0001!\u0005!\u01cb\b!\n!\f!\u01ce\t!\u0001\""+
+ "\u0001\"\u0001\"\u0005\"\u01d3\b\"\n\"\f\"\u01d6\t\"\u0001#\u0001#\u0001"+
+ "$\u0001$\u0001$\u0003$\u01dd\b$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
+ "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01ec\b%\n%"+
+ "\f%\u01ef\t%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01f7\b"+
+ "%\n%\f%\u01fa\t%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u0202"+
+ "\b%\n%\f%\u0205\t%\u0001%\u0001%\u0003%\u0209\b%\u0001&\u0001&\u0003&"+
+ "\u020d\b&\u0001\'\u0001\'\u0003\'\u0211\b\'\u0001(\u0001(\u0001(\u0003"+
+ "(\u0216\b(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0005*\u021f"+
+ "\b*\n*\f*\u0222\t*\u0001+\u0001+\u0003+\u0226\b+\u0001+\u0001+\u0003+"+
+ "\u022a\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+
+ ".\u0001.\u0005.\u0236\b.\n.\f.\u0239\t.\u0001/\u0001/\u0001/\u0001/\u0001"+
+ "0\u00010\u00010\u00010\u00030\u0243\b0\u00011\u00011\u00011\u00011\u0001"+
+ "2\u00012\u00012\u00013\u00013\u00013\u00053\u024f\b3\n3\f3\u0252\t3\u0001"+
+ "4\u00014\u00014\u00014\u00015\u00015\u00016\u00016\u00036\u025c\b6\u0001"+
+ "7\u00037\u025f\b7\u00017\u00017\u00018\u00038\u0264\b8\u00018\u00018\u0001"+
+ "9\u00019\u0001:\u0001:\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+
+ "<\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0003>\u027a\b>\u0001"+
+ ">\u0001>\u0001>\u0001>\u0005>\u0280\b>\n>\f>\u0283\t>\u0003>\u0285\b>"+
+ "\u0001?\u0001?\u0001?\u0003?\u028a\b?\u0001?\u0001?\u0001@\u0001@\u0001"+
+ "@\u0001@\u0003@\u0292\b@\u0001@\u0001@\u0001@\u0001@\u0001@\u0003@\u0299"+
+ "\b@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0003"+
+ "B\u02a4\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001E\u0001"+
+ "E\u0001E\u0001E\u0005E\u02b1\bE\nE\fE\u02b4\tE\u0001F\u0001F\u0001G\u0001"+
+ "G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001"+
+ "H\u0001H\u0003H\u02c5\bH\u0001H\u0000\u0004\u0002\n\u0012\u0014I\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\u0000\t\u0001\u0000EF\u0001\u0000"+
+ "GI\u0002\u0000 ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..11\u0002"+
+ "\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0011\u0011\u0019\u001a\u02e5\u0000"+
+ "\u0092\u0001\u0000\u0000\u0000\u0002\u0095\u0001\u0000\u0000\u0000\u0004"+
+ "\u00a6\u0001\u0000\u0000\u0000\u0006\u00be\u0001\u0000\u0000\u0000\b\u00c0"+
+ "\u0001\u0000\u0000\u0000\n\u00e0\u0001\u0000\u0000\u0000\f\u00fb\u0001"+
+ "\u0000\u0000\u0000\u000e\u00fd\u0001\u0000\u0000\u0000\u0010\u010a\u0001"+
+ "\u0000\u0000\u0000\u0012\u0110\u0001\u0000\u0000\u0000\u0014\u0125\u0001"+
+ "\u0000\u0000\u0000\u0016\u012f\u0001\u0000\u0000\u0000\u0018\u0142\u0001"+
+ "\u0000\u0000\u0000\u001a\u0144\u0001\u0000\u0000\u0000\u001c\u014f\u0001"+
+ "\u0000\u0000\u0000\u001e\u0153\u0001\u0000\u0000\u0000 \u0155\u0001\u0000"+
+ "\u0000\u0000\"\u0158\u0001\u0000\u0000\u0000$\u0163\u0001\u0000\u0000"+
+ "\u0000&\u0167\u0001\u0000\u0000\u0000(\u017e\u0001\u0000\u0000\u0000*"+
+ "\u0180\u0001\u0000\u0000\u0000,\u0182\u0001\u0000\u0000\u0000.\u0184\u0001"+
+ "\u0000\u0000\u00000\u0188\u0001\u0000\u0000\u00002\u018a\u0001\u0000\u0000"+
+ "\u00004\u0193\u0001\u0000\u0000\u00006\u0197\u0001\u0000\u0000\u00008"+
+ "\u01a7\u0001\u0000\u0000\u0000:\u01aa\u0001\u0000\u0000\u0000<\u01b2\u0001"+
+ "\u0000\u0000\u0000>\u01ba\u0001\u0000\u0000\u0000@\u01bf\u0001\u0000\u0000"+
+ "\u0000B\u01c7\u0001\u0000\u0000\u0000D\u01cf\u0001\u0000\u0000\u0000F"+
+ "\u01d7\u0001\u0000\u0000\u0000H\u01dc\u0001\u0000\u0000\u0000J\u0208\u0001"+
+ "\u0000\u0000\u0000L\u020c\u0001\u0000\u0000\u0000N\u0210\u0001\u0000\u0000"+
+ "\u0000P\u0215\u0001\u0000\u0000\u0000R\u0217\u0001\u0000\u0000\u0000T"+
+ "\u021a\u0001\u0000\u0000\u0000V\u0223\u0001\u0000\u0000\u0000X\u022b\u0001"+
+ "\u0000\u0000\u0000Z\u022e\u0001\u0000\u0000\u0000\\\u0231\u0001\u0000"+
+ "\u0000\u0000^\u023a\u0001\u0000\u0000\u0000`\u023e\u0001\u0000\u0000\u0000"+
+ "b\u0244\u0001\u0000\u0000\u0000d\u0248\u0001\u0000\u0000\u0000f\u024b"+
+ "\u0001\u0000\u0000\u0000h\u0253\u0001\u0000\u0000\u0000j\u0257\u0001\u0000"+
+ "\u0000\u0000l\u025b\u0001\u0000\u0000\u0000n\u025e\u0001\u0000\u0000\u0000"+
+ "p\u0263\u0001\u0000\u0000\u0000r\u0267\u0001\u0000\u0000\u0000t\u0269"+
+ "\u0001\u0000\u0000\u0000v\u026b\u0001\u0000\u0000\u0000x\u026e\u0001\u0000"+
+ "\u0000\u0000z\u0272\u0001\u0000\u0000\u0000|\u0275\u0001\u0000\u0000\u0000"+
+ "~\u0289\u0001\u0000\u0000\u0000\u0080\u028d\u0001\u0000\u0000\u0000\u0082"+
+ "\u029a\u0001\u0000\u0000\u0000\u0084\u029f\u0001\u0000\u0000\u0000\u0086"+
+ "\u02a5\u0001\u0000\u0000\u0000\u0088\u02aa\u0001\u0000\u0000\u0000\u008a"+
+ "\u02ac\u0001\u0000\u0000\u0000\u008c\u02b5\u0001\u0000\u0000\u0000\u008e"+
+ "\u02b7\u0001\u0000\u0000\u0000\u0090\u02be\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\u0003v;\u0000\u00a1\u00a7\u0003"+
+ "&\u0013\u0000\u00a2\u00a7\u0003 \u0010\u0000\u00a3\u00a7\u0003z=\u0000"+
+ "\u00a4\u00a5\u0004\u0002\u0001\u0000\u00a5\u00a7\u00036\u001b\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"+
+ "\u00bf\u00038\u001c\u0000\u00a9\u00bf\u0003\b\u0004\u0000\u00aa\u00bf"+
+ "\u0003X,\u0000\u00ab\u00bf\u0003R)\u0000\u00ac\u00bf\u0003:\u001d\u0000"+
+ "\u00ad\u00bf\u0003T*\u0000\u00ae\u00bf\u0003Z-\u0000\u00af\u00bf\u0003"+
+ "\\.\u0000\u00b0\u00bf\u0003`0\u0000\u00b1\u00bf\u0003b1\u0000\u00b2\u00bf"+
+ "\u0003|>\u0000\u00b3\u00bf\u0003d2\u0000\u00b4\u00bf\u0003\u0086C\u0000"+
+ "\u00b5\u00bf\u0003\u0080@\u0000\u00b6\u00b7\u0004\u0003\u0002\u0000\u00b7"+
+ "\u00bf\u0003\u0090H\u0000\u00b8\u00b9\u0004\u0003\u0003\u0000\u00b9\u00bf"+
+ "\u0003\u0084B\u0000\u00ba\u00bb\u0004\u0003\u0004\u0000\u00bb\u00bf\u0003"+
+ "\u0082A\u0000\u00bc\u00bd\u0004\u0003\u0005\u0000\u00bd\u00bf\u0003\u008e"+
+ "G\u0000\u00be\u00a8\u0001\u0000\u0000\u0000\u00be\u00a9\u0001\u0000\u0000"+
+ "\u0000\u00be\u00aa\u0001\u0000\u0000\u0000\u00be\u00ab\u0001\u0000\u0000"+
+ "\u0000\u00be\u00ac\u0001\u0000\u0000\u0000\u00be\u00ad\u0001\u0000\u0000"+
+ "\u0000\u00be\u00ae\u0001\u0000\u0000\u0000\u00be\u00af\u0001\u0000\u0000"+
+ "\u0000\u00be\u00b0\u0001\u0000\u0000\u0000\u00be\u00b1\u0001\u0000\u0000"+
+ "\u0000\u00be\u00b2\u0001\u0000\u0000\u0000\u00be\u00b3\u0001\u0000\u0000"+
+ "\u0000\u00be\u00b4\u0001\u0000\u0000\u0000\u00be\u00b5\u0001\u0000\u0000"+
+ "\u0000\u00be\u00b6\u0001\u0000\u0000\u0000\u00be\u00b8\u0001\u0000\u0000"+
+ "\u0000\u00be\u00ba\u0001\u0000\u0000\u0000\u00be\u00bc\u0001\u0000\u0000"+
+ "\u0000\u00bf\u0007\u0001\u0000\u0000\u0000\u00c0\u00c1\u0005\u0010\u0000"+
+ "\u0000\u00c1\u00c2\u0003\n\u0005\u0000\u00c2\t\u0001\u0000\u0000\u0000"+
+ "\u00c3\u00c4\u0006\u0005\uffff\uffff\u0000\u00c4\u00c5\u00054\u0000\u0000"+
+ "\u00c5\u00e1\u0003\n\u0005\b\u00c6\u00e1\u0003\u0010\b\u0000\u00c7\u00e1"+
+ "\u0003\f\u0006\u0000\u00c8\u00ca\u0003\u0010\b\u0000\u00c9\u00cb\u0005"+
+ "4\u0000\u0000\u00ca\u00c9\u0001\u0000\u0000\u0000\u00ca\u00cb\u0001\u0000"+
+ "\u0000\u0000\u00cb\u00cc\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005/\u0000"+
+ "\u0000\u00cd\u00ce\u00053\u0000\u0000\u00ce\u00d3\u0003\u0010\b\u0000"+
+ "\u00cf\u00d0\u0005*\u0000\u0000\u00d0\u00d2\u0003\u0010\b\u0000\u00d1"+
+ "\u00cf\u0001\u0000\u0000\u0000\u00d2\u00d5\u0001\u0000\u0000\u0000\u00d3"+
+ "\u00d1\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001\u0000\u0000\u0000\u00d4"+
+ "\u00d6\u0001\u0000\u0000\u0000\u00d5\u00d3\u0001\u0000\u0000\u0000\u00d6"+
+ "\u00d7\u0005;\u0000\u0000\u00d7\u00e1\u0001\u0000\u0000\u0000\u00d8\u00d9"+
+ "\u0003\u0010\b\u0000\u00d9\u00db\u00050\u0000\u0000\u00da\u00dc\u0005"+
+ "4\u0000\u0000\u00db\u00da\u0001\u0000\u0000\u0000\u00db\u00dc\u0001\u0000"+
+ "\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000\u00dd\u00de\u00055\u0000"+
+ "\u0000\u00de\u00e1\u0001\u0000\u0000\u0000\u00df\u00e1\u0003\u000e\u0007"+
+ "\u0000\u00e0\u00c3\u0001\u0000\u0000\u0000\u00e0\u00c6\u0001\u0000\u0000"+
+ "\u0000\u00e0\u00c7\u0001\u0000\u0000\u0000\u00e0\u00c8\u0001\u0000\u0000"+
+ "\u0000\u00e0\u00d8\u0001\u0000\u0000\u0000\u00e0\u00df\u0001\u0000\u0000"+
+ "\u0000\u00e1\u00ea\u0001\u0000\u0000\u0000\u00e2\u00e3\n\u0005\u0000\u0000"+
+ "\u00e3\u00e4\u0005#\u0000\u0000\u00e4\u00e9\u0003\n\u0005\u0006\u00e5"+
+ "\u00e6\n\u0004\u0000\u0000\u00e6\u00e7\u00058\u0000\u0000\u00e7\u00e9"+
+ "\u0003\n\u0005\u0005\u00e8\u00e2\u0001\u0000\u0000\u0000\u00e8\u00e5\u0001"+
+ "\u0000\u0000\u0000\u00e9\u00ec\u0001\u0000\u0000\u0000\u00ea\u00e8\u0001"+
+ "\u0000\u0000\u0000\u00ea\u00eb\u0001\u0000\u0000\u0000\u00eb\u000b\u0001"+
+ "\u0000\u0000\u0000\u00ec\u00ea\u0001\u0000\u0000\u0000\u00ed\u00ef\u0003"+
+ "\u0010\b\u0000\u00ee\u00f0\u00054\u0000\u0000\u00ef\u00ee\u0001\u0000"+
+ "\u0000\u0000\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000"+
+ "\u0000\u0000\u00f1\u00f2\u00052\u0000\u0000\u00f2\u00f3\u0003r9\u0000"+
+ "\u00f3\u00fc\u0001\u0000\u0000\u0000\u00f4\u00f6\u0003\u0010\b\u0000\u00f5"+
+ "\u00f7\u00054\u0000\u0000\u00f6\u00f5\u0001\u0000\u0000\u0000\u00f6\u00f7"+
+ "\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001\u0000\u0000\u0000\u00f8\u00f9"+
+ "\u0005:\u0000\u0000\u00f9\u00fa\u0003r9\u0000\u00fa\u00fc\u0001\u0000"+
+ "\u0000\u0000\u00fb\u00ed\u0001\u0000\u0000\u0000\u00fb\u00f4\u0001\u0000"+
+ "\u0000\u0000\u00fc\r\u0001\u0000\u0000\u0000\u00fd\u0100\u0003@ \u0000"+
+ "\u00fe\u00ff\u0005(\u0000\u0000\u00ff\u0101\u0003\u001e\u000f\u0000\u0100"+
+ "\u00fe\u0001\u0000\u0000\u0000\u0100\u0101\u0001\u0000\u0000\u0000\u0101"+
+ "\u0102\u0001\u0000\u0000\u0000\u0102\u0103\u0005)\u0000\u0000\u0103\u0104"+
+ "\u0003J%\u0000\u0104\u000f\u0001\u0000\u0000\u0000\u0105\u010b\u0003\u0012"+
+ "\t\u0000\u0106\u0107\u0003\u0012\t\u0000\u0107\u0108\u0003t:\u0000\u0108"+
+ "\u0109\u0003\u0012\t\u0000\u0109\u010b\u0001\u0000\u0000\u0000\u010a\u0105"+
+ "\u0001\u0000\u0000\u0000\u010a\u0106\u0001\u0000\u0000\u0000\u010b\u0011"+
+ "\u0001\u0000\u0000\u0000\u010c\u010d\u0006\t\uffff\uffff\u0000\u010d\u0111"+
+ "\u0003\u0014\n\u0000\u010e\u010f\u0007\u0000\u0000\u0000\u010f\u0111\u0003"+
+ "\u0012\t\u0003\u0110\u010c\u0001\u0000\u0000\u0000\u0110\u010e\u0001\u0000"+
+ "\u0000\u0000\u0111\u011a\u0001\u0000\u0000\u0000\u0112\u0113\n\u0002\u0000"+
+ "\u0000\u0113\u0114\u0007\u0001\u0000\u0000\u0114\u0119\u0003\u0012\t\u0003"+
+ "\u0115\u0116\n\u0001\u0000\u0000\u0116\u0117\u0007\u0000\u0000\u0000\u0117"+
+ "\u0119\u0003\u0012\t\u0002\u0118\u0112\u0001\u0000\u0000\u0000\u0118\u0115"+
+ "\u0001\u0000\u0000\u0000\u0119\u011c\u0001\u0000\u0000\u0000\u011a\u0118"+
+ "\u0001\u0000\u0000\u0000\u011a\u011b\u0001\u0000\u0000\u0000\u011b\u0013"+
+ "\u0001\u0000\u0000\u0000\u011c\u011a\u0001\u0000\u0000\u0000\u011d\u011e"+
+ "\u0006\n\uffff\uffff\u0000\u011e\u0126\u0003J%\u0000\u011f\u0126\u0003"+
+ "@ \u0000\u0120\u0126\u0003\u0016\u000b\u0000\u0121\u0122\u00053\u0000"+
+ "\u0000\u0122\u0123\u0003\n\u0005\u0000\u0123\u0124\u0005;\u0000\u0000"+
+ "\u0124\u0126\u0001\u0000\u0000\u0000\u0125\u011d\u0001\u0000\u0000\u0000"+
+ "\u0125\u011f\u0001\u0000\u0000\u0000\u0125\u0120\u0001\u0000\u0000\u0000"+
+ "\u0125\u0121\u0001\u0000\u0000\u0000\u0126\u012c\u0001\u0000\u0000\u0000"+
+ "\u0127\u0128\n\u0001\u0000\u0000\u0128\u0129\u0005(\u0000\u0000\u0129"+
+ "\u012b\u0003\u001e\u000f\u0000\u012a\u0127\u0001\u0000\u0000\u0000\u012b"+
+ "\u012e\u0001\u0000\u0000\u0000\u012c\u012a\u0001\u0000\u0000\u0000\u012c"+
+ "\u012d\u0001\u0000\u0000\u0000\u012d\u0015\u0001\u0000\u0000\u0000\u012e"+
+ "\u012c\u0001\u0000\u0000\u0000\u012f\u0130\u0003\u0018\f\u0000\u0130\u013e"+
+ "\u00053\u0000\u0000\u0131\u013f\u0005G\u0000\u0000\u0132\u0137\u0003\n"+
+ "\u0005\u0000\u0133\u0134\u0005*\u0000\u0000\u0134\u0136\u0003\n\u0005"+
+ "\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0139\u0001\u0000\u0000"+
+ "\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0137\u0138\u0001\u0000\u0000"+
+ "\u0000\u0138\u013c\u0001\u0000\u0000\u0000\u0139\u0137\u0001\u0000\u0000"+
+ "\u0000\u013a\u013b\u0005*\u0000\u0000\u013b\u013d\u0003\u001a\r\u0000"+
+ "\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013d\u0001\u0000\u0000\u0000"+
+ "\u013d\u013f\u0001\u0000\u0000\u0000\u013e\u0131\u0001\u0000\u0000\u0000"+
+ "\u013e\u0132\u0001\u0000\u0000\u0000\u013e\u013f\u0001\u0000\u0000\u0000"+
+ "\u013f\u0140\u0001\u0000\u0000\u0000\u0140\u0141\u0005;\u0000\u0000\u0141"+
+ "\u0017\u0001\u0000\u0000\u0000\u0142\u0143\u0003P(\u0000\u0143\u0019\u0001"+
+ "\u0000\u0000\u0000\u0144\u0145\u0005J\u0000\u0000\u0145\u014a\u0003\u001c"+
+ "\u000e\u0000\u0146\u0147\u0005*\u0000\u0000\u0147\u0149\u0003\u001c\u000e"+
+ "\u0000\u0148\u0146\u0001\u0000\u0000\u0000\u0149\u014c\u0001\u0000\u0000"+
+ "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a\u014b\u0001\u0000\u0000"+
+ "\u0000\u014b\u014d\u0001\u0000\u0000\u0000\u014c\u014a\u0001\u0000\u0000"+
+ "\u0000\u014d\u014e\u0005K\u0000\u0000\u014e\u001b\u0001\u0000\u0000\u0000"+
+ "\u014f\u0150\u0003r9\u0000\u0150\u0151\u0005)\u0000\u0000\u0151\u0152"+
+ "\u0003J%\u0000\u0152\u001d\u0001\u0000\u0000\u0000\u0153\u0154\u0003F"+
+ "#\u0000\u0154\u001f\u0001\u0000\u0000\u0000\u0155\u0156\u0005\f\u0000"+
+ "\u0000\u0156\u0157\u0003\"\u0011\u0000\u0157!\u0001\u0000\u0000\u0000"+
+ "\u0158\u015d\u0003$\u0012\u0000\u0159\u015a\u0005*\u0000\u0000\u015a\u015c"+
+ "\u0003$\u0012\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015c\u015f\u0001"+
+ "\u0000\u0000\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015d\u015e\u0001"+
+ "\u0000\u0000\u0000\u015e#\u0001\u0000\u0000\u0000\u015f\u015d\u0001\u0000"+
+ "\u0000\u0000\u0160\u0161\u0003@ \u0000\u0161\u0162\u0005&\u0000\u0000"+
+ "\u0162\u0164\u0001\u0000\u0000\u0000\u0163\u0160\u0001\u0000\u0000\u0000"+
+ "\u0163\u0164\u0001\u0000\u0000\u0000\u0164\u0165\u0001\u0000\u0000\u0000"+
+ "\u0165\u0166\u0003\n\u0005\u0000\u0166%\u0001\u0000\u0000\u0000\u0167"+
+ "\u0168\u0005\u0006\u0000\u0000\u0168\u016d\u0003(\u0014\u0000\u0169\u016a"+
+ "\u0005*\u0000\u0000\u016a\u016c\u0003(\u0014\u0000\u016b\u0169\u0001\u0000"+
+ "\u0000\u0000\u016c\u016f\u0001\u0000\u0000\u0000\u016d\u016b\u0001\u0000"+
+ "\u0000\u0000\u016d\u016e\u0001\u0000\u0000\u0000\u016e\u0171\u0001\u0000"+
+ "\u0000\u0000\u016f\u016d\u0001\u0000\u0000\u0000\u0170\u0172\u00030\u0018"+
+ "\u0000\u0171\u0170\u0001\u0000\u0000\u0000\u0171\u0172\u0001\u0000\u0000"+
+ "\u0000\u0172\'\u0001\u0000\u0000\u0000\u0173\u0174\u0003*\u0015\u0000"+
+ "\u0174\u0175\u0005)\u0000\u0000\u0175\u0177\u0001\u0000\u0000\u0000\u0176"+
+ "\u0173\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177"+
+ "\u0178\u0001\u0000\u0000\u0000\u0178\u017f\u0003.\u0017\u0000\u0179\u017c"+
+ "\u0003.\u0017\u0000\u017a\u017b\u0005(\u0000\u0000\u017b\u017d\u0003,"+
+ "\u0016\u0000\u017c\u017a\u0001\u0000\u0000\u0000\u017c\u017d\u0001\u0000"+
+ "\u0000\u0000\u017d\u017f\u0001\u0000\u0000\u0000\u017e\u0176\u0001\u0000"+
+ "\u0000\u0000\u017e\u0179\u0001\u0000\u0000\u0000\u017f)\u0001\u0000\u0000"+
+ "\u0000\u0180\u0181\u0007\u0002\u0000\u0000\u0181+\u0001\u0000\u0000\u0000"+
+ "\u0182\u0183\u0007\u0002\u0000\u0000\u0183-\u0001\u0000\u0000\u0000\u0184"+
+ "\u0185\u0007\u0002\u0000\u0000\u0185/\u0001\u0000\u0000\u0000\u0186\u0189"+
+ "\u00032\u0019\u0000\u0187\u0189\u00034\u001a\u0000\u0188\u0186\u0001\u0000"+
+ "\u0000\u0000\u0188\u0187\u0001\u0000\u0000\u0000\u01891\u0001\u0000\u0000"+
+ "\u0000\u018a\u018b\u0005Y\u0000\u0000\u018b\u0190\u0005Z\u0000\u0000\u018c"+
+ "\u018d\u0005*\u0000\u0000\u018d\u018f\u0005Z\u0000\u0000\u018e\u018c\u0001"+
+ "\u0000\u0000\u0000\u018f\u0192\u0001\u0000\u0000\u0000\u0190\u018e\u0001"+
+ "\u0000\u0000\u0000\u0190\u0191\u0001\u0000\u0000\u0000\u01913\u0001\u0000"+
+ "\u0000\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0193\u0194\u0005O\u0000"+
+ "\u0000\u0194\u0195\u00032\u0019\u0000\u0195\u0196\u0005P\u0000\u0000\u0196"+
+ "5\u0001\u0000\u0000\u0000\u0197\u0198\u0005\u0016\u0000\u0000\u0198\u019d"+
+ "\u0003(\u0014\u0000\u0199\u019a\u0005*\u0000\u0000\u019a\u019c\u0003("+
+ "\u0014\u0000\u019b\u0199\u0001\u0000\u0000\u0000\u019c\u019f\u0001\u0000"+
+ "\u0000\u0000\u019d\u019b\u0001\u0000\u0000\u0000\u019d\u019e\u0001\u0000"+
+ "\u0000\u0000\u019e\u01a1\u0001\u0000\u0000\u0000\u019f\u019d\u0001\u0000"+
+ "\u0000\u0000\u01a0\u01a2\u0003<\u001e\u0000\u01a1\u01a0\u0001\u0000\u0000"+
+ "\u0000\u01a1\u01a2\u0001\u0000\u0000\u0000\u01a2\u01a5\u0001\u0000\u0000"+
+ "\u0000\u01a3\u01a4\u0005\'\u0000\u0000\u01a4\u01a6\u0003\"\u0011\u0000"+
+ "\u01a5\u01a3\u0001\u0000\u0000\u0000\u01a5\u01a6\u0001\u0000\u0000\u0000"+
+ "\u01a67\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005\u0004\u0000\u0000\u01a8"+
+ "\u01a9\u0003\"\u0011\u0000\u01a99\u0001\u0000\u0000\u0000\u01aa\u01ac"+
+ "\u0005\u000f\u0000\u0000\u01ab\u01ad\u0003<\u001e\u0000\u01ac\u01ab\u0001"+
+ "\u0000\u0000\u0000\u01ac\u01ad\u0001\u0000\u0000\u0000\u01ad\u01b0\u0001"+
+ "\u0000\u0000\u0000\u01ae\u01af\u0005\'\u0000\u0000\u01af\u01b1\u0003\""+
+ "\u0011\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b0\u01b1\u0001\u0000"+
+ "\u0000\u0000\u01b1;\u0001\u0000\u0000\u0000\u01b2\u01b7\u0003>\u001f\u0000"+
+ "\u01b3\u01b4\u0005*\u0000\u0000\u01b4\u01b6\u0003>\u001f\u0000\u01b5\u01b3"+
+ "\u0001\u0000\u0000\u0000\u01b6\u01b9\u0001\u0000\u0000\u0000\u01b7\u01b5"+
+ "\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001\u0000\u0000\u0000\u01b8=\u0001"+
+ "\u0000\u0000\u0000\u01b9\u01b7\u0001\u0000\u0000\u0000\u01ba\u01bd\u0003"+
+ "$\u0012\u0000\u01bb\u01bc\u0005\u0010\u0000\u0000\u01bc\u01be\u0003\n"+
+ "\u0005\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000"+
+ "\u0000\u0000\u01be?\u0001\u0000\u0000\u0000\u01bf\u01c4\u0003P(\u0000"+
+ "\u01c0\u01c1\u0005,\u0000\u0000\u01c1\u01c3\u0003P(\u0000\u01c2\u01c0"+
+ "\u0001\u0000\u0000\u0000\u01c3\u01c6\u0001\u0000\u0000\u0000\u01c4\u01c2"+
+ "\u0001\u0000\u0000\u0000\u01c4\u01c5\u0001\u0000\u0000\u0000\u01c5A\u0001"+
+ "\u0000\u0000\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c7\u01cc\u0003"+
+ "H$\u0000\u01c8\u01c9\u0005,\u0000\u0000\u01c9\u01cb\u0003H$\u0000\u01ca"+
+ "\u01c8\u0001\u0000\u0000\u0000\u01cb\u01ce\u0001\u0000\u0000\u0000\u01cc"+
+ "\u01ca\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001\u0000\u0000\u0000\u01cd"+
+ "C\u0001\u0000\u0000\u0000\u01ce\u01cc\u0001\u0000\u0000\u0000\u01cf\u01d4"+
+ "\u0003B!\u0000\u01d0\u01d1\u0005*\u0000\u0000\u01d1\u01d3\u0003B!\u0000"+
+ "\u01d2\u01d0\u0001\u0000\u0000\u0000\u01d3\u01d6\u0001\u0000\u0000\u0000"+
+ "\u01d4\u01d2\u0001\u0000\u0000\u0000\u01d4\u01d5\u0001\u0000\u0000\u0000"+
+ "\u01d5E\u0001\u0000\u0000\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d7"+
+ "\u01d8\u0007\u0003\u0000\u0000\u01d8G\u0001\u0000\u0000\u0000\u01d9\u01dd"+
+ "\u0005^\u0000\u0000\u01da\u01dd\u0003L&\u0000\u01db\u01dd\u0003N\'\u0000"+
+ "\u01dc\u01d9\u0001\u0000\u0000\u0000\u01dc\u01da\u0001\u0000\u0000\u0000"+
+ "\u01dc\u01db\u0001\u0000\u0000\u0000\u01ddI\u0001\u0000\u0000\u0000\u01de"+
+ "\u0209\u00055\u0000\u0000\u01df\u01e0\u0003p8\u0000\u01e0\u01e1\u0005"+
+ "Q\u0000\u0000\u01e1\u0209\u0001\u0000\u0000\u0000\u01e2\u0209\u0003n7"+
+ "\u0000\u01e3\u0209\u0003p8\u0000\u01e4\u0209\u0003j5\u0000\u01e5\u0209"+
+ "\u0003L&\u0000\u01e6\u0209\u0003r9\u0000\u01e7\u01e8\u0005O\u0000\u0000"+
+ "\u01e8\u01ed\u0003l6\u0000\u01e9\u01ea\u0005*\u0000\u0000\u01ea\u01ec"+
+ "\u0003l6\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01ec\u01ef\u0001\u0000"+
+ "\u0000\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000"+
+ "\u0000\u0000\u01ee\u01f0\u0001\u0000\u0000\u0000\u01ef\u01ed\u0001\u0000"+
+ "\u0000\u0000\u01f0\u01f1\u0005P\u0000\u0000\u01f1\u0209\u0001\u0000\u0000"+
+ "\u0000\u01f2\u01f3\u0005O\u0000\u0000\u01f3\u01f8\u0003j5\u0000\u01f4"+
+ "\u01f5\u0005*\u0000\u0000\u01f5\u01f7\u0003j5\u0000\u01f6\u01f4\u0001"+
+ "\u0000\u0000\u0000\u01f7\u01fa\u0001\u0000\u0000\u0000\u01f8\u01f6\u0001"+
+ "\u0000\u0000\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9\u01fb\u0001"+
+ "\u0000\u0000\u0000\u01fa\u01f8\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005"+
+ "P\u0000\u0000\u01fc\u0209\u0001\u0000\u0000\u0000\u01fd\u01fe\u0005O\u0000"+
+ "\u0000\u01fe\u0203\u0003r9\u0000\u01ff\u0200\u0005*\u0000\u0000\u0200"+
+ "\u0202\u0003r9\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0205\u0001"+
+ "\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0203\u0204\u0001"+
+ "\u0000\u0000\u0000\u0204\u0206\u0001\u0000\u0000\u0000\u0205\u0203\u0001"+
+ "\u0000\u0000\u0000\u0206\u0207\u0005P\u0000\u0000\u0207\u0209\u0001\u0000"+
+ "\u0000\u0000\u0208\u01de\u0001\u0000\u0000\u0000\u0208\u01df\u0001\u0000"+
+ "\u0000\u0000\u0208\u01e2\u0001\u0000\u0000\u0000\u0208\u01e3\u0001\u0000"+
+ "\u0000\u0000\u0208\u01e4\u0001\u0000\u0000\u0000\u0208\u01e5\u0001\u0000"+
+ "\u0000\u0000\u0208\u01e6\u0001\u0000\u0000\u0000\u0208\u01e7\u0001\u0000"+
+ "\u0000\u0000\u0208\u01f2\u0001\u0000\u0000\u0000\u0208\u01fd\u0001\u0000"+
+ "\u0000\u0000\u0209K\u0001\u0000\u0000\u0000\u020a\u020d\u00059\u0000\u0000"+
+ "\u020b\u020d\u0005M\u0000\u0000\u020c\u020a\u0001\u0000\u0000\u0000\u020c"+
+ "\u020b\u0001\u0000\u0000\u0000\u020dM\u0001\u0000\u0000\u0000\u020e\u0211"+
+ "\u0005L\u0000\u0000\u020f\u0211\u0005N\u0000\u0000\u0210\u020e\u0001\u0000"+
+ "\u0000\u0000\u0210\u020f\u0001\u0000\u0000\u0000\u0211O\u0001\u0000\u0000"+
+ "\u0000\u0212\u0216\u0003F#\u0000\u0213\u0216\u0003L&\u0000\u0214\u0216"+
+ "\u0003N\'\u0000\u0215\u0212\u0001\u0000\u0000\u0000\u0215\u0213\u0001"+
+ "\u0000\u0000\u0000\u0215\u0214\u0001\u0000\u0000\u0000\u0216Q\u0001\u0000"+
+ "\u0000\u0000\u0217\u0218\u0005\t\u0000\u0000\u0218\u0219\u0003J%\u0000"+
+ "\u0219S\u0001\u0000\u0000\u0000\u021a\u021b\u0005\u000e\u0000\u0000\u021b"+
+ "\u0220\u0003V+\u0000\u021c\u021d\u0005*\u0000\u0000\u021d\u021f\u0003"+
+ "V+\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021f\u0222\u0001\u0000\u0000"+
+ "\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0220\u0221\u0001\u0000\u0000"+
+ "\u0000\u0221U\u0001\u0000\u0000\u0000\u0222\u0220\u0001\u0000\u0000\u0000"+
+ "\u0223\u0225\u0003\n\u0005\u0000\u0224\u0226\u0007\u0004\u0000\u0000\u0225"+
+ "\u0224\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+
+ "\u0229\u0001\u0000\u0000\u0000\u0227\u0228\u00056\u0000\u0000\u0228\u022a"+
+ "\u0007\u0005\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a"+
+ "\u0001\u0000\u0000\u0000\u022aW\u0001\u0000\u0000\u0000\u022b\u022c\u0005"+
+ "\b\u0000\u0000\u022c\u022d\u0003D\"\u0000\u022dY\u0001\u0000\u0000\u0000"+
+ "\u022e\u022f\u0005\u0002\u0000\u0000\u022f\u0230\u0003D\"\u0000\u0230"+
+ "[\u0001\u0000\u0000\u0000\u0231\u0232\u0005\u000b\u0000\u0000\u0232\u0237"+
+ "\u0003^/\u0000\u0233\u0234\u0005*\u0000\u0000\u0234\u0236\u0003^/\u0000"+
+ "\u0235\u0233\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000\u0000"+
+ "\u0237\u0235\u0001\u0000\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000"+
+ "\u0238]\u0001\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a"+
+ "\u023b\u0003B!\u0000\u023b\u023c\u0005$\u0000\u0000\u023c\u023d\u0003"+
+ "B!\u0000\u023d_\u0001\u0000\u0000\u0000\u023e\u023f\u0005\u0001\u0000"+
+ "\u0000\u023f\u0240\u0003\u0014\n\u0000\u0240\u0242\u0003r9\u0000\u0241"+
+ "\u0243\u0003f3\u0000\u0242\u0241\u0001\u0000\u0000\u0000\u0242\u0243\u0001"+
+ "\u0000\u0000\u0000\u0243a\u0001\u0000\u0000\u0000\u0244\u0245\u0005\u0007"+
+ "\u0000\u0000\u0245\u0246\u0003\u0014\n\u0000\u0246\u0247\u0003r9\u0000"+
+ "\u0247c\u0001\u0000\u0000\u0000\u0248\u0249\u0005\n\u0000\u0000\u0249"+
+ "\u024a\u0003@ \u0000\u024ae\u0001\u0000\u0000\u0000\u024b\u0250\u0003"+
+ "h4\u0000\u024c\u024d\u0005*\u0000\u0000\u024d\u024f\u0003h4\u0000\u024e"+
+ "\u024c\u0001\u0000\u0000\u0000\u024f\u0252\u0001\u0000\u0000\u0000\u0250"+
+ "\u024e\u0001\u0000\u0000\u0000\u0250\u0251\u0001\u0000\u0000\u0000\u0251"+
+ "g\u0001\u0000\u0000\u0000\u0252\u0250\u0001\u0000\u0000\u0000\u0253\u0254"+
+ "\u0003F#\u0000\u0254\u0255\u0005&\u0000\u0000\u0255\u0256\u0003J%\u0000"+
+ "\u0256i\u0001\u0000\u0000\u0000\u0257\u0258\u0007\u0006\u0000\u0000\u0258"+
+ "k\u0001\u0000\u0000\u0000\u0259\u025c\u0003n7\u0000\u025a\u025c\u0003"+
+ "p8\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025b\u025a\u0001\u0000\u0000"+
+ "\u0000\u025cm\u0001\u0000\u0000\u0000\u025d\u025f\u0007\u0000\u0000\u0000"+
+ "\u025e\u025d\u0001\u0000\u0000\u0000\u025e\u025f\u0001\u0000\u0000\u0000"+
+ "\u025f\u0260\u0001\u0000\u0000\u0000\u0260\u0261\u0005\"\u0000\u0000\u0261"+
+ "o\u0001\u0000\u0000\u0000\u0262\u0264\u0007\u0000\u0000\u0000\u0263\u0262"+
+ "\u0001\u0000\u0000\u0000\u0263\u0264\u0001\u0000\u0000\u0000\u0264\u0265"+
+ "\u0001\u0000\u0000\u0000\u0265\u0266\u0005!\u0000\u0000\u0266q\u0001\u0000"+
+ "\u0000\u0000\u0267\u0268\u0005 \u0000\u0000\u0268s\u0001\u0000\u0000\u0000"+
+ "\u0269\u026a\u0007\u0007\u0000\u0000\u026au\u0001\u0000\u0000\u0000\u026b"+
+ "\u026c\u0005\u0005\u0000\u0000\u026c\u026d\u0003x<\u0000\u026dw\u0001"+
+ "\u0000\u0000\u0000\u026e\u026f\u0005O\u0000\u0000\u026f\u0270\u0003\u0002"+
+ "\u0001\u0000\u0270\u0271\u0005P\u0000\u0000\u0271y\u0001\u0000\u0000\u0000"+
+ "\u0272\u0273\u0005\r\u0000\u0000\u0273\u0274\u0005o\u0000\u0000\u0274"+
+ "{\u0001\u0000\u0000\u0000\u0275\u0276\u0005\u0003\u0000\u0000\u0276\u0279"+
+ "\u0005e\u0000\u0000\u0277\u0278\u00057\u0000\u0000\u0278\u027a\u0003B"+
+ "!\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u0279\u027a\u0001\u0000\u0000"+
+ "\u0000\u027a\u0284\u0001\u0000\u0000\u0000\u027b\u027c\u0005=\u0000\u0000"+
+ "\u027c\u0281\u0003~?\u0000\u027d\u027e\u0005*\u0000\u0000\u027e\u0280"+
+ "\u0003~?\u0000\u027f\u027d\u0001\u0000\u0000\u0000\u0280\u0283\u0001\u0000"+
+ "\u0000\u0000\u0281\u027f\u0001\u0000\u0000\u0000\u0281\u0282\u0001\u0000"+
+ "\u0000\u0000\u0282\u0285\u0001\u0000\u0000\u0000\u0283\u0281\u0001\u0000"+
+ "\u0000\u0000\u0284\u027b\u0001\u0000\u0000\u0000\u0284\u0285\u0001\u0000"+
+ "\u0000\u0000\u0285}\u0001\u0000\u0000\u0000\u0286\u0287\u0003B!\u0000"+
+ "\u0287\u0288\u0005&\u0000\u0000\u0288\u028a\u0001\u0000\u0000\u0000\u0289"+
+ "\u0286\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000\u0000\u0000\u028a"+
+ "\u028b\u0001\u0000\u0000\u0000\u028b\u028c\u0003B!\u0000\u028c\u007f\u0001"+
+ "\u0000\u0000\u0000\u028d\u028e\u0005\u0012\u0000\u0000\u028e\u0291\u0003"+
+ "@ \u0000\u028f\u0290\u00057\u0000\u0000\u0290\u0292\u0003@ \u0000\u0291"+
+ "\u028f\u0001\u0000\u0000\u0000\u0291\u0292\u0001\u0000\u0000\u0000\u0292"+
+ "\u0298\u0001\u0000\u0000\u0000\u0293\u0294\u0005$\u0000\u0000\u0294\u0295"+
+ "\u0003@ \u0000\u0295\u0296\u0005*\u0000\u0000\u0296\u0297\u0003@ \u0000"+
+ "\u0297\u0299\u0001\u0000\u0000\u0000\u0298\u0293\u0001\u0000\u0000\u0000"+
+ "\u0298\u0299\u0001\u0000\u0000\u0000\u0299\u0081\u0001\u0000\u0000\u0000"+
+ "\u029a\u029b\u0005\u0015\u0000\u0000\u029b\u029c\u0003(\u0014\u0000\u029c"+
+ "\u029d\u00057\u0000\u0000\u029d\u029e\u0003D\"\u0000\u029e\u0083\u0001"+
+ "\u0000\u0000\u0000\u029f\u02a0\u0005\u0014\u0000\u0000\u02a0\u02a3\u0003"+
+ "<\u001e\u0000\u02a1\u02a2\u0005\'\u0000\u0000\u02a2\u02a4\u0003\"\u0011"+
+ "\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a3\u02a4\u0001\u0000\u0000"+
+ "\u0000\u02a4\u0085\u0001\u0000\u0000\u0000\u02a5\u02a6\u0007\b\u0000\u0000"+
+ "\u02a6\u02a7\u0005}\u0000\u0000\u02a7\u02a8\u0003\u0088D\u0000\u02a8\u02a9"+
+ "\u0003\u008aE\u0000\u02a9\u0087\u0001\u0000\u0000\u0000\u02aa\u02ab\u0003"+
+ "(\u0014\u0000\u02ab\u0089\u0001\u0000\u0000\u0000\u02ac\u02ad\u00057\u0000"+
+ "\u0000\u02ad\u02b2\u0003\u008cF\u0000\u02ae\u02af\u0005*\u0000\u0000\u02af"+
+ "\u02b1\u0003\u008cF\u0000\u02b0\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b4"+
+ "\u0001\u0000\u0000\u0000\u02b2\u02b0\u0001\u0000\u0000\u0000\u02b2\u02b3"+
+ "\u0001\u0000\u0000\u0000\u02b3\u008b\u0001\u0000\u0000\u0000\u02b4\u02b2"+
+ "\u0001\u0000\u0000\u0000\u02b5\u02b6\u0003\u0010\b\u0000\u02b6\u008d\u0001"+
+ "\u0000\u0000\u0000\u02b7\u02b8\u0005\u0017\u0000\u0000\u02b8\u02b9\u0003"+
+ "J%\u0000\u02b9\u02ba\u00057\u0000\u0000\u02ba\u02bb\u0003\"\u0011\u0000"+
+ "\u02bb\u02bc\u0005=\u0000\u0000\u02bc\u02bd\u0003P(\u0000\u02bd\u008f"+
+ "\u0001\u0000\u0000\u0000\u02be\u02bf\u0005\u0013\u0000\u0000\u02bf\u02c0"+
+ "\u0003\u0014\n\u0000\u02c0\u02c1\u0005=\u0000\u0000\u02c1\u02c4\u0003"+
+ "P(\u0000\u02c2\u02c3\u0005$\u0000\u0000\u02c3\u02c5\u0003@ \u0000\u02c4"+
+ "\u02c2\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5"+
+ "\u0091\u0001\u0000\u0000\u0000D\u009d\u00a6\u00be\u00ca\u00d3\u00db\u00e0"+
+ "\u00e8\u00ea\u00ef\u00f6\u00fb\u0100\u010a\u0110\u0118\u011a\u0125\u012c"+
+ "\u0137\u013c\u013e\u014a\u015d\u0163\u016d\u0171\u0176\u017c\u017e\u0188"+
+ "\u0190\u019d\u01a1\u01a5\u01ac\u01b0\u01b7\u01bd\u01c4\u01cc\u01d4\u01dc"+
+ "\u01ed\u01f8\u0203\u0208\u020c\u0210\u0215\u0220\u0225\u0229\u0237\u0242"+
+ "\u0250\u025b\u025e\u0263\u0279\u0281\u0284\u0289\u0291\u0298\u02a3\u02b2"+
+ "\u02c4";
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 d243f0aee7394..40e87714c1b21 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
@@ -1184,6 +1184,18 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitCompletionCommand(EsqlBaseParser.CompletionCommandContext 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 6c5f9596fa1cf..a109a1c481325 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
@@ -699,4 +699,11 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext 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 66ccd97349a64..9d53f8f2bdedf 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
@@ -1055,4 +1055,14 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitRerankCommand(EsqlBaseParser.RerankCommandContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#completionCommand}.
+ * @param ctx the parse tree
+ */
+ void enterCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#completionCommand}.
+ * @param ctx the parse tree
+ */
+ void exitCompletionCommand(EsqlBaseParser.CompletionCommandContext 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 e0b0c26d9f960..6b753422e6cc3 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
@@ -635,4 +635,10 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor {
* @return the visitor result
*/
T visitRerankCommand(EsqlBaseParser.RerankCommandContext ctx);
+ /**
+ * Visit a parse tree produced by {@link EsqlBaseParser#completionCommand}.
+ * @param ctx the parse tree
+ * @return the visitor result
+ */
+ T visitCompletionCommand(EsqlBaseParser.CompletionCommandContext ctx);
}
From 3bced472c881c0ad76db641653f39056c71fc785 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Wed, 9 Apr 2025 11:20:50 +0200
Subject: [PATCH 04/34] Fix reranker tests (#126500)
---
.../xpack/esql/ccq/MultiClusterSpecIT.java | 5 +-
.../xpack/esql/qa/rest/EsqlSpecTestCase.java | 13 ++-
.../src/main/resources/rerank.csv-spec | 88 +++++++------------
3 files changed, 43 insertions(+), 63 deletions(-)
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 3f31f46fd3faf..934c069b47419 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_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;
import static org.mockito.Mockito.doAnswer;
@@ -127,8 +128,8 @@ protected void shouldSkipTest(String testName) throws IOException {
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(INLINESTATS_V2.capabilityName()));
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_PLANNING_V1.capabilityName()));
assumeFalse("LOOKUP JOIN not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_LOOKUP_V12.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()));
+ // 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()));
}
@Override
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 45d745564aac7..32a588bf24701 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
@@ -68,14 +68,14 @@
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.availableDatasetsForEs;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasRerankInferenceEndpoint;
-import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.clusterHasRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint;
-import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.createRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.deleteRerankInferenceEndpoint;
import static org.elasticsearch.xpack.esql.CsvTestsDataLoader.loadDataSetIntoEs;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.classpathResources;
+import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.RERANK;
+import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.Cap.SEMANTIC_TEXT_FIELD_CAPS;
import static org.elasticsearch.xpack.esql.action.EsqlCapabilities.cap;
// This test can run very long in serverless configurations
@@ -184,8 +184,8 @@ public final void test() throws Throwable {
}
protected void shouldSkipTest(String testName) throws IOException {
- if (testCase.requiredCapabilities.contains("semantic_text_field_caps") || testCase.requiredCapabilities.contains("rerank")) {
- assumeTrue("Inference test service needs to be supported for semantic_text", supportsInferenceTestService());
+ if (requiresInferenceEndpoint()) {
+ assumeTrue("Inference test service needs to be supported", supportsInferenceTestService());
}
checkCapabilities(adminClient(), testFeatureService, testName, testCase);
assumeTrue("Test " + testName + " is not enabled", isEnabled(testName, instructions, Version.CURRENT));
@@ -255,6 +255,11 @@ protected boolean supportsInferenceTestService() {
return true;
}
+ protected boolean requiresInferenceEndpoint() {
+ return Stream.of(SEMANTIC_TEXT_FIELD_CAPS.capabilityName(), RERANK.capabilityName())
+ .anyMatch(testCase.requiredCapabilities::contains);
+ }
+
protected boolean supportsIndexModeLookup() throws IOException {
return 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 71d4a2d57a136..c4aea4664cca6 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
@@ -10,15 +10,14 @@ required_capability: match_operator_colon
FROM books METADATA _score
| WHERE title:"war and peace" AND author:"Tolstoy"
| RERANK "war and peace" ON title WITH test_reranker
-| KEEP book_no, title, author, _score
-| EVAL _score = ROUND(_score, 5)
+| KEEP book_no, title, author
;
-book_no:keyword | title:text | author:text | _score:double
-5327 | War and Peace | Leo Tolstoy | 0.03846
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222
-9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083
-2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515
+book_no:keyword | title:text | author:text
+5327 | War and Peace | Leo Tolstoy
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
+9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
+2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
;
@@ -29,15 +28,14 @@ required_capability: match_operator_colon
FROM books METADATA _score
| WHERE title:"war and peace" AND author:"Tolstoy"
| RERANK "war and peace" ON title, author WITH test_reranker
-| KEEP book_no, title, author, _score
-| EVAL _score = ROUND(_score, 5)
+| KEEP book_no, title, author
;
-book_no:keyword | title:text | author:text | _score:double
-5327 | War and Peace | Leo Tolstoy | 0.02083
-9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.01429
-2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01136
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.00952
+book_no:keyword | title:text | author:text
+5327 | War and Peace | Leo Tolstoy
+9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
+2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
;
@@ -50,14 +48,13 @@ FROM books METADATA _score
| SORT _score DESC
| LIMIT 3
| RERANK "war and peace" ON title WITH test_reranker
-| KEEP book_no, title, author, _score
-| EVAL _score = ROUND(_score, 5)
+| KEEP book_no, title, author
;
-book_no:keyword | title:text | author:text | _score:double
-5327 | War and Peace | Leo Tolstoy | 0.03846
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222
-9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083
+book_no:keyword | title:text | author:text
+5327 | War and Peace | Leo Tolstoy
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
+9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
;
@@ -68,35 +65,14 @@ required_capability: match_operator_colon
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
+| KEEP book_no, title, author
| LIMIT 3
-| EVAL _score = ROUND(_score, 5)
;
-book_no:keyword | title:text | author:text | _score:double
-5327 | War and Peace | Leo Tolstoy | 0.03846
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222
-9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083
-;
-
-
-reranker add the _score column when missing
-required_capability: rerank
-required_capability: match_operator_colon
-
-FROM books
-| WHERE title:"war and peace" AND author:"Tolstoy"
-| RERANK "war and peace" ON title WITH test_reranker
-| KEEP book_no, title, author, _score
-| EVAL _score = ROUND(_score, 5)
-;
-
-
-book_no:keyword | title:text | author:text | _score:double
-5327 | War and Peace | Leo Tolstoy | 0.03846
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222
-9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.02083
-2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515
+book_no:keyword | title:text | author:text
+5327 | War and Peace | Leo Tolstoy
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
+9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
;
@@ -107,16 +83,15 @@ required_capability: match_operator_colon
FROM books
| WHERE title:"war and peace" AND author:"Tolstoy"
| RERANK "war and peace" ON title WITH test_reranker
-| KEEP book_no, title, author, _score
+| KEEP book_no, title, author
| SORT author, title
| LIMIT 3
-| EVAL _score = ROUND(_score, 5)
;
-book_no:keyword | title:text | author:text | _score:double
-4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.02222
-2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01515
-5327 | War and Peace | Leo Tolstoy | 0.03846
+book_no:keyword | title:text | author:text
+4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
+2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
+5327 | War and Peace | Leo Tolstoy
;
@@ -132,11 +107,10 @@ FROM books METADATA _id, _index, _score
| RRF
| RERANK "Tolkien" ON title WITH test_reranker
| LIMIT 2
-| KEEP book_no, title, author, _score
-| EVAL _score = ROUND(_score, 5)
+| KEEP book_no, title, author
;
-book_no:keyword | title:keyword | author:keyword | _score:double
-5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 0.02632
-2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 0.01961
+book_no:keyword | title:keyword | author:keyword
+5335 | Letters of J R R Tolkien | J.R.R. Tolkien
+2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien]
;
From d5a78ba6c4055b35dddf3a4372aa80089a2b24fb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Wed, 9 Apr 2025 13:30:22 +0200
Subject: [PATCH 05/34] [ES|QL] Rerank command: unmute reranker tests in
multi-node. (#126521)
---
.../org/elasticsearch/xpack/esql/ccq/MultiClusterSpecIT.java | 4 ----
1 file changed, 4 deletions(-)
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 934c069b47419..fe6936d86d406 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
@@ -51,8 +51,6 @@
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;
import static org.mockito.Mockito.doAnswer;
@@ -128,8 +126,6 @@ protected void shouldSkipTest(String testName) throws IOException {
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(INLINESTATS_V2.capabilityName()));
assumeFalse("INLINESTATS not yet supported in CCS", testCase.requiredCapabilities.contains(JOIN_PLANNING_V1.capabilityName()));
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()));
}
@Override
From 40e83cb205d9988ac6597878dc1961d538be1ec6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Fri, 11 Apr 2025 19:50:26 +0200
Subject: [PATCH 06/34] [ES|QL] COMPLETION command analysis. (#126677)
* [ES|QL] COMPLETION command analysis.
* Moving prompt type test in postAnalysisVerification
* Test lint.
---
.../xpack/esql/EsqlTestUtils.java | 16 ++
.../xpack/esql/analysis/Analyzer.java | 20 +++
.../plan/logical/inference/Completion.java | 18 ++-
.../xpack/esql/analysis/AnalyzerTests.java | 147 +++++++++++++++---
4 files changed, 177 insertions(+), 24 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 6067bd8383b2e..59f14156df5b1 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
@@ -109,6 +109,7 @@
import java.time.Period;
import java.util.ArrayList;
import java.util.Arrays;
+import java.util.Collection;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.HashSet;
@@ -126,6 +127,7 @@
import static java.util.Collections.emptyMap;
import static java.util.Collections.unmodifiableMap;
import static org.elasticsearch.test.ESTestCase.assertEquals;
+import static org.elasticsearch.test.ESTestCase.assertThat;
import static org.elasticsearch.test.ESTestCase.between;
import static org.elasticsearch.test.ESTestCase.randomAlphaOfLength;
import static org.elasticsearch.test.ESTestCase.randomArray;
@@ -151,6 +153,7 @@
import static org.elasticsearch.xpack.esql.parser.ParserUtils.ParamClassification.IDENTIFIER;
import static org.elasticsearch.xpack.esql.parser.ParserUtils.ParamClassification.PATTERN;
import static org.elasticsearch.xpack.esql.parser.ParserUtils.ParamClassification.VALUE;
+import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.instanceOf;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
@@ -884,6 +887,19 @@ public static void assertEsqlFailure(Exception e) {
.ifPresent(transportFailure -> assertNull("remote transport exception must be unwrapped", transportFailure.getCause()));
}
+ public static T singleValue(Collection collection) {
+ assertThat(collection, hasSize(1));
+ return collection.iterator().next();
+ }
+
+ public static Attribute getAttributeByName(Collection attributes, String name) {
+ return attributes.stream().filter(attr -> attr.name().equals(name)).findAny().orElse(null);
+ }
+
+ public static Map jsonEntityToMap(HttpEntity entity) throws IOException {
+ return entityToMap(entity, XContentType.JSON);
+ }
+
public static Map entityToMap(HttpEntity entity, XContentType expectedContentType) throws IOException {
try (InputStream content = entity.getContent()) {
XContentType xContentType = XContentType.fromMediaType(entity.getContentType().getValue());
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 743fdfb21ee98..a7ac9f16fc5dd 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
@@ -83,6 +83,7 @@
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.Completion;
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;
@@ -480,6 +481,10 @@ protected LogicalPlan doRule(LogicalPlan plan) {
return resolveAggregate(aggregate, childrenOutput);
}
+ if (plan instanceof Completion c) {
+ return resolveCompletion(c, childrenOutput);
+ }
+
if (plan instanceof Drop d) {
return resolveDrop(d, childrenOutput);
}
@@ -586,6 +591,21 @@ private Aggregate resolveAggregate(Aggregate aggregate, List children
return aggregate;
}
+ private LogicalPlan resolveCompletion(Completion p, List childrenOutput) {
+ Attribute targetField = p.targetField();
+ Expression prompt = p.prompt();
+
+ if (targetField instanceof UnresolvedAttribute ua) {
+ targetField = new ReferenceAttribute(ua.source(), ua.name(), TEXT);
+ }
+
+ if (prompt.resolved() == false) {
+ prompt = prompt.transformUp(UnresolvedAttribute.class, ua -> maybeResolveAttribute(ua, childrenOutput));
+ }
+
+ return new Completion(p.source(), p.child(), p.inferenceId(), prompt, targetField);
+ }
+
private LogicalPlan resolveMvExpand(MvExpand p, List childrenOutput) {
if (p.target() instanceof UnresolvedAttribute ua) {
Attribute resolved = maybeResolveAttribute(ua, childrenOutput);
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
index 0ebd1c7c670ac..ea8918838c70d 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
@@ -11,12 +11,15 @@
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.inference.TaskType;
+import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
+import org.elasticsearch.xpack.esql.common.Failures;
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.NameId;
import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
import org.elasticsearch.xpack.esql.plan.GeneratingPlan;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
@@ -26,9 +29,15 @@
import java.util.List;
import java.util.Objects;
+import static org.elasticsearch.xpack.esql.common.Failure.fail;
+import static org.elasticsearch.xpack.esql.core.type.DataType.TEXT;
import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
-public class Completion extends InferencePlan implements GeneratingPlan, SortAgnostic {
+public class Completion extends InferencePlan
+ implements
+ GeneratingPlan,
+ SortAgnostic,
+ PostAnalysisVerificationAware {
public static final String DEFAULT_OUTPUT_FIELD_NAME = "completion";
@@ -130,6 +139,13 @@ public boolean expressionsResolved() {
return super.expressionsResolved() && prompt.resolved();
}
+ @Override
+ public void postAnalysisVerification(Failures failures) {
+ if (prompt.resolved() && DataType.isString(prompt.dataType()) == false) {
+ failures.add(fail(prompt, "prompt must be of type [{}] but is [{}]", TEXT.typeName(), prompt.dataType().typeName()));
+ }
+ }
+
@Override
protected NodeInfo extends LogicalPlan> info() {
return NodeInfo.create(this, Completion::new, child(), inferenceId(), prompt, targetField);
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 c9dd336d05ba6..f3ea8ce4dec58 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
@@ -48,6 +48,7 @@
import org.elasticsearch.xpack.esql.expression.function.fulltext.QueryString;
import org.elasticsearch.xpack.esql.expression.function.grouping.Bucket;
import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToInteger;
+import org.elasticsearch.xpack.esql.expression.function.scalar.string.Concat;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.Substring;
import org.elasticsearch.xpack.esql.expression.predicate.operator.arithmetic.Add;
import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.Equals;
@@ -67,6 +68,7 @@
import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
import org.elasticsearch.xpack.esql.plan.logical.Row;
import org.elasticsearch.xpack.esql.plan.logical.UnresolvedRelation;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.inference.Rerank;
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
import org.elasticsearch.xpack.esql.plugin.EsqlPlugin;
@@ -89,9 +91,11 @@
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.getAttributeByName;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.paramAsConstant;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.paramAsIdentifier;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.paramAsPattern;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.referenceAttribute;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning;
import static org.elasticsearch.xpack.esql.analysis.Analyzer.NO_FIELDS;
import static org.elasticsearch.xpack.esql.analysis.AnalyzerTestUtils.analyze;
@@ -3050,7 +3054,7 @@ public void testResolveRerankInferenceId() {
{
LogicalPlan plan = analyze(
- " FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `reranking-inference-id`",
+ "FROM books METADATA _score | RERANK \"italian food recipe\" ON title WITH `reranking-inference-id`",
"mapping-books.json"
);
Rerank rerank = as(as(plan, Limit.class).child(), Rerank.class);
@@ -3120,16 +3124,13 @@ public void testResolveRerankFields() {
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());
+ Attribute titleAttribute = getAttributeByName(relation.output(), "title");
+ assertThat(getAttributeByName(relation.output(), "title"), 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))));
- assertThat(
- rerank.scoreAttribute(),
- equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get())
- );
+ assertThat(rerank.scoreAttribute(), equalTo(getAttributeByName(relation.output(), MetadataAttribute.SCORE)));
}
{
@@ -3149,15 +3150,11 @@ public void testResolveRerankFields() {
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();
+ Attribute titleAttribute = getAttributeByName(relation.output(), "title");
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();
+ Attribute descriptionAttribute = getAttributeByName(relation.output(), "description");
assertThat(descriptionAttribute, notNullValue());
Alias descriptionAlias = rerank.rerankFields().get(1);
assertThat(descriptionAlias.name(), equalTo("description"));
@@ -3166,13 +3163,11 @@ public void testResolveRerankFields() {
equalTo(List.of(descriptionAttribute, literal(0), literal(100)))
);
- Attribute yearAttribute = relation.output().stream().filter(attribute -> attribute.name().equals("year")).findFirst().get();
+ Attribute yearAttribute = getAttributeByName(relation.output(), "year");
assertThat(yearAttribute, notNullValue());
assertThat(rerank.rerankFields().get(2), equalTo(alias("yearRenamed", yearAttribute)));
- assertThat(
- rerank.scoreAttribute(),
- equalTo(relation.output().stream().filter(attr -> attr.name().equals(MetadataAttribute.SCORE)).findFirst().get())
- );
+
+ assertThat(rerank.scoreAttribute(), equalTo(getAttributeByName(relation.output(), MetadataAttribute.SCORE)));
}
{
@@ -3204,11 +3199,7 @@ public void testResolveRerankScoreField() {
Filter filter = as(rerank.child(), Filter.class);
EsRelation relation = as(filter.child(), EsRelation.class);
- Attribute metadataScoreAttribute = relation.output()
- .stream()
- .filter(attr -> attr.name().equals(MetadataAttribute.SCORE))
- .findFirst()
- .get();
+ Attribute metadataScoreAttribute = getAttributeByName(relation.output(), MetadataAttribute.SCORE);
assertThat(rerank.scoreAttribute(), equalTo(metadataScoreAttribute));
assertThat(rerank.output(), hasItem(metadataScoreAttribute));
}
@@ -3232,6 +3223,116 @@ public void testResolveRerankScoreField() {
}
}
+ public void testResolveCompletionInferenceId() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `completion-inference-id`
+ """, "mapping-books.json");
+ Completion completion = as(as(plan, Limit.class).child(), Completion.class);
+ assertThat(completion.inferenceId(), equalTo(string("completion-inference-id")));
+ }
+
+ public void testResolveCompletionInferenceIdInvalidTaskType() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ assertError(
+ """
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `reranking-inference-id`
+ """,
+ "mapping-books.json",
+ new QueryParams(),
+ "cannot use inference endpoint [reranking-inference-id] with task type [rerank] within a Completion command."
+ + " Only inference endpoints with the task type [completion] are supported"
+ );
+ }
+
+ public void testResolveCompletionInferenceMissingInferenceId() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ assertError("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `unknown-inference-id`
+ """, "mapping-books.json", new QueryParams(), "unresolved inference [unknown-inference-id]");
+ }
+
+ public void testResolveCompletionInferenceIdResolutionError() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ assertError("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `error-inference-id`
+ """, "mapping-books.json", new QueryParams(), "error with inference resolution");
+ }
+
+ public void testResolveCompletionTargetField() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `completion-inference-id` AS translation
+ """, "mapping-books.json");
+
+ Completion completion = as(as(plan, Limit.class).child(), Completion.class);
+ assertThat(completion.targetField(), equalTo(referenceAttribute("translation", DataType.TEXT)));
+ }
+
+ public void testResolveCompletionDefaultTargetField() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `completion-inference-id`
+ """, "mapping-books.json");
+
+ Completion completion = as(as(plan, Limit.class).child(), Completion.class);
+ assertThat(completion.targetField(), equalTo(referenceAttribute("completion", DataType.TEXT)));
+ }
+
+ public void testResolveCompletionPrompt() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `completion-inference-id`
+ """, "mapping-books.json");
+
+ Completion completion = as(as(plan, Limit.class).child(), Completion.class);
+ EsRelation esRelation = as(completion.child(), EsRelation.class);
+
+ assertThat(
+ as(completion.prompt(), Concat.class).children(),
+ equalTo(List.of(string("Translate the following text in French\n"), getAttributeByName(esRelation.output(), "description")))
+ );
+ }
+
+ public void testResolveCompletionPromptInvalidType() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ assertError("""
+ FROM books METADATA _score
+ | COMPLETION LENGTH(description) WITH `completion-inference-id`
+ """, "mapping-books.json", new QueryParams(), "prompt must be of type [text] but is [integer]");
+ }
+
+ public void testResolveCompletionOutputField() {
+ assumeTrue("Requires COMPLETION command", EsqlCapabilities.Cap.COMPLETION.isEnabled());
+
+ LogicalPlan plan = analyze("""
+ FROM books METADATA _score
+ | COMPLETION CONCAT("Translate the following text in French\\n", description) WITH `completion-inference-id` AS description
+ """, "mapping-books.json");
+
+ Completion completion = as(as(plan, Limit.class).child(), Completion.class);
+ assertThat(completion.targetField(), equalTo(referenceAttribute("description", DataType.TEXT)));
+
+ EsRelation esRelation = as(completion.child(), EsRelation.class);
+ assertThat(getAttributeByName(completion.output(), "description"), equalTo(completion.targetField()));
+ assertThat(getAttributeByName(esRelation.output(), "description"), not(equalTo(completion.targetField())));
+ }
+
@Override
protected IndexAnalyzers createDefaultIndexAnalyzers() {
return super.createDefaultIndexAnalyzers();
From d98b76a5e1142624ee8d997e5789f020216c33ed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Wed, 16 Apr 2025 14:48:02 +0200
Subject: [PATCH 07/34] [ES|QL] COMPLETION command logical plan optimizer
(#126763)
---
.../esql/optimizer/LogicalPlanOptimizer.java | 2 +
.../logical/PushDownAndCombineFilters.java | 5 +
.../logical/PushDownAndCombineLimits.java | 7 +-
.../rules/logical/PushDownCompletion.java | 18 ++
.../optimizer/LogicalPlanOptimizerTests.java | 15 ++
.../PushDownAndCombineFiltersTests.java | 54 ++++++
.../PushDownAndCombineLimitsTests.java | 159 ++++++++++++++++++
7 files changed, 259 insertions(+), 1 deletion(-)
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
index d870067ddd371..e287e5e375f2d 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/LogicalPlanOptimizer.java
@@ -36,6 +36,7 @@
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineFilters;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineLimits;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineOrderBy;
+import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownCompletion;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownRegexExtract;
@@ -184,6 +185,7 @@ protected static Batch operators() {
new PruneLiteralsInOrderBy(),
new PushDownAndCombineLimits(),
new PushDownAndCombineFilters(),
+ new PushDownCompletion(),
new PushDownEval(),
new PushDownRegexExtract(),
new PushDownEnrich(),
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java
index f1f139bc2b0f2..7577b106c4845 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFilters.java
@@ -24,6 +24,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.RegexExtract;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.join.Join;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes;
@@ -70,6 +71,10 @@ protected LogicalPlan rule(Filter filter) {
// Push down filters that do not rely on attributes created by RegexExtract
var attributes = AttributeSet.of(Expressions.asAttributes(re.extractedFields()));
plan = maybePushDownPastUnary(filter, re, attributes::contains, NO_OP);
+ } else if (child instanceof Completion completion) {
+ // Push down filters that do not rely on attributes created by Cpmpletion
+ var attributes = AttributeSet.of(completion.generatedAttributes());
+ plan = maybePushDownPastUnary(filter, completion, attributes::contains, NO_OP);
} else if (child instanceof Enrich enrich) {
// Push down filters that do not rely on attributes created by Enrich
var attributes = AttributeSet.of(Expressions.asAttributes(enrich.enrichFields()));
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java
index 397c33bd4786d..24d53f668adac 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimits.java
@@ -17,6 +17,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Project;
import org.elasticsearch.xpack.esql.plan.logical.RegexExtract;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.join.Join;
import org.elasticsearch.xpack.esql.plan.logical.join.JoinTypes;
@@ -38,7 +39,11 @@ public LogicalPlan rule(Limit limit, LogicalOptimizerContext ctx) {
// We want to preserve the duplicated() value of the smaller limit, so we'll use replaceChild.
return parentLimitValue < childLimitValue ? limit.replaceChild(childLimit.child()) : childLimit;
} else if (limit.child() instanceof UnaryPlan unary) {
- if (unary instanceof Eval || unary instanceof Project || unary instanceof RegexExtract || unary instanceof Enrich) {
+ if (unary instanceof Eval
+ || unary instanceof Project
+ || unary instanceof RegexExtract
+ || unary instanceof Enrich
+ || unary instanceof Completion) {
return unary.replaceChild(limit.replaceChild(unary.child()));
} else if (unary instanceof MvExpand) {
// MV_EXPAND can increase the number of rows, so we cannot just push the limit down
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java
new file mode 100644
index 0000000000000..d74e90fb0569f
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownCompletion.java
@@ -0,0 +1,18 @@
+/*
+ * 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.optimizer.rules.logical;
+
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
+
+public final class PushDownCompletion extends OptimizerRules.OptimizerRule {
+ @Override
+ protected LogicalPlan rule(Completion p) {
+ return PushDownUtils.pushGeneratingPlanPastProjectAndOrderBy(p);
+ }
+}
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 6d3d2610c4bdc..fda88ff8439e3 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
@@ -98,6 +98,7 @@
import org.elasticsearch.xpack.esql.optimizer.rules.logical.OptimizerRules;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PruneRedundantOrderBy;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownAndCombineLimits;
+import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownCompletion;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEnrich;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownEval;
import org.elasticsearch.xpack.esql.optimizer.rules.logical.PushDownRegexExtract;
@@ -120,6 +121,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Row;
import org.elasticsearch.xpack.esql.plan.logical.TopN;
import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
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;
@@ -157,6 +159,7 @@
import static org.elasticsearch.xpack.esql.EsqlTestUtils.getFieldAttribute;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.loadMapping;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.localSource;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.randomLiteral;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.referenceAttribute;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.withDefaultLimitWarning;
@@ -171,6 +174,7 @@
import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER;
import static org.elasticsearch.xpack.esql.core.type.DataType.KEYWORD;
import static org.elasticsearch.xpack.esql.core.type.DataType.LONG;
+import static org.elasticsearch.xpack.esql.core.type.DataType.TEXT;
import static org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.EsqlBinaryComparison.BinaryComparisonOperation.EQ;
import static org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.EsqlBinaryComparison.BinaryComparisonOperation.GT;
import static org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.EsqlBinaryComparison.BinaryComparisonOperation.GTE;
@@ -5566,6 +5570,17 @@ record PushdownShadowingGeneratingPlanTestCase(
)
),
new PushDownEnrich()
+ ),
+ // | COMPLETION CONCAT(some text, x) WITH inferenceID AS y
+ new PushdownShadowingGeneratingPlanTestCase(
+ (plan, attr) -> new Completion(
+ EMPTY,
+ plan,
+ randomLiteral(TEXT),
+ new Concat(EMPTY, randomLiteral(TEXT), List.of(attr)),
+ new ReferenceAttribute(EMPTY, "y", KEYWORD)
+ ),
+ new PushDownCompletion()
) };
/**
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
index 3e0ae4f97e405..56006268b8b62 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineFiltersTests.java
@@ -8,12 +8,15 @@
package org.elasticsearch.xpack.esql.optimizer.rules.logical;
import org.elasticsearch.index.IndexMode;
+import org.elasticsearch.index.query.QueryBuilder;
import org.elasticsearch.test.ESTestCase;
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.FieldAttribute;
+import org.elasticsearch.xpack.esql.core.type.DataType;
import org.elasticsearch.xpack.esql.expression.function.aggregate.Count;
+import org.elasticsearch.xpack.esql.expression.function.fulltext.Match;
import org.elasticsearch.xpack.esql.expression.function.scalar.math.Pow;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.RLike;
import org.elasticsearch.xpack.esql.expression.function.scalar.string.WildcardLike;
@@ -28,6 +31,7 @@
import org.elasticsearch.xpack.esql.plan.logical.Filter;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
import org.elasticsearch.xpack.esql.plan.logical.Project;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
import org.elasticsearch.xpack.esql.plan.logical.local.EsqlProject;
import java.util.ArrayList;
@@ -45,9 +49,12 @@
import static org.elasticsearch.xpack.esql.EsqlTestUtils.greaterThanOf;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.greaterThanOrEqualOf;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.lessThanOf;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.randomLiteral;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.referenceAttribute;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.rlike;
import static org.elasticsearch.xpack.esql.EsqlTestUtils.wildcardLike;
import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY;
+import static org.mockito.Mockito.mock;
public class PushDownAndCombineFiltersTests extends ESTestCase {
@@ -245,6 +252,53 @@ public void testSelectivelyPushDownFilterPastFunctionAgg() {
assertEquals(expected, new PushDownAndCombineFilters().apply(fb));
}
+ // from ... | where a > 1 | COMPLETION "some prompt" WITH reranker AS completion | where b < 2 and match(completion, some text)
+ // => ... | where a > 1 AND b < 2| COMPLETION "some prompt" WITH reranker AS completion | match(completion, some text)
+ public void testPushDownFilterPastCompletion() {
+ FieldAttribute a = getFieldAttribute("a");
+ FieldAttribute b = getFieldAttribute("b");
+ EsRelation relation = relation(List.of(a, b));
+
+ GreaterThan conditionA = greaterThanOf(getFieldAttribute("a"), ONE);
+ Filter filterA = new Filter(EMPTY, relation, conditionA);
+
+ Completion completion = completion(filterA);
+
+ LessThan conditionB = lessThanOf(getFieldAttribute("b"), TWO);
+ Match conditionCompletion = new Match(
+ EMPTY,
+ completion.targetField(),
+ randomLiteral(DataType.TEXT),
+ mock(Expression.class),
+ mock(QueryBuilder.class)
+ );
+ Filter filterB = new Filter(EMPTY, completion, new And(EMPTY, conditionB, conditionCompletion));
+
+ LogicalPlan expectedOptimizedPlan = new Filter(
+ EMPTY,
+ new Completion(
+ EMPTY,
+ new Filter(EMPTY, relation, new And(EMPTY, conditionA, conditionB)),
+ completion.inferenceId(),
+ completion.prompt(),
+ completion.targetField()
+ ),
+ conditionCompletion
+ );
+
+ assertEquals(expectedOptimizedPlan, new PushDownAndCombineFilters().apply(filterB));
+ }
+
+ private static Completion completion(LogicalPlan child) {
+ return new Completion(
+ EMPTY,
+ child,
+ randomLiteral(DataType.TEXT),
+ randomLiteral(DataType.TEXT),
+ referenceAttribute(randomIdentifier(), DataType.TEXT)
+ );
+ }
+
private static EsRelation relation() {
return relation(List.of());
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java
new file mode 100644
index 0000000000000..f5d88618b352d
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/rules/logical/PushDownAndCombineLimitsTests.java
@@ -0,0 +1,159 @@
+/*
+ * 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.optimizer.rules.logical;
+
+import org.elasticsearch.test.ESTestCase;
+import org.elasticsearch.xpack.esql.core.expression.Alias;
+import org.elasticsearch.xpack.esql.core.expression.Attribute;
+import org.elasticsearch.xpack.esql.core.expression.FieldAttribute;
+import org.elasticsearch.xpack.esql.core.expression.Literal;
+import org.elasticsearch.xpack.esql.expression.Order;
+import org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToInteger;
+import org.elasticsearch.xpack.esql.expression.predicate.operator.comparison.Equals;
+import org.elasticsearch.xpack.esql.plan.logical.EsRelation;
+import org.elasticsearch.xpack.esql.plan.logical.Eval;
+import org.elasticsearch.xpack.esql.plan.logical.Filter;
+import org.elasticsearch.xpack.esql.plan.logical.Limit;
+import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
+import org.elasticsearch.xpack.esql.plan.logical.OrderBy;
+import org.elasticsearch.xpack.esql.plan.logical.UnaryPlan;
+import org.elasticsearch.xpack.esql.plan.logical.inference.Completion;
+
+import java.util.List;
+import java.util.function.BiConsumer;
+import java.util.function.BiFunction;
+
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.as;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.getFieldAttribute;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.randomLiteral;
+import static org.elasticsearch.xpack.esql.EsqlTestUtils.unboundLogicalOptimizerContext;
+import static org.elasticsearch.xpack.esql.core.tree.Source.EMPTY;
+import static org.elasticsearch.xpack.esql.core.type.DataType.INTEGER;
+import static org.elasticsearch.xpack.esql.core.type.DataType.TEXT;
+import static org.elasticsearch.xpack.esql.optimizer.LocalLogicalPlanOptimizerTests.relation;
+
+public class PushDownAndCombineLimitsTests extends ESTestCase {
+
+ private static class PushDownLimitTestCase {
+ private final Class clazz;
+ private final BiFunction planBuilder;
+ private final BiConsumer planChecker;
+
+ PushDownLimitTestCase(
+ Class clazz,
+ BiFunction planBuilder,
+ BiConsumer planChecker
+ ) {
+ this.clazz = clazz;
+ this.planBuilder = planBuilder;
+ this.planChecker = planChecker;
+ }
+
+ public PlanType buildPlan(LogicalPlan child, Attribute attr) {
+ return planBuilder.apply(child, attr);
+ }
+
+ public void checkOptimizedPlan(LogicalPlan basePlan, LogicalPlan optimizedPlan) {
+ planChecker.accept(as(basePlan, clazz), as(optimizedPlan, clazz));
+ }
+ }
+
+ private static final List> PUSHABLE_LIMIT_TEST_CASES = List.of(
+ new PushDownLimitTestCase<>(
+ Eval.class,
+ (plan, attr) -> new Eval(EMPTY, plan, List.of(new Alias(EMPTY, "y", new ToInteger(EMPTY, attr)))),
+ (basePlan, optimizedPlan) -> {
+ assertEquals(basePlan.source(), optimizedPlan.source());
+ assertEquals(basePlan.fields(), optimizedPlan.fields());
+ }
+ ),
+ new PushDownLimitTestCase<>(
+ Completion.class,
+ (plan, attr) -> new Completion(EMPTY, plan, randomLiteral(TEXT), randomLiteral(TEXT), attr),
+ (basePlan, optimizedPlan) -> {
+ assertEquals(basePlan.source(), optimizedPlan.source());
+ assertEquals(basePlan.inferenceId(), optimizedPlan.inferenceId());
+ assertEquals(basePlan.prompt(), optimizedPlan.prompt());
+ assertEquals(basePlan.targetField(), optimizedPlan.targetField());
+ }
+ )
+ );
+
+ private static final List> NON_PUSHABLE_LIMIT_TEST_CASES = List.of(
+ new PushDownLimitTestCase<>(
+ Filter.class,
+ (plan, attr) -> new Filter(EMPTY, plan, new Equals(EMPTY, attr, new Literal(EMPTY, "right", TEXT))),
+ (basePlan, optimizedPlan) -> {
+ assertEquals(basePlan.source(), optimizedPlan.source());
+ assertEquals(basePlan.condition(), optimizedPlan.condition());
+ }
+ ),
+ new PushDownLimitTestCase<>(
+ OrderBy.class,
+ (plan, attr) -> new OrderBy(EMPTY, plan, List.of(new Order(EMPTY, attr, Order.OrderDirection.DESC, null))),
+ (basePlan, optimizedPlan) -> {
+ assertEquals(basePlan.source(), optimizedPlan.source());
+ assertEquals(basePlan.order(), optimizedPlan.order());
+ }
+ )
+ );
+
+ public void testPushableLimit() {
+ FieldAttribute a = getFieldAttribute("a");
+ FieldAttribute b = getFieldAttribute("b");
+ EsRelation relation = relation().withAttributes(List.of(a, b));
+
+ for (PushDownLimitTestCase extends UnaryPlan> pushableLimitTestCase : PUSHABLE_LIMIT_TEST_CASES) {
+ int precedingLimitValue = randomIntBetween(1, 10_000);
+ Limit precedingLimit = new Limit(EMPTY, new Literal(EMPTY, precedingLimitValue, INTEGER), relation);
+
+ LogicalPlan pushableLimitTestPlan = pushableLimitTestCase.buildPlan(precedingLimit, a);
+
+ int pushableLimitValue = randomIntBetween(1, 10_000);
+ Limit pushableLimit = new Limit(EMPTY, new Literal(EMPTY, pushableLimitValue, INTEGER), pushableLimitTestPlan);
+
+ LogicalPlan optimizedPlan = optimizePlan(pushableLimit);
+
+ pushableLimitTestCase.checkOptimizedPlan(pushableLimitTestPlan, optimizedPlan);
+
+ assertEquals(
+ as(optimizedPlan, UnaryPlan.class).child(),
+ new Limit(EMPTY, new Literal(EMPTY, Math.min(pushableLimitValue, precedingLimitValue), INTEGER), relation)
+ );
+ }
+ }
+
+ public void testNonPushableLimit() {
+ FieldAttribute a = getFieldAttribute("a");
+ FieldAttribute b = getFieldAttribute("b");
+ EsRelation relation = relation().withAttributes(List.of(a, b));
+
+ for (PushDownLimitTestCase extends UnaryPlan> nonPushableLimitTestCase : NON_PUSHABLE_LIMIT_TEST_CASES) {
+ int precedingLimitValue = randomIntBetween(1, 10_000);
+ Limit precedingLimit = new Limit(EMPTY, new Literal(EMPTY, precedingLimitValue, INTEGER), relation);
+ UnaryPlan nonPushableLimitTestPlan = nonPushableLimitTestCase.buildPlan(precedingLimit, a);
+ int nonPushableLimitValue = randomIntBetween(1, 10_000);
+ Limit nonPushableLimit = new Limit(EMPTY, new Literal(EMPTY, nonPushableLimitValue, INTEGER), nonPushableLimitTestPlan);
+ Limit optimizedPlan = as(optimizePlan(nonPushableLimit), Limit.class);
+ nonPushableLimitTestCase.checkOptimizedPlan(nonPushableLimitTestPlan, optimizedPlan.child());
+ assertEquals(
+ optimizedPlan,
+ new Limit(
+ EMPTY,
+ new Literal(EMPTY, Math.min(nonPushableLimitValue, precedingLimitValue), INTEGER),
+ nonPushableLimitTestPlan
+ )
+ );
+ assertEquals(as(optimizedPlan.child(), UnaryPlan.class).child(), nonPushableLimitTestPlan.child());
+ }
+ }
+
+ private LogicalPlan optimizePlan(LogicalPlan plan) {
+ return new PushDownAndCombineLimits().apply(plan, unboundLogicalOptimizerContext());
+ }
+}
From 350ea7bf4f2af3c6830162d79f25ba9ed327016b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Tue, 15 Apr 2025 11:43:23 +0200
Subject: [PATCH 08/34] [ES|QL] COMPLETION command physical plan (#126766)
---
.../xpack/esql/plan/PlanWritables.java | 2 +
.../plan/logical/inference/InferencePlan.java | 2 +-
.../physical/inference/CompletionExec.java | 114 ++++++++++++++++++
.../physical/inference/InferenceExec.java | 2 +-
.../esql/planner/mapper/MapperUtils.java | 6 +
.../CompletionSerializationTests.java | 13 +-
.../inference/RerankSerializationTests.java | 5 -
.../CompletionExecSerializationTests.java | 54 +++++++++
.../RerankExecSerializationTests.java | 5 -
9 files changed, 181 insertions(+), 22 deletions(-)
create mode 100644 x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExec.java
create mode 100644 x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExecSerializationTests.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 1354fc38473fc..0662e0870eebc 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
@@ -49,6 +49,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.CompletionExec;
import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec;
import java.util.ArrayList;
@@ -91,6 +92,7 @@ public static List logical() {
public static List physical() {
return List.of(
AggregateExec.ENTRY,
+ CompletionExec.ENTRY,
DissectExec.ENTRY,
EnrichExec.ENTRY,
EsQueryExec.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
index 85f60b4038a96..3d199fba495c6 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
@@ -29,7 +29,7 @@ protected InferencePlan(Source source, LogicalPlan child, Expression inferenceId
@Override
public void writeTo(StreamOutput out) throws IOException {
- Source.EMPTY.writeTo(out);
+ source().writeTo(out);
out.writeNamedWriteable(child());
out.writeNamedWriteable(inferenceId());
}
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExec.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExec.java
new file mode 100644
index 0000000000000..80887ad08fe69
--- /dev/null
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExec.java
@@ -0,0 +1,114 @@
+/*
+ * 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.Attribute;
+import org.elasticsearch.xpack.esql.core.expression.AttributeSet;
+import org.elasticsearch.xpack.esql.core.expression.Expression;
+import org.elasticsearch.xpack.esql.core.tree.NodeInfo;
+import org.elasticsearch.xpack.esql.core.tree.Source;
+import org.elasticsearch.xpack.esql.io.stream.PlanStreamInput;
+import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
+import org.elasticsearch.xpack.esql.plan.physical.UnaryExec;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Objects;
+
+import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
+
+public class CompletionExec extends InferenceExec {
+
+ public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(
+ PhysicalPlan.class,
+ "CompletionExec",
+ CompletionExec::new
+ );
+
+ private final Expression prompt;
+ private final Attribute targetField;
+ private List lazyOutput;
+
+ public CompletionExec(Source source, PhysicalPlan child, Expression inferenceId, Expression prompt, Attribute targetField) {
+ super(source, child, inferenceId);
+ this.prompt = prompt;
+ this.targetField = targetField;
+ }
+
+ public CompletionExec(StreamInput in) throws IOException {
+ this(
+ Source.readFrom((PlanStreamInput) in),
+ in.readNamedWriteable(PhysicalPlan.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Expression.class),
+ in.readNamedWriteable(Attribute.class)
+ );
+ }
+
+ @Override
+ public String getWriteableName() {
+ return ENTRY.name;
+ }
+
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ super.writeTo(out);
+ out.writeNamedWriteable(prompt);
+ out.writeNamedWriteable(targetField);
+ }
+
+ public Expression prompt() {
+ return prompt;
+ }
+
+ public Attribute targetField() {
+ return targetField;
+ }
+
+ @Override
+ protected NodeInfo extends PhysicalPlan> info() {
+ return NodeInfo.create(this, CompletionExec::new, child(), inferenceId(), prompt, targetField);
+ }
+
+ @Override
+ public UnaryExec replaceChild(PhysicalPlan newChild) {
+ return new CompletionExec(source(), newChild, inferenceId(), prompt, targetField);
+ }
+
+ @Override
+ public List output() {
+ if (lazyOutput == null) {
+ lazyOutput = mergeOutputAttributes(List.of(targetField), child().output());
+ }
+
+ return lazyOutput;
+ }
+
+ @Override
+ protected AttributeSet computeReferences() {
+ return prompt.references();
+ }
+
+ @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;
+ CompletionExec completion = (CompletionExec) o;
+
+ return Objects.equals(prompt, completion.prompt) && Objects.equals(targetField, completion.targetField);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(super.hashCode(), prompt, targetField);
+ }
+}
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
index 7954690a0fdc0..d60a5ecccc384 100644
--- 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
@@ -30,7 +30,7 @@ public Expression inferenceId() {
@Override
public void writeTo(StreamOutput out) throws IOException {
- Source.EMPTY.writeTo(out);
+ source().writeTo(out);
out.writeNamedWriteable(child());
out.writeNamedWriteable(inferenceId());
}
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 dee5fb764bec4..5c7c66e9f1236 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.Completion;
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;
@@ -39,6 +40,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.CompletionExec;
import org.elasticsearch.xpack.esql.plan.physical.inference.RerankExec;
import org.elasticsearch.xpack.esql.planner.AbstractPhysicalOperationProviders;
@@ -95,6 +97,10 @@ static PhysicalPlan mapUnary(UnaryPlan p, PhysicalPlan child) {
);
}
+ if (p instanceof Completion completion) {
+ return new CompletionExec(completion.source(), child, completion.inferenceId(), completion.prompt(), completion.targetField());
+ }
+
if (p instanceof Enrich enrich) {
return new EnrichExec(
enrich.source(),
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
index d5f7c868f4b47..0b6c1f4eb1b2c 100644
--- a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/logical/inference/CompletionSerializationTests.java
@@ -12,7 +12,7 @@
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.function.FieldAttributeTests;
+import org.elasticsearch.xpack.esql.expression.function.ReferenceAttributeTests;
import org.elasticsearch.xpack.esql.plan.logical.AbstractLogicalPlanSerializationTests;
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
@@ -22,9 +22,7 @@ public class CompletionSerializationTests extends AbstractLogicalPlanSerializati
@Override
protected Completion createTestInstance() {
- Source source = randomSource();
- LogicalPlan child = randomChild(0);
- return new Completion(source, child, randomInferenceId(), randomPrompt(), randomAttribute());
+ return new Completion(randomSource(), randomChild(0), randomInferenceId(), randomPrompt(), randomAttribute());
}
@Override
@@ -43,11 +41,6 @@ protected Completion mutateInstance(Completion instance) throws IOException {
return new Completion(instance.source(), child, inferenceId, prompt, targetField);
}
- @Override
- protected boolean alwaysEmptySource() {
- return true;
- }
-
private Literal randomInferenceId() {
return new Literal(Source.EMPTY, randomIdentifier(), DataType.KEYWORD);
}
@@ -57,6 +50,6 @@ private Expression randomPrompt() {
}
private Attribute randomAttribute() {
- return FieldAttributeTests.createFieldAttribute(3, randomBoolean());
+ return ReferenceAttributeTests.randomReferenceAttribute(randomBoolean());
}
}
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 1bb8bab502f92..22f60c78ec842 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
@@ -47,11 +47,6 @@ protected Rerank mutateInstance(Rerank instance) throws IOException {
return new Rerank(instance.source(), child, inferenceId, queryText, fields, instance.scoreAttribute());
}
- @Override
- protected boolean alwaysEmptySource() {
- return true;
- }
-
private List randomFields() {
return randomList(0, 10, AliasTests::randomAlias);
}
diff --git a/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExecSerializationTests.java b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExecSerializationTests.java
new file mode 100644
index 0000000000000..92d2a4b445c6a
--- /dev/null
+++ b/x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/plan/physical/inference/CompletionExecSerializationTests.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.physical.inference;
+
+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.tree.Source;
+import org.elasticsearch.xpack.esql.core.type.DataType;
+import org.elasticsearch.xpack.esql.expression.function.ReferenceAttributeTests;
+import org.elasticsearch.xpack.esql.plan.physical.AbstractPhysicalPlanSerializationTests;
+import org.elasticsearch.xpack.esql.plan.physical.PhysicalPlan;
+
+import java.io.IOException;
+
+public class CompletionExecSerializationTests extends AbstractPhysicalPlanSerializationTests {
+ @Override
+ protected CompletionExec createTestInstance() {
+ return new CompletionExec(randomSource(), randomChild(0), randomInferenceId(), randomPrompt(), randomAttribute());
+ }
+
+ @Override
+ protected CompletionExec mutateInstance(CompletionExec instance) throws IOException {
+ PhysicalPlan child = instance.child();
+ Expression inferenceId = instance.inferenceId();
+ Expression prompt = instance.prompt();
+ Attribute targetField = instance.targetField();
+
+ switch (between(0, 3)) {
+ case 0 -> child = randomValueOtherThan(child, () -> randomChild(0));
+ case 1 -> inferenceId = randomValueOtherThan(inferenceId, this::randomInferenceId);
+ case 2 -> prompt = randomValueOtherThan(prompt, this::randomPrompt);
+ case 3 -> targetField = randomValueOtherThan(targetField, this::randomAttribute);
+ }
+ return new CompletionExec(instance.source(), child, inferenceId, prompt, targetField);
+ }
+
+ private Literal randomInferenceId() {
+ return new Literal(Source.EMPTY, randomIdentifier(), DataType.KEYWORD);
+ }
+
+ private Expression randomPrompt() {
+ return randomBoolean() ? new Literal(Source.EMPTY, randomIdentifier(), DataType.KEYWORD) : randomAttribute();
+ }
+
+ private Attribute randomAttribute() {
+ return ReferenceAttributeTests.randomReferenceAttribute(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 ecdbb1a1b4fd0..f5ba1718c7ea0 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
@@ -47,11 +47,6 @@ protected RerankExec mutateInstance(RerankExec instance) throws IOException {
return new RerankExec(instance.source(), child, inferenceId, queryText, fields, scoreAttribute());
}
- @Override
- protected boolean alwaysEmptySource() {
- return true;
- }
-
private List randomFields() {
return randomList(0, 10, AliasTests::randomAlias);
}
From bfb3718b421bca302bc0580149221a463c4247df Mon Sep 17 00:00:00 2001
From: Svilen Mihaylov
Date: Thu, 22 May 2025 08:37:18 -0400
Subject: [PATCH 09/34] ESQL - Enable telemetry for COMPLETION command
(#127731)
---
docs/changelog/127731.yaml | 5 +++++
.../xpack/esql/plan/logical/inference/Completion.java | 2 ++
2 files changed, 7 insertions(+)
create mode 100644 docs/changelog/127731.yaml
diff --git a/docs/changelog/127731.yaml b/docs/changelog/127731.yaml
new file mode 100644
index 0000000000000..2641c96e2e05b
--- /dev/null
+++ b/docs/changelog/127731.yaml
@@ -0,0 +1,5 @@
+pr: 127731
+summary: ESQL - Enable telemetry for COMPLETION command
+area: Search
+type: feature
+issues: []
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
index ea8918838c70d..43e8e871cd021 100644
--- a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
+++ b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/plan/logical/inference/Completion.java
@@ -12,6 +12,7 @@
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.inference.TaskType;
import org.elasticsearch.xpack.esql.capabilities.PostAnalysisVerificationAware;
+import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
import org.elasticsearch.xpack.esql.common.Failures;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
import org.elasticsearch.xpack.esql.core.expression.AttributeSet;
@@ -37,6 +38,7 @@ public class Completion extends InferencePlan
implements
GeneratingPlan,
SortAgnostic,
+ TelemetryAware,
PostAnalysisVerificationAware {
public static final String DEFAULT_OUTPUT_FIELD_NAME = "completion";
From e8bea9ac131433cf236e0c0d462bd0342c464c23 Mon Sep 17 00:00:00 2001
From: Nhat Nguyen
Date: Thu, 22 May 2025 08:08:58 -0700
Subject: [PATCH 10/34] Prevent concurrent access to local breaker in rerank
(#128162)
When an async operator receives a response, we can't create new blocks
on the responding thread because multiple threads may adjust the local
breaker simultaneously, leading to a data race. To address this, we can
either use the global breaker or delay block creation in getOutput.
While using the global block factory is simpler, I prefer the second
option to use the local breaker when possible. Therefore, I opted to
keep the results in the queue and create new blocks in getOutput. Our
tests didn't catch this issue because: (1) only one block is created in
the test, and (2) there is no delay when simulating the inference
service.
Closes #127638
Closes #127051
---
.../indices/CrankyCircuitBreakerService.java | 6 +-
.../compute/data/LocalCircuitBreaker.java | 34 ++++
.../compute/operator/Driver.java | 3 +
.../compute/operator/DriverContext.java | 30 ++--
.../compute/test/OperatorTestCase.java | 37 ++---
.../compute/test/TestDriverFactory.java | 75 +++++++++
.../xpack/esql/inference/RerankOperator.java | 148 ++++++++++--------
.../esql/inference/RerankOperatorTests.java | 31 ++--
8 files changed, 256 insertions(+), 108 deletions(-)
create mode 100644 x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/TestDriverFactory.java
diff --git a/test/framework/src/main/java/org/elasticsearch/indices/CrankyCircuitBreakerService.java b/test/framework/src/main/java/org/elasticsearch/indices/CrankyCircuitBreakerService.java
index 52cd1a4ef652c..529af99e6dd4d 100644
--- a/test/framework/src/main/java/org/elasticsearch/indices/CrankyCircuitBreakerService.java
+++ b/test/framework/src/main/java/org/elasticsearch/indices/CrankyCircuitBreakerService.java
@@ -29,7 +29,7 @@ public class CrankyCircuitBreakerService extends CircuitBreakerService {
*/
public static final String ERROR_MESSAGE = "cranky breaker";
- private final CircuitBreaker breaker = new CircuitBreaker() {
+ public static final class CrankyCircuitBreaker implements CircuitBreaker {
private final AtomicLong used = new AtomicLong();
@Override
@@ -82,7 +82,9 @@ public Durability getDurability() {
public void setLimitAndOverhead(long limit, double overhead) {
}
- };
+ }
+
+ private final CrankyCircuitBreaker breaker = new CrankyCircuitBreaker();
@Override
public CircuitBreaker getBreaker(String name) {
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/LocalCircuitBreaker.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/LocalCircuitBreaker.java
index 2b11b06a74702..cf570415498bb 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/LocalCircuitBreaker.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/data/LocalCircuitBreaker.java
@@ -28,6 +28,7 @@ public final class LocalCircuitBreaker implements CircuitBreaker, Releasable {
private final long maxOverReservedBytes;
private long reservedBytes;
private final AtomicBoolean closed = new AtomicBoolean(false);
+ private volatile Thread activeThread;
public record SizeSettings(long overReservedBytes, long maxOverReservedBytes) {
public SizeSettings(Settings settings) {
@@ -57,6 +58,7 @@ public void circuitBreak(String fieldName, long bytesNeeded) {
@Override
public void addEstimateBytesAndMaybeBreak(long bytes, String label) throws CircuitBreakingException {
+ assert assertSingleThread();
if (bytes <= reservedBytes) {
reservedBytes -= bytes;
maybeReduceReservedBytes();
@@ -68,6 +70,7 @@ public void addEstimateBytesAndMaybeBreak(long bytes, String label) throws Circu
@Override
public void addWithoutBreaking(long bytes) {
+ assert assertSingleThread();
if (bytes <= reservedBytes) {
reservedBytes -= bytes;
maybeReduceReservedBytes();
@@ -130,6 +133,7 @@ public void setLimitAndOverhead(long limit, double overhead) {
@Override
public void close() {
+ assert assertSingleThread();
if (closed.compareAndSet(false, true)) {
breaker.addWithoutBreaking(-reservedBytes);
}
@@ -139,4 +143,34 @@ public void close() {
public String toString() {
return "LocalCircuitBreaker[" + reservedBytes + "/" + overReservedBytes + ":" + maxOverReservedBytes + "]";
}
+
+ private boolean assertSingleThread() {
+ Thread activeThread = this.activeThread;
+ Thread currentThread = Thread.currentThread();
+ assert activeThread == null || activeThread == currentThread
+ : "Local breaker must be accessed by a single thread at a time: expected ["
+ + activeThread
+ + "] != actual ["
+ + currentThread
+ + "]";
+ return true;
+ }
+
+ /**
+ * Marks the beginning of a run loop for assertion purposes.
+ * Sets the current thread as the only thread allowed to access this breaker.
+ */
+ public boolean assertBeginRunLoop() {
+ activeThread = Thread.currentThread();
+ return true;
+ }
+
+ /**
+ * Marks the end of a run loop for assertion purposes.
+ * Clears the active thread to allow other threads to access this breaker.
+ */
+ public boolean assertEndRunLoop() {
+ activeThread = null;
+ return true;
+ }
}
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java
index 142d6d4386478..ca0ca865ea4ed 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/Driver.java
@@ -211,10 +211,13 @@ SubscribableListener run(TimeValue maxTime, int maxIterations, LongSupplie
while (true) {
IsBlockedResult isBlocked = Operator.NOT_BLOCKED;
try {
+ assert driverContext.assertBeginRunLoop();
isBlocked = runSingleLoopIteration();
} catch (DriverEarlyTerminationException unused) {
closeEarlyFinishedOperators();
assert isFinished() : "not finished after early termination";
+ } finally {
+ assert driverContext.assertEndRunLoop();
}
totalIterationsThisRun++;
iterationsSinceLastStatusUpdate++;
diff --git a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/DriverContext.java b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/DriverContext.java
index 1877f564677ba..f26a1d11ad059 100644
--- a/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/DriverContext.java
+++ b/x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/operator/DriverContext.java
@@ -10,9 +10,9 @@
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.action.support.SubscribableListener;
import org.elasticsearch.common.breaker.CircuitBreaker;
-import org.elasticsearch.common.breaker.NoopCircuitBreaker;
import org.elasticsearch.common.util.BigArrays;
import org.elasticsearch.compute.data.BlockFactory;
+import org.elasticsearch.compute.data.LocalCircuitBreaker;
import org.elasticsearch.core.Releasable;
import org.elasticsearch.core.Releasables;
@@ -74,14 +74,6 @@ private DriverContext(BigArrays bigArrays, BlockFactory blockFactory, WarningsMo
this.warningsMode = warningsMode;
}
- public static DriverContext getLocalDriver() {
- return new DriverContext(
- BigArrays.NON_RECYCLING_INSTANCE,
- // TODO maybe this should have a small fixed limit?
- new BlockFactory(new NoopCircuitBreaker(CircuitBreaker.REQUEST), BigArrays.NON_RECYCLING_INSTANCE)
- );
- }
-
public BigArrays bigArrays() {
return bigArrays;
}
@@ -208,6 +200,26 @@ public enum WarningsMode {
IGNORE
}
+ /**
+ * Marks the beginning of a run loop for assertion purposes.
+ */
+ public boolean assertBeginRunLoop() {
+ if (blockFactory.breaker() instanceof LocalCircuitBreaker localBreaker) {
+ assert localBreaker.assertBeginRunLoop();
+ }
+ return true;
+ }
+
+ /**
+ * Marks the end of a run loop for assertion purposes.
+ */
+ public boolean assertEndRunLoop() {
+ if (blockFactory.breaker() instanceof LocalCircuitBreaker localBreaker) {
+ assert localBreaker.assertEndRunLoop();
+ }
+ return true;
+ }
+
private static class AsyncActions {
private final SubscribableListener completion = new SubscribableListener<>();
private final AtomicBoolean finished = new AtomicBoolean();
diff --git a/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/OperatorTestCase.java b/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/OperatorTestCase.java
index 876461cafcf84..248e8f5ddbfd1 100644
--- a/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/OperatorTestCase.java
+++ b/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/OperatorTestCase.java
@@ -23,6 +23,7 @@
import org.elasticsearch.compute.data.Block;
import org.elasticsearch.compute.data.BlockFactory;
import org.elasticsearch.compute.data.Page;
+import org.elasticsearch.compute.operator.AsyncOperator;
import org.elasticsearch.compute.operator.Driver;
import org.elasticsearch.compute.operator.DriverContext;
import org.elasticsearch.compute.operator.DriverRunner;
@@ -188,13 +189,11 @@ protected final List oneDriverPerPageList(Iterator> source, Sup
while (source.hasNext()) {
List in = source.next();
try (
- Driver d = new Driver(
- "test",
+ Driver d = TestDriverFactory.create(
driverContext(),
new CannedSourceOperator(in.iterator()),
operators.get(),
- new PageConsumerOperator(result::add),
- () -> {}
+ new PageConsumerOperator(result::add)
)
) {
runDriver(d);
@@ -249,9 +248,20 @@ public void testSimpleFinishClose() {
try (var operator = simple().get(driverContext)) {
assert operator.needsInput();
for (Page page : input) {
- operator.addInput(page);
+ if (operator.needsInput()) {
+ operator.addInput(page);
+ } else {
+ page.releaseBlocks();
+ }
}
operator.finish();
+ // for async operator, we need to wait for async actions to finish.
+ if (operator instanceof AsyncOperator> || randomBoolean()) {
+ driverContext.finish();
+ PlainActionFuture waitForAsync = new PlainActionFuture<>();
+ driverContext.waitForAsyncActions(waitForAsync);
+ waitForAsync.actionGet(TimeValue.timeValueSeconds(30));
+ }
}
}
@@ -263,13 +273,11 @@ protected final List drive(List operators, Iterator input,
List results = new ArrayList<>();
boolean success = false;
try (
- Driver d = new Driver(
- "test",
+ Driver d = TestDriverFactory.create(
driverContext,
new CannedSourceOperator(input),
operators,
- new TestResultPageSinkOperator(results::add),
- () -> {}
+ new TestResultPageSinkOperator(results::add)
)
) {
runDriver(d);
@@ -291,22 +299,15 @@ public static void runDriver(List drivers) {
int dummyDrivers = between(0, 10);
for (int i = 0; i < dummyDrivers; i++) {
drivers.add(
- new Driver(
- "test",
- "dummy-session",
- 0,
- 0,
+ TestDriverFactory.create(
new DriverContext(BigArrays.NON_RECYCLING_INSTANCE, TestBlockFactory.getNonBreakingInstance()),
- () -> "dummy-driver",
new SequenceLongBlockSourceOperator(
TestBlockFactory.getNonBreakingInstance(),
LongStream.range(0, between(1, 100)),
between(1, 100)
),
List.of(),
- new PageConsumerOperator(page -> page.releaseBlocks()),
- Driver.DEFAULT_STATUS_INTERVAL,
- () -> {}
+ new PageConsumerOperator(Page::releaseBlocks)
)
);
}
diff --git a/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/TestDriverFactory.java b/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/TestDriverFactory.java
new file mode 100644
index 0000000000000..5b16281633721
--- /dev/null
+++ b/x-pack/plugin/esql/compute/test/src/main/java/org/elasticsearch/compute/test/TestDriverFactory.java
@@ -0,0 +1,75 @@
+/*
+ * 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.compute.test;
+
+import org.elasticsearch.common.Randomness;
+import org.elasticsearch.common.unit.ByteSizeValue;
+import org.elasticsearch.compute.data.BlockFactory;
+import org.elasticsearch.compute.data.LocalCircuitBreaker;
+import org.elasticsearch.compute.operator.Driver;
+import org.elasticsearch.compute.operator.DriverContext;
+import org.elasticsearch.compute.operator.Operator;
+import org.elasticsearch.compute.operator.SinkOperator;
+import org.elasticsearch.compute.operator.SourceOperator;
+import org.elasticsearch.core.Releasable;
+import org.elasticsearch.core.Releasables;
+import org.elasticsearch.indices.CrankyCircuitBreakerService;
+
+import java.util.List;
+
+public class TestDriverFactory {
+
+ /**
+ * This is a convenience factory to create a test driver instance
+ * that accepts fewer parameters
+ */
+ public static Driver create(
+ DriverContext driverContext,
+ SourceOperator source,
+ List intermediateOperators,
+ SinkOperator sink
+ ) {
+ return create(driverContext, source, intermediateOperators, sink, () -> {});
+ }
+
+ public static Driver create(
+ DriverContext driverContext,
+ SourceOperator source,
+ List intermediateOperators,
+ SinkOperator sink,
+ Releasable releasable
+ ) {
+ // Do not wrap the local breaker for small local breakers, as the output mights not match expectations.
+ if (driverContext.breaker() instanceof CrankyCircuitBreakerService.CrankyCircuitBreaker == false
+ && driverContext.breaker() instanceof LocalCircuitBreaker == false
+ && driverContext.breaker().getLimit() >= ByteSizeValue.ofMb(100).getBytes()
+ && Randomness.get().nextBoolean()) {
+ final int overReservedBytes = Randomness.get().nextInt(1024 * 1024);
+ final int maxOverReservedBytes = overReservedBytes + Randomness.get().nextInt(1024 * 1024);
+ var localBreaker = new LocalCircuitBreaker(driverContext.breaker(), overReservedBytes, maxOverReservedBytes);
+ BlockFactory localBlockFactory = driverContext.blockFactory().newChildFactory(localBreaker);
+ driverContext = new DriverContext(localBlockFactory.bigArrays(), localBlockFactory);
+ }
+ if (driverContext.breaker() instanceof LocalCircuitBreaker localBreaker) {
+ releasable = Releasables.wrap(releasable, localBreaker);
+ }
+ return new Driver(
+ "unset",
+ "test-task",
+ System.currentTimeMillis(),
+ System.nanoTime(),
+ driverContext,
+ () -> null,
+ source,
+ intermediateOperators,
+ sink,
+ Driver.DEFAULT_STATUS_INTERVAL,
+ releasable
+ );
+ }
+}
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 cff9087e4b867..7dfcd4ca64e69 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
@@ -19,6 +19,7 @@
import org.elasticsearch.compute.operator.DriverContext;
import org.elasticsearch.compute.operator.EvalOperator.ExpressionEvaluator;
import org.elasticsearch.compute.operator.Operator;
+import org.elasticsearch.core.Releasable;
import org.elasticsearch.core.Releasables;
import org.elasticsearch.inference.TaskType;
import org.elasticsearch.xpack.core.inference.action.InferenceAction;
@@ -26,7 +27,7 @@
import java.util.List;
-public class RerankOperator extends AsyncOperator {
+public class RerankOperator extends AsyncOperator {
// Move to a setting.
private static final int MAX_INFERENCE_WORKER = 10;
@@ -85,20 +86,16 @@ public RerankOperator(
}
@Override
- protected void performAsync(Page inputPage, ActionListener listener) {
+ protected void performAsync(Page inputPage, ActionListener listener) {
// Ensure input page blocks are released when the listener is called.
- final ActionListener outputListener = ActionListener.runAfter(listener, () -> { releasePageOnAnyThread(inputPage); });
-
+ listener = listener.delegateResponse((l, e) -> {
+ releasePageOnAnyThread(inputPage);
+ l.onFailure(e);
+ });
try {
- inferenceRunner.doInference(
- buildInferenceRequest(inputPage),
- ActionListener.wrap(
- inferenceResponse -> outputListener.onResponse(buildOutput(inputPage, inferenceResponse)),
- outputListener::onFailure
- )
- );
+ inferenceRunner.doInference(buildInferenceRequest(inputPage), listener.map(resp -> new OngoingRerank(inputPage, resp)));
} catch (Exception e) {
- outputListener.onFailure(e);
+ listener.onFailure(e);
}
}
@@ -108,13 +105,18 @@ protected void doClose() {
}
@Override
- protected void releaseFetchedOnAnyThread(Page page) {
- releasePageOnAnyThread(page);
+ protected void releaseFetchedOnAnyThread(OngoingRerank result) {
+ releasePageOnAnyThread(result.inputPage);
}
@Override
public Page getOutput() {
- return fetchFromBuffer();
+ var fetched = fetchFromBuffer();
+ if (fetched == null) {
+ return null;
+ } else {
+ return fetched.buildOutput(blockFactory, scoreChannel);
+ }
}
@Override
@@ -122,77 +124,87 @@ public String toString() {
return "RerankOperator[inference_id=[" + inferenceId + "], query=[" + queryText + "], score_channel=[" + scoreChannel + "]]";
}
- private Page buildOutput(Page inputPage, InferenceAction.Response inferenceResponse) {
- if (inferenceResponse.getResults() instanceof RankedDocsResults rankedDocsResults) {
- return buildOutput(inputPage, rankedDocsResults);
-
- }
-
- throw new IllegalStateException(
- "Inference result has wrong type. Got ["
- + inferenceResponse.getResults().getClass()
- + "] while expecting ["
- + RankedDocsResults.class
- + "]"
- );
- }
-
- private Page buildOutput(Page inputPage, RankedDocsResults rankedDocsResults) {
- int blockCount = Integer.max(inputPage.getBlockCount(), scoreChannel + 1);
- Block[] blocks = new Block[blockCount];
+ private InferenceAction.Request buildInferenceRequest(Page inputPage) {
+ try (BytesRefBlock encodedRowsBlock = (BytesRefBlock) rowEncoder.eval(inputPage)) {
+ assert (encodedRowsBlock.getPositionCount() == inputPage.getPositionCount());
+ String[] inputs = new String[inputPage.getPositionCount()];
+ BytesRef buffer = new BytesRef();
- try {
- for (int b = 0; b < blockCount; b++) {
- if (b == scoreChannel) {
- blocks[b] = buildScoreBlock(inputPage, rankedDocsResults);
+ for (int pos = 0; pos < inputPage.getPositionCount(); pos++) {
+ if (encodedRowsBlock.isNull(pos)) {
+ inputs[pos] = "";
} else {
- blocks[b] = inputPage.getBlock(b);
- blocks[b].incRef();
+ buffer = encodedRowsBlock.getBytesRef(encodedRowsBlock.getFirstValueIndex(pos), buffer);
+ inputs[pos] = BytesRefs.toString(buffer);
}
}
- return new Page(blocks);
- } catch (Exception e) {
- Releasables.closeExpectNoException(blocks);
- throw (e);
+
+ return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build();
}
}
- private Block buildScoreBlock(Page inputPage, RankedDocsResults rankedDocsResults) {
- Double[] sortedRankedDocsScores = new Double[inputPage.getPositionCount()];
+ public static final class OngoingRerank {
+ final Page inputPage;
+ final Double[] rankedScores;
+
+ OngoingRerank(Page inputPage, InferenceAction.Response resp) {
+ if (resp.getResults() instanceof RankedDocsResults == false) {
+ releasePageOnAnyThread(inputPage);
+ throw new IllegalStateException(
+ "Inference result has wrong type. Got ["
+ + resp.getResults().getClass()
+ + "] while expecting ["
+ + RankedDocsResults.class
+ + "]"
+ );
- try (DoubleBlock.Builder scoreBlockFactory = blockFactory.newDoubleBlockBuilder(inputPage.getPositionCount())) {
+ }
+ final var results = (RankedDocsResults) resp.getResults();
+ this.inputPage = inputPage;
+ this.rankedScores = extractRankedScores(inputPage.getPositionCount(), results);
+ }
+
+ private static Double[] extractRankedScores(int positionCount, RankedDocsResults rankedDocsResults) {
+ Double[] sortedRankedDocsScores = new Double[positionCount];
for (RankedDocsResults.RankedDoc rankedDoc : rankedDocsResults.getRankedDocs()) {
sortedRankedDocsScores[rankedDoc.index()] = (double) rankedDoc.relevanceScore();
}
+ return sortedRankedDocsScores;
+ }
- for (int pos = 0; pos < inputPage.getPositionCount(); pos++) {
- if (sortedRankedDocsScores[pos] != null) {
- scoreBlockFactory.appendDouble(sortedRankedDocsScores[pos]);
- } else {
- scoreBlockFactory.appendNull();
+ Page buildOutput(BlockFactory blockFactory, int scoreChannel) {
+ int blockCount = Integer.max(inputPage.getBlockCount(), scoreChannel + 1);
+ Block[] blocks = new Block[blockCount];
+ Page outputPage = null;
+ try (Releasable ignored = inputPage::releaseBlocks) {
+ for (int b = 0; b < blockCount; b++) {
+ if (b == scoreChannel) {
+ blocks[b] = buildScoreBlock(blockFactory);
+ } else {
+ blocks[b] = inputPage.getBlock(b);
+ blocks[b].incRef();
+ }
+ }
+ outputPage = new Page(blocks);
+ return outputPage;
+ } finally {
+ if (outputPage == null) {
+ Releasables.closeExpectNoException(blocks);
}
}
-
- return scoreBlockFactory.build();
}
- }
-
- private InferenceAction.Request buildInferenceRequest(Page inputPage) {
- try (BytesRefBlock encodedRowsBlock = (BytesRefBlock) rowEncoder.eval(inputPage)) {
- assert (encodedRowsBlock.getPositionCount() == inputPage.getPositionCount());
- String[] inputs = new String[inputPage.getPositionCount()];
- BytesRef buffer = new BytesRef();
- for (int pos = 0; pos < inputPage.getPositionCount(); pos++) {
- if (encodedRowsBlock.isNull(pos)) {
- inputs[pos] = "";
- } else {
- buffer = encodedRowsBlock.getBytesRef(encodedRowsBlock.getFirstValueIndex(pos), buffer);
- inputs[pos] = BytesRefs.toString(buffer);
+ private Block buildScoreBlock(BlockFactory blockFactory) {
+ try (DoubleBlock.Builder scoreBlockFactory = blockFactory.newDoubleBlockBuilder(rankedScores.length)) {
+ for (Double rankedScore : rankedScores) {
+ if (rankedScore != null) {
+ scoreBlockFactory.appendDouble(rankedScore);
+ } else {
+ scoreBlockFactory.appendNull();
+ }
}
+ return scoreBlockFactory.build();
}
-
- return InferenceAction.Request.builder(inferenceId, TaskType.RERANK).setInput(List.of(inputs)).setQuery(queryText).build();
}
}
}
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 670b0d69390c8..601256217a8bd 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,7 @@
import org.elasticsearch.compute.test.OperatorTestCase;
import org.elasticsearch.compute.test.RandomBlock;
import org.elasticsearch.core.Releasables;
+import org.elasticsearch.core.TimeValue;
import org.elasticsearch.threadpool.FixedExecutorBuilder;
import org.elasticsearch.threadpool.TestThreadPool;
import org.elasticsearch.threadpool.ThreadPool;
@@ -97,16 +98,23 @@ private InferenceRunner mockedSimpleInferenceRunner() {
InferenceRunner inferenceRunner = mock(InferenceRunner.class);
when(inferenceRunner.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);
+ Runnable sendResponse = () -> {
+ @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);
+ };
+ if (randomBoolean()) {
+ sendResponse.run();
+ } else {
+ threadPool.schedule(sendResponse, TimeValue.timeValueNanos(between(1, 1_000)), threadPool.executor(ESQL_TEST_EXECUTOR));
+ }
return null;
}).when(inferenceRunner).doInference(any(), any());
@@ -137,7 +145,8 @@ protected Matcher expectedToStringOfSimple() {
@Override
protected SourceOperator simpleInput(BlockFactory blockFactory, int size) {
- return new AbstractBlockSourceOperator(blockFactory, 8 * 1024) {
+ final int minPageSize = Math.max(1, size / 100);
+ return new AbstractBlockSourceOperator(blockFactory, between(minPageSize, size)) {
@Override
protected int remaining() {
return size - currentPosition;
From 999ffac979fd8f3c25fdbefa056aeaa4a0ef4cc1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Aur=C3=A9lien=20FOUCRET?=
Date: Fri, 30 May 2025 18:03:53 +0200
Subject: [PATCH 11/34] [ES|QL] Enable telemetry for the rerank command
(#128679)
---
.../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 e4101fe338117..0b7d0db8fe8aa 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
@@ -11,6 +11,7 @@
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.inference.TaskType;
+import org.elasticsearch.xpack.esql.capabilities.TelemetryAware;
import org.elasticsearch.xpack.esql.core.capabilities.Resolvables;
import org.elasticsearch.xpack.esql.core.expression.Alias;
import org.elasticsearch.xpack.esql.core.expression.Attribute;
@@ -37,7 +38,7 @@
import static org.elasticsearch.xpack.esql.core.expression.Expressions.asAttributes;
import static org.elasticsearch.xpack.esql.expression.NamedExpressions.mergeOutputAttributes;
-public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan {
+public class Rerank extends InferencePlan implements SortAgnostic, SurrogateLogicalPlan, TelemetryAware {
public static final NamedWriteableRegistry.Entry ENTRY = new NamedWriteableRegistry.Entry(LogicalPlan.class, "Rerank", Rerank::new);
private final Attribute scoreAttribute;
From e01703d69c40256d46b1ec71dc3016b35057a2d9 Mon Sep 17 00:00:00 2001
From: Svilen Mihaylov
Date: Wed, 30 Apr 2025 05:41:44 -0400
Subject: [PATCH 12/34] [ES|QL] Prevent using unnamed fields in the RERANK
command (#127416)
---
.../esql/src/main/antlr/EsqlBaseParser.g4 | 10 +-
.../xpack/esql/parser/EsqlBaseParser.interp | 4 +-
.../xpack/esql/parser/EsqlBaseParser.java | 2057 +++++++++--------
.../parser/EsqlBaseParserBaseListener.java | 24 +
.../parser/EsqlBaseParserBaseVisitor.java | 14 +
.../esql/parser/EsqlBaseParserListener.java | 20 +
.../esql/parser/EsqlBaseParserVisitor.java | 12 +
.../xpack/esql/parser/ExpressionBuilder.java | 19 +
.../xpack/esql/parser/LogicalPlanBuilder.java | 2 +-
.../xpack/esql/analysis/AnalyzerTests.java | 13 +
.../esql/parser/StatementParserTests.java | 2 +-
.../xpack/kql/parser/KqlBase.interp | 2 +-
.../xpack/kql/parser/KqlBaseParser.java | 341 +--
13 files changed, 1394 insertions(+), 1126 deletions(-)
diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
index 0d0362a3e8c49..b40fcd16d2c2e 100644
--- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
+++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4
@@ -136,6 +136,14 @@ field
: (qualifiedName ASSIGN)? booleanExpression
;
+rerankFields
+ : rerankField (COMMA rerankField)*
+ ;
+
+rerankField
+ : qualifiedName (ASSIGN booleanExpression)?
+ ;
+
fromCommand
: FROM indexPattern (COMMA indexPattern)* metadata?
;
@@ -370,7 +378,7 @@ joinPredicate
;
rerankCommand
- : DEV_RERANK queryText=constant ON fields WITH inferenceId=identifierOrParameter
+ : DEV_RERANK queryText=constant ON rerankFields WITH inferenceId=identifierOrParameter
;
completionCommand
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 e75a666352279..26efcdf054fb8 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
@@ -300,6 +300,8 @@ dataType
rowCommand
fields
field
+rerankFields
+rerankField
fromCommand
indexPattern
clusterString
@@ -357,4 +359,4 @@ completionCommand
atn:
-[4, 1, 138, 711, 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, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 203, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 210, 8, 5, 10, 5, 12, 5, 213, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 220, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 225, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 233, 8, 5, 10, 5, 12, 5, 236, 9, 5, 1, 6, 1, 6, 3, 6, 240, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 247, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 252, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 257, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 267, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 273, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 281, 8, 9, 10, 9, 12, 9, 284, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 294, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 299, 8, 10, 10, 10, 12, 10, 302, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 310, 8, 11, 10, 11, 12, 11, 313, 9, 11, 1, 11, 1, 11, 3, 11, 317, 8, 11, 3, 11, 319, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 329, 8, 13, 10, 13, 12, 13, 332, 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, 348, 8, 17, 10, 17, 12, 17, 351, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 356, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 364, 8, 19, 10, 19, 12, 19, 367, 9, 19, 1, 19, 3, 19, 370, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 375, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 381, 8, 20, 3, 20, 383, 8, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 393, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 399, 8, 25, 10, 25, 12, 25, 402, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 412, 8, 27, 10, 27, 12, 27, 415, 9, 27, 1, 27, 3, 27, 418, 8, 27, 1, 27, 1, 27, 3, 27, 422, 8, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 3, 29, 429, 8, 29, 1, 29, 1, 29, 3, 29, 433, 8, 29, 1, 30, 1, 30, 1, 30, 5, 30, 438, 8, 30, 10, 30, 12, 30, 441, 9, 30, 1, 31, 1, 31, 1, 31, 3, 31, 446, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 451, 8, 32, 10, 32, 12, 32, 454, 9, 32, 1, 33, 1, 33, 1, 33, 5, 33, 459, 8, 33, 10, 33, 12, 33, 462, 9, 33, 1, 34, 1, 34, 1, 34, 5, 34, 467, 8, 34, 10, 34, 12, 34, 470, 9, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 3, 36, 477, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 492, 8, 37, 10, 37, 12, 37, 495, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 503, 8, 37, 10, 37, 12, 37, 506, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 514, 8, 37, 10, 37, 12, 37, 517, 9, 37, 1, 37, 1, 37, 3, 37, 521, 8, 37, 1, 38, 1, 38, 3, 38, 525, 8, 38, 1, 39, 1, 39, 3, 39, 529, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 534, 8, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 543, 8, 42, 10, 42, 12, 42, 546, 9, 42, 1, 43, 1, 43, 3, 43, 550, 8, 43, 1, 43, 1, 43, 3, 43, 554, 8, 43, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 566, 8, 46, 10, 46, 12, 46, 569, 9, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 579, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 5, 51, 591, 8, 51, 10, 51, 12, 51, 594, 9, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 54, 1, 54, 3, 54, 604, 8, 54, 1, 55, 3, 55, 607, 8, 55, 1, 55, 1, 55, 1, 56, 3, 56, 612, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 634, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 640, 8, 62, 10, 62, 12, 62, 643, 9, 62, 3, 62, 645, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 650, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 658, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 665, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 676, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 689, 8, 69, 10, 69, 12, 69, 692, 9, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 709, 8, 72, 1, 72, 0, 4, 2, 10, 18, 20, 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, 69, 70, 1, 0, 71, 73, 2, 0, 32, 32, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 17, 17, 25, 26, 741, 0, 146, 1, 0, 0, 0, 2, 149, 1, 0, 0, 0, 4, 166, 1, 0, 0, 0, 6, 190, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 224, 1, 0, 0, 0, 12, 251, 1, 0, 0, 0, 14, 253, 1, 0, 0, 0, 16, 266, 1, 0, 0, 0, 18, 272, 1, 0, 0, 0, 20, 293, 1, 0, 0, 0, 22, 303, 1, 0, 0, 0, 24, 322, 1, 0, 0, 0, 26, 324, 1, 0, 0, 0, 28, 335, 1, 0, 0, 0, 30, 339, 1, 0, 0, 0, 32, 341, 1, 0, 0, 0, 34, 344, 1, 0, 0, 0, 36, 355, 1, 0, 0, 0, 38, 359, 1, 0, 0, 0, 40, 382, 1, 0, 0, 0, 42, 384, 1, 0, 0, 0, 44, 386, 1, 0, 0, 0, 46, 388, 1, 0, 0, 0, 48, 392, 1, 0, 0, 0, 50, 394, 1, 0, 0, 0, 52, 403, 1, 0, 0, 0, 54, 407, 1, 0, 0, 0, 56, 423, 1, 0, 0, 0, 58, 426, 1, 0, 0, 0, 60, 434, 1, 0, 0, 0, 62, 442, 1, 0, 0, 0, 64, 447, 1, 0, 0, 0, 66, 455, 1, 0, 0, 0, 68, 463, 1, 0, 0, 0, 70, 471, 1, 0, 0, 0, 72, 476, 1, 0, 0, 0, 74, 520, 1, 0, 0, 0, 76, 524, 1, 0, 0, 0, 78, 528, 1, 0, 0, 0, 80, 533, 1, 0, 0, 0, 82, 535, 1, 0, 0, 0, 84, 538, 1, 0, 0, 0, 86, 547, 1, 0, 0, 0, 88, 555, 1, 0, 0, 0, 90, 558, 1, 0, 0, 0, 92, 561, 1, 0, 0, 0, 94, 570, 1, 0, 0, 0, 96, 574, 1, 0, 0, 0, 98, 580, 1, 0, 0, 0, 100, 584, 1, 0, 0, 0, 102, 587, 1, 0, 0, 0, 104, 595, 1, 0, 0, 0, 106, 599, 1, 0, 0, 0, 108, 603, 1, 0, 0, 0, 110, 606, 1, 0, 0, 0, 112, 611, 1, 0, 0, 0, 114, 615, 1, 0, 0, 0, 116, 617, 1, 0, 0, 0, 118, 619, 1, 0, 0, 0, 120, 622, 1, 0, 0, 0, 122, 626, 1, 0, 0, 0, 124, 629, 1, 0, 0, 0, 126, 649, 1, 0, 0, 0, 128, 653, 1, 0, 0, 0, 130, 666, 1, 0, 0, 0, 132, 671, 1, 0, 0, 0, 134, 677, 1, 0, 0, 0, 136, 682, 1, 0, 0, 0, 138, 684, 1, 0, 0, 0, 140, 693, 1, 0, 0, 0, 142, 695, 1, 0, 0, 0, 144, 702, 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, 118, 59, 0, 161, 167, 3, 38, 19, 0, 162, 167, 3, 32, 16, 0, 163, 167, 3, 122, 61, 0, 164, 165, 4, 2, 1, 0, 165, 167, 3, 54, 27, 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, 191, 3, 56, 28, 0, 169, 191, 3, 8, 4, 0, 170, 191, 3, 88, 44, 0, 171, 191, 3, 82, 41, 0, 172, 191, 3, 58, 29, 0, 173, 191, 3, 84, 42, 0, 174, 191, 3, 90, 45, 0, 175, 191, 3, 92, 46, 0, 176, 191, 3, 96, 48, 0, 177, 191, 3, 98, 49, 0, 178, 191, 3, 124, 62, 0, 179, 191, 3, 100, 50, 0, 180, 191, 3, 134, 67, 0, 181, 191, 3, 128, 64, 0, 182, 183, 4, 3, 2, 0, 183, 191, 3, 144, 72, 0, 184, 185, 4, 3, 3, 0, 185, 191, 3, 132, 66, 0, 186, 187, 4, 3, 4, 0, 187, 191, 3, 130, 65, 0, 188, 189, 4, 3, 5, 0, 189, 191, 3, 142, 71, 0, 190, 168, 1, 0, 0, 0, 190, 169, 1, 0, 0, 0, 190, 170, 1, 0, 0, 0, 190, 171, 1, 0, 0, 0, 190, 172, 1, 0, 0, 0, 190, 173, 1, 0, 0, 0, 190, 174, 1, 0, 0, 0, 190, 175, 1, 0, 0, 0, 190, 176, 1, 0, 0, 0, 190, 177, 1, 0, 0, 0, 190, 178, 1, 0, 0, 0, 190, 179, 1, 0, 0, 0, 190, 180, 1, 0, 0, 0, 190, 181, 1, 0, 0, 0, 190, 182, 1, 0, 0, 0, 190, 184, 1, 0, 0, 0, 190, 186, 1, 0, 0, 0, 190, 188, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 16, 0, 0, 193, 194, 3, 10, 5, 0, 194, 9, 1, 0, 0, 0, 195, 196, 6, 5, -1, 0, 196, 197, 5, 52, 0, 0, 197, 225, 3, 10, 5, 8, 198, 225, 3, 16, 8, 0, 199, 225, 3, 12, 6, 0, 200, 202, 3, 16, 8, 0, 201, 203, 5, 52, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 204, 1, 0, 0, 0, 204, 205, 5, 47, 0, 0, 205, 206, 5, 51, 0, 0, 206, 211, 3, 16, 8, 0, 207, 208, 5, 42, 0, 0, 208, 210, 3, 16, 8, 0, 209, 207, 1, 0, 0, 0, 210, 213, 1, 0, 0, 0, 211, 209, 1, 0, 0, 0, 211, 212, 1, 0, 0, 0, 212, 214, 1, 0, 0, 0, 213, 211, 1, 0, 0, 0, 214, 215, 5, 59, 0, 0, 215, 225, 1, 0, 0, 0, 216, 217, 3, 16, 8, 0, 217, 219, 5, 48, 0, 0, 218, 220, 5, 52, 0, 0, 219, 218, 1, 0, 0, 0, 219, 220, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 222, 5, 53, 0, 0, 222, 225, 1, 0, 0, 0, 223, 225, 3, 14, 7, 0, 224, 195, 1, 0, 0, 0, 224, 198, 1, 0, 0, 0, 224, 199, 1, 0, 0, 0, 224, 200, 1, 0, 0, 0, 224, 216, 1, 0, 0, 0, 224, 223, 1, 0, 0, 0, 225, 234, 1, 0, 0, 0, 226, 227, 10, 5, 0, 0, 227, 228, 5, 35, 0, 0, 228, 233, 3, 10, 5, 6, 229, 230, 10, 4, 0, 0, 230, 231, 5, 56, 0, 0, 231, 233, 3, 10, 5, 5, 232, 226, 1, 0, 0, 0, 232, 229, 1, 0, 0, 0, 233, 236, 1, 0, 0, 0, 234, 232, 1, 0, 0, 0, 234, 235, 1, 0, 0, 0, 235, 11, 1, 0, 0, 0, 236, 234, 1, 0, 0, 0, 237, 239, 3, 16, 8, 0, 238, 240, 5, 52, 0, 0, 239, 238, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 5, 50, 0, 0, 242, 243, 3, 114, 57, 0, 243, 252, 1, 0, 0, 0, 244, 246, 3, 16, 8, 0, 245, 247, 5, 52, 0, 0, 246, 245, 1, 0, 0, 0, 246, 247, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 249, 5, 58, 0, 0, 249, 250, 3, 114, 57, 0, 250, 252, 1, 0, 0, 0, 251, 237, 1, 0, 0, 0, 251, 244, 1, 0, 0, 0, 252, 13, 1, 0, 0, 0, 253, 256, 3, 64, 32, 0, 254, 255, 5, 40, 0, 0, 255, 257, 3, 30, 15, 0, 256, 254, 1, 0, 0, 0, 256, 257, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 259, 5, 41, 0, 0, 259, 260, 3, 74, 37, 0, 260, 15, 1, 0, 0, 0, 261, 267, 3, 18, 9, 0, 262, 263, 3, 18, 9, 0, 263, 264, 3, 116, 58, 0, 264, 265, 3, 18, 9, 0, 265, 267, 1, 0, 0, 0, 266, 261, 1, 0, 0, 0, 266, 262, 1, 0, 0, 0, 267, 17, 1, 0, 0, 0, 268, 269, 6, 9, -1, 0, 269, 273, 3, 20, 10, 0, 270, 271, 7, 0, 0, 0, 271, 273, 3, 18, 9, 3, 272, 268, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 273, 282, 1, 0, 0, 0, 274, 275, 10, 2, 0, 0, 275, 276, 7, 1, 0, 0, 276, 281, 3, 18, 9, 3, 277, 278, 10, 1, 0, 0, 278, 279, 7, 0, 0, 0, 279, 281, 3, 18, 9, 2, 280, 274, 1, 0, 0, 0, 280, 277, 1, 0, 0, 0, 281, 284, 1, 0, 0, 0, 282, 280, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 19, 1, 0, 0, 0, 284, 282, 1, 0, 0, 0, 285, 286, 6, 10, -1, 0, 286, 294, 3, 74, 37, 0, 287, 294, 3, 64, 32, 0, 288, 294, 3, 22, 11, 0, 289, 290, 5, 51, 0, 0, 290, 291, 3, 10, 5, 0, 291, 292, 5, 59, 0, 0, 292, 294, 1, 0, 0, 0, 293, 285, 1, 0, 0, 0, 293, 287, 1, 0, 0, 0, 293, 288, 1, 0, 0, 0, 293, 289, 1, 0, 0, 0, 294, 300, 1, 0, 0, 0, 295, 296, 10, 1, 0, 0, 296, 297, 5, 40, 0, 0, 297, 299, 3, 30, 15, 0, 298, 295, 1, 0, 0, 0, 299, 302, 1, 0, 0, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 21, 1, 0, 0, 0, 302, 300, 1, 0, 0, 0, 303, 304, 3, 24, 12, 0, 304, 318, 5, 51, 0, 0, 305, 319, 5, 71, 0, 0, 306, 311, 3, 10, 5, 0, 307, 308, 5, 42, 0, 0, 308, 310, 3, 10, 5, 0, 309, 307, 1, 0, 0, 0, 310, 313, 1, 0, 0, 0, 311, 309, 1, 0, 0, 0, 311, 312, 1, 0, 0, 0, 312, 316, 1, 0, 0, 0, 313, 311, 1, 0, 0, 0, 314, 315, 5, 42, 0, 0, 315, 317, 3, 26, 13, 0, 316, 314, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 319, 1, 0, 0, 0, 318, 305, 1, 0, 0, 0, 318, 306, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 320, 1, 0, 0, 0, 320, 321, 5, 59, 0, 0, 321, 23, 1, 0, 0, 0, 322, 323, 3, 80, 40, 0, 323, 25, 1, 0, 0, 0, 324, 325, 5, 74, 0, 0, 325, 330, 3, 28, 14, 0, 326, 327, 5, 42, 0, 0, 327, 329, 3, 28, 14, 0, 328, 326, 1, 0, 0, 0, 329, 332, 1, 0, 0, 0, 330, 328, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 333, 1, 0, 0, 0, 332, 330, 1, 0, 0, 0, 333, 334, 5, 75, 0, 0, 334, 27, 1, 0, 0, 0, 335, 336, 3, 114, 57, 0, 336, 337, 5, 41, 0, 0, 337, 338, 3, 74, 37, 0, 338, 29, 1, 0, 0, 0, 339, 340, 3, 70, 35, 0, 340, 31, 1, 0, 0, 0, 341, 342, 5, 12, 0, 0, 342, 343, 3, 34, 17, 0, 343, 33, 1, 0, 0, 0, 344, 349, 3, 36, 18, 0, 345, 346, 5, 42, 0, 0, 346, 348, 3, 36, 18, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 35, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 353, 3, 64, 32, 0, 353, 354, 5, 38, 0, 0, 354, 356, 1, 0, 0, 0, 355, 352, 1, 0, 0, 0, 355, 356, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 358, 3, 10, 5, 0, 358, 37, 1, 0, 0, 0, 359, 360, 5, 6, 0, 0, 360, 365, 3, 40, 20, 0, 361, 362, 5, 42, 0, 0, 362, 364, 3, 40, 20, 0, 363, 361, 1, 0, 0, 0, 364, 367, 1, 0, 0, 0, 365, 363, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 370, 3, 48, 24, 0, 369, 368, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 39, 1, 0, 0, 0, 371, 372, 3, 42, 21, 0, 372, 373, 5, 41, 0, 0, 373, 375, 1, 0, 0, 0, 374, 371, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 383, 3, 46, 23, 0, 377, 380, 3, 46, 23, 0, 378, 379, 5, 40, 0, 0, 379, 381, 3, 44, 22, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 383, 1, 0, 0, 0, 382, 374, 1, 0, 0, 0, 382, 377, 1, 0, 0, 0, 383, 41, 1, 0, 0, 0, 384, 385, 7, 2, 0, 0, 385, 43, 1, 0, 0, 0, 386, 387, 7, 2, 0, 0, 387, 45, 1, 0, 0, 0, 388, 389, 7, 2, 0, 0, 389, 47, 1, 0, 0, 0, 390, 393, 3, 50, 25, 0, 391, 393, 3, 52, 26, 0, 392, 390, 1, 0, 0, 0, 392, 391, 1, 0, 0, 0, 393, 49, 1, 0, 0, 0, 394, 395, 5, 89, 0, 0, 395, 400, 5, 90, 0, 0, 396, 397, 5, 42, 0, 0, 397, 399, 5, 90, 0, 0, 398, 396, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 51, 1, 0, 0, 0, 402, 400, 1, 0, 0, 0, 403, 404, 5, 79, 0, 0, 404, 405, 3, 50, 25, 0, 405, 406, 5, 80, 0, 0, 406, 53, 1, 0, 0, 0, 407, 408, 5, 22, 0, 0, 408, 413, 3, 40, 20, 0, 409, 410, 5, 42, 0, 0, 410, 412, 3, 40, 20, 0, 411, 409, 1, 0, 0, 0, 412, 415, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 414, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 416, 418, 3, 60, 30, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 421, 1, 0, 0, 0, 419, 420, 5, 39, 0, 0, 420, 422, 3, 34, 17, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 55, 1, 0, 0, 0, 423, 424, 5, 4, 0, 0, 424, 425, 3, 34, 17, 0, 425, 57, 1, 0, 0, 0, 426, 428, 5, 15, 0, 0, 427, 429, 3, 60, 30, 0, 428, 427, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 431, 5, 39, 0, 0, 431, 433, 3, 34, 17, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 59, 1, 0, 0, 0, 434, 439, 3, 62, 31, 0, 435, 436, 5, 42, 0, 0, 436, 438, 3, 62, 31, 0, 437, 435, 1, 0, 0, 0, 438, 441, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 61, 1, 0, 0, 0, 441, 439, 1, 0, 0, 0, 442, 445, 3, 36, 18, 0, 443, 444, 5, 16, 0, 0, 444, 446, 3, 10, 5, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 63, 1, 0, 0, 0, 447, 452, 3, 80, 40, 0, 448, 449, 5, 44, 0, 0, 449, 451, 3, 80, 40, 0, 450, 448, 1, 0, 0, 0, 451, 454, 1, 0, 0, 0, 452, 450, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 65, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 455, 460, 3, 72, 36, 0, 456, 457, 5, 44, 0, 0, 457, 459, 3, 72, 36, 0, 458, 456, 1, 0, 0, 0, 459, 462, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 67, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 463, 468, 3, 66, 33, 0, 464, 465, 5, 42, 0, 0, 465, 467, 3, 66, 33, 0, 466, 464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 69, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 7, 3, 0, 0, 472, 71, 1, 0, 0, 0, 473, 477, 5, 94, 0, 0, 474, 477, 3, 76, 38, 0, 475, 477, 3, 78, 39, 0, 476, 473, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 476, 475, 1, 0, 0, 0, 477, 73, 1, 0, 0, 0, 478, 521, 5, 53, 0, 0, 479, 480, 3, 112, 56, 0, 480, 481, 5, 81, 0, 0, 481, 521, 1, 0, 0, 0, 482, 521, 3, 110, 55, 0, 483, 521, 3, 112, 56, 0, 484, 521, 3, 106, 53, 0, 485, 521, 3, 76, 38, 0, 486, 521, 3, 114, 57, 0, 487, 488, 5, 79, 0, 0, 488, 493, 3, 108, 54, 0, 489, 490, 5, 42, 0, 0, 490, 492, 3, 108, 54, 0, 491, 489, 1, 0, 0, 0, 492, 495, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 496, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 496, 497, 5, 80, 0, 0, 497, 521, 1, 0, 0, 0, 498, 499, 5, 79, 0, 0, 499, 504, 3, 106, 53, 0, 500, 501, 5, 42, 0, 0, 501, 503, 3, 106, 53, 0, 502, 500, 1, 0, 0, 0, 503, 506, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 507, 1, 0, 0, 0, 506, 504, 1, 0, 0, 0, 507, 508, 5, 80, 0, 0, 508, 521, 1, 0, 0, 0, 509, 510, 5, 79, 0, 0, 510, 515, 3, 114, 57, 0, 511, 512, 5, 42, 0, 0, 512, 514, 3, 114, 57, 0, 513, 511, 1, 0, 0, 0, 514, 517, 1, 0, 0, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 518, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 518, 519, 5, 80, 0, 0, 519, 521, 1, 0, 0, 0, 520, 478, 1, 0, 0, 0, 520, 479, 1, 0, 0, 0, 520, 482, 1, 0, 0, 0, 520, 483, 1, 0, 0, 0, 520, 484, 1, 0, 0, 0, 520, 485, 1, 0, 0, 0, 520, 486, 1, 0, 0, 0, 520, 487, 1, 0, 0, 0, 520, 498, 1, 0, 0, 0, 520, 509, 1, 0, 0, 0, 521, 75, 1, 0, 0, 0, 522, 525, 5, 57, 0, 0, 523, 525, 5, 77, 0, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 77, 1, 0, 0, 0, 526, 529, 5, 76, 0, 0, 527, 529, 5, 78, 0, 0, 528, 526, 1, 0, 0, 0, 528, 527, 1, 0, 0, 0, 529, 79, 1, 0, 0, 0, 530, 534, 3, 70, 35, 0, 531, 534, 3, 76, 38, 0, 532, 534, 3, 78, 39, 0, 533, 530, 1, 0, 0, 0, 533, 531, 1, 0, 0, 0, 533, 532, 1, 0, 0, 0, 534, 81, 1, 0, 0, 0, 535, 536, 5, 9, 0, 0, 536, 537, 3, 74, 37, 0, 537, 83, 1, 0, 0, 0, 538, 539, 5, 14, 0, 0, 539, 544, 3, 86, 43, 0, 540, 541, 5, 42, 0, 0, 541, 543, 3, 86, 43, 0, 542, 540, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 85, 1, 0, 0, 0, 546, 544, 1, 0, 0, 0, 547, 549, 3, 10, 5, 0, 548, 550, 7, 4, 0, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 553, 1, 0, 0, 0, 551, 552, 5, 54, 0, 0, 552, 554, 7, 5, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 87, 1, 0, 0, 0, 555, 556, 5, 8, 0, 0, 556, 557, 3, 68, 34, 0, 557, 89, 1, 0, 0, 0, 558, 559, 5, 2, 0, 0, 559, 560, 3, 68, 34, 0, 560, 91, 1, 0, 0, 0, 561, 562, 5, 11, 0, 0, 562, 567, 3, 94, 47, 0, 563, 564, 5, 42, 0, 0, 564, 566, 3, 94, 47, 0, 565, 563, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 93, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 571, 3, 66, 33, 0, 571, 572, 5, 36, 0, 0, 572, 573, 3, 66, 33, 0, 573, 95, 1, 0, 0, 0, 574, 575, 5, 1, 0, 0, 575, 576, 3, 20, 10, 0, 576, 578, 3, 114, 57, 0, 577, 579, 3, 102, 51, 0, 578, 577, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 97, 1, 0, 0, 0, 580, 581, 5, 7, 0, 0, 581, 582, 3, 20, 10, 0, 582, 583, 3, 114, 57, 0, 583, 99, 1, 0, 0, 0, 584, 585, 5, 10, 0, 0, 585, 586, 3, 64, 32, 0, 586, 101, 1, 0, 0, 0, 587, 592, 3, 104, 52, 0, 588, 589, 5, 42, 0, 0, 589, 591, 3, 104, 52, 0, 590, 588, 1, 0, 0, 0, 591, 594, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 103, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 595, 596, 3, 70, 35, 0, 596, 597, 5, 38, 0, 0, 597, 598, 3, 74, 37, 0, 598, 105, 1, 0, 0, 0, 599, 600, 7, 6, 0, 0, 600, 107, 1, 0, 0, 0, 601, 604, 3, 110, 55, 0, 602, 604, 3, 112, 56, 0, 603, 601, 1, 0, 0, 0, 603, 602, 1, 0, 0, 0, 604, 109, 1, 0, 0, 0, 605, 607, 7, 0, 0, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 34, 0, 0, 609, 111, 1, 0, 0, 0, 610, 612, 7, 0, 0, 0, 611, 610, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 5, 33, 0, 0, 614, 113, 1, 0, 0, 0, 615, 616, 5, 32, 0, 0, 616, 115, 1, 0, 0, 0, 617, 618, 7, 7, 0, 0, 618, 117, 1, 0, 0, 0, 619, 620, 5, 5, 0, 0, 620, 621, 3, 120, 60, 0, 621, 119, 1, 0, 0, 0, 622, 623, 5, 79, 0, 0, 623, 624, 3, 2, 1, 0, 624, 625, 5, 80, 0, 0, 625, 121, 1, 0, 0, 0, 626, 627, 5, 13, 0, 0, 627, 628, 5, 111, 0, 0, 628, 123, 1, 0, 0, 0, 629, 630, 5, 3, 0, 0, 630, 633, 5, 101, 0, 0, 631, 632, 5, 55, 0, 0, 632, 634, 3, 66, 33, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 644, 1, 0, 0, 0, 635, 636, 5, 61, 0, 0, 636, 641, 3, 126, 63, 0, 637, 638, 5, 42, 0, 0, 638, 640, 3, 126, 63, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 635, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 125, 1, 0, 0, 0, 646, 647, 3, 66, 33, 0, 647, 648, 5, 38, 0, 0, 648, 650, 1, 0, 0, 0, 649, 646, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 3, 66, 33, 0, 652, 127, 1, 0, 0, 0, 653, 654, 5, 18, 0, 0, 654, 657, 3, 64, 32, 0, 655, 656, 5, 55, 0, 0, 656, 658, 3, 64, 32, 0, 657, 655, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 664, 1, 0, 0, 0, 659, 660, 5, 36, 0, 0, 660, 661, 3, 64, 32, 0, 661, 662, 5, 42, 0, 0, 662, 663, 3, 64, 32, 0, 663, 665, 1, 0, 0, 0, 664, 659, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 129, 1, 0, 0, 0, 666, 667, 5, 21, 0, 0, 667, 668, 3, 40, 20, 0, 668, 669, 5, 55, 0, 0, 669, 670, 3, 68, 34, 0, 670, 131, 1, 0, 0, 0, 671, 672, 5, 20, 0, 0, 672, 675, 3, 60, 30, 0, 673, 674, 5, 39, 0, 0, 674, 676, 3, 34, 17, 0, 675, 673, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 133, 1, 0, 0, 0, 677, 678, 7, 8, 0, 0, 678, 679, 5, 125, 0, 0, 679, 680, 3, 136, 68, 0, 680, 681, 3, 138, 69, 0, 681, 135, 1, 0, 0, 0, 682, 683, 3, 40, 20, 0, 683, 137, 1, 0, 0, 0, 684, 685, 5, 55, 0, 0, 685, 690, 3, 140, 70, 0, 686, 687, 5, 42, 0, 0, 687, 689, 3, 140, 70, 0, 688, 686, 1, 0, 0, 0, 689, 692, 1, 0, 0, 0, 690, 688, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 139, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 693, 694, 3, 16, 8, 0, 694, 141, 1, 0, 0, 0, 695, 696, 5, 23, 0, 0, 696, 697, 3, 74, 37, 0, 697, 698, 5, 55, 0, 0, 698, 699, 3, 34, 17, 0, 699, 700, 5, 61, 0, 0, 700, 701, 3, 80, 40, 0, 701, 143, 1, 0, 0, 0, 702, 703, 5, 19, 0, 0, 703, 704, 3, 20, 10, 0, 704, 705, 5, 61, 0, 0, 705, 708, 3, 80, 40, 0, 706, 707, 5, 36, 0, 0, 707, 709, 3, 64, 32, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 145, 1, 0, 0, 0, 68, 157, 166, 190, 202, 211, 219, 224, 232, 234, 239, 246, 251, 256, 266, 272, 280, 282, 293, 300, 311, 316, 318, 330, 349, 355, 365, 369, 374, 380, 382, 392, 400, 413, 417, 421, 428, 432, 439, 445, 452, 460, 468, 476, 493, 504, 515, 520, 524, 528, 533, 544, 549, 553, 567, 578, 592, 603, 606, 611, 633, 641, 644, 649, 657, 664, 675, 690, 708]
\ No newline at end of file
+[4, 1, 138, 728, 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, 3, 3, 195, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 207, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 214, 8, 5, 10, 5, 12, 5, 217, 9, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 224, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 229, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 237, 8, 5, 10, 5, 12, 5, 240, 9, 5, 1, 6, 1, 6, 3, 6, 244, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 251, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 256, 8, 6, 1, 7, 1, 7, 1, 7, 3, 7, 261, 8, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 271, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 277, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 5, 9, 285, 8, 9, 10, 9, 12, 9, 288, 9, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 298, 8, 10, 1, 10, 1, 10, 1, 10, 5, 10, 303, 8, 10, 10, 10, 12, 10, 306, 9, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 314, 8, 11, 10, 11, 12, 11, 317, 9, 11, 1, 11, 1, 11, 3, 11, 321, 8, 11, 3, 11, 323, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 5, 13, 333, 8, 13, 10, 13, 12, 13, 336, 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, 352, 8, 17, 10, 17, 12, 17, 355, 9, 17, 1, 18, 1, 18, 1, 18, 3, 18, 360, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 5, 19, 367, 8, 19, 10, 19, 12, 19, 370, 9, 19, 1, 20, 1, 20, 1, 20, 3, 20, 375, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 381, 8, 21, 10, 21, 12, 21, 384, 9, 21, 1, 21, 3, 21, 387, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 392, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 398, 8, 22, 3, 22, 400, 8, 22, 1, 23, 1, 23, 1, 24, 1, 24, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 410, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 416, 8, 27, 10, 27, 12, 27, 419, 9, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 429, 8, 29, 10, 29, 12, 29, 432, 9, 29, 1, 29, 3, 29, 435, 8, 29, 1, 29, 1, 29, 3, 29, 439, 8, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 3, 31, 446, 8, 31, 1, 31, 1, 31, 3, 31, 450, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 455, 8, 32, 10, 32, 12, 32, 458, 9, 32, 1, 33, 1, 33, 1, 33, 3, 33, 463, 8, 33, 1, 34, 1, 34, 1, 34, 5, 34, 468, 8, 34, 10, 34, 12, 34, 471, 9, 34, 1, 35, 1, 35, 1, 35, 5, 35, 476, 8, 35, 10, 35, 12, 35, 479, 9, 35, 1, 36, 1, 36, 1, 36, 5, 36, 484, 8, 36, 10, 36, 12, 36, 487, 9, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 494, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 509, 8, 39, 10, 39, 12, 39, 512, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 520, 8, 39, 10, 39, 12, 39, 523, 9, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 531, 8, 39, 10, 39, 12, 39, 534, 9, 39, 1, 39, 1, 39, 3, 39, 538, 8, 39, 1, 40, 1, 40, 3, 40, 542, 8, 40, 1, 41, 1, 41, 3, 41, 546, 8, 41, 1, 42, 1, 42, 1, 42, 3, 42, 551, 8, 42, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 560, 8, 44, 10, 44, 12, 44, 563, 9, 44, 1, 45, 1, 45, 3, 45, 567, 8, 45, 1, 45, 1, 45, 3, 45, 571, 8, 45, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 583, 8, 48, 10, 48, 12, 48, 586, 9, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 596, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 5, 53, 608, 8, 53, 10, 53, 12, 53, 611, 9, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 3, 56, 621, 8, 56, 1, 57, 3, 57, 624, 8, 57, 1, 57, 1, 57, 1, 58, 3, 58, 629, 8, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 651, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 657, 8, 64, 10, 64, 12, 64, 660, 9, 64, 3, 64, 662, 8, 64, 1, 65, 1, 65, 1, 65, 3, 65, 667, 8, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 675, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 682, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 693, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 706, 8, 71, 10, 71, 12, 71, 709, 9, 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 726, 8, 74, 1, 74, 0, 4, 2, 10, 18, 20, 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, 69, 70, 1, 0, 71, 73, 2, 0, 32, 32, 90, 90, 1, 0, 81, 82, 2, 0, 37, 37, 43, 43, 2, 0, 46, 46, 49, 49, 2, 0, 45, 45, 60, 60, 2, 0, 62, 62, 64, 68, 2, 0, 17, 17, 25, 26, 758, 0, 150, 1, 0, 0, 0, 2, 153, 1, 0, 0, 0, 4, 170, 1, 0, 0, 0, 6, 194, 1, 0, 0, 0, 8, 196, 1, 0, 0, 0, 10, 228, 1, 0, 0, 0, 12, 255, 1, 0, 0, 0, 14, 257, 1, 0, 0, 0, 16, 270, 1, 0, 0, 0, 18, 276, 1, 0, 0, 0, 20, 297, 1, 0, 0, 0, 22, 307, 1, 0, 0, 0, 24, 326, 1, 0, 0, 0, 26, 328, 1, 0, 0, 0, 28, 339, 1, 0, 0, 0, 30, 343, 1, 0, 0, 0, 32, 345, 1, 0, 0, 0, 34, 348, 1, 0, 0, 0, 36, 359, 1, 0, 0, 0, 38, 363, 1, 0, 0, 0, 40, 371, 1, 0, 0, 0, 42, 376, 1, 0, 0, 0, 44, 399, 1, 0, 0, 0, 46, 401, 1, 0, 0, 0, 48, 403, 1, 0, 0, 0, 50, 405, 1, 0, 0, 0, 52, 409, 1, 0, 0, 0, 54, 411, 1, 0, 0, 0, 56, 420, 1, 0, 0, 0, 58, 424, 1, 0, 0, 0, 60, 440, 1, 0, 0, 0, 62, 443, 1, 0, 0, 0, 64, 451, 1, 0, 0, 0, 66, 459, 1, 0, 0, 0, 68, 464, 1, 0, 0, 0, 70, 472, 1, 0, 0, 0, 72, 480, 1, 0, 0, 0, 74, 488, 1, 0, 0, 0, 76, 493, 1, 0, 0, 0, 78, 537, 1, 0, 0, 0, 80, 541, 1, 0, 0, 0, 82, 545, 1, 0, 0, 0, 84, 550, 1, 0, 0, 0, 86, 552, 1, 0, 0, 0, 88, 555, 1, 0, 0, 0, 90, 564, 1, 0, 0, 0, 92, 572, 1, 0, 0, 0, 94, 575, 1, 0, 0, 0, 96, 578, 1, 0, 0, 0, 98, 587, 1, 0, 0, 0, 100, 591, 1, 0, 0, 0, 102, 597, 1, 0, 0, 0, 104, 601, 1, 0, 0, 0, 106, 604, 1, 0, 0, 0, 108, 612, 1, 0, 0, 0, 110, 616, 1, 0, 0, 0, 112, 620, 1, 0, 0, 0, 114, 623, 1, 0, 0, 0, 116, 628, 1, 0, 0, 0, 118, 632, 1, 0, 0, 0, 120, 634, 1, 0, 0, 0, 122, 636, 1, 0, 0, 0, 124, 639, 1, 0, 0, 0, 126, 643, 1, 0, 0, 0, 128, 646, 1, 0, 0, 0, 130, 666, 1, 0, 0, 0, 132, 670, 1, 0, 0, 0, 134, 683, 1, 0, 0, 0, 136, 688, 1, 0, 0, 0, 138, 694, 1, 0, 0, 0, 140, 699, 1, 0, 0, 0, 142, 701, 1, 0, 0, 0, 144, 710, 1, 0, 0, 0, 146, 712, 1, 0, 0, 0, 148, 719, 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, 31, 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, 122, 61, 0, 165, 171, 3, 42, 21, 0, 166, 171, 3, 32, 16, 0, 167, 171, 3, 126, 63, 0, 168, 169, 4, 2, 1, 0, 169, 171, 3, 58, 29, 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, 195, 3, 60, 30, 0, 173, 195, 3, 8, 4, 0, 174, 195, 3, 92, 46, 0, 175, 195, 3, 86, 43, 0, 176, 195, 3, 62, 31, 0, 177, 195, 3, 88, 44, 0, 178, 195, 3, 94, 47, 0, 179, 195, 3, 96, 48, 0, 180, 195, 3, 100, 50, 0, 181, 195, 3, 102, 51, 0, 182, 195, 3, 128, 64, 0, 183, 195, 3, 104, 52, 0, 184, 195, 3, 138, 69, 0, 185, 195, 3, 132, 66, 0, 186, 187, 4, 3, 2, 0, 187, 195, 3, 148, 74, 0, 188, 189, 4, 3, 3, 0, 189, 195, 3, 136, 68, 0, 190, 191, 4, 3, 4, 0, 191, 195, 3, 134, 67, 0, 192, 193, 4, 3, 5, 0, 193, 195, 3, 146, 73, 0, 194, 172, 1, 0, 0, 0, 194, 173, 1, 0, 0, 0, 194, 174, 1, 0, 0, 0, 194, 175, 1, 0, 0, 0, 194, 176, 1, 0, 0, 0, 194, 177, 1, 0, 0, 0, 194, 178, 1, 0, 0, 0, 194, 179, 1, 0, 0, 0, 194, 180, 1, 0, 0, 0, 194, 181, 1, 0, 0, 0, 194, 182, 1, 0, 0, 0, 194, 183, 1, 0, 0, 0, 194, 184, 1, 0, 0, 0, 194, 185, 1, 0, 0, 0, 194, 186, 1, 0, 0, 0, 194, 188, 1, 0, 0, 0, 194, 190, 1, 0, 0, 0, 194, 192, 1, 0, 0, 0, 195, 7, 1, 0, 0, 0, 196, 197, 5, 16, 0, 0, 197, 198, 3, 10, 5, 0, 198, 9, 1, 0, 0, 0, 199, 200, 6, 5, -1, 0, 200, 201, 5, 52, 0, 0, 201, 229, 3, 10, 5, 8, 202, 229, 3, 16, 8, 0, 203, 229, 3, 12, 6, 0, 204, 206, 3, 16, 8, 0, 205, 207, 5, 52, 0, 0, 206, 205, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 209, 5, 47, 0, 0, 209, 210, 5, 51, 0, 0, 210, 215, 3, 16, 8, 0, 211, 212, 5, 42, 0, 0, 212, 214, 3, 16, 8, 0, 213, 211, 1, 0, 0, 0, 214, 217, 1, 0, 0, 0, 215, 213, 1, 0, 0, 0, 215, 216, 1, 0, 0, 0, 216, 218, 1, 0, 0, 0, 217, 215, 1, 0, 0, 0, 218, 219, 5, 59, 0, 0, 219, 229, 1, 0, 0, 0, 220, 221, 3, 16, 8, 0, 221, 223, 5, 48, 0, 0, 222, 224, 5, 52, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 225, 1, 0, 0, 0, 225, 226, 5, 53, 0, 0, 226, 229, 1, 0, 0, 0, 227, 229, 3, 14, 7, 0, 228, 199, 1, 0, 0, 0, 228, 202, 1, 0, 0, 0, 228, 203, 1, 0, 0, 0, 228, 204, 1, 0, 0, 0, 228, 220, 1, 0, 0, 0, 228, 227, 1, 0, 0, 0, 229, 238, 1, 0, 0, 0, 230, 231, 10, 5, 0, 0, 231, 232, 5, 35, 0, 0, 232, 237, 3, 10, 5, 6, 233, 234, 10, 4, 0, 0, 234, 235, 5, 56, 0, 0, 235, 237, 3, 10, 5, 5, 236, 230, 1, 0, 0, 0, 236, 233, 1, 0, 0, 0, 237, 240, 1, 0, 0, 0, 238, 236, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 11, 1, 0, 0, 0, 240, 238, 1, 0, 0, 0, 241, 243, 3, 16, 8, 0, 242, 244, 5, 52, 0, 0, 243, 242, 1, 0, 0, 0, 243, 244, 1, 0, 0, 0, 244, 245, 1, 0, 0, 0, 245, 246, 5, 50, 0, 0, 246, 247, 3, 118, 59, 0, 247, 256, 1, 0, 0, 0, 248, 250, 3, 16, 8, 0, 249, 251, 5, 52, 0, 0, 250, 249, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 252, 1, 0, 0, 0, 252, 253, 5, 58, 0, 0, 253, 254, 3, 118, 59, 0, 254, 256, 1, 0, 0, 0, 255, 241, 1, 0, 0, 0, 255, 248, 1, 0, 0, 0, 256, 13, 1, 0, 0, 0, 257, 260, 3, 68, 34, 0, 258, 259, 5, 40, 0, 0, 259, 261, 3, 30, 15, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 262, 1, 0, 0, 0, 262, 263, 5, 41, 0, 0, 263, 264, 3, 78, 39, 0, 264, 15, 1, 0, 0, 0, 265, 271, 3, 18, 9, 0, 266, 267, 3, 18, 9, 0, 267, 268, 3, 120, 60, 0, 268, 269, 3, 18, 9, 0, 269, 271, 1, 0, 0, 0, 270, 265, 1, 0, 0, 0, 270, 266, 1, 0, 0, 0, 271, 17, 1, 0, 0, 0, 272, 273, 6, 9, -1, 0, 273, 277, 3, 20, 10, 0, 274, 275, 7, 0, 0, 0, 275, 277, 3, 18, 9, 3, 276, 272, 1, 0, 0, 0, 276, 274, 1, 0, 0, 0, 277, 286, 1, 0, 0, 0, 278, 279, 10, 2, 0, 0, 279, 280, 7, 1, 0, 0, 280, 285, 3, 18, 9, 3, 281, 282, 10, 1, 0, 0, 282, 283, 7, 0, 0, 0, 283, 285, 3, 18, 9, 2, 284, 278, 1, 0, 0, 0, 284, 281, 1, 0, 0, 0, 285, 288, 1, 0, 0, 0, 286, 284, 1, 0, 0, 0, 286, 287, 1, 0, 0, 0, 287, 19, 1, 0, 0, 0, 288, 286, 1, 0, 0, 0, 289, 290, 6, 10, -1, 0, 290, 298, 3, 78, 39, 0, 291, 298, 3, 68, 34, 0, 292, 298, 3, 22, 11, 0, 293, 294, 5, 51, 0, 0, 294, 295, 3, 10, 5, 0, 295, 296, 5, 59, 0, 0, 296, 298, 1, 0, 0, 0, 297, 289, 1, 0, 0, 0, 297, 291, 1, 0, 0, 0, 297, 292, 1, 0, 0, 0, 297, 293, 1, 0, 0, 0, 298, 304, 1, 0, 0, 0, 299, 300, 10, 1, 0, 0, 300, 301, 5, 40, 0, 0, 301, 303, 3, 30, 15, 0, 302, 299, 1, 0, 0, 0, 303, 306, 1, 0, 0, 0, 304, 302, 1, 0, 0, 0, 304, 305, 1, 0, 0, 0, 305, 21, 1, 0, 0, 0, 306, 304, 1, 0, 0, 0, 307, 308, 3, 24, 12, 0, 308, 322, 5, 51, 0, 0, 309, 323, 5, 71, 0, 0, 310, 315, 3, 10, 5, 0, 311, 312, 5, 42, 0, 0, 312, 314, 3, 10, 5, 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, 320, 1, 0, 0, 0, 317, 315, 1, 0, 0, 0, 318, 319, 5, 42, 0, 0, 319, 321, 3, 26, 13, 0, 320, 318, 1, 0, 0, 0, 320, 321, 1, 0, 0, 0, 321, 323, 1, 0, 0, 0, 322, 309, 1, 0, 0, 0, 322, 310, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 325, 5, 59, 0, 0, 325, 23, 1, 0, 0, 0, 326, 327, 3, 84, 42, 0, 327, 25, 1, 0, 0, 0, 328, 329, 5, 74, 0, 0, 329, 334, 3, 28, 14, 0, 330, 331, 5, 42, 0, 0, 331, 333, 3, 28, 14, 0, 332, 330, 1, 0, 0, 0, 333, 336, 1, 0, 0, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 337, 1, 0, 0, 0, 336, 334, 1, 0, 0, 0, 337, 338, 5, 75, 0, 0, 338, 27, 1, 0, 0, 0, 339, 340, 3, 118, 59, 0, 340, 341, 5, 41, 0, 0, 341, 342, 3, 78, 39, 0, 342, 29, 1, 0, 0, 0, 343, 344, 3, 74, 37, 0, 344, 31, 1, 0, 0, 0, 345, 346, 5, 12, 0, 0, 346, 347, 3, 34, 17, 0, 347, 33, 1, 0, 0, 0, 348, 353, 3, 36, 18, 0, 349, 350, 5, 42, 0, 0, 350, 352, 3, 36, 18, 0, 351, 349, 1, 0, 0, 0, 352, 355, 1, 0, 0, 0, 353, 351, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 35, 1, 0, 0, 0, 355, 353, 1, 0, 0, 0, 356, 357, 3, 68, 34, 0, 357, 358, 5, 38, 0, 0, 358, 360, 1, 0, 0, 0, 359, 356, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 362, 3, 10, 5, 0, 362, 37, 1, 0, 0, 0, 363, 368, 3, 40, 20, 0, 364, 365, 5, 42, 0, 0, 365, 367, 3, 40, 20, 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, 39, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 374, 3, 68, 34, 0, 372, 373, 5, 38, 0, 0, 373, 375, 3, 10, 5, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 41, 1, 0, 0, 0, 376, 377, 5, 6, 0, 0, 377, 382, 3, 44, 22, 0, 378, 379, 5, 42, 0, 0, 379, 381, 3, 44, 22, 0, 380, 378, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 380, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 386, 1, 0, 0, 0, 384, 382, 1, 0, 0, 0, 385, 387, 3, 52, 26, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 43, 1, 0, 0, 0, 388, 389, 3, 46, 23, 0, 389, 390, 5, 41, 0, 0, 390, 392, 1, 0, 0, 0, 391, 388, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 400, 3, 50, 25, 0, 394, 397, 3, 50, 25, 0, 395, 396, 5, 40, 0, 0, 396, 398, 3, 48, 24, 0, 397, 395, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 391, 1, 0, 0, 0, 399, 394, 1, 0, 0, 0, 400, 45, 1, 0, 0, 0, 401, 402, 7, 2, 0, 0, 402, 47, 1, 0, 0, 0, 403, 404, 7, 2, 0, 0, 404, 49, 1, 0, 0, 0, 405, 406, 7, 2, 0, 0, 406, 51, 1, 0, 0, 0, 407, 410, 3, 54, 27, 0, 408, 410, 3, 56, 28, 0, 409, 407, 1, 0, 0, 0, 409, 408, 1, 0, 0, 0, 410, 53, 1, 0, 0, 0, 411, 412, 5, 89, 0, 0, 412, 417, 5, 90, 0, 0, 413, 414, 5, 42, 0, 0, 414, 416, 5, 90, 0, 0, 415, 413, 1, 0, 0, 0, 416, 419, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 55, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 420, 421, 5, 79, 0, 0, 421, 422, 3, 54, 27, 0, 422, 423, 5, 80, 0, 0, 423, 57, 1, 0, 0, 0, 424, 425, 5, 22, 0, 0, 425, 430, 3, 44, 22, 0, 426, 427, 5, 42, 0, 0, 427, 429, 3, 44, 22, 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, 434, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 435, 3, 64, 32, 0, 434, 433, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 438, 1, 0, 0, 0, 436, 437, 5, 39, 0, 0, 437, 439, 3, 34, 17, 0, 438, 436, 1, 0, 0, 0, 438, 439, 1, 0, 0, 0, 439, 59, 1, 0, 0, 0, 440, 441, 5, 4, 0, 0, 441, 442, 3, 34, 17, 0, 442, 61, 1, 0, 0, 0, 443, 445, 5, 15, 0, 0, 444, 446, 3, 64, 32, 0, 445, 444, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 449, 1, 0, 0, 0, 447, 448, 5, 39, 0, 0, 448, 450, 3, 34, 17, 0, 449, 447, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 63, 1, 0, 0, 0, 451, 456, 3, 66, 33, 0, 452, 453, 5, 42, 0, 0, 453, 455, 3, 66, 33, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 65, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 462, 3, 36, 18, 0, 460, 461, 5, 16, 0, 0, 461, 463, 3, 10, 5, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 67, 1, 0, 0, 0, 464, 469, 3, 84, 42, 0, 465, 466, 5, 44, 0, 0, 466, 468, 3, 84, 42, 0, 467, 465, 1, 0, 0, 0, 468, 471, 1, 0, 0, 0, 469, 467, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 69, 1, 0, 0, 0, 471, 469, 1, 0, 0, 0, 472, 477, 3, 76, 38, 0, 473, 474, 5, 44, 0, 0, 474, 476, 3, 76, 38, 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, 71, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 485, 3, 70, 35, 0, 481, 482, 5, 42, 0, 0, 482, 484, 3, 70, 35, 0, 483, 481, 1, 0, 0, 0, 484, 487, 1, 0, 0, 0, 485, 483, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 73, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 489, 7, 3, 0, 0, 489, 75, 1, 0, 0, 0, 490, 494, 5, 94, 0, 0, 491, 494, 3, 80, 40, 0, 492, 494, 3, 82, 41, 0, 493, 490, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 493, 492, 1, 0, 0, 0, 494, 77, 1, 0, 0, 0, 495, 538, 5, 53, 0, 0, 496, 497, 3, 116, 58, 0, 497, 498, 5, 81, 0, 0, 498, 538, 1, 0, 0, 0, 499, 538, 3, 114, 57, 0, 500, 538, 3, 116, 58, 0, 501, 538, 3, 110, 55, 0, 502, 538, 3, 80, 40, 0, 503, 538, 3, 118, 59, 0, 504, 505, 5, 79, 0, 0, 505, 510, 3, 112, 56, 0, 506, 507, 5, 42, 0, 0, 507, 509, 3, 112, 56, 0, 508, 506, 1, 0, 0, 0, 509, 512, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 513, 1, 0, 0, 0, 512, 510, 1, 0, 0, 0, 513, 514, 5, 80, 0, 0, 514, 538, 1, 0, 0, 0, 515, 516, 5, 79, 0, 0, 516, 521, 3, 110, 55, 0, 517, 518, 5, 42, 0, 0, 518, 520, 3, 110, 55, 0, 519, 517, 1, 0, 0, 0, 520, 523, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 524, 525, 5, 80, 0, 0, 525, 538, 1, 0, 0, 0, 526, 527, 5, 79, 0, 0, 527, 532, 3, 118, 59, 0, 528, 529, 5, 42, 0, 0, 529, 531, 3, 118, 59, 0, 530, 528, 1, 0, 0, 0, 531, 534, 1, 0, 0, 0, 532, 530, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 535, 1, 0, 0, 0, 534, 532, 1, 0, 0, 0, 535, 536, 5, 80, 0, 0, 536, 538, 1, 0, 0, 0, 537, 495, 1, 0, 0, 0, 537, 496, 1, 0, 0, 0, 537, 499, 1, 0, 0, 0, 537, 500, 1, 0, 0, 0, 537, 501, 1, 0, 0, 0, 537, 502, 1, 0, 0, 0, 537, 503, 1, 0, 0, 0, 537, 504, 1, 0, 0, 0, 537, 515, 1, 0, 0, 0, 537, 526, 1, 0, 0, 0, 538, 79, 1, 0, 0, 0, 539, 542, 5, 57, 0, 0, 540, 542, 5, 77, 0, 0, 541, 539, 1, 0, 0, 0, 541, 540, 1, 0, 0, 0, 542, 81, 1, 0, 0, 0, 543, 546, 5, 76, 0, 0, 544, 546, 5, 78, 0, 0, 545, 543, 1, 0, 0, 0, 545, 544, 1, 0, 0, 0, 546, 83, 1, 0, 0, 0, 547, 551, 3, 74, 37, 0, 548, 551, 3, 80, 40, 0, 549, 551, 3, 82, 41, 0, 550, 547, 1, 0, 0, 0, 550, 548, 1, 0, 0, 0, 550, 549, 1, 0, 0, 0, 551, 85, 1, 0, 0, 0, 552, 553, 5, 9, 0, 0, 553, 554, 3, 78, 39, 0, 554, 87, 1, 0, 0, 0, 555, 556, 5, 14, 0, 0, 556, 561, 3, 90, 45, 0, 557, 558, 5, 42, 0, 0, 558, 560, 3, 90, 45, 0, 559, 557, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 89, 1, 0, 0, 0, 563, 561, 1, 0, 0, 0, 564, 566, 3, 10, 5, 0, 565, 567, 7, 4, 0, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 570, 1, 0, 0, 0, 568, 569, 5, 54, 0, 0, 569, 571, 7, 5, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 91, 1, 0, 0, 0, 572, 573, 5, 8, 0, 0, 573, 574, 3, 72, 36, 0, 574, 93, 1, 0, 0, 0, 575, 576, 5, 2, 0, 0, 576, 577, 3, 72, 36, 0, 577, 95, 1, 0, 0, 0, 578, 579, 5, 11, 0, 0, 579, 584, 3, 98, 49, 0, 580, 581, 5, 42, 0, 0, 581, 583, 3, 98, 49, 0, 582, 580, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 97, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 588, 3, 70, 35, 0, 588, 589, 5, 36, 0, 0, 589, 590, 3, 70, 35, 0, 590, 99, 1, 0, 0, 0, 591, 592, 5, 1, 0, 0, 592, 593, 3, 20, 10, 0, 593, 595, 3, 118, 59, 0, 594, 596, 3, 106, 53, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 101, 1, 0, 0, 0, 597, 598, 5, 7, 0, 0, 598, 599, 3, 20, 10, 0, 599, 600, 3, 118, 59, 0, 600, 103, 1, 0, 0, 0, 601, 602, 5, 10, 0, 0, 602, 603, 3, 68, 34, 0, 603, 105, 1, 0, 0, 0, 604, 609, 3, 108, 54, 0, 605, 606, 5, 42, 0, 0, 606, 608, 3, 108, 54, 0, 607, 605, 1, 0, 0, 0, 608, 611, 1, 0, 0, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 107, 1, 0, 0, 0, 611, 609, 1, 0, 0, 0, 612, 613, 3, 74, 37, 0, 613, 614, 5, 38, 0, 0, 614, 615, 3, 78, 39, 0, 615, 109, 1, 0, 0, 0, 616, 617, 7, 6, 0, 0, 617, 111, 1, 0, 0, 0, 618, 621, 3, 114, 57, 0, 619, 621, 3, 116, 58, 0, 620, 618, 1, 0, 0, 0, 620, 619, 1, 0, 0, 0, 621, 113, 1, 0, 0, 0, 622, 624, 7, 0, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 5, 34, 0, 0, 626, 115, 1, 0, 0, 0, 627, 629, 7, 0, 0, 0, 628, 627, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 5, 33, 0, 0, 631, 117, 1, 0, 0, 0, 632, 633, 5, 32, 0, 0, 633, 119, 1, 0, 0, 0, 634, 635, 7, 7, 0, 0, 635, 121, 1, 0, 0, 0, 636, 637, 5, 5, 0, 0, 637, 638, 3, 124, 62, 0, 638, 123, 1, 0, 0, 0, 639, 640, 5, 79, 0, 0, 640, 641, 3, 2, 1, 0, 641, 642, 5, 80, 0, 0, 642, 125, 1, 0, 0, 0, 643, 644, 5, 13, 0, 0, 644, 645, 5, 111, 0, 0, 645, 127, 1, 0, 0, 0, 646, 647, 5, 3, 0, 0, 647, 650, 5, 101, 0, 0, 648, 649, 5, 55, 0, 0, 649, 651, 3, 70, 35, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 661, 1, 0, 0, 0, 652, 653, 5, 61, 0, 0, 653, 658, 3, 130, 65, 0, 654, 655, 5, 42, 0, 0, 655, 657, 3, 130, 65, 0, 656, 654, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 656, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 662, 1, 0, 0, 0, 660, 658, 1, 0, 0, 0, 661, 652, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 129, 1, 0, 0, 0, 663, 664, 3, 70, 35, 0, 664, 665, 5, 38, 0, 0, 665, 667, 1, 0, 0, 0, 666, 663, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 3, 70, 35, 0, 669, 131, 1, 0, 0, 0, 670, 671, 5, 18, 0, 0, 671, 674, 3, 68, 34, 0, 672, 673, 5, 55, 0, 0, 673, 675, 3, 68, 34, 0, 674, 672, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 681, 1, 0, 0, 0, 676, 677, 5, 36, 0, 0, 677, 678, 3, 68, 34, 0, 678, 679, 5, 42, 0, 0, 679, 680, 3, 68, 34, 0, 680, 682, 1, 0, 0, 0, 681, 676, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 133, 1, 0, 0, 0, 683, 684, 5, 21, 0, 0, 684, 685, 3, 44, 22, 0, 685, 686, 5, 55, 0, 0, 686, 687, 3, 72, 36, 0, 687, 135, 1, 0, 0, 0, 688, 689, 5, 20, 0, 0, 689, 692, 3, 64, 32, 0, 690, 691, 5, 39, 0, 0, 691, 693, 3, 34, 17, 0, 692, 690, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 137, 1, 0, 0, 0, 694, 695, 7, 8, 0, 0, 695, 696, 5, 125, 0, 0, 696, 697, 3, 140, 70, 0, 697, 698, 3, 142, 71, 0, 698, 139, 1, 0, 0, 0, 699, 700, 3, 44, 22, 0, 700, 141, 1, 0, 0, 0, 701, 702, 5, 55, 0, 0, 702, 707, 3, 144, 72, 0, 703, 704, 5, 42, 0, 0, 704, 706, 3, 144, 72, 0, 705, 703, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 143, 1, 0, 0, 0, 709, 707, 1, 0, 0, 0, 710, 711, 3, 16, 8, 0, 711, 145, 1, 0, 0, 0, 712, 713, 5, 23, 0, 0, 713, 714, 3, 78, 39, 0, 714, 715, 5, 55, 0, 0, 715, 716, 3, 38, 19, 0, 716, 717, 5, 61, 0, 0, 717, 718, 3, 84, 42, 0, 718, 147, 1, 0, 0, 0, 719, 720, 5, 19, 0, 0, 720, 721, 3, 20, 10, 0, 721, 722, 5, 61, 0, 0, 722, 725, 3, 84, 42, 0, 723, 724, 5, 36, 0, 0, 724, 726, 3, 68, 34, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 149, 1, 0, 0, 0, 70, 161, 170, 194, 206, 215, 223, 228, 236, 238, 243, 250, 255, 260, 270, 276, 284, 286, 297, 304, 315, 320, 322, 334, 353, 359, 368, 374, 382, 386, 391, 397, 399, 409, 417, 430, 434, 438, 445, 449, 456, 462, 469, 477, 485, 493, 510, 521, 532, 537, 541, 545, 550, 561, 566, 570, 584, 595, 609, 620, 623, 628, 650, 658, 661, 666, 674, 681, 692, 707, 725]
\ 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 2b4f3e5b786d3..bce921cf3a145 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
@@ -61,42 +61,44 @@ public class EsqlBaseParser extends ParserConfig {
RULE_matchBooleanExpression = 7, RULE_valueExpression = 8, RULE_operatorExpression = 9,
RULE_primaryExpression = 10, RULE_functionExpression = 11, RULE_functionName = 12,
RULE_mapExpression = 13, RULE_entryExpression = 14, RULE_dataType = 15,
- RULE_rowCommand = 16, RULE_fields = 17, RULE_field = 18, RULE_fromCommand = 19,
- RULE_indexPattern = 20, RULE_clusterString = 21, RULE_selectorString = 22,
- RULE_indexString = 23, RULE_metadata = 24, RULE_metadataOption = 25, RULE_deprecated_metadata = 26,
- RULE_metricsCommand = 27, RULE_evalCommand = 28, RULE_statsCommand = 29,
- RULE_aggFields = 30, RULE_aggField = 31, RULE_qualifiedName = 32, RULE_qualifiedNamePattern = 33,
- RULE_qualifiedNamePatterns = 34, RULE_identifier = 35, RULE_identifierPattern = 36,
- RULE_constant = 37, RULE_parameter = 38, RULE_doubleParameter = 39, RULE_identifierOrParameter = 40,
- RULE_limitCommand = 41, RULE_sortCommand = 42, RULE_orderExpression = 43,
- RULE_keepCommand = 44, RULE_dropCommand = 45, RULE_renameCommand = 46,
- RULE_renameClause = 47, RULE_dissectCommand = 48, RULE_grokCommand = 49,
- RULE_mvExpandCommand = 50, RULE_commandOptions = 51, RULE_commandOption = 52,
- RULE_booleanValue = 53, RULE_numericValue = 54, RULE_decimalValue = 55,
- RULE_integerValue = 56, RULE_string = 57, RULE_comparisonOperator = 58,
- RULE_explainCommand = 59, RULE_subqueryExpression = 60, RULE_showCommand = 61,
- RULE_enrichCommand = 62, RULE_enrichWithClause = 63, RULE_changePointCommand = 64,
- RULE_lookupCommand = 65, RULE_inlinestatsCommand = 66, RULE_joinCommand = 67,
- RULE_joinTarget = 68, RULE_joinCondition = 69, RULE_joinPredicate = 70,
- RULE_rerankCommand = 71, RULE_completionCommand = 72;
+ RULE_rowCommand = 16, RULE_fields = 17, RULE_field = 18, RULE_rerankFields = 19,
+ RULE_rerankField = 20, RULE_fromCommand = 21, RULE_indexPattern = 22,
+ RULE_clusterString = 23, RULE_selectorString = 24, RULE_indexString = 25,
+ RULE_metadata = 26, RULE_metadataOption = 27, RULE_deprecated_metadata = 28,
+ RULE_metricsCommand = 29, RULE_evalCommand = 30, RULE_statsCommand = 31,
+ RULE_aggFields = 32, RULE_aggField = 33, RULE_qualifiedName = 34, RULE_qualifiedNamePattern = 35,
+ RULE_qualifiedNamePatterns = 36, RULE_identifier = 37, RULE_identifierPattern = 38,
+ RULE_constant = 39, RULE_parameter = 40, RULE_doubleParameter = 41, RULE_identifierOrParameter = 42,
+ RULE_limitCommand = 43, RULE_sortCommand = 44, RULE_orderExpression = 45,
+ RULE_keepCommand = 46, RULE_dropCommand = 47, RULE_renameCommand = 48,
+ RULE_renameClause = 49, RULE_dissectCommand = 50, RULE_grokCommand = 51,
+ RULE_mvExpandCommand = 52, RULE_commandOptions = 53, RULE_commandOption = 54,
+ RULE_booleanValue = 55, RULE_numericValue = 56, RULE_decimalValue = 57,
+ RULE_integerValue = 58, RULE_string = 59, RULE_comparisonOperator = 60,
+ RULE_explainCommand = 61, RULE_subqueryExpression = 62, RULE_showCommand = 63,
+ RULE_enrichCommand = 64, RULE_enrichWithClause = 65, RULE_changePointCommand = 66,
+ RULE_lookupCommand = 67, RULE_inlinestatsCommand = 68, RULE_joinCommand = 69,
+ RULE_joinTarget = 70, RULE_joinCondition = 71, RULE_joinPredicate = 72,
+ RULE_rerankCommand = 73, RULE_completionCommand = 74;
private static String[] makeRuleNames() {
return new String[] {
"singleStatement", "query", "sourceCommand", "processingCommand", "whereCommand",
"booleanExpression", "regexBooleanExpression", "matchBooleanExpression",
"valueExpression", "operatorExpression", "primaryExpression", "functionExpression",
"functionName", "mapExpression", "entryExpression", "dataType", "rowCommand",
- "fields", "field", "fromCommand", "indexPattern", "clusterString", "selectorString",
- "indexString", "metadata", "metadataOption", "deprecated_metadata", "metricsCommand",
- "evalCommand", "statsCommand", "aggFields", "aggField", "qualifiedName",
- "qualifiedNamePattern", "qualifiedNamePatterns", "identifier", "identifierPattern",
- "constant", "parameter", "doubleParameter", "identifierOrParameter",
- "limitCommand", "sortCommand", "orderExpression", "keepCommand", "dropCommand",
- "renameCommand", "renameClause", "dissectCommand", "grokCommand", "mvExpandCommand",
- "commandOptions", "commandOption", "booleanValue", "numericValue", "decimalValue",
- "integerValue", "string", "comparisonOperator", "explainCommand", "subqueryExpression",
- "showCommand", "enrichCommand", "enrichWithClause", "changePointCommand",
- "lookupCommand", "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition",
- "joinPredicate", "rerankCommand", "completionCommand"
+ "fields", "field", "rerankFields", "rerankField", "fromCommand", "indexPattern",
+ "clusterString", "selectorString", "indexString", "metadata", "metadataOption",
+ "deprecated_metadata", "metricsCommand", "evalCommand", "statsCommand",
+ "aggFields", "aggField", "qualifiedName", "qualifiedNamePattern", "qualifiedNamePatterns",
+ "identifier", "identifierPattern", "constant", "parameter", "doubleParameter",
+ "identifierOrParameter", "limitCommand", "sortCommand", "orderExpression",
+ "keepCommand", "dropCommand", "renameCommand", "renameClause", "dissectCommand",
+ "grokCommand", "mvExpandCommand", "commandOptions", "commandOption",
+ "booleanValue", "numericValue", "decimalValue", "integerValue", "string",
+ "comparisonOperator", "explainCommand", "subqueryExpression", "showCommand",
+ "enrichCommand", "enrichWithClause", "changePointCommand", "lookupCommand",
+ "inlinestatsCommand", "joinCommand", "joinTarget", "joinCondition", "joinPredicate",
+ "rerankCommand", "completionCommand"
};
}
public static final String[] ruleNames = makeRuleNames();
@@ -236,9 +238,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 +336,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 +351,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 +418,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;
@@ -549,140 +551,140 @@ public final ProcessingCommandContext processingCommand() throws RecognitionExce
ProcessingCommandContext _localctx = new ProcessingCommandContext(_ctx, getState());
enterRule(_localctx, 6, RULE_processingCommand);
try {
- setState(190);
+ setState(194);
_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);
changePointCommand();
}
break;
case 15:
enterOuterAlt(_localctx, 15);
{
- setState(182);
+ setState(186);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(183);
+ setState(187);
completionCommand();
}
break;
case 16:
enterOuterAlt(_localctx, 16);
{
- setState(184);
+ setState(188);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(185);
+ setState(189);
inlinestatsCommand();
}
break;
case 17:
enterOuterAlt(_localctx, 17);
{
- setState(186);
+ setState(190);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(187);
+ setState(191);
lookupCommand();
}
break;
case 18:
enterOuterAlt(_localctx, 18);
{
- setState(188);
+ setState(192);
if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()");
- setState(189);
+ setState(193);
rerankCommand();
}
break;
@@ -731,9 +733,9 @@ public final WhereCommandContext whereCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(192);
+ setState(196);
match(WHERE);
- setState(193);
+ setState(197);
booleanExpression(0);
}
}
@@ -949,7 +951,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(224);
+ setState(228);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) {
case 1:
@@ -958,9 +960,9 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(196);
+ setState(200);
match(NOT);
- setState(197);
+ setState(201);
booleanExpression(8);
}
break;
@@ -969,7 +971,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new BooleanDefaultContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(198);
+ setState(202);
valueExpression();
}
break;
@@ -978,7 +980,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new RegexExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(199);
+ setState(203);
regexBooleanExpression();
}
break;
@@ -987,41 +989,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new LogicalInContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(200);
+ setState(204);
valueExpression();
- setState(202);
+ setState(206);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(201);
+ setState(205);
match(NOT);
}
}
- setState(204);
+ setState(208);
match(IN);
- setState(205);
+ setState(209);
match(LP);
- setState(206);
+ setState(210);
valueExpression();
- setState(211);
+ setState(215);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(207);
+ setState(211);
match(COMMA);
- setState(208);
+ setState(212);
valueExpression();
}
}
- setState(213);
+ setState(217);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(214);
+ setState(218);
match(RP);
}
break;
@@ -1030,21 +1032,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new IsNullContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(216);
+ setState(220);
valueExpression();
- setState(217);
+ setState(221);
match(IS);
- setState(219);
+ setState(223);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(218);
+ setState(222);
match(NOT);
}
}
- setState(221);
+ setState(225);
match(NULL);
}
break;
@@ -1053,13 +1055,13 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
_localctx = new MatchExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(223);
+ setState(227);
matchBooleanExpression();
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(234);
+ setState(238);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1067,7 +1069,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(232);
+ setState(236);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,7,_ctx) ) {
case 1:
@@ -1075,11 +1077,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(226);
+ setState(230);
if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(227);
+ setState(231);
((LogicalBinaryContext)_localctx).operator = match(AND);
- setState(228);
+ setState(232);
((LogicalBinaryContext)_localctx).right = booleanExpression(6);
}
break;
@@ -1088,18 +1090,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(229);
+ setState(233);
if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(230);
+ setState(234);
((LogicalBinaryContext)_localctx).operator = match(OR);
- setState(231);
+ setState(235);
((LogicalBinaryContext)_localctx).right = booleanExpression(5);
}
break;
}
}
}
- setState(236);
+ setState(240);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,8,_ctx);
}
@@ -1154,48 +1156,48 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog
enterRule(_localctx, 12, RULE_regexBooleanExpression);
int _la;
try {
- setState(251);
+ setState(255);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,11,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(237);
+ setState(241);
valueExpression();
- setState(239);
+ setState(243);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(238);
+ setState(242);
match(NOT);
}
}
- setState(241);
+ setState(245);
((RegexBooleanExpressionContext)_localctx).kind = match(LIKE);
- setState(242);
+ setState(246);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(244);
+ setState(248);
valueExpression();
- setState(246);
+ setState(250);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==NOT) {
{
- setState(245);
+ setState(249);
match(NOT);
}
}
- setState(248);
+ setState(252);
((RegexBooleanExpressionContext)_localctx).kind = match(RLIKE);
- setState(249);
+ setState(253);
((RegexBooleanExpressionContext)_localctx).pattern = string();
}
break;
@@ -1255,23 +1257,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog
try {
enterOuterAlt(_localctx, 1);
{
- setState(253);
+ setState(257);
((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName();
- setState(256);
+ setState(260);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==CAST_OP) {
{
- setState(254);
+ setState(258);
match(CAST_OP);
- setState(255);
+ setState(259);
((MatchBooleanExpressionContext)_localctx).fieldType = dataType();
}
}
- setState(258);
+ setState(262);
match(COLON);
- setState(259);
+ setState(263);
((MatchBooleanExpressionContext)_localctx).matchQuery = constant();
}
}
@@ -1355,14 +1357,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState());
enterRule(_localctx, 16, RULE_valueExpression);
try {
- setState(266);
+ setState(270);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,13,_ctx) ) {
case 1:
_localctx = new ValueExpressionDefaultContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(261);
+ setState(265);
operatorExpression(0);
}
break;
@@ -1370,11 +1372,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio
_localctx = new ComparisonContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(262);
+ setState(266);
((ComparisonContext)_localctx).left = operatorExpression(0);
- setState(263);
+ setState(267);
comparisonOperator();
- setState(264);
+ setState(268);
((ComparisonContext)_localctx).right = operatorExpression(0);
}
break;
@@ -1499,7 +1501,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(272);
+ setState(276);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,14,_ctx) ) {
case 1:
@@ -1508,7 +1510,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_ctx = _localctx;
_prevctx = _localctx;
- setState(269);
+ setState(273);
primaryExpression(0);
}
break;
@@ -1517,7 +1519,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_localctx = new ArithmeticUnaryContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(270);
+ setState(274);
((ArithmeticUnaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1528,13 +1530,13 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(271);
+ setState(275);
operatorExpression(3);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(282);
+ setState(286);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1542,7 +1544,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
if ( _parseListeners!=null ) triggerExitRuleEvent();
_prevctx = _localctx;
{
- setState(280);
+ setState(284);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) {
case 1:
@@ -1550,9 +1552,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(274);
+ setState(278);
if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(275);
+ setState(279);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(((((_la - 71)) & ~0x3f) == 0 && ((1L << (_la - 71)) & 7L) != 0)) ) {
@@ -1563,7 +1565,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(276);
+ setState(280);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(3);
}
break;
@@ -1572,9 +1574,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(277);
+ setState(281);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(278);
+ setState(282);
((ArithmeticBinaryContext)_localctx).operator = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
@@ -1585,14 +1587,14 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE
_errHandler.reportMatch(this);
consume();
}
- setState(279);
+ setState(283);
((ArithmeticBinaryContext)_localctx).right = operatorExpression(2);
}
break;
}
}
}
- setState(284);
+ setState(288);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,16,_ctx);
}
@@ -1750,7 +1752,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(293);
+ setState(297);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,17,_ctx) ) {
case 1:
@@ -1759,7 +1761,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_ctx = _localctx;
_prevctx = _localctx;
- setState(286);
+ setState(290);
constant();
}
break;
@@ -1768,7 +1770,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new DereferenceContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(287);
+ setState(291);
qualifiedName();
}
break;
@@ -1777,7 +1779,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new FunctionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(288);
+ setState(292);
functionExpression();
}
break;
@@ -1786,17 +1788,17 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
_localctx = new ParenthesizedExpressionContext(_localctx);
_ctx = _localctx;
_prevctx = _localctx;
- setState(289);
+ setState(293);
match(LP);
- setState(290);
+ setState(294);
booleanExpression(0);
- setState(291);
+ setState(295);
match(RP);
}
break;
}
_ctx.stop = _input.LT(-1);
- setState(300);
+ setState(304);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
@@ -1807,16 +1809,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc
{
_localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState));
pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression);
- setState(295);
+ setState(299);
if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)");
- setState(296);
+ setState(300);
match(CAST_OP);
- setState(297);
+ setState(301);
dataType();
}
}
}
- setState(302);
+ setState(306);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,18,_ctx);
}
@@ -1882,16 +1884,16 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(303);
+ setState(307);
functionName();
- setState(304);
+ setState(308);
match(LP);
- setState(318);
+ setState(322);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ASTERISK:
{
- setState(305);
+ setState(309);
match(ASTERISK);
}
break;
@@ -1914,34 +1916,34 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
case QUOTED_IDENTIFIER:
{
{
- setState(306);
+ setState(310);
booleanExpression(0);
- setState(311);
+ setState(315);
_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(307);
+ setState(311);
match(COMMA);
- setState(308);
+ setState(312);
booleanExpression(0);
}
}
}
- setState(313);
+ setState(317);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,19,_ctx);
}
- setState(316);
+ setState(320);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==COMMA) {
{
- setState(314);
+ setState(318);
match(COMMA);
- setState(315);
+ setState(319);
mapExpression();
}
}
@@ -1954,7 +1956,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx
default:
break;
}
- setState(320);
+ setState(324);
match(RP);
}
}
@@ -2000,7 +2002,7 @@ public final FunctionNameContext functionName() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(322);
+ setState(326);
identifierOrParameter();
}
}
@@ -2056,27 +2058,27 @@ public final MapExpressionContext mapExpression() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(324);
+ setState(328);
match(LEFT_BRACES);
- setState(325);
+ setState(329);
entryExpression();
- setState(330);
+ setState(334);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(326);
+ setState(330);
match(COMMA);
- setState(327);
+ setState(331);
entryExpression();
}
}
- setState(332);
+ setState(336);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(333);
+ setState(337);
match(RIGHT_BRACES);
}
}
@@ -2128,11 +2130,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio
try {
enterOuterAlt(_localctx, 1);
{
- setState(335);
+ setState(339);
((EntryExpressionContext)_localctx).key = string();
- setState(336);
+ setState(340);
match(COLON);
- setState(337);
+ setState(341);
((EntryExpressionContext)_localctx).value = constant();
}
}
@@ -2190,7 +2192,7 @@ public final DataTypeContext dataType() throws RecognitionException {
_localctx = new ToDataTypeContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(339);
+ setState(343);
identifier();
}
}
@@ -2237,9 +2239,9 @@ public final RowCommandContext rowCommand() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(341);
+ setState(345);
match(ROW);
- setState(342);
+ setState(346);
fields();
}
}
@@ -2293,23 +2295,23 @@ public final FieldsContext fields() throws RecognitionException {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(344);
+ setState(348);
field();
- setState(349);
+ setState(353);
_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(345);
+ setState(349);
match(COMMA);
- setState(346);
+ setState(350);
field();
}
}
}
- setState(351);
+ setState(355);
_errHandler.sync(this);
_alt = getInterpreter().adaptivePredict(_input,23,_ctx);
}
@@ -2361,19 +2363,19 @@ public final FieldContext field() throws RecognitionException {
try {
enterOuterAlt(_localctx, 1);
{
- setState(355);
+ setState(359);
_errHandler.sync(this);
switch ( getInterpreter().adaptivePredict(_input,24,_ctx) ) {
case 1:
{
- setState(352);
+ setState(356);
qualifiedName();
- setState(353);
+ setState(357);
match(ASSIGN);
}
break;
}
- setState(357);
+ setState(361);
booleanExpression(0);
}
}
@@ -2388,6 +2390,139 @@ public final FieldContext field() throws RecognitionException {
return _localctx;
}
+ @SuppressWarnings("CheckReturnValue")
+ public static class RerankFieldsContext extends ParserRuleContext {
+ public List rerankField() {
+ return getRuleContexts(RerankFieldContext.class);
+ }
+ public RerankFieldContext rerankField(int i) {
+ return getRuleContext(RerankFieldContext.class,i);
+ }
+ public List COMMA() { return getTokens(EsqlBaseParser.COMMA); }
+ public TerminalNode COMMA(int i) {
+ return getToken(EsqlBaseParser.COMMA, i);
+ }
+ @SuppressWarnings("this-escape")
+ public RerankFieldsContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_rerankFields; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRerankFields(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRerankFields(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitRerankFields(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final RerankFieldsContext rerankFields() throws RecognitionException {
+ RerankFieldsContext _localctx = new RerankFieldsContext(_ctx, getState());
+ enterRule(_localctx, 38, RULE_rerankFields);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(363);
+ rerankField();
+ setState(368);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ while (_la==COMMA) {
+ {
+ {
+ setState(364);
+ match(COMMA);
+ setState(365);
+ rerankField();
+ }
+ }
+ setState(370);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ }
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
+ @SuppressWarnings("CheckReturnValue")
+ public static class RerankFieldContext extends ParserRuleContext {
+ public QualifiedNameContext qualifiedName() {
+ return getRuleContext(QualifiedNameContext.class,0);
+ }
+ public TerminalNode ASSIGN() { return getToken(EsqlBaseParser.ASSIGN, 0); }
+ public BooleanExpressionContext booleanExpression() {
+ return getRuleContext(BooleanExpressionContext.class,0);
+ }
+ @SuppressWarnings("this-escape")
+ public RerankFieldContext(ParserRuleContext parent, int invokingState) {
+ super(parent, invokingState);
+ }
+ @Override public int getRuleIndex() { return RULE_rerankField; }
+ @Override
+ public void enterRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).enterRerankField(this);
+ }
+ @Override
+ public void exitRule(ParseTreeListener listener) {
+ if ( listener instanceof EsqlBaseParserListener ) ((EsqlBaseParserListener)listener).exitRerankField(this);
+ }
+ @Override
+ public T accept(ParseTreeVisitor extends T> visitor) {
+ if ( visitor instanceof EsqlBaseParserVisitor ) return ((EsqlBaseParserVisitor extends T>)visitor).visitRerankField(this);
+ else return visitor.visitChildren(this);
+ }
+ }
+
+ public final RerankFieldContext rerankField() throws RecognitionException {
+ RerankFieldContext _localctx = new RerankFieldContext(_ctx, getState());
+ enterRule(_localctx, 40, RULE_rerankField);
+ int _la;
+ try {
+ enterOuterAlt(_localctx, 1);
+ {
+ setState(371);
+ qualifiedName();
+ setState(374);
+ _errHandler.sync(this);
+ _la = _input.LA(1);
+ if (_la==ASSIGN) {
+ {
+ setState(372);
+ match(ASSIGN);
+ setState(373);
+ booleanExpression(0);
+ }
+ }
+
+ }
+ }
+ catch (RecognitionException re) {
+ _localctx.exception = re;
+ _errHandler.reportError(this, re);
+ _errHandler.recover(this, re);
+ }
+ finally {
+ exitRule();
+ }
+ return _localctx;
+ }
+
@SuppressWarnings("CheckReturnValue")
public static class FromCommandContext extends ParserRuleContext {
public TerminalNode FROM() { return getToken(EsqlBaseParser.FROM, 0); }
@@ -2426,39 +2561,39 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final FromCommandContext fromCommand() throws RecognitionException {
FromCommandContext _localctx = new FromCommandContext(_ctx, getState());
- enterRule(_localctx, 38, RULE_fromCommand);
+ enterRule(_localctx, 42, RULE_fromCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(359);
+ setState(376);
match(FROM);
- setState(360);
+ setState(377);
indexPattern();
- setState(365);
+ setState(382);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(361);
+ setState(378);
match(COMMA);
- setState(362);
+ setState(379);
indexPattern();
}
}
}
- setState(367);
+ setState(384);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,25,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,27,_ctx);
}
- setState(369);
+ setState(386);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,26,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
case 1:
{
- setState(368);
+ setState(385);
metadata();
}
break;
@@ -2511,43 +2646,43 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IndexPatternContext indexPattern() throws RecognitionException {
IndexPatternContext _localctx = new IndexPatternContext(_ctx, getState());
- enterRule(_localctx, 40, RULE_indexPattern);
+ enterRule(_localctx, 44, RULE_indexPattern);
try {
- setState(382);
+ setState(399);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,31,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(374);
+ setState(391);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,27,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,29,_ctx) ) {
case 1:
{
- setState(371);
+ setState(388);
clusterString();
- setState(372);
+ setState(389);
match(COLON);
}
break;
}
- setState(376);
+ setState(393);
indexString();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(377);
+ setState(394);
indexString();
- setState(380);
+ setState(397);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,28,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,30,_ctx) ) {
case 1:
{
- setState(378);
+ setState(395);
match(CAST_OP);
- setState(379);
+ setState(396);
selectorString();
}
break;
@@ -2593,12 +2728,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ClusterStringContext clusterString() throws RecognitionException {
ClusterStringContext _localctx = new ClusterStringContext(_ctx, getState());
- enterRule(_localctx, 42, RULE_clusterString);
+ enterRule(_localctx, 46, RULE_clusterString);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(384);
+ setState(401);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2647,12 +2782,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SelectorStringContext selectorString() throws RecognitionException {
SelectorStringContext _localctx = new SelectorStringContext(_ctx, getState());
- enterRule(_localctx, 44, RULE_selectorString);
+ enterRule(_localctx, 48, RULE_selectorString);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(386);
+ setState(403);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2701,12 +2836,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IndexStringContext indexString() throws RecognitionException {
IndexStringContext _localctx = new IndexStringContext(_ctx, getState());
- enterRule(_localctx, 46, RULE_indexString);
+ enterRule(_localctx, 50, RULE_indexString);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(388);
+ setState(405);
_la = _input.LA(1);
if ( !(_la==QUOTED_STRING || _la==UNQUOTED_SOURCE) ) {
_errHandler.recoverInline(this);
@@ -2759,22 +2894,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MetadataContext metadata() throws RecognitionException {
MetadataContext _localctx = new MetadataContext(_ctx, getState());
- enterRule(_localctx, 48, RULE_metadata);
+ enterRule(_localctx, 52, RULE_metadata);
try {
- setState(392);
+ setState(409);
_errHandler.sync(this);
switch (_input.LA(1)) {
case METADATA:
enterOuterAlt(_localctx, 1);
{
- setState(390);
+ setState(407);
metadataOption();
}
break;
case OPENING_BRACKET:
enterOuterAlt(_localctx, 2);
{
- setState(391);
+ setState(408);
deprecated_metadata();
}
break;
@@ -2826,32 +2961,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MetadataOptionContext metadataOption() throws RecognitionException {
MetadataOptionContext _localctx = new MetadataOptionContext(_ctx, getState());
- enterRule(_localctx, 50, RULE_metadataOption);
+ enterRule(_localctx, 54, RULE_metadataOption);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(394);
+ setState(411);
match(METADATA);
- setState(395);
+ setState(412);
match(UNQUOTED_SOURCE);
- setState(400);
+ setState(417);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(396);
+ setState(413);
match(COMMA);
- setState(397);
+ setState(414);
match(UNQUOTED_SOURCE);
}
}
}
- setState(402);
+ setState(419);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,31,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,33,_ctx);
}
}
}
@@ -2894,15 +3029,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final Deprecated_metadataContext deprecated_metadata() throws RecognitionException {
Deprecated_metadataContext _localctx = new Deprecated_metadataContext(_ctx, getState());
- enterRule(_localctx, 52, RULE_deprecated_metadata);
+ enterRule(_localctx, 56, RULE_deprecated_metadata);
try {
enterOuterAlt(_localctx, 1);
{
- setState(403);
+ setState(420);
match(OPENING_BRACKET);
- setState(404);
+ setState(421);
metadataOption();
- setState(405);
+ setState(422);
match(CLOSING_BRACKET);
}
}
@@ -2961,51 +3096,51 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MetricsCommandContext metricsCommand() throws RecognitionException {
MetricsCommandContext _localctx = new MetricsCommandContext(_ctx, getState());
- enterRule(_localctx, 54, RULE_metricsCommand);
+ enterRule(_localctx, 58, RULE_metricsCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(407);
+ setState(424);
match(DEV_METRICS);
- setState(408);
+ setState(425);
indexPattern();
- setState(413);
+ setState(430);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,32,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(409);
+ setState(426);
match(COMMA);
- setState(410);
+ setState(427);
indexPattern();
}
}
}
- setState(415);
+ setState(432);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,32,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,34,_ctx);
}
- setState(417);
+ setState(434);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,33,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
case 1:
{
- setState(416);
+ setState(433);
((MetricsCommandContext)_localctx).aggregates = aggFields();
}
break;
}
- setState(421);
+ setState(438);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,34,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
case 1:
{
- setState(419);
+ setState(436);
match(BY);
- setState(420);
+ setState(437);
((MetricsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3051,13 +3186,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EvalCommandContext evalCommand() throws RecognitionException {
EvalCommandContext _localctx = new EvalCommandContext(_ctx, getState());
- enterRule(_localctx, 56, RULE_evalCommand);
+ enterRule(_localctx, 60, RULE_evalCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(423);
+ setState(440);
match(EVAL);
- setState(424);
+ setState(441);
fields();
}
}
@@ -3106,30 +3241,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StatsCommandContext statsCommand() throws RecognitionException {
StatsCommandContext _localctx = new StatsCommandContext(_ctx, getState());
- enterRule(_localctx, 58, RULE_statsCommand);
+ enterRule(_localctx, 62, RULE_statsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(426);
+ setState(443);
match(STATS);
- setState(428);
+ setState(445);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,35,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) {
case 1:
{
- setState(427);
+ setState(444);
((StatsCommandContext)_localctx).stats = aggFields();
}
break;
}
- setState(432);
+ setState(449);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
case 1:
{
- setState(430);
+ setState(447);
match(BY);
- setState(431);
+ setState(448);
((StatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -3181,30 +3316,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldsContext aggFields() throws RecognitionException {
AggFieldsContext _localctx = new AggFieldsContext(_ctx, getState());
- enterRule(_localctx, 60, RULE_aggFields);
+ enterRule(_localctx, 64, RULE_aggFields);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(434);
+ setState(451);
aggField();
- setState(439);
+ setState(456);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(435);
+ setState(452);
match(COMMA);
- setState(436);
+ setState(453);
aggField();
}
}
}
- setState(441);
+ setState(458);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,37,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
}
}
}
@@ -3250,20 +3385,20 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final AggFieldContext aggField() throws RecognitionException {
AggFieldContext _localctx = new AggFieldContext(_ctx, getState());
- enterRule(_localctx, 62, RULE_aggField);
+ enterRule(_localctx, 66, RULE_aggField);
try {
enterOuterAlt(_localctx, 1);
{
- setState(442);
+ setState(459);
field();
- setState(445);
+ setState(462);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) {
case 1:
{
- setState(443);
+ setState(460);
match(WHERE);
- setState(444);
+ setState(461);
booleanExpression(0);
}
break;
@@ -3315,30 +3450,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNameContext qualifiedName() throws RecognitionException {
QualifiedNameContext _localctx = new QualifiedNameContext(_ctx, getState());
- enterRule(_localctx, 64, RULE_qualifiedName);
+ enterRule(_localctx, 68, RULE_qualifiedName);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(447);
+ setState(464);
identifierOrParameter();
- setState(452);
+ setState(469);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(448);
+ setState(465);
match(DOT);
- setState(449);
+ setState(466);
identifierOrParameter();
}
}
}
- setState(454);
+ setState(471);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,39,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
}
}
}
@@ -3387,30 +3522,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternContext qualifiedNamePattern() throws RecognitionException {
QualifiedNamePatternContext _localctx = new QualifiedNamePatternContext(_ctx, getState());
- enterRule(_localctx, 66, RULE_qualifiedNamePattern);
+ enterRule(_localctx, 70, RULE_qualifiedNamePattern);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(455);
+ setState(472);
identifierPattern();
- setState(460);
+ setState(477);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(456);
+ setState(473);
match(DOT);
- setState(457);
+ setState(474);
identifierPattern();
}
}
}
- setState(462);
+ setState(479);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,40,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,42,_ctx);
}
}
}
@@ -3459,30 +3594,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final QualifiedNamePatternsContext qualifiedNamePatterns() throws RecognitionException {
QualifiedNamePatternsContext _localctx = new QualifiedNamePatternsContext(_ctx, getState());
- enterRule(_localctx, 68, RULE_qualifiedNamePatterns);
+ enterRule(_localctx, 72, RULE_qualifiedNamePatterns);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(463);
+ setState(480);
qualifiedNamePattern();
- setState(468);
+ setState(485);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(464);
+ setState(481);
match(COMMA);
- setState(465);
+ setState(482);
qualifiedNamePattern();
}
}
}
- setState(470);
+ setState(487);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,41,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,43,_ctx);
}
}
}
@@ -3523,12 +3658,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierContext identifier() throws RecognitionException {
IdentifierContext _localctx = new IdentifierContext(_ctx, getState());
- enterRule(_localctx, 70, RULE_identifier);
+ enterRule(_localctx, 74, RULE_identifier);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(471);
+ setState(488);
_la = _input.LA(1);
if ( !(_la==UNQUOTED_IDENTIFIER || _la==QUOTED_IDENTIFIER) ) {
_errHandler.recoverInline(this);
@@ -3582,15 +3717,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierPatternContext identifierPattern() throws RecognitionException {
IdentifierPatternContext _localctx = new IdentifierPatternContext(_ctx, getState());
- enterRule(_localctx, 72, RULE_identifierPattern);
+ enterRule(_localctx, 76, RULE_identifierPattern);
try {
- setState(476);
+ setState(493);
_errHandler.sync(this);
switch (_input.LA(1)) {
case ID_PATTERN:
enterOuterAlt(_localctx, 1);
{
- setState(473);
+ setState(490);
match(ID_PATTERN);
}
break;
@@ -3598,7 +3733,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(474);
+ setState(491);
parameter();
}
break;
@@ -3606,7 +3741,7 @@ public final IdentifierPatternContext identifierPattern() throws RecognitionExce
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(475);
+ setState(492);
doubleParameter();
}
break;
@@ -3878,17 +4013,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ConstantContext constant() throws RecognitionException {
ConstantContext _localctx = new ConstantContext(_ctx, getState());
- enterRule(_localctx, 74, RULE_constant);
+ enterRule(_localctx, 78, RULE_constant);
int _la;
try {
- setState(520);
+ setState(537);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) {
case 1:
_localctx = new NullLiteralContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(478);
+ setState(495);
match(NULL);
}
break;
@@ -3896,9 +4031,9 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new QualifiedIntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(479);
+ setState(496);
integerValue();
- setState(480);
+ setState(497);
match(UNQUOTED_IDENTIFIER);
}
break;
@@ -3906,7 +4041,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new DecimalLiteralContext(_localctx);
enterOuterAlt(_localctx, 3);
{
- setState(482);
+ setState(499);
decimalValue();
}
break;
@@ -3914,7 +4049,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new IntegerLiteralContext(_localctx);
enterOuterAlt(_localctx, 4);
{
- setState(483);
+ setState(500);
integerValue();
}
break;
@@ -3922,7 +4057,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanLiteralContext(_localctx);
enterOuterAlt(_localctx, 5);
{
- setState(484);
+ setState(501);
booleanValue();
}
break;
@@ -3930,7 +4065,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new InputParameterContext(_localctx);
enterOuterAlt(_localctx, 6);
{
- setState(485);
+ setState(502);
parameter();
}
break;
@@ -3938,7 +4073,7 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringLiteralContext(_localctx);
enterOuterAlt(_localctx, 7);
{
- setState(486);
+ setState(503);
string();
}
break;
@@ -3946,27 +4081,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new NumericArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 8);
{
- setState(487);
+ setState(504);
match(OPENING_BRACKET);
- setState(488);
+ setState(505);
numericValue();
- setState(493);
+ setState(510);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(489);
+ setState(506);
match(COMMA);
- setState(490);
+ setState(507);
numericValue();
}
}
- setState(495);
+ setState(512);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(496);
+ setState(513);
match(CLOSING_BRACKET);
}
break;
@@ -3974,27 +4109,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new BooleanArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 9);
{
- setState(498);
+ setState(515);
match(OPENING_BRACKET);
- setState(499);
+ setState(516);
booleanValue();
- setState(504);
+ setState(521);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(500);
+ setState(517);
match(COMMA);
- setState(501);
+ setState(518);
booleanValue();
}
}
- setState(506);
+ setState(523);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(507);
+ setState(524);
match(CLOSING_BRACKET);
}
break;
@@ -4002,27 +4137,27 @@ public final ConstantContext constant() throws RecognitionException {
_localctx = new StringArrayLiteralContext(_localctx);
enterOuterAlt(_localctx, 10);
{
- setState(509);
+ setState(526);
match(OPENING_BRACKET);
- setState(510);
+ setState(527);
string();
- setState(515);
+ setState(532);
_errHandler.sync(this);
_la = _input.LA(1);
while (_la==COMMA) {
{
{
- setState(511);
+ setState(528);
match(COMMA);
- setState(512);
+ setState(529);
string();
}
}
- setState(517);
+ setState(534);
_errHandler.sync(this);
_la = _input.LA(1);
}
- setState(518);
+ setState(535);
match(CLOSING_BRACKET);
}
break;
@@ -4094,16 +4229,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ParameterContext parameter() throws RecognitionException {
ParameterContext _localctx = new ParameterContext(_ctx, getState());
- enterRule(_localctx, 76, RULE_parameter);
+ enterRule(_localctx, 80, RULE_parameter);
try {
- setState(524);
+ setState(541);
_errHandler.sync(this);
switch (_input.LA(1)) {
case PARAM:
_localctx = new InputParamContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(522);
+ setState(539);
match(PARAM);
}
break;
@@ -4111,7 +4246,7 @@ public final ParameterContext parameter() throws RecognitionException {
_localctx = new InputNamedOrPositionalParamContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(523);
+ setState(540);
match(NAMED_OR_POSITIONAL_PARAM);
}
break;
@@ -4185,16 +4320,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DoubleParameterContext doubleParameter() throws RecognitionException {
DoubleParameterContext _localctx = new DoubleParameterContext(_ctx, getState());
- enterRule(_localctx, 78, RULE_doubleParameter);
+ enterRule(_localctx, 82, RULE_doubleParameter);
try {
- setState(528);
+ setState(545);
_errHandler.sync(this);
switch (_input.LA(1)) {
case DOUBLE_PARAMS:
_localctx = new InputDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(526);
+ setState(543);
match(DOUBLE_PARAMS);
}
break;
@@ -4202,7 +4337,7 @@ public final DoubleParameterContext doubleParameter() throws RecognitionExceptio
_localctx = new InputNamedOrPositionalDoubleParamsContext(_localctx);
enterOuterAlt(_localctx, 2);
{
- setState(527);
+ setState(544);
match(NAMED_OR_POSITIONAL_DOUBLE_PARAMS);
}
break;
@@ -4254,16 +4389,16 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IdentifierOrParameterContext identifierOrParameter() throws RecognitionException {
IdentifierOrParameterContext _localctx = new IdentifierOrParameterContext(_ctx, getState());
- enterRule(_localctx, 80, RULE_identifierOrParameter);
+ enterRule(_localctx, 84, RULE_identifierOrParameter);
try {
- setState(533);
+ setState(550);
_errHandler.sync(this);
switch (_input.LA(1)) {
case UNQUOTED_IDENTIFIER:
case QUOTED_IDENTIFIER:
enterOuterAlt(_localctx, 1);
{
- setState(530);
+ setState(547);
identifier();
}
break;
@@ -4271,7 +4406,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_PARAM:
enterOuterAlt(_localctx, 2);
{
- setState(531);
+ setState(548);
parameter();
}
break;
@@ -4279,7 +4414,7 @@ public final IdentifierOrParameterContext identifierOrParameter() throws Recogni
case NAMED_OR_POSITIONAL_DOUBLE_PARAMS:
enterOuterAlt(_localctx, 3);
{
- setState(532);
+ setState(549);
doubleParameter();
}
break;
@@ -4326,13 +4461,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LimitCommandContext limitCommand() throws RecognitionException {
LimitCommandContext _localctx = new LimitCommandContext(_ctx, getState());
- enterRule(_localctx, 82, RULE_limitCommand);
+ enterRule(_localctx, 86, RULE_limitCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(535);
+ setState(552);
match(LIMIT);
- setState(536);
+ setState(553);
constant();
}
}
@@ -4382,32 +4517,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SortCommandContext sortCommand() throws RecognitionException {
SortCommandContext _localctx = new SortCommandContext(_ctx, getState());
- enterRule(_localctx, 84, RULE_sortCommand);
+ enterRule(_localctx, 88, RULE_sortCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(538);
+ setState(555);
match(SORT);
- setState(539);
+ setState(556);
orderExpression();
- setState(544);
+ setState(561);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(540);
+ setState(557);
match(COMMA);
- setState(541);
+ setState(558);
orderExpression();
}
}
}
- setState(546);
+ setState(563);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,50,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,52,_ctx);
}
}
}
@@ -4456,19 +4591,19 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final OrderExpressionContext orderExpression() throws RecognitionException {
OrderExpressionContext _localctx = new OrderExpressionContext(_ctx, getState());
- enterRule(_localctx, 86, RULE_orderExpression);
+ enterRule(_localctx, 90, RULE_orderExpression);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(547);
+ setState(564);
booleanExpression(0);
- setState(549);
+ setState(566);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,51,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,53,_ctx) ) {
case 1:
{
- setState(548);
+ setState(565);
((OrderExpressionContext)_localctx).ordering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==ASC || _la==DESC) ) {
@@ -4482,14 +4617,14 @@ public final OrderExpressionContext orderExpression() throws RecognitionExceptio
}
break;
}
- setState(553);
+ setState(570);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
case 1:
{
- setState(551);
+ setState(568);
match(NULLS);
- setState(552);
+ setState(569);
((OrderExpressionContext)_localctx).nullOrdering = _input.LT(1);
_la = _input.LA(1);
if ( !(_la==FIRST || _la==LAST) ) {
@@ -4544,13 +4679,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final KeepCommandContext keepCommand() throws RecognitionException {
KeepCommandContext _localctx = new KeepCommandContext(_ctx, getState());
- enterRule(_localctx, 88, RULE_keepCommand);
+ enterRule(_localctx, 92, RULE_keepCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(555);
+ setState(572);
match(KEEP);
- setState(556);
+ setState(573);
qualifiedNamePatterns();
}
}
@@ -4593,13 +4728,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DropCommandContext dropCommand() throws RecognitionException {
DropCommandContext _localctx = new DropCommandContext(_ctx, getState());
- enterRule(_localctx, 90, RULE_dropCommand);
+ enterRule(_localctx, 94, RULE_dropCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(558);
+ setState(575);
match(DROP);
- setState(559);
+ setState(576);
qualifiedNamePatterns();
}
}
@@ -4649,32 +4784,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameCommandContext renameCommand() throws RecognitionException {
RenameCommandContext _localctx = new RenameCommandContext(_ctx, getState());
- enterRule(_localctx, 92, RULE_renameCommand);
+ enterRule(_localctx, 96, RULE_renameCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(561);
+ setState(578);
match(RENAME);
- setState(562);
+ setState(579);
renameClause();
- setState(567);
+ setState(584);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(563);
+ setState(580);
match(COMMA);
- setState(564);
+ setState(581);
renameClause();
}
}
}
- setState(569);
+ setState(586);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,53,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
}
}
}
@@ -4722,15 +4857,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RenameClauseContext renameClause() throws RecognitionException {
RenameClauseContext _localctx = new RenameClauseContext(_ctx, getState());
- enterRule(_localctx, 94, RULE_renameClause);
+ enterRule(_localctx, 98, RULE_renameClause);
try {
enterOuterAlt(_localctx, 1);
{
- setState(570);
+ setState(587);
((RenameClauseContext)_localctx).oldName = qualifiedNamePattern();
- setState(571);
+ setState(588);
match(AS);
- setState(572);
+ setState(589);
((RenameClauseContext)_localctx).newName = qualifiedNamePattern();
}
}
@@ -4779,22 +4914,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DissectCommandContext dissectCommand() throws RecognitionException {
DissectCommandContext _localctx = new DissectCommandContext(_ctx, getState());
- enterRule(_localctx, 96, RULE_dissectCommand);
+ enterRule(_localctx, 100, RULE_dissectCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(574);
+ setState(591);
match(DISSECT);
- setState(575);
+ setState(592);
primaryExpression(0);
- setState(576);
+ setState(593);
string();
- setState(578);
+ setState(595);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,54,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
case 1:
{
- setState(577);
+ setState(594);
commandOptions();
}
break;
@@ -4843,15 +4978,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final GrokCommandContext grokCommand() throws RecognitionException {
GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState());
- enterRule(_localctx, 98, RULE_grokCommand);
+ enterRule(_localctx, 102, RULE_grokCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(580);
+ setState(597);
match(GROK);
- setState(581);
+ setState(598);
primaryExpression(0);
- setState(582);
+ setState(599);
string();
}
}
@@ -4894,13 +5029,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final MvExpandCommandContext mvExpandCommand() throws RecognitionException {
MvExpandCommandContext _localctx = new MvExpandCommandContext(_ctx, getState());
- enterRule(_localctx, 100, RULE_mvExpandCommand);
+ enterRule(_localctx, 104, RULE_mvExpandCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(584);
+ setState(601);
match(MV_EXPAND);
- setState(585);
+ setState(602);
qualifiedName();
}
}
@@ -4949,30 +5084,30 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CommandOptionsContext commandOptions() throws RecognitionException {
CommandOptionsContext _localctx = new CommandOptionsContext(_ctx, getState());
- enterRule(_localctx, 102, RULE_commandOptions);
+ enterRule(_localctx, 106, RULE_commandOptions);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(587);
+ setState(604);
commandOption();
- setState(592);
+ setState(609);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(588);
+ setState(605);
match(COMMA);
- setState(589);
+ setState(606);
commandOption();
}
}
}
- setState(594);
+ setState(611);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,55,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,57,_ctx);
}
}
}
@@ -5018,15 +5153,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CommandOptionContext commandOption() throws RecognitionException {
CommandOptionContext _localctx = new CommandOptionContext(_ctx, getState());
- enterRule(_localctx, 104, RULE_commandOption);
+ enterRule(_localctx, 108, RULE_commandOption);
try {
enterOuterAlt(_localctx, 1);
{
- setState(595);
+ setState(612);
identifier();
- setState(596);
+ setState(613);
match(ASSIGN);
- setState(597);
+ setState(614);
constant();
}
}
@@ -5067,12 +5202,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final BooleanValueContext booleanValue() throws RecognitionException {
BooleanValueContext _localctx = new BooleanValueContext(_ctx, getState());
- enterRule(_localctx, 106, RULE_booleanValue);
+ enterRule(_localctx, 110, RULE_booleanValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(599);
+ setState(616);
_la = _input.LA(1);
if ( !(_la==FALSE || _la==TRUE) ) {
_errHandler.recoverInline(this);
@@ -5125,22 +5260,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final NumericValueContext numericValue() throws RecognitionException {
NumericValueContext _localctx = new NumericValueContext(_ctx, getState());
- enterRule(_localctx, 108, RULE_numericValue);
+ enterRule(_localctx, 112, RULE_numericValue);
try {
- setState(603);
+ setState(620);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,58,_ctx) ) {
case 1:
enterOuterAlt(_localctx, 1);
{
- setState(601);
+ setState(618);
decimalValue();
}
break;
case 2:
enterOuterAlt(_localctx, 2);
{
- setState(602);
+ setState(619);
integerValue();
}
break;
@@ -5184,17 +5319,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final DecimalValueContext decimalValue() throws RecognitionException {
DecimalValueContext _localctx = new DecimalValueContext(_ctx, getState());
- enterRule(_localctx, 110, RULE_decimalValue);
+ enterRule(_localctx, 114, RULE_decimalValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(606);
+ setState(623);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(605);
+ setState(622);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5207,7 +5342,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException {
}
}
- setState(608);
+ setState(625);
match(DECIMAL_LITERAL);
}
}
@@ -5249,17 +5384,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final IntegerValueContext integerValue() throws RecognitionException {
IntegerValueContext _localctx = new IntegerValueContext(_ctx, getState());
- enterRule(_localctx, 112, RULE_integerValue);
+ enterRule(_localctx, 116, RULE_integerValue);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(611);
+ setState(628);
_errHandler.sync(this);
_la = _input.LA(1);
if (_la==PLUS || _la==MINUS) {
{
- setState(610);
+ setState(627);
_la = _input.LA(1);
if ( !(_la==PLUS || _la==MINUS) ) {
_errHandler.recoverInline(this);
@@ -5272,7 +5407,7 @@ public final IntegerValueContext integerValue() throws RecognitionException {
}
}
- setState(613);
+ setState(630);
match(INTEGER_LITERAL);
}
}
@@ -5312,11 +5447,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final StringContext string() throws RecognitionException {
StringContext _localctx = new StringContext(_ctx, getState());
- enterRule(_localctx, 114, RULE_string);
+ enterRule(_localctx, 118, RULE_string);
try {
enterOuterAlt(_localctx, 1);
{
- setState(615);
+ setState(632);
match(QUOTED_STRING);
}
}
@@ -5361,12 +5496,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ComparisonOperatorContext comparisonOperator() throws RecognitionException {
ComparisonOperatorContext _localctx = new ComparisonOperatorContext(_ctx, getState());
- enterRule(_localctx, 116, RULE_comparisonOperator);
+ enterRule(_localctx, 120, RULE_comparisonOperator);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(617);
+ setState(634);
_la = _input.LA(1);
if ( !(((((_la - 62)) & ~0x3f) == 0 && ((1L << (_la - 62)) & 125L) != 0)) ) {
_errHandler.recoverInline(this);
@@ -5417,13 +5552,13 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ExplainCommandContext explainCommand() throws RecognitionException {
ExplainCommandContext _localctx = new ExplainCommandContext(_ctx, getState());
- enterRule(_localctx, 118, RULE_explainCommand);
+ enterRule(_localctx, 122, RULE_explainCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(619);
+ setState(636);
match(EXPLAIN);
- setState(620);
+ setState(637);
subqueryExpression();
}
}
@@ -5467,15 +5602,15 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final SubqueryExpressionContext subqueryExpression() throws RecognitionException {
SubqueryExpressionContext _localctx = new SubqueryExpressionContext(_ctx, getState());
- enterRule(_localctx, 120, RULE_subqueryExpression);
+ enterRule(_localctx, 124, RULE_subqueryExpression);
try {
enterOuterAlt(_localctx, 1);
{
- setState(622);
+ setState(639);
match(OPENING_BRACKET);
- setState(623);
+ setState(640);
query(0);
- setState(624);
+ setState(641);
match(CLOSING_BRACKET);
}
}
@@ -5527,14 +5662,14 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ShowCommandContext showCommand() throws RecognitionException {
ShowCommandContext _localctx = new ShowCommandContext(_ctx, getState());
- enterRule(_localctx, 122, RULE_showCommand);
+ enterRule(_localctx, 126, RULE_showCommand);
try {
_localctx = new ShowInfoContext(_localctx);
enterOuterAlt(_localctx, 1);
{
- setState(626);
+ setState(643);
match(SHOW);
- setState(627);
+ setState(644);
match(INFO);
}
}
@@ -5592,53 +5727,53 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichCommandContext enrichCommand() throws RecognitionException {
EnrichCommandContext _localctx = new EnrichCommandContext(_ctx, getState());
- enterRule(_localctx, 124, RULE_enrichCommand);
+ enterRule(_localctx, 128, RULE_enrichCommand);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(629);
+ setState(646);
match(ENRICH);
- setState(630);
+ setState(647);
((EnrichCommandContext)_localctx).policyName = match(ENRICH_POLICY_NAME);
- setState(633);
+ setState(650);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,59,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) {
case 1:
{
- setState(631);
+ setState(648);
match(ON);
- setState(632);
+ setState(649);
((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern();
}
break;
}
- setState(644);
+ setState(661);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,61,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
case 1:
{
- setState(635);
+ setState(652);
match(WITH);
- setState(636);
+ setState(653);
enrichWithClause();
- setState(641);
+ setState(658);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,60,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,62,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(637);
+ setState(654);
match(COMMA);
- setState(638);
+ setState(655);
enrichWithClause();
}
}
}
- setState(643);
+ setState(660);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,60,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,62,_ctx);
}
}
break;
@@ -5689,23 +5824,23 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final EnrichWithClauseContext enrichWithClause() throws RecognitionException {
EnrichWithClauseContext _localctx = new EnrichWithClauseContext(_ctx, getState());
- enterRule(_localctx, 126, RULE_enrichWithClause);
+ enterRule(_localctx, 130, RULE_enrichWithClause);
try {
enterOuterAlt(_localctx, 1);
{
- setState(649);
+ setState(666);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
case 1:
{
- setState(646);
+ setState(663);
((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern();
- setState(647);
+ setState(664);
match(ASSIGN);
}
break;
}
- setState(651);
+ setState(668);
((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern();
}
}
@@ -5758,38 +5893,38 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final ChangePointCommandContext changePointCommand() throws RecognitionException {
ChangePointCommandContext _localctx = new ChangePointCommandContext(_ctx, getState());
- enterRule(_localctx, 128, RULE_changePointCommand);
+ enterRule(_localctx, 132, RULE_changePointCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(653);
+ setState(670);
match(CHANGE_POINT);
- setState(654);
+ setState(671);
((ChangePointCommandContext)_localctx).value = qualifiedName();
- setState(657);
+ setState(674);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,63,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
case 1:
{
- setState(655);
+ setState(672);
match(ON);
- setState(656);
+ setState(673);
((ChangePointCommandContext)_localctx).key = qualifiedName();
}
break;
}
- setState(664);
+ setState(681);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) {
case 1:
{
- setState(659);
+ setState(676);
match(AS);
- setState(660);
+ setState(677);
((ChangePointCommandContext)_localctx).targetType = qualifiedName();
- setState(661);
+ setState(678);
match(COMMA);
- setState(662);
+ setState(679);
((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName();
}
break;
@@ -5841,17 +5976,17 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final LookupCommandContext lookupCommand() throws RecognitionException {
LookupCommandContext _localctx = new LookupCommandContext(_ctx, getState());
- enterRule(_localctx, 130, RULE_lookupCommand);
+ enterRule(_localctx, 134, RULE_lookupCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(666);
+ setState(683);
match(DEV_LOOKUP);
- setState(667);
+ setState(684);
((LookupCommandContext)_localctx).tableName = indexPattern();
- setState(668);
+ setState(685);
match(ON);
- setState(669);
+ setState(686);
((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns();
}
}
@@ -5900,22 +6035,22 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final InlinestatsCommandContext inlinestatsCommand() throws RecognitionException {
InlinestatsCommandContext _localctx = new InlinestatsCommandContext(_ctx, getState());
- enterRule(_localctx, 132, RULE_inlinestatsCommand);
+ enterRule(_localctx, 136, RULE_inlinestatsCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(671);
+ setState(688);
match(DEV_INLINESTATS);
- setState(672);
+ setState(689);
((InlinestatsCommandContext)_localctx).stats = aggFields();
- setState(675);
+ setState(692);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
case 1:
{
- setState(673);
+ setState(690);
match(BY);
- setState(674);
+ setState(691);
((InlinestatsCommandContext)_localctx).grouping = fields();
}
break;
@@ -5968,12 +6103,12 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinCommandContext joinCommand() throws RecognitionException {
JoinCommandContext _localctx = new JoinCommandContext(_ctx, getState());
- enterRule(_localctx, 134, RULE_joinCommand);
+ enterRule(_localctx, 138, RULE_joinCommand);
int _la;
try {
enterOuterAlt(_localctx, 1);
{
- setState(677);
+ setState(694);
((JoinCommandContext)_localctx).type = _input.LT(1);
_la = _input.LA(1);
if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 100794368L) != 0)) ) {
@@ -5984,11 +6119,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException {
_errHandler.reportMatch(this);
consume();
}
- setState(678);
+ setState(695);
match(JOIN);
- setState(679);
+ setState(696);
joinTarget();
- setState(680);
+ setState(697);
joinCondition();
}
}
@@ -6031,11 +6166,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinTargetContext joinTarget() throws RecognitionException {
JoinTargetContext _localctx = new JoinTargetContext(_ctx, getState());
- enterRule(_localctx, 136, RULE_joinTarget);
+ enterRule(_localctx, 140, RULE_joinTarget);
try {
enterOuterAlt(_localctx, 1);
{
- setState(682);
+ setState(699);
((JoinTargetContext)_localctx).index = indexPattern();
}
}
@@ -6085,32 +6220,32 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinConditionContext joinCondition() throws RecognitionException {
JoinConditionContext _localctx = new JoinConditionContext(_ctx, getState());
- enterRule(_localctx, 138, RULE_joinCondition);
+ enterRule(_localctx, 142, RULE_joinCondition);
try {
int _alt;
enterOuterAlt(_localctx, 1);
{
- setState(684);
+ setState(701);
match(ON);
- setState(685);
+ setState(702);
joinPredicate();
- setState(690);
+ setState(707);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,66,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) {
if ( _alt==1 ) {
{
{
- setState(686);
+ setState(703);
match(COMMA);
- setState(687);
+ setState(704);
joinPredicate();
}
}
}
- setState(692);
+ setState(709);
_errHandler.sync(this);
- _alt = getInterpreter().adaptivePredict(_input,66,_ctx);
+ _alt = getInterpreter().adaptivePredict(_input,68,_ctx);
}
}
}
@@ -6152,11 +6287,11 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final JoinPredicateContext joinPredicate() throws RecognitionException {
JoinPredicateContext _localctx = new JoinPredicateContext(_ctx, getState());
- enterRule(_localctx, 140, RULE_joinPredicate);
+ enterRule(_localctx, 144, RULE_joinPredicate);
try {
enterOuterAlt(_localctx, 1);
{
- setState(693);
+ setState(710);
valueExpression();
}
}
@@ -6177,8 +6312,8 @@ public static class RerankCommandContext extends ParserRuleContext {
public IdentifierOrParameterContext inferenceId;
public TerminalNode DEV_RERANK() { return getToken(EsqlBaseParser.DEV_RERANK, 0); }
public TerminalNode ON() { return getToken(EsqlBaseParser.ON, 0); }
- public FieldsContext fields() {
- return getRuleContext(FieldsContext.class,0);
+ public RerankFieldsContext rerankFields() {
+ return getRuleContext(RerankFieldsContext.class,0);
}
public TerminalNode WITH() { return getToken(EsqlBaseParser.WITH, 0); }
public ConstantContext constant() {
@@ -6209,21 +6344,21 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final RerankCommandContext rerankCommand() throws RecognitionException {
RerankCommandContext _localctx = new RerankCommandContext(_ctx, getState());
- enterRule(_localctx, 142, RULE_rerankCommand);
+ enterRule(_localctx, 146, RULE_rerankCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(695);
+ setState(712);
match(DEV_RERANK);
- setState(696);
+ setState(713);
((RerankCommandContext)_localctx).queryText = constant();
- setState(697);
+ setState(714);
match(ON);
- setState(698);
- fields();
- setState(699);
+ setState(715);
+ rerankFields();
+ setState(716);
match(WITH);
- setState(700);
+ setState(717);
((RerankCommandContext)_localctx).inferenceId = identifierOrParameter();
}
}
@@ -6277,26 +6412,26 @@ public T accept(ParseTreeVisitor extends T> visitor) {
public final CompletionCommandContext completionCommand() throws RecognitionException {
CompletionCommandContext _localctx = new CompletionCommandContext(_ctx, getState());
- enterRule(_localctx, 144, RULE_completionCommand);
+ enterRule(_localctx, 148, RULE_completionCommand);
try {
enterOuterAlt(_localctx, 1);
{
- setState(702);
+ setState(719);
match(DEV_COMPLETION);
- setState(703);
+ setState(720);
((CompletionCommandContext)_localctx).prompt = primaryExpression(0);
- setState(704);
+ setState(721);
match(WITH);
- setState(705);
+ setState(722);
((CompletionCommandContext)_localctx).inferenceId = identifierOrParameter();
- setState(708);
+ setState(725);
_errHandler.sync(this);
- switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) {
+ switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) {
case 1:
{
- setState(706);
+ setState(723);
match(AS);
- setState(707);
+ setState(724);
((CompletionCommandContext)_localctx).targetField = qualifiedName();
}
break;
@@ -6385,7 +6520,7 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
}
public static final String _serializedATN =
- "\u0004\u0001\u008a\u02c7\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+
+ "\u0004\u0001\u008a\u02d8\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"+
@@ -6403,433 +6538,443 @@ private boolean primaryExpression_sempred(PrimaryExpressionContext _localctx, in
"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"+
- "\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0001\u0003\u0003\u0003"+
- "\u00bf\b\u0003\u0001\u0004\u0001\u0004\u0001\u0004\u0001\u0005\u0001\u0005"+
- "\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005"+
- "\u00cb\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
- "\u0005\u0005\u00d2\b\u0005\n\u0005\f\u0005\u00d5\t\u0005\u0001\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00dc\b\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0003\u0005\u00e1\b\u0005\u0001\u0005\u0001"+
- "\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00e9"+
- "\b\u0005\n\u0005\f\u0005\u00ec\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006"+
- "\u00f0\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006"+
- "\u0003\u0006\u00f7\b\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006"+
- "\u00fc\b\u0006\u0001\u0007\u0001\u0007\u0001\u0007\u0003\u0007\u0101\b"+
- "\u0007\u0001\u0007\u0001\u0007\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001"+
- "\b\u0001\b\u0003\b\u010b\b\b\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0111"+
- "\b\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0001\t\u0005\t\u0119\b\t"+
- "\n\t\f\t\u011c\t\t\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001"+
- "\n\u0001\n\u0003\n\u0126\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u012b\b\n"+
- "\n\n\f\n\u012e\t\n\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001"+
- "\u000b\u0001\u000b\u0005\u000b\u0136\b\u000b\n\u000b\f\u000b\u0139\t\u000b"+
- "\u0001\u000b\u0001\u000b\u0003\u000b\u013d\b\u000b\u0003\u000b\u013f\b"+
- "\u000b\u0001\u000b\u0001\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r"+
- "\u0001\r\u0005\r\u0149\b\r\n\r\f\r\u014c\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"+
- "\u015c\b\u0011\n\u0011\f\u0011\u015f\t\u0011\u0001\u0012\u0001\u0012\u0001"+
- "\u0012\u0003\u0012\u0164\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001"+
- "\u0013\u0001\u0013\u0001\u0013\u0005\u0013\u016c\b\u0013\n\u0013\f\u0013"+
- "\u016f\t\u0013\u0001\u0013\u0003\u0013\u0172\b\u0013\u0001\u0014\u0001"+
- "\u0014\u0001\u0014\u0003\u0014\u0177\b\u0014\u0001\u0014\u0001\u0014\u0001"+
- "\u0014\u0001\u0014\u0003\u0014\u017d\b\u0014\u0003\u0014\u017f\b\u0014"+
- "\u0001\u0015\u0001\u0015\u0001\u0016\u0001\u0016\u0001\u0017\u0001\u0017"+
- "\u0001\u0018\u0001\u0018\u0003\u0018\u0189\b\u0018\u0001\u0019\u0001\u0019"+
- "\u0001\u0019\u0001\u0019\u0005\u0019\u018f\b\u0019\n\u0019\f\u0019\u0192"+
- "\t\u0019\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001a\u0001\u001b\u0001"+
- "\u001b\u0001\u001b\u0001\u001b\u0005\u001b\u019c\b\u001b\n\u001b\f\u001b"+
- "\u019f\t\u001b\u0001\u001b\u0003\u001b\u01a2\b\u001b\u0001\u001b\u0001"+
- "\u001b\u0003\u001b\u01a6\b\u001b\u0001\u001c\u0001\u001c\u0001\u001c\u0001"+
- "\u001d\u0001\u001d\u0003\u001d\u01ad\b\u001d\u0001\u001d\u0001\u001d\u0003"+
- "\u001d\u01b1\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0005\u001e\u01b6"+
- "\b\u001e\n\u001e\f\u001e\u01b9\t\u001e\u0001\u001f\u0001\u001f\u0001\u001f"+
- "\u0003\u001f\u01be\b\u001f\u0001 \u0001 \u0001 \u0005 \u01c3\b \n \f "+
- "\u01c6\t \u0001!\u0001!\u0001!\u0005!\u01cb\b!\n!\f!\u01ce\t!\u0001\""+
- "\u0001\"\u0001\"\u0005\"\u01d3\b\"\n\"\f\"\u01d6\t\"\u0001#\u0001#\u0001"+
- "$\u0001$\u0001$\u0003$\u01dd\b$\u0001%\u0001%\u0001%\u0001%\u0001%\u0001"+
- "%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01ec\b%\n%"+
- "\f%\u01ef\t%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u01f7\b"+
- "%\n%\f%\u01fa\t%\u0001%\u0001%\u0001%\u0001%\u0001%\u0001%\u0005%\u0202"+
- "\b%\n%\f%\u0205\t%\u0001%\u0001%\u0003%\u0209\b%\u0001&\u0001&\u0003&"+
- "\u020d\b&\u0001\'\u0001\'\u0003\'\u0211\b\'\u0001(\u0001(\u0001(\u0003"+
- "(\u0216\b(\u0001)\u0001)\u0001)\u0001*\u0001*\u0001*\u0001*\u0005*\u021f"+
- "\b*\n*\f*\u0222\t*\u0001+\u0001+\u0003+\u0226\b+\u0001+\u0001+\u0003+"+
- "\u022a\b+\u0001,\u0001,\u0001,\u0001-\u0001-\u0001-\u0001.\u0001.\u0001"+
- ".\u0001.\u0005.\u0236\b.\n.\f.\u0239\t.\u0001/\u0001/\u0001/\u0001/\u0001"+
- "0\u00010\u00010\u00010\u00030\u0243\b0\u00011\u00011\u00011\u00011\u0001"+
- "2\u00012\u00012\u00013\u00013\u00013\u00053\u024f\b3\n3\f3\u0252\t3\u0001"+
- "4\u00014\u00014\u00014\u00015\u00015\u00016\u00016\u00036\u025c\b6\u0001"+
- "7\u00037\u025f\b7\u00017\u00017\u00018\u00038\u0264\b8\u00018\u00018\u0001"+
- "9\u00019\u0001:\u0001:\u0001;\u0001;\u0001;\u0001<\u0001<\u0001<\u0001"+
- "<\u0001=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0003>\u027a\b>\u0001"+
- ">\u0001>\u0001>\u0001>\u0005>\u0280\b>\n>\f>\u0283\t>\u0003>\u0285\b>"+
- "\u0001?\u0001?\u0001?\u0003?\u028a\b?\u0001?\u0001?\u0001@\u0001@\u0001"+
- "@\u0001@\u0003@\u0292\b@\u0001@\u0001@\u0001@\u0001@\u0001@\u0003@\u0299"+
- "\b@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001B\u0001B\u0001B\u0001B\u0003"+
- "B\u02a4\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001D\u0001E\u0001"+
- "E\u0001E\u0001E\u0005E\u02b1\bE\nE\fE\u02b4\tE\u0001F\u0001F\u0001G\u0001"+
- "G\u0001G\u0001G\u0001G\u0001G\u0001G\u0001H\u0001H\u0001H\u0001H\u0001"+
- "H\u0001H\u0003H\u02c5\bH\u0001H\u0000\u0004\u0002\n\u0012\u0014I\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\u0000\t\u0001\u0000EF\u0001\u0000"+
- "GI\u0002\u0000 ZZ\u0001\u0000QR\u0002\u0000%%++\u0002\u0000..11\u0002"+
- "\u0000--<<\u0002\u0000>>@D\u0002\u0000\u0011\u0011\u0019\u001a\u02e5\u0000"+
- "\u0092\u0001\u0000\u0000\u0000\u0002\u0095\u0001\u0000\u0000\u0000\u0004"+
- "\u00a6\u0001\u0000\u0000\u0000\u0006\u00be\u0001\u0000\u0000\u0000\b\u00c0"+
- "\u0001\u0000\u0000\u0000\n\u00e0\u0001\u0000\u0000\u0000\f\u00fb\u0001"+
- "\u0000\u0000\u0000\u000e\u00fd\u0001\u0000\u0000\u0000\u0010\u010a\u0001"+
- "\u0000\u0000\u0000\u0012\u0110\u0001\u0000\u0000\u0000\u0014\u0125\u0001"+
- "\u0000\u0000\u0000\u0016\u012f\u0001\u0000\u0000\u0000\u0018\u0142\u0001"+
- "\u0000\u0000\u0000\u001a\u0144\u0001\u0000\u0000\u0000\u001c\u014f\u0001"+
- "\u0000\u0000\u0000\u001e\u0153\u0001\u0000\u0000\u0000 \u0155\u0001\u0000"+
- "\u0000\u0000\"\u0158\u0001\u0000\u0000\u0000$\u0163\u0001\u0000\u0000"+
- "\u0000&\u0167\u0001\u0000\u0000\u0000(\u017e\u0001\u0000\u0000\u0000*"+
- "\u0180\u0001\u0000\u0000\u0000,\u0182\u0001\u0000\u0000\u0000.\u0184\u0001"+
- "\u0000\u0000\u00000\u0188\u0001\u0000\u0000\u00002\u018a\u0001\u0000\u0000"+
- "\u00004\u0193\u0001\u0000\u0000\u00006\u0197\u0001\u0000\u0000\u00008"+
- "\u01a7\u0001\u0000\u0000\u0000:\u01aa\u0001\u0000\u0000\u0000<\u01b2\u0001"+
- "\u0000\u0000\u0000>\u01ba\u0001\u0000\u0000\u0000@\u01bf\u0001\u0000\u0000"+
- "\u0000B\u01c7\u0001\u0000\u0000\u0000D\u01cf\u0001\u0000\u0000\u0000F"+
- "\u01d7\u0001\u0000\u0000\u0000H\u01dc\u0001\u0000\u0000\u0000J\u0208\u0001"+
- "\u0000\u0000\u0000L\u020c\u0001\u0000\u0000\u0000N\u0210\u0001\u0000\u0000"+
- "\u0000P\u0215\u0001\u0000\u0000\u0000R\u0217\u0001\u0000\u0000\u0000T"+
- "\u021a\u0001\u0000\u0000\u0000V\u0223\u0001\u0000\u0000\u0000X\u022b\u0001"+
- "\u0000\u0000\u0000Z\u022e\u0001\u0000\u0000\u0000\\\u0231\u0001\u0000"+
- "\u0000\u0000^\u023a\u0001\u0000\u0000\u0000`\u023e\u0001\u0000\u0000\u0000"+
- "b\u0244\u0001\u0000\u0000\u0000d\u0248\u0001\u0000\u0000\u0000f\u024b"+
- "\u0001\u0000\u0000\u0000h\u0253\u0001\u0000\u0000\u0000j\u0257\u0001\u0000"+
- "\u0000\u0000l\u025b\u0001\u0000\u0000\u0000n\u025e\u0001\u0000\u0000\u0000"+
- "p\u0263\u0001\u0000\u0000\u0000r\u0267\u0001\u0000\u0000\u0000t\u0269"+
- "\u0001\u0000\u0000\u0000v\u026b\u0001\u0000\u0000\u0000x\u026e\u0001\u0000"+
- "\u0000\u0000z\u0272\u0001\u0000\u0000\u0000|\u0275\u0001\u0000\u0000\u0000"+
- "~\u0289\u0001\u0000\u0000\u0000\u0080\u028d\u0001\u0000\u0000\u0000\u0082"+
- "\u029a\u0001\u0000\u0000\u0000\u0084\u029f\u0001\u0000\u0000\u0000\u0086"+
- "\u02a5\u0001\u0000\u0000\u0000\u0088\u02aa\u0001\u0000\u0000\u0000\u008a"+
- "\u02ac\u0001\u0000\u0000\u0000\u008c\u02b5\u0001\u0000\u0000\u0000\u008e"+
- "\u02b7\u0001\u0000\u0000\u0000\u0090\u02be\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\u0003v;\u0000\u00a1\u00a7\u0003"+
- "&\u0013\u0000\u00a2\u00a7\u0003 \u0010\u0000\u00a3\u00a7\u0003z=\u0000"+
- "\u00a4\u00a5\u0004\u0002\u0001\u0000\u00a5\u00a7\u00036\u001b\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"+
- "\u00bf\u00038\u001c\u0000\u00a9\u00bf\u0003\b\u0004\u0000\u00aa\u00bf"+
- "\u0003X,\u0000\u00ab\u00bf\u0003R)\u0000\u00ac\u00bf\u0003:\u001d\u0000"+
- "\u00ad\u00bf\u0003T*\u0000\u00ae\u00bf\u0003Z-\u0000\u00af\u00bf\u0003"+
- "\\.\u0000\u00b0\u00bf\u0003`0\u0000\u00b1\u00bf\u0003b1\u0000\u00b2\u00bf"+
- "\u0003|>\u0000\u00b3\u00bf\u0003d2\u0000\u00b4\u00bf\u0003\u0086C\u0000"+
- "\u00b5\u00bf\u0003\u0080@\u0000\u00b6\u00b7\u0004\u0003\u0002\u0000\u00b7"+
- "\u00bf\u0003\u0090H\u0000\u00b8\u00b9\u0004\u0003\u0003\u0000\u00b9\u00bf"+
- "\u0003\u0084B\u0000\u00ba\u00bb\u0004\u0003\u0004\u0000\u00bb\u00bf\u0003"+
- "\u0082A\u0000\u00bc\u00bd\u0004\u0003\u0005\u0000\u00bd\u00bf\u0003\u008e"+
- "G\u0000\u00be\u00a8\u0001\u0000\u0000\u0000\u00be\u00a9\u0001\u0000\u0000"+
- "\u0000\u00be\u00aa\u0001\u0000\u0000\u0000\u00be\u00ab\u0001\u0000\u0000"+
- "\u0000\u00be\u00ac\u0001\u0000\u0000\u0000\u00be\u00ad\u0001\u0000\u0000"+
- "\u0000\u00be\u00ae\u0001\u0000\u0000\u0000\u00be\u00af\u0001\u0000\u0000"+
- "\u0000\u00be\u00b0\u0001\u0000\u0000\u0000\u00be\u00b1\u0001\u0000\u0000"+
- "\u0000\u00be\u00b2\u0001\u0000\u0000\u0000\u00be\u00b3\u0001\u0000\u0000"+
- "\u0000\u00be\u00b4\u0001\u0000\u0000\u0000\u00be\u00b5\u0001\u0000\u0000"+
- "\u0000\u00be\u00b6\u0001\u0000\u0000\u0000\u00be\u00b8\u0001\u0000\u0000"+
- "\u0000\u00be\u00ba\u0001\u0000\u0000\u0000\u00be\u00bc\u0001\u0000\u0000"+
- "\u0000\u00bf\u0007\u0001\u0000\u0000\u0000\u00c0\u00c1\u0005\u0010\u0000"+
- "\u0000\u00c1\u00c2\u0003\n\u0005\u0000\u00c2\t\u0001\u0000\u0000\u0000"+
- "\u00c3\u00c4\u0006\u0005\uffff\uffff\u0000\u00c4\u00c5\u00054\u0000\u0000"+
- "\u00c5\u00e1\u0003\n\u0005\b\u00c6\u00e1\u0003\u0010\b\u0000\u00c7\u00e1"+
- "\u0003\f\u0006\u0000\u00c8\u00ca\u0003\u0010\b\u0000\u00c9\u00cb\u0005"+
- "4\u0000\u0000\u00ca\u00c9\u0001\u0000\u0000\u0000\u00ca\u00cb\u0001\u0000"+
- "\u0000\u0000\u00cb\u00cc\u0001\u0000\u0000\u0000\u00cc\u00cd\u0005/\u0000"+
- "\u0000\u00cd\u00ce\u00053\u0000\u0000\u00ce\u00d3\u0003\u0010\b\u0000"+
- "\u00cf\u00d0\u0005*\u0000\u0000\u00d0\u00d2\u0003\u0010\b\u0000\u00d1"+
- "\u00cf\u0001\u0000\u0000\u0000\u00d2\u00d5\u0001\u0000\u0000\u0000\u00d3"+
- "\u00d1\u0001\u0000\u0000\u0000\u00d3\u00d4\u0001\u0000\u0000\u0000\u00d4"+
- "\u00d6\u0001\u0000\u0000\u0000\u00d5\u00d3\u0001\u0000\u0000\u0000\u00d6"+
- "\u00d7\u0005;\u0000\u0000\u00d7\u00e1\u0001\u0000\u0000\u0000\u00d8\u00d9"+
- "\u0003\u0010\b\u0000\u00d9\u00db\u00050\u0000\u0000\u00da\u00dc\u0005"+
- "4\u0000\u0000\u00db\u00da\u0001\u0000\u0000\u0000\u00db\u00dc\u0001\u0000"+
- "\u0000\u0000\u00dc\u00dd\u0001\u0000\u0000\u0000\u00dd\u00de\u00055\u0000"+
- "\u0000\u00de\u00e1\u0001\u0000\u0000\u0000\u00df\u00e1\u0003\u000e\u0007"+
- "\u0000\u00e0\u00c3\u0001\u0000\u0000\u0000\u00e0\u00c6\u0001\u0000\u0000"+
- "\u0000\u00e0\u00c7\u0001\u0000\u0000\u0000\u00e0\u00c8\u0001\u0000\u0000"+
- "\u0000\u00e0\u00d8\u0001\u0000\u0000\u0000\u00e0\u00df\u0001\u0000\u0000"+
- "\u0000\u00e1\u00ea\u0001\u0000\u0000\u0000\u00e2\u00e3\n\u0005\u0000\u0000"+
- "\u00e3\u00e4\u0005#\u0000\u0000\u00e4\u00e9\u0003\n\u0005\u0006\u00e5"+
- "\u00e6\n\u0004\u0000\u0000\u00e6\u00e7\u00058\u0000\u0000\u00e7\u00e9"+
- "\u0003\n\u0005\u0005\u00e8\u00e2\u0001\u0000\u0000\u0000\u00e8\u00e5\u0001"+
- "\u0000\u0000\u0000\u00e9\u00ec\u0001\u0000\u0000\u0000\u00ea\u00e8\u0001"+
- "\u0000\u0000\u0000\u00ea\u00eb\u0001\u0000\u0000\u0000\u00eb\u000b\u0001"+
- "\u0000\u0000\u0000\u00ec\u00ea\u0001\u0000\u0000\u0000\u00ed\u00ef\u0003"+
- "\u0010\b\u0000\u00ee\u00f0\u00054\u0000\u0000\u00ef\u00ee\u0001\u0000"+
- "\u0000\u0000\u00ef\u00f0\u0001\u0000\u0000\u0000\u00f0\u00f1\u0001\u0000"+
- "\u0000\u0000\u00f1\u00f2\u00052\u0000\u0000\u00f2\u00f3\u0003r9\u0000"+
- "\u00f3\u00fc\u0001\u0000\u0000\u0000\u00f4\u00f6\u0003\u0010\b\u0000\u00f5"+
- "\u00f7\u00054\u0000\u0000\u00f6\u00f5\u0001\u0000\u0000\u0000\u00f6\u00f7"+
- "\u0001\u0000\u0000\u0000\u00f7\u00f8\u0001\u0000\u0000\u0000\u00f8\u00f9"+
- "\u0005:\u0000\u0000\u00f9\u00fa\u0003r9\u0000\u00fa\u00fc\u0001\u0000"+
- "\u0000\u0000\u00fb\u00ed\u0001\u0000\u0000\u0000\u00fb\u00f4\u0001\u0000"+
- "\u0000\u0000\u00fc\r\u0001\u0000\u0000\u0000\u00fd\u0100\u0003@ \u0000"+
- "\u00fe\u00ff\u0005(\u0000\u0000\u00ff\u0101\u0003\u001e\u000f\u0000\u0100"+
- "\u00fe\u0001\u0000\u0000\u0000\u0100\u0101\u0001\u0000\u0000\u0000\u0101"+
- "\u0102\u0001\u0000\u0000\u0000\u0102\u0103\u0005)\u0000\u0000\u0103\u0104"+
- "\u0003J%\u0000\u0104\u000f\u0001\u0000\u0000\u0000\u0105\u010b\u0003\u0012"+
- "\t\u0000\u0106\u0107\u0003\u0012\t\u0000\u0107\u0108\u0003t:\u0000\u0108"+
- "\u0109\u0003\u0012\t\u0000\u0109\u010b\u0001\u0000\u0000\u0000\u010a\u0105"+
- "\u0001\u0000\u0000\u0000\u010a\u0106\u0001\u0000\u0000\u0000\u010b\u0011"+
- "\u0001\u0000\u0000\u0000\u010c\u010d\u0006\t\uffff\uffff\u0000\u010d\u0111"+
- "\u0003\u0014\n\u0000\u010e\u010f\u0007\u0000\u0000\u0000\u010f\u0111\u0003"+
- "\u0012\t\u0003\u0110\u010c\u0001\u0000\u0000\u0000\u0110\u010e\u0001\u0000"+
- "\u0000\u0000\u0111\u011a\u0001\u0000\u0000\u0000\u0112\u0113\n\u0002\u0000"+
- "\u0000\u0113\u0114\u0007\u0001\u0000\u0000\u0114\u0119\u0003\u0012\t\u0003"+
- "\u0115\u0116\n\u0001\u0000\u0000\u0116\u0117\u0007\u0000\u0000\u0000\u0117"+
- "\u0119\u0003\u0012\t\u0002\u0118\u0112\u0001\u0000\u0000\u0000\u0118\u0115"+
- "\u0001\u0000\u0000\u0000\u0119\u011c\u0001\u0000\u0000\u0000\u011a\u0118"+
- "\u0001\u0000\u0000\u0000\u011a\u011b\u0001\u0000\u0000\u0000\u011b\u0013"+
- "\u0001\u0000\u0000\u0000\u011c\u011a\u0001\u0000\u0000\u0000\u011d\u011e"+
- "\u0006\n\uffff\uffff\u0000\u011e\u0126\u0003J%\u0000\u011f\u0126\u0003"+
- "@ \u0000\u0120\u0126\u0003\u0016\u000b\u0000\u0121\u0122\u00053\u0000"+
- "\u0000\u0122\u0123\u0003\n\u0005\u0000\u0123\u0124\u0005;\u0000\u0000"+
- "\u0124\u0126\u0001\u0000\u0000\u0000\u0125\u011d\u0001\u0000\u0000\u0000"+
- "\u0125\u011f\u0001\u0000\u0000\u0000\u0125\u0120\u0001\u0000\u0000\u0000"+
- "\u0125\u0121\u0001\u0000\u0000\u0000\u0126\u012c\u0001\u0000\u0000\u0000"+
- "\u0127\u0128\n\u0001\u0000\u0000\u0128\u0129\u0005(\u0000\u0000\u0129"+
- "\u012b\u0003\u001e\u000f\u0000\u012a\u0127\u0001\u0000\u0000\u0000\u012b"+
- "\u012e\u0001\u0000\u0000\u0000\u012c\u012a\u0001\u0000\u0000\u0000\u012c"+
- "\u012d\u0001\u0000\u0000\u0000\u012d\u0015\u0001\u0000\u0000\u0000\u012e"+
- "\u012c\u0001\u0000\u0000\u0000\u012f\u0130\u0003\u0018\f\u0000\u0130\u013e"+
- "\u00053\u0000\u0000\u0131\u013f\u0005G\u0000\u0000\u0132\u0137\u0003\n"+
- "\u0005\u0000\u0133\u0134\u0005*\u0000\u0000\u0134\u0136\u0003\n\u0005"+
- "\u0000\u0135\u0133\u0001\u0000\u0000\u0000\u0136\u0139\u0001\u0000\u0000"+
- "\u0000\u0137\u0135\u0001\u0000\u0000\u0000\u0137\u0138\u0001\u0000\u0000"+
- "\u0000\u0138\u013c\u0001\u0000\u0000\u0000\u0139\u0137\u0001\u0000\u0000"+
- "\u0000\u013a\u013b\u0005*\u0000\u0000\u013b\u013d\u0003\u001a\r\u0000"+
- "\u013c\u013a\u0001\u0000\u0000\u0000\u013c\u013d\u0001\u0000\u0000\u0000"+
- "\u013d\u013f\u0001\u0000\u0000\u0000\u013e\u0131\u0001\u0000\u0000\u0000"+
- "\u013e\u0132\u0001\u0000\u0000\u0000\u013e\u013f\u0001\u0000\u0000\u0000"+
- "\u013f\u0140\u0001\u0000\u0000\u0000\u0140\u0141\u0005;\u0000\u0000\u0141"+
- "\u0017\u0001\u0000\u0000\u0000\u0142\u0143\u0003P(\u0000\u0143\u0019\u0001"+
- "\u0000\u0000\u0000\u0144\u0145\u0005J\u0000\u0000\u0145\u014a\u0003\u001c"+
- "\u000e\u0000\u0146\u0147\u0005*\u0000\u0000\u0147\u0149\u0003\u001c\u000e"+
- "\u0000\u0148\u0146\u0001\u0000\u0000\u0000\u0149\u014c\u0001\u0000\u0000"+
- "\u0000\u014a\u0148\u0001\u0000\u0000\u0000\u014a\u014b\u0001\u0000\u0000"+
- "\u0000\u014b\u014d\u0001\u0000\u0000\u0000\u014c\u014a\u0001\u0000\u0000"+
- "\u0000\u014d\u014e\u0005K\u0000\u0000\u014e\u001b\u0001\u0000\u0000\u0000"+
- "\u014f\u0150\u0003r9\u0000\u0150\u0151\u0005)\u0000\u0000\u0151\u0152"+
- "\u0003J%\u0000\u0152\u001d\u0001\u0000\u0000\u0000\u0153\u0154\u0003F"+
- "#\u0000\u0154\u001f\u0001\u0000\u0000\u0000\u0155\u0156\u0005\f\u0000"+
- "\u0000\u0156\u0157\u0003\"\u0011\u0000\u0157!\u0001\u0000\u0000\u0000"+
- "\u0158\u015d\u0003$\u0012\u0000\u0159\u015a\u0005*\u0000\u0000\u015a\u015c"+
- "\u0003$\u0012\u0000\u015b\u0159\u0001\u0000\u0000\u0000\u015c\u015f\u0001"+
- "\u0000\u0000\u0000\u015d\u015b\u0001\u0000\u0000\u0000\u015d\u015e\u0001"+
- "\u0000\u0000\u0000\u015e#\u0001\u0000\u0000\u0000\u015f\u015d\u0001\u0000"+
- "\u0000\u0000\u0160\u0161\u0003@ \u0000\u0161\u0162\u0005&\u0000\u0000"+
- "\u0162\u0164\u0001\u0000\u0000\u0000\u0163\u0160\u0001\u0000\u0000\u0000"+
- "\u0163\u0164\u0001\u0000\u0000\u0000\u0164\u0165\u0001\u0000\u0000\u0000"+
- "\u0165\u0166\u0003\n\u0005\u0000\u0166%\u0001\u0000\u0000\u0000\u0167"+
- "\u0168\u0005\u0006\u0000\u0000\u0168\u016d\u0003(\u0014\u0000\u0169\u016a"+
- "\u0005*\u0000\u0000\u016a\u016c\u0003(\u0014\u0000\u016b\u0169\u0001\u0000"+
- "\u0000\u0000\u016c\u016f\u0001\u0000\u0000\u0000\u016d\u016b\u0001\u0000"+
- "\u0000\u0000\u016d\u016e\u0001\u0000\u0000\u0000\u016e\u0171\u0001\u0000"+
- "\u0000\u0000\u016f\u016d\u0001\u0000\u0000\u0000\u0170\u0172\u00030\u0018"+
- "\u0000\u0171\u0170\u0001\u0000\u0000\u0000\u0171\u0172\u0001\u0000\u0000"+
- "\u0000\u0172\'\u0001\u0000\u0000\u0000\u0173\u0174\u0003*\u0015\u0000"+
- "\u0174\u0175\u0005)\u0000\u0000\u0175\u0177\u0001\u0000\u0000\u0000\u0176"+
- "\u0173\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177"+
- "\u0178\u0001\u0000\u0000\u0000\u0178\u017f\u0003.\u0017\u0000\u0179\u017c"+
- "\u0003.\u0017\u0000\u017a\u017b\u0005(\u0000\u0000\u017b\u017d\u0003,"+
- "\u0016\u0000\u017c\u017a\u0001\u0000\u0000\u0000\u017c\u017d\u0001\u0000"+
- "\u0000\u0000\u017d\u017f\u0001\u0000\u0000\u0000\u017e\u0176\u0001\u0000"+
- "\u0000\u0000\u017e\u0179\u0001\u0000\u0000\u0000\u017f)\u0001\u0000\u0000"+
- "\u0000\u0180\u0181\u0007\u0002\u0000\u0000\u0181+\u0001\u0000\u0000\u0000"+
- "\u0182\u0183\u0007\u0002\u0000\u0000\u0183-\u0001\u0000\u0000\u0000\u0184"+
- "\u0185\u0007\u0002\u0000\u0000\u0185/\u0001\u0000\u0000\u0000\u0186\u0189"+
- "\u00032\u0019\u0000\u0187\u0189\u00034\u001a\u0000\u0188\u0186\u0001\u0000"+
- "\u0000\u0000\u0188\u0187\u0001\u0000\u0000\u0000\u01891\u0001\u0000\u0000"+
- "\u0000\u018a\u018b\u0005Y\u0000\u0000\u018b\u0190\u0005Z\u0000\u0000\u018c"+
- "\u018d\u0005*\u0000\u0000\u018d\u018f\u0005Z\u0000\u0000\u018e\u018c\u0001"+
- "\u0000\u0000\u0000\u018f\u0192\u0001\u0000\u0000\u0000\u0190\u018e\u0001"+
- "\u0000\u0000\u0000\u0190\u0191\u0001\u0000\u0000\u0000\u01913\u0001\u0000"+
- "\u0000\u0000\u0192\u0190\u0001\u0000\u0000\u0000\u0193\u0194\u0005O\u0000"+
- "\u0000\u0194\u0195\u00032\u0019\u0000\u0195\u0196\u0005P\u0000\u0000\u0196"+
- "5\u0001\u0000\u0000\u0000\u0197\u0198\u0005\u0016\u0000\u0000\u0198\u019d"+
- "\u0003(\u0014\u0000\u0199\u019a\u0005*\u0000\u0000\u019a\u019c\u0003("+
- "\u0014\u0000\u019b\u0199\u0001\u0000\u0000\u0000\u019c\u019f\u0001\u0000"+
- "\u0000\u0000\u019d\u019b\u0001\u0000\u0000\u0000\u019d\u019e\u0001\u0000"+
- "\u0000\u0000\u019e\u01a1\u0001\u0000\u0000\u0000\u019f\u019d\u0001\u0000"+
- "\u0000\u0000\u01a0\u01a2\u0003<\u001e\u0000\u01a1\u01a0\u0001\u0000\u0000"+
- "\u0000\u01a1\u01a2\u0001\u0000\u0000\u0000\u01a2\u01a5\u0001\u0000\u0000"+
- "\u0000\u01a3\u01a4\u0005\'\u0000\u0000\u01a4\u01a6\u0003\"\u0011\u0000"+
- "\u01a5\u01a3\u0001\u0000\u0000\u0000\u01a5\u01a6\u0001\u0000\u0000\u0000"+
- "\u01a67\u0001\u0000\u0000\u0000\u01a7\u01a8\u0005\u0004\u0000\u0000\u01a8"+
- "\u01a9\u0003\"\u0011\u0000\u01a99\u0001\u0000\u0000\u0000\u01aa\u01ac"+
- "\u0005\u000f\u0000\u0000\u01ab\u01ad\u0003<\u001e\u0000\u01ac\u01ab\u0001"+
- "\u0000\u0000\u0000\u01ac\u01ad\u0001\u0000\u0000\u0000\u01ad\u01b0\u0001"+
- "\u0000\u0000\u0000\u01ae\u01af\u0005\'\u0000\u0000\u01af\u01b1\u0003\""+
- "\u0011\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b0\u01b1\u0001\u0000"+
- "\u0000\u0000\u01b1;\u0001\u0000\u0000\u0000\u01b2\u01b7\u0003>\u001f\u0000"+
- "\u01b3\u01b4\u0005*\u0000\u0000\u01b4\u01b6\u0003>\u001f\u0000\u01b5\u01b3"+
- "\u0001\u0000\u0000\u0000\u01b6\u01b9\u0001\u0000\u0000\u0000\u01b7\u01b5"+
- "\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001\u0000\u0000\u0000\u01b8=\u0001"+
- "\u0000\u0000\u0000\u01b9\u01b7\u0001\u0000\u0000\u0000\u01ba\u01bd\u0003"+
- "$\u0012\u0000\u01bb\u01bc\u0005\u0010\u0000\u0000\u01bc\u01be\u0003\n"+
- "\u0005\u0000\u01bd\u01bb\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000"+
- "\u0000\u0000\u01be?\u0001\u0000\u0000\u0000\u01bf\u01c4\u0003P(\u0000"+
- "\u01c0\u01c1\u0005,\u0000\u0000\u01c1\u01c3\u0003P(\u0000\u01c2\u01c0"+
- "\u0001\u0000\u0000\u0000\u01c3\u01c6\u0001\u0000\u0000\u0000\u01c4\u01c2"+
- "\u0001\u0000\u0000\u0000\u01c4\u01c5\u0001\u0000\u0000\u0000\u01c5A\u0001"+
- "\u0000\u0000\u0000\u01c6\u01c4\u0001\u0000\u0000\u0000\u01c7\u01cc\u0003"+
- "H$\u0000\u01c8\u01c9\u0005,\u0000\u0000\u01c9\u01cb\u0003H$\u0000\u01ca"+
- "\u01c8\u0001\u0000\u0000\u0000\u01cb\u01ce\u0001\u0000\u0000\u0000\u01cc"+
- "\u01ca\u0001\u0000\u0000\u0000\u01cc\u01cd\u0001\u0000\u0000\u0000\u01cd"+
- "C\u0001\u0000\u0000\u0000\u01ce\u01cc\u0001\u0000\u0000\u0000\u01cf\u01d4"+
- "\u0003B!\u0000\u01d0\u01d1\u0005*\u0000\u0000\u01d1\u01d3\u0003B!\u0000"+
- "\u01d2\u01d0\u0001\u0000\u0000\u0000\u01d3\u01d6\u0001\u0000\u0000\u0000"+
- "\u01d4\u01d2\u0001\u0000\u0000\u0000\u01d4\u01d5\u0001\u0000\u0000\u0000"+
- "\u01d5E\u0001\u0000\u0000\u0000\u01d6\u01d4\u0001\u0000\u0000\u0000\u01d7"+
- "\u01d8\u0007\u0003\u0000\u0000\u01d8G\u0001\u0000\u0000\u0000\u01d9\u01dd"+
- "\u0005^\u0000\u0000\u01da\u01dd\u0003L&\u0000\u01db\u01dd\u0003N\'\u0000"+
- "\u01dc\u01d9\u0001\u0000\u0000\u0000\u01dc\u01da\u0001\u0000\u0000\u0000"+
- "\u01dc\u01db\u0001\u0000\u0000\u0000\u01ddI\u0001\u0000\u0000\u0000\u01de"+
- "\u0209\u00055\u0000\u0000\u01df\u01e0\u0003p8\u0000\u01e0\u01e1\u0005"+
- "Q\u0000\u0000\u01e1\u0209\u0001\u0000\u0000\u0000\u01e2\u0209\u0003n7"+
- "\u0000\u01e3\u0209\u0003p8\u0000\u01e4\u0209\u0003j5\u0000\u01e5\u0209"+
- "\u0003L&\u0000\u01e6\u0209\u0003r9\u0000\u01e7\u01e8\u0005O\u0000\u0000"+
- "\u01e8\u01ed\u0003l6\u0000\u01e9\u01ea\u0005*\u0000\u0000\u01ea\u01ec"+
- "\u0003l6\u0000\u01eb\u01e9\u0001\u0000\u0000\u0000\u01ec\u01ef\u0001\u0000"+
- "\u0000\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ed\u01ee\u0001\u0000"+
- "\u0000\u0000\u01ee\u01f0\u0001\u0000\u0000\u0000\u01ef\u01ed\u0001\u0000"+
- "\u0000\u0000\u01f0\u01f1\u0005P\u0000\u0000\u01f1\u0209\u0001\u0000\u0000"+
- "\u0000\u01f2\u01f3\u0005O\u0000\u0000\u01f3\u01f8\u0003j5\u0000\u01f4"+
- "\u01f5\u0005*\u0000\u0000\u01f5\u01f7\u0003j5\u0000\u01f6\u01f4\u0001"+
- "\u0000\u0000\u0000\u01f7\u01fa\u0001\u0000\u0000\u0000\u01f8\u01f6\u0001"+
- "\u0000\u0000\u0000\u01f8\u01f9\u0001\u0000\u0000\u0000\u01f9\u01fb\u0001"+
- "\u0000\u0000\u0000\u01fa\u01f8\u0001\u0000\u0000\u0000\u01fb\u01fc\u0005"+
- "P\u0000\u0000\u01fc\u0209\u0001\u0000\u0000\u0000\u01fd\u01fe\u0005O\u0000"+
- "\u0000\u01fe\u0203\u0003r9\u0000\u01ff\u0200\u0005*\u0000\u0000\u0200"+
- "\u0202\u0003r9\u0000\u0201\u01ff\u0001\u0000\u0000\u0000\u0202\u0205\u0001"+
- "\u0000\u0000\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0203\u0204\u0001"+
- "\u0000\u0000\u0000\u0204\u0206\u0001\u0000\u0000\u0000\u0205\u0203\u0001"+
- "\u0000\u0000\u0000\u0206\u0207\u0005P\u0000\u0000\u0207\u0209\u0001\u0000"+
- "\u0000\u0000\u0208\u01de\u0001\u0000\u0000\u0000\u0208\u01df\u0001\u0000"+
- "\u0000\u0000\u0208\u01e2\u0001\u0000\u0000\u0000\u0208\u01e3\u0001\u0000"+
- "\u0000\u0000\u0208\u01e4\u0001\u0000\u0000\u0000\u0208\u01e5\u0001\u0000"+
- "\u0000\u0000\u0208\u01e6\u0001\u0000\u0000\u0000\u0208\u01e7\u0001\u0000"+
- "\u0000\u0000\u0208\u01f2\u0001\u0000\u0000\u0000\u0208\u01fd\u0001\u0000"+
- "\u0000\u0000\u0209K\u0001\u0000\u0000\u0000\u020a\u020d\u00059\u0000\u0000"+
- "\u020b\u020d\u0005M\u0000\u0000\u020c\u020a\u0001\u0000\u0000\u0000\u020c"+
- "\u020b\u0001\u0000\u0000\u0000\u020dM\u0001\u0000\u0000\u0000\u020e\u0211"+
- "\u0005L\u0000\u0000\u020f\u0211\u0005N\u0000\u0000\u0210\u020e\u0001\u0000"+
- "\u0000\u0000\u0210\u020f\u0001\u0000\u0000\u0000\u0211O\u0001\u0000\u0000"+
- "\u0000\u0212\u0216\u0003F#\u0000\u0213\u0216\u0003L&\u0000\u0214\u0216"+
- "\u0003N\'\u0000\u0215\u0212\u0001\u0000\u0000\u0000\u0215\u0213\u0001"+
- "\u0000\u0000\u0000\u0215\u0214\u0001\u0000\u0000\u0000\u0216Q\u0001\u0000"+
- "\u0000\u0000\u0217\u0218\u0005\t\u0000\u0000\u0218\u0219\u0003J%\u0000"+
- "\u0219S\u0001\u0000\u0000\u0000\u021a\u021b\u0005\u000e\u0000\u0000\u021b"+
- "\u0220\u0003V+\u0000\u021c\u021d\u0005*\u0000\u0000\u021d\u021f\u0003"+
- "V+\u0000\u021e\u021c\u0001\u0000\u0000\u0000\u021f\u0222\u0001\u0000\u0000"+
- "\u0000\u0220\u021e\u0001\u0000\u0000\u0000\u0220\u0221\u0001\u0000\u0000"+
- "\u0000\u0221U\u0001\u0000\u0000\u0000\u0222\u0220\u0001\u0000\u0000\u0000"+
- "\u0223\u0225\u0003\n\u0005\u0000\u0224\u0226\u0007\u0004\u0000\u0000\u0225"+
- "\u0224\u0001\u0000\u0000\u0000\u0225\u0226\u0001\u0000\u0000\u0000\u0226"+
- "\u0229\u0001\u0000\u0000\u0000\u0227\u0228\u00056\u0000\u0000\u0228\u022a"+
- "\u0007\u0005\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a"+
- "\u0001\u0000\u0000\u0000\u022aW\u0001\u0000\u0000\u0000\u022b\u022c\u0005"+
- "\b\u0000\u0000\u022c\u022d\u0003D\"\u0000\u022dY\u0001\u0000\u0000\u0000"+
- "\u022e\u022f\u0005\u0002\u0000\u0000\u022f\u0230\u0003D\"\u0000\u0230"+
- "[\u0001\u0000\u0000\u0000\u0231\u0232\u0005\u000b\u0000\u0000\u0232\u0237"+
- "\u0003^/\u0000\u0233\u0234\u0005*\u0000\u0000\u0234\u0236\u0003^/\u0000"+
- "\u0235\u0233\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000\u0000"+
- "\u0237\u0235\u0001\u0000\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000"+
- "\u0238]\u0001\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a"+
- "\u023b\u0003B!\u0000\u023b\u023c\u0005$\u0000\u0000\u023c\u023d\u0003"+
- "B!\u0000\u023d_\u0001\u0000\u0000\u0000\u023e\u023f\u0005\u0001\u0000"+
- "\u0000\u023f\u0240\u0003\u0014\n\u0000\u0240\u0242\u0003r9\u0000\u0241"+
- "\u0243\u0003f3\u0000\u0242\u0241\u0001\u0000\u0000\u0000\u0242\u0243\u0001"+
- "\u0000\u0000\u0000\u0243a\u0001\u0000\u0000\u0000\u0244\u0245\u0005\u0007"+
- "\u0000\u0000\u0245\u0246\u0003\u0014\n\u0000\u0246\u0247\u0003r9\u0000"+
- "\u0247c\u0001\u0000\u0000\u0000\u0248\u0249\u0005\n\u0000\u0000\u0249"+
- "\u024a\u0003@ \u0000\u024ae\u0001\u0000\u0000\u0000\u024b\u0250\u0003"+
- "h4\u0000\u024c\u024d\u0005*\u0000\u0000\u024d\u024f\u0003h4\u0000\u024e"+
- "\u024c\u0001\u0000\u0000\u0000\u024f\u0252\u0001\u0000\u0000\u0000\u0250"+
- "\u024e\u0001\u0000\u0000\u0000\u0250\u0251\u0001\u0000\u0000\u0000\u0251"+
- "g\u0001\u0000\u0000\u0000\u0252\u0250\u0001\u0000\u0000\u0000\u0253\u0254"+
- "\u0003F#\u0000\u0254\u0255\u0005&\u0000\u0000\u0255\u0256\u0003J%\u0000"+
- "\u0256i\u0001\u0000\u0000\u0000\u0257\u0258\u0007\u0006\u0000\u0000\u0258"+
- "k\u0001\u0000\u0000\u0000\u0259\u025c\u0003n7\u0000\u025a\u025c\u0003"+
- "p8\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025b\u025a\u0001\u0000\u0000"+
- "\u0000\u025cm\u0001\u0000\u0000\u0000\u025d\u025f\u0007\u0000\u0000\u0000"+
- "\u025e\u025d\u0001\u0000\u0000\u0000\u025e\u025f\u0001\u0000\u0000\u0000"+
- "\u025f\u0260\u0001\u0000\u0000\u0000\u0260\u0261\u0005\"\u0000\u0000\u0261"+
- "o\u0001\u0000\u0000\u0000\u0262\u0264\u0007\u0000\u0000\u0000\u0263\u0262"+
- "\u0001\u0000\u0000\u0000\u0263\u0264\u0001\u0000\u0000\u0000\u0264\u0265"+
- "\u0001\u0000\u0000\u0000\u0265\u0266\u0005!\u0000\u0000\u0266q\u0001\u0000"+
- "\u0000\u0000\u0267\u0268\u0005 \u0000\u0000\u0268s\u0001\u0000\u0000\u0000"+
- "\u0269\u026a\u0007\u0007\u0000\u0000\u026au\u0001\u0000\u0000\u0000\u026b"+
- "\u026c\u0005\u0005\u0000\u0000\u026c\u026d\u0003x<\u0000\u026dw\u0001"+
- "\u0000\u0000\u0000\u026e\u026f\u0005O\u0000\u0000\u026f\u0270\u0003\u0002"+
- "\u0001\u0000\u0270\u0271\u0005P\u0000\u0000\u0271y\u0001\u0000\u0000\u0000"+
- "\u0272\u0273\u0005\r\u0000\u0000\u0273\u0274\u0005o\u0000\u0000\u0274"+
- "{\u0001\u0000\u0000\u0000\u0275\u0276\u0005\u0003\u0000\u0000\u0276\u0279"+
- "\u0005e\u0000\u0000\u0277\u0278\u00057\u0000\u0000\u0278\u027a\u0003B"+
- "!\u0000\u0279\u0277\u0001\u0000\u0000\u0000\u0279\u027a\u0001\u0000\u0000"+
- "\u0000\u027a\u0284\u0001\u0000\u0000\u0000\u027b\u027c\u0005=\u0000\u0000"+
- "\u027c\u0281\u0003~?\u0000\u027d\u027e\u0005*\u0000\u0000\u027e\u0280"+
- "\u0003~?\u0000\u027f\u027d\u0001\u0000\u0000\u0000\u0280\u0283\u0001\u0000"+
- "\u0000\u0000\u0281\u027f\u0001\u0000\u0000\u0000\u0281\u0282\u0001\u0000"+
- "\u0000\u0000\u0282\u0285\u0001\u0000\u0000\u0000\u0283\u0281\u0001\u0000"+
- "\u0000\u0000\u0284\u027b\u0001\u0000\u0000\u0000\u0284\u0285\u0001\u0000"+
- "\u0000\u0000\u0285}\u0001\u0000\u0000\u0000\u0286\u0287\u0003B!\u0000"+
- "\u0287\u0288\u0005&\u0000\u0000\u0288\u028a\u0001\u0000\u0000\u0000\u0289"+
- "\u0286\u0001\u0000\u0000\u0000\u0289\u028a\u0001\u0000\u0000\u0000\u028a"+
- "\u028b\u0001\u0000\u0000\u0000\u028b\u028c\u0003B!\u0000\u028c\u007f\u0001"+
- "\u0000\u0000\u0000\u028d\u028e\u0005\u0012\u0000\u0000\u028e\u0291\u0003"+
- "@ \u0000\u028f\u0290\u00057\u0000\u0000\u0290\u0292\u0003@ \u0000\u0291"+
- "\u028f\u0001\u0000\u0000\u0000\u0291\u0292\u0001\u0000\u0000\u0000\u0292"+
- "\u0298\u0001\u0000\u0000\u0000\u0293\u0294\u0005$\u0000\u0000\u0294\u0295"+
- "\u0003@ \u0000\u0295\u0296\u0005*\u0000\u0000\u0296\u0297\u0003@ \u0000"+
- "\u0297\u0299\u0001\u0000\u0000\u0000\u0298\u0293\u0001\u0000\u0000\u0000"+
- "\u0298\u0299\u0001\u0000\u0000\u0000\u0299\u0081\u0001\u0000\u0000\u0000"+
- "\u029a\u029b\u0005\u0015\u0000\u0000\u029b\u029c\u0003(\u0014\u0000\u029c"+
- "\u029d\u00057\u0000\u0000\u029d\u029e\u0003D\"\u0000\u029e\u0083\u0001"+
- "\u0000\u0000\u0000\u029f\u02a0\u0005\u0014\u0000\u0000\u02a0\u02a3\u0003"+
- "<\u001e\u0000\u02a1\u02a2\u0005\'\u0000\u0000\u02a2\u02a4\u0003\"\u0011"+
- "\u0000\u02a3\u02a1\u0001\u0000\u0000\u0000\u02a3\u02a4\u0001\u0000\u0000"+
- "\u0000\u02a4\u0085\u0001\u0000\u0000\u0000\u02a5\u02a6\u0007\b\u0000\u0000"+
- "\u02a6\u02a7\u0005}\u0000\u0000\u02a7\u02a8\u0003\u0088D\u0000\u02a8\u02a9"+
- "\u0003\u008aE\u0000\u02a9\u0087\u0001\u0000\u0000\u0000\u02aa\u02ab\u0003"+
- "(\u0014\u0000\u02ab\u0089\u0001\u0000\u0000\u0000\u02ac\u02ad\u00057\u0000"+
- "\u0000\u02ad\u02b2\u0003\u008cF\u0000\u02ae\u02af\u0005*\u0000\u0000\u02af"+
- "\u02b1\u0003\u008cF\u0000\u02b0\u02ae\u0001\u0000\u0000\u0000\u02b1\u02b4"+
- "\u0001\u0000\u0000\u0000\u02b2\u02b0\u0001\u0000\u0000\u0000\u02b2\u02b3"+
- "\u0001\u0000\u0000\u0000\u02b3\u008b\u0001\u0000\u0000\u0000\u02b4\u02b2"+
- "\u0001\u0000\u0000\u0000\u02b5\u02b6\u0003\u0010\b\u0000\u02b6\u008d\u0001"+
- "\u0000\u0000\u0000\u02b7\u02b8\u0005\u0017\u0000\u0000\u02b8\u02b9\u0003"+
- "J%\u0000\u02b9\u02ba\u00057\u0000\u0000\u02ba\u02bb\u0003\"\u0011\u0000"+
- "\u02bb\u02bc\u0005=\u0000\u0000\u02bc\u02bd\u0003P(\u0000\u02bd\u008f"+
- "\u0001\u0000\u0000\u0000\u02be\u02bf\u0005\u0013\u0000\u0000\u02bf\u02c0"+
- "\u0003\u0014\n\u0000\u02c0\u02c1\u0005=\u0000\u0000\u02c1\u02c4\u0003"+
- "P(\u0000\u02c2\u02c3\u0005$\u0000\u0000\u02c3\u02c5\u0003@ \u0000\u02c4"+
- "\u02c2\u0001\u0000\u0000\u0000\u02c4\u02c5\u0001\u0000\u0000\u0000\u02c5"+
- "\u0091\u0001\u0000\u0000\u0000D\u009d\u00a6\u00be\u00ca\u00d3\u00db\u00e0"+
- "\u00e8\u00ea\u00ef\u00f6\u00fb\u0100\u010a\u0110\u0118\u011a\u0125\u012c"+
- "\u0137\u013c\u013e\u014a\u015d\u0163\u016d\u0171\u0176\u017c\u017e\u0188"+
- "\u0190\u019d\u01a1\u01a5\u01ac\u01b0\u01b7\u01bd\u01c4\u01cc\u01d4\u01dc"+
- "\u01ed\u01f8\u0203\u0208\u020c\u0210\u0215\u0220\u0225\u0229\u0237\u0242"+
- "\u0250\u025b\u025e\u0263\u0279\u0281\u0284\u0289\u0291\u0298\u02a3\u02b2"+
- "\u02c4";
+ "\u0001\u0003\u0001\u0003\u0003\u0003\u00c3\b\u0003\u0001\u0004\u0001\u0004"+
+ "\u0001\u0004\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0003\u0005\u00cf\b\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0001\u0005\u0005\u0005\u00d6\b\u0005\n\u0005"+
+ "\f\u0005\u00d9\t\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0003\u0005\u00e0\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0003\u0005\u00e5\b\u0005\u0001\u0005\u0001\u0005\u0001\u0005\u0001\u0005"+
+ "\u0001\u0005\u0001\u0005\u0005\u0005\u00ed\b\u0005\n\u0005\f\u0005\u00f0"+
+ "\t\u0005\u0001\u0006\u0001\u0006\u0003\u0006\u00f4\b\u0006\u0001\u0006"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u00fb\b\u0006"+
+ "\u0001\u0006\u0001\u0006\u0001\u0006\u0003\u0006\u0100\b\u0006\u0001\u0007"+
+ "\u0001\u0007\u0001\u0007\u0003\u0007\u0105\b\u0007\u0001\u0007\u0001\u0007"+
+ "\u0001\u0007\u0001\b\u0001\b\u0001\b\u0001\b\u0001\b\u0003\b\u010f\b\b"+
+ "\u0001\t\u0001\t\u0001\t\u0001\t\u0003\t\u0115\b\t\u0001\t\u0001\t\u0001"+
+ "\t\u0001\t\u0001\t\u0001\t\u0005\t\u011d\b\t\n\t\f\t\u0120\t\t\u0001\n"+
+ "\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0001\n\u0003\n\u012a"+
+ "\b\n\u0001\n\u0001\n\u0001\n\u0005\n\u012f\b\n\n\n\f\n\u0132\t\n\u0001"+
+ "\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0001\u000b\u0005"+
+ "\u000b\u013a\b\u000b\n\u000b\f\u000b\u013d\t\u000b\u0001\u000b\u0001\u000b"+
+ "\u0003\u000b\u0141\b\u000b\u0003\u000b\u0143\b\u000b\u0001\u000b\u0001"+
+ "\u000b\u0001\f\u0001\f\u0001\r\u0001\r\u0001\r\u0001\r\u0005\r\u014d\b"+
+ "\r\n\r\f\r\u0150\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\u0160\b\u0011\n\u0011"+
+ "\f\u0011\u0163\t\u0011\u0001\u0012\u0001\u0012\u0001\u0012\u0003\u0012"+
+ "\u0168\b\u0012\u0001\u0012\u0001\u0012\u0001\u0013\u0001\u0013\u0001\u0013"+
+ "\u0005\u0013\u016f\b\u0013\n\u0013\f\u0013\u0172\t\u0013\u0001\u0014\u0001"+
+ "\u0014\u0001\u0014\u0003\u0014\u0177\b\u0014\u0001\u0015\u0001\u0015\u0001"+
+ "\u0015\u0001\u0015\u0005\u0015\u017d\b\u0015\n\u0015\f\u0015\u0180\t\u0015"+
+ "\u0001\u0015\u0003\u0015\u0183\b\u0015\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0003\u0016\u0188\b\u0016\u0001\u0016\u0001\u0016\u0001\u0016\u0001\u0016"+
+ "\u0003\u0016\u018e\b\u0016\u0003\u0016\u0190\b\u0016\u0001\u0017\u0001"+
+ "\u0017\u0001\u0018\u0001\u0018\u0001\u0019\u0001\u0019\u0001\u001a\u0001"+
+ "\u001a\u0003\u001a\u019a\b\u001a\u0001\u001b\u0001\u001b\u0001\u001b\u0001"+
+ "\u001b\u0005\u001b\u01a0\b\u001b\n\u001b\f\u001b\u01a3\t\u001b\u0001\u001c"+
+ "\u0001\u001c\u0001\u001c\u0001\u001c\u0001\u001d\u0001\u001d\u0001\u001d"+
+ "\u0001\u001d\u0005\u001d\u01ad\b\u001d\n\u001d\f\u001d\u01b0\t\u001d\u0001"+
+ "\u001d\u0003\u001d\u01b3\b\u001d\u0001\u001d\u0001\u001d\u0003\u001d\u01b7"+
+ "\b\u001d\u0001\u001e\u0001\u001e\u0001\u001e\u0001\u001f\u0001\u001f\u0003"+
+ "\u001f\u01be\b\u001f\u0001\u001f\u0001\u001f\u0003\u001f\u01c2\b\u001f"+
+ "\u0001 \u0001 \u0001 \u0005 \u01c7\b \n \f \u01ca\t \u0001!\u0001!\u0001"+
+ "!\u0003!\u01cf\b!\u0001\"\u0001\"\u0001\"\u0005\"\u01d4\b\"\n\"\f\"\u01d7"+
+ "\t\"\u0001#\u0001#\u0001#\u0005#\u01dc\b#\n#\f#\u01df\t#\u0001$\u0001"+
+ "$\u0001$\u0005$\u01e4\b$\n$\f$\u01e7\t$\u0001%\u0001%\u0001&\u0001&\u0001"+
+ "&\u0003&\u01ee\b&\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001"+
+ "\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0005\'\u01fd\b\'\n"+
+ "\'\f\'\u0200\t\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'\u0005"+
+ "\'\u0208\b\'\n\'\f\'\u020b\t\'\u0001\'\u0001\'\u0001\'\u0001\'\u0001\'"+
+ "\u0001\'\u0005\'\u0213\b\'\n\'\f\'\u0216\t\'\u0001\'\u0001\'\u0003\'\u021a"+
+ "\b\'\u0001(\u0001(\u0003(\u021e\b(\u0001)\u0001)\u0003)\u0222\b)\u0001"+
+ "*\u0001*\u0001*\u0003*\u0227\b*\u0001+\u0001+\u0001+\u0001,\u0001,\u0001"+
+ ",\u0001,\u0005,\u0230\b,\n,\f,\u0233\t,\u0001-\u0001-\u0003-\u0237\b-"+
+ "\u0001-\u0001-\u0003-\u023b\b-\u0001.\u0001.\u0001.\u0001/\u0001/\u0001"+
+ "/\u00010\u00010\u00010\u00010\u00050\u0247\b0\n0\f0\u024a\t0\u00011\u0001"+
+ "1\u00011\u00011\u00012\u00012\u00012\u00012\u00032\u0254\b2\u00013\u0001"+
+ "3\u00013\u00013\u00014\u00014\u00014\u00015\u00015\u00015\u00055\u0260"+
+ "\b5\n5\f5\u0263\t5\u00016\u00016\u00016\u00016\u00017\u00017\u00018\u0001"+
+ "8\u00038\u026d\b8\u00019\u00039\u0270\b9\u00019\u00019\u0001:\u0003:\u0275"+
+ "\b:\u0001:\u0001:\u0001;\u0001;\u0001<\u0001<\u0001=\u0001=\u0001=\u0001"+
+ ">\u0001>\u0001>\u0001>\u0001?\u0001?\u0001?\u0001@\u0001@\u0001@\u0001"+
+ "@\u0003@\u028b\b@\u0001@\u0001@\u0001@\u0001@\u0005@\u0291\b@\n@\f@\u0294"+
+ "\t@\u0003@\u0296\b@\u0001A\u0001A\u0001A\u0003A\u029b\bA\u0001A\u0001"+
+ "A\u0001B\u0001B\u0001B\u0001B\u0003B\u02a3\bB\u0001B\u0001B\u0001B\u0001"+
+ "B\u0001B\u0003B\u02aa\bB\u0001C\u0001C\u0001C\u0001C\u0001C\u0001D\u0001"+
+ "D\u0001D\u0001D\u0003D\u02b5\bD\u0001E\u0001E\u0001E\u0001E\u0001E\u0001"+
+ "F\u0001F\u0001G\u0001G\u0001G\u0001G\u0005G\u02c2\bG\nG\fG\u02c5\tG\u0001"+
+ "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001I\u0001J\u0001"+
+ "J\u0001J\u0001J\u0001J\u0001J\u0003J\u02d6\bJ\u0001J\u0000\u0004\u0002"+
+ "\n\u0012\u0014K\u0000\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014"+
+ "\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfh"+
+ "jlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092"+
+ "\u0094\u0000\t\u0001\u0000EF\u0001\u0000GI\u0002\u0000 ZZ\u0001\u0000"+
+ "QR\u0002\u0000%%++\u0002\u0000..11\u0002\u0000--<<\u0002\u0000>>@D\u0002"+
+ "\u0000\u0011\u0011\u0019\u001a\u02f6\u0000\u0096\u0001\u0000\u0000\u0000"+
+ "\u0002\u0099\u0001\u0000\u0000\u0000\u0004\u00aa\u0001\u0000\u0000\u0000"+
+ "\u0006\u00c2\u0001\u0000\u0000\u0000\b\u00c4\u0001\u0000\u0000\u0000\n"+
+ "\u00e4\u0001\u0000\u0000\u0000\f\u00ff\u0001\u0000\u0000\u0000\u000e\u0101"+
+ "\u0001\u0000\u0000\u0000\u0010\u010e\u0001\u0000\u0000\u0000\u0012\u0114"+
+ "\u0001\u0000\u0000\u0000\u0014\u0129\u0001\u0000\u0000\u0000\u0016\u0133"+
+ "\u0001\u0000\u0000\u0000\u0018\u0146\u0001\u0000\u0000\u0000\u001a\u0148"+
+ "\u0001\u0000\u0000\u0000\u001c\u0153\u0001\u0000\u0000\u0000\u001e\u0157"+
+ "\u0001\u0000\u0000\u0000 \u0159\u0001\u0000\u0000\u0000\"\u015c\u0001"+
+ "\u0000\u0000\u0000$\u0167\u0001\u0000\u0000\u0000&\u016b\u0001\u0000\u0000"+
+ "\u0000(\u0173\u0001\u0000\u0000\u0000*\u0178\u0001\u0000\u0000\u0000,"+
+ "\u018f\u0001\u0000\u0000\u0000.\u0191\u0001\u0000\u0000\u00000\u0193\u0001"+
+ "\u0000\u0000\u00002\u0195\u0001\u0000\u0000\u00004\u0199\u0001\u0000\u0000"+
+ "\u00006\u019b\u0001\u0000\u0000\u00008\u01a4\u0001\u0000\u0000\u0000:"+
+ "\u01a8\u0001\u0000\u0000\u0000<\u01b8\u0001\u0000\u0000\u0000>\u01bb\u0001"+
+ "\u0000\u0000\u0000@\u01c3\u0001\u0000\u0000\u0000B\u01cb\u0001\u0000\u0000"+
+ "\u0000D\u01d0\u0001\u0000\u0000\u0000F\u01d8\u0001\u0000\u0000\u0000H"+
+ "\u01e0\u0001\u0000\u0000\u0000J\u01e8\u0001\u0000\u0000\u0000L\u01ed\u0001"+
+ "\u0000\u0000\u0000N\u0219\u0001\u0000\u0000\u0000P\u021d\u0001\u0000\u0000"+
+ "\u0000R\u0221\u0001\u0000\u0000\u0000T\u0226\u0001\u0000\u0000\u0000V"+
+ "\u0228\u0001\u0000\u0000\u0000X\u022b\u0001\u0000\u0000\u0000Z\u0234\u0001"+
+ "\u0000\u0000\u0000\\\u023c\u0001\u0000\u0000\u0000^\u023f\u0001\u0000"+
+ "\u0000\u0000`\u0242\u0001\u0000\u0000\u0000b\u024b\u0001\u0000\u0000\u0000"+
+ "d\u024f\u0001\u0000\u0000\u0000f\u0255\u0001\u0000\u0000\u0000h\u0259"+
+ "\u0001\u0000\u0000\u0000j\u025c\u0001\u0000\u0000\u0000l\u0264\u0001\u0000"+
+ "\u0000\u0000n\u0268\u0001\u0000\u0000\u0000p\u026c\u0001\u0000\u0000\u0000"+
+ "r\u026f\u0001\u0000\u0000\u0000t\u0274\u0001\u0000\u0000\u0000v\u0278"+
+ "\u0001\u0000\u0000\u0000x\u027a\u0001\u0000\u0000\u0000z\u027c\u0001\u0000"+
+ "\u0000\u0000|\u027f\u0001\u0000\u0000\u0000~\u0283\u0001\u0000\u0000\u0000"+
+ "\u0080\u0286\u0001\u0000\u0000\u0000\u0082\u029a\u0001\u0000\u0000\u0000"+
+ "\u0084\u029e\u0001\u0000\u0000\u0000\u0086\u02ab\u0001\u0000\u0000\u0000"+
+ "\u0088\u02b0\u0001\u0000\u0000\u0000\u008a\u02b6\u0001\u0000\u0000\u0000"+
+ "\u008c\u02bb\u0001\u0000\u0000\u0000\u008e\u02bd\u0001\u0000\u0000\u0000"+
+ "\u0090\u02c6\u0001\u0000\u0000\u0000\u0092\u02c8\u0001\u0000\u0000\u0000"+
+ "\u0094\u02cf\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\u001f\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\u0003z=\u0000\u00a5\u00ab\u0003*\u0015\u0000\u00a6\u00ab"+
+ "\u0003 \u0010\u0000\u00a7\u00ab\u0003~?\u0000\u00a8\u00a9\u0004\u0002"+
+ "\u0001\u0000\u00a9\u00ab\u0003:\u001d\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\u00c3\u0003<\u001e\u0000"+
+ "\u00ad\u00c3\u0003\b\u0004\u0000\u00ae\u00c3\u0003\\.\u0000\u00af\u00c3"+
+ "\u0003V+\u0000\u00b0\u00c3\u0003>\u001f\u0000\u00b1\u00c3\u0003X,\u0000"+
+ "\u00b2\u00c3\u0003^/\u0000\u00b3\u00c3\u0003`0\u0000\u00b4\u00c3\u0003"+
+ "d2\u0000\u00b5\u00c3\u0003f3\u0000\u00b6\u00c3\u0003\u0080@\u0000\u00b7"+
+ "\u00c3\u0003h4\u0000\u00b8\u00c3\u0003\u008aE\u0000\u00b9\u00c3\u0003"+
+ "\u0084B\u0000\u00ba\u00bb\u0004\u0003\u0002\u0000\u00bb\u00c3\u0003\u0094"+
+ "J\u0000\u00bc\u00bd\u0004\u0003\u0003\u0000\u00bd\u00c3\u0003\u0088D\u0000"+
+ "\u00be\u00bf\u0004\u0003\u0004\u0000\u00bf\u00c3\u0003\u0086C\u0000\u00c0"+
+ "\u00c1\u0004\u0003\u0005\u0000\u00c1\u00c3\u0003\u0092I\u0000\u00c2\u00ac"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00ad\u0001\u0000\u0000\u0000\u00c2\u00ae"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00af\u0001\u0000\u0000\u0000\u00c2\u00b0"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00b1\u0001\u0000\u0000\u0000\u00c2\u00b2"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00b3\u0001\u0000\u0000\u0000\u00c2\u00b4"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00b5\u0001\u0000\u0000\u0000\u00c2\u00b6"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00b7\u0001\u0000\u0000\u0000\u00c2\u00b8"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00b9\u0001\u0000\u0000\u0000\u00c2\u00ba"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00bc\u0001\u0000\u0000\u0000\u00c2\u00be"+
+ "\u0001\u0000\u0000\u0000\u00c2\u00c0\u0001\u0000\u0000\u0000\u00c3\u0007"+
+ "\u0001\u0000\u0000\u0000\u00c4\u00c5\u0005\u0010\u0000\u0000\u00c5\u00c6"+
+ "\u0003\n\u0005\u0000\u00c6\t\u0001\u0000\u0000\u0000\u00c7\u00c8\u0006"+
+ "\u0005\uffff\uffff\u0000\u00c8\u00c9\u00054\u0000\u0000\u00c9\u00e5\u0003"+
+ "\n\u0005\b\u00ca\u00e5\u0003\u0010\b\u0000\u00cb\u00e5\u0003\f\u0006\u0000"+
+ "\u00cc\u00ce\u0003\u0010\b\u0000\u00cd\u00cf\u00054\u0000\u0000\u00ce"+
+ "\u00cd\u0001\u0000\u0000\u0000\u00ce\u00cf\u0001\u0000\u0000\u0000\u00cf"+
+ "\u00d0\u0001\u0000\u0000\u0000\u00d0\u00d1\u0005/\u0000\u0000\u00d1\u00d2"+
+ "\u00053\u0000\u0000\u00d2\u00d7\u0003\u0010\b\u0000\u00d3\u00d4\u0005"+
+ "*\u0000\u0000\u00d4\u00d6\u0003\u0010\b\u0000\u00d5\u00d3\u0001\u0000"+
+ "\u0000\u0000\u00d6\u00d9\u0001\u0000\u0000\u0000\u00d7\u00d5\u0001\u0000"+
+ "\u0000\u0000\u00d7\u00d8\u0001\u0000\u0000\u0000\u00d8\u00da\u0001\u0000"+
+ "\u0000\u0000\u00d9\u00d7\u0001\u0000\u0000\u0000\u00da\u00db\u0005;\u0000"+
+ "\u0000\u00db\u00e5\u0001\u0000\u0000\u0000\u00dc\u00dd\u0003\u0010\b\u0000"+
+ "\u00dd\u00df\u00050\u0000\u0000\u00de\u00e0\u00054\u0000\u0000\u00df\u00de"+
+ "\u0001\u0000\u0000\u0000\u00df\u00e0\u0001\u0000\u0000\u0000\u00e0\u00e1"+
+ "\u0001\u0000\u0000\u0000\u00e1\u00e2\u00055\u0000\u0000\u00e2\u00e5\u0001"+
+ "\u0000\u0000\u0000\u00e3\u00e5\u0003\u000e\u0007\u0000\u00e4\u00c7\u0001"+
+ "\u0000\u0000\u0000\u00e4\u00ca\u0001\u0000\u0000\u0000\u00e4\u00cb\u0001"+
+ "\u0000\u0000\u0000\u00e4\u00cc\u0001\u0000\u0000\u0000\u00e4\u00dc\u0001"+
+ "\u0000\u0000\u0000\u00e4\u00e3\u0001\u0000\u0000\u0000\u00e5\u00ee\u0001"+
+ "\u0000\u0000\u0000\u00e6\u00e7\n\u0005\u0000\u0000\u00e7\u00e8\u0005#"+
+ "\u0000\u0000\u00e8\u00ed\u0003\n\u0005\u0006\u00e9\u00ea\n\u0004\u0000"+
+ "\u0000\u00ea\u00eb\u00058\u0000\u0000\u00eb\u00ed\u0003\n\u0005\u0005"+
+ "\u00ec\u00e6\u0001\u0000\u0000\u0000\u00ec\u00e9\u0001\u0000\u0000\u0000"+
+ "\u00ed\u00f0\u0001\u0000\u0000\u0000\u00ee\u00ec\u0001\u0000\u0000\u0000"+
+ "\u00ee\u00ef\u0001\u0000\u0000\u0000\u00ef\u000b\u0001\u0000\u0000\u0000"+
+ "\u00f0\u00ee\u0001\u0000\u0000\u0000\u00f1\u00f3\u0003\u0010\b\u0000\u00f2"+
+ "\u00f4\u00054\u0000\u0000\u00f3\u00f2\u0001\u0000\u0000\u0000\u00f3\u00f4"+
+ "\u0001\u0000\u0000\u0000\u00f4\u00f5\u0001\u0000\u0000\u0000\u00f5\u00f6"+
+ "\u00052\u0000\u0000\u00f6\u00f7\u0003v;\u0000\u00f7\u0100\u0001\u0000"+
+ "\u0000\u0000\u00f8\u00fa\u0003\u0010\b\u0000\u00f9\u00fb\u00054\u0000"+
+ "\u0000\u00fa\u00f9\u0001\u0000\u0000\u0000\u00fa\u00fb\u0001\u0000\u0000"+
+ "\u0000\u00fb\u00fc\u0001\u0000\u0000\u0000\u00fc\u00fd\u0005:\u0000\u0000"+
+ "\u00fd\u00fe\u0003v;\u0000\u00fe\u0100\u0001\u0000\u0000\u0000\u00ff\u00f1"+
+ "\u0001\u0000\u0000\u0000\u00ff\u00f8\u0001\u0000\u0000\u0000\u0100\r\u0001"+
+ "\u0000\u0000\u0000\u0101\u0104\u0003D\"\u0000\u0102\u0103\u0005(\u0000"+
+ "\u0000\u0103\u0105\u0003\u001e\u000f\u0000\u0104\u0102\u0001\u0000\u0000"+
+ "\u0000\u0104\u0105\u0001\u0000\u0000\u0000\u0105\u0106\u0001\u0000\u0000"+
+ "\u0000\u0106\u0107\u0005)\u0000\u0000\u0107\u0108\u0003N\'\u0000\u0108"+
+ "\u000f\u0001\u0000\u0000\u0000\u0109\u010f\u0003\u0012\t\u0000\u010a\u010b"+
+ "\u0003\u0012\t\u0000\u010b\u010c\u0003x<\u0000\u010c\u010d\u0003\u0012"+
+ "\t\u0000\u010d\u010f\u0001\u0000\u0000\u0000\u010e\u0109\u0001\u0000\u0000"+
+ "\u0000\u010e\u010a\u0001\u0000\u0000\u0000\u010f\u0011\u0001\u0000\u0000"+
+ "\u0000\u0110\u0111\u0006\t\uffff\uffff\u0000\u0111\u0115\u0003\u0014\n"+
+ "\u0000\u0112\u0113\u0007\u0000\u0000\u0000\u0113\u0115\u0003\u0012\t\u0003"+
+ "\u0114\u0110\u0001\u0000\u0000\u0000\u0114\u0112\u0001\u0000\u0000\u0000"+
+ "\u0115\u011e\u0001\u0000\u0000\u0000\u0116\u0117\n\u0002\u0000\u0000\u0117"+
+ "\u0118\u0007\u0001\u0000\u0000\u0118\u011d\u0003\u0012\t\u0003\u0119\u011a"+
+ "\n\u0001\u0000\u0000\u011a\u011b\u0007\u0000\u0000\u0000\u011b\u011d\u0003"+
+ "\u0012\t\u0002\u011c\u0116\u0001\u0000\u0000\u0000\u011c\u0119\u0001\u0000"+
+ "\u0000\u0000\u011d\u0120\u0001\u0000\u0000\u0000\u011e\u011c\u0001\u0000"+
+ "\u0000\u0000\u011e\u011f\u0001\u0000\u0000\u0000\u011f\u0013\u0001\u0000"+
+ "\u0000\u0000\u0120\u011e\u0001\u0000\u0000\u0000\u0121\u0122\u0006\n\uffff"+
+ "\uffff\u0000\u0122\u012a\u0003N\'\u0000\u0123\u012a\u0003D\"\u0000\u0124"+
+ "\u012a\u0003\u0016\u000b\u0000\u0125\u0126\u00053\u0000\u0000\u0126\u0127"+
+ "\u0003\n\u0005\u0000\u0127\u0128\u0005;\u0000\u0000\u0128\u012a\u0001"+
+ "\u0000\u0000\u0000\u0129\u0121\u0001\u0000\u0000\u0000\u0129\u0123\u0001"+
+ "\u0000\u0000\u0000\u0129\u0124\u0001\u0000\u0000\u0000\u0129\u0125\u0001"+
+ "\u0000\u0000\u0000\u012a\u0130\u0001\u0000\u0000\u0000\u012b\u012c\n\u0001"+
+ "\u0000\u0000\u012c\u012d\u0005(\u0000\u0000\u012d\u012f\u0003\u001e\u000f"+
+ "\u0000\u012e\u012b\u0001\u0000\u0000\u0000\u012f\u0132\u0001\u0000\u0000"+
+ "\u0000\u0130\u012e\u0001\u0000\u0000\u0000\u0130\u0131\u0001\u0000\u0000"+
+ "\u0000\u0131\u0015\u0001\u0000\u0000\u0000\u0132\u0130\u0001\u0000\u0000"+
+ "\u0000\u0133\u0134\u0003\u0018\f\u0000\u0134\u0142\u00053\u0000\u0000"+
+ "\u0135\u0143\u0005G\u0000\u0000\u0136\u013b\u0003\n\u0005\u0000\u0137"+
+ "\u0138\u0005*\u0000\u0000\u0138\u013a\u0003\n\u0005\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\u0140"+
+ "\u0001\u0000\u0000\u0000\u013d\u013b\u0001\u0000\u0000\u0000\u013e\u013f"+
+ "\u0005*\u0000\u0000\u013f\u0141\u0003\u001a\r\u0000\u0140\u013e\u0001"+
+ "\u0000\u0000\u0000\u0140\u0141\u0001\u0000\u0000\u0000\u0141\u0143\u0001"+
+ "\u0000\u0000\u0000\u0142\u0135\u0001\u0000\u0000\u0000\u0142\u0136\u0001"+
+ "\u0000\u0000\u0000\u0142\u0143\u0001\u0000\u0000\u0000\u0143\u0144\u0001"+
+ "\u0000\u0000\u0000\u0144\u0145\u0005;\u0000\u0000\u0145\u0017\u0001\u0000"+
+ "\u0000\u0000\u0146\u0147\u0003T*\u0000\u0147\u0019\u0001\u0000\u0000\u0000"+
+ "\u0148\u0149\u0005J\u0000\u0000\u0149\u014e\u0003\u001c\u000e\u0000\u014a"+
+ "\u014b\u0005*\u0000\u0000\u014b\u014d\u0003\u001c\u000e\u0000\u014c\u014a"+
+ "\u0001\u0000\u0000\u0000\u014d\u0150\u0001\u0000\u0000\u0000\u014e\u014c"+
+ "\u0001\u0000\u0000\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f\u0151"+
+ "\u0001\u0000\u0000\u0000\u0150\u014e\u0001\u0000\u0000\u0000\u0151\u0152"+
+ "\u0005K\u0000\u0000\u0152\u001b\u0001\u0000\u0000\u0000\u0153\u0154\u0003"+
+ "v;\u0000\u0154\u0155\u0005)\u0000\u0000\u0155\u0156\u0003N\'\u0000\u0156"+
+ "\u001d\u0001\u0000\u0000\u0000\u0157\u0158\u0003J%\u0000\u0158\u001f\u0001"+
+ "\u0000\u0000\u0000\u0159\u015a\u0005\f\u0000\u0000\u015a\u015b\u0003\""+
+ "\u0011\u0000\u015b!\u0001\u0000\u0000\u0000\u015c\u0161\u0003$\u0012\u0000"+
+ "\u015d\u015e\u0005*\u0000\u0000\u015e\u0160\u0003$\u0012\u0000\u015f\u015d"+
+ "\u0001\u0000\u0000\u0000\u0160\u0163\u0001\u0000\u0000\u0000\u0161\u015f"+
+ "\u0001\u0000\u0000\u0000\u0161\u0162\u0001\u0000\u0000\u0000\u0162#\u0001"+
+ "\u0000\u0000\u0000\u0163\u0161\u0001\u0000\u0000\u0000\u0164\u0165\u0003"+
+ "D\"\u0000\u0165\u0166\u0005&\u0000\u0000\u0166\u0168\u0001\u0000\u0000"+
+ "\u0000\u0167\u0164\u0001\u0000\u0000\u0000\u0167\u0168\u0001\u0000\u0000"+
+ "\u0000\u0168\u0169\u0001\u0000\u0000\u0000\u0169\u016a\u0003\n\u0005\u0000"+
+ "\u016a%\u0001\u0000\u0000\u0000\u016b\u0170\u0003(\u0014\u0000\u016c\u016d"+
+ "\u0005*\u0000\u0000\u016d\u016f\u0003(\u0014\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\u0171\'\u0001\u0000\u0000"+
+ "\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0176\u0003D\"\u0000"+
+ "\u0174\u0175\u0005&\u0000\u0000\u0175\u0177\u0003\n\u0005\u0000\u0176"+
+ "\u0174\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000\u0177"+
+ ")\u0001\u0000\u0000\u0000\u0178\u0179\u0005\u0006\u0000\u0000\u0179\u017e"+
+ "\u0003,\u0016\u0000\u017a\u017b\u0005*\u0000\u0000\u017b\u017d\u0003,"+
+ "\u0016\u0000\u017c\u017a\u0001\u0000\u0000\u0000\u017d\u0180\u0001\u0000"+
+ "\u0000\u0000\u017e\u017c\u0001\u0000\u0000\u0000\u017e\u017f\u0001\u0000"+
+ "\u0000\u0000\u017f\u0182\u0001\u0000\u0000\u0000\u0180\u017e\u0001\u0000"+
+ "\u0000\u0000\u0181\u0183\u00034\u001a\u0000\u0182\u0181\u0001\u0000\u0000"+
+ "\u0000\u0182\u0183\u0001\u0000\u0000\u0000\u0183+\u0001\u0000\u0000\u0000"+
+ "\u0184\u0185\u0003.\u0017\u0000\u0185\u0186\u0005)\u0000\u0000\u0186\u0188"+
+ "\u0001\u0000\u0000\u0000\u0187\u0184\u0001\u0000\u0000\u0000\u0187\u0188"+
+ "\u0001\u0000\u0000\u0000\u0188\u0189\u0001\u0000\u0000\u0000\u0189\u0190"+
+ "\u00032\u0019\u0000\u018a\u018d\u00032\u0019\u0000\u018b\u018c\u0005("+
+ "\u0000\u0000\u018c\u018e\u00030\u0018\u0000\u018d\u018b\u0001\u0000\u0000"+
+ "\u0000\u018d\u018e\u0001\u0000\u0000\u0000\u018e\u0190\u0001\u0000\u0000"+
+ "\u0000\u018f\u0187\u0001\u0000\u0000\u0000\u018f\u018a\u0001\u0000\u0000"+
+ "\u0000\u0190-\u0001\u0000\u0000\u0000\u0191\u0192\u0007\u0002\u0000\u0000"+
+ "\u0192/\u0001\u0000\u0000\u0000\u0193\u0194\u0007\u0002\u0000\u0000\u0194"+
+ "1\u0001\u0000\u0000\u0000\u0195\u0196\u0007\u0002\u0000\u0000\u01963\u0001"+
+ "\u0000\u0000\u0000\u0197\u019a\u00036\u001b\u0000\u0198\u019a\u00038\u001c"+
+ "\u0000\u0199\u0197\u0001\u0000\u0000\u0000\u0199\u0198\u0001\u0000\u0000"+
+ "\u0000\u019a5\u0001\u0000\u0000\u0000\u019b\u019c\u0005Y\u0000\u0000\u019c"+
+ "\u01a1\u0005Z\u0000\u0000\u019d\u019e\u0005*\u0000\u0000\u019e\u01a0\u0005"+
+ "Z\u0000\u0000\u019f\u019d\u0001\u0000\u0000\u0000\u01a0\u01a3\u0001\u0000"+
+ "\u0000\u0000\u01a1\u019f\u0001\u0000\u0000\u0000\u01a1\u01a2\u0001\u0000"+
+ "\u0000\u0000\u01a27\u0001\u0000\u0000\u0000\u01a3\u01a1\u0001\u0000\u0000"+
+ "\u0000\u01a4\u01a5\u0005O\u0000\u0000\u01a5\u01a6\u00036\u001b\u0000\u01a6"+
+ "\u01a7\u0005P\u0000\u0000\u01a79\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005"+
+ "\u0016\u0000\u0000\u01a9\u01ae\u0003,\u0016\u0000\u01aa\u01ab\u0005*\u0000"+
+ "\u0000\u01ab\u01ad\u0003,\u0016\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\u01af\u01b2\u0001\u0000\u0000\u0000"+
+ "\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1\u01b3\u0003@ \u0000\u01b2\u01b1"+
+ "\u0001\u0000\u0000\u0000\u01b2\u01b3\u0001\u0000\u0000\u0000\u01b3\u01b6"+
+ "\u0001\u0000\u0000\u0000\u01b4\u01b5\u0005\'\u0000\u0000\u01b5\u01b7\u0003"+
+ "\"\u0011\u0000\u01b6\u01b4\u0001\u0000\u0000\u0000\u01b6\u01b7\u0001\u0000"+
+ "\u0000\u0000\u01b7;\u0001\u0000\u0000\u0000\u01b8\u01b9\u0005\u0004\u0000"+
+ "\u0000\u01b9\u01ba\u0003\"\u0011\u0000\u01ba=\u0001\u0000\u0000\u0000"+
+ "\u01bb\u01bd\u0005\u000f\u0000\u0000\u01bc\u01be\u0003@ \u0000\u01bd\u01bc"+
+ "\u0001\u0000\u0000\u0000\u01bd\u01be\u0001\u0000\u0000\u0000\u01be\u01c1"+
+ "\u0001\u0000\u0000\u0000\u01bf\u01c0\u0005\'\u0000\u0000\u01c0\u01c2\u0003"+
+ "\"\u0011\u0000\u01c1\u01bf\u0001\u0000\u0000\u0000\u01c1\u01c2\u0001\u0000"+
+ "\u0000\u0000\u01c2?\u0001\u0000\u0000\u0000\u01c3\u01c8\u0003B!\u0000"+
+ "\u01c4\u01c5\u0005*\u0000\u0000\u01c5\u01c7\u0003B!\u0000\u01c6\u01c4"+
+ "\u0001\u0000\u0000\u0000\u01c7\u01ca\u0001\u0000\u0000\u0000\u01c8\u01c6"+
+ "\u0001\u0000\u0000\u0000\u01c8\u01c9\u0001\u0000\u0000\u0000\u01c9A\u0001"+
+ "\u0000\u0000\u0000\u01ca\u01c8\u0001\u0000\u0000\u0000\u01cb\u01ce\u0003"+
+ "$\u0012\u0000\u01cc\u01cd\u0005\u0010\u0000\u0000\u01cd\u01cf\u0003\n"+
+ "\u0005\u0000\u01ce\u01cc\u0001\u0000\u0000\u0000\u01ce\u01cf\u0001\u0000"+
+ "\u0000\u0000\u01cfC\u0001\u0000\u0000\u0000\u01d0\u01d5\u0003T*\u0000"+
+ "\u01d1\u01d2\u0005,\u0000\u0000\u01d2\u01d4\u0003T*\u0000\u01d3\u01d1"+
+ "\u0001\u0000\u0000\u0000\u01d4\u01d7\u0001\u0000\u0000\u0000\u01d5\u01d3"+
+ "\u0001\u0000\u0000\u0000\u01d5\u01d6\u0001\u0000\u0000\u0000\u01d6E\u0001"+
+ "\u0000\u0000\u0000\u01d7\u01d5\u0001\u0000\u0000\u0000\u01d8\u01dd\u0003"+
+ "L&\u0000\u01d9\u01da\u0005,\u0000\u0000\u01da\u01dc\u0003L&\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"+
+ "G\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000\u01e0\u01e5"+
+ "\u0003F#\u0000\u01e1\u01e2\u0005*\u0000\u0000\u01e2\u01e4\u0003F#\u0000"+
+ "\u01e3\u01e1\u0001\u0000\u0000\u0000\u01e4\u01e7\u0001\u0000\u0000\u0000"+
+ "\u01e5\u01e3\u0001\u0000\u0000\u0000\u01e5\u01e6\u0001\u0000\u0000\u0000"+
+ "\u01e6I\u0001\u0000\u0000\u0000\u01e7\u01e5\u0001\u0000\u0000\u0000\u01e8"+
+ "\u01e9\u0007\u0003\u0000\u0000\u01e9K\u0001\u0000\u0000\u0000\u01ea\u01ee"+
+ "\u0005^\u0000\u0000\u01eb\u01ee\u0003P(\u0000\u01ec\u01ee\u0003R)\u0000"+
+ "\u01ed\u01ea\u0001\u0000\u0000\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000"+
+ "\u01ed\u01ec\u0001\u0000\u0000\u0000\u01eeM\u0001\u0000\u0000\u0000\u01ef"+
+ "\u021a\u00055\u0000\u0000\u01f0\u01f1\u0003t:\u0000\u01f1\u01f2\u0005"+
+ "Q\u0000\u0000\u01f2\u021a\u0001\u0000\u0000\u0000\u01f3\u021a\u0003r9"+
+ "\u0000\u01f4\u021a\u0003t:\u0000\u01f5\u021a\u0003n7\u0000\u01f6\u021a"+
+ "\u0003P(\u0000\u01f7\u021a\u0003v;\u0000\u01f8\u01f9\u0005O\u0000\u0000"+
+ "\u01f9\u01fe\u0003p8\u0000\u01fa\u01fb\u0005*\u0000\u0000\u01fb\u01fd"+
+ "\u0003p8\u0000\u01fc\u01fa\u0001\u0000\u0000\u0000\u01fd\u0200\u0001\u0000"+
+ "\u0000\u0000\u01fe\u01fc\u0001\u0000\u0000\u0000\u01fe\u01ff\u0001\u0000"+
+ "\u0000\u0000\u01ff\u0201\u0001\u0000\u0000\u0000\u0200\u01fe\u0001\u0000"+
+ "\u0000\u0000\u0201\u0202\u0005P\u0000\u0000\u0202\u021a\u0001\u0000\u0000"+
+ "\u0000\u0203\u0204\u0005O\u0000\u0000\u0204\u0209\u0003n7\u0000\u0205"+
+ "\u0206\u0005*\u0000\u0000\u0206\u0208\u0003n7\u0000\u0207\u0205\u0001"+
+ "\u0000\u0000\u0000\u0208\u020b\u0001\u0000\u0000\u0000\u0209\u0207\u0001"+
+ "\u0000\u0000\u0000\u0209\u020a\u0001\u0000\u0000\u0000\u020a\u020c\u0001"+
+ "\u0000\u0000\u0000\u020b\u0209\u0001\u0000\u0000\u0000\u020c\u020d\u0005"+
+ "P\u0000\u0000\u020d\u021a\u0001\u0000\u0000\u0000\u020e\u020f\u0005O\u0000"+
+ "\u0000\u020f\u0214\u0003v;\u0000\u0210\u0211\u0005*\u0000\u0000\u0211"+
+ "\u0213\u0003v;\u0000\u0212\u0210\u0001\u0000\u0000\u0000\u0213\u0216\u0001"+
+ "\u0000\u0000\u0000\u0214\u0212\u0001\u0000\u0000\u0000\u0214\u0215\u0001"+
+ "\u0000\u0000\u0000\u0215\u0217\u0001\u0000\u0000\u0000\u0216\u0214\u0001"+
+ "\u0000\u0000\u0000\u0217\u0218\u0005P\u0000\u0000\u0218\u021a\u0001\u0000"+
+ "\u0000\u0000\u0219\u01ef\u0001\u0000\u0000\u0000\u0219\u01f0\u0001\u0000"+
+ "\u0000\u0000\u0219\u01f3\u0001\u0000\u0000\u0000\u0219\u01f4\u0001\u0000"+
+ "\u0000\u0000\u0219\u01f5\u0001\u0000\u0000\u0000\u0219\u01f6\u0001\u0000"+
+ "\u0000\u0000\u0219\u01f7\u0001\u0000\u0000\u0000\u0219\u01f8\u0001\u0000"+
+ "\u0000\u0000\u0219\u0203\u0001\u0000\u0000\u0000\u0219\u020e\u0001\u0000"+
+ "\u0000\u0000\u021aO\u0001\u0000\u0000\u0000\u021b\u021e\u00059\u0000\u0000"+
+ "\u021c\u021e\u0005M\u0000\u0000\u021d\u021b\u0001\u0000\u0000\u0000\u021d"+
+ "\u021c\u0001\u0000\u0000\u0000\u021eQ\u0001\u0000\u0000\u0000\u021f\u0222"+
+ "\u0005L\u0000\u0000\u0220\u0222\u0005N\u0000\u0000\u0221\u021f\u0001\u0000"+
+ "\u0000\u0000\u0221\u0220\u0001\u0000\u0000\u0000\u0222S\u0001\u0000\u0000"+
+ "\u0000\u0223\u0227\u0003J%\u0000\u0224\u0227\u0003P(\u0000\u0225\u0227"+
+ "\u0003R)\u0000\u0226\u0223\u0001\u0000\u0000\u0000\u0226\u0224\u0001\u0000"+
+ "\u0000\u0000\u0226\u0225\u0001\u0000\u0000\u0000\u0227U\u0001\u0000\u0000"+
+ "\u0000\u0228\u0229\u0005\t\u0000\u0000\u0229\u022a\u0003N\'\u0000\u022a"+
+ "W\u0001\u0000\u0000\u0000\u022b\u022c\u0005\u000e\u0000\u0000\u022c\u0231"+
+ "\u0003Z-\u0000\u022d\u022e\u0005*\u0000\u0000\u022e\u0230\u0003Z-\u0000"+
+ "\u022f\u022d\u0001\u0000\u0000\u0000\u0230\u0233\u0001\u0000\u0000\u0000"+
+ "\u0231\u022f\u0001\u0000\u0000\u0000\u0231\u0232\u0001\u0000\u0000\u0000"+
+ "\u0232Y\u0001\u0000\u0000\u0000\u0233\u0231\u0001\u0000\u0000\u0000\u0234"+
+ "\u0236\u0003\n\u0005\u0000\u0235\u0237\u0007\u0004\u0000\u0000\u0236\u0235"+
+ "\u0001\u0000\u0000\u0000\u0236\u0237\u0001\u0000\u0000\u0000\u0237\u023a"+
+ "\u0001\u0000\u0000\u0000\u0238\u0239\u00056\u0000\u0000\u0239\u023b\u0007"+
+ "\u0005\u0000\u0000\u023a\u0238\u0001\u0000\u0000\u0000\u023a\u023b\u0001"+
+ "\u0000\u0000\u0000\u023b[\u0001\u0000\u0000\u0000\u023c\u023d\u0005\b"+
+ "\u0000\u0000\u023d\u023e\u0003H$\u0000\u023e]\u0001\u0000\u0000\u0000"+
+ "\u023f\u0240\u0005\u0002\u0000\u0000\u0240\u0241\u0003H$\u0000\u0241_"+
+ "\u0001\u0000\u0000\u0000\u0242\u0243\u0005\u000b\u0000\u0000\u0243\u0248"+
+ "\u0003b1\u0000\u0244\u0245\u0005*\u0000\u0000\u0245\u0247\u0003b1\u0000"+
+ "\u0246\u0244\u0001\u0000\u0000\u0000\u0247\u024a\u0001\u0000\u0000\u0000"+
+ "\u0248\u0246\u0001\u0000\u0000\u0000\u0248\u0249\u0001\u0000\u0000\u0000"+
+ "\u0249a\u0001\u0000\u0000\u0000\u024a\u0248\u0001\u0000\u0000\u0000\u024b"+
+ "\u024c\u0003F#\u0000\u024c\u024d\u0005$\u0000\u0000\u024d\u024e\u0003"+
+ "F#\u0000\u024ec\u0001\u0000\u0000\u0000\u024f\u0250\u0005\u0001\u0000"+
+ "\u0000\u0250\u0251\u0003\u0014\n\u0000\u0251\u0253\u0003v;\u0000\u0252"+
+ "\u0254\u0003j5\u0000\u0253\u0252\u0001\u0000\u0000\u0000\u0253\u0254\u0001"+
+ "\u0000\u0000\u0000\u0254e\u0001\u0000\u0000\u0000\u0255\u0256\u0005\u0007"+
+ "\u0000\u0000\u0256\u0257\u0003\u0014\n\u0000\u0257\u0258\u0003v;\u0000"+
+ "\u0258g\u0001\u0000\u0000\u0000\u0259\u025a\u0005\n\u0000\u0000\u025a"+
+ "\u025b\u0003D\"\u0000\u025bi\u0001\u0000\u0000\u0000\u025c\u0261\u0003"+
+ "l6\u0000\u025d\u025e\u0005*\u0000\u0000\u025e\u0260\u0003l6\u0000\u025f"+
+ "\u025d\u0001\u0000\u0000\u0000\u0260\u0263\u0001\u0000\u0000\u0000\u0261"+
+ "\u025f\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000\u0262"+
+ "k\u0001\u0000\u0000\u0000\u0263\u0261\u0001\u0000\u0000\u0000\u0264\u0265"+
+ "\u0003J%\u0000\u0265\u0266\u0005&\u0000\u0000\u0266\u0267\u0003N\'\u0000"+
+ "\u0267m\u0001\u0000\u0000\u0000\u0268\u0269\u0007\u0006\u0000\u0000\u0269"+
+ "o\u0001\u0000\u0000\u0000\u026a\u026d\u0003r9\u0000\u026b\u026d\u0003"+
+ "t:\u0000\u026c\u026a\u0001\u0000\u0000\u0000\u026c\u026b\u0001\u0000\u0000"+
+ "\u0000\u026dq\u0001\u0000\u0000\u0000\u026e\u0270\u0007\u0000\u0000\u0000"+
+ "\u026f\u026e\u0001\u0000\u0000\u0000\u026f\u0270\u0001\u0000\u0000\u0000"+
+ "\u0270\u0271\u0001\u0000\u0000\u0000\u0271\u0272\u0005\"\u0000\u0000\u0272"+
+ "s\u0001\u0000\u0000\u0000\u0273\u0275\u0007\u0000\u0000\u0000\u0274\u0273"+
+ "\u0001\u0000\u0000\u0000\u0274\u0275\u0001\u0000\u0000\u0000\u0275\u0276"+
+ "\u0001\u0000\u0000\u0000\u0276\u0277\u0005!\u0000\u0000\u0277u\u0001\u0000"+
+ "\u0000\u0000\u0278\u0279\u0005 \u0000\u0000\u0279w\u0001\u0000\u0000\u0000"+
+ "\u027a\u027b\u0007\u0007\u0000\u0000\u027by\u0001\u0000\u0000\u0000\u027c"+
+ "\u027d\u0005\u0005\u0000\u0000\u027d\u027e\u0003|>\u0000\u027e{\u0001"+
+ "\u0000\u0000\u0000\u027f\u0280\u0005O\u0000\u0000\u0280\u0281\u0003\u0002"+
+ "\u0001\u0000\u0281\u0282\u0005P\u0000\u0000\u0282}\u0001\u0000\u0000\u0000"+
+ "\u0283\u0284\u0005\r\u0000\u0000\u0284\u0285\u0005o\u0000\u0000\u0285"+
+ "\u007f\u0001\u0000\u0000\u0000\u0286\u0287\u0005\u0003\u0000\u0000\u0287"+
+ "\u028a\u0005e\u0000\u0000\u0288\u0289\u00057\u0000\u0000\u0289\u028b\u0003"+
+ "F#\u0000\u028a\u0288\u0001\u0000\u0000\u0000\u028a\u028b\u0001\u0000\u0000"+
+ "\u0000\u028b\u0295\u0001\u0000\u0000\u0000\u028c\u028d\u0005=\u0000\u0000"+
+ "\u028d\u0292\u0003\u0082A\u0000\u028e\u028f\u0005*\u0000\u0000\u028f\u0291"+
+ "\u0003\u0082A\u0000\u0290\u028e\u0001\u0000\u0000\u0000\u0291\u0294\u0001"+
+ "\u0000\u0000\u0000\u0292\u0290\u0001\u0000\u0000\u0000\u0292\u0293\u0001"+
+ "\u0000\u0000\u0000\u0293\u0296\u0001\u0000\u0000\u0000\u0294\u0292\u0001"+
+ "\u0000\u0000\u0000\u0295\u028c\u0001\u0000\u0000\u0000\u0295\u0296\u0001"+
+ "\u0000\u0000\u0000\u0296\u0081\u0001\u0000\u0000\u0000\u0297\u0298\u0003"+
+ "F#\u0000\u0298\u0299\u0005&\u0000\u0000\u0299\u029b\u0001\u0000\u0000"+
+ "\u0000\u029a\u0297\u0001\u0000\u0000\u0000\u029a\u029b\u0001\u0000\u0000"+
+ "\u0000\u029b\u029c\u0001\u0000\u0000\u0000\u029c\u029d\u0003F#\u0000\u029d"+
+ "\u0083\u0001\u0000\u0000\u0000\u029e\u029f\u0005\u0012\u0000\u0000\u029f"+
+ "\u02a2\u0003D\"\u0000\u02a0\u02a1\u00057\u0000\u0000\u02a1\u02a3\u0003"+
+ "D\"\u0000\u02a2\u02a0\u0001\u0000\u0000\u0000\u02a2\u02a3\u0001\u0000"+
+ "\u0000\u0000\u02a3\u02a9\u0001\u0000\u0000\u0000\u02a4\u02a5\u0005$\u0000"+
+ "\u0000\u02a5\u02a6\u0003D\"\u0000\u02a6\u02a7\u0005*\u0000\u0000\u02a7"+
+ "\u02a8\u0003D\"\u0000\u02a8\u02aa\u0001\u0000\u0000\u0000\u02a9\u02a4"+
+ "\u0001\u0000\u0000\u0000\u02a9\u02aa\u0001\u0000\u0000\u0000\u02aa\u0085"+
+ "\u0001\u0000\u0000\u0000\u02ab\u02ac\u0005\u0015\u0000\u0000\u02ac\u02ad"+
+ "\u0003,\u0016\u0000\u02ad\u02ae\u00057\u0000\u0000\u02ae\u02af\u0003H"+
+ "$\u0000\u02af\u0087\u0001\u0000\u0000\u0000\u02b0\u02b1\u0005\u0014\u0000"+
+ "\u0000\u02b1\u02b4\u0003@ \u0000\u02b2\u02b3\u0005\'\u0000\u0000\u02b3"+
+ "\u02b5\u0003\"\u0011\u0000\u02b4\u02b2\u0001\u0000\u0000\u0000\u02b4\u02b5"+
+ "\u0001\u0000\u0000\u0000\u02b5\u0089\u0001\u0000\u0000\u0000\u02b6\u02b7"+
+ "\u0007\b\u0000\u0000\u02b7\u02b8\u0005}\u0000\u0000\u02b8\u02b9\u0003"+
+ "\u008cF\u0000\u02b9\u02ba\u0003\u008eG\u0000\u02ba\u008b\u0001\u0000\u0000"+
+ "\u0000\u02bb\u02bc\u0003,\u0016\u0000\u02bc\u008d\u0001\u0000\u0000\u0000"+
+ "\u02bd\u02be\u00057\u0000\u0000\u02be\u02c3\u0003\u0090H\u0000\u02bf\u02c0"+
+ "\u0005*\u0000\u0000\u02c0\u02c2\u0003\u0090H\u0000\u02c1\u02bf\u0001\u0000"+
+ "\u0000\u0000\u02c2\u02c5\u0001\u0000\u0000\u0000\u02c3\u02c1\u0001\u0000"+
+ "\u0000\u0000\u02c3\u02c4\u0001\u0000\u0000\u0000\u02c4\u008f\u0001\u0000"+
+ "\u0000\u0000\u02c5\u02c3\u0001\u0000\u0000\u0000\u02c6\u02c7\u0003\u0010"+
+ "\b\u0000\u02c7\u0091\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005\u0017\u0000"+
+ "\u0000\u02c9\u02ca\u0003N\'\u0000\u02ca\u02cb\u00057\u0000\u0000\u02cb"+
+ "\u02cc\u0003&\u0013\u0000\u02cc\u02cd\u0005=\u0000\u0000\u02cd\u02ce\u0003"+
+ "T*\u0000\u02ce\u0093\u0001\u0000\u0000\u0000\u02cf\u02d0\u0005\u0013\u0000"+
+ "\u0000\u02d0\u02d1\u0003\u0014\n\u0000\u02d1\u02d2\u0005=\u0000\u0000"+
+ "\u02d2\u02d5\u0003T*\u0000\u02d3\u02d4\u0005$\u0000\u0000\u02d4\u02d6"+
+ "\u0003D\"\u0000\u02d5\u02d3\u0001\u0000\u0000\u0000\u02d5\u02d6\u0001"+
+ "\u0000\u0000\u0000\u02d6\u0095\u0001\u0000\u0000\u0000F\u00a1\u00aa\u00c2"+
+ "\u00ce\u00d7\u00df\u00e4\u00ec\u00ee\u00f3\u00fa\u00ff\u0104\u010e\u0114"+
+ "\u011c\u011e\u0129\u0130\u013b\u0140\u0142\u014e\u0161\u0167\u0170\u0176"+
+ "\u017e\u0182\u0187\u018d\u018f\u0199\u01a1\u01ae\u01b2\u01b6\u01bd\u01c1"+
+ "\u01c8\u01ce\u01d5\u01dd\u01e5\u01ed\u01fe\u0209\u0214\u0219\u021d\u0221"+
+ "\u0226\u0231\u0236\u023a\u0248\u0253\u0261\u026c\u026f\u0274\u028a\u0292"+
+ "\u0295\u029a\u02a2\u02a9\u02b4\u02c3\u02d5";
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 40e87714c1b21..c6f7634e660ec 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
@@ -416,6 +416,30 @@ public class EsqlBaseParserBaseListener implements EsqlBaseParserListener {
* The default implementation does nothing.
*/
@Override public void exitField(EsqlBaseParser.FieldContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterRerankFields(EsqlBaseParser.RerankFieldsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitRerankFields(EsqlBaseParser.RerankFieldsContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void enterRerankField(EsqlBaseParser.RerankFieldContext ctx) { }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation does nothing.
+ */
+ @Override public void exitRerankField(EsqlBaseParser.RerankFieldContext 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 a109a1c481325..108615ac661c7 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
@@ -251,6 +251,20 @@ public class EsqlBaseParserBaseVisitor extends AbstractParseTreeVisitor im
* {@link #visitChildren} on {@code ctx}.
*/
@Override public T visitField(EsqlBaseParser.FieldContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitRerankFields(EsqlBaseParser.RerankFieldsContext ctx) { return visitChildren(ctx); }
+ /**
+ * {@inheritDoc}
+ *
+ * The default implementation returns the result of calling
+ * {@link #visitChildren} on {@code ctx}.
+ */
+ @Override public T visitRerankField(EsqlBaseParser.RerankFieldContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserListener.java
index 9d53f8f2bdedf..427ce1a6b7bd5 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
@@ -385,6 +385,26 @@ public interface EsqlBaseParserListener extends ParseTreeListener {
* @param ctx the parse tree
*/
void exitField(EsqlBaseParser.FieldContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#rerankFields}.
+ * @param ctx the parse tree
+ */
+ void enterRerankFields(EsqlBaseParser.RerankFieldsContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#rerankFields}.
+ * @param ctx the parse tree
+ */
+ void exitRerankFields(EsqlBaseParser.RerankFieldsContext ctx);
+ /**
+ * Enter a parse tree produced by {@link EsqlBaseParser#rerankField}.
+ * @param ctx the parse tree
+ */
+ void enterRerankField(EsqlBaseParser.RerankFieldContext ctx);
+ /**
+ * Exit a parse tree produced by {@link EsqlBaseParser#rerankField}.
+ * @param ctx the parse tree
+ */
+ void exitRerankField(EsqlBaseParser.RerankFieldContext ctx);
/**
* Enter a parse tree produced by {@link EsqlBaseParser#fromCommand}.
* @param ctx the parse tree
diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/EsqlBaseParserVisitor.java
index 6b753422e6cc3..3465fdefe33fc 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
@@ -236,6 +236,18 @@ public interface EsqlBaseParserVisitor extends ParseTreeVisitor