diff --git a/docs/changelog/136541.yaml b/docs/changelog/136541.yaml new file mode 100644 index 0000000000000..6f6b0840ddca5 --- /dev/null +++ b/docs/changelog/136541.yaml @@ -0,0 +1,6 @@ +pr: 136541 +summary: Multiple patterns for grok command +area: ES|QL +type: enhancement +issues: + - 132486 diff --git a/libs/grok/src/main/java/org/elasticsearch/grok/Grok.java b/libs/grok/src/main/java/org/elasticsearch/grok/Grok.java index a95610cbe418c..284ede5d0f4f2 100644 --- a/libs/grok/src/main/java/org/elasticsearch/grok/Grok.java +++ b/libs/grok/src/main/java/org/elasticsearch/grok/Grok.java @@ -257,4 +257,32 @@ public Regex getCompiledExpression() { return compiledExpression; } + public static String combinePatterns(List patterns) { + return combinePatterns(patterns, null); + } + + public static String combinePatterns(List patterns, String traceMatchKey) { + String combinedPattern; + if (patterns.size() > 1) { + combinedPattern = ""; + for (int i = 0; i < patterns.size(); i++) { + String pattern = patterns.get(i); + String valueWrap; + if (traceMatchKey != null) { + valueWrap = "(?<" + traceMatchKey + "." + i + ">" + pattern + ")"; + } else { + valueWrap = "(?:" + patterns.get(i) + ")"; + } + if (combinedPattern.isEmpty()) { + combinedPattern = valueWrap; + } else { + combinedPattern = combinedPattern + "|" + valueWrap; + } + } + } else { + combinedPattern = patterns.getFirst(); + } + + return combinedPattern; + } } diff --git a/libs/grok/src/test/java/org/elasticsearch/grok/GrokTests.java b/libs/grok/src/test/java/org/elasticsearch/grok/GrokTests.java index ab5f893fd87c9..0514faece93b7 100644 --- a/libs/grok/src/test/java/org/elasticsearch/grok/GrokTests.java +++ b/libs/grok/src/test/java/org/elasticsearch/grok/GrokTests.java @@ -927,6 +927,25 @@ private void testLogCallBack(boolean ecsCompatibility) { assertThat(message.get(), containsString("regular expression has redundant nested repeat operator")); } + public void testCombinedPatterns() { + String matchKey = "_ingest._grok_match_index"; + String combined; + combined = Grok.combinePatterns(List.of(""), null); + assertThat(combined, equalTo("")); + combined = Grok.combinePatterns(List.of(""), matchKey); + assertThat(combined, equalTo("")); + combined = Grok.combinePatterns(List.of("foo"), null); + assertThat(combined, equalTo("foo")); + combined = Grok.combinePatterns(List.of("foo"), matchKey); + assertThat(combined, equalTo("foo")); + combined = Grok.combinePatterns(List.of("foo", "bar"), null); + assertThat(combined, equalTo("(?:foo)|(?:bar)")); + combined = Grok.combinePatterns(List.of("foo", "bar")); + assertThat(combined, equalTo("(?:foo)|(?:bar)")); + combined = Grok.combinePatterns(List.of("foo", "bar"), matchKey); + assertThat(combined, equalTo("(?<_ingest._grok_match_index.0>foo)|(?<_ingest._grok_match_index.1>bar)")); + } + private void assertGrokedField(String fieldName) { String line = "foo"; // test both with and without ECS compatibility diff --git a/modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/GrokProcessor.java b/modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/GrokProcessor.java index dd8d6ec202558..7f8f900513e79 100644 --- a/modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/GrokProcessor.java +++ b/modules/ingest-common/src/main/java/org/elasticsearch/ingest/common/GrokProcessor.java @@ -53,14 +53,15 @@ public final class GrokProcessor extends AbstractProcessor { MatcherWatchdog matcherWatchdog ) { super(tag, description); + String combinedPattern = Grok.combinePatterns(matchPatterns, traceMatch ? PATTERN_MATCH_KEY : null); this.matchField = matchField; this.matchPatterns = matchPatterns; - this.grok = new Grok(patternBank, combinePatterns(matchPatterns, traceMatch), matcherWatchdog, logger::debug); + this.grok = new Grok(patternBank, combinedPattern, matcherWatchdog, logger::debug); this.traceMatch = traceMatch; this.ignoreMissing = ignoreMissing; // Joni warnings are only emitted on an attempt to match, and the warning emitted for every call to match which is too verbose // so here we emit a warning (if there is one) to the logfile at warn level on construction / processor creation. - new Grok(patternBank, combinePatterns(matchPatterns, traceMatch), matcherWatchdog, logger::warn).match("___nomatch___"); + new Grok(patternBank, combinedPattern, matcherWatchdog, logger::warn).match("___nomatch___"); } @Override @@ -113,31 +114,6 @@ List getMatchPatterns() { return matchPatterns; } - static String combinePatterns(List patterns, boolean traceMatch) { - String combinedPattern; - if (patterns.size() > 1) { - combinedPattern = ""; - for (int i = 0; i < patterns.size(); i++) { - String pattern = patterns.get(i); - String valueWrap; - if (traceMatch) { - valueWrap = "(?<" + PATTERN_MATCH_KEY + "." + i + ">" + pattern + ")"; - } else { - valueWrap = "(?:" + patterns.get(i) + ")"; - } - if (combinedPattern.equals("")) { - combinedPattern = valueWrap; - } else { - combinedPattern = combinedPattern + "|" + valueWrap; - } - } - } else { - combinedPattern = patterns.get(0); - } - - return combinedPattern; - } - public static final class Factory implements Processor.Factory { private final MatcherWatchdog matcherWatchdog; diff --git a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/GrokProcessorTests.java b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/GrokProcessorTests.java index 71ffd12bf7518..03f150fcea64c 100644 --- a/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/GrokProcessorTests.java +++ b/modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/GrokProcessorTests.java @@ -296,22 +296,6 @@ public void testTraceWithOnePattern() throws Exception { assertThat(doc.getFieldValue("_ingest._grok_match_index", String.class), equalTo("0")); } - public void testCombinedPatterns() { - String combined; - combined = GrokProcessor.combinePatterns(List.of(""), false); - assertThat(combined, equalTo("")); - combined = GrokProcessor.combinePatterns(List.of(""), true); - assertThat(combined, equalTo("")); - combined = GrokProcessor.combinePatterns(List.of("foo"), false); - assertThat(combined, equalTo("foo")); - combined = GrokProcessor.combinePatterns(List.of("foo"), true); - assertThat(combined, equalTo("foo")); - combined = GrokProcessor.combinePatterns(List.of("foo", "bar"), false); - assertThat(combined, equalTo("(?:foo)|(?:bar)")); - combined = GrokProcessor.combinePatterns(List.of("foo", "bar"), true); - assertThat(combined, equalTo("(?<_ingest._grok_match_index.0>foo)|(?<_ingest._grok_match_index.1>bar)")); - } - public void testCombineSamePatternNameAcrossPatterns() throws Exception { String fieldName = RandomDocumentPicks.randomFieldName(random()); IngestDocument doc = RandomDocumentPicks.randomIngestDocument(random(), new HashMap<>()); diff --git a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/grok.csv-spec b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/grok.csv-spec index 7fd9ed142f470..cf14bfb1494a4 100644 --- a/x-pack/plugin/esql/qa/testFixtures/src/main/resources/grok.csv-spec +++ b/x-pack/plugin/esql/qa/testFixtures/src/main/resources/grok.csv-spec @@ -290,6 +290,24 @@ emp_no:integer | a:keyword | b:keyword 10005 | null | null | null | null ; +multiPatterns +required_capability: grok_multi_pattern +row text = "XYZ extractme" | grok text "ABC %{WORD:foo}","XYZ %{WORD:bar}" | keep foo, bar; + +foo:keyword | bar:keyword +null | extractme +; + +multiPatterns2 +required_capability: grok_multi_pattern +from employees | sort emp_no asc | eval full_name = concat(first_name, " ", last_name) | grok full_name "Georgi %{WORD:georgis_last_name}", "%{WORD:first_name} %{WORD:last_name}" | keep full_name, first_name, last_name, georgis_last_name | limit 3; + +full_name:keyword | first_name:keyword | last_name:keyword | georgis_last_name:keyword +Georgi Facello | null | null | Facello +Bezalel Simmel | Bezalel | Simmel | null +Parto Bamford | Parto | Bamford | null +; + overwriteInputName required_capability: grok_dissect_masking row text = "123 abc", int = 5 | sort int asc | grok text "%{NUMBER:text:int} %{WORD:description}" | keep text, int, description; diff --git a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 index 1353ad9e4a12e..ca1d7f2c69b48 100644 --- a/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 +++ b/x-pack/plugin/esql/src/main/antlr/EsqlBaseParser.g4 @@ -251,7 +251,7 @@ commandNamedParameters ; grokCommand - : GROK primaryExpression string + : GROK primaryExpression string (COMMA string)* ; mvExpandCommand 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 df06a1109ecc9..53c3143f084c7 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 @@ -1516,6 +1516,11 @@ public enum Cap { */ FIX_FILTER_ORDINALS, + /** + * Allow multiple patterns for GROK command + */ + GROK_MULTI_PATTERN, + ; private final boolean enabled; 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 afe803f43fd82..3a1c37c51da84 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 @@ -401,4 +401,4 @@ joinCondition atn: -[4, 1, 151, 920, 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, 1, 0, 1, 0, 4, 0, 185, 8, 0, 11, 0, 12, 0, 186, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 195, 8, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 206, 8, 2, 10, 2, 12, 2, 209, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 217, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 243, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 256, 8, 8, 10, 8, 12, 8, 259, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 264, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 271, 8, 10, 10, 10, 12, 10, 274, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 279, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 290, 8, 14, 10, 14, 12, 14, 293, 9, 14, 1, 14, 3, 14, 296, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 307, 8, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 321, 8, 20, 10, 20, 12, 20, 324, 9, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 331, 8, 22, 1, 22, 1, 22, 3, 22, 335, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 340, 8, 23, 10, 23, 12, 23, 343, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 353, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 362, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 367, 8, 26, 10, 26, 12, 26, 370, 9, 26, 1, 27, 1, 27, 1, 27, 3, 27, 375, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 384, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 389, 8, 28, 10, 28, 12, 28, 392, 9, 28, 1, 29, 1, 29, 1, 29, 5, 29, 397, 8, 29, 10, 29, 12, 29, 400, 9, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 407, 8, 31, 1, 32, 1, 32, 3, 32, 411, 8, 32, 1, 33, 1, 33, 3, 33, 415, 8, 33, 1, 34, 1, 34, 1, 34, 3, 34, 420, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 429, 8, 36, 10, 36, 12, 36, 432, 9, 36, 1, 37, 1, 37, 3, 37, 436, 8, 37, 1, 37, 1, 37, 3, 37, 440, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 452, 8, 40, 10, 40, 12, 40, 455, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 465, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 471, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 476, 8, 43, 10, 43, 12, 43, 479, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 3, 45, 487, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 510, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 516, 8, 51, 10, 51, 12, 51, 519, 9, 51, 3, 51, 521, 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 3, 53, 528, 8, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 539, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 546, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 4, 57, 552, 8, 57, 11, 57, 12, 57, 553, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 566, 8, 59, 10, 59, 12, 59, 569, 9, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 577, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 588, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 598, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 604, 8, 63, 3, 63, 606, 8, 63, 1, 64, 1, 64, 3, 64, 610, 8, 64, 1, 64, 5, 64, 613, 8, 64, 10, 64, 12, 64, 616, 9, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 629, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 654, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 661, 8, 70, 10, 70, 12, 70, 664, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 671, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 676, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 684, 8, 70, 10, 70, 12, 70, 687, 9, 70, 1, 71, 1, 71, 3, 71, 691, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 698, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 705, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 712, 8, 71, 10, 71, 12, 71, 715, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 721, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 728, 8, 71, 10, 71, 12, 71, 731, 9, 71, 1, 71, 1, 71, 3, 71, 735, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 740, 8, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 750, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 756, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 764, 8, 74, 10, 74, 12, 74, 767, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 777, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 782, 8, 75, 10, 75, 12, 75, 785, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 793, 8, 76, 10, 76, 12, 76, 796, 9, 76, 1, 76, 1, 76, 3, 76, 800, 8, 76, 3, 76, 802, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 809, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 815, 8, 78, 10, 78, 12, 78, 818, 9, 78, 3, 78, 820, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 830, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 845, 8, 81, 10, 81, 12, 81, 848, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 856, 8, 81, 10, 81, 12, 81, 859, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 867, 8, 81, 10, 81, 12, 81, 870, 9, 81, 1, 81, 1, 81, 3, 81, 874, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 880, 8, 83, 1, 84, 3, 84, 883, 8, 84, 1, 84, 1, 84, 1, 85, 3, 85, 888, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 904, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 909, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 915, 8, 90, 10, 90, 12, 90, 918, 9, 90, 1, 90, 0, 5, 4, 118, 140, 148, 150, 91, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 963, 0, 194, 1, 0, 0, 0, 2, 196, 1, 0, 0, 0, 4, 199, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 242, 1, 0, 0, 0, 10, 244, 1, 0, 0, 0, 12, 247, 1, 0, 0, 0, 14, 249, 1, 0, 0, 0, 16, 252, 1, 0, 0, 0, 18, 263, 1, 0, 0, 0, 20, 267, 1, 0, 0, 0, 22, 275, 1, 0, 0, 0, 24, 280, 1, 0, 0, 0, 26, 283, 1, 0, 0, 0, 28, 286, 1, 0, 0, 0, 30, 306, 1, 0, 0, 0, 32, 308, 1, 0, 0, 0, 34, 310, 1, 0, 0, 0, 36, 312, 1, 0, 0, 0, 38, 314, 1, 0, 0, 0, 40, 316, 1, 0, 0, 0, 42, 325, 1, 0, 0, 0, 44, 328, 1, 0, 0, 0, 46, 336, 1, 0, 0, 0, 48, 344, 1, 0, 0, 0, 50, 361, 1, 0, 0, 0, 52, 363, 1, 0, 0, 0, 54, 383, 1, 0, 0, 0, 56, 385, 1, 0, 0, 0, 58, 393, 1, 0, 0, 0, 60, 401, 1, 0, 0, 0, 62, 406, 1, 0, 0, 0, 64, 410, 1, 0, 0, 0, 66, 414, 1, 0, 0, 0, 68, 419, 1, 0, 0, 0, 70, 421, 1, 0, 0, 0, 72, 424, 1, 0, 0, 0, 74, 433, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 444, 1, 0, 0, 0, 80, 447, 1, 0, 0, 0, 82, 464, 1, 0, 0, 0, 84, 466, 1, 0, 0, 0, 86, 472, 1, 0, 0, 0, 88, 480, 1, 0, 0, 0, 90, 486, 1, 0, 0, 0, 92, 488, 1, 0, 0, 0, 94, 492, 1, 0, 0, 0, 96, 495, 1, 0, 0, 0, 98, 498, 1, 0, 0, 0, 100, 502, 1, 0, 0, 0, 102, 505, 1, 0, 0, 0, 104, 522, 1, 0, 0, 0, 106, 527, 1, 0, 0, 0, 108, 531, 1, 0, 0, 0, 110, 534, 1, 0, 0, 0, 112, 547, 1, 0, 0, 0, 114, 551, 1, 0, 0, 0, 116, 555, 1, 0, 0, 0, 118, 559, 1, 0, 0, 0, 120, 570, 1, 0, 0, 0, 122, 572, 1, 0, 0, 0, 124, 583, 1, 0, 0, 0, 126, 605, 1, 0, 0, 0, 128, 607, 1, 0, 0, 0, 130, 628, 1, 0, 0, 0, 132, 630, 1, 0, 0, 0, 134, 635, 1, 0, 0, 0, 136, 638, 1, 0, 0, 0, 138, 642, 1, 0, 0, 0, 140, 675, 1, 0, 0, 0, 142, 734, 1, 0, 0, 0, 144, 736, 1, 0, 0, 0, 146, 749, 1, 0, 0, 0, 148, 755, 1, 0, 0, 0, 150, 776, 1, 0, 0, 0, 152, 786, 1, 0, 0, 0, 154, 808, 1, 0, 0, 0, 156, 810, 1, 0, 0, 0, 158, 823, 1, 0, 0, 0, 160, 829, 1, 0, 0, 0, 162, 873, 1, 0, 0, 0, 164, 875, 1, 0, 0, 0, 166, 879, 1, 0, 0, 0, 168, 882, 1, 0, 0, 0, 170, 887, 1, 0, 0, 0, 172, 891, 1, 0, 0, 0, 174, 893, 1, 0, 0, 0, 176, 895, 1, 0, 0, 0, 178, 908, 1, 0, 0, 0, 180, 910, 1, 0, 0, 0, 182, 184, 4, 0, 0, 0, 183, 185, 3, 136, 68, 0, 184, 183, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 186, 187, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 189, 3, 2, 1, 0, 189, 190, 5, 0, 0, 1, 190, 195, 1, 0, 0, 0, 191, 192, 3, 2, 1, 0, 192, 193, 5, 0, 0, 1, 193, 195, 1, 0, 0, 0, 194, 182, 1, 0, 0, 0, 194, 191, 1, 0, 0, 0, 195, 1, 1, 0, 0, 0, 196, 197, 3, 4, 2, 0, 197, 198, 5, 0, 0, 1, 198, 3, 1, 0, 0, 0, 199, 200, 6, 2, -1, 0, 200, 201, 3, 6, 3, 0, 201, 207, 1, 0, 0, 0, 202, 203, 10, 1, 0, 0, 203, 204, 5, 50, 0, 0, 204, 206, 3, 8, 4, 0, 205, 202, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 5, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 14, 7, 0, 212, 217, 3, 100, 50, 0, 213, 217, 3, 26, 13, 0, 214, 215, 4, 3, 2, 0, 215, 217, 3, 96, 48, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 7, 1, 0, 0, 0, 218, 243, 3, 42, 21, 0, 219, 243, 3, 10, 5, 0, 220, 243, 3, 76, 38, 0, 221, 243, 3, 70, 35, 0, 222, 243, 3, 44, 22, 0, 223, 243, 3, 72, 36, 0, 224, 243, 3, 78, 39, 0, 225, 243, 3, 80, 40, 0, 226, 243, 3, 84, 42, 0, 227, 243, 3, 92, 46, 0, 228, 243, 3, 102, 51, 0, 229, 243, 3, 94, 47, 0, 230, 243, 3, 176, 88, 0, 231, 243, 3, 110, 55, 0, 232, 243, 3, 124, 62, 0, 233, 243, 3, 108, 54, 0, 234, 243, 3, 112, 56, 0, 235, 243, 3, 122, 61, 0, 236, 243, 3, 126, 63, 0, 237, 243, 3, 128, 64, 0, 238, 239, 4, 4, 3, 0, 239, 243, 3, 132, 66, 0, 240, 241, 4, 4, 4, 0, 241, 243, 3, 134, 67, 0, 242, 218, 1, 0, 0, 0, 242, 219, 1, 0, 0, 0, 242, 220, 1, 0, 0, 0, 242, 221, 1, 0, 0, 0, 242, 222, 1, 0, 0, 0, 242, 223, 1, 0, 0, 0, 242, 224, 1, 0, 0, 0, 242, 225, 1, 0, 0, 0, 242, 226, 1, 0, 0, 0, 242, 227, 1, 0, 0, 0, 242, 228, 1, 0, 0, 0, 242, 229, 1, 0, 0, 0, 242, 230, 1, 0, 0, 0, 242, 231, 1, 0, 0, 0, 242, 232, 1, 0, 0, 0, 242, 233, 1, 0, 0, 0, 242, 234, 1, 0, 0, 0, 242, 235, 1, 0, 0, 0, 242, 236, 1, 0, 0, 0, 242, 237, 1, 0, 0, 0, 242, 238, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 9, 1, 0, 0, 0, 244, 245, 5, 17, 0, 0, 245, 246, 3, 140, 70, 0, 246, 11, 1, 0, 0, 0, 247, 248, 3, 60, 30, 0, 248, 13, 1, 0, 0, 0, 249, 250, 5, 13, 0, 0, 250, 251, 3, 16, 8, 0, 251, 15, 1, 0, 0, 0, 252, 257, 3, 18, 9, 0, 253, 254, 5, 61, 0, 0, 254, 256, 3, 18, 9, 0, 255, 253, 1, 0, 0, 0, 256, 259, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 17, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 260, 261, 3, 50, 25, 0, 261, 262, 5, 56, 0, 0, 262, 264, 1, 0, 0, 0, 263, 260, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 3, 140, 70, 0, 266, 19, 1, 0, 0, 0, 267, 272, 3, 22, 11, 0, 268, 269, 5, 61, 0, 0, 269, 271, 3, 22, 11, 0, 270, 268, 1, 0, 0, 0, 271, 274, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 21, 1, 0, 0, 0, 274, 272, 1, 0, 0, 0, 275, 278, 3, 50, 25, 0, 276, 277, 5, 56, 0, 0, 277, 279, 3, 140, 70, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 23, 1, 0, 0, 0, 280, 281, 5, 18, 0, 0, 281, 282, 3, 28, 14, 0, 282, 25, 1, 0, 0, 0, 283, 284, 5, 19, 0, 0, 284, 285, 3, 28, 14, 0, 285, 27, 1, 0, 0, 0, 286, 291, 3, 30, 15, 0, 287, 288, 5, 61, 0, 0, 288, 290, 3, 30, 15, 0, 289, 287, 1, 0, 0, 0, 290, 293, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 295, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 296, 3, 40, 20, 0, 295, 294, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 29, 1, 0, 0, 0, 297, 298, 3, 32, 16, 0, 298, 299, 5, 59, 0, 0, 299, 300, 3, 36, 18, 0, 300, 307, 1, 0, 0, 0, 301, 302, 3, 36, 18, 0, 302, 303, 5, 58, 0, 0, 303, 304, 3, 34, 17, 0, 304, 307, 1, 0, 0, 0, 305, 307, 3, 38, 19, 0, 306, 297, 1, 0, 0, 0, 306, 301, 1, 0, 0, 0, 306, 305, 1, 0, 0, 0, 307, 31, 1, 0, 0, 0, 308, 309, 5, 106, 0, 0, 309, 33, 1, 0, 0, 0, 310, 311, 5, 106, 0, 0, 311, 35, 1, 0, 0, 0, 312, 313, 5, 106, 0, 0, 313, 37, 1, 0, 0, 0, 314, 315, 7, 0, 0, 0, 315, 39, 1, 0, 0, 0, 316, 317, 5, 105, 0, 0, 317, 322, 5, 106, 0, 0, 318, 319, 5, 61, 0, 0, 319, 321, 5, 106, 0, 0, 320, 318, 1, 0, 0, 0, 321, 324, 1, 0, 0, 0, 322, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 41, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 325, 326, 5, 9, 0, 0, 326, 327, 3, 16, 8, 0, 327, 43, 1, 0, 0, 0, 328, 330, 5, 16, 0, 0, 329, 331, 3, 46, 23, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 333, 5, 57, 0, 0, 333, 335, 3, 16, 8, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 45, 1, 0, 0, 0, 336, 341, 3, 48, 24, 0, 337, 338, 5, 61, 0, 0, 338, 340, 3, 48, 24, 0, 339, 337, 1, 0, 0, 0, 340, 343, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 47, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 347, 3, 18, 9, 0, 345, 346, 5, 17, 0, 0, 346, 348, 3, 140, 70, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 49, 1, 0, 0, 0, 349, 350, 4, 25, 5, 0, 350, 352, 5, 96, 0, 0, 351, 353, 5, 100, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 355, 5, 97, 0, 0, 355, 356, 5, 63, 0, 0, 356, 357, 5, 96, 0, 0, 357, 358, 3, 52, 26, 0, 358, 359, 5, 97, 0, 0, 359, 362, 1, 0, 0, 0, 360, 362, 3, 52, 26, 0, 361, 349, 1, 0, 0, 0, 361, 360, 1, 0, 0, 0, 362, 51, 1, 0, 0, 0, 363, 368, 3, 68, 34, 0, 364, 365, 5, 63, 0, 0, 365, 367, 3, 68, 34, 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, 53, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 4, 27, 6, 0, 372, 374, 5, 96, 0, 0, 373, 375, 5, 137, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 5, 97, 0, 0, 377, 378, 5, 63, 0, 0, 378, 379, 5, 96, 0, 0, 379, 380, 3, 56, 28, 0, 380, 381, 5, 97, 0, 0, 381, 384, 1, 0, 0, 0, 382, 384, 3, 56, 28, 0, 383, 371, 1, 0, 0, 0, 383, 382, 1, 0, 0, 0, 384, 55, 1, 0, 0, 0, 385, 390, 3, 62, 31, 0, 386, 387, 5, 63, 0, 0, 387, 389, 3, 62, 31, 0, 388, 386, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 57, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 393, 398, 3, 54, 27, 0, 394, 395, 5, 61, 0, 0, 395, 397, 3, 54, 27, 0, 396, 394, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 59, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 402, 7, 1, 0, 0, 402, 61, 1, 0, 0, 0, 403, 407, 5, 137, 0, 0, 404, 407, 3, 64, 32, 0, 405, 407, 3, 66, 33, 0, 406, 403, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 406, 405, 1, 0, 0, 0, 407, 63, 1, 0, 0, 0, 408, 411, 5, 75, 0, 0, 409, 411, 5, 94, 0, 0, 410, 408, 1, 0, 0, 0, 410, 409, 1, 0, 0, 0, 411, 65, 1, 0, 0, 0, 412, 415, 5, 93, 0, 0, 413, 415, 5, 95, 0, 0, 414, 412, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 67, 1, 0, 0, 0, 416, 420, 3, 60, 30, 0, 417, 420, 3, 64, 32, 0, 418, 420, 3, 66, 33, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 69, 1, 0, 0, 0, 421, 422, 5, 11, 0, 0, 422, 423, 3, 162, 81, 0, 423, 71, 1, 0, 0, 0, 424, 425, 5, 15, 0, 0, 425, 430, 3, 74, 37, 0, 426, 427, 5, 61, 0, 0, 427, 429, 3, 74, 37, 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, 73, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 435, 3, 140, 70, 0, 434, 436, 7, 2, 0, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 72, 0, 0, 438, 440, 7, 3, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 31, 0, 0, 442, 443, 3, 58, 29, 0, 443, 77, 1, 0, 0, 0, 444, 445, 5, 30, 0, 0, 445, 446, 3, 58, 29, 0, 446, 79, 1, 0, 0, 0, 447, 448, 5, 33, 0, 0, 448, 453, 3, 82, 41, 0, 449, 450, 5, 61, 0, 0, 450, 452, 3, 82, 41, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 81, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 3, 54, 27, 0, 457, 458, 5, 141, 0, 0, 458, 459, 3, 54, 27, 0, 459, 465, 1, 0, 0, 0, 460, 461, 3, 54, 27, 0, 461, 462, 5, 56, 0, 0, 462, 463, 3, 54, 27, 0, 463, 465, 1, 0, 0, 0, 464, 456, 1, 0, 0, 0, 464, 460, 1, 0, 0, 0, 465, 83, 1, 0, 0, 0, 466, 467, 5, 8, 0, 0, 467, 468, 3, 150, 75, 0, 468, 470, 3, 172, 86, 0, 469, 471, 3, 86, 43, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 477, 3, 88, 44, 0, 473, 474, 5, 61, 0, 0, 474, 476, 3, 88, 44, 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, 87, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 3, 60, 30, 0, 481, 482, 5, 56, 0, 0, 482, 483, 3, 162, 81, 0, 483, 89, 1, 0, 0, 0, 484, 485, 5, 78, 0, 0, 485, 487, 3, 156, 78, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 91, 1, 0, 0, 0, 488, 489, 5, 10, 0, 0, 489, 490, 3, 150, 75, 0, 490, 491, 3, 172, 86, 0, 491, 93, 1, 0, 0, 0, 492, 493, 5, 29, 0, 0, 493, 494, 3, 50, 25, 0, 494, 95, 1, 0, 0, 0, 495, 496, 5, 6, 0, 0, 496, 497, 3, 98, 49, 0, 497, 97, 1, 0, 0, 0, 498, 499, 5, 98, 0, 0, 499, 500, 3, 4, 2, 0, 500, 501, 5, 99, 0, 0, 501, 99, 1, 0, 0, 0, 502, 503, 5, 35, 0, 0, 503, 504, 5, 148, 0, 0, 504, 101, 1, 0, 0, 0, 505, 506, 5, 5, 0, 0, 506, 509, 3, 104, 52, 0, 507, 508, 5, 73, 0, 0, 508, 510, 3, 54, 27, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 520, 1, 0, 0, 0, 511, 512, 5, 78, 0, 0, 512, 517, 3, 106, 53, 0, 513, 514, 5, 61, 0, 0, 514, 516, 3, 106, 53, 0, 515, 513, 1, 0, 0, 0, 516, 519, 1, 0, 0, 0, 517, 515, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 521, 1, 0, 0, 0, 519, 517, 1, 0, 0, 0, 520, 511, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 103, 1, 0, 0, 0, 522, 523, 7, 4, 0, 0, 523, 105, 1, 0, 0, 0, 524, 525, 3, 54, 27, 0, 525, 526, 5, 56, 0, 0, 526, 528, 1, 0, 0, 0, 527, 524, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 530, 3, 54, 27, 0, 530, 107, 1, 0, 0, 0, 531, 532, 5, 14, 0, 0, 532, 533, 3, 162, 81, 0, 533, 109, 1, 0, 0, 0, 534, 535, 5, 4, 0, 0, 535, 538, 3, 50, 25, 0, 536, 537, 5, 73, 0, 0, 537, 539, 3, 50, 25, 0, 538, 536, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 545, 1, 0, 0, 0, 540, 541, 5, 141, 0, 0, 541, 542, 3, 50, 25, 0, 542, 543, 5, 61, 0, 0, 543, 544, 3, 50, 25, 0, 544, 546, 1, 0, 0, 0, 545, 540, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 111, 1, 0, 0, 0, 547, 548, 5, 20, 0, 0, 548, 549, 3, 114, 57, 0, 549, 113, 1, 0, 0, 0, 550, 552, 3, 116, 58, 0, 551, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 115, 1, 0, 0, 0, 555, 556, 5, 98, 0, 0, 556, 557, 3, 118, 59, 0, 557, 558, 5, 99, 0, 0, 558, 117, 1, 0, 0, 0, 559, 560, 6, 59, -1, 0, 560, 561, 3, 120, 60, 0, 561, 567, 1, 0, 0, 0, 562, 563, 10, 1, 0, 0, 563, 564, 5, 50, 0, 0, 564, 566, 3, 120, 60, 0, 565, 562, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 119, 1, 0, 0, 0, 569, 567, 1, 0, 0, 0, 570, 571, 3, 8, 4, 0, 571, 121, 1, 0, 0, 0, 572, 576, 5, 12, 0, 0, 573, 574, 3, 50, 25, 0, 574, 575, 5, 56, 0, 0, 575, 577, 1, 0, 0, 0, 576, 573, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 3, 162, 81, 0, 579, 580, 5, 73, 0, 0, 580, 581, 3, 20, 10, 0, 581, 582, 3, 90, 45, 0, 582, 123, 1, 0, 0, 0, 583, 587, 5, 7, 0, 0, 584, 585, 3, 50, 25, 0, 585, 586, 5, 56, 0, 0, 586, 588, 1, 0, 0, 0, 587, 584, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 3, 150, 75, 0, 590, 591, 3, 90, 45, 0, 591, 125, 1, 0, 0, 0, 592, 593, 5, 22, 0, 0, 593, 594, 5, 119, 0, 0, 594, 597, 3, 46, 23, 0, 595, 596, 5, 57, 0, 0, 596, 598, 3, 16, 8, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 606, 1, 0, 0, 0, 599, 600, 5, 23, 0, 0, 600, 603, 3, 46, 23, 0, 601, 602, 5, 57, 0, 0, 602, 604, 3, 16, 8, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 606, 1, 0, 0, 0, 605, 592, 1, 0, 0, 0, 605, 599, 1, 0, 0, 0, 606, 127, 1, 0, 0, 0, 607, 609, 5, 21, 0, 0, 608, 610, 3, 60, 30, 0, 609, 608, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 614, 1, 0, 0, 0, 611, 613, 3, 130, 65, 0, 612, 611, 1, 0, 0, 0, 613, 616, 1, 0, 0, 0, 614, 612, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 129, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 5, 114, 0, 0, 618, 619, 5, 57, 0, 0, 619, 629, 3, 50, 25, 0, 620, 621, 5, 115, 0, 0, 621, 622, 5, 57, 0, 0, 622, 629, 3, 16, 8, 0, 623, 624, 5, 113, 0, 0, 624, 625, 5, 57, 0, 0, 625, 629, 3, 50, 25, 0, 626, 627, 5, 78, 0, 0, 627, 629, 3, 156, 78, 0, 628, 617, 1, 0, 0, 0, 628, 620, 1, 0, 0, 0, 628, 623, 1, 0, 0, 0, 628, 626, 1, 0, 0, 0, 629, 131, 1, 0, 0, 0, 630, 631, 5, 28, 0, 0, 631, 632, 3, 30, 15, 0, 632, 633, 5, 73, 0, 0, 633, 634, 3, 58, 29, 0, 634, 133, 1, 0, 0, 0, 635, 636, 5, 32, 0, 0, 636, 637, 3, 58, 29, 0, 637, 135, 1, 0, 0, 0, 638, 639, 5, 34, 0, 0, 639, 640, 3, 138, 69, 0, 640, 641, 5, 60, 0, 0, 641, 137, 1, 0, 0, 0, 642, 643, 3, 60, 30, 0, 643, 644, 5, 56, 0, 0, 644, 645, 3, 162, 81, 0, 645, 139, 1, 0, 0, 0, 646, 647, 6, 70, -1, 0, 647, 648, 5, 70, 0, 0, 648, 676, 3, 140, 70, 8, 649, 676, 3, 146, 73, 0, 650, 676, 3, 142, 71, 0, 651, 653, 3, 146, 73, 0, 652, 654, 5, 70, 0, 0, 653, 652, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 66, 0, 0, 656, 657, 5, 98, 0, 0, 657, 662, 3, 146, 73, 0, 658, 659, 5, 61, 0, 0, 659, 661, 3, 146, 73, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 665, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 666, 5, 99, 0, 0, 666, 676, 1, 0, 0, 0, 667, 668, 3, 146, 73, 0, 668, 670, 5, 67, 0, 0, 669, 671, 5, 70, 0, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 5, 71, 0, 0, 673, 676, 1, 0, 0, 0, 674, 676, 3, 144, 72, 0, 675, 646, 1, 0, 0, 0, 675, 649, 1, 0, 0, 0, 675, 650, 1, 0, 0, 0, 675, 651, 1, 0, 0, 0, 675, 667, 1, 0, 0, 0, 675, 674, 1, 0, 0, 0, 676, 685, 1, 0, 0, 0, 677, 678, 10, 5, 0, 0, 678, 679, 5, 54, 0, 0, 679, 684, 3, 140, 70, 6, 680, 681, 10, 4, 0, 0, 681, 682, 5, 74, 0, 0, 682, 684, 3, 140, 70, 5, 683, 677, 1, 0, 0, 0, 683, 680, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 683, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 141, 1, 0, 0, 0, 687, 685, 1, 0, 0, 0, 688, 690, 3, 146, 73, 0, 689, 691, 5, 70, 0, 0, 690, 689, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 5, 69, 0, 0, 693, 694, 3, 172, 86, 0, 694, 735, 1, 0, 0, 0, 695, 697, 3, 146, 73, 0, 696, 698, 5, 70, 0, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 1, 0, 0, 0, 699, 700, 5, 76, 0, 0, 700, 701, 3, 172, 86, 0, 701, 735, 1, 0, 0, 0, 702, 704, 3, 146, 73, 0, 703, 705, 5, 70, 0, 0, 704, 703, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 5, 69, 0, 0, 707, 708, 5, 98, 0, 0, 708, 713, 3, 172, 86, 0, 709, 710, 5, 61, 0, 0, 710, 712, 3, 172, 86, 0, 711, 709, 1, 0, 0, 0, 712, 715, 1, 0, 0, 0, 713, 711, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 716, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 716, 717, 5, 99, 0, 0, 717, 735, 1, 0, 0, 0, 718, 720, 3, 146, 73, 0, 719, 721, 5, 70, 0, 0, 720, 719, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 5, 76, 0, 0, 723, 724, 5, 98, 0, 0, 724, 729, 3, 172, 86, 0, 725, 726, 5, 61, 0, 0, 726, 728, 3, 172, 86, 0, 727, 725, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 732, 733, 5, 99, 0, 0, 733, 735, 1, 0, 0, 0, 734, 688, 1, 0, 0, 0, 734, 695, 1, 0, 0, 0, 734, 702, 1, 0, 0, 0, 734, 718, 1, 0, 0, 0, 735, 143, 1, 0, 0, 0, 736, 739, 3, 50, 25, 0, 737, 738, 5, 58, 0, 0, 738, 740, 3, 12, 6, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 59, 0, 0, 742, 743, 3, 162, 81, 0, 743, 145, 1, 0, 0, 0, 744, 750, 3, 148, 74, 0, 745, 746, 3, 148, 74, 0, 746, 747, 3, 174, 87, 0, 747, 748, 3, 148, 74, 0, 748, 750, 1, 0, 0, 0, 749, 744, 1, 0, 0, 0, 749, 745, 1, 0, 0, 0, 750, 147, 1, 0, 0, 0, 751, 752, 6, 74, -1, 0, 752, 756, 3, 150, 75, 0, 753, 754, 7, 5, 0, 0, 754, 756, 3, 148, 74, 3, 755, 751, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 765, 1, 0, 0, 0, 757, 758, 10, 2, 0, 0, 758, 759, 7, 6, 0, 0, 759, 764, 3, 148, 74, 3, 760, 761, 10, 1, 0, 0, 761, 762, 7, 5, 0, 0, 762, 764, 3, 148, 74, 2, 763, 757, 1, 0, 0, 0, 763, 760, 1, 0, 0, 0, 764, 767, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 149, 1, 0, 0, 0, 767, 765, 1, 0, 0, 0, 768, 769, 6, 75, -1, 0, 769, 777, 3, 162, 81, 0, 770, 777, 3, 50, 25, 0, 771, 777, 3, 152, 76, 0, 772, 773, 5, 98, 0, 0, 773, 774, 3, 140, 70, 0, 774, 775, 5, 99, 0, 0, 775, 777, 1, 0, 0, 0, 776, 768, 1, 0, 0, 0, 776, 770, 1, 0, 0, 0, 776, 771, 1, 0, 0, 0, 776, 772, 1, 0, 0, 0, 777, 783, 1, 0, 0, 0, 778, 779, 10, 1, 0, 0, 779, 780, 5, 58, 0, 0, 780, 782, 3, 12, 6, 0, 781, 778, 1, 0, 0, 0, 782, 785, 1, 0, 0, 0, 783, 781, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 151, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 786, 787, 3, 154, 77, 0, 787, 801, 5, 98, 0, 0, 788, 802, 5, 88, 0, 0, 789, 794, 3, 140, 70, 0, 790, 791, 5, 61, 0, 0, 791, 793, 3, 140, 70, 0, 792, 790, 1, 0, 0, 0, 793, 796, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 799, 1, 0, 0, 0, 796, 794, 1, 0, 0, 0, 797, 798, 5, 61, 0, 0, 798, 800, 3, 156, 78, 0, 799, 797, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 788, 1, 0, 0, 0, 801, 789, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 5, 99, 0, 0, 804, 153, 1, 0, 0, 0, 805, 809, 3, 68, 34, 0, 806, 809, 5, 65, 0, 0, 807, 809, 5, 68, 0, 0, 808, 805, 1, 0, 0, 0, 808, 806, 1, 0, 0, 0, 808, 807, 1, 0, 0, 0, 809, 155, 1, 0, 0, 0, 810, 819, 5, 91, 0, 0, 811, 816, 3, 158, 79, 0, 812, 813, 5, 61, 0, 0, 813, 815, 3, 158, 79, 0, 814, 812, 1, 0, 0, 0, 815, 818, 1, 0, 0, 0, 816, 814, 1, 0, 0, 0, 816, 817, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 819, 811, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 5, 92, 0, 0, 822, 157, 1, 0, 0, 0, 823, 824, 3, 172, 86, 0, 824, 825, 5, 59, 0, 0, 825, 826, 3, 160, 80, 0, 826, 159, 1, 0, 0, 0, 827, 830, 3, 162, 81, 0, 828, 830, 3, 156, 78, 0, 829, 827, 1, 0, 0, 0, 829, 828, 1, 0, 0, 0, 830, 161, 1, 0, 0, 0, 831, 874, 5, 71, 0, 0, 832, 833, 3, 170, 85, 0, 833, 834, 5, 100, 0, 0, 834, 874, 1, 0, 0, 0, 835, 874, 3, 168, 84, 0, 836, 874, 3, 170, 85, 0, 837, 874, 3, 164, 82, 0, 838, 874, 3, 64, 32, 0, 839, 874, 3, 172, 86, 0, 840, 841, 5, 96, 0, 0, 841, 846, 3, 166, 83, 0, 842, 843, 5, 61, 0, 0, 843, 845, 3, 166, 83, 0, 844, 842, 1, 0, 0, 0, 845, 848, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 849, 1, 0, 0, 0, 848, 846, 1, 0, 0, 0, 849, 850, 5, 97, 0, 0, 850, 874, 1, 0, 0, 0, 851, 852, 5, 96, 0, 0, 852, 857, 3, 164, 82, 0, 853, 854, 5, 61, 0, 0, 854, 856, 3, 164, 82, 0, 855, 853, 1, 0, 0, 0, 856, 859, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 860, 861, 5, 97, 0, 0, 861, 874, 1, 0, 0, 0, 862, 863, 5, 96, 0, 0, 863, 868, 3, 172, 86, 0, 864, 865, 5, 61, 0, 0, 865, 867, 3, 172, 86, 0, 866, 864, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 872, 5, 97, 0, 0, 872, 874, 1, 0, 0, 0, 873, 831, 1, 0, 0, 0, 873, 832, 1, 0, 0, 0, 873, 835, 1, 0, 0, 0, 873, 836, 1, 0, 0, 0, 873, 837, 1, 0, 0, 0, 873, 838, 1, 0, 0, 0, 873, 839, 1, 0, 0, 0, 873, 840, 1, 0, 0, 0, 873, 851, 1, 0, 0, 0, 873, 862, 1, 0, 0, 0, 874, 163, 1, 0, 0, 0, 875, 876, 7, 7, 0, 0, 876, 165, 1, 0, 0, 0, 877, 880, 3, 168, 84, 0, 878, 880, 3, 170, 85, 0, 879, 877, 1, 0, 0, 0, 879, 878, 1, 0, 0, 0, 880, 167, 1, 0, 0, 0, 881, 883, 7, 5, 0, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 885, 5, 53, 0, 0, 885, 169, 1, 0, 0, 0, 886, 888, 7, 5, 0, 0, 887, 886, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 5, 52, 0, 0, 890, 171, 1, 0, 0, 0, 891, 892, 5, 51, 0, 0, 892, 173, 1, 0, 0, 0, 893, 894, 7, 8, 0, 0, 894, 175, 1, 0, 0, 0, 895, 896, 7, 9, 0, 0, 896, 897, 5, 123, 0, 0, 897, 898, 3, 178, 89, 0, 898, 899, 3, 180, 90, 0, 899, 177, 1, 0, 0, 0, 900, 901, 4, 89, 13, 0, 901, 903, 3, 30, 15, 0, 902, 904, 5, 141, 0, 0, 903, 902, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 906, 5, 106, 0, 0, 906, 909, 1, 0, 0, 0, 907, 909, 3, 30, 15, 0, 908, 900, 1, 0, 0, 0, 908, 907, 1, 0, 0, 0, 909, 179, 1, 0, 0, 0, 910, 911, 5, 73, 0, 0, 911, 916, 3, 140, 70, 0, 912, 913, 5, 61, 0, 0, 913, 915, 3, 140, 70, 0, 914, 912, 1, 0, 0, 0, 915, 918, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 181, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 89, 186, 194, 207, 216, 242, 257, 263, 272, 278, 291, 295, 306, 322, 330, 334, 341, 347, 352, 361, 368, 374, 383, 390, 398, 406, 410, 414, 419, 430, 435, 439, 453, 464, 470, 477, 486, 509, 517, 520, 527, 538, 545, 553, 567, 576, 587, 597, 603, 605, 609, 614, 628, 653, 662, 670, 675, 683, 685, 690, 697, 704, 713, 720, 729, 734, 739, 749, 755, 763, 765, 776, 783, 794, 799, 801, 808, 816, 819, 829, 846, 857, 868, 873, 879, 882, 887, 903, 908, 916] \ No newline at end of file +[4, 1, 151, 926, 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, 1, 0, 1, 0, 4, 0, 185, 8, 0, 11, 0, 12, 0, 186, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 3, 0, 195, 8, 0, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 206, 8, 2, 10, 2, 12, 2, 209, 9, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 217, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 243, 8, 4, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 5, 8, 256, 8, 8, 10, 8, 12, 8, 259, 9, 8, 1, 9, 1, 9, 1, 9, 3, 9, 264, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 5, 10, 271, 8, 10, 10, 10, 12, 10, 274, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 279, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 5, 14, 290, 8, 14, 10, 14, 12, 14, 293, 9, 14, 1, 14, 3, 14, 296, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 307, 8, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 321, 8, 20, 10, 20, 12, 20, 324, 9, 20, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 331, 8, 22, 1, 22, 1, 22, 3, 22, 335, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 340, 8, 23, 10, 23, 12, 23, 343, 9, 23, 1, 24, 1, 24, 1, 24, 3, 24, 348, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 353, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 362, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 367, 8, 26, 10, 26, 12, 26, 370, 9, 26, 1, 27, 1, 27, 1, 27, 3, 27, 375, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 384, 8, 27, 1, 28, 1, 28, 1, 28, 5, 28, 389, 8, 28, 10, 28, 12, 28, 392, 9, 28, 1, 29, 1, 29, 1, 29, 5, 29, 397, 8, 29, 10, 29, 12, 29, 400, 9, 29, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 407, 8, 31, 1, 32, 1, 32, 3, 32, 411, 8, 32, 1, 33, 1, 33, 3, 33, 415, 8, 33, 1, 34, 1, 34, 1, 34, 3, 34, 420, 8, 34, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 429, 8, 36, 10, 36, 12, 36, 432, 9, 36, 1, 37, 1, 37, 3, 37, 436, 8, 37, 1, 37, 1, 37, 3, 37, 440, 8, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 452, 8, 40, 10, 40, 12, 40, 455, 9, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 465, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 471, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 476, 8, 43, 10, 43, 12, 43, 479, 9, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 3, 45, 487, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 494, 8, 46, 10, 46, 12, 46, 497, 9, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 516, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 522, 8, 51, 10, 51, 12, 51, 525, 9, 51, 3, 51, 527, 8, 51, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 3, 53, 534, 8, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 545, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 552, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 4, 57, 558, 8, 57, 11, 57, 12, 57, 559, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 572, 8, 59, 10, 59, 12, 59, 575, 9, 59, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 583, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 594, 8, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 604, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 610, 8, 63, 3, 63, 612, 8, 63, 1, 64, 1, 64, 3, 64, 616, 8, 64, 1, 64, 5, 64, 619, 8, 64, 10, 64, 12, 64, 622, 9, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 635, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 660, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 667, 8, 70, 10, 70, 12, 70, 670, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 677, 8, 70, 1, 70, 1, 70, 1, 70, 3, 70, 682, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 690, 8, 70, 10, 70, 12, 70, 693, 9, 70, 1, 71, 1, 71, 3, 71, 697, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 704, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 711, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 718, 8, 71, 10, 71, 12, 71, 721, 9, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 727, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 5, 71, 734, 8, 71, 10, 71, 12, 71, 737, 9, 71, 1, 71, 1, 71, 3, 71, 741, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 746, 8, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 756, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 762, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 770, 8, 74, 10, 74, 12, 74, 773, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 783, 8, 75, 1, 75, 1, 75, 1, 75, 5, 75, 788, 8, 75, 10, 75, 12, 75, 791, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 799, 8, 76, 10, 76, 12, 76, 802, 9, 76, 1, 76, 1, 76, 3, 76, 806, 8, 76, 3, 76, 808, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 815, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 821, 8, 78, 10, 78, 12, 78, 824, 9, 78, 3, 78, 826, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 836, 8, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 851, 8, 81, 10, 81, 12, 81, 854, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 862, 8, 81, 10, 81, 12, 81, 865, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 873, 8, 81, 10, 81, 12, 81, 876, 9, 81, 1, 81, 1, 81, 3, 81, 880, 8, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 886, 8, 83, 1, 84, 3, 84, 889, 8, 84, 1, 84, 1, 84, 1, 85, 3, 85, 894, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 910, 8, 89, 1, 89, 1, 89, 1, 89, 3, 89, 915, 8, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 921, 8, 90, 10, 90, 12, 90, 924, 9, 90, 1, 90, 0, 5, 4, 118, 140, 148, 150, 91, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 0, 10, 2, 0, 51, 51, 106, 106, 1, 0, 100, 101, 2, 0, 55, 55, 62, 62, 2, 0, 65, 65, 68, 68, 2, 0, 40, 40, 51, 51, 1, 0, 86, 87, 1, 0, 88, 90, 2, 0, 64, 64, 77, 77, 2, 0, 79, 79, 81, 85, 2, 0, 24, 24, 26, 27, 970, 0, 194, 1, 0, 0, 0, 2, 196, 1, 0, 0, 0, 4, 199, 1, 0, 0, 0, 6, 216, 1, 0, 0, 0, 8, 242, 1, 0, 0, 0, 10, 244, 1, 0, 0, 0, 12, 247, 1, 0, 0, 0, 14, 249, 1, 0, 0, 0, 16, 252, 1, 0, 0, 0, 18, 263, 1, 0, 0, 0, 20, 267, 1, 0, 0, 0, 22, 275, 1, 0, 0, 0, 24, 280, 1, 0, 0, 0, 26, 283, 1, 0, 0, 0, 28, 286, 1, 0, 0, 0, 30, 306, 1, 0, 0, 0, 32, 308, 1, 0, 0, 0, 34, 310, 1, 0, 0, 0, 36, 312, 1, 0, 0, 0, 38, 314, 1, 0, 0, 0, 40, 316, 1, 0, 0, 0, 42, 325, 1, 0, 0, 0, 44, 328, 1, 0, 0, 0, 46, 336, 1, 0, 0, 0, 48, 344, 1, 0, 0, 0, 50, 361, 1, 0, 0, 0, 52, 363, 1, 0, 0, 0, 54, 383, 1, 0, 0, 0, 56, 385, 1, 0, 0, 0, 58, 393, 1, 0, 0, 0, 60, 401, 1, 0, 0, 0, 62, 406, 1, 0, 0, 0, 64, 410, 1, 0, 0, 0, 66, 414, 1, 0, 0, 0, 68, 419, 1, 0, 0, 0, 70, 421, 1, 0, 0, 0, 72, 424, 1, 0, 0, 0, 74, 433, 1, 0, 0, 0, 76, 441, 1, 0, 0, 0, 78, 444, 1, 0, 0, 0, 80, 447, 1, 0, 0, 0, 82, 464, 1, 0, 0, 0, 84, 466, 1, 0, 0, 0, 86, 472, 1, 0, 0, 0, 88, 480, 1, 0, 0, 0, 90, 486, 1, 0, 0, 0, 92, 488, 1, 0, 0, 0, 94, 498, 1, 0, 0, 0, 96, 501, 1, 0, 0, 0, 98, 504, 1, 0, 0, 0, 100, 508, 1, 0, 0, 0, 102, 511, 1, 0, 0, 0, 104, 528, 1, 0, 0, 0, 106, 533, 1, 0, 0, 0, 108, 537, 1, 0, 0, 0, 110, 540, 1, 0, 0, 0, 112, 553, 1, 0, 0, 0, 114, 557, 1, 0, 0, 0, 116, 561, 1, 0, 0, 0, 118, 565, 1, 0, 0, 0, 120, 576, 1, 0, 0, 0, 122, 578, 1, 0, 0, 0, 124, 589, 1, 0, 0, 0, 126, 611, 1, 0, 0, 0, 128, 613, 1, 0, 0, 0, 130, 634, 1, 0, 0, 0, 132, 636, 1, 0, 0, 0, 134, 641, 1, 0, 0, 0, 136, 644, 1, 0, 0, 0, 138, 648, 1, 0, 0, 0, 140, 681, 1, 0, 0, 0, 142, 740, 1, 0, 0, 0, 144, 742, 1, 0, 0, 0, 146, 755, 1, 0, 0, 0, 148, 761, 1, 0, 0, 0, 150, 782, 1, 0, 0, 0, 152, 792, 1, 0, 0, 0, 154, 814, 1, 0, 0, 0, 156, 816, 1, 0, 0, 0, 158, 829, 1, 0, 0, 0, 160, 835, 1, 0, 0, 0, 162, 879, 1, 0, 0, 0, 164, 881, 1, 0, 0, 0, 166, 885, 1, 0, 0, 0, 168, 888, 1, 0, 0, 0, 170, 893, 1, 0, 0, 0, 172, 897, 1, 0, 0, 0, 174, 899, 1, 0, 0, 0, 176, 901, 1, 0, 0, 0, 178, 914, 1, 0, 0, 0, 180, 916, 1, 0, 0, 0, 182, 184, 4, 0, 0, 0, 183, 185, 3, 136, 68, 0, 184, 183, 1, 0, 0, 0, 185, 186, 1, 0, 0, 0, 186, 184, 1, 0, 0, 0, 186, 187, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 189, 3, 2, 1, 0, 189, 190, 5, 0, 0, 1, 190, 195, 1, 0, 0, 0, 191, 192, 3, 2, 1, 0, 192, 193, 5, 0, 0, 1, 193, 195, 1, 0, 0, 0, 194, 182, 1, 0, 0, 0, 194, 191, 1, 0, 0, 0, 195, 1, 1, 0, 0, 0, 196, 197, 3, 4, 2, 0, 197, 198, 5, 0, 0, 1, 198, 3, 1, 0, 0, 0, 199, 200, 6, 2, -1, 0, 200, 201, 3, 6, 3, 0, 201, 207, 1, 0, 0, 0, 202, 203, 10, 1, 0, 0, 203, 204, 5, 50, 0, 0, 204, 206, 3, 8, 4, 0, 205, 202, 1, 0, 0, 0, 206, 209, 1, 0, 0, 0, 207, 205, 1, 0, 0, 0, 207, 208, 1, 0, 0, 0, 208, 5, 1, 0, 0, 0, 209, 207, 1, 0, 0, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 14, 7, 0, 212, 217, 3, 100, 50, 0, 213, 217, 3, 26, 13, 0, 214, 215, 4, 3, 2, 0, 215, 217, 3, 96, 48, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 217, 7, 1, 0, 0, 0, 218, 243, 3, 42, 21, 0, 219, 243, 3, 10, 5, 0, 220, 243, 3, 76, 38, 0, 221, 243, 3, 70, 35, 0, 222, 243, 3, 44, 22, 0, 223, 243, 3, 72, 36, 0, 224, 243, 3, 78, 39, 0, 225, 243, 3, 80, 40, 0, 226, 243, 3, 84, 42, 0, 227, 243, 3, 92, 46, 0, 228, 243, 3, 102, 51, 0, 229, 243, 3, 94, 47, 0, 230, 243, 3, 176, 88, 0, 231, 243, 3, 110, 55, 0, 232, 243, 3, 124, 62, 0, 233, 243, 3, 108, 54, 0, 234, 243, 3, 112, 56, 0, 235, 243, 3, 122, 61, 0, 236, 243, 3, 126, 63, 0, 237, 243, 3, 128, 64, 0, 238, 239, 4, 4, 3, 0, 239, 243, 3, 132, 66, 0, 240, 241, 4, 4, 4, 0, 241, 243, 3, 134, 67, 0, 242, 218, 1, 0, 0, 0, 242, 219, 1, 0, 0, 0, 242, 220, 1, 0, 0, 0, 242, 221, 1, 0, 0, 0, 242, 222, 1, 0, 0, 0, 242, 223, 1, 0, 0, 0, 242, 224, 1, 0, 0, 0, 242, 225, 1, 0, 0, 0, 242, 226, 1, 0, 0, 0, 242, 227, 1, 0, 0, 0, 242, 228, 1, 0, 0, 0, 242, 229, 1, 0, 0, 0, 242, 230, 1, 0, 0, 0, 242, 231, 1, 0, 0, 0, 242, 232, 1, 0, 0, 0, 242, 233, 1, 0, 0, 0, 242, 234, 1, 0, 0, 0, 242, 235, 1, 0, 0, 0, 242, 236, 1, 0, 0, 0, 242, 237, 1, 0, 0, 0, 242, 238, 1, 0, 0, 0, 242, 240, 1, 0, 0, 0, 243, 9, 1, 0, 0, 0, 244, 245, 5, 17, 0, 0, 245, 246, 3, 140, 70, 0, 246, 11, 1, 0, 0, 0, 247, 248, 3, 60, 30, 0, 248, 13, 1, 0, 0, 0, 249, 250, 5, 13, 0, 0, 250, 251, 3, 16, 8, 0, 251, 15, 1, 0, 0, 0, 252, 257, 3, 18, 9, 0, 253, 254, 5, 61, 0, 0, 254, 256, 3, 18, 9, 0, 255, 253, 1, 0, 0, 0, 256, 259, 1, 0, 0, 0, 257, 255, 1, 0, 0, 0, 257, 258, 1, 0, 0, 0, 258, 17, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 260, 261, 3, 50, 25, 0, 261, 262, 5, 56, 0, 0, 262, 264, 1, 0, 0, 0, 263, 260, 1, 0, 0, 0, 263, 264, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 266, 3, 140, 70, 0, 266, 19, 1, 0, 0, 0, 267, 272, 3, 22, 11, 0, 268, 269, 5, 61, 0, 0, 269, 271, 3, 22, 11, 0, 270, 268, 1, 0, 0, 0, 271, 274, 1, 0, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 21, 1, 0, 0, 0, 274, 272, 1, 0, 0, 0, 275, 278, 3, 50, 25, 0, 276, 277, 5, 56, 0, 0, 277, 279, 3, 140, 70, 0, 278, 276, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 23, 1, 0, 0, 0, 280, 281, 5, 18, 0, 0, 281, 282, 3, 28, 14, 0, 282, 25, 1, 0, 0, 0, 283, 284, 5, 19, 0, 0, 284, 285, 3, 28, 14, 0, 285, 27, 1, 0, 0, 0, 286, 291, 3, 30, 15, 0, 287, 288, 5, 61, 0, 0, 288, 290, 3, 30, 15, 0, 289, 287, 1, 0, 0, 0, 290, 293, 1, 0, 0, 0, 291, 289, 1, 0, 0, 0, 291, 292, 1, 0, 0, 0, 292, 295, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 294, 296, 3, 40, 20, 0, 295, 294, 1, 0, 0, 0, 295, 296, 1, 0, 0, 0, 296, 29, 1, 0, 0, 0, 297, 298, 3, 32, 16, 0, 298, 299, 5, 59, 0, 0, 299, 300, 3, 36, 18, 0, 300, 307, 1, 0, 0, 0, 301, 302, 3, 36, 18, 0, 302, 303, 5, 58, 0, 0, 303, 304, 3, 34, 17, 0, 304, 307, 1, 0, 0, 0, 305, 307, 3, 38, 19, 0, 306, 297, 1, 0, 0, 0, 306, 301, 1, 0, 0, 0, 306, 305, 1, 0, 0, 0, 307, 31, 1, 0, 0, 0, 308, 309, 5, 106, 0, 0, 309, 33, 1, 0, 0, 0, 310, 311, 5, 106, 0, 0, 311, 35, 1, 0, 0, 0, 312, 313, 5, 106, 0, 0, 313, 37, 1, 0, 0, 0, 314, 315, 7, 0, 0, 0, 315, 39, 1, 0, 0, 0, 316, 317, 5, 105, 0, 0, 317, 322, 5, 106, 0, 0, 318, 319, 5, 61, 0, 0, 319, 321, 5, 106, 0, 0, 320, 318, 1, 0, 0, 0, 321, 324, 1, 0, 0, 0, 322, 320, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 41, 1, 0, 0, 0, 324, 322, 1, 0, 0, 0, 325, 326, 5, 9, 0, 0, 326, 327, 3, 16, 8, 0, 327, 43, 1, 0, 0, 0, 328, 330, 5, 16, 0, 0, 329, 331, 3, 46, 23, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 333, 5, 57, 0, 0, 333, 335, 3, 16, 8, 0, 334, 332, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 45, 1, 0, 0, 0, 336, 341, 3, 48, 24, 0, 337, 338, 5, 61, 0, 0, 338, 340, 3, 48, 24, 0, 339, 337, 1, 0, 0, 0, 340, 343, 1, 0, 0, 0, 341, 339, 1, 0, 0, 0, 341, 342, 1, 0, 0, 0, 342, 47, 1, 0, 0, 0, 343, 341, 1, 0, 0, 0, 344, 347, 3, 18, 9, 0, 345, 346, 5, 17, 0, 0, 346, 348, 3, 140, 70, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 49, 1, 0, 0, 0, 349, 350, 4, 25, 5, 0, 350, 352, 5, 96, 0, 0, 351, 353, 5, 100, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 355, 5, 97, 0, 0, 355, 356, 5, 63, 0, 0, 356, 357, 5, 96, 0, 0, 357, 358, 3, 52, 26, 0, 358, 359, 5, 97, 0, 0, 359, 362, 1, 0, 0, 0, 360, 362, 3, 52, 26, 0, 361, 349, 1, 0, 0, 0, 361, 360, 1, 0, 0, 0, 362, 51, 1, 0, 0, 0, 363, 368, 3, 68, 34, 0, 364, 365, 5, 63, 0, 0, 365, 367, 3, 68, 34, 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, 53, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 372, 4, 27, 6, 0, 372, 374, 5, 96, 0, 0, 373, 375, 5, 137, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 5, 97, 0, 0, 377, 378, 5, 63, 0, 0, 378, 379, 5, 96, 0, 0, 379, 380, 3, 56, 28, 0, 380, 381, 5, 97, 0, 0, 381, 384, 1, 0, 0, 0, 382, 384, 3, 56, 28, 0, 383, 371, 1, 0, 0, 0, 383, 382, 1, 0, 0, 0, 384, 55, 1, 0, 0, 0, 385, 390, 3, 62, 31, 0, 386, 387, 5, 63, 0, 0, 387, 389, 3, 62, 31, 0, 388, 386, 1, 0, 0, 0, 389, 392, 1, 0, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 57, 1, 0, 0, 0, 392, 390, 1, 0, 0, 0, 393, 398, 3, 54, 27, 0, 394, 395, 5, 61, 0, 0, 395, 397, 3, 54, 27, 0, 396, 394, 1, 0, 0, 0, 397, 400, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 59, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 401, 402, 7, 1, 0, 0, 402, 61, 1, 0, 0, 0, 403, 407, 5, 137, 0, 0, 404, 407, 3, 64, 32, 0, 405, 407, 3, 66, 33, 0, 406, 403, 1, 0, 0, 0, 406, 404, 1, 0, 0, 0, 406, 405, 1, 0, 0, 0, 407, 63, 1, 0, 0, 0, 408, 411, 5, 75, 0, 0, 409, 411, 5, 94, 0, 0, 410, 408, 1, 0, 0, 0, 410, 409, 1, 0, 0, 0, 411, 65, 1, 0, 0, 0, 412, 415, 5, 93, 0, 0, 413, 415, 5, 95, 0, 0, 414, 412, 1, 0, 0, 0, 414, 413, 1, 0, 0, 0, 415, 67, 1, 0, 0, 0, 416, 420, 3, 60, 30, 0, 417, 420, 3, 64, 32, 0, 418, 420, 3, 66, 33, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 69, 1, 0, 0, 0, 421, 422, 5, 11, 0, 0, 422, 423, 3, 162, 81, 0, 423, 71, 1, 0, 0, 0, 424, 425, 5, 15, 0, 0, 425, 430, 3, 74, 37, 0, 426, 427, 5, 61, 0, 0, 427, 429, 3, 74, 37, 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, 73, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 435, 3, 140, 70, 0, 434, 436, 7, 2, 0, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 439, 1, 0, 0, 0, 437, 438, 5, 72, 0, 0, 438, 440, 7, 3, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 75, 1, 0, 0, 0, 441, 442, 5, 31, 0, 0, 442, 443, 3, 58, 29, 0, 443, 77, 1, 0, 0, 0, 444, 445, 5, 30, 0, 0, 445, 446, 3, 58, 29, 0, 446, 79, 1, 0, 0, 0, 447, 448, 5, 33, 0, 0, 448, 453, 3, 82, 41, 0, 449, 450, 5, 61, 0, 0, 450, 452, 3, 82, 41, 0, 451, 449, 1, 0, 0, 0, 452, 455, 1, 0, 0, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 81, 1, 0, 0, 0, 455, 453, 1, 0, 0, 0, 456, 457, 3, 54, 27, 0, 457, 458, 5, 141, 0, 0, 458, 459, 3, 54, 27, 0, 459, 465, 1, 0, 0, 0, 460, 461, 3, 54, 27, 0, 461, 462, 5, 56, 0, 0, 462, 463, 3, 54, 27, 0, 463, 465, 1, 0, 0, 0, 464, 456, 1, 0, 0, 0, 464, 460, 1, 0, 0, 0, 465, 83, 1, 0, 0, 0, 466, 467, 5, 8, 0, 0, 467, 468, 3, 150, 75, 0, 468, 470, 3, 172, 86, 0, 469, 471, 3, 86, 43, 0, 470, 469, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 85, 1, 0, 0, 0, 472, 477, 3, 88, 44, 0, 473, 474, 5, 61, 0, 0, 474, 476, 3, 88, 44, 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, 87, 1, 0, 0, 0, 479, 477, 1, 0, 0, 0, 480, 481, 3, 60, 30, 0, 481, 482, 5, 56, 0, 0, 482, 483, 3, 162, 81, 0, 483, 89, 1, 0, 0, 0, 484, 485, 5, 78, 0, 0, 485, 487, 3, 156, 78, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 91, 1, 0, 0, 0, 488, 489, 5, 10, 0, 0, 489, 490, 3, 150, 75, 0, 490, 495, 3, 172, 86, 0, 491, 492, 5, 61, 0, 0, 492, 494, 3, 172, 86, 0, 493, 491, 1, 0, 0, 0, 494, 497, 1, 0, 0, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 93, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 499, 5, 29, 0, 0, 499, 500, 3, 50, 25, 0, 500, 95, 1, 0, 0, 0, 501, 502, 5, 6, 0, 0, 502, 503, 3, 98, 49, 0, 503, 97, 1, 0, 0, 0, 504, 505, 5, 98, 0, 0, 505, 506, 3, 4, 2, 0, 506, 507, 5, 99, 0, 0, 507, 99, 1, 0, 0, 0, 508, 509, 5, 35, 0, 0, 509, 510, 5, 148, 0, 0, 510, 101, 1, 0, 0, 0, 511, 512, 5, 5, 0, 0, 512, 515, 3, 104, 52, 0, 513, 514, 5, 73, 0, 0, 514, 516, 3, 54, 27, 0, 515, 513, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 526, 1, 0, 0, 0, 517, 518, 5, 78, 0, 0, 518, 523, 3, 106, 53, 0, 519, 520, 5, 61, 0, 0, 520, 522, 3, 106, 53, 0, 521, 519, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 517, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 103, 1, 0, 0, 0, 528, 529, 7, 4, 0, 0, 529, 105, 1, 0, 0, 0, 530, 531, 3, 54, 27, 0, 531, 532, 5, 56, 0, 0, 532, 534, 1, 0, 0, 0, 533, 530, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 3, 54, 27, 0, 536, 107, 1, 0, 0, 0, 537, 538, 5, 14, 0, 0, 538, 539, 3, 162, 81, 0, 539, 109, 1, 0, 0, 0, 540, 541, 5, 4, 0, 0, 541, 544, 3, 50, 25, 0, 542, 543, 5, 73, 0, 0, 543, 545, 3, 50, 25, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 551, 1, 0, 0, 0, 546, 547, 5, 141, 0, 0, 547, 548, 3, 50, 25, 0, 548, 549, 5, 61, 0, 0, 549, 550, 3, 50, 25, 0, 550, 552, 1, 0, 0, 0, 551, 546, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 111, 1, 0, 0, 0, 553, 554, 5, 20, 0, 0, 554, 555, 3, 114, 57, 0, 555, 113, 1, 0, 0, 0, 556, 558, 3, 116, 58, 0, 557, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 115, 1, 0, 0, 0, 561, 562, 5, 98, 0, 0, 562, 563, 3, 118, 59, 0, 563, 564, 5, 99, 0, 0, 564, 117, 1, 0, 0, 0, 565, 566, 6, 59, -1, 0, 566, 567, 3, 120, 60, 0, 567, 573, 1, 0, 0, 0, 568, 569, 10, 1, 0, 0, 569, 570, 5, 50, 0, 0, 570, 572, 3, 120, 60, 0, 571, 568, 1, 0, 0, 0, 572, 575, 1, 0, 0, 0, 573, 571, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 119, 1, 0, 0, 0, 575, 573, 1, 0, 0, 0, 576, 577, 3, 8, 4, 0, 577, 121, 1, 0, 0, 0, 578, 582, 5, 12, 0, 0, 579, 580, 3, 50, 25, 0, 580, 581, 5, 56, 0, 0, 581, 583, 1, 0, 0, 0, 582, 579, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 584, 1, 0, 0, 0, 584, 585, 3, 162, 81, 0, 585, 586, 5, 73, 0, 0, 586, 587, 3, 20, 10, 0, 587, 588, 3, 90, 45, 0, 588, 123, 1, 0, 0, 0, 589, 593, 5, 7, 0, 0, 590, 591, 3, 50, 25, 0, 591, 592, 5, 56, 0, 0, 592, 594, 1, 0, 0, 0, 593, 590, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 3, 150, 75, 0, 596, 597, 3, 90, 45, 0, 597, 125, 1, 0, 0, 0, 598, 599, 5, 22, 0, 0, 599, 600, 5, 119, 0, 0, 600, 603, 3, 46, 23, 0, 601, 602, 5, 57, 0, 0, 602, 604, 3, 16, 8, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 612, 1, 0, 0, 0, 605, 606, 5, 23, 0, 0, 606, 609, 3, 46, 23, 0, 607, 608, 5, 57, 0, 0, 608, 610, 3, 16, 8, 0, 609, 607, 1, 0, 0, 0, 609, 610, 1, 0, 0, 0, 610, 612, 1, 0, 0, 0, 611, 598, 1, 0, 0, 0, 611, 605, 1, 0, 0, 0, 612, 127, 1, 0, 0, 0, 613, 615, 5, 21, 0, 0, 614, 616, 3, 60, 30, 0, 615, 614, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 620, 1, 0, 0, 0, 617, 619, 3, 130, 65, 0, 618, 617, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 129, 1, 0, 0, 0, 622, 620, 1, 0, 0, 0, 623, 624, 5, 114, 0, 0, 624, 625, 5, 57, 0, 0, 625, 635, 3, 50, 25, 0, 626, 627, 5, 115, 0, 0, 627, 628, 5, 57, 0, 0, 628, 635, 3, 16, 8, 0, 629, 630, 5, 113, 0, 0, 630, 631, 5, 57, 0, 0, 631, 635, 3, 50, 25, 0, 632, 633, 5, 78, 0, 0, 633, 635, 3, 156, 78, 0, 634, 623, 1, 0, 0, 0, 634, 626, 1, 0, 0, 0, 634, 629, 1, 0, 0, 0, 634, 632, 1, 0, 0, 0, 635, 131, 1, 0, 0, 0, 636, 637, 5, 28, 0, 0, 637, 638, 3, 30, 15, 0, 638, 639, 5, 73, 0, 0, 639, 640, 3, 58, 29, 0, 640, 133, 1, 0, 0, 0, 641, 642, 5, 32, 0, 0, 642, 643, 3, 58, 29, 0, 643, 135, 1, 0, 0, 0, 644, 645, 5, 34, 0, 0, 645, 646, 3, 138, 69, 0, 646, 647, 5, 60, 0, 0, 647, 137, 1, 0, 0, 0, 648, 649, 3, 60, 30, 0, 649, 650, 5, 56, 0, 0, 650, 651, 3, 162, 81, 0, 651, 139, 1, 0, 0, 0, 652, 653, 6, 70, -1, 0, 653, 654, 5, 70, 0, 0, 654, 682, 3, 140, 70, 8, 655, 682, 3, 146, 73, 0, 656, 682, 3, 142, 71, 0, 657, 659, 3, 146, 73, 0, 658, 660, 5, 70, 0, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 662, 5, 66, 0, 0, 662, 663, 5, 98, 0, 0, 663, 668, 3, 146, 73, 0, 664, 665, 5, 61, 0, 0, 665, 667, 3, 146, 73, 0, 666, 664, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 671, 672, 5, 99, 0, 0, 672, 682, 1, 0, 0, 0, 673, 674, 3, 146, 73, 0, 674, 676, 5, 67, 0, 0, 675, 677, 5, 70, 0, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 679, 5, 71, 0, 0, 679, 682, 1, 0, 0, 0, 680, 682, 3, 144, 72, 0, 681, 652, 1, 0, 0, 0, 681, 655, 1, 0, 0, 0, 681, 656, 1, 0, 0, 0, 681, 657, 1, 0, 0, 0, 681, 673, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 691, 1, 0, 0, 0, 683, 684, 10, 5, 0, 0, 684, 685, 5, 54, 0, 0, 685, 690, 3, 140, 70, 6, 686, 687, 10, 4, 0, 0, 687, 688, 5, 74, 0, 0, 688, 690, 3, 140, 70, 5, 689, 683, 1, 0, 0, 0, 689, 686, 1, 0, 0, 0, 690, 693, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 141, 1, 0, 0, 0, 693, 691, 1, 0, 0, 0, 694, 696, 3, 146, 73, 0, 695, 697, 5, 70, 0, 0, 696, 695, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 699, 5, 69, 0, 0, 699, 700, 3, 172, 86, 0, 700, 741, 1, 0, 0, 0, 701, 703, 3, 146, 73, 0, 702, 704, 5, 70, 0, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 76, 0, 0, 706, 707, 3, 172, 86, 0, 707, 741, 1, 0, 0, 0, 708, 710, 3, 146, 73, 0, 709, 711, 5, 70, 0, 0, 710, 709, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 5, 69, 0, 0, 713, 714, 5, 98, 0, 0, 714, 719, 3, 172, 86, 0, 715, 716, 5, 61, 0, 0, 716, 718, 3, 172, 86, 0, 717, 715, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 5, 99, 0, 0, 723, 741, 1, 0, 0, 0, 724, 726, 3, 146, 73, 0, 725, 727, 5, 70, 0, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 76, 0, 0, 729, 730, 5, 98, 0, 0, 730, 735, 3, 172, 86, 0, 731, 732, 5, 61, 0, 0, 732, 734, 3, 172, 86, 0, 733, 731, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 739, 5, 99, 0, 0, 739, 741, 1, 0, 0, 0, 740, 694, 1, 0, 0, 0, 740, 701, 1, 0, 0, 0, 740, 708, 1, 0, 0, 0, 740, 724, 1, 0, 0, 0, 741, 143, 1, 0, 0, 0, 742, 745, 3, 50, 25, 0, 743, 744, 5, 58, 0, 0, 744, 746, 3, 12, 6, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 748, 5, 59, 0, 0, 748, 749, 3, 162, 81, 0, 749, 145, 1, 0, 0, 0, 750, 756, 3, 148, 74, 0, 751, 752, 3, 148, 74, 0, 752, 753, 3, 174, 87, 0, 753, 754, 3, 148, 74, 0, 754, 756, 1, 0, 0, 0, 755, 750, 1, 0, 0, 0, 755, 751, 1, 0, 0, 0, 756, 147, 1, 0, 0, 0, 757, 758, 6, 74, -1, 0, 758, 762, 3, 150, 75, 0, 759, 760, 7, 5, 0, 0, 760, 762, 3, 148, 74, 3, 761, 757, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 762, 771, 1, 0, 0, 0, 763, 764, 10, 2, 0, 0, 764, 765, 7, 6, 0, 0, 765, 770, 3, 148, 74, 3, 766, 767, 10, 1, 0, 0, 767, 768, 7, 5, 0, 0, 768, 770, 3, 148, 74, 2, 769, 763, 1, 0, 0, 0, 769, 766, 1, 0, 0, 0, 770, 773, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 149, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 774, 775, 6, 75, -1, 0, 775, 783, 3, 162, 81, 0, 776, 783, 3, 50, 25, 0, 777, 783, 3, 152, 76, 0, 778, 779, 5, 98, 0, 0, 779, 780, 3, 140, 70, 0, 780, 781, 5, 99, 0, 0, 781, 783, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 782, 776, 1, 0, 0, 0, 782, 777, 1, 0, 0, 0, 782, 778, 1, 0, 0, 0, 783, 789, 1, 0, 0, 0, 784, 785, 10, 1, 0, 0, 785, 786, 5, 58, 0, 0, 786, 788, 3, 12, 6, 0, 787, 784, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 151, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 154, 77, 0, 793, 807, 5, 98, 0, 0, 794, 808, 5, 88, 0, 0, 795, 800, 3, 140, 70, 0, 796, 797, 5, 61, 0, 0, 797, 799, 3, 140, 70, 0, 798, 796, 1, 0, 0, 0, 799, 802, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 805, 1, 0, 0, 0, 802, 800, 1, 0, 0, 0, 803, 804, 5, 61, 0, 0, 804, 806, 3, 156, 78, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 794, 1, 0, 0, 0, 807, 795, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 5, 99, 0, 0, 810, 153, 1, 0, 0, 0, 811, 815, 3, 68, 34, 0, 812, 815, 5, 65, 0, 0, 813, 815, 5, 68, 0, 0, 814, 811, 1, 0, 0, 0, 814, 812, 1, 0, 0, 0, 814, 813, 1, 0, 0, 0, 815, 155, 1, 0, 0, 0, 816, 825, 5, 91, 0, 0, 817, 822, 3, 158, 79, 0, 818, 819, 5, 61, 0, 0, 819, 821, 3, 158, 79, 0, 820, 818, 1, 0, 0, 0, 821, 824, 1, 0, 0, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 826, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 825, 817, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 828, 5, 92, 0, 0, 828, 157, 1, 0, 0, 0, 829, 830, 3, 172, 86, 0, 830, 831, 5, 59, 0, 0, 831, 832, 3, 160, 80, 0, 832, 159, 1, 0, 0, 0, 833, 836, 3, 162, 81, 0, 834, 836, 3, 156, 78, 0, 835, 833, 1, 0, 0, 0, 835, 834, 1, 0, 0, 0, 836, 161, 1, 0, 0, 0, 837, 880, 5, 71, 0, 0, 838, 839, 3, 170, 85, 0, 839, 840, 5, 100, 0, 0, 840, 880, 1, 0, 0, 0, 841, 880, 3, 168, 84, 0, 842, 880, 3, 170, 85, 0, 843, 880, 3, 164, 82, 0, 844, 880, 3, 64, 32, 0, 845, 880, 3, 172, 86, 0, 846, 847, 5, 96, 0, 0, 847, 852, 3, 166, 83, 0, 848, 849, 5, 61, 0, 0, 849, 851, 3, 166, 83, 0, 850, 848, 1, 0, 0, 0, 851, 854, 1, 0, 0, 0, 852, 850, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 855, 1, 0, 0, 0, 854, 852, 1, 0, 0, 0, 855, 856, 5, 97, 0, 0, 856, 880, 1, 0, 0, 0, 857, 858, 5, 96, 0, 0, 858, 863, 3, 164, 82, 0, 859, 860, 5, 61, 0, 0, 860, 862, 3, 164, 82, 0, 861, 859, 1, 0, 0, 0, 862, 865, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 866, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 866, 867, 5, 97, 0, 0, 867, 880, 1, 0, 0, 0, 868, 869, 5, 96, 0, 0, 869, 874, 3, 172, 86, 0, 870, 871, 5, 61, 0, 0, 871, 873, 3, 172, 86, 0, 872, 870, 1, 0, 0, 0, 873, 876, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 877, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 877, 878, 5, 97, 0, 0, 878, 880, 1, 0, 0, 0, 879, 837, 1, 0, 0, 0, 879, 838, 1, 0, 0, 0, 879, 841, 1, 0, 0, 0, 879, 842, 1, 0, 0, 0, 879, 843, 1, 0, 0, 0, 879, 844, 1, 0, 0, 0, 879, 845, 1, 0, 0, 0, 879, 846, 1, 0, 0, 0, 879, 857, 1, 0, 0, 0, 879, 868, 1, 0, 0, 0, 880, 163, 1, 0, 0, 0, 881, 882, 7, 7, 0, 0, 882, 165, 1, 0, 0, 0, 883, 886, 3, 168, 84, 0, 884, 886, 3, 170, 85, 0, 885, 883, 1, 0, 0, 0, 885, 884, 1, 0, 0, 0, 886, 167, 1, 0, 0, 0, 887, 889, 7, 5, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 5, 53, 0, 0, 891, 169, 1, 0, 0, 0, 892, 894, 7, 5, 0, 0, 893, 892, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 5, 52, 0, 0, 896, 171, 1, 0, 0, 0, 897, 898, 5, 51, 0, 0, 898, 173, 1, 0, 0, 0, 899, 900, 7, 8, 0, 0, 900, 175, 1, 0, 0, 0, 901, 902, 7, 9, 0, 0, 902, 903, 5, 123, 0, 0, 903, 904, 3, 178, 89, 0, 904, 905, 3, 180, 90, 0, 905, 177, 1, 0, 0, 0, 906, 907, 4, 89, 13, 0, 907, 909, 3, 30, 15, 0, 908, 910, 5, 141, 0, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 5, 106, 0, 0, 912, 915, 1, 0, 0, 0, 913, 915, 3, 30, 15, 0, 914, 906, 1, 0, 0, 0, 914, 913, 1, 0, 0, 0, 915, 179, 1, 0, 0, 0, 916, 917, 5, 73, 0, 0, 917, 922, 3, 140, 70, 0, 918, 919, 5, 61, 0, 0, 919, 921, 3, 140, 70, 0, 920, 918, 1, 0, 0, 0, 921, 924, 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 181, 1, 0, 0, 0, 924, 922, 1, 0, 0, 0, 90, 186, 194, 207, 216, 242, 257, 263, 272, 278, 291, 295, 306, 322, 330, 334, 341, 347, 352, 361, 368, 374, 383, 390, 398, 406, 410, 414, 419, 430, 435, 439, 453, 464, 470, 477, 486, 495, 515, 523, 526, 533, 544, 551, 559, 573, 582, 593, 603, 609, 611, 615, 620, 634, 659, 668, 676, 681, 689, 691, 696, 703, 710, 719, 726, 735, 740, 745, 755, 761, 769, 771, 782, 789, 800, 805, 807, 814, 822, 825, 835, 852, 863, 874, 879, 885, 888, 893, 909, 914, 922] \ 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 36b5b5256ed24..ba685437239b8 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 @@ -3565,8 +3565,15 @@ public static class GrokCommandContext extends ParserRuleContext { public PrimaryExpressionContext primaryExpression() { return getRuleContext(PrimaryExpressionContext.class,0); } - public StringContext string() { - return getRuleContext(StringContext.class,0); + public List string() { + return getRuleContexts(StringContext.class); + } + public StringContext string(int i) { + return getRuleContext(StringContext.class,i); + } + public List COMMA() { return getTokens(EsqlBaseParser.COMMA); } + public TerminalNode COMMA(int i) { + return getToken(EsqlBaseParser.COMMA, i); } @SuppressWarnings("this-escape") public GrokCommandContext(ParserRuleContext parent, int invokingState) { @@ -3592,6 +3599,7 @@ public final GrokCommandContext grokCommand() throws RecognitionException { GrokCommandContext _localctx = new GrokCommandContext(_ctx, getState()); enterRule(_localctx, 92, RULE_grokCommand); try { + int _alt; enterOuterAlt(_localctx, 1); { setState(488); @@ -3600,6 +3608,24 @@ public final GrokCommandContext grokCommand() throws RecognitionException { primaryExpression(0); setState(490); string(); + setState(495); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(491); + match(COMMA); + setState(492); + string(); + } + } + } + setState(497); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,36,_ctx); + } } } catch (RecognitionException re) { @@ -3645,9 +3671,9 @@ public final MvExpandCommandContext mvExpandCommand() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(492); + setState(498); match(MV_EXPAND); - setState(493); + setState(499); qualifiedName(); } } @@ -3694,9 +3720,9 @@ public final ExplainCommandContext explainCommand() throws RecognitionException try { enterOuterAlt(_localctx, 1); { - setState(495); + setState(501); match(DEV_EXPLAIN); - setState(496); + setState(502); subqueryExpression(); } } @@ -3744,11 +3770,11 @@ public final SubqueryExpressionContext subqueryExpression() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(498); + setState(504); match(LP); - setState(499); + setState(505); query(0); - setState(500); + setState(506); match(RP); } } @@ -3805,9 +3831,9 @@ public final ShowCommandContext showCommand() throws RecognitionException { _localctx = new ShowInfoContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(502); + setState(508); match(SHOW); - setState(503); + setState(509); match(INFO); } } @@ -3872,48 +3898,48 @@ public final EnrichCommandContext enrichCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(505); + setState(511); match(ENRICH); - setState(506); + setState(512); ((EnrichCommandContext)_localctx).policyName = enrichPolicyName(); - setState(509); + setState(515); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,36,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,37,_ctx) ) { case 1: { - setState(507); + setState(513); match(ON); - setState(508); + setState(514); ((EnrichCommandContext)_localctx).matchField = qualifiedNamePattern(); } break; } - setState(520); + setState(526); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,38,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: { - setState(511); + setState(517); match(WITH); - setState(512); + setState(518); enrichWithClause(); - setState(517); + setState(523); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,38,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(513); + setState(519); match(COMMA); - setState(514); + setState(520); enrichWithClause(); } } } - setState(519); + setState(525); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,37,_ctx); + _alt = getInterpreter().adaptivePredict(_input,38,_ctx); } } break; @@ -3962,7 +3988,7 @@ public final EnrichPolicyNameContext enrichPolicyName() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(522); + setState(528); _la = _input.LA(1); if ( !(_la==ENRICH_POLICY_NAME || _la==QUOTED_STRING) ) { _errHandler.recoverInline(this); @@ -4022,19 +4048,19 @@ public final EnrichWithClauseContext enrichWithClause() throws RecognitionExcept try { enterOuterAlt(_localctx, 1); { - setState(527); + setState(533); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(524); + setState(530); ((EnrichWithClauseContext)_localctx).newName = qualifiedNamePattern(); - setState(525); + setState(531); match(ASSIGN); } break; } - setState(529); + setState(535); ((EnrichWithClauseContext)_localctx).enrichField = qualifiedNamePattern(); } } @@ -4082,9 +4108,9 @@ public final SampleCommandContext sampleCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(531); + setState(537); match(SAMPLE); - setState(532); + setState(538); ((SampleCommandContext)_localctx).probability = constant(); } } @@ -4141,34 +4167,34 @@ public final ChangePointCommandContext changePointCommand() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(534); + setState(540); match(CHANGE_POINT); - setState(535); + setState(541); ((ChangePointCommandContext)_localctx).value = qualifiedName(); - setState(538); + setState(544); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { - setState(536); + setState(542); match(ON); - setState(537); + setState(543); ((ChangePointCommandContext)_localctx).key = qualifiedName(); } break; } - setState(545); + setState(551); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,42,_ctx) ) { case 1: { - setState(540); + setState(546); match(AS); - setState(541); + setState(547); ((ChangePointCommandContext)_localctx).targetType = qualifiedName(); - setState(542); + setState(548); match(COMMA); - setState(543); + setState(549); ((ChangePointCommandContext)_localctx).targetPvalue = qualifiedName(); } break; @@ -4218,9 +4244,9 @@ public final ForkCommandContext forkCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(547); + setState(553); match(FORK); - setState(548); + setState(554); forkSubQueries(); } } @@ -4270,7 +4296,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException int _alt; enterOuterAlt(_localctx, 1); { - setState(551); + setState(557); _errHandler.sync(this); _alt = 1; do { @@ -4278,7 +4304,7 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException case 1: { { - setState(550); + setState(556); forkSubQuery(); } } @@ -4286,9 +4312,9 @@ public final ForkSubQueriesContext forkSubQueries() throws RecognitionException default: throw new NoViableAltException(this); } - setState(553); + setState(559); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,42,_ctx); + _alt = getInterpreter().adaptivePredict(_input,43,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } } @@ -4336,11 +4362,11 @@ public final ForkSubQueryContext forkSubQuery() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(555); + setState(561); match(LP); - setState(556); + setState(562); forkSubQueryCommand(0); - setState(557); + setState(563); match(RP); } } @@ -4436,13 +4462,13 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio _ctx = _localctx; _prevctx = _localctx; - setState(560); + setState(566); forkSubQueryProcessingCommand(); } _ctx.stop = _input.LT(-1); - setState(567); + setState(573); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -4451,18 +4477,18 @@ private ForkSubQueryCommandContext forkSubQueryCommand(int _p) throws Recognitio { _localctx = new CompositeForkSubQueryContext(new ForkSubQueryCommandContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_forkSubQueryCommand); - setState(562); + setState(568); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(563); + setState(569); match(PIPE); - setState(564); + setState(570); forkSubQueryProcessingCommand(); } } } - setState(569); + setState(575); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,43,_ctx); + _alt = getInterpreter().adaptivePredict(_input,44,_ctx); } } } @@ -4508,7 +4534,7 @@ public final ForkSubQueryProcessingCommandContext forkSubQueryProcessingCommand( try { enterOuterAlt(_localctx, 1); { - setState(570); + setState(576); processingCommand(); } } @@ -4568,27 +4594,27 @@ public final RerankCommandContext rerankCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(572); + setState(578); match(RERANK); - setState(576); + setState(582); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,44,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { case 1: { - setState(573); + setState(579); ((RerankCommandContext)_localctx).targetField = qualifiedName(); - setState(574); + setState(580); match(ASSIGN); } break; } - setState(578); + setState(584); ((RerankCommandContext)_localctx).queryText = constant(); - setState(579); + setState(585); match(ON); - setState(580); + setState(586); rerankFields(); - setState(581); + setState(587); commandNamedParameters(); } } @@ -4644,23 +4670,23 @@ public final CompletionCommandContext completionCommand() throws RecognitionExce try { enterOuterAlt(_localctx, 1); { - setState(583); + setState(589); match(COMPLETION); - setState(587); + setState(593); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,45,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: { - setState(584); + setState(590); ((CompletionCommandContext)_localctx).targetField = qualifiedName(); - setState(585); + setState(591); match(ASSIGN); } break; } - setState(589); + setState(595); ((CompletionCommandContext)_localctx).prompt = primaryExpression(0); - setState(590); + setState(596); commandNamedParameters(); } } @@ -4713,26 +4739,26 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx InlineStatsCommandContext _localctx = new InlineStatsCommandContext(_ctx, getState()); enterRule(_localctx, 126, RULE_inlineStatsCommand); try { - setState(605); + setState(611); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: enterOuterAlt(_localctx, 1); { - setState(592); + setState(598); match(INLINE); - setState(593); + setState(599); match(INLINE_STATS); - setState(594); + setState(600); ((InlineStatsCommandContext)_localctx).stats = aggFields(); - setState(597); + setState(603); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { case 1: { - setState(595); + setState(601); match(BY); - setState(596); + setState(602); ((InlineStatsCommandContext)_localctx).grouping = fields(); } break; @@ -4742,18 +4768,18 @@ public final InlineStatsCommandContext inlineStatsCommand() throws RecognitionEx case INLINESTATS: enterOuterAlt(_localctx, 2); { - setState(599); + setState(605); match(INLINESTATS); - setState(600); + setState(606); ((InlineStatsCommandContext)_localctx).stats = aggFields(); - setState(603); + setState(609); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,47,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,48,_ctx) ) { case 1: { - setState(601); + setState(607); match(BY); - setState(602); + setState(608); ((InlineStatsCommandContext)_localctx).grouping = fields(); } break; @@ -4815,33 +4841,33 @@ public final FuseCommandContext fuseCommand() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(607); + setState(613); match(FUSE); - setState(609); + setState(615); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,49,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,50,_ctx) ) { case 1: { - setState(608); + setState(614); ((FuseCommandContext)_localctx).fuseType = identifier(); } break; } - setState(614); + setState(620); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(611); + setState(617); fuseConfiguration(); } } } - setState(616); + setState(622); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,50,_ctx); + _alt = getInterpreter().adaptivePredict(_input,51,_ctx); } } } @@ -4900,48 +4926,48 @@ public final FuseConfigurationContext fuseConfiguration() throws RecognitionExce FuseConfigurationContext _localctx = new FuseConfigurationContext(_ctx, getState()); enterRule(_localctx, 130, RULE_fuseConfiguration); try { - setState(628); + setState(634); _errHandler.sync(this); switch (_input.LA(1)) { case SCORE: enterOuterAlt(_localctx, 1); { - setState(617); + setState(623); match(SCORE); - setState(618); + setState(624); match(BY); - setState(619); + setState(625); ((FuseConfigurationContext)_localctx).score = qualifiedName(); } break; case KEY: enterOuterAlt(_localctx, 2); { - setState(620); + setState(626); match(KEY); - setState(621); + setState(627); match(BY); - setState(622); + setState(628); ((FuseConfigurationContext)_localctx).key = fields(); } break; case GROUP: enterOuterAlt(_localctx, 3); { - setState(623); + setState(629); match(GROUP); - setState(624); + setState(630); match(BY); - setState(625); + setState(631); ((FuseConfigurationContext)_localctx).group = qualifiedName(); } break; case WITH: enterOuterAlt(_localctx, 4); { - setState(626); + setState(632); match(WITH); - setState(627); + setState(633); ((FuseConfigurationContext)_localctx).options = mapExpression(); } break; @@ -4998,13 +5024,13 @@ public final LookupCommandContext lookupCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(630); + setState(636); match(DEV_LOOKUP); - setState(631); + setState(637); ((LookupCommandContext)_localctx).tableName = indexPattern(); - setState(632); + setState(638); match(ON); - setState(633); + setState(639); ((LookupCommandContext)_localctx).matchFields = qualifiedNamePatterns(); } } @@ -5051,9 +5077,9 @@ public final InsistCommandContext insistCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(635); + setState(641); match(DEV_INSIST); - setState(636); + setState(642); qualifiedNamePatterns(); } } @@ -5101,11 +5127,11 @@ public final SetCommandContext setCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(638); + setState(644); match(SET); - setState(639); + setState(645); setField(); - setState(640); + setState(646); match(SEMICOLON); } } @@ -5155,11 +5181,11 @@ public final SetFieldContext setField() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(642); + setState(648); identifier(); - setState(643); + setState(649); match(ASSIGN); - setState(644); + setState(650); constant(); } } @@ -5375,18 +5401,18 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(675); + setState(681); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,55,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { case 1: { _localctx = new LogicalNotContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(647); + setState(653); match(NOT); - setState(648); + setState(654); booleanExpression(8); } break; @@ -5395,7 +5421,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new BooleanDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(649); + setState(655); valueExpression(); } break; @@ -5404,7 +5430,7 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new RegexExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(650); + setState(656); regexBooleanExpression(); } break; @@ -5413,41 +5439,41 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalInContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(651); + setState(657); valueExpression(); - setState(653); + setState(659); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(652); + setState(658); match(NOT); } } - setState(655); + setState(661); match(IN); - setState(656); + setState(662); match(LP); - setState(657); + setState(663); valueExpression(); - setState(662); + setState(668); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(658); + setState(664); match(COMMA); - setState(659); + setState(665); valueExpression(); } } - setState(664); + setState(670); _errHandler.sync(this); _la = _input.LA(1); } - setState(665); + setState(671); match(RP); } break; @@ -5456,21 +5482,21 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new IsNullContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(667); + setState(673); valueExpression(); - setState(668); + setState(674); match(IS); - setState(670); + setState(676); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(669); + setState(675); match(NOT); } } - setState(672); + setState(678); match(NULL); } break; @@ -5479,33 +5505,33 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new MatchExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(674); + setState(680); matchBooleanExpression(); } break; } _ctx.stop = _input.LT(-1); - setState(685); + setState(691); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,57,_ctx); + _alt = getInterpreter().adaptivePredict(_input,58,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(683); + setState(689); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,56,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,57,_ctx) ) { case 1: { _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(677); + setState(683); if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(678); + setState(684); ((LogicalBinaryContext)_localctx).operator = match(AND); - setState(679); + setState(685); ((LogicalBinaryContext)_localctx).right = booleanExpression(6); } break; @@ -5514,20 +5540,20 @@ private BooleanExpressionContext booleanExpression(int _p) throws RecognitionExc _localctx = new LogicalBinaryContext(new BooleanExpressionContext(_parentctx, _parentState)); ((LogicalBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_booleanExpression); - setState(680); + setState(686); if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(681); + setState(687); ((LogicalBinaryContext)_localctx).operator = match(OR); - setState(682); + setState(688); ((LogicalBinaryContext)_localctx).right = booleanExpression(5); } break; } } } - setState(687); + setState(693); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,57,_ctx); + _alt = getInterpreter().adaptivePredict(_input,58,_ctx); } } } @@ -5684,28 +5710,28 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog enterRule(_localctx, 142, RULE_regexBooleanExpression); int _la; try { - setState(734); + setState(740); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: _localctx = new LikeExpressionContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(688); + setState(694); valueExpression(); - setState(690); + setState(696); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(689); + setState(695); match(NOT); } } - setState(692); + setState(698); match(LIKE); - setState(693); + setState(699); string(); } break; @@ -5713,21 +5739,21 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeExpressionContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(695); + setState(701); valueExpression(); - setState(697); + setState(703); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(696); + setState(702); match(NOT); } } - setState(699); + setState(705); match(RLIKE); - setState(700); + setState(706); string(); } break; @@ -5735,41 +5761,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new LikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(702); + setState(708); valueExpression(); - setState(704); + setState(710); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(703); + setState(709); match(NOT); } } - setState(706); + setState(712); match(LIKE); - setState(707); + setState(713); match(LP); - setState(708); + setState(714); string(); - setState(713); + setState(719); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(709); + setState(715); match(COMMA); - setState(710); + setState(716); string(); } } - setState(715); + setState(721); _errHandler.sync(this); _la = _input.LA(1); } - setState(716); + setState(722); match(RP); } break; @@ -5777,41 +5803,41 @@ public final RegexBooleanExpressionContext regexBooleanExpression() throws Recog _localctx = new RlikeListExpressionContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(718); + setState(724); valueExpression(); - setState(720); + setState(726); _errHandler.sync(this); _la = _input.LA(1); if (_la==NOT) { { - setState(719); + setState(725); match(NOT); } } - setState(722); + setState(728); match(RLIKE); - setState(723); + setState(729); match(LP); - setState(724); + setState(730); string(); - setState(729); + setState(735); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(725); + setState(731); match(COMMA); - setState(726); + setState(732); string(); } } - setState(731); + setState(737); _errHandler.sync(this); _la = _input.LA(1); } - setState(732); + setState(738); match(RP); } break; @@ -5871,23 +5897,23 @@ public final MatchBooleanExpressionContext matchBooleanExpression() throws Recog try { enterOuterAlt(_localctx, 1); { - setState(736); + setState(742); ((MatchBooleanExpressionContext)_localctx).fieldExp = qualifiedName(); - setState(739); + setState(745); _errHandler.sync(this); _la = _input.LA(1); if (_la==CAST_OP) { { - setState(737); + setState(743); match(CAST_OP); - setState(738); + setState(744); ((MatchBooleanExpressionContext)_localctx).fieldType = dataType(); } } - setState(741); + setState(747); match(COLON); - setState(742); + setState(748); ((MatchBooleanExpressionContext)_localctx).matchQuery = constant(); } } @@ -5971,14 +5997,14 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio ValueExpressionContext _localctx = new ValueExpressionContext(_ctx, getState()); enterRule(_localctx, 146, RULE_valueExpression); try { - setState(749); + setState(755); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: _localctx = new ValueExpressionDefaultContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(744); + setState(750); operatorExpression(0); } break; @@ -5986,11 +6012,11 @@ public final ValueExpressionContext valueExpression() throws RecognitionExceptio _localctx = new ComparisonContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(745); + setState(751); ((ComparisonContext)_localctx).left = operatorExpression(0); - setState(746); + setState(752); comparisonOperator(); - setState(747); + setState(753); ((ComparisonContext)_localctx).right = operatorExpression(0); } break; @@ -6115,16 +6141,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE int _alt; enterOuterAlt(_localctx, 1); { - setState(755); + setState(761); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { _localctx = new OperatorExpressionDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(752); + setState(758); primaryExpression(0); } break; @@ -6133,7 +6159,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _localctx = new ArithmeticUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(753); + setState(759); ((ArithmeticUnaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -6144,31 +6170,31 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(754); + setState(760); operatorExpression(3); } break; } _ctx.stop = _input.LT(-1); - setState(765); + setState(771); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,70,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(763); + setState(769); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,69,_ctx) ) { case 1: { _localctx = new ArithmeticBinaryContext(new OperatorExpressionContext(_parentctx, _parentState)); ((ArithmeticBinaryContext)_localctx).left = _prevctx; pushNewRecursionContext(_localctx, _startState, RULE_operatorExpression); - setState(757); + setState(763); if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(758); + setState(764); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(((((_la - 88)) & ~0x3f) == 0 && ((1L << (_la - 88)) & 7L) != 0)) ) { @@ -6179,7 +6205,7 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(759); + setState(765); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(3); } break; @@ -6188,9 +6214,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(760); + setState(766); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(761); + setState(767); ((ArithmeticBinaryContext)_localctx).operator = _input.LT(1); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { @@ -6201,16 +6227,16 @@ private OperatorExpressionContext operatorExpression(int _p) throws RecognitionE _errHandler.reportMatch(this); consume(); } - setState(762); + setState(768); ((ArithmeticBinaryContext)_localctx).right = operatorExpression(2); } break; } } } - setState(767); + setState(773); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,70,_ctx); } } } @@ -6366,16 +6392,16 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc int _alt; enterOuterAlt(_localctx, 1); { - setState(776); + setState(782); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,71,_ctx) ) { case 1: { _localctx = new ConstantDefaultContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(769); + setState(775); constant(); } break; @@ -6384,7 +6410,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new DereferenceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(770); + setState(776); qualifiedName(); } break; @@ -6393,7 +6419,7 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new FunctionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(771); + setState(777); functionExpression(); } break; @@ -6402,19 +6428,19 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc _localctx = new ParenthesizedExpressionContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(772); + setState(778); match(LP); - setState(773); + setState(779); booleanExpression(0); - setState(774); + setState(780); match(RP); } break; } _ctx.stop = _input.LT(-1); - setState(783); + setState(789); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,71,_ctx); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); @@ -6423,18 +6449,18 @@ private PrimaryExpressionContext primaryExpression(int _p) throws RecognitionExc { _localctx = new InlineCastContext(new PrimaryExpressionContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_primaryExpression); - setState(778); + setState(784); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(779); + setState(785); match(CAST_OP); - setState(780); + setState(786); dataType(); } } } - setState(785); + setState(791); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,71,_ctx); + _alt = getInterpreter().adaptivePredict(_input,72,_ctx); } } } @@ -6498,50 +6524,50 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx int _alt; enterOuterAlt(_localctx, 1); { - setState(786); + setState(792); functionName(); - setState(787); + setState(793); match(LP); - setState(801); + setState(807); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,74,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,75,_ctx) ) { case 1: { - setState(788); + setState(794); match(ASTERISK); } break; case 2: { { - setState(789); + setState(795); booleanExpression(0); - setState(794); + setState(800); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + _alt = getInterpreter().adaptivePredict(_input,73,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(790); + setState(796); match(COMMA); - setState(791); + setState(797); booleanExpression(0); } } } - setState(796); + setState(802); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,72,_ctx); + _alt = getInterpreter().adaptivePredict(_input,73,_ctx); } - setState(799); + setState(805); _errHandler.sync(this); _la = _input.LA(1); if (_la==COMMA) { { - setState(797); + setState(803); match(COMMA); - setState(798); + setState(804); mapExpression(); } } @@ -6550,7 +6576,7 @@ public final FunctionExpressionContext functionExpression() throws RecognitionEx } break; } - setState(803); + setState(809); match(RP); } } @@ -6596,7 +6622,7 @@ public final FunctionNameContext functionName() throws RecognitionException { FunctionNameContext _localctx = new FunctionNameContext(_ctx, getState()); enterRule(_localctx, 154, RULE_functionName); try { - setState(808); + setState(814); _errHandler.sync(this); switch (_input.LA(1)) { case PARAM: @@ -6607,21 +6633,21 @@ public final FunctionNameContext functionName() throws RecognitionException { case QUOTED_IDENTIFIER: enterOuterAlt(_localctx, 1); { - setState(805); + setState(811); identifierOrParameter(); } break; case FIRST: enterOuterAlt(_localctx, 2); { - setState(806); + setState(812); match(FIRST); } break; case LAST: enterOuterAlt(_localctx, 3); { - setState(807); + setState(813); match(LAST); } break; @@ -6681,35 +6707,35 @@ public final MapExpressionContext mapExpression() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(810); + setState(816); match(LEFT_BRACES); - setState(819); + setState(825); _errHandler.sync(this); _la = _input.LA(1); if (_la==QUOTED_STRING) { { - setState(811); + setState(817); entryExpression(); - setState(816); + setState(822); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(812); + setState(818); match(COMMA); - setState(813); + setState(819); entryExpression(); } } - setState(818); + setState(824); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(821); + setState(827); match(RIGHT_BRACES); } } @@ -6761,11 +6787,11 @@ public final EntryExpressionContext entryExpression() throws RecognitionExceptio try { enterOuterAlt(_localctx, 1); { - setState(823); + setState(829); ((EntryExpressionContext)_localctx).key = string(); - setState(824); + setState(830); match(COLON); - setState(825); + setState(831); ((EntryExpressionContext)_localctx).value = mapValue(); } } @@ -6812,7 +6838,7 @@ public final MapValueContext mapValue() throws RecognitionException { MapValueContext _localctx = new MapValueContext(_ctx, getState()); enterRule(_localctx, 160, RULE_mapValue); try { - setState(829); + setState(835); _errHandler.sync(this); switch (_input.LA(1)) { case QUOTED_STRING: @@ -6828,14 +6854,14 @@ public final MapValueContext mapValue() throws RecognitionException { case OPENING_BRACKET: enterOuterAlt(_localctx, 1); { - setState(827); + setState(833); constant(); } break; case LEFT_BRACES: enterOuterAlt(_localctx, 2); { - setState(828); + setState(834); mapExpression(); } break; @@ -7110,14 +7136,14 @@ public final ConstantContext constant() throws RecognitionException { enterRule(_localctx, 162, RULE_constant); int _la; try { - setState(873); + setState(879); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { case 1: _localctx = new NullLiteralContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(831); + setState(837); match(NULL); } break; @@ -7125,9 +7151,9 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new QualifiedIntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(832); + setState(838); integerValue(); - setState(833); + setState(839); match(UNQUOTED_IDENTIFIER); } break; @@ -7135,7 +7161,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new DecimalLiteralContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(835); + setState(841); decimalValue(); } break; @@ -7143,7 +7169,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new IntegerLiteralContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(836); + setState(842); integerValue(); } break; @@ -7151,7 +7177,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanLiteralContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(837); + setState(843); booleanValue(); } break; @@ -7159,7 +7185,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new InputParameterContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(838); + setState(844); parameter(); } break; @@ -7167,7 +7193,7 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringLiteralContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(839); + setState(845); string(); } break; @@ -7175,27 +7201,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new NumericArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(840); + setState(846); match(OPENING_BRACKET); - setState(841); + setState(847); numericValue(); - setState(846); + setState(852); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(842); + setState(848); match(COMMA); - setState(843); + setState(849); numericValue(); } } - setState(848); + setState(854); _errHandler.sync(this); _la = _input.LA(1); } - setState(849); + setState(855); match(CLOSING_BRACKET); } break; @@ -7203,27 +7229,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new BooleanArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(851); + setState(857); match(OPENING_BRACKET); - setState(852); + setState(858); booleanValue(); - setState(857); + setState(863); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(853); + setState(859); match(COMMA); - setState(854); + setState(860); booleanValue(); } } - setState(859); + setState(865); _errHandler.sync(this); _la = _input.LA(1); } - setState(860); + setState(866); match(CLOSING_BRACKET); } break; @@ -7231,27 +7257,27 @@ public final ConstantContext constant() throws RecognitionException { _localctx = new StringArrayLiteralContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(862); + setState(868); match(OPENING_BRACKET); - setState(863); + setState(869); string(); - setState(868); + setState(874); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(864); + setState(870); match(COMMA); - setState(865); + setState(871); string(); } } - setState(870); + setState(876); _errHandler.sync(this); _la = _input.LA(1); } - setState(871); + setState(877); match(CLOSING_BRACKET); } break; @@ -7299,7 +7325,7 @@ public final BooleanValueContext booleanValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(875); + setState(881); _la = _input.LA(1); if ( !(_la==FALSE || _la==TRUE) ) { _errHandler.recoverInline(this); @@ -7354,20 +7380,20 @@ public final NumericValueContext numericValue() throws RecognitionException { NumericValueContext _localctx = new NumericValueContext(_ctx, getState()); enterRule(_localctx, 166, RULE_numericValue); try { - setState(879); + setState(885); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,83,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(877); + setState(883); decimalValue(); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(878); + setState(884); integerValue(); } break; @@ -7416,12 +7442,12 @@ public final DecimalValueContext decimalValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(882); + setState(888); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(881); + setState(887); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -7434,7 +7460,7 @@ public final DecimalValueContext decimalValue() throws RecognitionException { } } - setState(884); + setState(890); match(DECIMAL_LITERAL); } } @@ -7481,12 +7507,12 @@ public final IntegerValueContext integerValue() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(887); + setState(893); _errHandler.sync(this); _la = _input.LA(1); if (_la==PLUS || _la==MINUS) { { - setState(886); + setState(892); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -7499,7 +7525,7 @@ public final IntegerValueContext integerValue() throws RecognitionException { } } - setState(889); + setState(895); match(INTEGER_LITERAL); } } @@ -7543,7 +7569,7 @@ public final StringContext string() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(891); + setState(897); match(QUOTED_STRING); } } @@ -7593,7 +7619,7 @@ public final ComparisonOperatorContext comparisonOperator() throws RecognitionEx try { enterOuterAlt(_localctx, 1); { - setState(893); + setState(899); _la = _input.LA(1); if ( !(((((_la - 79)) & ~0x3f) == 0 && ((1L << (_la - 79)) & 125L) != 0)) ) { _errHandler.recoverInline(this); @@ -7656,7 +7682,7 @@ public final JoinCommandContext joinCommand() throws RecognitionException { try { enterOuterAlt(_localctx, 1); { - setState(895); + setState(901); ((JoinCommandContext)_localctx).type = _input.LT(1); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & 218103808L) != 0)) ) { @@ -7667,11 +7693,11 @@ public final JoinCommandContext joinCommand() throws RecognitionException { _errHandler.reportMatch(this); consume(); } - setState(896); + setState(902); match(JOIN); - setState(897); + setState(903); joinTarget(); - setState(898); + setState(904); joinCondition(); } } @@ -7720,34 +7746,34 @@ public final JoinTargetContext joinTarget() throws RecognitionException { enterRule(_localctx, 178, RULE_joinTarget); int _la; try { - setState(908); + setState(914); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,87,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,88,_ctx) ) { case 1: enterOuterAlt(_localctx, 1); { - setState(900); + setState(906); if (!(this.isDevVersion())) throw new FailedPredicateException(this, "this.isDevVersion()"); - setState(901); + setState(907); ((JoinTargetContext)_localctx).index = indexPattern(); - setState(903); + setState(909); _errHandler.sync(this); _la = _input.LA(1); if (_la==AS) { { - setState(902); + setState(908); match(AS); } } - setState(905); + setState(911); ((JoinTargetContext)_localctx).qualifier = match(UNQUOTED_SOURCE); } break; case 2: enterOuterAlt(_localctx, 2); { - setState(907); + setState(913); ((JoinTargetContext)_localctx).index = indexPattern(); } break; @@ -7804,27 +7830,27 @@ public final JoinConditionContext joinCondition() throws RecognitionException { int _alt; enterOuterAlt(_localctx, 1); { - setState(910); + setState(916); match(ON); - setState(911); + setState(917); booleanExpression(0); - setState(916); + setState(922); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,88,_ctx); + _alt = getInterpreter().adaptivePredict(_input,89,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { { { - setState(912); + setState(918); match(COMMA); - setState(913); + setState(919); booleanExpression(0); } } } - setState(918); + setState(924); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,88,_ctx); + _alt = getInterpreter().adaptivePredict(_input,89,_ctx); } } } @@ -7951,7 +7977,7 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { } public static final String _serializedATN = - "\u0004\u0001\u0097\u0398\u0002\u0000\u0007\u0000\u0002\u0001\u0007\u0001"+ + "\u0004\u0001\u0097\u039e\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"+ @@ -8017,510 +8043,514 @@ private boolean joinTarget_sempred(JoinTargetContext _localctx, int predIndex) { ")\u0001)\u0001)\u0001)\u0001)\u0001)\u0003)\u01d1\b)\u0001*\u0001*\u0001"+ "*\u0001*\u0003*\u01d7\b*\u0001+\u0001+\u0001+\u0005+\u01dc\b+\n+\f+\u01df"+ "\t+\u0001,\u0001,\u0001,\u0001,\u0001-\u0001-\u0003-\u01e7\b-\u0001.\u0001"+ - ".\u0001.\u0001.\u0001/\u0001/\u0001/\u00010\u00010\u00010\u00011\u0001"+ - "1\u00011\u00011\u00012\u00012\u00012\u00013\u00013\u00013\u00013\u0003"+ - "3\u01fe\b3\u00013\u00013\u00013\u00013\u00053\u0204\b3\n3\f3\u0207\t3"+ - "\u00033\u0209\b3\u00014\u00014\u00015\u00015\u00015\u00035\u0210\b5\u0001"+ - "5\u00015\u00016\u00016\u00016\u00017\u00017\u00017\u00017\u00037\u021b"+ - "\b7\u00017\u00017\u00017\u00017\u00017\u00037\u0222\b7\u00018\u00018\u0001"+ - "8\u00019\u00049\u0228\b9\u000b9\f9\u0229\u0001:\u0001:\u0001:\u0001:\u0001"+ - ";\u0001;\u0001;\u0001;\u0001;\u0001;\u0005;\u0236\b;\n;\f;\u0239\t;\u0001"+ - "<\u0001<\u0001=\u0001=\u0001=\u0001=\u0003=\u0241\b=\u0001=\u0001=\u0001"+ - "=\u0001=\u0001=\u0001>\u0001>\u0001>\u0001>\u0003>\u024c\b>\u0001>\u0001"+ - ">\u0001>\u0001?\u0001?\u0001?\u0001?\u0001?\u0003?\u0256\b?\u0001?\u0001"+ - "?\u0001?\u0001?\u0003?\u025c\b?\u0003?\u025e\b?\u0001@\u0001@\u0003@\u0262"+ - "\b@\u0001@\u0005@\u0265\b@\n@\f@\u0268\t@\u0001A\u0001A\u0001A\u0001A"+ - "\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0003A\u0275\bA\u0001"+ - "B\u0001B\u0001B\u0001B\u0001B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001"+ - "D\u0001D\u0001E\u0001E\u0001E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001"+ - "F\u0001F\u0001F\u0003F\u028e\bF\u0001F\u0001F\u0001F\u0001F\u0001F\u0005"+ - "F\u0295\bF\nF\fF\u0298\tF\u0001F\u0001F\u0001F\u0001F\u0001F\u0003F\u029f"+ - "\bF\u0001F\u0001F\u0001F\u0003F\u02a4\bF\u0001F\u0001F\u0001F\u0001F\u0001"+ - "F\u0001F\u0005F\u02ac\bF\nF\fF\u02af\tF\u0001G\u0001G\u0003G\u02b3\bG"+ - "\u0001G\u0001G\u0001G\u0001G\u0001G\u0003G\u02ba\bG\u0001G\u0001G\u0001"+ - "G\u0001G\u0001G\u0003G\u02c1\bG\u0001G\u0001G\u0001G\u0001G\u0001G\u0005"+ - "G\u02c8\bG\nG\fG\u02cb\tG\u0001G\u0001G\u0001G\u0001G\u0003G\u02d1\bG"+ - "\u0001G\u0001G\u0001G\u0001G\u0001G\u0005G\u02d8\bG\nG\fG\u02db\tG\u0001"+ - "G\u0001G\u0003G\u02df\bG\u0001H\u0001H\u0001H\u0003H\u02e4\bH\u0001H\u0001"+ - "H\u0001H\u0001I\u0001I\u0001I\u0001I\u0001I\u0003I\u02ee\bI\u0001J\u0001"+ - "J\u0001J\u0001J\u0003J\u02f4\bJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0001"+ - "J\u0005J\u02fc\bJ\nJ\fJ\u02ff\tJ\u0001K\u0001K\u0001K\u0001K\u0001K\u0001"+ - "K\u0001K\u0001K\u0003K\u0309\bK\u0001K\u0001K\u0001K\u0005K\u030e\bK\n"+ - "K\fK\u0311\tK\u0001L\u0001L\u0001L\u0001L\u0001L\u0001L\u0005L\u0319\b"+ - "L\nL\fL\u031c\tL\u0001L\u0001L\u0003L\u0320\bL\u0003L\u0322\bL\u0001L"+ - "\u0001L\u0001M\u0001M\u0001M\u0003M\u0329\bM\u0001N\u0001N\u0001N\u0001"+ - "N\u0005N\u032f\bN\nN\fN\u0332\tN\u0003N\u0334\bN\u0001N\u0001N\u0001O"+ - "\u0001O\u0001O\u0001O\u0001P\u0001P\u0003P\u033e\bP\u0001Q\u0001Q\u0001"+ - "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+ - "Q\u0005Q\u034d\bQ\nQ\fQ\u0350\tQ\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+ - "Q\u0005Q\u0358\bQ\nQ\fQ\u035b\tQ\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+ - "Q\u0005Q\u0363\bQ\nQ\fQ\u0366\tQ\u0001Q\u0001Q\u0003Q\u036a\bQ\u0001R"+ - "\u0001R\u0001S\u0001S\u0003S\u0370\bS\u0001T\u0003T\u0373\bT\u0001T\u0001"+ - "T\u0001U\u0003U\u0378\bU\u0001U\u0001U\u0001V\u0001V\u0001W\u0001W\u0001"+ - "X\u0001X\u0001X\u0001X\u0001X\u0001Y\u0001Y\u0001Y\u0003Y\u0388\bY\u0001"+ - "Y\u0001Y\u0001Y\u0003Y\u038d\bY\u0001Z\u0001Z\u0001Z\u0001Z\u0005Z\u0393"+ - "\bZ\nZ\fZ\u0396\tZ\u0001Z\u0000\u0005\u0004v\u008c\u0094\u0096[\u0000"+ - "\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c"+ - "\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084"+ - "\u0086\u0088\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c"+ - "\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4"+ - "\u0000\n\u0002\u000033jj\u0001\u0000de\u0002\u000077>>\u0002\u0000AAD"+ - "D\u0002\u0000((33\u0001\u0000VW\u0001\u0000XZ\u0002\u0000@@MM\u0002\u0000"+ - "OOQU\u0002\u0000\u0018\u0018\u001a\u001b\u03c3\u0000\u00c2\u0001\u0000"+ - "\u0000\u0000\u0002\u00c4\u0001\u0000\u0000\u0000\u0004\u00c7\u0001\u0000"+ - "\u0000\u0000\u0006\u00d8\u0001\u0000\u0000\u0000\b\u00f2\u0001\u0000\u0000"+ - "\u0000\n\u00f4\u0001\u0000\u0000\u0000\f\u00f7\u0001\u0000\u0000\u0000"+ - "\u000e\u00f9\u0001\u0000\u0000\u0000\u0010\u00fc\u0001\u0000\u0000\u0000"+ - "\u0012\u0107\u0001\u0000\u0000\u0000\u0014\u010b\u0001\u0000\u0000\u0000"+ - "\u0016\u0113\u0001\u0000\u0000\u0000\u0018\u0118\u0001\u0000\u0000\u0000"+ - "\u001a\u011b\u0001\u0000\u0000\u0000\u001c\u011e\u0001\u0000\u0000\u0000"+ - "\u001e\u0132\u0001\u0000\u0000\u0000 \u0134\u0001\u0000\u0000\u0000\""+ - "\u0136\u0001\u0000\u0000\u0000$\u0138\u0001\u0000\u0000\u0000&\u013a\u0001"+ - "\u0000\u0000\u0000(\u013c\u0001\u0000\u0000\u0000*\u0145\u0001\u0000\u0000"+ - "\u0000,\u0148\u0001\u0000\u0000\u0000.\u0150\u0001\u0000\u0000\u00000"+ - "\u0158\u0001\u0000\u0000\u00002\u0169\u0001\u0000\u0000\u00004\u016b\u0001"+ - "\u0000\u0000\u00006\u017f\u0001\u0000\u0000\u00008\u0181\u0001\u0000\u0000"+ - "\u0000:\u0189\u0001\u0000\u0000\u0000<\u0191\u0001\u0000\u0000\u0000>"+ - "\u0196\u0001\u0000\u0000\u0000@\u019a\u0001\u0000\u0000\u0000B\u019e\u0001"+ - "\u0000\u0000\u0000D\u01a3\u0001\u0000\u0000\u0000F\u01a5\u0001\u0000\u0000"+ - "\u0000H\u01a8\u0001\u0000\u0000\u0000J\u01b1\u0001\u0000\u0000\u0000L"+ - "\u01b9\u0001\u0000\u0000\u0000N\u01bc\u0001\u0000\u0000\u0000P\u01bf\u0001"+ - "\u0000\u0000\u0000R\u01d0\u0001\u0000\u0000\u0000T\u01d2\u0001\u0000\u0000"+ - "\u0000V\u01d8\u0001\u0000\u0000\u0000X\u01e0\u0001\u0000\u0000\u0000Z"+ - "\u01e6\u0001\u0000\u0000\u0000\\\u01e8\u0001\u0000\u0000\u0000^\u01ec"+ - "\u0001\u0000\u0000\u0000`\u01ef\u0001\u0000\u0000\u0000b\u01f2\u0001\u0000"+ - "\u0000\u0000d\u01f6\u0001\u0000\u0000\u0000f\u01f9\u0001\u0000\u0000\u0000"+ - "h\u020a\u0001\u0000\u0000\u0000j\u020f\u0001\u0000\u0000\u0000l\u0213"+ - "\u0001\u0000\u0000\u0000n\u0216\u0001\u0000\u0000\u0000p\u0223\u0001\u0000"+ - "\u0000\u0000r\u0227\u0001\u0000\u0000\u0000t\u022b\u0001\u0000\u0000\u0000"+ - "v\u022f\u0001\u0000\u0000\u0000x\u023a\u0001\u0000\u0000\u0000z\u023c"+ - "\u0001\u0000\u0000\u0000|\u0247\u0001\u0000\u0000\u0000~\u025d\u0001\u0000"+ - "\u0000\u0000\u0080\u025f\u0001\u0000\u0000\u0000\u0082\u0274\u0001\u0000"+ - "\u0000\u0000\u0084\u0276\u0001\u0000\u0000\u0000\u0086\u027b\u0001\u0000"+ - "\u0000\u0000\u0088\u027e\u0001\u0000\u0000\u0000\u008a\u0282\u0001\u0000"+ - "\u0000\u0000\u008c\u02a3\u0001\u0000\u0000\u0000\u008e\u02de\u0001\u0000"+ - "\u0000\u0000\u0090\u02e0\u0001\u0000\u0000\u0000\u0092\u02ed\u0001\u0000"+ - "\u0000\u0000\u0094\u02f3\u0001\u0000\u0000\u0000\u0096\u0308\u0001\u0000"+ - "\u0000\u0000\u0098\u0312\u0001\u0000\u0000\u0000\u009a\u0328\u0001\u0000"+ - "\u0000\u0000\u009c\u032a\u0001\u0000\u0000\u0000\u009e\u0337\u0001\u0000"+ - "\u0000\u0000\u00a0\u033d\u0001\u0000\u0000\u0000\u00a2\u0369\u0001\u0000"+ - "\u0000\u0000\u00a4\u036b\u0001\u0000\u0000\u0000\u00a6\u036f\u0001\u0000"+ - "\u0000\u0000\u00a8\u0372\u0001\u0000\u0000\u0000\u00aa\u0377\u0001\u0000"+ - "\u0000\u0000\u00ac\u037b\u0001\u0000\u0000\u0000\u00ae\u037d\u0001\u0000"+ - "\u0000\u0000\u00b0\u037f\u0001\u0000\u0000\u0000\u00b2\u038c\u0001\u0000"+ - "\u0000\u0000\u00b4\u038e\u0001\u0000\u0000\u0000\u00b6\u00b8\u0004\u0000"+ - "\u0000\u0000\u00b7\u00b9\u0003\u0088D\u0000\u00b8\u00b7\u0001\u0000\u0000"+ - "\u0000\u00b9\u00ba\u0001\u0000\u0000\u0000\u00ba\u00b8\u0001\u0000\u0000"+ - "\u0000\u00ba\u00bb\u0001\u0000\u0000\u0000\u00bb\u00bc\u0001\u0000\u0000"+ - "\u0000\u00bc\u00bd\u0003\u0002\u0001\u0000\u00bd\u00be\u0005\u0000\u0000"+ - "\u0001\u00be\u00c3\u0001\u0000\u0000\u0000\u00bf\u00c0\u0003\u0002\u0001"+ - "\u0000\u00c0\u00c1\u0005\u0000\u0000\u0001\u00c1\u00c3\u0001\u0000\u0000"+ - "\u0000\u00c2\u00b6\u0001\u0000\u0000\u0000\u00c2\u00bf\u0001\u0000\u0000"+ - "\u0000\u00c3\u0001\u0001\u0000\u0000\u0000\u00c4\u00c5\u0003\u0004\u0002"+ - "\u0000\u00c5\u00c6\u0005\u0000\u0000\u0001\u00c6\u0003\u0001\u0000\u0000"+ - "\u0000\u00c7\u00c8\u0006\u0002\uffff\uffff\u0000\u00c8\u00c9\u0003\u0006"+ - "\u0003\u0000\u00c9\u00cf\u0001\u0000\u0000\u0000\u00ca\u00cb\n\u0001\u0000"+ - "\u0000\u00cb\u00cc\u00052\u0000\u0000\u00cc\u00ce\u0003\b\u0004\u0000"+ - "\u00cd\u00ca\u0001\u0000\u0000\u0000\u00ce\u00d1\u0001\u0000\u0000\u0000"+ - "\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf\u00d0\u0001\u0000\u0000\u0000"+ - "\u00d0\u0005\u0001\u0000\u0000\u0000\u00d1\u00cf\u0001\u0000\u0000\u0000"+ - "\u00d2\u00d9\u0003\u0018\f\u0000\u00d3\u00d9\u0003\u000e\u0007\u0000\u00d4"+ - "\u00d9\u0003d2\u0000\u00d5\u00d9\u0003\u001a\r\u0000\u00d6\u00d7\u0004"+ - "\u0003\u0002\u0000\u00d7\u00d9\u0003`0\u0000\u00d8\u00d2\u0001\u0000\u0000"+ - "\u0000\u00d8\u00d3\u0001\u0000\u0000\u0000\u00d8\u00d4\u0001\u0000\u0000"+ - "\u0000\u00d8\u00d5\u0001\u0000\u0000\u0000\u00d8\u00d6\u0001\u0000\u0000"+ - "\u0000\u00d9\u0007\u0001\u0000\u0000\u0000\u00da\u00f3\u0003*\u0015\u0000"+ - "\u00db\u00f3\u0003\n\u0005\u0000\u00dc\u00f3\u0003L&\u0000\u00dd\u00f3"+ - "\u0003F#\u0000\u00de\u00f3\u0003,\u0016\u0000\u00df\u00f3\u0003H$\u0000"+ - "\u00e0\u00f3\u0003N\'\u0000\u00e1\u00f3\u0003P(\u0000\u00e2\u00f3\u0003"+ - "T*\u0000\u00e3\u00f3\u0003\\.\u0000\u00e4\u00f3\u0003f3\u0000\u00e5\u00f3"+ - "\u0003^/\u0000\u00e6\u00f3\u0003\u00b0X\u0000\u00e7\u00f3\u0003n7\u0000"+ - "\u00e8\u00f3\u0003|>\u0000\u00e9\u00f3\u0003l6\u0000\u00ea\u00f3\u0003"+ - "p8\u0000\u00eb\u00f3\u0003z=\u0000\u00ec\u00f3\u0003~?\u0000\u00ed\u00f3"+ - "\u0003\u0080@\u0000\u00ee\u00ef\u0004\u0004\u0003\u0000\u00ef\u00f3\u0003"+ - "\u0084B\u0000\u00f0\u00f1\u0004\u0004\u0004\u0000\u00f1\u00f3\u0003\u0086"+ - "C\u0000\u00f2\u00da\u0001\u0000\u0000\u0000\u00f2\u00db\u0001\u0000\u0000"+ - "\u0000\u00f2\u00dc\u0001\u0000\u0000\u0000\u00f2\u00dd\u0001\u0000\u0000"+ - "\u0000\u00f2\u00de\u0001\u0000\u0000\u0000\u00f2\u00df\u0001\u0000\u0000"+ - "\u0000\u00f2\u00e0\u0001\u0000\u0000\u0000\u00f2\u00e1\u0001\u0000\u0000"+ - "\u0000\u00f2\u00e2\u0001\u0000\u0000\u0000\u00f2\u00e3\u0001\u0000\u0000"+ - "\u0000\u00f2\u00e4\u0001\u0000\u0000\u0000\u00f2\u00e5\u0001\u0000\u0000"+ - "\u0000\u00f2\u00e6\u0001\u0000\u0000\u0000\u00f2\u00e7\u0001\u0000\u0000"+ - "\u0000\u00f2\u00e8\u0001\u0000\u0000\u0000\u00f2\u00e9\u0001\u0000\u0000"+ - "\u0000\u00f2\u00ea\u0001\u0000\u0000\u0000\u00f2\u00eb\u0001\u0000\u0000"+ - "\u0000\u00f2\u00ec\u0001\u0000\u0000\u0000\u00f2\u00ed\u0001\u0000\u0000"+ - "\u0000\u00f2\u00ee\u0001\u0000\u0000\u0000\u00f2\u00f0\u0001\u0000\u0000"+ - "\u0000\u00f3\t\u0001\u0000\u0000\u0000\u00f4\u00f5\u0005\u0011\u0000\u0000"+ - "\u00f5\u00f6\u0003\u008cF\u0000\u00f6\u000b\u0001\u0000\u0000\u0000\u00f7"+ - "\u00f8\u0003<\u001e\u0000\u00f8\r\u0001\u0000\u0000\u0000\u00f9\u00fa"+ - "\u0005\r\u0000\u0000\u00fa\u00fb\u0003\u0010\b\u0000\u00fb\u000f\u0001"+ - "\u0000\u0000\u0000\u00fc\u0101\u0003\u0012\t\u0000\u00fd\u00fe\u0005="+ - "\u0000\u0000\u00fe\u0100\u0003\u0012\t\u0000\u00ff\u00fd\u0001\u0000\u0000"+ - "\u0000\u0100\u0103\u0001\u0000\u0000\u0000\u0101\u00ff\u0001\u0000\u0000"+ - "\u0000\u0101\u0102\u0001\u0000\u0000\u0000\u0102\u0011\u0001\u0000\u0000"+ - "\u0000\u0103\u0101\u0001\u0000\u0000\u0000\u0104\u0105\u00032\u0019\u0000"+ - "\u0105\u0106\u00058\u0000\u0000\u0106\u0108\u0001\u0000\u0000\u0000\u0107"+ - "\u0104\u0001\u0000\u0000\u0000\u0107\u0108\u0001\u0000\u0000\u0000\u0108"+ - "\u0109\u0001\u0000\u0000\u0000\u0109\u010a\u0003\u008cF\u0000\u010a\u0013"+ - "\u0001\u0000\u0000\u0000\u010b\u0110\u0003\u0016\u000b\u0000\u010c\u010d"+ - "\u0005=\u0000\u0000\u010d\u010f\u0003\u0016\u000b\u0000\u010e\u010c\u0001"+ - "\u0000\u0000\u0000\u010f\u0112\u0001\u0000\u0000\u0000\u0110\u010e\u0001"+ - "\u0000\u0000\u0000\u0110\u0111\u0001\u0000\u0000\u0000\u0111\u0015\u0001"+ - "\u0000\u0000\u0000\u0112\u0110\u0001\u0000\u0000\u0000\u0113\u0116\u0003"+ - "2\u0019\u0000\u0114\u0115\u00058\u0000\u0000\u0115\u0117\u0003\u008cF"+ - "\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116\u0117\u0001\u0000\u0000"+ - "\u0000\u0117\u0017\u0001\u0000\u0000\u0000\u0118\u0119\u0005\u0012\u0000"+ - "\u0000\u0119\u011a\u0003\u001c\u000e\u0000\u011a\u0019\u0001\u0000\u0000"+ - "\u0000\u011b\u011c\u0005\u0013\u0000\u0000\u011c\u011d\u0003\u001c\u000e"+ - "\u0000\u011d\u001b\u0001\u0000\u0000\u0000\u011e\u0123\u0003\u001e\u000f"+ - "\u0000\u011f\u0120\u0005=\u0000\u0000\u0120\u0122\u0003\u001e\u000f\u0000"+ - "\u0121\u011f\u0001\u0000\u0000\u0000\u0122\u0125\u0001\u0000\u0000\u0000"+ - "\u0123\u0121\u0001\u0000\u0000\u0000\u0123\u0124\u0001\u0000\u0000\u0000"+ - "\u0124\u0127\u0001\u0000\u0000\u0000\u0125\u0123\u0001\u0000\u0000\u0000"+ - "\u0126\u0128\u0003(\u0014\u0000\u0127\u0126\u0001\u0000\u0000\u0000\u0127"+ - "\u0128\u0001\u0000\u0000\u0000\u0128\u001d\u0001\u0000\u0000\u0000\u0129"+ - "\u012a\u0003 \u0010\u0000\u012a\u012b\u0005;\u0000\u0000\u012b\u012c\u0003"+ - "$\u0012\u0000\u012c\u0133\u0001\u0000\u0000\u0000\u012d\u012e\u0003$\u0012"+ - "\u0000\u012e\u012f\u0005:\u0000\u0000\u012f\u0130\u0003\"\u0011\u0000"+ - "\u0130\u0133\u0001\u0000\u0000\u0000\u0131\u0133\u0003&\u0013\u0000\u0132"+ - "\u0129\u0001\u0000\u0000\u0000\u0132\u012d\u0001\u0000\u0000\u0000\u0132"+ - "\u0131\u0001\u0000\u0000\u0000\u0133\u001f\u0001\u0000\u0000\u0000\u0134"+ - "\u0135\u0005j\u0000\u0000\u0135!\u0001\u0000\u0000\u0000\u0136\u0137\u0005"+ - "j\u0000\u0000\u0137#\u0001\u0000\u0000\u0000\u0138\u0139\u0005j\u0000"+ - "\u0000\u0139%\u0001\u0000\u0000\u0000\u013a\u013b\u0007\u0000\u0000\u0000"+ - "\u013b\'\u0001\u0000\u0000\u0000\u013c\u013d\u0005i\u0000\u0000\u013d"+ - "\u0142\u0005j\u0000\u0000\u013e\u013f\u0005=\u0000\u0000\u013f\u0141\u0005"+ - "j\u0000\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u0144\u0001\u0000"+ - "\u0000\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0143\u0001\u0000"+ - "\u0000\u0000\u0143)\u0001\u0000\u0000\u0000\u0144\u0142\u0001\u0000\u0000"+ - "\u0000\u0145\u0146\u0005\t\u0000\u0000\u0146\u0147\u0003\u0010\b\u0000"+ - "\u0147+\u0001\u0000\u0000\u0000\u0148\u014a\u0005\u0010\u0000\u0000\u0149"+ - "\u014b\u0003.\u0017\u0000\u014a\u0149\u0001\u0000\u0000\u0000\u014a\u014b"+ - "\u0001\u0000\u0000\u0000\u014b\u014e\u0001\u0000\u0000\u0000\u014c\u014d"+ - "\u00059\u0000\u0000\u014d\u014f\u0003\u0010\b\u0000\u014e\u014c\u0001"+ - "\u0000\u0000\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f-\u0001\u0000"+ - "\u0000\u0000\u0150\u0155\u00030\u0018\u0000\u0151\u0152\u0005=\u0000\u0000"+ - "\u0152\u0154\u00030\u0018\u0000\u0153\u0151\u0001\u0000\u0000\u0000\u0154"+ - "\u0157\u0001\u0000\u0000\u0000\u0155\u0153\u0001\u0000\u0000\u0000\u0155"+ - "\u0156\u0001\u0000\u0000\u0000\u0156/\u0001\u0000\u0000\u0000\u0157\u0155"+ - "\u0001\u0000\u0000\u0000\u0158\u015b\u0003\u0012\t\u0000\u0159\u015a\u0005"+ - "\u0011\u0000\u0000\u015a\u015c\u0003\u008cF\u0000\u015b\u0159\u0001\u0000"+ - "\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c1\u0001\u0000\u0000"+ - "\u0000\u015d\u015e\u0004\u0019\u0005\u0000\u015e\u0160\u0005`\u0000\u0000"+ - "\u015f\u0161\u0005d\u0000\u0000\u0160\u015f\u0001\u0000\u0000\u0000\u0160"+ - "\u0161\u0001\u0000\u0000\u0000\u0161\u0162\u0001\u0000\u0000\u0000\u0162"+ - "\u0163\u0005a\u0000\u0000\u0163\u0164\u0005?\u0000\u0000\u0164\u0165\u0005"+ - "`\u0000\u0000\u0165\u0166\u00034\u001a\u0000\u0166\u0167\u0005a\u0000"+ - "\u0000\u0167\u016a\u0001\u0000\u0000\u0000\u0168\u016a\u00034\u001a\u0000"+ - "\u0169\u015d\u0001\u0000\u0000\u0000\u0169\u0168\u0001\u0000\u0000\u0000"+ - "\u016a3\u0001\u0000\u0000\u0000\u016b\u0170\u0003D\"\u0000\u016c\u016d"+ - "\u0005?\u0000\u0000\u016d\u016f\u0003D\"\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\u01715\u0001\u0000\u0000"+ - "\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0174\u0004\u001b\u0006"+ - "\u0000\u0174\u0176\u0005`\u0000\u0000\u0175\u0177\u0005\u0089\u0000\u0000"+ - "\u0176\u0175\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000\u0000"+ - "\u0177\u0178\u0001\u0000\u0000\u0000\u0178\u0179\u0005a\u0000\u0000\u0179"+ - "\u017a\u0005?\u0000\u0000\u017a\u017b\u0005`\u0000\u0000\u017b\u017c\u0003"+ - "8\u001c\u0000\u017c\u017d\u0005a\u0000\u0000\u017d\u0180\u0001\u0000\u0000"+ - "\u0000\u017e\u0180\u00038\u001c\u0000\u017f\u0173\u0001\u0000\u0000\u0000"+ - "\u017f\u017e\u0001\u0000\u0000\u0000\u01807\u0001\u0000\u0000\u0000\u0181"+ - "\u0186\u0003>\u001f\u0000\u0182\u0183\u0005?\u0000\u0000\u0183\u0185\u0003"+ - ">\u001f\u0000\u0184\u0182\u0001\u0000\u0000\u0000\u0185\u0188\u0001\u0000"+ - "\u0000\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187\u0001\u0000"+ - "\u0000\u0000\u01879\u0001\u0000\u0000\u0000\u0188\u0186\u0001\u0000\u0000"+ - "\u0000\u0189\u018e\u00036\u001b\u0000\u018a\u018b\u0005=\u0000\u0000\u018b"+ - "\u018d\u00036\u001b\u0000\u018c\u018a\u0001\u0000\u0000\u0000\u018d\u0190"+ - "\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018e\u018f"+ - "\u0001\u0000\u0000\u0000\u018f;\u0001\u0000\u0000\u0000\u0190\u018e\u0001"+ - "\u0000\u0000\u0000\u0191\u0192\u0007\u0001\u0000\u0000\u0192=\u0001\u0000"+ - "\u0000\u0000\u0193\u0197\u0005\u0089\u0000\u0000\u0194\u0197\u0003@ \u0000"+ - "\u0195\u0197\u0003B!\u0000\u0196\u0193\u0001\u0000\u0000\u0000\u0196\u0194"+ - "\u0001\u0000\u0000\u0000\u0196\u0195\u0001\u0000\u0000\u0000\u0197?\u0001"+ - "\u0000\u0000\u0000\u0198\u019b\u0005K\u0000\u0000\u0199\u019b\u0005^\u0000"+ - "\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019a\u0199\u0001\u0000\u0000"+ - "\u0000\u019bA\u0001\u0000\u0000\u0000\u019c\u019f\u0005]\u0000\u0000\u019d"+ - "\u019f\u0005_\u0000\u0000\u019e\u019c\u0001\u0000\u0000\u0000\u019e\u019d"+ - "\u0001\u0000\u0000\u0000\u019fC\u0001\u0000\u0000\u0000\u01a0\u01a4\u0003"+ - "<\u001e\u0000\u01a1\u01a4\u0003@ \u0000\u01a2\u01a4\u0003B!\u0000\u01a3"+ - "\u01a0\u0001\u0000\u0000\u0000\u01a3\u01a1\u0001\u0000\u0000\u0000\u01a3"+ - "\u01a2\u0001\u0000\u0000\u0000\u01a4E\u0001\u0000\u0000\u0000\u01a5\u01a6"+ - "\u0005\u000b\u0000\u0000\u01a6\u01a7\u0003\u00a2Q\u0000\u01a7G\u0001\u0000"+ - "\u0000\u0000\u01a8\u01a9\u0005\u000f\u0000\u0000\u01a9\u01ae\u0003J%\u0000"+ - "\u01aa\u01ab\u0005=\u0000\u0000\u01ab\u01ad\u0003J%\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\u01afI\u0001"+ - "\u0000\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1\u01b3\u0003"+ - "\u008cF\u0000\u01b2\u01b4\u0007\u0002\u0000\u0000\u01b3\u01b2\u0001\u0000"+ - "\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b7\u0001\u0000"+ - "\u0000\u0000\u01b5\u01b6\u0005H\u0000\u0000\u01b6\u01b8\u0007\u0003\u0000"+ - "\u0000\u01b7\u01b5\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001\u0000\u0000"+ - "\u0000\u01b8K\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005\u001f\u0000\u0000"+ - "\u01ba\u01bb\u0003:\u001d\u0000\u01bbM\u0001\u0000\u0000\u0000\u01bc\u01bd"+ - "\u0005\u001e\u0000\u0000\u01bd\u01be\u0003:\u001d\u0000\u01beO\u0001\u0000"+ - "\u0000\u0000\u01bf\u01c0\u0005!\u0000\u0000\u01c0\u01c5\u0003R)\u0000"+ - "\u01c1\u01c2\u0005=\u0000\u0000\u01c2\u01c4\u0003R)\u0000\u01c3\u01c1"+ - "\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5\u01c3"+ - "\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6Q\u0001"+ - "\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000\u0000\u01c8\u01c9\u0003"+ - "6\u001b\u0000\u01c9\u01ca\u0005\u008d\u0000\u0000\u01ca\u01cb\u00036\u001b"+ - "\u0000\u01cb\u01d1\u0001\u0000\u0000\u0000\u01cc\u01cd\u00036\u001b\u0000"+ - "\u01cd\u01ce\u00058\u0000\u0000\u01ce\u01cf\u00036\u001b\u0000\u01cf\u01d1"+ - "\u0001\u0000\u0000\u0000\u01d0\u01c8\u0001\u0000\u0000\u0000\u01d0\u01cc"+ - "\u0001\u0000\u0000\u0000\u01d1S\u0001\u0000\u0000\u0000\u01d2\u01d3\u0005"+ - "\b\u0000\u0000\u01d3\u01d4\u0003\u0096K\u0000\u01d4\u01d6\u0003\u00ac"+ - "V\u0000\u01d5\u01d7\u0003V+\u0000\u01d6\u01d5\u0001\u0000\u0000\u0000"+ - "\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7U\u0001\u0000\u0000\u0000\u01d8"+ - "\u01dd\u0003X,\u0000\u01d9\u01da\u0005=\u0000\u0000\u01da\u01dc\u0003"+ - "X,\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\u01deW\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000\u0000"+ - "\u01e0\u01e1\u0003<\u001e\u0000\u01e1\u01e2\u00058\u0000\u0000\u01e2\u01e3"+ - "\u0003\u00a2Q\u0000\u01e3Y\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005N"+ - "\u0000\u0000\u01e5\u01e7\u0003\u009cN\u0000\u01e6\u01e4\u0001\u0000\u0000"+ + ".\u0001.\u0001.\u0001.\u0005.\u01ee\b.\n.\f.\u01f1\t.\u0001/\u0001/\u0001"+ + "/\u00010\u00010\u00010\u00011\u00011\u00011\u00011\u00012\u00012\u0001"+ + "2\u00013\u00013\u00013\u00013\u00033\u0204\b3\u00013\u00013\u00013\u0001"+ + "3\u00053\u020a\b3\n3\f3\u020d\t3\u00033\u020f\b3\u00014\u00014\u00015"+ + "\u00015\u00015\u00035\u0216\b5\u00015\u00015\u00016\u00016\u00016\u0001"+ + "7\u00017\u00017\u00017\u00037\u0221\b7\u00017\u00017\u00017\u00017\u0001"+ + "7\u00037\u0228\b7\u00018\u00018\u00018\u00019\u00049\u022e\b9\u000b9\f"+ + "9\u022f\u0001:\u0001:\u0001:\u0001:\u0001;\u0001;\u0001;\u0001;\u0001"+ + ";\u0001;\u0005;\u023c\b;\n;\f;\u023f\t;\u0001<\u0001<\u0001=\u0001=\u0001"+ + "=\u0001=\u0003=\u0247\b=\u0001=\u0001=\u0001=\u0001=\u0001=\u0001>\u0001"+ + ">\u0001>\u0001>\u0003>\u0252\b>\u0001>\u0001>\u0001>\u0001?\u0001?\u0001"+ + "?\u0001?\u0001?\u0003?\u025c\b?\u0001?\u0001?\u0001?\u0001?\u0003?\u0262"+ + "\b?\u0003?\u0264\b?\u0001@\u0001@\u0003@\u0268\b@\u0001@\u0005@\u026b"+ + "\b@\n@\f@\u026e\t@\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001A\u0001"+ + "A\u0001A\u0001A\u0001A\u0003A\u027b\bA\u0001B\u0001B\u0001B\u0001B\u0001"+ + "B\u0001C\u0001C\u0001C\u0001D\u0001D\u0001D\u0001D\u0001E\u0001E\u0001"+ + "E\u0001E\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0003F\u0294"+ + "\bF\u0001F\u0001F\u0001F\u0001F\u0001F\u0005F\u029b\bF\nF\fF\u029e\tF"+ + "\u0001F\u0001F\u0001F\u0001F\u0001F\u0003F\u02a5\bF\u0001F\u0001F\u0001"+ + "F\u0003F\u02aa\bF\u0001F\u0001F\u0001F\u0001F\u0001F\u0001F\u0005F\u02b2"+ + "\bF\nF\fF\u02b5\tF\u0001G\u0001G\u0003G\u02b9\bG\u0001G\u0001G\u0001G"+ + "\u0001G\u0001G\u0003G\u02c0\bG\u0001G\u0001G\u0001G\u0001G\u0001G\u0003"+ + "G\u02c7\bG\u0001G\u0001G\u0001G\u0001G\u0001G\u0005G\u02ce\bG\nG\fG\u02d1"+ + "\tG\u0001G\u0001G\u0001G\u0001G\u0003G\u02d7\bG\u0001G\u0001G\u0001G\u0001"+ + "G\u0001G\u0005G\u02de\bG\nG\fG\u02e1\tG\u0001G\u0001G\u0003G\u02e5\bG"+ + "\u0001H\u0001H\u0001H\u0003H\u02ea\bH\u0001H\u0001H\u0001H\u0001I\u0001"+ + "I\u0001I\u0001I\u0001I\u0003I\u02f4\bI\u0001J\u0001J\u0001J\u0001J\u0003"+ + "J\u02fa\bJ\u0001J\u0001J\u0001J\u0001J\u0001J\u0001J\u0005J\u0302\bJ\n"+ + "J\fJ\u0305\tJ\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K\u0001K"+ + "\u0003K\u030f\bK\u0001K\u0001K\u0001K\u0005K\u0314\bK\nK\fK\u0317\tK\u0001"+ + "L\u0001L\u0001L\u0001L\u0001L\u0001L\u0005L\u031f\bL\nL\fL\u0322\tL\u0001"+ + "L\u0001L\u0003L\u0326\bL\u0003L\u0328\bL\u0001L\u0001L\u0001M\u0001M\u0001"+ + "M\u0003M\u032f\bM\u0001N\u0001N\u0001N\u0001N\u0005N\u0335\bN\nN\fN\u0338"+ + "\tN\u0003N\u033a\bN\u0001N\u0001N\u0001O\u0001O\u0001O\u0001O\u0001P\u0001"+ + "P\u0003P\u0344\bP\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001"+ + "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u0353\bQ\nQ\fQ\u0356\tQ\u0001"+ + "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u035e\bQ\nQ\fQ\u0361\tQ\u0001"+ + "Q\u0001Q\u0001Q\u0001Q\u0001Q\u0001Q\u0005Q\u0369\bQ\nQ\fQ\u036c\tQ\u0001"+ + "Q\u0001Q\u0003Q\u0370\bQ\u0001R\u0001R\u0001S\u0001S\u0003S\u0376\bS\u0001"+ + "T\u0003T\u0379\bT\u0001T\u0001T\u0001U\u0003U\u037e\bU\u0001U\u0001U\u0001"+ + "V\u0001V\u0001W\u0001W\u0001X\u0001X\u0001X\u0001X\u0001X\u0001Y\u0001"+ + "Y\u0001Y\u0003Y\u038e\bY\u0001Y\u0001Y\u0001Y\u0003Y\u0393\bY\u0001Z\u0001"+ + "Z\u0001Z\u0001Z\u0005Z\u0399\bZ\nZ\fZ\u039c\tZ\u0001Z\u0000\u0005\u0004"+ + "v\u008c\u0094\u0096[\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\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa"+ + "\u00ac\u00ae\u00b0\u00b2\u00b4\u0000\n\u0002\u000033jj\u0001\u0000de\u0002"+ + "\u000077>>\u0002\u0000AADD\u0002\u0000((33\u0001\u0000VW\u0001\u0000X"+ + "Z\u0002\u0000@@MM\u0002\u0000OOQU\u0002\u0000\u0018\u0018\u001a\u001b"+ + "\u03ca\u0000\u00c2\u0001\u0000\u0000\u0000\u0002\u00c4\u0001\u0000\u0000"+ + "\u0000\u0004\u00c7\u0001\u0000\u0000\u0000\u0006\u00d8\u0001\u0000\u0000"+ + "\u0000\b\u00f2\u0001\u0000\u0000\u0000\n\u00f4\u0001\u0000\u0000\u0000"+ + "\f\u00f7\u0001\u0000\u0000\u0000\u000e\u00f9\u0001\u0000\u0000\u0000\u0010"+ + "\u00fc\u0001\u0000\u0000\u0000\u0012\u0107\u0001\u0000\u0000\u0000\u0014"+ + "\u010b\u0001\u0000\u0000\u0000\u0016\u0113\u0001\u0000\u0000\u0000\u0018"+ + "\u0118\u0001\u0000\u0000\u0000\u001a\u011b\u0001\u0000\u0000\u0000\u001c"+ + "\u011e\u0001\u0000\u0000\u0000\u001e\u0132\u0001\u0000\u0000\u0000 \u0134"+ + "\u0001\u0000\u0000\u0000\"\u0136\u0001\u0000\u0000\u0000$\u0138\u0001"+ + "\u0000\u0000\u0000&\u013a\u0001\u0000\u0000\u0000(\u013c\u0001\u0000\u0000"+ + "\u0000*\u0145\u0001\u0000\u0000\u0000,\u0148\u0001\u0000\u0000\u0000."+ + "\u0150\u0001\u0000\u0000\u00000\u0158\u0001\u0000\u0000\u00002\u0169\u0001"+ + "\u0000\u0000\u00004\u016b\u0001\u0000\u0000\u00006\u017f\u0001\u0000\u0000"+ + "\u00008\u0181\u0001\u0000\u0000\u0000:\u0189\u0001\u0000\u0000\u0000<"+ + "\u0191\u0001\u0000\u0000\u0000>\u0196\u0001\u0000\u0000\u0000@\u019a\u0001"+ + "\u0000\u0000\u0000B\u019e\u0001\u0000\u0000\u0000D\u01a3\u0001\u0000\u0000"+ + "\u0000F\u01a5\u0001\u0000\u0000\u0000H\u01a8\u0001\u0000\u0000\u0000J"+ + "\u01b1\u0001\u0000\u0000\u0000L\u01b9\u0001\u0000\u0000\u0000N\u01bc\u0001"+ + "\u0000\u0000\u0000P\u01bf\u0001\u0000\u0000\u0000R\u01d0\u0001\u0000\u0000"+ + "\u0000T\u01d2\u0001\u0000\u0000\u0000V\u01d8\u0001\u0000\u0000\u0000X"+ + "\u01e0\u0001\u0000\u0000\u0000Z\u01e6\u0001\u0000\u0000\u0000\\\u01e8"+ + "\u0001\u0000\u0000\u0000^\u01f2\u0001\u0000\u0000\u0000`\u01f5\u0001\u0000"+ + "\u0000\u0000b\u01f8\u0001\u0000\u0000\u0000d\u01fc\u0001\u0000\u0000\u0000"+ + "f\u01ff\u0001\u0000\u0000\u0000h\u0210\u0001\u0000\u0000\u0000j\u0215"+ + "\u0001\u0000\u0000\u0000l\u0219\u0001\u0000\u0000\u0000n\u021c\u0001\u0000"+ + "\u0000\u0000p\u0229\u0001\u0000\u0000\u0000r\u022d\u0001\u0000\u0000\u0000"+ + "t\u0231\u0001\u0000\u0000\u0000v\u0235\u0001\u0000\u0000\u0000x\u0240"+ + "\u0001\u0000\u0000\u0000z\u0242\u0001\u0000\u0000\u0000|\u024d\u0001\u0000"+ + "\u0000\u0000~\u0263\u0001\u0000\u0000\u0000\u0080\u0265\u0001\u0000\u0000"+ + "\u0000\u0082\u027a\u0001\u0000\u0000\u0000\u0084\u027c\u0001\u0000\u0000"+ + "\u0000\u0086\u0281\u0001\u0000\u0000\u0000\u0088\u0284\u0001\u0000\u0000"+ + "\u0000\u008a\u0288\u0001\u0000\u0000\u0000\u008c\u02a9\u0001\u0000\u0000"+ + "\u0000\u008e\u02e4\u0001\u0000\u0000\u0000\u0090\u02e6\u0001\u0000\u0000"+ + "\u0000\u0092\u02f3\u0001\u0000\u0000\u0000\u0094\u02f9\u0001\u0000\u0000"+ + "\u0000\u0096\u030e\u0001\u0000\u0000\u0000\u0098\u0318\u0001\u0000\u0000"+ + "\u0000\u009a\u032e\u0001\u0000\u0000\u0000\u009c\u0330\u0001\u0000\u0000"+ + "\u0000\u009e\u033d\u0001\u0000\u0000\u0000\u00a0\u0343\u0001\u0000\u0000"+ + "\u0000\u00a2\u036f\u0001\u0000\u0000\u0000\u00a4\u0371\u0001\u0000\u0000"+ + "\u0000\u00a6\u0375\u0001\u0000\u0000\u0000\u00a8\u0378\u0001\u0000\u0000"+ + "\u0000\u00aa\u037d\u0001\u0000\u0000\u0000\u00ac\u0381\u0001\u0000\u0000"+ + "\u0000\u00ae\u0383\u0001\u0000\u0000\u0000\u00b0\u0385\u0001\u0000\u0000"+ + "\u0000\u00b2\u0392\u0001\u0000\u0000\u0000\u00b4\u0394\u0001\u0000\u0000"+ + "\u0000\u00b6\u00b8\u0004\u0000\u0000\u0000\u00b7\u00b9\u0003\u0088D\u0000"+ + "\u00b8\u00b7\u0001\u0000\u0000\u0000\u00b9\u00ba\u0001\u0000\u0000\u0000"+ + "\u00ba\u00b8\u0001\u0000\u0000\u0000\u00ba\u00bb\u0001\u0000\u0000\u0000"+ + "\u00bb\u00bc\u0001\u0000\u0000\u0000\u00bc\u00bd\u0003\u0002\u0001\u0000"+ + "\u00bd\u00be\u0005\u0000\u0000\u0001\u00be\u00c3\u0001\u0000\u0000\u0000"+ + "\u00bf\u00c0\u0003\u0002\u0001\u0000\u00c0\u00c1\u0005\u0000\u0000\u0001"+ + "\u00c1\u00c3\u0001\u0000\u0000\u0000\u00c2\u00b6\u0001\u0000\u0000\u0000"+ + "\u00c2\u00bf\u0001\u0000\u0000\u0000\u00c3\u0001\u0001\u0000\u0000\u0000"+ + "\u00c4\u00c5\u0003\u0004\u0002\u0000\u00c5\u00c6\u0005\u0000\u0000\u0001"+ + "\u00c6\u0003\u0001\u0000\u0000\u0000\u00c7\u00c8\u0006\u0002\uffff\uffff"+ + "\u0000\u00c8\u00c9\u0003\u0006\u0003\u0000\u00c9\u00cf\u0001\u0000\u0000"+ + "\u0000\u00ca\u00cb\n\u0001\u0000\u0000\u00cb\u00cc\u00052\u0000\u0000"+ + "\u00cc\u00ce\u0003\b\u0004\u0000\u00cd\u00ca\u0001\u0000\u0000\u0000\u00ce"+ + "\u00d1\u0001\u0000\u0000\u0000\u00cf\u00cd\u0001\u0000\u0000\u0000\u00cf"+ + "\u00d0\u0001\u0000\u0000\u0000\u00d0\u0005\u0001\u0000\u0000\u0000\u00d1"+ + "\u00cf\u0001\u0000\u0000\u0000\u00d2\u00d9\u0003\u0018\f\u0000\u00d3\u00d9"+ + "\u0003\u000e\u0007\u0000\u00d4\u00d9\u0003d2\u0000\u00d5\u00d9\u0003\u001a"+ + "\r\u0000\u00d6\u00d7\u0004\u0003\u0002\u0000\u00d7\u00d9\u0003`0\u0000"+ + "\u00d8\u00d2\u0001\u0000\u0000\u0000\u00d8\u00d3\u0001\u0000\u0000\u0000"+ + "\u00d8\u00d4\u0001\u0000\u0000\u0000\u00d8\u00d5\u0001\u0000\u0000\u0000"+ + "\u00d8\u00d6\u0001\u0000\u0000\u0000\u00d9\u0007\u0001\u0000\u0000\u0000"+ + "\u00da\u00f3\u0003*\u0015\u0000\u00db\u00f3\u0003\n\u0005\u0000\u00dc"+ + "\u00f3\u0003L&\u0000\u00dd\u00f3\u0003F#\u0000\u00de\u00f3\u0003,\u0016"+ + "\u0000\u00df\u00f3\u0003H$\u0000\u00e0\u00f3\u0003N\'\u0000\u00e1\u00f3"+ + "\u0003P(\u0000\u00e2\u00f3\u0003T*\u0000\u00e3\u00f3\u0003\\.\u0000\u00e4"+ + "\u00f3\u0003f3\u0000\u00e5\u00f3\u0003^/\u0000\u00e6\u00f3\u0003\u00b0"+ + "X\u0000\u00e7\u00f3\u0003n7\u0000\u00e8\u00f3\u0003|>\u0000\u00e9\u00f3"+ + "\u0003l6\u0000\u00ea\u00f3\u0003p8\u0000\u00eb\u00f3\u0003z=\u0000\u00ec"+ + "\u00f3\u0003~?\u0000\u00ed\u00f3\u0003\u0080@\u0000\u00ee\u00ef\u0004"+ + "\u0004\u0003\u0000\u00ef\u00f3\u0003\u0084B\u0000\u00f0\u00f1\u0004\u0004"+ + "\u0004\u0000\u00f1\u00f3\u0003\u0086C\u0000\u00f2\u00da\u0001\u0000\u0000"+ + "\u0000\u00f2\u00db\u0001\u0000\u0000\u0000\u00f2\u00dc\u0001\u0000\u0000"+ + "\u0000\u00f2\u00dd\u0001\u0000\u0000\u0000\u00f2\u00de\u0001\u0000\u0000"+ + "\u0000\u00f2\u00df\u0001\u0000\u0000\u0000\u00f2\u00e0\u0001\u0000\u0000"+ + "\u0000\u00f2\u00e1\u0001\u0000\u0000\u0000\u00f2\u00e2\u0001\u0000\u0000"+ + "\u0000\u00f2\u00e3\u0001\u0000\u0000\u0000\u00f2\u00e4\u0001\u0000\u0000"+ + "\u0000\u00f2\u00e5\u0001\u0000\u0000\u0000\u00f2\u00e6\u0001\u0000\u0000"+ + "\u0000\u00f2\u00e7\u0001\u0000\u0000\u0000\u00f2\u00e8\u0001\u0000\u0000"+ + "\u0000\u00f2\u00e9\u0001\u0000\u0000\u0000\u00f2\u00ea\u0001\u0000\u0000"+ + "\u0000\u00f2\u00eb\u0001\u0000\u0000\u0000\u00f2\u00ec\u0001\u0000\u0000"+ + "\u0000\u00f2\u00ed\u0001\u0000\u0000\u0000\u00f2\u00ee\u0001\u0000\u0000"+ + "\u0000\u00f2\u00f0\u0001\u0000\u0000\u0000\u00f3\t\u0001\u0000\u0000\u0000"+ + "\u00f4\u00f5\u0005\u0011\u0000\u0000\u00f5\u00f6\u0003\u008cF\u0000\u00f6"+ + "\u000b\u0001\u0000\u0000\u0000\u00f7\u00f8\u0003<\u001e\u0000\u00f8\r"+ + "\u0001\u0000\u0000\u0000\u00f9\u00fa\u0005\r\u0000\u0000\u00fa\u00fb\u0003"+ + "\u0010\b\u0000\u00fb\u000f\u0001\u0000\u0000\u0000\u00fc\u0101\u0003\u0012"+ + "\t\u0000\u00fd\u00fe\u0005=\u0000\u0000\u00fe\u0100\u0003\u0012\t\u0000"+ + "\u00ff\u00fd\u0001\u0000\u0000\u0000\u0100\u0103\u0001\u0000\u0000\u0000"+ + "\u0101\u00ff\u0001\u0000\u0000\u0000\u0101\u0102\u0001\u0000\u0000\u0000"+ + "\u0102\u0011\u0001\u0000\u0000\u0000\u0103\u0101\u0001\u0000\u0000\u0000"+ + "\u0104\u0105\u00032\u0019\u0000\u0105\u0106\u00058\u0000\u0000\u0106\u0108"+ + "\u0001\u0000\u0000\u0000\u0107\u0104\u0001\u0000\u0000\u0000\u0107\u0108"+ + "\u0001\u0000\u0000\u0000\u0108\u0109\u0001\u0000\u0000\u0000\u0109\u010a"+ + "\u0003\u008cF\u0000\u010a\u0013\u0001\u0000\u0000\u0000\u010b\u0110\u0003"+ + "\u0016\u000b\u0000\u010c\u010d\u0005=\u0000\u0000\u010d\u010f\u0003\u0016"+ + "\u000b\u0000\u010e\u010c\u0001\u0000\u0000\u0000\u010f\u0112\u0001\u0000"+ + "\u0000\u0000\u0110\u010e\u0001\u0000\u0000\u0000\u0110\u0111\u0001\u0000"+ + "\u0000\u0000\u0111\u0015\u0001\u0000\u0000\u0000\u0112\u0110\u0001\u0000"+ + "\u0000\u0000\u0113\u0116\u00032\u0019\u0000\u0114\u0115\u00058\u0000\u0000"+ + "\u0115\u0117\u0003\u008cF\u0000\u0116\u0114\u0001\u0000\u0000\u0000\u0116"+ + "\u0117\u0001\u0000\u0000\u0000\u0117\u0017\u0001\u0000\u0000\u0000\u0118"+ + "\u0119\u0005\u0012\u0000\u0000\u0119\u011a\u0003\u001c\u000e\u0000\u011a"+ + "\u0019\u0001\u0000\u0000\u0000\u011b\u011c\u0005\u0013\u0000\u0000\u011c"+ + "\u011d\u0003\u001c\u000e\u0000\u011d\u001b\u0001\u0000\u0000\u0000\u011e"+ + "\u0123\u0003\u001e\u000f\u0000\u011f\u0120\u0005=\u0000\u0000\u0120\u0122"+ + "\u0003\u001e\u000f\u0000\u0121\u011f\u0001\u0000\u0000\u0000\u0122\u0125"+ + "\u0001\u0000\u0000\u0000\u0123\u0121\u0001\u0000\u0000\u0000\u0123\u0124"+ + "\u0001\u0000\u0000\u0000\u0124\u0127\u0001\u0000\u0000\u0000\u0125\u0123"+ + "\u0001\u0000\u0000\u0000\u0126\u0128\u0003(\u0014\u0000\u0127\u0126\u0001"+ + "\u0000\u0000\u0000\u0127\u0128\u0001\u0000\u0000\u0000\u0128\u001d\u0001"+ + "\u0000\u0000\u0000\u0129\u012a\u0003 \u0010\u0000\u012a\u012b\u0005;\u0000"+ + "\u0000\u012b\u012c\u0003$\u0012\u0000\u012c\u0133\u0001\u0000\u0000\u0000"+ + "\u012d\u012e\u0003$\u0012\u0000\u012e\u012f\u0005:\u0000\u0000\u012f\u0130"+ + "\u0003\"\u0011\u0000\u0130\u0133\u0001\u0000\u0000\u0000\u0131\u0133\u0003"+ + "&\u0013\u0000\u0132\u0129\u0001\u0000\u0000\u0000\u0132\u012d\u0001\u0000"+ + "\u0000\u0000\u0132\u0131\u0001\u0000\u0000\u0000\u0133\u001f\u0001\u0000"+ + "\u0000\u0000\u0134\u0135\u0005j\u0000\u0000\u0135!\u0001\u0000\u0000\u0000"+ + "\u0136\u0137\u0005j\u0000\u0000\u0137#\u0001\u0000\u0000\u0000\u0138\u0139"+ + "\u0005j\u0000\u0000\u0139%\u0001\u0000\u0000\u0000\u013a\u013b\u0007\u0000"+ + "\u0000\u0000\u013b\'\u0001\u0000\u0000\u0000\u013c\u013d\u0005i\u0000"+ + "\u0000\u013d\u0142\u0005j\u0000\u0000\u013e\u013f\u0005=\u0000\u0000\u013f"+ + "\u0141\u0005j\u0000\u0000\u0140\u013e\u0001\u0000\u0000\u0000\u0141\u0144"+ + "\u0001\u0000\u0000\u0000\u0142\u0140\u0001\u0000\u0000\u0000\u0142\u0143"+ + "\u0001\u0000\u0000\u0000\u0143)\u0001\u0000\u0000\u0000\u0144\u0142\u0001"+ + "\u0000\u0000\u0000\u0145\u0146\u0005\t\u0000\u0000\u0146\u0147\u0003\u0010"+ + "\b\u0000\u0147+\u0001\u0000\u0000\u0000\u0148\u014a\u0005\u0010\u0000"+ + "\u0000\u0149\u014b\u0003.\u0017\u0000\u014a\u0149\u0001\u0000\u0000\u0000"+ + "\u014a\u014b\u0001\u0000\u0000\u0000\u014b\u014e\u0001\u0000\u0000\u0000"+ + "\u014c\u014d\u00059\u0000\u0000\u014d\u014f\u0003\u0010\b\u0000\u014e"+ + "\u014c\u0001\u0000\u0000\u0000\u014e\u014f\u0001\u0000\u0000\u0000\u014f"+ + "-\u0001\u0000\u0000\u0000\u0150\u0155\u00030\u0018\u0000\u0151\u0152\u0005"+ + "=\u0000\u0000\u0152\u0154\u00030\u0018\u0000\u0153\u0151\u0001\u0000\u0000"+ + "\u0000\u0154\u0157\u0001\u0000\u0000\u0000\u0155\u0153\u0001\u0000\u0000"+ + "\u0000\u0155\u0156\u0001\u0000\u0000\u0000\u0156/\u0001\u0000\u0000\u0000"+ + "\u0157\u0155\u0001\u0000\u0000\u0000\u0158\u015b\u0003\u0012\t\u0000\u0159"+ + "\u015a\u0005\u0011\u0000\u0000\u015a\u015c\u0003\u008cF\u0000\u015b\u0159"+ + "\u0001\u0000\u0000\u0000\u015b\u015c\u0001\u0000\u0000\u0000\u015c1\u0001"+ + "\u0000\u0000\u0000\u015d\u015e\u0004\u0019\u0005\u0000\u015e\u0160\u0005"+ + "`\u0000\u0000\u015f\u0161\u0005d\u0000\u0000\u0160\u015f\u0001\u0000\u0000"+ + "\u0000\u0160\u0161\u0001\u0000\u0000\u0000\u0161\u0162\u0001\u0000\u0000"+ + "\u0000\u0162\u0163\u0005a\u0000\u0000\u0163\u0164\u0005?\u0000\u0000\u0164"+ + "\u0165\u0005`\u0000\u0000\u0165\u0166\u00034\u001a\u0000\u0166\u0167\u0005"+ + "a\u0000\u0000\u0167\u016a\u0001\u0000\u0000\u0000\u0168\u016a\u00034\u001a"+ + "\u0000\u0169\u015d\u0001\u0000\u0000\u0000\u0169\u0168\u0001\u0000\u0000"+ + "\u0000\u016a3\u0001\u0000\u0000\u0000\u016b\u0170\u0003D\"\u0000\u016c"+ + "\u016d\u0005?\u0000\u0000\u016d\u016f\u0003D\"\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\u01715\u0001\u0000"+ + "\u0000\u0000\u0172\u0170\u0001\u0000\u0000\u0000\u0173\u0174\u0004\u001b"+ + "\u0006\u0000\u0174\u0176\u0005`\u0000\u0000\u0175\u0177\u0005\u0089\u0000"+ + "\u0000\u0176\u0175\u0001\u0000\u0000\u0000\u0176\u0177\u0001\u0000\u0000"+ + "\u0000\u0177\u0178\u0001\u0000\u0000\u0000\u0178\u0179\u0005a\u0000\u0000"+ + "\u0179\u017a\u0005?\u0000\u0000\u017a\u017b\u0005`\u0000\u0000\u017b\u017c"+ + "\u00038\u001c\u0000\u017c\u017d\u0005a\u0000\u0000\u017d\u0180\u0001\u0000"+ + "\u0000\u0000\u017e\u0180\u00038\u001c\u0000\u017f\u0173\u0001\u0000\u0000"+ + "\u0000\u017f\u017e\u0001\u0000\u0000\u0000\u01807\u0001\u0000\u0000\u0000"+ + "\u0181\u0186\u0003>\u001f\u0000\u0182\u0183\u0005?\u0000\u0000\u0183\u0185"+ + "\u0003>\u001f\u0000\u0184\u0182\u0001\u0000\u0000\u0000\u0185\u0188\u0001"+ + "\u0000\u0000\u0000\u0186\u0184\u0001\u0000\u0000\u0000\u0186\u0187\u0001"+ + "\u0000\u0000\u0000\u01879\u0001\u0000\u0000\u0000\u0188\u0186\u0001\u0000"+ + "\u0000\u0000\u0189\u018e\u00036\u001b\u0000\u018a\u018b\u0005=\u0000\u0000"+ + "\u018b\u018d\u00036\u001b\u0000\u018c\u018a\u0001\u0000\u0000\u0000\u018d"+ + "\u0190\u0001\u0000\u0000\u0000\u018e\u018c\u0001\u0000\u0000\u0000\u018e"+ + "\u018f\u0001\u0000\u0000\u0000\u018f;\u0001\u0000\u0000\u0000\u0190\u018e"+ + "\u0001\u0000\u0000\u0000\u0191\u0192\u0007\u0001\u0000\u0000\u0192=\u0001"+ + "\u0000\u0000\u0000\u0193\u0197\u0005\u0089\u0000\u0000\u0194\u0197\u0003"+ + "@ \u0000\u0195\u0197\u0003B!\u0000\u0196\u0193\u0001\u0000\u0000\u0000"+ + "\u0196\u0194\u0001\u0000\u0000\u0000\u0196\u0195\u0001\u0000\u0000\u0000"+ + "\u0197?\u0001\u0000\u0000\u0000\u0198\u019b\u0005K\u0000\u0000\u0199\u019b"+ + "\u0005^\u0000\u0000\u019a\u0198\u0001\u0000\u0000\u0000\u019a\u0199\u0001"+ + "\u0000\u0000\u0000\u019bA\u0001\u0000\u0000\u0000\u019c\u019f\u0005]\u0000"+ + "\u0000\u019d\u019f\u0005_\u0000\u0000\u019e\u019c\u0001\u0000\u0000\u0000"+ + "\u019e\u019d\u0001\u0000\u0000\u0000\u019fC\u0001\u0000\u0000\u0000\u01a0"+ + "\u01a4\u0003<\u001e\u0000\u01a1\u01a4\u0003@ \u0000\u01a2\u01a4\u0003"+ + "B!\u0000\u01a3\u01a0\u0001\u0000\u0000\u0000\u01a3\u01a1\u0001\u0000\u0000"+ + "\u0000\u01a3\u01a2\u0001\u0000\u0000\u0000\u01a4E\u0001\u0000\u0000\u0000"+ + "\u01a5\u01a6\u0005\u000b\u0000\u0000\u01a6\u01a7\u0003\u00a2Q\u0000\u01a7"+ + "G\u0001\u0000\u0000\u0000\u01a8\u01a9\u0005\u000f\u0000\u0000\u01a9\u01ae"+ + "\u0003J%\u0000\u01aa\u01ab\u0005=\u0000\u0000\u01ab\u01ad\u0003J%\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"+ + "\u01afI\u0001\u0000\u0000\u0000\u01b0\u01ae\u0001\u0000\u0000\u0000\u01b1"+ + "\u01b3\u0003\u008cF\u0000\u01b2\u01b4\u0007\u0002\u0000\u0000\u01b3\u01b2"+ + "\u0001\u0000\u0000\u0000\u01b3\u01b4\u0001\u0000\u0000\u0000\u01b4\u01b7"+ + "\u0001\u0000\u0000\u0000\u01b5\u01b6\u0005H\u0000\u0000\u01b6\u01b8\u0007"+ + "\u0003\u0000\u0000\u01b7\u01b5\u0001\u0000\u0000\u0000\u01b7\u01b8\u0001"+ + "\u0000\u0000\u0000\u01b8K\u0001\u0000\u0000\u0000\u01b9\u01ba\u0005\u001f"+ + "\u0000\u0000\u01ba\u01bb\u0003:\u001d\u0000\u01bbM\u0001\u0000\u0000\u0000"+ + "\u01bc\u01bd\u0005\u001e\u0000\u0000\u01bd\u01be\u0003:\u001d\u0000\u01be"+ + "O\u0001\u0000\u0000\u0000\u01bf\u01c0\u0005!\u0000\u0000\u01c0\u01c5\u0003"+ + "R)\u0000\u01c1\u01c2\u0005=\u0000\u0000\u01c2\u01c4\u0003R)\u0000\u01c3"+ + "\u01c1\u0001\u0000\u0000\u0000\u01c4\u01c7\u0001\u0000\u0000\u0000\u01c5"+ + "\u01c3\u0001\u0000\u0000\u0000\u01c5\u01c6\u0001\u0000\u0000\u0000\u01c6"+ + "Q\u0001\u0000\u0000\u0000\u01c7\u01c5\u0001\u0000\u0000\u0000\u01c8\u01c9"+ + "\u00036\u001b\u0000\u01c9\u01ca\u0005\u008d\u0000\u0000\u01ca\u01cb\u0003"+ + "6\u001b\u0000\u01cb\u01d1\u0001\u0000\u0000\u0000\u01cc\u01cd\u00036\u001b"+ + "\u0000\u01cd\u01ce\u00058\u0000\u0000\u01ce\u01cf\u00036\u001b\u0000\u01cf"+ + "\u01d1\u0001\u0000\u0000\u0000\u01d0\u01c8\u0001\u0000\u0000\u0000\u01d0"+ + "\u01cc\u0001\u0000\u0000\u0000\u01d1S\u0001\u0000\u0000\u0000\u01d2\u01d3"+ + "\u0005\b\u0000\u0000\u01d3\u01d4\u0003\u0096K\u0000\u01d4\u01d6\u0003"+ + "\u00acV\u0000\u01d5\u01d7\u0003V+\u0000\u01d6\u01d5\u0001\u0000\u0000"+ + "\u0000\u01d6\u01d7\u0001\u0000\u0000\u0000\u01d7U\u0001\u0000\u0000\u0000"+ + "\u01d8\u01dd\u0003X,\u0000\u01d9\u01da\u0005=\u0000\u0000\u01da\u01dc"+ + "\u0003X,\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\u01deW\u0001\u0000\u0000\u0000\u01df\u01dd\u0001\u0000\u0000"+ + "\u0000\u01e0\u01e1\u0003<\u001e\u0000\u01e1\u01e2\u00058\u0000\u0000\u01e2"+ + "\u01e3\u0003\u00a2Q\u0000\u01e3Y\u0001\u0000\u0000\u0000\u01e4\u01e5\u0005"+ + "N\u0000\u0000\u01e5\u01e7\u0003\u009cN\u0000\u01e6\u01e4\u0001\u0000\u0000"+ "\u0000\u01e6\u01e7\u0001\u0000\u0000\u0000\u01e7[\u0001\u0000\u0000\u0000"+ "\u01e8\u01e9\u0005\n\u0000\u0000\u01e9\u01ea\u0003\u0096K\u0000\u01ea"+ - "\u01eb\u0003\u00acV\u0000\u01eb]\u0001\u0000\u0000\u0000\u01ec\u01ed\u0005"+ - "\u001d\u0000\u0000\u01ed\u01ee\u00032\u0019\u0000\u01ee_\u0001\u0000\u0000"+ - "\u0000\u01ef\u01f0\u0005\u0006\u0000\u0000\u01f0\u01f1\u0003b1\u0000\u01f1"+ - "a\u0001\u0000\u0000\u0000\u01f2\u01f3\u0005b\u0000\u0000\u01f3\u01f4\u0003"+ - "\u0004\u0002\u0000\u01f4\u01f5\u0005c\u0000\u0000\u01f5c\u0001\u0000\u0000"+ - "\u0000\u01f6\u01f7\u0005#\u0000\u0000\u01f7\u01f8\u0005\u0094\u0000\u0000"+ - "\u01f8e\u0001\u0000\u0000\u0000\u01f9\u01fa\u0005\u0005\u0000\u0000\u01fa"+ - "\u01fd\u0003h4\u0000\u01fb\u01fc\u0005I\u0000\u0000\u01fc\u01fe\u0003"+ - "6\u001b\u0000\u01fd\u01fb\u0001\u0000\u0000\u0000\u01fd\u01fe\u0001\u0000"+ - "\u0000\u0000\u01fe\u0208\u0001\u0000\u0000\u0000\u01ff\u0200\u0005N\u0000"+ - "\u0000\u0200\u0205\u0003j5\u0000\u0201\u0202\u0005=\u0000\u0000\u0202"+ - "\u0204\u0003j5\u0000\u0203\u0201\u0001\u0000\u0000\u0000\u0204\u0207\u0001"+ - "\u0000\u0000\u0000\u0205\u0203\u0001\u0000\u0000\u0000\u0205\u0206\u0001"+ - "\u0000\u0000\u0000\u0206\u0209\u0001\u0000\u0000\u0000\u0207\u0205\u0001"+ - "\u0000\u0000\u0000\u0208\u01ff\u0001\u0000\u0000\u0000\u0208\u0209\u0001"+ - "\u0000\u0000\u0000\u0209g\u0001\u0000\u0000\u0000\u020a\u020b\u0007\u0004"+ - "\u0000\u0000\u020bi\u0001\u0000\u0000\u0000\u020c\u020d\u00036\u001b\u0000"+ - "\u020d\u020e\u00058\u0000\u0000\u020e\u0210\u0001\u0000\u0000\u0000\u020f"+ - "\u020c\u0001\u0000\u0000\u0000\u020f\u0210\u0001\u0000\u0000\u0000\u0210"+ - "\u0211\u0001\u0000\u0000\u0000\u0211\u0212\u00036\u001b\u0000\u0212k\u0001"+ - "\u0000\u0000\u0000\u0213\u0214\u0005\u000e\u0000\u0000\u0214\u0215\u0003"+ - "\u00a2Q\u0000\u0215m\u0001\u0000\u0000\u0000\u0216\u0217\u0005\u0004\u0000"+ - "\u0000\u0217\u021a\u00032\u0019\u0000\u0218\u0219\u0005I\u0000\u0000\u0219"+ - "\u021b\u00032\u0019\u0000\u021a\u0218\u0001\u0000\u0000\u0000\u021a\u021b"+ - "\u0001\u0000\u0000\u0000\u021b\u0221\u0001\u0000\u0000\u0000\u021c\u021d"+ - "\u0005\u008d\u0000\u0000\u021d\u021e\u00032\u0019\u0000\u021e\u021f\u0005"+ - "=\u0000\u0000\u021f\u0220\u00032\u0019\u0000\u0220\u0222\u0001\u0000\u0000"+ - "\u0000\u0221\u021c\u0001\u0000\u0000\u0000\u0221\u0222\u0001\u0000\u0000"+ - "\u0000\u0222o\u0001\u0000\u0000\u0000\u0223\u0224\u0005\u0014\u0000\u0000"+ - "\u0224\u0225\u0003r9\u0000\u0225q\u0001\u0000\u0000\u0000\u0226\u0228"+ - "\u0003t:\u0000\u0227\u0226\u0001\u0000\u0000\u0000\u0228\u0229\u0001\u0000"+ - "\u0000\u0000\u0229\u0227\u0001\u0000\u0000\u0000\u0229\u022a\u0001\u0000"+ - "\u0000\u0000\u022as\u0001\u0000\u0000\u0000\u022b\u022c\u0005b\u0000\u0000"+ - "\u022c\u022d\u0003v;\u0000\u022d\u022e\u0005c\u0000\u0000\u022eu\u0001"+ - "\u0000\u0000\u0000\u022f\u0230\u0006;\uffff\uffff\u0000\u0230\u0231\u0003"+ - "x<\u0000\u0231\u0237\u0001\u0000\u0000\u0000\u0232\u0233\n\u0001\u0000"+ - "\u0000\u0233\u0234\u00052\u0000\u0000\u0234\u0236\u0003x<\u0000\u0235"+ - "\u0232\u0001\u0000\u0000\u0000\u0236\u0239\u0001\u0000\u0000\u0000\u0237"+ - "\u0235\u0001\u0000\u0000\u0000\u0237\u0238\u0001\u0000\u0000\u0000\u0238"+ - "w\u0001\u0000\u0000\u0000\u0239\u0237\u0001\u0000\u0000\u0000\u023a\u023b"+ - "\u0003\b\u0004\u0000\u023by\u0001\u0000\u0000\u0000\u023c\u0240\u0005"+ - "\f\u0000\u0000\u023d\u023e\u00032\u0019\u0000\u023e\u023f\u00058\u0000"+ - "\u0000\u023f\u0241\u0001\u0000\u0000\u0000\u0240\u023d\u0001\u0000\u0000"+ - "\u0000\u0240\u0241\u0001\u0000\u0000\u0000\u0241\u0242\u0001\u0000\u0000"+ - "\u0000\u0242\u0243\u0003\u00a2Q\u0000\u0243\u0244\u0005I\u0000\u0000\u0244"+ - "\u0245\u0003\u0014\n\u0000\u0245\u0246\u0003Z-\u0000\u0246{\u0001\u0000"+ - "\u0000\u0000\u0247\u024b\u0005\u0007\u0000\u0000\u0248\u0249\u00032\u0019"+ - "\u0000\u0249\u024a\u00058\u0000\u0000\u024a\u024c\u0001\u0000\u0000\u0000"+ - "\u024b\u0248\u0001\u0000\u0000\u0000\u024b\u024c\u0001\u0000\u0000\u0000"+ - "\u024c\u024d\u0001\u0000\u0000\u0000\u024d\u024e\u0003\u0096K\u0000\u024e"+ - "\u024f\u0003Z-\u0000\u024f}\u0001\u0000\u0000\u0000\u0250\u0251\u0005"+ - "\u0016\u0000\u0000\u0251\u0252\u0005w\u0000\u0000\u0252\u0255\u0003.\u0017"+ - "\u0000\u0253\u0254\u00059\u0000\u0000\u0254\u0256\u0003\u0010\b\u0000"+ - "\u0255\u0253\u0001\u0000\u0000\u0000\u0255\u0256\u0001\u0000\u0000\u0000"+ - "\u0256\u025e\u0001\u0000\u0000\u0000\u0257\u0258\u0005\u0017\u0000\u0000"+ - "\u0258\u025b\u0003.\u0017\u0000\u0259\u025a\u00059\u0000\u0000\u025a\u025c"+ - "\u0003\u0010\b\u0000\u025b\u0259\u0001\u0000\u0000\u0000\u025b\u025c\u0001"+ - "\u0000\u0000\u0000\u025c\u025e\u0001\u0000\u0000\u0000\u025d\u0250\u0001"+ - "\u0000\u0000\u0000\u025d\u0257\u0001\u0000\u0000\u0000\u025e\u007f\u0001"+ - "\u0000\u0000\u0000\u025f\u0261\u0005\u0015\u0000\u0000\u0260\u0262\u0003"+ - "<\u001e\u0000\u0261\u0260\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000"+ - "\u0000\u0000\u0262\u0266\u0001\u0000\u0000\u0000\u0263\u0265\u0003\u0082"+ - "A\u0000\u0264\u0263\u0001\u0000\u0000\u0000\u0265\u0268\u0001\u0000\u0000"+ - "\u0000\u0266\u0264\u0001\u0000\u0000\u0000\u0266\u0267\u0001\u0000\u0000"+ - "\u0000\u0267\u0081\u0001\u0000\u0000\u0000\u0268\u0266\u0001\u0000\u0000"+ - "\u0000\u0269\u026a\u0005r\u0000\u0000\u026a\u026b\u00059\u0000\u0000\u026b"+ - "\u0275\u00032\u0019\u0000\u026c\u026d\u0005s\u0000\u0000\u026d\u026e\u0005"+ - "9\u0000\u0000\u026e\u0275\u0003\u0010\b\u0000\u026f\u0270\u0005q\u0000"+ - "\u0000\u0270\u0271\u00059\u0000\u0000\u0271\u0275\u00032\u0019\u0000\u0272"+ - "\u0273\u0005N\u0000\u0000\u0273\u0275\u0003\u009cN\u0000\u0274\u0269\u0001"+ - "\u0000\u0000\u0000\u0274\u026c\u0001\u0000\u0000\u0000\u0274\u026f\u0001"+ - "\u0000\u0000\u0000\u0274\u0272\u0001\u0000\u0000\u0000\u0275\u0083\u0001"+ - "\u0000\u0000\u0000\u0276\u0277\u0005\u001c\u0000\u0000\u0277\u0278\u0003"+ - "\u001e\u000f\u0000\u0278\u0279\u0005I\u0000\u0000\u0279\u027a\u0003:\u001d"+ - "\u0000\u027a\u0085\u0001\u0000\u0000\u0000\u027b\u027c\u0005 \u0000\u0000"+ - "\u027c\u027d\u0003:\u001d\u0000\u027d\u0087\u0001\u0000\u0000\u0000\u027e"+ - "\u027f\u0005\"\u0000\u0000\u027f\u0280\u0003\u008aE\u0000\u0280\u0281"+ - "\u0005<\u0000\u0000\u0281\u0089\u0001\u0000\u0000\u0000\u0282\u0283\u0003"+ - "<\u001e\u0000\u0283\u0284\u00058\u0000\u0000\u0284\u0285\u0003\u00a2Q"+ - "\u0000\u0285\u008b\u0001\u0000\u0000\u0000\u0286\u0287\u0006F\uffff\uffff"+ - "\u0000\u0287\u0288\u0005F\u0000\u0000\u0288\u02a4\u0003\u008cF\b\u0289"+ - "\u02a4\u0003\u0092I\u0000\u028a\u02a4\u0003\u008eG\u0000\u028b\u028d\u0003"+ - "\u0092I\u0000\u028c\u028e\u0005F\u0000\u0000\u028d\u028c\u0001\u0000\u0000"+ - "\u0000\u028d\u028e\u0001\u0000\u0000\u0000\u028e\u028f\u0001\u0000\u0000"+ - "\u0000\u028f\u0290\u0005B\u0000\u0000\u0290\u0291\u0005b\u0000\u0000\u0291"+ - "\u0296\u0003\u0092I\u0000\u0292\u0293\u0005=\u0000\u0000\u0293\u0295\u0003"+ - "\u0092I\u0000\u0294\u0292\u0001\u0000\u0000\u0000\u0295\u0298\u0001\u0000"+ - "\u0000\u0000\u0296\u0294\u0001\u0000\u0000\u0000\u0296\u0297\u0001\u0000"+ - "\u0000\u0000\u0297\u0299\u0001\u0000\u0000\u0000\u0298\u0296\u0001\u0000"+ - "\u0000\u0000\u0299\u029a\u0005c\u0000\u0000\u029a\u02a4\u0001\u0000\u0000"+ - "\u0000\u029b\u029c\u0003\u0092I\u0000\u029c\u029e\u0005C\u0000\u0000\u029d"+ - "\u029f\u0005F\u0000\u0000\u029e\u029d\u0001\u0000\u0000\u0000\u029e\u029f"+ - "\u0001\u0000\u0000\u0000\u029f\u02a0\u0001\u0000\u0000\u0000\u02a0\u02a1"+ - "\u0005G\u0000\u0000\u02a1\u02a4\u0001\u0000\u0000\u0000\u02a2\u02a4\u0003"+ - "\u0090H\u0000\u02a3\u0286\u0001\u0000\u0000\u0000\u02a3\u0289\u0001\u0000"+ - "\u0000\u0000\u02a3\u028a\u0001\u0000\u0000\u0000\u02a3\u028b\u0001\u0000"+ - "\u0000\u0000\u02a3\u029b\u0001\u0000\u0000\u0000\u02a3\u02a2\u0001\u0000"+ - "\u0000\u0000\u02a4\u02ad\u0001\u0000\u0000\u0000\u02a5\u02a6\n\u0005\u0000"+ - "\u0000\u02a6\u02a7\u00056\u0000\u0000\u02a7\u02ac\u0003\u008cF\u0006\u02a8"+ - "\u02a9\n\u0004\u0000\u0000\u02a9\u02aa\u0005J\u0000\u0000\u02aa\u02ac"+ - "\u0003\u008cF\u0005\u02ab\u02a5\u0001\u0000\u0000\u0000\u02ab\u02a8\u0001"+ - "\u0000\u0000\u0000\u02ac\u02af\u0001\u0000\u0000\u0000\u02ad\u02ab\u0001"+ - "\u0000\u0000\u0000\u02ad\u02ae\u0001\u0000\u0000\u0000\u02ae\u008d\u0001"+ - "\u0000\u0000\u0000\u02af\u02ad\u0001\u0000\u0000\u0000\u02b0\u02b2\u0003"+ - "\u0092I\u0000\u02b1\u02b3\u0005F\u0000\u0000\u02b2\u02b1\u0001\u0000\u0000"+ - "\u0000\u02b2\u02b3\u0001\u0000\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000"+ - "\u0000\u02b4\u02b5\u0005E\u0000\u0000\u02b5\u02b6\u0003\u00acV\u0000\u02b6"+ - "\u02df\u0001\u0000\u0000\u0000\u02b7\u02b9\u0003\u0092I\u0000\u02b8\u02ba"+ - "\u0005F\u0000\u0000\u02b9\u02b8\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001"+ - "\u0000\u0000\u0000\u02ba\u02bb\u0001\u0000\u0000\u0000\u02bb\u02bc\u0005"+ - "L\u0000\u0000\u02bc\u02bd\u0003\u00acV\u0000\u02bd\u02df\u0001\u0000\u0000"+ - "\u0000\u02be\u02c0\u0003\u0092I\u0000\u02bf\u02c1\u0005F\u0000\u0000\u02c0"+ - "\u02bf\u0001\u0000\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1"+ - "\u02c2\u0001\u0000\u0000\u0000\u02c2\u02c3\u0005E\u0000\u0000\u02c3\u02c4"+ - "\u0005b\u0000\u0000\u02c4\u02c9\u0003\u00acV\u0000\u02c5\u02c6\u0005="+ - "\u0000\u0000\u02c6\u02c8\u0003\u00acV\u0000\u02c7\u02c5\u0001\u0000\u0000"+ - "\u0000\u02c8\u02cb\u0001\u0000\u0000\u0000\u02c9\u02c7\u0001\u0000\u0000"+ - "\u0000\u02c9\u02ca\u0001\u0000\u0000\u0000\u02ca\u02cc\u0001\u0000\u0000"+ - "\u0000\u02cb\u02c9\u0001\u0000\u0000\u0000\u02cc\u02cd\u0005c\u0000\u0000"+ - "\u02cd\u02df\u0001\u0000\u0000\u0000\u02ce\u02d0\u0003\u0092I\u0000\u02cf"+ - "\u02d1\u0005F\u0000\u0000\u02d0\u02cf\u0001\u0000\u0000\u0000\u02d0\u02d1"+ - "\u0001\u0000\u0000\u0000\u02d1\u02d2\u0001\u0000\u0000\u0000\u02d2\u02d3"+ - "\u0005L\u0000\u0000\u02d3\u02d4\u0005b\u0000\u0000\u02d4\u02d9\u0003\u00ac"+ - "V\u0000\u02d5\u02d6\u0005=\u0000\u0000\u02d6\u02d8\u0003\u00acV\u0000"+ - "\u02d7\u02d5\u0001\u0000\u0000\u0000\u02d8\u02db\u0001\u0000\u0000\u0000"+ - "\u02d9\u02d7\u0001\u0000\u0000\u0000\u02d9\u02da\u0001\u0000\u0000\u0000"+ - "\u02da\u02dc\u0001\u0000\u0000\u0000\u02db\u02d9\u0001\u0000\u0000\u0000"+ - "\u02dc\u02dd\u0005c\u0000\u0000\u02dd\u02df\u0001\u0000\u0000\u0000\u02de"+ - "\u02b0\u0001\u0000\u0000\u0000\u02de\u02b7\u0001\u0000\u0000\u0000\u02de"+ - "\u02be\u0001\u0000\u0000\u0000\u02de\u02ce\u0001\u0000\u0000\u0000\u02df"+ - "\u008f\u0001\u0000\u0000\u0000\u02e0\u02e3\u00032\u0019\u0000\u02e1\u02e2"+ - "\u0005:\u0000\u0000\u02e2\u02e4\u0003\f\u0006\u0000\u02e3\u02e1\u0001"+ - "\u0000\u0000\u0000\u02e3\u02e4\u0001\u0000\u0000\u0000\u02e4\u02e5\u0001"+ - "\u0000\u0000\u0000\u02e5\u02e6\u0005;\u0000\u0000\u02e6\u02e7\u0003\u00a2"+ - "Q\u0000\u02e7\u0091\u0001\u0000\u0000\u0000\u02e8\u02ee\u0003\u0094J\u0000"+ - "\u02e9\u02ea\u0003\u0094J\u0000\u02ea\u02eb\u0003\u00aeW\u0000\u02eb\u02ec"+ - "\u0003\u0094J\u0000\u02ec\u02ee\u0001\u0000\u0000\u0000\u02ed\u02e8\u0001"+ - "\u0000\u0000\u0000\u02ed\u02e9\u0001\u0000\u0000\u0000\u02ee\u0093\u0001"+ - "\u0000\u0000\u0000\u02ef\u02f0\u0006J\uffff\uffff\u0000\u02f0\u02f4\u0003"+ - "\u0096K\u0000\u02f1\u02f2\u0007\u0005\u0000\u0000\u02f2\u02f4\u0003\u0094"+ - "J\u0003\u02f3\u02ef\u0001\u0000\u0000\u0000\u02f3\u02f1\u0001\u0000\u0000"+ - "\u0000\u02f4\u02fd\u0001\u0000\u0000\u0000\u02f5\u02f6\n\u0002\u0000\u0000"+ - "\u02f6\u02f7\u0007\u0006\u0000\u0000\u02f7\u02fc\u0003\u0094J\u0003\u02f8"+ - "\u02f9\n\u0001\u0000\u0000\u02f9\u02fa\u0007\u0005\u0000\u0000\u02fa\u02fc"+ - "\u0003\u0094J\u0002\u02fb\u02f5\u0001\u0000\u0000\u0000\u02fb\u02f8\u0001"+ - "\u0000\u0000\u0000\u02fc\u02ff\u0001\u0000\u0000\u0000\u02fd\u02fb\u0001"+ - "\u0000\u0000\u0000\u02fd\u02fe\u0001\u0000\u0000\u0000\u02fe\u0095\u0001"+ - "\u0000\u0000\u0000\u02ff\u02fd\u0001\u0000\u0000\u0000\u0300\u0301\u0006"+ - "K\uffff\uffff\u0000\u0301\u0309\u0003\u00a2Q\u0000\u0302\u0309\u00032"+ - "\u0019\u0000\u0303\u0309\u0003\u0098L\u0000\u0304\u0305\u0005b\u0000\u0000"+ - "\u0305\u0306\u0003\u008cF\u0000\u0306\u0307\u0005c\u0000\u0000\u0307\u0309"+ - "\u0001\u0000\u0000\u0000\u0308\u0300\u0001\u0000\u0000\u0000\u0308\u0302"+ - "\u0001\u0000\u0000\u0000\u0308\u0303\u0001\u0000\u0000\u0000\u0308\u0304"+ - "\u0001\u0000\u0000\u0000\u0309\u030f\u0001\u0000\u0000\u0000\u030a\u030b"+ - "\n\u0001\u0000\u0000\u030b\u030c\u0005:\u0000\u0000\u030c\u030e\u0003"+ - "\f\u0006\u0000\u030d\u030a\u0001\u0000\u0000\u0000\u030e\u0311\u0001\u0000"+ - "\u0000\u0000\u030f\u030d\u0001\u0000\u0000\u0000\u030f\u0310\u0001\u0000"+ - "\u0000\u0000\u0310\u0097\u0001\u0000\u0000\u0000\u0311\u030f\u0001\u0000"+ - "\u0000\u0000\u0312\u0313\u0003\u009aM\u0000\u0313\u0321\u0005b\u0000\u0000"+ - "\u0314\u0322\u0005X\u0000\u0000\u0315\u031a\u0003\u008cF\u0000\u0316\u0317"+ - "\u0005=\u0000\u0000\u0317\u0319\u0003\u008cF\u0000\u0318\u0316\u0001\u0000"+ - "\u0000\u0000\u0319\u031c\u0001\u0000\u0000\u0000\u031a\u0318\u0001\u0000"+ - "\u0000\u0000\u031a\u031b\u0001\u0000\u0000\u0000\u031b\u031f\u0001\u0000"+ - "\u0000\u0000\u031c\u031a\u0001\u0000\u0000\u0000\u031d\u031e\u0005=\u0000"+ - "\u0000\u031e\u0320\u0003\u009cN\u0000\u031f\u031d\u0001\u0000\u0000\u0000"+ - "\u031f\u0320\u0001\u0000\u0000\u0000\u0320\u0322\u0001\u0000\u0000\u0000"+ - "\u0321\u0314\u0001\u0000\u0000\u0000\u0321\u0315\u0001\u0000\u0000\u0000"+ - "\u0321\u0322\u0001\u0000\u0000\u0000\u0322\u0323\u0001\u0000\u0000\u0000"+ - "\u0323\u0324\u0005c\u0000\u0000\u0324\u0099\u0001\u0000\u0000\u0000\u0325"+ - "\u0329\u0003D\"\u0000\u0326\u0329\u0005A\u0000\u0000\u0327\u0329\u0005"+ - "D\u0000\u0000\u0328\u0325\u0001\u0000\u0000\u0000\u0328\u0326\u0001\u0000"+ - "\u0000\u0000\u0328\u0327\u0001\u0000\u0000\u0000\u0329\u009b\u0001\u0000"+ - "\u0000\u0000\u032a\u0333\u0005[\u0000\u0000\u032b\u0330\u0003\u009eO\u0000"+ - "\u032c\u032d\u0005=\u0000\u0000\u032d\u032f\u0003\u009eO\u0000\u032e\u032c"+ - "\u0001\u0000\u0000\u0000\u032f\u0332\u0001\u0000\u0000\u0000\u0330\u032e"+ - "\u0001\u0000\u0000\u0000\u0330\u0331\u0001\u0000\u0000\u0000\u0331\u0334"+ - "\u0001\u0000\u0000\u0000\u0332\u0330\u0001\u0000\u0000\u0000\u0333\u032b"+ - "\u0001\u0000\u0000\u0000\u0333\u0334\u0001\u0000\u0000\u0000\u0334\u0335"+ - "\u0001\u0000\u0000\u0000\u0335\u0336\u0005\\\u0000\u0000\u0336\u009d\u0001"+ - "\u0000\u0000\u0000\u0337\u0338\u0003\u00acV\u0000\u0338\u0339\u0005;\u0000"+ - "\u0000\u0339\u033a\u0003\u00a0P\u0000\u033a\u009f\u0001\u0000\u0000\u0000"+ - "\u033b\u033e\u0003\u00a2Q\u0000\u033c\u033e\u0003\u009cN\u0000\u033d\u033b"+ - "\u0001\u0000\u0000\u0000\u033d\u033c\u0001\u0000\u0000\u0000\u033e\u00a1"+ - "\u0001\u0000\u0000\u0000\u033f\u036a\u0005G\u0000\u0000\u0340\u0341\u0003"+ - "\u00aaU\u0000\u0341\u0342\u0005d\u0000\u0000\u0342\u036a\u0001\u0000\u0000"+ - "\u0000\u0343\u036a\u0003\u00a8T\u0000\u0344\u036a\u0003\u00aaU\u0000\u0345"+ - "\u036a\u0003\u00a4R\u0000\u0346\u036a\u0003@ \u0000\u0347\u036a\u0003"+ - "\u00acV\u0000\u0348\u0349\u0005`\u0000\u0000\u0349\u034e\u0003\u00a6S"+ - "\u0000\u034a\u034b\u0005=\u0000\u0000\u034b\u034d\u0003\u00a6S\u0000\u034c"+ - "\u034a\u0001\u0000\u0000\u0000\u034d\u0350\u0001\u0000\u0000\u0000\u034e"+ - "\u034c\u0001\u0000\u0000\u0000\u034e\u034f\u0001\u0000\u0000\u0000\u034f"+ - "\u0351\u0001\u0000\u0000\u0000\u0350\u034e\u0001\u0000\u0000\u0000\u0351"+ - "\u0352\u0005a\u0000\u0000\u0352\u036a\u0001\u0000\u0000\u0000\u0353\u0354"+ - "\u0005`\u0000\u0000\u0354\u0359\u0003\u00a4R\u0000\u0355\u0356\u0005="+ - "\u0000\u0000\u0356\u0358\u0003\u00a4R\u0000\u0357\u0355\u0001\u0000\u0000"+ - "\u0000\u0358\u035b\u0001\u0000\u0000\u0000\u0359\u0357\u0001\u0000\u0000"+ - "\u0000\u0359\u035a\u0001\u0000\u0000\u0000\u035a\u035c\u0001\u0000\u0000"+ - "\u0000\u035b\u0359\u0001\u0000\u0000\u0000\u035c\u035d\u0005a\u0000\u0000"+ - "\u035d\u036a\u0001\u0000\u0000\u0000\u035e\u035f\u0005`\u0000\u0000\u035f"+ - "\u0364\u0003\u00acV\u0000\u0360\u0361\u0005=\u0000\u0000\u0361\u0363\u0003"+ - "\u00acV\u0000\u0362\u0360\u0001\u0000\u0000\u0000\u0363\u0366\u0001\u0000"+ - "\u0000\u0000\u0364\u0362\u0001\u0000\u0000\u0000\u0364\u0365\u0001\u0000"+ - "\u0000\u0000\u0365\u0367\u0001\u0000\u0000\u0000\u0366\u0364\u0001\u0000"+ - "\u0000\u0000\u0367\u0368\u0005a\u0000\u0000\u0368\u036a\u0001\u0000\u0000"+ - "\u0000\u0369\u033f\u0001\u0000\u0000\u0000\u0369\u0340\u0001\u0000\u0000"+ - "\u0000\u0369\u0343\u0001\u0000\u0000\u0000\u0369\u0344\u0001\u0000\u0000"+ - "\u0000\u0369\u0345\u0001\u0000\u0000\u0000\u0369\u0346\u0001\u0000\u0000"+ - "\u0000\u0369\u0347\u0001\u0000\u0000\u0000\u0369\u0348\u0001\u0000\u0000"+ - "\u0000\u0369\u0353\u0001\u0000\u0000\u0000\u0369\u035e\u0001\u0000\u0000"+ - "\u0000\u036a\u00a3\u0001\u0000\u0000\u0000\u036b\u036c\u0007\u0007\u0000"+ - "\u0000\u036c\u00a5\u0001\u0000\u0000\u0000\u036d\u0370\u0003\u00a8T\u0000"+ - "\u036e\u0370\u0003\u00aaU\u0000\u036f\u036d\u0001\u0000\u0000\u0000\u036f"+ - "\u036e\u0001\u0000\u0000\u0000\u0370\u00a7\u0001\u0000\u0000\u0000\u0371"+ - "\u0373\u0007\u0005\u0000\u0000\u0372\u0371\u0001\u0000\u0000\u0000\u0372"+ - "\u0373\u0001\u0000\u0000\u0000\u0373\u0374\u0001\u0000\u0000\u0000\u0374"+ - "\u0375\u00055\u0000\u0000\u0375\u00a9\u0001\u0000\u0000\u0000\u0376\u0378"+ - "\u0007\u0005\u0000\u0000\u0377\u0376\u0001\u0000\u0000\u0000\u0377\u0378"+ - "\u0001\u0000\u0000\u0000\u0378\u0379\u0001\u0000\u0000\u0000\u0379\u037a"+ - "\u00054\u0000\u0000\u037a\u00ab\u0001\u0000\u0000\u0000\u037b\u037c\u0005"+ - "3\u0000\u0000\u037c\u00ad\u0001\u0000\u0000\u0000\u037d\u037e\u0007\b"+ - "\u0000\u0000\u037e\u00af\u0001\u0000\u0000\u0000\u037f\u0380\u0007\t\u0000"+ - "\u0000\u0380\u0381\u0005{\u0000\u0000\u0381\u0382\u0003\u00b2Y\u0000\u0382"+ - "\u0383\u0003\u00b4Z\u0000\u0383\u00b1\u0001\u0000\u0000\u0000\u0384\u0385"+ - "\u0004Y\r\u0000\u0385\u0387\u0003\u001e\u000f\u0000\u0386\u0388\u0005"+ - "\u008d\u0000\u0000\u0387\u0386\u0001\u0000\u0000\u0000\u0387\u0388\u0001"+ - "\u0000\u0000\u0000\u0388\u0389\u0001\u0000\u0000\u0000\u0389\u038a\u0005"+ - "j\u0000\u0000\u038a\u038d\u0001\u0000\u0000\u0000\u038b\u038d\u0003\u001e"+ - "\u000f\u0000\u038c\u0384\u0001\u0000\u0000\u0000\u038c\u038b\u0001\u0000"+ - "\u0000\u0000\u038d\u00b3\u0001\u0000\u0000\u0000\u038e\u038f\u0005I\u0000"+ - "\u0000\u038f\u0394\u0003\u008cF\u0000\u0390\u0391\u0005=\u0000\u0000\u0391"+ - "\u0393\u0003\u008cF\u0000\u0392\u0390\u0001\u0000\u0000\u0000\u0393\u0396"+ - "\u0001\u0000\u0000\u0000\u0394\u0392\u0001\u0000\u0000\u0000\u0394\u0395"+ - "\u0001\u0000\u0000\u0000\u0395\u00b5\u0001\u0000\u0000\u0000\u0396\u0394"+ - "\u0001\u0000\u0000\u0000Y\u00ba\u00c2\u00cf\u00d8\u00f2\u0101\u0107\u0110"+ - "\u0116\u0123\u0127\u0132\u0142\u014a\u014e\u0155\u015b\u0160\u0169\u0170"+ - "\u0176\u017f\u0186\u018e\u0196\u019a\u019e\u01a3\u01ae\u01b3\u01b7\u01c5"+ - "\u01d0\u01d6\u01dd\u01e6\u01fd\u0205\u0208\u020f\u021a\u0221\u0229\u0237"+ - "\u0240\u024b\u0255\u025b\u025d\u0261\u0266\u0274\u028d\u0296\u029e\u02a3"+ - "\u02ab\u02ad\u02b2\u02b9\u02c0\u02c9\u02d0\u02d9\u02de\u02e3\u02ed\u02f3"+ - "\u02fb\u02fd\u0308\u030f\u031a\u031f\u0321\u0328\u0330\u0333\u033d\u034e"+ - "\u0359\u0364\u0369\u036f\u0372\u0377\u0387\u038c\u0394"; + "\u01ef\u0003\u00acV\u0000\u01eb\u01ec\u0005=\u0000\u0000\u01ec\u01ee\u0003"+ + "\u00acV\u0000\u01ed\u01eb\u0001\u0000\u0000\u0000\u01ee\u01f1\u0001\u0000"+ + "\u0000\u0000\u01ef\u01ed\u0001\u0000\u0000\u0000\u01ef\u01f0\u0001\u0000"+ + "\u0000\u0000\u01f0]\u0001\u0000\u0000\u0000\u01f1\u01ef\u0001\u0000\u0000"+ + "\u0000\u01f2\u01f3\u0005\u001d\u0000\u0000\u01f3\u01f4\u00032\u0019\u0000"+ + "\u01f4_\u0001\u0000\u0000\u0000\u01f5\u01f6\u0005\u0006\u0000\u0000\u01f6"+ + "\u01f7\u0003b1\u0000\u01f7a\u0001\u0000\u0000\u0000\u01f8\u01f9\u0005"+ + "b\u0000\u0000\u01f9\u01fa\u0003\u0004\u0002\u0000\u01fa\u01fb\u0005c\u0000"+ + "\u0000\u01fbc\u0001\u0000\u0000\u0000\u01fc\u01fd\u0005#\u0000\u0000\u01fd"+ + "\u01fe\u0005\u0094\u0000\u0000\u01fee\u0001\u0000\u0000\u0000\u01ff\u0200"+ + "\u0005\u0005\u0000\u0000\u0200\u0203\u0003h4\u0000\u0201\u0202\u0005I"+ + "\u0000\u0000\u0202\u0204\u00036\u001b\u0000\u0203\u0201\u0001\u0000\u0000"+ + "\u0000\u0203\u0204\u0001\u0000\u0000\u0000\u0204\u020e\u0001\u0000\u0000"+ + "\u0000\u0205\u0206\u0005N\u0000\u0000\u0206\u020b\u0003j5\u0000\u0207"+ + "\u0208\u0005=\u0000\u0000\u0208\u020a\u0003j5\u0000\u0209\u0207\u0001"+ + "\u0000\u0000\u0000\u020a\u020d\u0001\u0000\u0000\u0000\u020b\u0209\u0001"+ + "\u0000\u0000\u0000\u020b\u020c\u0001\u0000\u0000\u0000\u020c\u020f\u0001"+ + "\u0000\u0000\u0000\u020d\u020b\u0001\u0000\u0000\u0000\u020e\u0205\u0001"+ + "\u0000\u0000\u0000\u020e\u020f\u0001\u0000\u0000\u0000\u020fg\u0001\u0000"+ + "\u0000\u0000\u0210\u0211\u0007\u0004\u0000\u0000\u0211i\u0001\u0000\u0000"+ + "\u0000\u0212\u0213\u00036\u001b\u0000\u0213\u0214\u00058\u0000\u0000\u0214"+ + "\u0216\u0001\u0000\u0000\u0000\u0215\u0212\u0001\u0000\u0000\u0000\u0215"+ + "\u0216\u0001\u0000\u0000\u0000\u0216\u0217\u0001\u0000\u0000\u0000\u0217"+ + "\u0218\u00036\u001b\u0000\u0218k\u0001\u0000\u0000\u0000\u0219\u021a\u0005"+ + "\u000e\u0000\u0000\u021a\u021b\u0003\u00a2Q\u0000\u021bm\u0001\u0000\u0000"+ + "\u0000\u021c\u021d\u0005\u0004\u0000\u0000\u021d\u0220\u00032\u0019\u0000"+ + "\u021e\u021f\u0005I\u0000\u0000\u021f\u0221\u00032\u0019\u0000\u0220\u021e"+ + "\u0001\u0000\u0000\u0000\u0220\u0221\u0001\u0000\u0000\u0000\u0221\u0227"+ + "\u0001\u0000\u0000\u0000\u0222\u0223\u0005\u008d\u0000\u0000\u0223\u0224"+ + "\u00032\u0019\u0000\u0224\u0225\u0005=\u0000\u0000\u0225\u0226\u00032"+ + "\u0019\u0000\u0226\u0228\u0001\u0000\u0000\u0000\u0227\u0222\u0001\u0000"+ + "\u0000\u0000\u0227\u0228\u0001\u0000\u0000\u0000\u0228o\u0001\u0000\u0000"+ + "\u0000\u0229\u022a\u0005\u0014\u0000\u0000\u022a\u022b\u0003r9\u0000\u022b"+ + "q\u0001\u0000\u0000\u0000\u022c\u022e\u0003t:\u0000\u022d\u022c\u0001"+ + "\u0000\u0000\u0000\u022e\u022f\u0001\u0000\u0000\u0000\u022f\u022d\u0001"+ + "\u0000\u0000\u0000\u022f\u0230\u0001\u0000\u0000\u0000\u0230s\u0001\u0000"+ + "\u0000\u0000\u0231\u0232\u0005b\u0000\u0000\u0232\u0233\u0003v;\u0000"+ + "\u0233\u0234\u0005c\u0000\u0000\u0234u\u0001\u0000\u0000\u0000\u0235\u0236"+ + "\u0006;\uffff\uffff\u0000\u0236\u0237\u0003x<\u0000\u0237\u023d\u0001"+ + "\u0000\u0000\u0000\u0238\u0239\n\u0001\u0000\u0000\u0239\u023a\u00052"+ + "\u0000\u0000\u023a\u023c\u0003x<\u0000\u023b\u0238\u0001\u0000\u0000\u0000"+ + "\u023c\u023f\u0001\u0000\u0000\u0000\u023d\u023b\u0001\u0000\u0000\u0000"+ + "\u023d\u023e\u0001\u0000\u0000\u0000\u023ew\u0001\u0000\u0000\u0000\u023f"+ + "\u023d\u0001\u0000\u0000\u0000\u0240\u0241\u0003\b\u0004\u0000\u0241y"+ + "\u0001\u0000\u0000\u0000\u0242\u0246\u0005\f\u0000\u0000\u0243\u0244\u0003"+ + "2\u0019\u0000\u0244\u0245\u00058\u0000\u0000\u0245\u0247\u0001\u0000\u0000"+ + "\u0000\u0246\u0243\u0001\u0000\u0000\u0000\u0246\u0247\u0001\u0000\u0000"+ + "\u0000\u0247\u0248\u0001\u0000\u0000\u0000\u0248\u0249\u0003\u00a2Q\u0000"+ + "\u0249\u024a\u0005I\u0000\u0000\u024a\u024b\u0003\u0014\n\u0000\u024b"+ + "\u024c\u0003Z-\u0000\u024c{\u0001\u0000\u0000\u0000\u024d\u0251\u0005"+ + "\u0007\u0000\u0000\u024e\u024f\u00032\u0019\u0000\u024f\u0250\u00058\u0000"+ + "\u0000\u0250\u0252\u0001\u0000\u0000\u0000\u0251\u024e\u0001\u0000\u0000"+ + "\u0000\u0251\u0252\u0001\u0000\u0000\u0000\u0252\u0253\u0001\u0000\u0000"+ + "\u0000\u0253\u0254\u0003\u0096K\u0000\u0254\u0255\u0003Z-\u0000\u0255"+ + "}\u0001\u0000\u0000\u0000\u0256\u0257\u0005\u0016\u0000\u0000\u0257\u0258"+ + "\u0005w\u0000\u0000\u0258\u025b\u0003.\u0017\u0000\u0259\u025a\u00059"+ + "\u0000\u0000\u025a\u025c\u0003\u0010\b\u0000\u025b\u0259\u0001\u0000\u0000"+ + "\u0000\u025b\u025c\u0001\u0000\u0000\u0000\u025c\u0264\u0001\u0000\u0000"+ + "\u0000\u025d\u025e\u0005\u0017\u0000\u0000\u025e\u0261\u0003.\u0017\u0000"+ + "\u025f\u0260\u00059\u0000\u0000\u0260\u0262\u0003\u0010\b\u0000\u0261"+ + "\u025f\u0001\u0000\u0000\u0000\u0261\u0262\u0001\u0000\u0000\u0000\u0262"+ + "\u0264\u0001\u0000\u0000\u0000\u0263\u0256\u0001\u0000\u0000\u0000\u0263"+ + "\u025d\u0001\u0000\u0000\u0000\u0264\u007f\u0001\u0000\u0000\u0000\u0265"+ + "\u0267\u0005\u0015\u0000\u0000\u0266\u0268\u0003<\u001e\u0000\u0267\u0266"+ + "\u0001\u0000\u0000\u0000\u0267\u0268\u0001\u0000\u0000\u0000\u0268\u026c"+ + "\u0001\u0000\u0000\u0000\u0269\u026b\u0003\u0082A\u0000\u026a\u0269\u0001"+ + "\u0000\u0000\u0000\u026b\u026e\u0001\u0000\u0000\u0000\u026c\u026a\u0001"+ + "\u0000\u0000\u0000\u026c\u026d\u0001\u0000\u0000\u0000\u026d\u0081\u0001"+ + "\u0000\u0000\u0000\u026e\u026c\u0001\u0000\u0000\u0000\u026f\u0270\u0005"+ + "r\u0000\u0000\u0270\u0271\u00059\u0000\u0000\u0271\u027b\u00032\u0019"+ + "\u0000\u0272\u0273\u0005s\u0000\u0000\u0273\u0274\u00059\u0000\u0000\u0274"+ + "\u027b\u0003\u0010\b\u0000\u0275\u0276\u0005q\u0000\u0000\u0276\u0277"+ + "\u00059\u0000\u0000\u0277\u027b\u00032\u0019\u0000\u0278\u0279\u0005N"+ + "\u0000\u0000\u0279\u027b\u0003\u009cN\u0000\u027a\u026f\u0001\u0000\u0000"+ + "\u0000\u027a\u0272\u0001\u0000\u0000\u0000\u027a\u0275\u0001\u0000\u0000"+ + "\u0000\u027a\u0278\u0001\u0000\u0000\u0000\u027b\u0083\u0001\u0000\u0000"+ + "\u0000\u027c\u027d\u0005\u001c\u0000\u0000\u027d\u027e\u0003\u001e\u000f"+ + "\u0000\u027e\u027f\u0005I\u0000\u0000\u027f\u0280\u0003:\u001d\u0000\u0280"+ + "\u0085\u0001\u0000\u0000\u0000\u0281\u0282\u0005 \u0000\u0000\u0282\u0283"+ + "\u0003:\u001d\u0000\u0283\u0087\u0001\u0000\u0000\u0000\u0284\u0285\u0005"+ + "\"\u0000\u0000\u0285\u0286\u0003\u008aE\u0000\u0286\u0287\u0005<\u0000"+ + "\u0000\u0287\u0089\u0001\u0000\u0000\u0000\u0288\u0289\u0003<\u001e\u0000"+ + "\u0289\u028a\u00058\u0000\u0000\u028a\u028b\u0003\u00a2Q\u0000\u028b\u008b"+ + "\u0001\u0000\u0000\u0000\u028c\u028d\u0006F\uffff\uffff\u0000\u028d\u028e"+ + "\u0005F\u0000\u0000\u028e\u02aa\u0003\u008cF\b\u028f\u02aa\u0003\u0092"+ + "I\u0000\u0290\u02aa\u0003\u008eG\u0000\u0291\u0293\u0003\u0092I\u0000"+ + "\u0292\u0294\u0005F\u0000\u0000\u0293\u0292\u0001\u0000\u0000\u0000\u0293"+ + "\u0294\u0001\u0000\u0000\u0000\u0294\u0295\u0001\u0000\u0000\u0000\u0295"+ + "\u0296\u0005B\u0000\u0000\u0296\u0297\u0005b\u0000\u0000\u0297\u029c\u0003"+ + "\u0092I\u0000\u0298\u0299\u0005=\u0000\u0000\u0299\u029b\u0003\u0092I"+ + "\u0000\u029a\u0298\u0001\u0000\u0000\u0000\u029b\u029e\u0001\u0000\u0000"+ + "\u0000\u029c\u029a\u0001\u0000\u0000\u0000\u029c\u029d\u0001\u0000\u0000"+ + "\u0000\u029d\u029f\u0001\u0000\u0000\u0000\u029e\u029c\u0001\u0000\u0000"+ + "\u0000\u029f\u02a0\u0005c\u0000\u0000\u02a0\u02aa\u0001\u0000\u0000\u0000"+ + "\u02a1\u02a2\u0003\u0092I\u0000\u02a2\u02a4\u0005C\u0000\u0000\u02a3\u02a5"+ + "\u0005F\u0000\u0000\u02a4\u02a3\u0001\u0000\u0000\u0000\u02a4\u02a5\u0001"+ + "\u0000\u0000\u0000\u02a5\u02a6\u0001\u0000\u0000\u0000\u02a6\u02a7\u0005"+ + "G\u0000\u0000\u02a7\u02aa\u0001\u0000\u0000\u0000\u02a8\u02aa\u0003\u0090"+ + "H\u0000\u02a9\u028c\u0001\u0000\u0000\u0000\u02a9\u028f\u0001\u0000\u0000"+ + "\u0000\u02a9\u0290\u0001\u0000\u0000\u0000\u02a9\u0291\u0001\u0000\u0000"+ + "\u0000\u02a9\u02a1\u0001\u0000\u0000\u0000\u02a9\u02a8\u0001\u0000\u0000"+ + "\u0000\u02aa\u02b3\u0001\u0000\u0000\u0000\u02ab\u02ac\n\u0005\u0000\u0000"+ + "\u02ac\u02ad\u00056\u0000\u0000\u02ad\u02b2\u0003\u008cF\u0006\u02ae\u02af"+ + "\n\u0004\u0000\u0000\u02af\u02b0\u0005J\u0000\u0000\u02b0\u02b2\u0003"+ + "\u008cF\u0005\u02b1\u02ab\u0001\u0000\u0000\u0000\u02b1\u02ae\u0001\u0000"+ + "\u0000\u0000\u02b2\u02b5\u0001\u0000\u0000\u0000\u02b3\u02b1\u0001\u0000"+ + "\u0000\u0000\u02b3\u02b4\u0001\u0000\u0000\u0000\u02b4\u008d\u0001\u0000"+ + "\u0000\u0000\u02b5\u02b3\u0001\u0000\u0000\u0000\u02b6\u02b8\u0003\u0092"+ + "I\u0000\u02b7\u02b9\u0005F\u0000\u0000\u02b8\u02b7\u0001\u0000\u0000\u0000"+ + "\u02b8\u02b9\u0001\u0000\u0000\u0000\u02b9\u02ba\u0001\u0000\u0000\u0000"+ + "\u02ba\u02bb\u0005E\u0000\u0000\u02bb\u02bc\u0003\u00acV\u0000\u02bc\u02e5"+ + "\u0001\u0000\u0000\u0000\u02bd\u02bf\u0003\u0092I\u0000\u02be\u02c0\u0005"+ + "F\u0000\u0000\u02bf\u02be\u0001\u0000\u0000\u0000\u02bf\u02c0\u0001\u0000"+ + "\u0000\u0000\u02c0\u02c1\u0001\u0000\u0000\u0000\u02c1\u02c2\u0005L\u0000"+ + "\u0000\u02c2\u02c3\u0003\u00acV\u0000\u02c3\u02e5\u0001\u0000\u0000\u0000"+ + "\u02c4\u02c6\u0003\u0092I\u0000\u02c5\u02c7\u0005F\u0000\u0000\u02c6\u02c5"+ + "\u0001\u0000\u0000\u0000\u02c6\u02c7\u0001\u0000\u0000\u0000\u02c7\u02c8"+ + "\u0001\u0000\u0000\u0000\u02c8\u02c9\u0005E\u0000\u0000\u02c9\u02ca\u0005"+ + "b\u0000\u0000\u02ca\u02cf\u0003\u00acV\u0000\u02cb\u02cc\u0005=\u0000"+ + "\u0000\u02cc\u02ce\u0003\u00acV\u0000\u02cd\u02cb\u0001\u0000\u0000\u0000"+ + "\u02ce\u02d1\u0001\u0000\u0000\u0000\u02cf\u02cd\u0001\u0000\u0000\u0000"+ + "\u02cf\u02d0\u0001\u0000\u0000\u0000\u02d0\u02d2\u0001\u0000\u0000\u0000"+ + "\u02d1\u02cf\u0001\u0000\u0000\u0000\u02d2\u02d3\u0005c\u0000\u0000\u02d3"+ + "\u02e5\u0001\u0000\u0000\u0000\u02d4\u02d6\u0003\u0092I\u0000\u02d5\u02d7"+ + "\u0005F\u0000\u0000\u02d6\u02d5\u0001\u0000\u0000\u0000\u02d6\u02d7\u0001"+ + "\u0000\u0000\u0000\u02d7\u02d8\u0001\u0000\u0000\u0000\u02d8\u02d9\u0005"+ + "L\u0000\u0000\u02d9\u02da\u0005b\u0000\u0000\u02da\u02df\u0003\u00acV"+ + "\u0000\u02db\u02dc\u0005=\u0000\u0000\u02dc\u02de\u0003\u00acV\u0000\u02dd"+ + "\u02db\u0001\u0000\u0000\u0000\u02de\u02e1\u0001\u0000\u0000\u0000\u02df"+ + "\u02dd\u0001\u0000\u0000\u0000\u02df\u02e0\u0001\u0000\u0000\u0000\u02e0"+ + "\u02e2\u0001\u0000\u0000\u0000\u02e1\u02df\u0001\u0000\u0000\u0000\u02e2"+ + "\u02e3\u0005c\u0000\u0000\u02e3\u02e5\u0001\u0000\u0000\u0000\u02e4\u02b6"+ + "\u0001\u0000\u0000\u0000\u02e4\u02bd\u0001\u0000\u0000\u0000\u02e4\u02c4"+ + "\u0001\u0000\u0000\u0000\u02e4\u02d4\u0001\u0000\u0000\u0000\u02e5\u008f"+ + "\u0001\u0000\u0000\u0000\u02e6\u02e9\u00032\u0019\u0000\u02e7\u02e8\u0005"+ + ":\u0000\u0000\u02e8\u02ea\u0003\f\u0006\u0000\u02e9\u02e7\u0001\u0000"+ + "\u0000\u0000\u02e9\u02ea\u0001\u0000\u0000\u0000\u02ea\u02eb\u0001\u0000"+ + "\u0000\u0000\u02eb\u02ec\u0005;\u0000\u0000\u02ec\u02ed\u0003\u00a2Q\u0000"+ + "\u02ed\u0091\u0001\u0000\u0000\u0000\u02ee\u02f4\u0003\u0094J\u0000\u02ef"+ + "\u02f0\u0003\u0094J\u0000\u02f0\u02f1\u0003\u00aeW\u0000\u02f1\u02f2\u0003"+ + "\u0094J\u0000\u02f2\u02f4\u0001\u0000\u0000\u0000\u02f3\u02ee\u0001\u0000"+ + "\u0000\u0000\u02f3\u02ef\u0001\u0000\u0000\u0000\u02f4\u0093\u0001\u0000"+ + "\u0000\u0000\u02f5\u02f6\u0006J\uffff\uffff\u0000\u02f6\u02fa\u0003\u0096"+ + "K\u0000\u02f7\u02f8\u0007\u0005\u0000\u0000\u02f8\u02fa\u0003\u0094J\u0003"+ + "\u02f9\u02f5\u0001\u0000\u0000\u0000\u02f9\u02f7\u0001\u0000\u0000\u0000"+ + "\u02fa\u0303\u0001\u0000\u0000\u0000\u02fb\u02fc\n\u0002\u0000\u0000\u02fc"+ + "\u02fd\u0007\u0006\u0000\u0000\u02fd\u0302\u0003\u0094J\u0003\u02fe\u02ff"+ + "\n\u0001\u0000\u0000\u02ff\u0300\u0007\u0005\u0000\u0000\u0300\u0302\u0003"+ + "\u0094J\u0002\u0301\u02fb\u0001\u0000\u0000\u0000\u0301\u02fe\u0001\u0000"+ + "\u0000\u0000\u0302\u0305\u0001\u0000\u0000\u0000\u0303\u0301\u0001\u0000"+ + "\u0000\u0000\u0303\u0304\u0001\u0000\u0000\u0000\u0304\u0095\u0001\u0000"+ + "\u0000\u0000\u0305\u0303\u0001\u0000\u0000\u0000\u0306\u0307\u0006K\uffff"+ + "\uffff\u0000\u0307\u030f\u0003\u00a2Q\u0000\u0308\u030f\u00032\u0019\u0000"+ + "\u0309\u030f\u0003\u0098L\u0000\u030a\u030b\u0005b\u0000\u0000\u030b\u030c"+ + "\u0003\u008cF\u0000\u030c\u030d\u0005c\u0000\u0000\u030d\u030f\u0001\u0000"+ + "\u0000\u0000\u030e\u0306\u0001\u0000\u0000\u0000\u030e\u0308\u0001\u0000"+ + "\u0000\u0000\u030e\u0309\u0001\u0000\u0000\u0000\u030e\u030a\u0001\u0000"+ + "\u0000\u0000\u030f\u0315\u0001\u0000\u0000\u0000\u0310\u0311\n\u0001\u0000"+ + "\u0000\u0311\u0312\u0005:\u0000\u0000\u0312\u0314\u0003\f\u0006\u0000"+ + "\u0313\u0310\u0001\u0000\u0000\u0000\u0314\u0317\u0001\u0000\u0000\u0000"+ + "\u0315\u0313\u0001\u0000\u0000\u0000\u0315\u0316\u0001\u0000\u0000\u0000"+ + "\u0316\u0097\u0001\u0000\u0000\u0000\u0317\u0315\u0001\u0000\u0000\u0000"+ + "\u0318\u0319\u0003\u009aM\u0000\u0319\u0327\u0005b\u0000\u0000\u031a\u0328"+ + "\u0005X\u0000\u0000\u031b\u0320\u0003\u008cF\u0000\u031c\u031d\u0005="+ + "\u0000\u0000\u031d\u031f\u0003\u008cF\u0000\u031e\u031c\u0001\u0000\u0000"+ + "\u0000\u031f\u0322\u0001\u0000\u0000\u0000\u0320\u031e\u0001\u0000\u0000"+ + "\u0000\u0320\u0321\u0001\u0000\u0000\u0000\u0321\u0325\u0001\u0000\u0000"+ + "\u0000\u0322\u0320\u0001\u0000\u0000\u0000\u0323\u0324\u0005=\u0000\u0000"+ + "\u0324\u0326\u0003\u009cN\u0000\u0325\u0323\u0001\u0000\u0000\u0000\u0325"+ + "\u0326\u0001\u0000\u0000\u0000\u0326\u0328\u0001\u0000\u0000\u0000\u0327"+ + "\u031a\u0001\u0000\u0000\u0000\u0327\u031b\u0001\u0000\u0000\u0000\u0327"+ + "\u0328\u0001\u0000\u0000\u0000\u0328\u0329\u0001\u0000\u0000\u0000\u0329"+ + "\u032a\u0005c\u0000\u0000\u032a\u0099\u0001\u0000\u0000\u0000\u032b\u032f"+ + "\u0003D\"\u0000\u032c\u032f\u0005A\u0000\u0000\u032d\u032f\u0005D\u0000"+ + "\u0000\u032e\u032b\u0001\u0000\u0000\u0000\u032e\u032c\u0001\u0000\u0000"+ + "\u0000\u032e\u032d\u0001\u0000\u0000\u0000\u032f\u009b\u0001\u0000\u0000"+ + "\u0000\u0330\u0339\u0005[\u0000\u0000\u0331\u0336\u0003\u009eO\u0000\u0332"+ + "\u0333\u0005=\u0000\u0000\u0333\u0335\u0003\u009eO\u0000\u0334\u0332\u0001"+ + "\u0000\u0000\u0000\u0335\u0338\u0001\u0000\u0000\u0000\u0336\u0334\u0001"+ + "\u0000\u0000\u0000\u0336\u0337\u0001\u0000\u0000\u0000\u0337\u033a\u0001"+ + "\u0000\u0000\u0000\u0338\u0336\u0001\u0000\u0000\u0000\u0339\u0331\u0001"+ + "\u0000\u0000\u0000\u0339\u033a\u0001\u0000\u0000\u0000\u033a\u033b\u0001"+ + "\u0000\u0000\u0000\u033b\u033c\u0005\\\u0000\u0000\u033c\u009d\u0001\u0000"+ + "\u0000\u0000\u033d\u033e\u0003\u00acV\u0000\u033e\u033f\u0005;\u0000\u0000"+ + "\u033f\u0340\u0003\u00a0P\u0000\u0340\u009f\u0001\u0000\u0000\u0000\u0341"+ + "\u0344\u0003\u00a2Q\u0000\u0342\u0344\u0003\u009cN\u0000\u0343\u0341\u0001"+ + "\u0000\u0000\u0000\u0343\u0342\u0001\u0000\u0000\u0000\u0344\u00a1\u0001"+ + "\u0000\u0000\u0000\u0345\u0370\u0005G\u0000\u0000\u0346\u0347\u0003\u00aa"+ + "U\u0000\u0347\u0348\u0005d\u0000\u0000\u0348\u0370\u0001\u0000\u0000\u0000"+ + "\u0349\u0370\u0003\u00a8T\u0000\u034a\u0370\u0003\u00aaU\u0000\u034b\u0370"+ + "\u0003\u00a4R\u0000\u034c\u0370\u0003@ \u0000\u034d\u0370\u0003\u00ac"+ + "V\u0000\u034e\u034f\u0005`\u0000\u0000\u034f\u0354\u0003\u00a6S\u0000"+ + "\u0350\u0351\u0005=\u0000\u0000\u0351\u0353\u0003\u00a6S\u0000\u0352\u0350"+ + "\u0001\u0000\u0000\u0000\u0353\u0356\u0001\u0000\u0000\u0000\u0354\u0352"+ + "\u0001\u0000\u0000\u0000\u0354\u0355\u0001\u0000\u0000\u0000\u0355\u0357"+ + "\u0001\u0000\u0000\u0000\u0356\u0354\u0001\u0000\u0000\u0000\u0357\u0358"+ + "\u0005a\u0000\u0000\u0358\u0370\u0001\u0000\u0000\u0000\u0359\u035a\u0005"+ + "`\u0000\u0000\u035a\u035f\u0003\u00a4R\u0000\u035b\u035c\u0005=\u0000"+ + "\u0000\u035c\u035e\u0003\u00a4R\u0000\u035d\u035b\u0001\u0000\u0000\u0000"+ + "\u035e\u0361\u0001\u0000\u0000\u0000\u035f\u035d\u0001\u0000\u0000\u0000"+ + "\u035f\u0360\u0001\u0000\u0000\u0000\u0360\u0362\u0001\u0000\u0000\u0000"+ + "\u0361\u035f\u0001\u0000\u0000\u0000\u0362\u0363\u0005a\u0000\u0000\u0363"+ + "\u0370\u0001\u0000\u0000\u0000\u0364\u0365\u0005`\u0000\u0000\u0365\u036a"+ + "\u0003\u00acV\u0000\u0366\u0367\u0005=\u0000\u0000\u0367\u0369\u0003\u00ac"+ + "V\u0000\u0368\u0366\u0001\u0000\u0000\u0000\u0369\u036c\u0001\u0000\u0000"+ + "\u0000\u036a\u0368\u0001\u0000\u0000\u0000\u036a\u036b\u0001\u0000\u0000"+ + "\u0000\u036b\u036d\u0001\u0000\u0000\u0000\u036c\u036a\u0001\u0000\u0000"+ + "\u0000\u036d\u036e\u0005a\u0000\u0000\u036e\u0370\u0001\u0000\u0000\u0000"+ + "\u036f\u0345\u0001\u0000\u0000\u0000\u036f\u0346\u0001\u0000\u0000\u0000"+ + "\u036f\u0349\u0001\u0000\u0000\u0000\u036f\u034a\u0001\u0000\u0000\u0000"+ + "\u036f\u034b\u0001\u0000\u0000\u0000\u036f\u034c\u0001\u0000\u0000\u0000"+ + "\u036f\u034d\u0001\u0000\u0000\u0000\u036f\u034e\u0001\u0000\u0000\u0000"+ + "\u036f\u0359\u0001\u0000\u0000\u0000\u036f\u0364\u0001\u0000\u0000\u0000"+ + "\u0370\u00a3\u0001\u0000\u0000\u0000\u0371\u0372\u0007\u0007\u0000\u0000"+ + "\u0372\u00a5\u0001\u0000\u0000\u0000\u0373\u0376\u0003\u00a8T\u0000\u0374"+ + "\u0376\u0003\u00aaU\u0000\u0375\u0373\u0001\u0000\u0000\u0000\u0375\u0374"+ + "\u0001\u0000\u0000\u0000\u0376\u00a7\u0001\u0000\u0000\u0000\u0377\u0379"+ + "\u0007\u0005\u0000\u0000\u0378\u0377\u0001\u0000\u0000\u0000\u0378\u0379"+ + "\u0001\u0000\u0000\u0000\u0379\u037a\u0001\u0000\u0000\u0000\u037a\u037b"+ + "\u00055\u0000\u0000\u037b\u00a9\u0001\u0000\u0000\u0000\u037c\u037e\u0007"+ + "\u0005\u0000\u0000\u037d\u037c\u0001\u0000\u0000\u0000\u037d\u037e\u0001"+ + "\u0000\u0000\u0000\u037e\u037f\u0001\u0000\u0000\u0000\u037f\u0380\u0005"+ + "4\u0000\u0000\u0380\u00ab\u0001\u0000\u0000\u0000\u0381\u0382\u00053\u0000"+ + "\u0000\u0382\u00ad\u0001\u0000\u0000\u0000\u0383\u0384\u0007\b\u0000\u0000"+ + "\u0384\u00af\u0001\u0000\u0000\u0000\u0385\u0386\u0007\t\u0000\u0000\u0386"+ + "\u0387\u0005{\u0000\u0000\u0387\u0388\u0003\u00b2Y\u0000\u0388\u0389\u0003"+ + "\u00b4Z\u0000\u0389\u00b1\u0001\u0000\u0000\u0000\u038a\u038b\u0004Y\r"+ + "\u0000\u038b\u038d\u0003\u001e\u000f\u0000\u038c\u038e\u0005\u008d\u0000"+ + "\u0000\u038d\u038c\u0001\u0000\u0000\u0000\u038d\u038e\u0001\u0000\u0000"+ + "\u0000\u038e\u038f\u0001\u0000\u0000\u0000\u038f\u0390\u0005j\u0000\u0000"+ + "\u0390\u0393\u0001\u0000\u0000\u0000\u0391\u0393\u0003\u001e\u000f\u0000"+ + "\u0392\u038a\u0001\u0000\u0000\u0000\u0392\u0391\u0001\u0000\u0000\u0000"+ + "\u0393\u00b3\u0001\u0000\u0000\u0000\u0394\u0395\u0005I\u0000\u0000\u0395"+ + "\u039a\u0003\u008cF\u0000\u0396\u0397\u0005=\u0000\u0000\u0397\u0399\u0003"+ + "\u008cF\u0000\u0398\u0396\u0001\u0000\u0000\u0000\u0399\u039c\u0001\u0000"+ + "\u0000\u0000\u039a\u0398\u0001\u0000\u0000\u0000\u039a\u039b\u0001\u0000"+ + "\u0000\u0000\u039b\u00b5\u0001\u0000\u0000\u0000\u039c\u039a\u0001\u0000"+ + "\u0000\u0000Z\u00ba\u00c2\u00cf\u00d8\u00f2\u0101\u0107\u0110\u0116\u0123"+ + "\u0127\u0132\u0142\u014a\u014e\u0155\u015b\u0160\u0169\u0170\u0176\u017f"+ + "\u0186\u018e\u0196\u019a\u019e\u01a3\u01ae\u01b3\u01b7\u01c5\u01d0\u01d6"+ + "\u01dd\u01e6\u01ef\u0203\u020b\u020e\u0215\u0220\u0227\u022f\u023d\u0246"+ + "\u0251\u025b\u0261\u0263\u0267\u026c\u027a\u0293\u029c\u02a4\u02a9\u02b1"+ + "\u02b3\u02b8\u02bf\u02c6\u02cf\u02d6\u02df\u02e4\u02e9\u02f3\u02f9\u0301"+ + "\u0303\u030e\u0315\u0320\u0325\u0327\u032e\u0336\u0339\u0343\u0354\u035f"+ + "\u036a\u036f\u0375\u0378\u037d\u038d\u0392\u039a"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java b/x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/parser/LogicalPlanBuilder.java index dbd18446e748d..f3c750b27ef21 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 @@ -216,30 +216,52 @@ public PlanFactory visitEvalCommand(EsqlBaseParser.EvalCommandContext ctx) { public PlanFactory visitGrokCommand(EsqlBaseParser.GrokCommandContext ctx) { return p -> { Source source = source(ctx); - String pattern = BytesRefs.toString(visitString(ctx.string()).fold(FoldContext.small() /* TODO remove me */)); + FoldContext patternFoldContext = FoldContext.small(); /* TODO remove me */ + List patterns = ctx.string() + .stream() + .map(stringContext -> BytesRefs.toString(visitString(stringContext).fold(patternFoldContext))) + .toList(); + + String combinePattern = org.elasticsearch.grok.Grok.combinePatterns(patterns); + Grok.Parser grokParser; try { - grokParser = Grok.pattern(source, pattern); + grokParser = Grok.pattern(source, combinePattern); } catch (SyntaxException e) { - throw new ParsingException(source, "Invalid grok pattern [{}]: [{}]", pattern, e.getMessage()); + if (patterns.size() == 1) { + throw new ParsingException(source, "Invalid GROK pattern [{}]: [{}]", patterns.getFirst(), e.getMessage()); + } else { + throw new ParsingException(source, "Invalid GROK patterns {}: [{}]", patterns, e.getMessage()); + } } - validateGrokPattern(source, grokParser, pattern); + validateGrokPattern(source, grokParser, combinePattern, patterns); Grok result = new Grok(source(ctx), p, expression(ctx.primaryExpression()), grokParser); return result; }; } - private void validateGrokPattern(Source source, Grok.Parser grokParser, String pattern) { + private void validateGrokPattern(Source source, Grok.Parser grokParser, String pattern, List originalPatterns) { Map definedAttributes = new HashMap<>(); for (Attribute field : grokParser.extractedFields()) { String name = field.name(); DataType type = field.dataType(); DataType prev = definedAttributes.put(name, type); if (prev != null) { - throw new ParsingException( - source, - "Invalid GROK pattern [" + pattern + "]: the attribute [" + name + "] is defined multiple times with different types" - ); + if (originalPatterns.size() == 1) { + throw new ParsingException( + source, + "Invalid GROK pattern [{}]: the attribute [{}] is defined multiple times with different types", + originalPatterns.getFirst(), + name + ); + } else { + throw new ParsingException( + source, + "Invalid GROK patterns {}: the attribute [{}] is defined multiple times with different types", + originalPatterns, + name + ); + } } } } 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 d92d1b21a98e9..16e77290506c1 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 @@ -1293,7 +1293,18 @@ public void testGrokPattern() { expectError( "row a = \"foo\" | GROK a \"(?P.+)\"", - "line 1:17: Invalid grok pattern [(?P.+)]: [undefined group option]" + "line 1:17: Invalid GROK pattern [(?P.+)]: [undefined group option]" + ); + + expectError( + "row a = \"foo bar\" | GROK a \"%{NUMBER:foo}\", \"%{WORD:foo}\"", + "line 1:21: Invalid GROK patterns [%{NUMBER:foo}, %{WORD:foo}]:" + + " the attribute [foo] is defined multiple times with different types" + ); + + expectError( + "row a = \"foo\" | GROK a \"%{WORD:foo}\", \"(?P.+)\"", + "line 1:17: Invalid GROK patterns [%{WORD:foo}, (?P.+)]: [undefined group option]" ); }