From a01c6b56806e04381604b6e6ff113de31d7b8c86 Mon Sep 17 00:00:00 2001 From: jespergravgaard Date: Sun, 5 Apr 2020 18:06:06 +0200 Subject: [PATCH] Added support for #undef. #169 --- .../dk/camelot64/kickc/parser/CParser.java | 6 +- .../dk/camelot64/kickc/parser/KickCLexer.g4 | 1 + .../camelot64/kickc/parser/KickCLexer.interp | 5 +- .../dk/camelot64/kickc/parser/KickCLexer.java | 1110 +++++++++-------- .../camelot64/kickc/parser/KickCLexer.tokens | 104 +- .../camelot64/kickc/parser/KickCParser.interp | 4 +- .../camelot64/kickc/parser/KickCParser.java | 152 +-- .../camelot64/kickc/parser/KickCParser.tokens | 104 +- ...cePreprocessor.java => CPreprocessor.java} | 192 +-- .../preprocessor/CPreprocessorTokens.java | 38 + .../camelot64/kickc/parsing/macros/Macros.g4 | 1 + .../kickc/parsing/macros/Macros.interp | 4 +- .../kickc/parsing/macros/Macros.tokens | 8 +- .../kickc/parsing/macros/MacrosLexer.interp | 5 +- .../kickc/parsing/macros/MacrosLexer.java | 56 +- .../kickc/parsing/macros/MacrosLexer.tokens | 8 +- .../kickc/parsing/macros/MacrosParser.java | 11 +- .../parsing/macros/TestMacrosParser.java | 16 +- .../dk/camelot64/kickc/test/TestPrograms.java | 10 +- src/test/kc/preprocessor-2.kc | 12 + 20 files changed, 978 insertions(+), 869 deletions(-) rename src/main/java/dk/camelot64/kickc/preprocessor/{CTokenSourcePreprocessor.java => CPreprocessor.java} (51%) create mode 100644 src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java create mode 100644 src/test/kc/preprocessor-2.kc diff --git a/src/main/java/dk/camelot64/kickc/parser/CParser.java b/src/main/java/dk/camelot64/kickc/parser/CParser.java index 9c342990c..17733990e 100644 --- a/src/main/java/dk/camelot64/kickc/parser/CParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/CParser.java @@ -1,9 +1,10 @@ package dk.camelot64.kickc.parser; import dk.camelot64.kickc.SourceLoader; -import dk.camelot64.kickc.preprocessor.CTokenSourcePreprocessor; +import dk.camelot64.kickc.preprocessor.CPreprocessor; import dk.camelot64.kickc.model.CompileError; import dk.camelot64.kickc.model.Program; +import dk.camelot64.kickc.preprocessor.CPreprocessorTokens; import org.antlr.v4.runtime.*; import java.io.File; @@ -64,7 +65,8 @@ public class CParser { this.program = program; this.cFiles = new LinkedHashMap<>(); this.cTokenSource = new CTokenSource(); - final CTokenSourcePreprocessor preprocessor = new CTokenSourcePreprocessor(cTokenSource, CHANNEL_WHITESPACE, KickCLexer.WS, KickCLexer.DEFINE, KickCLexer.NAME, KickCLexer.PAR_BEGIN, KickCLexer.PAR_END, KickCLexer.COMMA, KickCLexer.DEFINE_CONTINUE); + final CPreprocessorTokens preprocessorTokens = new CPreprocessorTokens(CHANNEL_WHITESPACE, KickCLexer.WS, KickCLexer.DEFINE, KickCLexer.NAME, KickCLexer.DEFINE_CONTINUE, KickCLexer.UNDEF, KickCLexer.PAR_BEGIN, KickCLexer.PAR_END, KickCLexer.COMMA); + final CPreprocessor preprocessor = new CPreprocessor(cTokenSource, preprocessorTokens); this.tokenStream = new CommonTokenStream(preprocessor); this.parser = new KickCParser(tokenStream, this); this.typedefs = new ArrayList<>(); diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index 8a0846f43..61c1bd3b3 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -125,6 +125,7 @@ CHAR : '\'' ('\\'['"rfn] | ~'\'' ) '\''; // Macros DEFINE: '#define' ; DEFINE_CONTINUE: '\\\n' ; +UNDEF: '#undef' ; // Numbers NUMBER : NUMFLOAT | NUMINT ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index 778a40066..03824dade 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -96,6 +96,7 @@ null null '#define' '\\\n' +'#undef' null null null @@ -244,6 +245,7 @@ STRING CHAR DEFINE DEFINE_CONTINUE +UNDEF NUMBER NUMFLOAT BINFLOAT @@ -390,6 +392,7 @@ STRING CHAR DEFINE DEFINE_CONTINUE +UNDEF NUMBER NUMFLOAT BINFLOAT @@ -459,4 +462,4 @@ DEFAULT_MODE ASM_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 147, 1461, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 418, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 627, 10, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 794, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 833, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 844, 10, 91, 3, 92, 3, 92, 3, 92, 3, 92, 7, 92, 850, 10, 92, 12, 92, 14, 92, 853, 11, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 7, 93, 862, 10, 93, 12, 93, 14, 93, 865, 11, 93, 3, 93, 3, 93, 5, 93, 869, 10, 93, 3, 93, 3, 93, 5, 93, 873, 10, 93, 5, 93, 875, 10, 93, 3, 93, 5, 93, 878, 10, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 886, 10, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 5, 97, 903, 10, 97, 3, 98, 3, 98, 3, 98, 5, 98, 908, 10, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 915, 10, 99, 3, 99, 7, 99, 918, 10, 99, 12, 99, 14, 99, 921, 11, 99, 3, 99, 3, 99, 6, 99, 925, 10, 99, 13, 99, 14, 99, 926, 3, 100, 7, 100, 930, 10, 100, 12, 100, 14, 100, 933, 11, 100, 3, 100, 3, 100, 6, 100, 937, 10, 100, 13, 100, 14, 100, 938, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 5, 101, 946, 10, 101, 3, 101, 7, 101, 949, 10, 101, 12, 101, 14, 101, 952, 11, 101, 3, 101, 3, 101, 6, 101, 956, 10, 101, 13, 101, 14, 101, 957, 3, 102, 3, 102, 3, 102, 5, 102, 963, 10, 102, 3, 102, 3, 102, 3, 102, 5, 102, 968, 10, 102, 3, 103, 3, 103, 3, 103, 6, 103, 973, 10, 103, 13, 103, 14, 103, 974, 3, 103, 3, 103, 6, 103, 979, 10, 103, 13, 103, 14, 103, 980, 5, 103, 983, 10, 103, 3, 104, 6, 104, 986, 10, 104, 13, 104, 14, 104, 987, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 5, 105, 995, 10, 105, 3, 105, 6, 105, 998, 10, 105, 13, 105, 14, 105, 999, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 7, 109, 1010, 10, 109, 12, 109, 14, 109, 1013, 11, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 6, 112, 1022, 10, 112, 13, 112, 14, 112, 1023, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 7, 113, 1032, 10, 113, 12, 113, 14, 113, 1035, 11, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 7, 114, 1043, 10, 114, 12, 114, 14, 114, 1046, 11, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 5, 116, 1281, 10, 116, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 5, 135, 1325, 10, 135, 3, 136, 3, 136, 3, 136, 5, 136, 1330, 10, 136, 3, 137, 3, 137, 7, 137, 1334, 10, 137, 12, 137, 14, 137, 1337, 11, 137, 3, 137, 3, 137, 6, 137, 1341, 10, 137, 13, 137, 14, 137, 1342, 3, 138, 7, 138, 1346, 10, 138, 12, 138, 14, 138, 1349, 11, 138, 3, 138, 3, 138, 6, 138, 1353, 10, 138, 13, 138, 14, 138, 1354, 3, 139, 3, 139, 7, 139, 1359, 10, 139, 12, 139, 14, 139, 1362, 11, 139, 3, 139, 3, 139, 6, 139, 1366, 10, 139, 13, 139, 14, 139, 1367, 3, 140, 3, 140, 3, 140, 5, 140, 1373, 10, 140, 3, 141, 3, 141, 6, 141, 1377, 10, 141, 13, 141, 14, 141, 1378, 3, 142, 6, 142, 1382, 10, 142, 13, 142, 14, 142, 1383, 3, 143, 3, 143, 6, 143, 1388, 10, 143, 13, 143, 14, 143, 1389, 3, 144, 3, 144, 3, 145, 3, 145, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 5, 147, 1402, 10, 147, 3, 147, 3, 147, 3, 148, 3, 148, 6, 148, 1408, 10, 148, 13, 148, 14, 148, 1409, 3, 149, 3, 149, 7, 149, 1414, 10, 149, 12, 149, 14, 149, 1417, 11, 149, 3, 150, 3, 150, 7, 150, 1421, 10, 150, 12, 150, 14, 150, 1424, 11, 150, 3, 151, 3, 151, 3, 152, 3, 152, 3, 153, 6, 153, 1431, 10, 153, 13, 153, 14, 153, 1432, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 7, 154, 1441, 10, 154, 12, 154, 14, 154, 1444, 11, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 7, 155, 1452, 10, 155, 12, 155, 14, 155, 1455, 11, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 5, 851, 1044, 1453, 2, 156, 4, 4, 6, 5, 8, 6, 10, 7, 12, 8, 14, 9, 16, 10, 18, 11, 20, 12, 22, 13, 24, 14, 26, 15, 28, 16, 30, 17, 32, 18, 34, 19, 36, 20, 38, 21, 40, 22, 42, 23, 44, 24, 46, 25, 48, 26, 50, 27, 52, 28, 54, 29, 56, 30, 58, 31, 60, 32, 62, 33, 64, 34, 66, 35, 68, 36, 70, 37, 72, 38, 74, 39, 76, 40, 78, 41, 80, 42, 82, 43, 84, 44, 86, 45, 88, 46, 90, 47, 92, 48, 94, 49, 96, 50, 98, 51, 100, 52, 102, 53, 104, 54, 106, 55, 108, 56, 110, 57, 112, 58, 114, 59, 116, 60, 118, 61, 120, 62, 122, 63, 124, 64, 126, 65, 128, 66, 130, 67, 132, 68, 134, 69, 136, 70, 138, 71, 140, 72, 142, 73, 144, 74, 146, 75, 148, 76, 150, 77, 152, 78, 154, 79, 156, 80, 158, 81, 160, 82, 162, 83, 164, 84, 166, 85, 168, 86, 170, 87, 172, 88, 174, 89, 176, 90, 178, 91, 180, 92, 182, 93, 184, 94, 186, 95, 188, 96, 190, 97, 192, 98, 194, 99, 196, 100, 198, 101, 200, 102, 202, 103, 204, 104, 206, 105, 208, 106, 210, 107, 212, 2, 214, 2, 216, 2, 218, 108, 220, 2, 222, 2, 224, 109, 226, 110, 228, 111, 230, 112, 232, 113, 234, 114, 236, 115, 238, 116, 240, 117, 242, 118, 244, 119, 246, 120, 248, 121, 250, 122, 252, 123, 254, 124, 256, 125, 258, 126, 260, 127, 262, 128, 264, 129, 266, 130, 268, 131, 270, 132, 272, 133, 274, 134, 276, 135, 278, 136, 280, 137, 282, 138, 284, 139, 286, 140, 288, 2, 290, 2, 292, 2, 294, 141, 296, 142, 298, 143, 300, 144, 302, 2, 304, 2, 306, 145, 308, 146, 310, 147, 4, 2, 3, 19, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 3, 2, 41, 41, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 2, 1599, 2, 4, 3, 2, 2, 2, 2, 6, 3, 2, 2, 2, 2, 8, 3, 2, 2, 2, 2, 10, 3, 2, 2, 2, 2, 12, 3, 2, 2, 2, 2, 14, 3, 2, 2, 2, 2, 16, 3, 2, 2, 2, 2, 18, 3, 2, 2, 2, 2, 20, 3, 2, 2, 2, 2, 22, 3, 2, 2, 2, 2, 24, 3, 2, 2, 2, 2, 26, 3, 2, 2, 2, 2, 28, 3, 2, 2, 2, 2, 30, 3, 2, 2, 2, 2, 32, 3, 2, 2, 2, 2, 34, 3, 2, 2, 2, 2, 36, 3, 2, 2, 2, 2, 38, 3, 2, 2, 2, 2, 40, 3, 2, 2, 2, 2, 42, 3, 2, 2, 2, 2, 44, 3, 2, 2, 2, 2, 46, 3, 2, 2, 2, 2, 48, 3, 2, 2, 2, 2, 50, 3, 2, 2, 2, 2, 52, 3, 2, 2, 2, 2, 54, 3, 2, 2, 2, 2, 56, 3, 2, 2, 2, 2, 58, 3, 2, 2, 2, 2, 60, 3, 2, 2, 2, 2, 62, 3, 2, 2, 2, 2, 64, 3, 2, 2, 2, 2, 66, 3, 2, 2, 2, 2, 68, 3, 2, 2, 2, 2, 70, 3, 2, 2, 2, 2, 72, 3, 2, 2, 2, 2, 74, 3, 2, 2, 2, 2, 76, 3, 2, 2, 2, 2, 78, 3, 2, 2, 2, 2, 80, 3, 2, 2, 2, 2, 82, 3, 2, 2, 2, 2, 84, 3, 2, 2, 2, 2, 86, 3, 2, 2, 2, 2, 88, 3, 2, 2, 2, 2, 90, 3, 2, 2, 2, 2, 92, 3, 2, 2, 2, 2, 94, 3, 2, 2, 2, 2, 96, 3, 2, 2, 2, 2, 98, 3, 2, 2, 2, 2, 100, 3, 2, 2, 2, 2, 102, 3, 2, 2, 2, 2, 104, 3, 2, 2, 2, 2, 106, 3, 2, 2, 2, 2, 108, 3, 2, 2, 2, 2, 110, 3, 2, 2, 2, 2, 112, 3, 2, 2, 2, 2, 114, 3, 2, 2, 2, 2, 116, 3, 2, 2, 2, 2, 118, 3, 2, 2, 2, 2, 120, 3, 2, 2, 2, 2, 122, 3, 2, 2, 2, 2, 124, 3, 2, 2, 2, 2, 126, 3, 2, 2, 2, 2, 128, 3, 2, 2, 2, 2, 130, 3, 2, 2, 2, 2, 132, 3, 2, 2, 2, 2, 134, 3, 2, 2, 2, 2, 136, 3, 2, 2, 2, 2, 138, 3, 2, 2, 2, 2, 140, 3, 2, 2, 2, 2, 142, 3, 2, 2, 2, 2, 144, 3, 2, 2, 2, 2, 146, 3, 2, 2, 2, 2, 148, 3, 2, 2, 2, 2, 150, 3, 2, 2, 2, 2, 152, 3, 2, 2, 2, 2, 154, 3, 2, 2, 2, 2, 156, 3, 2, 2, 2, 2, 158, 3, 2, 2, 2, 2, 160, 3, 2, 2, 2, 2, 162, 3, 2, 2, 2, 2, 164, 3, 2, 2, 2, 2, 166, 3, 2, 2, 2, 2, 168, 3, 2, 2, 2, 2, 170, 3, 2, 2, 2, 2, 172, 3, 2, 2, 2, 2, 174, 3, 2, 2, 2, 2, 176, 3, 2, 2, 2, 2, 178, 3, 2, 2, 2, 2, 180, 3, 2, 2, 2, 2, 182, 3, 2, 2, 2, 2, 184, 3, 2, 2, 2, 2, 186, 3, 2, 2, 2, 2, 188, 3, 2, 2, 2, 2, 190, 3, 2, 2, 2, 2, 192, 3, 2, 2, 2, 2, 194, 3, 2, 2, 2, 2, 196, 3, 2, 2, 2, 2, 198, 3, 2, 2, 2, 2, 200, 3, 2, 2, 2, 2, 202, 3, 2, 2, 2, 2, 204, 3, 2, 2, 2, 2, 206, 3, 2, 2, 2, 2, 208, 3, 2, 2, 2, 2, 210, 3, 2, 2, 2, 2, 218, 3, 2, 2, 2, 2, 224, 3, 2, 2, 2, 2, 226, 3, 2, 2, 2, 2, 228, 3, 2, 2, 2, 3, 230, 3, 2, 2, 2, 3, 232, 3, 2, 2, 2, 3, 234, 3, 2, 2, 2, 3, 236, 3, 2, 2, 2, 3, 238, 3, 2, 2, 2, 3, 240, 3, 2, 2, 2, 3, 242, 3, 2, 2, 2, 3, 244, 3, 2, 2, 2, 3, 246, 3, 2, 2, 2, 3, 248, 3, 2, 2, 2, 3, 250, 3, 2, 2, 2, 3, 252, 3, 2, 2, 2, 3, 254, 3, 2, 2, 2, 3, 256, 3, 2, 2, 2, 3, 258, 3, 2, 2, 2, 3, 260, 3, 2, 2, 2, 3, 262, 3, 2, 2, 2, 3, 264, 3, 2, 2, 2, 3, 266, 3, 2, 2, 2, 3, 268, 3, 2, 2, 2, 3, 270, 3, 2, 2, 2, 3, 272, 3, 2, 2, 2, 3, 274, 3, 2, 2, 2, 3, 276, 3, 2, 2, 2, 3, 278, 3, 2, 2, 2, 3, 280, 3, 2, 2, 2, 3, 282, 3, 2, 2, 2, 3, 284, 3, 2, 2, 2, 3, 286, 3, 2, 2, 2, 3, 294, 3, 2, 2, 2, 3, 296, 3, 2, 2, 2, 3, 298, 3, 2, 2, 2, 3, 300, 3, 2, 2, 2, 3, 306, 3, 2, 2, 2, 3, 308, 3, 2, 2, 2, 3, 310, 3, 2, 2, 2, 4, 312, 3, 2, 2, 2, 6, 315, 3, 2, 2, 2, 8, 317, 3, 2, 2, 2, 10, 319, 3, 2, 2, 2, 12, 321, 3, 2, 2, 2, 14, 323, 3, 2, 2, 2, 16, 325, 3, 2, 2, 2, 18, 327, 3, 2, 2, 2, 20, 329, 3, 2, 2, 2, 22, 331, 3, 2, 2, 2, 24, 334, 3, 2, 2, 2, 26, 336, 3, 2, 2, 2, 28, 338, 3, 2, 2, 2, 30, 341, 3, 2, 2, 2, 32, 343, 3, 2, 2, 2, 34, 345, 3, 2, 2, 2, 36, 347, 3, 2, 2, 2, 38, 349, 3, 2, 2, 2, 40, 351, 3, 2, 2, 2, 42, 354, 3, 2, 2, 2, 44, 357, 3, 2, 2, 2, 46, 359, 3, 2, 2, 2, 48, 361, 3, 2, 2, 2, 50, 363, 3, 2, 2, 2, 52, 365, 3, 2, 2, 2, 54, 368, 3, 2, 2, 2, 56, 371, 3, 2, 2, 2, 58, 374, 3, 2, 2, 2, 60, 377, 3, 2, 2, 2, 62, 379, 3, 2, 2, 2, 64, 382, 3, 2, 2, 2, 66, 385, 3, 2, 2, 2, 68, 387, 3, 2, 2, 2, 70, 390, 3, 2, 2, 2, 72, 393, 3, 2, 2, 2, 74, 417, 3, 2, 2, 2, 76, 419, 3, 2, 2, 2, 78, 428, 3, 2, 2, 2, 80, 436, 3, 2, 2, 2, 82, 444, 3, 2, 2, 2, 84, 452, 3, 2, 2, 2, 86, 455, 3, 2, 2, 2, 88, 462, 3, 2, 2, 2, 90, 467, 3, 2, 2, 2, 92, 471, 3, 2, 2, 2, 94, 480, 3, 2, 2, 2, 96, 489, 3, 2, 2, 2, 98, 498, 3, 2, 2, 2, 100, 504, 3, 2, 2, 2, 102, 511, 3, 2, 2, 2, 104, 518, 3, 2, 2, 2, 106, 524, 3, 2, 2, 2, 108, 531, 3, 2, 2, 2, 110, 540, 3, 2, 2, 2, 112, 547, 3, 2, 2, 2, 114, 557, 3, 2, 2, 2, 116, 566, 3, 2, 2, 2, 118, 576, 3, 2, 2, 2, 120, 581, 3, 2, 2, 2, 122, 587, 3, 2, 2, 2, 124, 593, 3, 2, 2, 2, 126, 598, 3, 2, 2, 2, 128, 626, 3, 2, 2, 2, 130, 628, 3, 2, 2, 2, 132, 638, 3, 2, 2, 2, 134, 641, 3, 2, 2, 2, 136, 646, 3, 2, 2, 2, 138, 652, 3, 2, 2, 2, 140, 655, 3, 2, 2, 2, 142, 659, 3, 2, 2, 2, 144, 666, 3, 2, 2, 2, 146, 673, 3, 2, 2, 2, 148, 679, 3, 2, 2, 2, 150, 688, 3, 2, 2, 2, 152, 694, 3, 2, 2, 2, 154, 702, 3, 2, 2, 2, 156, 707, 3, 2, 2, 2, 158, 714, 3, 2, 2, 2, 160, 719, 3, 2, 2, 2, 162, 726, 3, 2, 2, 2, 164, 733, 3, 2, 2, 2, 166, 741, 3, 2, 2, 2, 168, 750, 3, 2, 2, 2, 170, 755, 3, 2, 2, 2, 172, 764, 3, 2, 2, 2, 174, 770, 3, 2, 2, 2, 176, 777, 3, 2, 2, 2, 178, 793, 3, 2, 2, 2, 180, 832, 3, 2, 2, 2, 182, 843, 3, 2, 2, 2, 184, 845, 3, 2, 2, 2, 186, 857, 3, 2, 2, 2, 188, 881, 3, 2, 2, 2, 190, 889, 3, 2, 2, 2, 192, 897, 3, 2, 2, 2, 194, 902, 3, 2, 2, 2, 196, 907, 3, 2, 2, 2, 198, 914, 3, 2, 2, 2, 200, 931, 3, 2, 2, 2, 202, 945, 3, 2, 2, 2, 204, 962, 3, 2, 2, 2, 206, 982, 3, 2, 2, 2, 208, 985, 3, 2, 2, 2, 210, 994, 3, 2, 2, 2, 212, 1001, 3, 2, 2, 2, 214, 1003, 3, 2, 2, 2, 216, 1005, 3, 2, 2, 2, 218, 1007, 3, 2, 2, 2, 220, 1016, 3, 2, 2, 2, 222, 1018, 3, 2, 2, 2, 224, 1021, 3, 2, 2, 2, 226, 1027, 3, 2, 2, 2, 228, 1038, 3, 2, 2, 2, 230, 1052, 3, 2, 2, 2, 232, 1280, 3, 2, 2, 2, 234, 1282, 3, 2, 2, 2, 236, 1284, 3, 2, 2, 2, 238, 1286, 3, 2, 2, 2, 240, 1288, 3, 2, 2, 2, 242, 1290, 3, 2, 2, 2, 244, 1292, 3, 2, 2, 2, 246, 1294, 3, 2, 2, 2, 248, 1296, 3, 2, 2, 2, 250, 1298, 3, 2, 2, 2, 252, 1301, 3, 2, 2, 2, 254, 1304, 3, 2, 2, 2, 256, 1306, 3, 2, 2, 2, 258, 1308, 3, 2, 2, 2, 260, 1310, 3, 2, 2, 2, 262, 1312, 3, 2, 2, 2, 264, 1314, 3, 2, 2, 2, 266, 1316, 3, 2, 2, 2, 268, 1319, 3, 2, 2, 2, 270, 1324, 3, 2, 2, 2, 272, 1329, 3, 2, 2, 2, 274, 1331, 3, 2, 2, 2, 276, 1347, 3, 2, 2, 2, 278, 1356, 3, 2, 2, 2, 280, 1372, 3, 2, 2, 2, 282, 1374, 3, 2, 2, 2, 284, 1381, 3, 2, 2, 2, 286, 1385, 3, 2, 2, 2, 288, 1391, 3, 2, 2, 2, 290, 1393, 3, 2, 2, 2, 292, 1395, 3, 2, 2, 2, 294, 1397, 3, 2, 2, 2, 296, 1405, 3, 2, 2, 2, 298, 1411, 3, 2, 2, 2, 300, 1418, 3, 2, 2, 2, 302, 1425, 3, 2, 2, 2, 304, 1427, 3, 2, 2, 2, 306, 1430, 3, 2, 2, 2, 308, 1436, 3, 2, 2, 2, 310, 1447, 3, 2, 2, 2, 312, 313, 7, 125, 2, 2, 313, 314, 8, 2, 2, 2, 314, 5, 3, 2, 2, 2, 315, 316, 7, 127, 2, 2, 316, 7, 3, 2, 2, 2, 317, 318, 7, 93, 2, 2, 318, 9, 3, 2, 2, 2, 319, 320, 7, 95, 2, 2, 320, 11, 3, 2, 2, 2, 321, 322, 7, 42, 2, 2, 322, 13, 3, 2, 2, 2, 323, 324, 7, 43, 2, 2, 324, 15, 3, 2, 2, 2, 325, 326, 7, 61, 2, 2, 326, 17, 3, 2, 2, 2, 327, 328, 7, 60, 2, 2, 328, 19, 3, 2, 2, 2, 329, 330, 7, 46, 2, 2, 330, 21, 3, 2, 2, 2, 331, 332, 7, 48, 2, 2, 332, 333, 7, 48, 2, 2, 333, 23, 3, 2, 2, 2, 334, 335, 7, 65, 2, 2, 335, 25, 3, 2, 2, 2, 336, 337, 7, 48, 2, 2, 337, 27, 3, 2, 2, 2, 338, 339, 7, 47, 2, 2, 339, 340, 7, 64, 2, 2, 340, 29, 3, 2, 2, 2, 341, 342, 7, 45, 2, 2, 342, 31, 3, 2, 2, 2, 343, 344, 7, 47, 2, 2, 344, 33, 3, 2, 2, 2, 345, 346, 7, 44, 2, 2, 346, 35, 3, 2, 2, 2, 347, 348, 7, 49, 2, 2, 348, 37, 3, 2, 2, 2, 349, 350, 7, 39, 2, 2, 350, 39, 3, 2, 2, 2, 351, 352, 7, 45, 2, 2, 352, 353, 7, 45, 2, 2, 353, 41, 3, 2, 2, 2, 354, 355, 7, 47, 2, 2, 355, 356, 7, 47, 2, 2, 356, 43, 3, 2, 2, 2, 357, 358, 7, 40, 2, 2, 358, 45, 3, 2, 2, 2, 359, 360, 7, 128, 2, 2, 360, 47, 3, 2, 2, 2, 361, 362, 7, 96, 2, 2, 362, 49, 3, 2, 2, 2, 363, 364, 7, 126, 2, 2, 364, 51, 3, 2, 2, 2, 365, 366, 7, 62, 2, 2, 366, 367, 7, 62, 2, 2, 367, 53, 3, 2, 2, 2, 368, 369, 7, 64, 2, 2, 369, 370, 7, 64, 2, 2, 370, 55, 3, 2, 2, 2, 371, 372, 7, 63, 2, 2, 372, 373, 7, 63, 2, 2, 373, 57, 3, 2, 2, 2, 374, 375, 7, 35, 2, 2, 375, 376, 7, 63, 2, 2, 376, 59, 3, 2, 2, 2, 377, 378, 7, 62, 2, 2, 378, 61, 3, 2, 2, 2, 379, 380, 7, 62, 2, 2, 380, 381, 7, 63, 2, 2, 381, 63, 3, 2, 2, 2, 382, 383, 7, 64, 2, 2, 383, 384, 7, 63, 2, 2, 384, 65, 3, 2, 2, 2, 385, 386, 7, 64, 2, 2, 386, 67, 3, 2, 2, 2, 387, 388, 7, 40, 2, 2, 388, 389, 7, 40, 2, 2, 389, 69, 3, 2, 2, 2, 390, 391, 7, 126, 2, 2, 391, 392, 7, 126, 2, 2, 392, 71, 3, 2, 2, 2, 393, 394, 7, 63, 2, 2, 394, 73, 3, 2, 2, 2, 395, 396, 7, 45, 2, 2, 396, 418, 7, 63, 2, 2, 397, 398, 7, 47, 2, 2, 398, 418, 7, 63, 2, 2, 399, 400, 7, 44, 2, 2, 400, 418, 7, 63, 2, 2, 401, 402, 7, 49, 2, 2, 402, 418, 7, 63, 2, 2, 403, 404, 7, 39, 2, 2, 404, 418, 7, 63, 2, 2, 405, 406, 7, 62, 2, 2, 406, 407, 7, 62, 2, 2, 407, 418, 7, 63, 2, 2, 408, 409, 7, 64, 2, 2, 409, 410, 7, 64, 2, 2, 410, 418, 7, 63, 2, 2, 411, 412, 7, 40, 2, 2, 412, 418, 7, 63, 2, 2, 413, 414, 7, 126, 2, 2, 414, 418, 7, 63, 2, 2, 415, 416, 7, 96, 2, 2, 416, 418, 7, 63, 2, 2, 417, 395, 3, 2, 2, 2, 417, 397, 3, 2, 2, 2, 417, 399, 3, 2, 2, 2, 417, 401, 3, 2, 2, 2, 417, 403, 3, 2, 2, 2, 417, 405, 3, 2, 2, 2, 417, 408, 3, 2, 2, 2, 417, 411, 3, 2, 2, 2, 417, 413, 3, 2, 2, 2, 417, 415, 3, 2, 2, 2, 418, 75, 3, 2, 2, 2, 419, 420, 7, 107, 2, 2, 420, 421, 7, 111, 2, 2, 421, 422, 7, 114, 2, 2, 422, 423, 7, 113, 2, 2, 423, 424, 7, 116, 2, 2, 424, 425, 7, 118, 2, 2, 425, 426, 3, 2, 2, 2, 426, 427, 8, 38, 3, 2, 427, 77, 3, 2, 2, 2, 428, 429, 7, 118, 2, 2, 429, 430, 7, 123, 2, 2, 430, 431, 7, 114, 2, 2, 431, 432, 7, 103, 2, 2, 432, 433, 7, 102, 2, 2, 433, 434, 7, 103, 2, 2, 434, 435, 7, 104, 2, 2, 435, 79, 3, 2, 2, 2, 436, 437, 7, 37, 2, 2, 437, 438, 7, 114, 2, 2, 438, 439, 7, 116, 2, 2, 439, 440, 7, 99, 2, 2, 440, 441, 7, 105, 2, 2, 441, 442, 7, 111, 2, 2, 442, 443, 7, 99, 2, 2, 443, 81, 3, 2, 2, 2, 444, 445, 7, 116, 2, 2, 445, 446, 7, 103, 2, 2, 446, 447, 7, 117, 2, 2, 447, 448, 7, 103, 2, 2, 448, 449, 7, 116, 2, 2, 449, 450, 7, 120, 2, 2, 450, 451, 7, 103, 2, 2, 451, 83, 3, 2, 2, 2, 452, 453, 7, 114, 2, 2, 453, 454, 7, 101, 2, 2, 454, 85, 3, 2, 2, 2, 455, 456, 7, 118, 2, 2, 456, 457, 7, 99, 2, 2, 457, 458, 7, 116, 2, 2, 458, 459, 7, 105, 2, 2, 459, 460, 7, 103, 2, 2, 460, 461, 7, 118, 2, 2, 461, 87, 3, 2, 2, 2, 462, 463, 7, 110, 2, 2, 463, 464, 7, 107, 2, 2, 464, 465, 7, 112, 2, 2, 465, 466, 7, 109, 2, 2, 466, 89, 3, 2, 2, 2, 467, 468, 7, 101, 2, 2, 468, 469, 7, 114, 2, 2, 469, 470, 7, 119, 2, 2, 470, 91, 3, 2, 2, 2, 471, 472, 7, 101, 2, 2, 472, 473, 7, 113, 2, 2, 473, 474, 7, 102, 2, 2, 474, 475, 7, 103, 2, 2, 475, 476, 7, 97, 2, 2, 476, 477, 7, 117, 2, 2, 477, 478, 7, 103, 2, 2, 478, 479, 7, 105, 2, 2, 479, 93, 3, 2, 2, 2, 480, 481, 7, 102, 2, 2, 481, 482, 7, 99, 2, 2, 482, 483, 7, 118, 2, 2, 483, 484, 7, 99, 2, 2, 484, 485, 7, 97, 2, 2, 485, 486, 7, 117, 2, 2, 486, 487, 7, 103, 2, 2, 487, 488, 7, 105, 2, 2, 488, 95, 3, 2, 2, 2, 489, 490, 7, 103, 2, 2, 490, 491, 7, 112, 2, 2, 491, 492, 7, 101, 2, 2, 492, 493, 7, 113, 2, 2, 493, 494, 7, 102, 2, 2, 494, 495, 7, 107, 2, 2, 495, 496, 7, 112, 2, 2, 496, 497, 7, 105, 2, 2, 497, 97, 3, 2, 2, 2, 498, 499, 7, 101, 2, 2, 499, 500, 7, 113, 2, 2, 500, 501, 7, 112, 2, 2, 501, 502, 7, 117, 2, 2, 502, 503, 7, 118, 2, 2, 503, 99, 3, 2, 2, 2, 504, 505, 7, 103, 2, 2, 505, 506, 7, 122, 2, 2, 506, 507, 7, 118, 2, 2, 507, 508, 7, 103, 2, 2, 508, 509, 7, 116, 2, 2, 509, 510, 7, 112, 2, 2, 510, 101, 3, 2, 2, 2, 511, 512, 7, 103, 2, 2, 512, 513, 7, 122, 2, 2, 513, 514, 7, 114, 2, 2, 514, 515, 7, 113, 2, 2, 515, 516, 7, 116, 2, 2, 516, 517, 7, 118, 2, 2, 517, 103, 3, 2, 2, 2, 518, 519, 7, 99, 2, 2, 519, 520, 7, 110, 2, 2, 520, 521, 7, 107, 2, 2, 521, 522, 7, 105, 2, 2, 522, 523, 7, 112, 2, 2, 523, 105, 3, 2, 2, 2, 524, 525, 7, 107, 2, 2, 525, 526, 7, 112, 2, 2, 526, 527, 7, 110, 2, 2, 527, 528, 7, 107, 2, 2, 528, 529, 7, 112, 2, 2, 529, 530, 7, 103, 2, 2, 530, 107, 3, 2, 2, 2, 531, 532, 7, 120, 2, 2, 532, 533, 7, 113, 2, 2, 533, 534, 7, 110, 2, 2, 534, 535, 7, 99, 2, 2, 535, 536, 7, 118, 2, 2, 536, 537, 7, 107, 2, 2, 537, 538, 7, 110, 2, 2, 538, 539, 7, 103, 2, 2, 539, 109, 3, 2, 2, 2, 540, 541, 7, 117, 2, 2, 541, 542, 7, 118, 2, 2, 542, 543, 7, 99, 2, 2, 543, 544, 7, 118, 2, 2, 544, 545, 7, 107, 2, 2, 545, 546, 7, 101, 2, 2, 546, 111, 3, 2, 2, 2, 547, 548, 7, 107, 2, 2, 548, 549, 7, 112, 2, 2, 549, 550, 7, 118, 2, 2, 550, 551, 7, 103, 2, 2, 551, 552, 7, 116, 2, 2, 552, 553, 7, 116, 2, 2, 553, 554, 7, 119, 2, 2, 554, 555, 7, 114, 2, 2, 555, 556, 7, 118, 2, 2, 556, 113, 3, 2, 2, 2, 557, 558, 7, 116, 2, 2, 558, 559, 7, 103, 2, 2, 559, 560, 7, 105, 2, 2, 560, 561, 7, 107, 2, 2, 561, 562, 7, 117, 2, 2, 562, 563, 7, 118, 2, 2, 563, 564, 7, 103, 2, 2, 564, 565, 7, 116, 2, 2, 565, 115, 3, 2, 2, 2, 566, 567, 7, 97, 2, 2, 567, 568, 7, 97, 2, 2, 568, 569, 7, 99, 2, 2, 569, 570, 7, 102, 2, 2, 570, 571, 7, 102, 2, 2, 571, 572, 7, 116, 2, 2, 572, 573, 7, 103, 2, 2, 573, 574, 7, 117, 2, 2, 574, 575, 7, 117, 2, 2, 575, 117, 3, 2, 2, 2, 576, 577, 7, 97, 2, 2, 577, 578, 7, 97, 2, 2, 578, 579, 7, 124, 2, 2, 579, 580, 7, 114, 2, 2, 580, 119, 3, 2, 2, 2, 581, 582, 7, 97, 2, 2, 582, 583, 7, 97, 2, 2, 583, 584, 7, 111, 2, 2, 584, 585, 7, 103, 2, 2, 585, 586, 7, 111, 2, 2, 586, 121, 3, 2, 2, 2, 587, 588, 7, 97, 2, 2, 588, 589, 7, 97, 2, 2, 589, 590, 7, 117, 2, 2, 590, 591, 7, 117, 2, 2, 591, 592, 7, 99, 2, 2, 592, 123, 3, 2, 2, 2, 593, 594, 7, 97, 2, 2, 594, 595, 7, 97, 2, 2, 595, 596, 7, 111, 2, 2, 596, 597, 7, 99, 2, 2, 597, 125, 3, 2, 2, 2, 598, 599, 7, 101, 2, 2, 599, 600, 7, 99, 2, 2, 600, 601, 7, 110, 2, 2, 601, 602, 7, 110, 2, 2, 602, 603, 7, 107, 2, 2, 603, 604, 7, 112, 2, 2, 604, 605, 7, 105, 2, 2, 605, 127, 3, 2, 2, 2, 606, 607, 7, 97, 2, 2, 607, 608, 7, 97, 2, 2, 608, 609, 7, 117, 2, 2, 609, 610, 7, 118, 2, 2, 610, 611, 7, 99, 2, 2, 611, 612, 7, 101, 2, 2, 612, 613, 7, 109, 2, 2, 613, 614, 7, 101, 2, 2, 614, 615, 7, 99, 2, 2, 615, 616, 7, 110, 2, 2, 616, 627, 7, 110, 2, 2, 617, 618, 7, 97, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 114, 2, 2, 620, 621, 7, 106, 2, 2, 621, 622, 7, 107, 2, 2, 622, 623, 7, 101, 2, 2, 623, 624, 7, 99, 2, 2, 624, 625, 7, 110, 2, 2, 625, 627, 7, 110, 2, 2, 626, 606, 3, 2, 2, 2, 626, 617, 3, 2, 2, 2, 627, 129, 3, 2, 2, 2, 628, 629, 7, 120, 2, 2, 629, 630, 7, 99, 2, 2, 630, 631, 7, 116, 2, 2, 631, 632, 7, 97, 2, 2, 632, 633, 7, 111, 2, 2, 633, 634, 7, 113, 2, 2, 634, 635, 7, 102, 2, 2, 635, 636, 7, 103, 2, 2, 636, 637, 7, 110, 2, 2, 637, 131, 3, 2, 2, 2, 638, 639, 7, 107, 2, 2, 639, 640, 7, 104, 2, 2, 640, 133, 3, 2, 2, 2, 641, 642, 7, 103, 2, 2, 642, 643, 7, 110, 2, 2, 643, 644, 7, 117, 2, 2, 644, 645, 7, 103, 2, 2, 645, 135, 3, 2, 2, 2, 646, 647, 7, 121, 2, 2, 647, 648, 7, 106, 2, 2, 648, 649, 7, 107, 2, 2, 649, 650, 7, 110, 2, 2, 650, 651, 7, 103, 2, 2, 651, 137, 3, 2, 2, 2, 652, 653, 7, 102, 2, 2, 653, 654, 7, 113, 2, 2, 654, 139, 3, 2, 2, 2, 655, 656, 7, 104, 2, 2, 656, 657, 7, 113, 2, 2, 657, 658, 7, 116, 2, 2, 658, 141, 3, 2, 2, 2, 659, 660, 7, 117, 2, 2, 660, 661, 7, 121, 2, 2, 661, 662, 7, 107, 2, 2, 662, 663, 7, 118, 2, 2, 663, 664, 7, 101, 2, 2, 664, 665, 7, 106, 2, 2, 665, 143, 3, 2, 2, 2, 666, 667, 7, 116, 2, 2, 667, 668, 7, 103, 2, 2, 668, 669, 7, 118, 2, 2, 669, 670, 7, 119, 2, 2, 670, 671, 7, 116, 2, 2, 671, 672, 7, 112, 2, 2, 672, 145, 3, 2, 2, 2, 673, 674, 7, 100, 2, 2, 674, 675, 7, 116, 2, 2, 675, 676, 7, 103, 2, 2, 676, 677, 7, 99, 2, 2, 677, 678, 7, 109, 2, 2, 678, 147, 3, 2, 2, 2, 679, 680, 7, 101, 2, 2, 680, 681, 7, 113, 2, 2, 681, 682, 7, 112, 2, 2, 682, 683, 7, 118, 2, 2, 683, 684, 7, 107, 2, 2, 684, 685, 7, 112, 2, 2, 685, 686, 7, 119, 2, 2, 686, 687, 7, 103, 2, 2, 687, 149, 3, 2, 2, 2, 688, 689, 7, 99, 2, 2, 689, 690, 7, 117, 2, 2, 690, 691, 7, 111, 2, 2, 691, 692, 3, 2, 2, 2, 692, 693, 8, 75, 4, 2, 693, 151, 3, 2, 2, 2, 694, 695, 7, 102, 2, 2, 695, 696, 7, 103, 2, 2, 696, 697, 7, 104, 2, 2, 697, 698, 7, 99, 2, 2, 698, 699, 7, 119, 2, 2, 699, 700, 7, 110, 2, 2, 700, 701, 7, 118, 2, 2, 701, 153, 3, 2, 2, 2, 702, 703, 7, 101, 2, 2, 703, 704, 7, 99, 2, 2, 704, 705, 7, 117, 2, 2, 705, 706, 7, 103, 2, 2, 706, 155, 3, 2, 2, 2, 707, 708, 7, 117, 2, 2, 708, 709, 7, 118, 2, 2, 709, 710, 7, 116, 2, 2, 710, 711, 7, 119, 2, 2, 711, 712, 7, 101, 2, 2, 712, 713, 7, 118, 2, 2, 713, 157, 3, 2, 2, 2, 714, 715, 7, 103, 2, 2, 715, 716, 7, 112, 2, 2, 716, 717, 7, 119, 2, 2, 717, 718, 7, 111, 2, 2, 718, 159, 3, 2, 2, 2, 719, 720, 7, 117, 2, 2, 720, 721, 7, 107, 2, 2, 721, 722, 7, 124, 2, 2, 722, 723, 7, 103, 2, 2, 723, 724, 7, 113, 2, 2, 724, 725, 7, 104, 2, 2, 725, 161, 3, 2, 2, 2, 726, 727, 7, 118, 2, 2, 727, 728, 7, 123, 2, 2, 728, 729, 7, 114, 2, 2, 729, 730, 7, 103, 2, 2, 730, 731, 7, 107, 2, 2, 731, 732, 7, 102, 2, 2, 732, 163, 3, 2, 2, 2, 733, 734, 7, 109, 2, 2, 734, 735, 7, 107, 2, 2, 735, 736, 7, 101, 2, 2, 736, 737, 7, 109, 2, 2, 737, 738, 7, 99, 2, 2, 738, 739, 7, 117, 2, 2, 739, 740, 7, 111, 2, 2, 740, 165, 3, 2, 2, 2, 741, 742, 7, 116, 2, 2, 742, 743, 7, 103, 2, 2, 743, 744, 7, 117, 2, 2, 744, 745, 7, 113, 2, 2, 745, 746, 7, 119, 2, 2, 746, 747, 7, 116, 2, 2, 747, 748, 7, 101, 2, 2, 748, 749, 7, 103, 2, 2, 749, 167, 3, 2, 2, 2, 750, 751, 7, 119, 2, 2, 751, 752, 7, 117, 2, 2, 752, 753, 7, 103, 2, 2, 753, 754, 7, 117, 2, 2, 754, 169, 3, 2, 2, 2, 755, 756, 7, 101, 2, 2, 756, 757, 7, 110, 2, 2, 757, 758, 7, 113, 2, 2, 758, 759, 7, 100, 2, 2, 759, 760, 7, 100, 2, 2, 760, 761, 7, 103, 2, 2, 761, 762, 7, 116, 2, 2, 762, 763, 7, 117, 2, 2, 763, 171, 3, 2, 2, 2, 764, 765, 7, 100, 2, 2, 765, 766, 7, 123, 2, 2, 766, 767, 7, 118, 2, 2, 767, 768, 7, 103, 2, 2, 768, 769, 7, 117, 2, 2, 769, 173, 3, 2, 2, 2, 770, 771, 7, 101, 2, 2, 771, 772, 7, 123, 2, 2, 772, 773, 7, 101, 2, 2, 773, 774, 7, 110, 2, 2, 774, 775, 7, 103, 2, 2, 775, 776, 7, 117, 2, 2, 776, 175, 3, 2, 2, 2, 777, 778, 7, 35, 2, 2, 778, 177, 3, 2, 2, 2, 779, 780, 7, 117, 2, 2, 780, 781, 7, 107, 2, 2, 781, 782, 7, 105, 2, 2, 782, 783, 7, 112, 2, 2, 783, 784, 7, 103, 2, 2, 784, 794, 7, 102, 2, 2, 785, 786, 7, 119, 2, 2, 786, 787, 7, 112, 2, 2, 787, 788, 7, 117, 2, 2, 788, 789, 7, 107, 2, 2, 789, 790, 7, 105, 2, 2, 790, 791, 7, 112, 2, 2, 791, 792, 7, 103, 2, 2, 792, 794, 7, 102, 2, 2, 793, 779, 3, 2, 2, 2, 793, 785, 3, 2, 2, 2, 794, 179, 3, 2, 2, 2, 795, 796, 7, 100, 2, 2, 796, 797, 7, 123, 2, 2, 797, 798, 7, 118, 2, 2, 798, 833, 7, 103, 2, 2, 799, 800, 7, 121, 2, 2, 800, 801, 7, 113, 2, 2, 801, 802, 7, 116, 2, 2, 802, 833, 7, 102, 2, 2, 803, 804, 7, 102, 2, 2, 804, 805, 7, 121, 2, 2, 805, 806, 7, 113, 2, 2, 806, 807, 7, 116, 2, 2, 807, 833, 7, 102, 2, 2, 808, 809, 7, 100, 2, 2, 809, 810, 7, 113, 2, 2, 810, 811, 7, 113, 2, 2, 811, 833, 7, 110, 2, 2, 812, 813, 7, 101, 2, 2, 813, 814, 7, 106, 2, 2, 814, 815, 7, 99, 2, 2, 815, 833, 7, 116, 2, 2, 816, 817, 7, 117, 2, 2, 817, 818, 7, 106, 2, 2, 818, 819, 7, 113, 2, 2, 819, 820, 7, 116, 2, 2, 820, 833, 7, 118, 2, 2, 821, 822, 7, 107, 2, 2, 822, 823, 7, 112, 2, 2, 823, 833, 7, 118, 2, 2, 824, 825, 7, 110, 2, 2, 825, 826, 7, 113, 2, 2, 826, 827, 7, 112, 2, 2, 827, 833, 7, 105, 2, 2, 828, 829, 7, 120, 2, 2, 829, 830, 7, 113, 2, 2, 830, 831, 7, 107, 2, 2, 831, 833, 7, 102, 2, 2, 832, 795, 3, 2, 2, 2, 832, 799, 3, 2, 2, 2, 832, 803, 3, 2, 2, 2, 832, 808, 3, 2, 2, 2, 832, 812, 3, 2, 2, 2, 832, 816, 3, 2, 2, 2, 832, 821, 3, 2, 2, 2, 832, 824, 3, 2, 2, 2, 832, 828, 3, 2, 2, 2, 833, 181, 3, 2, 2, 2, 834, 835, 7, 118, 2, 2, 835, 836, 7, 116, 2, 2, 836, 837, 7, 119, 2, 2, 837, 844, 7, 103, 2, 2, 838, 839, 7, 104, 2, 2, 839, 840, 7, 99, 2, 2, 840, 841, 7, 110, 2, 2, 841, 842, 7, 117, 2, 2, 842, 844, 7, 103, 2, 2, 843, 834, 3, 2, 2, 2, 843, 838, 3, 2, 2, 2, 844, 183, 3, 2, 2, 2, 845, 846, 7, 125, 2, 2, 846, 847, 7, 125, 2, 2, 847, 851, 3, 2, 2, 2, 848, 850, 11, 2, 2, 2, 849, 848, 3, 2, 2, 2, 850, 853, 3, 2, 2, 2, 851, 852, 3, 2, 2, 2, 851, 849, 3, 2, 2, 2, 852, 854, 3, 2, 2, 2, 853, 851, 3, 2, 2, 2, 854, 855, 7, 127, 2, 2, 855, 856, 7, 127, 2, 2, 856, 185, 3, 2, 2, 2, 857, 863, 7, 36, 2, 2, 858, 859, 7, 94, 2, 2, 859, 862, 7, 36, 2, 2, 860, 862, 10, 2, 2, 2, 861, 858, 3, 2, 2, 2, 861, 860, 3, 2, 2, 2, 862, 865, 3, 2, 2, 2, 863, 861, 3, 2, 2, 2, 863, 864, 3, 2, 2, 2, 864, 866, 3, 2, 2, 2, 865, 863, 3, 2, 2, 2, 866, 868, 7, 36, 2, 2, 867, 869, 9, 3, 2, 2, 868, 867, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, 874, 3, 2, 2, 2, 870, 872, 9, 4, 2, 2, 871, 873, 9, 5, 2, 2, 872, 871, 3, 2, 2, 2, 872, 873, 3, 2, 2, 2, 873, 875, 3, 2, 2, 2, 874, 870, 3, 2, 2, 2, 874, 875, 3, 2, 2, 2, 875, 877, 3, 2, 2, 2, 876, 878, 9, 3, 2, 2, 877, 876, 3, 2, 2, 2, 877, 878, 3, 2, 2, 2, 878, 879, 3, 2, 2, 2, 879, 880, 8, 93, 5, 2, 880, 187, 3, 2, 2, 2, 881, 885, 7, 41, 2, 2, 882, 883, 7, 94, 2, 2, 883, 886, 9, 6, 2, 2, 884, 886, 10, 7, 2, 2, 885, 882, 3, 2, 2, 2, 885, 884, 3, 2, 2, 2, 886, 887, 3, 2, 2, 2, 887, 888, 7, 41, 2, 2, 888, 189, 3, 2, 2, 2, 889, 890, 7, 37, 2, 2, 890, 891, 7, 102, 2, 2, 891, 892, 7, 103, 2, 2, 892, 893, 7, 104, 2, 2, 893, 894, 7, 107, 2, 2, 894, 895, 7, 112, 2, 2, 895, 896, 7, 103, 2, 2, 896, 191, 3, 2, 2, 2, 897, 898, 7, 94, 2, 2, 898, 899, 7, 12, 2, 2, 899, 193, 3, 2, 2, 2, 900, 903, 5, 196, 98, 2, 901, 903, 5, 204, 102, 2, 902, 900, 3, 2, 2, 2, 902, 901, 3, 2, 2, 2, 903, 195, 3, 2, 2, 2, 904, 908, 5, 198, 99, 2, 905, 908, 5, 200, 100, 2, 906, 908, 5, 202, 101, 2, 907, 904, 3, 2, 2, 2, 907, 905, 3, 2, 2, 2, 907, 906, 3, 2, 2, 2, 908, 197, 3, 2, 2, 2, 909, 915, 7, 39, 2, 2, 910, 911, 7, 50, 2, 2, 911, 915, 7, 100, 2, 2, 912, 913, 7, 50, 2, 2, 913, 915, 7, 68, 2, 2, 914, 909, 3, 2, 2, 2, 914, 910, 3, 2, 2, 2, 914, 912, 3, 2, 2, 2, 915, 919, 3, 2, 2, 2, 916, 918, 5, 212, 106, 2, 917, 916, 3, 2, 2, 2, 918, 921, 3, 2, 2, 2, 919, 917, 3, 2, 2, 2, 919, 920, 3, 2, 2, 2, 920, 922, 3, 2, 2, 2, 921, 919, 3, 2, 2, 2, 922, 924, 7, 48, 2, 2, 923, 925, 5, 212, 106, 2, 924, 923, 3, 2, 2, 2, 925, 926, 3, 2, 2, 2, 926, 924, 3, 2, 2, 2, 926, 927, 3, 2, 2, 2, 927, 199, 3, 2, 2, 2, 928, 930, 5, 214, 107, 2, 929, 928, 3, 2, 2, 2, 930, 933, 3, 2, 2, 2, 931, 929, 3, 2, 2, 2, 931, 932, 3, 2, 2, 2, 932, 934, 3, 2, 2, 2, 933, 931, 3, 2, 2, 2, 934, 936, 7, 48, 2, 2, 935, 937, 5, 214, 107, 2, 936, 935, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 936, 3, 2, 2, 2, 938, 939, 3, 2, 2, 2, 939, 201, 3, 2, 2, 2, 940, 946, 7, 38, 2, 2, 941, 942, 7, 50, 2, 2, 942, 946, 7, 122, 2, 2, 943, 944, 7, 50, 2, 2, 944, 946, 7, 90, 2, 2, 945, 940, 3, 2, 2, 2, 945, 941, 3, 2, 2, 2, 945, 943, 3, 2, 2, 2, 946, 950, 3, 2, 2, 2, 947, 949, 5, 216, 108, 2, 948, 947, 3, 2, 2, 2, 949, 952, 3, 2, 2, 2, 950, 948, 3, 2, 2, 2, 950, 951, 3, 2, 2, 2, 951, 953, 3, 2, 2, 2, 952, 950, 3, 2, 2, 2, 953, 955, 7, 48, 2, 2, 954, 956, 5, 216, 108, 2, 955, 954, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 955, 3, 2, 2, 2, 957, 958, 3, 2, 2, 2, 958, 203, 3, 2, 2, 2, 959, 963, 5, 208, 104, 2, 960, 963, 5, 210, 105, 2, 961, 963, 5, 206, 103, 2, 962, 959, 3, 2, 2, 2, 962, 960, 3, 2, 2, 2, 962, 961, 3, 2, 2, 2, 963, 967, 3, 2, 2, 2, 964, 965, 9, 8, 2, 2, 965, 968, 9, 9, 2, 2, 966, 968, 7, 110, 2, 2, 967, 964, 3, 2, 2, 2, 967, 966, 3, 2, 2, 2, 967, 968, 3, 2, 2, 2, 968, 205, 3, 2, 2, 2, 969, 970, 7, 50, 2, 2, 970, 972, 9, 10, 2, 2, 971, 973, 5, 212, 106, 2, 972, 971, 3, 2, 2, 2, 973, 974, 3, 2, 2, 2, 974, 972, 3, 2, 2, 2, 974, 975, 3, 2, 2, 2, 975, 983, 3, 2, 2, 2, 976, 978, 7, 39, 2, 2, 977, 979, 5, 212, 106, 2, 978, 977, 3, 2, 2, 2, 979, 980, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 981, 3, 2, 2, 2, 981, 983, 3, 2, 2, 2, 982, 969, 3, 2, 2, 2, 982, 976, 3, 2, 2, 2, 983, 207, 3, 2, 2, 2, 984, 986, 5, 214, 107, 2, 985, 984, 3, 2, 2, 2, 986, 987, 3, 2, 2, 2, 987, 985, 3, 2, 2, 2, 987, 988, 3, 2, 2, 2, 988, 209, 3, 2, 2, 2, 989, 995, 7, 38, 2, 2, 990, 991, 7, 50, 2, 2, 991, 995, 7, 122, 2, 2, 992, 993, 7, 50, 2, 2, 993, 995, 7, 90, 2, 2, 994, 989, 3, 2, 2, 2, 994, 990, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 995, 997, 3, 2, 2, 2, 996, 998, 5, 216, 108, 2, 997, 996, 3, 2, 2, 2, 998, 999, 3, 2, 2, 2, 999, 997, 3, 2, 2, 2, 999, 1000, 3, 2, 2, 2, 1000, 211, 3, 2, 2, 2, 1001, 1002, 9, 11, 2, 2, 1002, 213, 3, 2, 2, 2, 1003, 1004, 9, 12, 2, 2, 1004, 215, 3, 2, 2, 2, 1005, 1006, 9, 13, 2, 2, 1006, 217, 3, 2, 2, 2, 1007, 1011, 5, 220, 110, 2, 1008, 1010, 5, 222, 111, 2, 1009, 1008, 3, 2, 2, 2, 1010, 1013, 3, 2, 2, 2, 1011, 1009, 3, 2, 2, 2, 1011, 1012, 3, 2, 2, 2, 1012, 1014, 3, 2, 2, 2, 1013, 1011, 3, 2, 2, 2, 1014, 1015, 8, 109, 6, 2, 1015, 219, 3, 2, 2, 2, 1016, 1017, 9, 14, 2, 2, 1017, 221, 3, 2, 2, 2, 1018, 1019, 9, 15, 2, 2, 1019, 223, 3, 2, 2, 2, 1020, 1022, 9, 16, 2, 2, 1021, 1020, 3, 2, 2, 2, 1022, 1023, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 1026, 8, 112, 7, 2, 1026, 225, 3, 2, 2, 2, 1027, 1028, 7, 49, 2, 2, 1028, 1029, 7, 49, 2, 2, 1029, 1033, 3, 2, 2, 2, 1030, 1032, 10, 17, 2, 2, 1031, 1030, 3, 2, 2, 2, 1032, 1035, 3, 2, 2, 2, 1033, 1031, 3, 2, 2, 2, 1033, 1034, 3, 2, 2, 2, 1034, 1036, 3, 2, 2, 2, 1035, 1033, 3, 2, 2, 2, 1036, 1037, 8, 113, 8, 2, 1037, 227, 3, 2, 2, 2, 1038, 1039, 7, 49, 2, 2, 1039, 1040, 7, 44, 2, 2, 1040, 1044, 3, 2, 2, 2, 1041, 1043, 11, 2, 2, 2, 1042, 1041, 3, 2, 2, 2, 1043, 1046, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1045, 1047, 3, 2, 2, 2, 1046, 1044, 3, 2, 2, 2, 1047, 1048, 7, 44, 2, 2, 1048, 1049, 7, 49, 2, 2, 1049, 1050, 3, 2, 2, 2, 1050, 1051, 8, 114, 8, 2, 1051, 229, 3, 2, 2, 2, 1052, 1053, 7, 48, 2, 2, 1053, 1054, 7, 100, 2, 2, 1054, 1055, 7, 123, 2, 2, 1055, 1056, 7, 118, 2, 2, 1056, 1057, 7, 103, 2, 2, 1057, 231, 3, 2, 2, 2, 1058, 1059, 7, 100, 2, 2, 1059, 1060, 7, 116, 2, 2, 1060, 1281, 7, 109, 2, 2, 1061, 1062, 7, 113, 2, 2, 1062, 1063, 7, 116, 2, 2, 1063, 1281, 7, 99, 2, 2, 1064, 1065, 7, 109, 2, 2, 1065, 1066, 7, 107, 2, 2, 1066, 1281, 7, 110, 2, 2, 1067, 1068, 7, 117, 2, 2, 1068, 1069, 7, 110, 2, 2, 1069, 1281, 7, 113, 2, 2, 1070, 1071, 7, 112, 2, 2, 1071, 1072, 7, 113, 2, 2, 1072, 1281, 7, 114, 2, 2, 1073, 1074, 7, 99, 2, 2, 1074, 1075, 7, 117, 2, 2, 1075, 1281, 7, 110, 2, 2, 1076, 1077, 7, 114, 2, 2, 1077, 1078, 7, 106, 2, 2, 1078, 1281, 7, 114, 2, 2, 1079, 1080, 7, 99, 2, 2, 1080, 1081, 7, 112, 2, 2, 1081, 1281, 7, 101, 2, 2, 1082, 1083, 7, 100, 2, 2, 1083, 1084, 7, 114, 2, 2, 1084, 1281, 7, 110, 2, 2, 1085, 1086, 7, 101, 2, 2, 1086, 1087, 7, 110, 2, 2, 1087, 1281, 7, 101, 2, 2, 1088, 1089, 7, 108, 2, 2, 1089, 1090, 7, 117, 2, 2, 1090, 1281, 7, 116, 2, 2, 1091, 1092, 7, 99, 2, 2, 1092, 1093, 7, 112, 2, 2, 1093, 1281, 7, 102, 2, 2, 1094, 1095, 7, 116, 2, 2, 1095, 1096, 7, 110, 2, 2, 1096, 1281, 7, 99, 2, 2, 1097, 1098, 7, 100, 2, 2, 1098, 1099, 7, 107, 2, 2, 1099, 1281, 7, 118, 2, 2, 1100, 1101, 7, 116, 2, 2, 1101, 1102, 7, 113, 2, 2, 1102, 1281, 7, 110, 2, 2, 1103, 1104, 7, 114, 2, 2, 1104, 1105, 7, 110, 2, 2, 1105, 1281, 7, 99, 2, 2, 1106, 1107, 7, 114, 2, 2, 1107, 1108, 7, 110, 2, 2, 1108, 1281, 7, 114, 2, 2, 1109, 1110, 7, 100, 2, 2, 1110, 1111, 7, 111, 2, 2, 1111, 1281, 7, 107, 2, 2, 1112, 1113, 7, 117, 2, 2, 1113, 1114, 7, 103, 2, 2, 1114, 1281, 7, 101, 2, 2, 1115, 1116, 7, 116, 2, 2, 1116, 1117, 7, 118, 2, 2, 1117, 1281, 7, 107, 2, 2, 1118, 1119, 7, 103, 2, 2, 1119, 1120, 7, 113, 2, 2, 1120, 1281, 7, 116, 2, 2, 1121, 1122, 7, 117, 2, 2, 1122, 1123, 7, 116, 2, 2, 1123, 1281, 7, 103, 2, 2, 1124, 1125, 7, 110, 2, 2, 1125, 1126, 7, 117, 2, 2, 1126, 1281, 7, 116, 2, 2, 1127, 1128, 7, 114, 2, 2, 1128, 1129, 7, 106, 2, 2, 1129, 1281, 7, 99, 2, 2, 1130, 1131, 7, 99, 2, 2, 1131, 1132, 7, 110, 2, 2, 1132, 1281, 7, 116, 2, 2, 1133, 1134, 7, 108, 2, 2, 1134, 1135, 7, 111, 2, 2, 1135, 1281, 7, 114, 2, 2, 1136, 1137, 7, 100, 2, 2, 1137, 1138, 7, 120, 2, 2, 1138, 1281, 7, 101, 2, 2, 1139, 1140, 7, 101, 2, 2, 1140, 1141, 7, 110, 2, 2, 1141, 1281, 7, 107, 2, 2, 1142, 1143, 7, 116, 2, 2, 1143, 1144, 7, 118, 2, 2, 1144, 1281, 7, 117, 2, 2, 1145, 1146, 7, 99, 2, 2, 1146, 1147, 7, 102, 2, 2, 1147, 1281, 7, 101, 2, 2, 1148, 1149, 7, 116, 2, 2, 1149, 1150, 7, 116, 2, 2, 1150, 1281, 7, 99, 2, 2, 1151, 1152, 7, 100, 2, 2, 1152, 1153, 7, 120, 2, 2, 1153, 1281, 7, 117, 2, 2, 1154, 1155, 7, 117, 2, 2, 1155, 1156, 7, 103, 2, 2, 1156, 1281, 7, 107, 2, 2, 1157, 1158, 7, 117, 2, 2, 1158, 1159, 7, 99, 2, 2, 1159, 1281, 7, 122, 2, 2, 1160, 1161, 7, 117, 2, 2, 1161, 1162, 7, 118, 2, 2, 1162, 1281, 7, 123, 2, 2, 1163, 1164, 7, 117, 2, 2, 1164, 1165, 7, 118, 2, 2, 1165, 1281, 7, 99, 2, 2, 1166, 1167, 7, 117, 2, 2, 1167, 1168, 7, 118, 2, 2, 1168, 1281, 7, 122, 2, 2, 1169, 1170, 7, 102, 2, 2, 1170, 1171, 7, 103, 2, 2, 1171, 1281, 7, 123, 2, 2, 1172, 1173, 7, 118, 2, 2, 1173, 1174, 7, 122, 2, 2, 1174, 1281, 7, 99, 2, 2, 1175, 1176, 7, 122, 2, 2, 1176, 1177, 7, 99, 2, 2, 1177, 1281, 7, 99, 2, 2, 1178, 1179, 7, 100, 2, 2, 1179, 1180, 7, 101, 2, 2, 1180, 1281, 7, 101, 2, 2, 1181, 1182, 7, 99, 2, 2, 1182, 1183, 7, 106, 2, 2, 1183, 1281, 7, 122, 2, 2, 1184, 1185, 7, 118, 2, 2, 1185, 1186, 7, 123, 2, 2, 1186, 1281, 7, 99, 2, 2, 1187, 1188, 7, 118, 2, 2, 1188, 1189, 7, 122, 2, 2, 1189, 1281, 7, 117, 2, 2, 1190, 1191, 7, 118, 2, 2, 1191, 1192, 7, 99, 2, 2, 1192, 1281, 7, 117, 2, 2, 1193, 1194, 7, 117, 2, 2, 1194, 1195, 7, 106, 2, 2, 1195, 1281, 7, 123, 2, 2, 1196, 1197, 7, 117, 2, 2, 1197, 1198, 7, 106, 2, 2, 1198, 1281, 7, 122, 2, 2, 1199, 1200, 7, 110, 2, 2, 1200, 1201, 7, 102, 2, 2, 1201, 1281, 7, 123, 2, 2, 1202, 1203, 7, 110, 2, 2, 1203, 1204, 7, 102, 2, 2, 1204, 1281, 7, 99, 2, 2, 1205, 1206, 7, 110, 2, 2, 1206, 1207, 7, 102, 2, 2, 1207, 1281, 7, 122, 2, 2, 1208, 1209, 7, 110, 2, 2, 1209, 1210, 7, 99, 2, 2, 1210, 1281, 7, 122, 2, 2, 1211, 1212, 7, 118, 2, 2, 1212, 1213, 7, 99, 2, 2, 1213, 1281, 7, 123, 2, 2, 1214, 1215, 7, 118, 2, 2, 1215, 1216, 7, 99, 2, 2, 1216, 1281, 7, 122, 2, 2, 1217, 1218, 7, 100, 2, 2, 1218, 1219, 7, 101, 2, 2, 1219, 1281, 7, 117, 2, 2, 1220, 1221, 7, 101, 2, 2, 1221, 1222, 7, 110, 2, 2, 1222, 1281, 7, 120, 2, 2, 1223, 1224, 7, 118, 2, 2, 1224, 1225, 7, 117, 2, 2, 1225, 1281, 7, 122, 2, 2, 1226, 1227, 7, 110, 2, 2, 1227, 1228, 7, 99, 2, 2, 1228, 1281, 7, 117, 2, 2, 1229, 1230, 7, 101, 2, 2, 1230, 1231, 7, 114, 2, 2, 1231, 1281, 7, 123, 2, 2, 1232, 1233, 7, 101, 2, 2, 1233, 1234, 7, 111, 2, 2, 1234, 1281, 7, 114, 2, 2, 1235, 1236, 7, 101, 2, 2, 1236, 1237, 7, 114, 2, 2, 1237, 1281, 7, 122, 2, 2, 1238, 1239, 7, 102, 2, 2, 1239, 1240, 7, 101, 2, 2, 1240, 1281, 7, 114, 2, 2, 1241, 1242, 7, 102, 2, 2, 1242, 1243, 7, 103, 2, 2, 1243, 1281, 7, 101, 2, 2, 1244, 1245, 7, 107, 2, 2, 1245, 1246, 7, 112, 2, 2, 1246, 1281, 7, 101, 2, 2, 1247, 1248, 7, 99, 2, 2, 1248, 1249, 7, 122, 2, 2, 1249, 1281, 7, 117, 2, 2, 1250, 1251, 7, 100, 2, 2, 1251, 1252, 7, 112, 2, 2, 1252, 1281, 7, 103, 2, 2, 1253, 1254, 7, 101, 2, 2, 1254, 1255, 7, 110, 2, 2, 1255, 1281, 7, 102, 2, 2, 1256, 1257, 7, 117, 2, 2, 1257, 1258, 7, 100, 2, 2, 1258, 1281, 7, 101, 2, 2, 1259, 1260, 7, 107, 2, 2, 1260, 1261, 7, 117, 2, 2, 1261, 1281, 7, 101, 2, 2, 1262, 1263, 7, 107, 2, 2, 1263, 1264, 7, 112, 2, 2, 1264, 1281, 7, 122, 2, 2, 1265, 1266, 7, 100, 2, 2, 1266, 1267, 7, 103, 2, 2, 1267, 1281, 7, 115, 2, 2, 1268, 1269, 7, 117, 2, 2, 1269, 1270, 7, 103, 2, 2, 1270, 1281, 7, 102, 2, 2, 1271, 1272, 7, 102, 2, 2, 1272, 1273, 7, 103, 2, 2, 1273, 1281, 7, 122, 2, 2, 1274, 1275, 7, 107, 2, 2, 1275, 1276, 7, 112, 2, 2, 1276, 1281, 7, 123, 2, 2, 1277, 1278, 7, 116, 2, 2, 1278, 1279, 7, 113, 2, 2, 1279, 1281, 7, 116, 2, 2, 1280, 1058, 3, 2, 2, 2, 1280, 1061, 3, 2, 2, 2, 1280, 1064, 3, 2, 2, 2, 1280, 1067, 3, 2, 2, 2, 1280, 1070, 3, 2, 2, 2, 1280, 1073, 3, 2, 2, 2, 1280, 1076, 3, 2, 2, 2, 1280, 1079, 3, 2, 2, 2, 1280, 1082, 3, 2, 2, 2, 1280, 1085, 3, 2, 2, 2, 1280, 1088, 3, 2, 2, 2, 1280, 1091, 3, 2, 2, 2, 1280, 1094, 3, 2, 2, 2, 1280, 1097, 3, 2, 2, 2, 1280, 1100, 3, 2, 2, 2, 1280, 1103, 3, 2, 2, 2, 1280, 1106, 3, 2, 2, 2, 1280, 1109, 3, 2, 2, 2, 1280, 1112, 3, 2, 2, 2, 1280, 1115, 3, 2, 2, 2, 1280, 1118, 3, 2, 2, 2, 1280, 1121, 3, 2, 2, 2, 1280, 1124, 3, 2, 2, 2, 1280, 1127, 3, 2, 2, 2, 1280, 1130, 3, 2, 2, 2, 1280, 1133, 3, 2, 2, 2, 1280, 1136, 3, 2, 2, 2, 1280, 1139, 3, 2, 2, 2, 1280, 1142, 3, 2, 2, 2, 1280, 1145, 3, 2, 2, 2, 1280, 1148, 3, 2, 2, 2, 1280, 1151, 3, 2, 2, 2, 1280, 1154, 3, 2, 2, 2, 1280, 1157, 3, 2, 2, 2, 1280, 1160, 3, 2, 2, 2, 1280, 1163, 3, 2, 2, 2, 1280, 1166, 3, 2, 2, 2, 1280, 1169, 3, 2, 2, 2, 1280, 1172, 3, 2, 2, 2, 1280, 1175, 3, 2, 2, 2, 1280, 1178, 3, 2, 2, 2, 1280, 1181, 3, 2, 2, 2, 1280, 1184, 3, 2, 2, 2, 1280, 1187, 3, 2, 2, 2, 1280, 1190, 3, 2, 2, 2, 1280, 1193, 3, 2, 2, 2, 1280, 1196, 3, 2, 2, 2, 1280, 1199, 3, 2, 2, 2, 1280, 1202, 3, 2, 2, 2, 1280, 1205, 3, 2, 2, 2, 1280, 1208, 3, 2, 2, 2, 1280, 1211, 3, 2, 2, 2, 1280, 1214, 3, 2, 2, 2, 1280, 1217, 3, 2, 2, 2, 1280, 1220, 3, 2, 2, 2, 1280, 1223, 3, 2, 2, 2, 1280, 1226, 3, 2, 2, 2, 1280, 1229, 3, 2, 2, 2, 1280, 1232, 3, 2, 2, 2, 1280, 1235, 3, 2, 2, 2, 1280, 1238, 3, 2, 2, 2, 1280, 1241, 3, 2, 2, 2, 1280, 1244, 3, 2, 2, 2, 1280, 1247, 3, 2, 2, 2, 1280, 1250, 3, 2, 2, 2, 1280, 1253, 3, 2, 2, 2, 1280, 1256, 3, 2, 2, 2, 1280, 1259, 3, 2, 2, 2, 1280, 1262, 3, 2, 2, 2, 1280, 1265, 3, 2, 2, 2, 1280, 1268, 3, 2, 2, 2, 1280, 1271, 3, 2, 2, 2, 1280, 1274, 3, 2, 2, 2, 1280, 1277, 3, 2, 2, 2, 1281, 233, 3, 2, 2, 2, 1282, 1283, 7, 37, 2, 2, 1283, 235, 3, 2, 2, 2, 1284, 1285, 7, 60, 2, 2, 1285, 237, 3, 2, 2, 2, 1286, 1287, 7, 46, 2, 2, 1287, 239, 3, 2, 2, 2, 1288, 1289, 7, 42, 2, 2, 1289, 241, 3, 2, 2, 2, 1290, 1291, 7, 43, 2, 2, 1291, 243, 3, 2, 2, 2, 1292, 1293, 7, 93, 2, 2, 1293, 245, 3, 2, 2, 2, 1294, 1295, 7, 95, 2, 2, 1295, 247, 3, 2, 2, 2, 1296, 1297, 7, 48, 2, 2, 1297, 249, 3, 2, 2, 2, 1298, 1299, 7, 62, 2, 2, 1299, 1300, 7, 62, 2, 2, 1300, 251, 3, 2, 2, 2, 1301, 1302, 7, 64, 2, 2, 1302, 1303, 7, 64, 2, 2, 1303, 253, 3, 2, 2, 2, 1304, 1305, 7, 45, 2, 2, 1305, 255, 3, 2, 2, 2, 1306, 1307, 7, 47, 2, 2, 1307, 257, 3, 2, 2, 2, 1308, 1309, 7, 62, 2, 2, 1309, 259, 3, 2, 2, 2, 1310, 1311, 7, 64, 2, 2, 1311, 261, 3, 2, 2, 2, 1312, 1313, 7, 44, 2, 2, 1313, 263, 3, 2, 2, 2, 1314, 1315, 7, 49, 2, 2, 1315, 265, 3, 2, 2, 2, 1316, 1317, 7, 125, 2, 2, 1317, 1318, 8, 133, 9, 2, 1318, 267, 3, 2, 2, 2, 1319, 1320, 7, 127, 2, 2, 1320, 1321, 8, 134, 10, 2, 1321, 269, 3, 2, 2, 2, 1322, 1325, 5, 272, 136, 2, 1323, 1325, 5, 280, 140, 2, 1324, 1322, 3, 2, 2, 2, 1324, 1323, 3, 2, 2, 2, 1325, 271, 3, 2, 2, 2, 1326, 1330, 5, 274, 137, 2, 1327, 1330, 5, 276, 138, 2, 1328, 1330, 5, 278, 139, 2, 1329, 1326, 3, 2, 2, 2, 1329, 1327, 3, 2, 2, 2, 1329, 1328, 3, 2, 2, 2, 1330, 273, 3, 2, 2, 2, 1331, 1335, 7, 39, 2, 2, 1332, 1334, 5, 288, 144, 2, 1333, 1332, 3, 2, 2, 2, 1334, 1337, 3, 2, 2, 2, 1335, 1333, 3, 2, 2, 2, 1335, 1336, 3, 2, 2, 2, 1336, 1338, 3, 2, 2, 2, 1337, 1335, 3, 2, 2, 2, 1338, 1340, 7, 48, 2, 2, 1339, 1341, 5, 288, 144, 2, 1340, 1339, 3, 2, 2, 2, 1341, 1342, 3, 2, 2, 2, 1342, 1340, 3, 2, 2, 2, 1342, 1343, 3, 2, 2, 2, 1343, 275, 3, 2, 2, 2, 1344, 1346, 5, 290, 145, 2, 1345, 1344, 3, 2, 2, 2, 1346, 1349, 3, 2, 2, 2, 1347, 1345, 3, 2, 2, 2, 1347, 1348, 3, 2, 2, 2, 1348, 1350, 3, 2, 2, 2, 1349, 1347, 3, 2, 2, 2, 1350, 1352, 7, 48, 2, 2, 1351, 1353, 5, 290, 145, 2, 1352, 1351, 3, 2, 2, 2, 1353, 1354, 3, 2, 2, 2, 1354, 1352, 3, 2, 2, 2, 1354, 1355, 3, 2, 2, 2, 1355, 277, 3, 2, 2, 2, 1356, 1360, 7, 38, 2, 2, 1357, 1359, 5, 292, 146, 2, 1358, 1357, 3, 2, 2, 2, 1359, 1362, 3, 2, 2, 2, 1360, 1358, 3, 2, 2, 2, 1360, 1361, 3, 2, 2, 2, 1361, 1363, 3, 2, 2, 2, 1362, 1360, 3, 2, 2, 2, 1363, 1365, 7, 48, 2, 2, 1364, 1366, 5, 292, 146, 2, 1365, 1364, 3, 2, 2, 2, 1366, 1367, 3, 2, 2, 2, 1367, 1365, 3, 2, 2, 2, 1367, 1368, 3, 2, 2, 2, 1368, 279, 3, 2, 2, 2, 1369, 1373, 5, 284, 142, 2, 1370, 1373, 5, 286, 143, 2, 1371, 1373, 5, 282, 141, 2, 1372, 1369, 3, 2, 2, 2, 1372, 1370, 3, 2, 2, 2, 1372, 1371, 3, 2, 2, 2, 1373, 281, 3, 2, 2, 2, 1374, 1376, 7, 39, 2, 2, 1375, 1377, 5, 288, 144, 2, 1376, 1375, 3, 2, 2, 2, 1377, 1378, 3, 2, 2, 2, 1378, 1376, 3, 2, 2, 2, 1378, 1379, 3, 2, 2, 2, 1379, 283, 3, 2, 2, 2, 1380, 1382, 5, 290, 145, 2, 1381, 1380, 3, 2, 2, 2, 1382, 1383, 3, 2, 2, 2, 1383, 1381, 3, 2, 2, 2, 1383, 1384, 3, 2, 2, 2, 1384, 285, 3, 2, 2, 2, 1385, 1387, 7, 38, 2, 2, 1386, 1388, 5, 292, 146, 2, 1387, 1386, 3, 2, 2, 2, 1388, 1389, 3, 2, 2, 2, 1389, 1387, 3, 2, 2, 2, 1389, 1390, 3, 2, 2, 2, 1390, 287, 3, 2, 2, 2, 1391, 1392, 9, 11, 2, 2, 1392, 289, 3, 2, 2, 2, 1393, 1394, 9, 12, 2, 2, 1394, 291, 3, 2, 2, 2, 1395, 1396, 9, 13, 2, 2, 1396, 293, 3, 2, 2, 2, 1397, 1401, 7, 41, 2, 2, 1398, 1399, 7, 94, 2, 2, 1399, 1402, 9, 6, 2, 2, 1400, 1402, 10, 7, 2, 2, 1401, 1398, 3, 2, 2, 2, 1401, 1400, 3, 2, 2, 2, 1402, 1403, 3, 2, 2, 2, 1403, 1404, 7, 41, 2, 2, 1404, 295, 3, 2, 2, 2, 1405, 1407, 5, 298, 149, 2, 1406, 1408, 9, 18, 2, 2, 1407, 1406, 3, 2, 2, 2, 1408, 1409, 3, 2, 2, 2, 1409, 1407, 3, 2, 2, 2, 1409, 1410, 3, 2, 2, 2, 1410, 297, 3, 2, 2, 2, 1411, 1415, 7, 35, 2, 2, 1412, 1414, 5, 304, 152, 2, 1413, 1412, 3, 2, 2, 2, 1414, 1417, 3, 2, 2, 2, 1415, 1413, 3, 2, 2, 2, 1415, 1416, 3, 2, 2, 2, 1416, 299, 3, 2, 2, 2, 1417, 1415, 3, 2, 2, 2, 1418, 1422, 5, 302, 151, 2, 1419, 1421, 5, 304, 152, 2, 1420, 1419, 3, 2, 2, 2, 1421, 1424, 3, 2, 2, 2, 1422, 1420, 3, 2, 2, 2, 1422, 1423, 3, 2, 2, 2, 1423, 301, 3, 2, 2, 2, 1424, 1422, 3, 2, 2, 2, 1425, 1426, 9, 14, 2, 2, 1426, 303, 3, 2, 2, 2, 1427, 1428, 9, 15, 2, 2, 1428, 305, 3, 2, 2, 2, 1429, 1431, 9, 16, 2, 2, 1430, 1429, 3, 2, 2, 2, 1431, 1432, 3, 2, 2, 2, 1432, 1430, 3, 2, 2, 2, 1432, 1433, 3, 2, 2, 2, 1433, 1434, 3, 2, 2, 2, 1434, 1435, 8, 153, 7, 2, 1435, 307, 3, 2, 2, 2, 1436, 1437, 7, 49, 2, 2, 1437, 1438, 7, 49, 2, 2, 1438, 1442, 3, 2, 2, 2, 1439, 1441, 10, 17, 2, 2, 1440, 1439, 3, 2, 2, 2, 1441, 1444, 3, 2, 2, 2, 1442, 1440, 3, 2, 2, 2, 1442, 1443, 3, 2, 2, 2, 1443, 1445, 3, 2, 2, 2, 1444, 1442, 3, 2, 2, 2, 1445, 1446, 8, 154, 8, 2, 1446, 309, 3, 2, 2, 2, 1447, 1448, 7, 49, 2, 2, 1448, 1449, 7, 44, 2, 2, 1449, 1453, 3, 2, 2, 2, 1450, 1452, 11, 2, 2, 2, 1451, 1450, 3, 2, 2, 2, 1452, 1455, 3, 2, 2, 2, 1453, 1454, 3, 2, 2, 2, 1453, 1451, 3, 2, 2, 2, 1454, 1456, 3, 2, 2, 2, 1455, 1453, 3, 2, 2, 2, 1456, 1457, 7, 44, 2, 2, 1457, 1458, 7, 49, 2, 2, 1458, 1459, 3, 2, 2, 2, 1459, 1460, 8, 155, 8, 2, 1460, 311, 3, 2, 2, 2, 59, 2, 3, 417, 626, 793, 832, 843, 851, 861, 863, 868, 872, 874, 877, 885, 902, 907, 914, 919, 926, 931, 938, 945, 950, 957, 962, 967, 974, 980, 982, 987, 994, 999, 1011, 1023, 1033, 1044, 1280, 1324, 1329, 1335, 1342, 1347, 1354, 1360, 1367, 1372, 1378, 1383, 1389, 1401, 1409, 1415, 1422, 1432, 1442, 1453, 11, 3, 2, 2, 3, 38, 3, 3, 75, 4, 3, 93, 5, 3, 109, 6, 2, 3, 2, 2, 4, 2, 3, 133, 7, 3, 134, 8] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 148, 1470, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 420, 10, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 629, 10, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 5, 89, 796, 10, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 5, 90, 835, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 846, 10, 91, 3, 92, 3, 92, 3, 92, 3, 92, 7, 92, 852, 10, 92, 12, 92, 14, 92, 855, 11, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 7, 93, 864, 10, 93, 12, 93, 14, 93, 867, 11, 93, 3, 93, 3, 93, 5, 93, 871, 10, 93, 3, 93, 3, 93, 5, 93, 875, 10, 93, 5, 93, 877, 10, 93, 3, 93, 5, 93, 880, 10, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 888, 10, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 5, 98, 912, 10, 98, 3, 99, 3, 99, 3, 99, 5, 99, 917, 10, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 924, 10, 100, 3, 100, 7, 100, 927, 10, 100, 12, 100, 14, 100, 930, 11, 100, 3, 100, 3, 100, 6, 100, 934, 10, 100, 13, 100, 14, 100, 935, 3, 101, 7, 101, 939, 10, 101, 12, 101, 14, 101, 942, 11, 101, 3, 101, 3, 101, 6, 101, 946, 10, 101, 13, 101, 14, 101, 947, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 5, 102, 955, 10, 102, 3, 102, 7, 102, 958, 10, 102, 12, 102, 14, 102, 961, 11, 102, 3, 102, 3, 102, 6, 102, 965, 10, 102, 13, 102, 14, 102, 966, 3, 103, 3, 103, 3, 103, 5, 103, 972, 10, 103, 3, 103, 3, 103, 3, 103, 5, 103, 977, 10, 103, 3, 104, 3, 104, 3, 104, 6, 104, 982, 10, 104, 13, 104, 14, 104, 983, 3, 104, 3, 104, 6, 104, 988, 10, 104, 13, 104, 14, 104, 989, 5, 104, 992, 10, 104, 3, 105, 6, 105, 995, 10, 105, 13, 105, 14, 105, 996, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 1004, 10, 106, 3, 106, 6, 106, 1007, 10, 106, 13, 106, 14, 106, 1008, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 7, 110, 1019, 10, 110, 12, 110, 14, 110, 1022, 11, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 6, 113, 1031, 10, 113, 13, 113, 14, 113, 1032, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 7, 114, 1041, 10, 114, 12, 114, 14, 114, 1044, 11, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 7, 115, 1052, 10, 115, 12, 115, 14, 115, 1055, 11, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 5, 117, 1290, 10, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 5, 136, 1334, 10, 136, 3, 137, 3, 137, 3, 137, 5, 137, 1339, 10, 137, 3, 138, 3, 138, 7, 138, 1343, 10, 138, 12, 138, 14, 138, 1346, 11, 138, 3, 138, 3, 138, 6, 138, 1350, 10, 138, 13, 138, 14, 138, 1351, 3, 139, 7, 139, 1355, 10, 139, 12, 139, 14, 139, 1358, 11, 139, 3, 139, 3, 139, 6, 139, 1362, 10, 139, 13, 139, 14, 139, 1363, 3, 140, 3, 140, 7, 140, 1368, 10, 140, 12, 140, 14, 140, 1371, 11, 140, 3, 140, 3, 140, 6, 140, 1375, 10, 140, 13, 140, 14, 140, 1376, 3, 141, 3, 141, 3, 141, 5, 141, 1382, 10, 141, 3, 142, 3, 142, 6, 142, 1386, 10, 142, 13, 142, 14, 142, 1387, 3, 143, 6, 143, 1391, 10, 143, 13, 143, 14, 143, 1392, 3, 144, 3, 144, 6, 144, 1397, 10, 144, 13, 144, 14, 144, 1398, 3, 145, 3, 145, 3, 146, 3, 146, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 5, 148, 1411, 10, 148, 3, 148, 3, 148, 3, 149, 3, 149, 6, 149, 1417, 10, 149, 13, 149, 14, 149, 1418, 3, 150, 3, 150, 7, 150, 1423, 10, 150, 12, 150, 14, 150, 1426, 11, 150, 3, 151, 3, 151, 7, 151, 1430, 10, 151, 12, 151, 14, 151, 1433, 11, 151, 3, 152, 3, 152, 3, 153, 3, 153, 3, 154, 6, 154, 1440, 10, 154, 13, 154, 14, 154, 1441, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 7, 155, 1450, 10, 155, 12, 155, 14, 155, 1453, 11, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 7, 156, 1461, 10, 156, 12, 156, 14, 156, 1464, 11, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 5, 853, 1053, 1462, 2, 157, 4, 4, 6, 5, 8, 6, 10, 7, 12, 8, 14, 9, 16, 10, 18, 11, 20, 12, 22, 13, 24, 14, 26, 15, 28, 16, 30, 17, 32, 18, 34, 19, 36, 20, 38, 21, 40, 22, 42, 23, 44, 24, 46, 25, 48, 26, 50, 27, 52, 28, 54, 29, 56, 30, 58, 31, 60, 32, 62, 33, 64, 34, 66, 35, 68, 36, 70, 37, 72, 38, 74, 39, 76, 40, 78, 41, 80, 42, 82, 43, 84, 44, 86, 45, 88, 46, 90, 47, 92, 48, 94, 49, 96, 50, 98, 51, 100, 52, 102, 53, 104, 54, 106, 55, 108, 56, 110, 57, 112, 58, 114, 59, 116, 60, 118, 61, 120, 62, 122, 63, 124, 64, 126, 65, 128, 66, 130, 67, 132, 68, 134, 69, 136, 70, 138, 71, 140, 72, 142, 73, 144, 74, 146, 75, 148, 76, 150, 77, 152, 78, 154, 79, 156, 80, 158, 81, 160, 82, 162, 83, 164, 84, 166, 85, 168, 86, 170, 87, 172, 88, 174, 89, 176, 90, 178, 91, 180, 92, 182, 93, 184, 94, 186, 95, 188, 96, 190, 97, 192, 98, 194, 99, 196, 100, 198, 101, 200, 102, 202, 103, 204, 104, 206, 105, 208, 106, 210, 107, 212, 108, 214, 2, 216, 2, 218, 2, 220, 109, 222, 2, 224, 2, 226, 110, 228, 111, 230, 112, 232, 113, 234, 114, 236, 115, 238, 116, 240, 117, 242, 118, 244, 119, 246, 120, 248, 121, 250, 122, 252, 123, 254, 124, 256, 125, 258, 126, 260, 127, 262, 128, 264, 129, 266, 130, 268, 131, 270, 132, 272, 133, 274, 134, 276, 135, 278, 136, 280, 137, 282, 138, 284, 139, 286, 140, 288, 141, 290, 2, 292, 2, 294, 2, 296, 142, 298, 143, 300, 144, 302, 145, 304, 2, 306, 2, 308, 146, 310, 147, 312, 148, 4, 2, 3, 19, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 3, 2, 41, 41, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 2, 1608, 2, 4, 3, 2, 2, 2, 2, 6, 3, 2, 2, 2, 2, 8, 3, 2, 2, 2, 2, 10, 3, 2, 2, 2, 2, 12, 3, 2, 2, 2, 2, 14, 3, 2, 2, 2, 2, 16, 3, 2, 2, 2, 2, 18, 3, 2, 2, 2, 2, 20, 3, 2, 2, 2, 2, 22, 3, 2, 2, 2, 2, 24, 3, 2, 2, 2, 2, 26, 3, 2, 2, 2, 2, 28, 3, 2, 2, 2, 2, 30, 3, 2, 2, 2, 2, 32, 3, 2, 2, 2, 2, 34, 3, 2, 2, 2, 2, 36, 3, 2, 2, 2, 2, 38, 3, 2, 2, 2, 2, 40, 3, 2, 2, 2, 2, 42, 3, 2, 2, 2, 2, 44, 3, 2, 2, 2, 2, 46, 3, 2, 2, 2, 2, 48, 3, 2, 2, 2, 2, 50, 3, 2, 2, 2, 2, 52, 3, 2, 2, 2, 2, 54, 3, 2, 2, 2, 2, 56, 3, 2, 2, 2, 2, 58, 3, 2, 2, 2, 2, 60, 3, 2, 2, 2, 2, 62, 3, 2, 2, 2, 2, 64, 3, 2, 2, 2, 2, 66, 3, 2, 2, 2, 2, 68, 3, 2, 2, 2, 2, 70, 3, 2, 2, 2, 2, 72, 3, 2, 2, 2, 2, 74, 3, 2, 2, 2, 2, 76, 3, 2, 2, 2, 2, 78, 3, 2, 2, 2, 2, 80, 3, 2, 2, 2, 2, 82, 3, 2, 2, 2, 2, 84, 3, 2, 2, 2, 2, 86, 3, 2, 2, 2, 2, 88, 3, 2, 2, 2, 2, 90, 3, 2, 2, 2, 2, 92, 3, 2, 2, 2, 2, 94, 3, 2, 2, 2, 2, 96, 3, 2, 2, 2, 2, 98, 3, 2, 2, 2, 2, 100, 3, 2, 2, 2, 2, 102, 3, 2, 2, 2, 2, 104, 3, 2, 2, 2, 2, 106, 3, 2, 2, 2, 2, 108, 3, 2, 2, 2, 2, 110, 3, 2, 2, 2, 2, 112, 3, 2, 2, 2, 2, 114, 3, 2, 2, 2, 2, 116, 3, 2, 2, 2, 2, 118, 3, 2, 2, 2, 2, 120, 3, 2, 2, 2, 2, 122, 3, 2, 2, 2, 2, 124, 3, 2, 2, 2, 2, 126, 3, 2, 2, 2, 2, 128, 3, 2, 2, 2, 2, 130, 3, 2, 2, 2, 2, 132, 3, 2, 2, 2, 2, 134, 3, 2, 2, 2, 2, 136, 3, 2, 2, 2, 2, 138, 3, 2, 2, 2, 2, 140, 3, 2, 2, 2, 2, 142, 3, 2, 2, 2, 2, 144, 3, 2, 2, 2, 2, 146, 3, 2, 2, 2, 2, 148, 3, 2, 2, 2, 2, 150, 3, 2, 2, 2, 2, 152, 3, 2, 2, 2, 2, 154, 3, 2, 2, 2, 2, 156, 3, 2, 2, 2, 2, 158, 3, 2, 2, 2, 2, 160, 3, 2, 2, 2, 2, 162, 3, 2, 2, 2, 2, 164, 3, 2, 2, 2, 2, 166, 3, 2, 2, 2, 2, 168, 3, 2, 2, 2, 2, 170, 3, 2, 2, 2, 2, 172, 3, 2, 2, 2, 2, 174, 3, 2, 2, 2, 2, 176, 3, 2, 2, 2, 2, 178, 3, 2, 2, 2, 2, 180, 3, 2, 2, 2, 2, 182, 3, 2, 2, 2, 2, 184, 3, 2, 2, 2, 2, 186, 3, 2, 2, 2, 2, 188, 3, 2, 2, 2, 2, 190, 3, 2, 2, 2, 2, 192, 3, 2, 2, 2, 2, 194, 3, 2, 2, 2, 2, 196, 3, 2, 2, 2, 2, 198, 3, 2, 2, 2, 2, 200, 3, 2, 2, 2, 2, 202, 3, 2, 2, 2, 2, 204, 3, 2, 2, 2, 2, 206, 3, 2, 2, 2, 2, 208, 3, 2, 2, 2, 2, 210, 3, 2, 2, 2, 2, 212, 3, 2, 2, 2, 2, 220, 3, 2, 2, 2, 2, 226, 3, 2, 2, 2, 2, 228, 3, 2, 2, 2, 2, 230, 3, 2, 2, 2, 3, 232, 3, 2, 2, 2, 3, 234, 3, 2, 2, 2, 3, 236, 3, 2, 2, 2, 3, 238, 3, 2, 2, 2, 3, 240, 3, 2, 2, 2, 3, 242, 3, 2, 2, 2, 3, 244, 3, 2, 2, 2, 3, 246, 3, 2, 2, 2, 3, 248, 3, 2, 2, 2, 3, 250, 3, 2, 2, 2, 3, 252, 3, 2, 2, 2, 3, 254, 3, 2, 2, 2, 3, 256, 3, 2, 2, 2, 3, 258, 3, 2, 2, 2, 3, 260, 3, 2, 2, 2, 3, 262, 3, 2, 2, 2, 3, 264, 3, 2, 2, 2, 3, 266, 3, 2, 2, 2, 3, 268, 3, 2, 2, 2, 3, 270, 3, 2, 2, 2, 3, 272, 3, 2, 2, 2, 3, 274, 3, 2, 2, 2, 3, 276, 3, 2, 2, 2, 3, 278, 3, 2, 2, 2, 3, 280, 3, 2, 2, 2, 3, 282, 3, 2, 2, 2, 3, 284, 3, 2, 2, 2, 3, 286, 3, 2, 2, 2, 3, 288, 3, 2, 2, 2, 3, 296, 3, 2, 2, 2, 3, 298, 3, 2, 2, 2, 3, 300, 3, 2, 2, 2, 3, 302, 3, 2, 2, 2, 3, 308, 3, 2, 2, 2, 3, 310, 3, 2, 2, 2, 3, 312, 3, 2, 2, 2, 4, 314, 3, 2, 2, 2, 6, 317, 3, 2, 2, 2, 8, 319, 3, 2, 2, 2, 10, 321, 3, 2, 2, 2, 12, 323, 3, 2, 2, 2, 14, 325, 3, 2, 2, 2, 16, 327, 3, 2, 2, 2, 18, 329, 3, 2, 2, 2, 20, 331, 3, 2, 2, 2, 22, 333, 3, 2, 2, 2, 24, 336, 3, 2, 2, 2, 26, 338, 3, 2, 2, 2, 28, 340, 3, 2, 2, 2, 30, 343, 3, 2, 2, 2, 32, 345, 3, 2, 2, 2, 34, 347, 3, 2, 2, 2, 36, 349, 3, 2, 2, 2, 38, 351, 3, 2, 2, 2, 40, 353, 3, 2, 2, 2, 42, 356, 3, 2, 2, 2, 44, 359, 3, 2, 2, 2, 46, 361, 3, 2, 2, 2, 48, 363, 3, 2, 2, 2, 50, 365, 3, 2, 2, 2, 52, 367, 3, 2, 2, 2, 54, 370, 3, 2, 2, 2, 56, 373, 3, 2, 2, 2, 58, 376, 3, 2, 2, 2, 60, 379, 3, 2, 2, 2, 62, 381, 3, 2, 2, 2, 64, 384, 3, 2, 2, 2, 66, 387, 3, 2, 2, 2, 68, 389, 3, 2, 2, 2, 70, 392, 3, 2, 2, 2, 72, 395, 3, 2, 2, 2, 74, 419, 3, 2, 2, 2, 76, 421, 3, 2, 2, 2, 78, 430, 3, 2, 2, 2, 80, 438, 3, 2, 2, 2, 82, 446, 3, 2, 2, 2, 84, 454, 3, 2, 2, 2, 86, 457, 3, 2, 2, 2, 88, 464, 3, 2, 2, 2, 90, 469, 3, 2, 2, 2, 92, 473, 3, 2, 2, 2, 94, 482, 3, 2, 2, 2, 96, 491, 3, 2, 2, 2, 98, 500, 3, 2, 2, 2, 100, 506, 3, 2, 2, 2, 102, 513, 3, 2, 2, 2, 104, 520, 3, 2, 2, 2, 106, 526, 3, 2, 2, 2, 108, 533, 3, 2, 2, 2, 110, 542, 3, 2, 2, 2, 112, 549, 3, 2, 2, 2, 114, 559, 3, 2, 2, 2, 116, 568, 3, 2, 2, 2, 118, 578, 3, 2, 2, 2, 120, 583, 3, 2, 2, 2, 122, 589, 3, 2, 2, 2, 124, 595, 3, 2, 2, 2, 126, 600, 3, 2, 2, 2, 128, 628, 3, 2, 2, 2, 130, 630, 3, 2, 2, 2, 132, 640, 3, 2, 2, 2, 134, 643, 3, 2, 2, 2, 136, 648, 3, 2, 2, 2, 138, 654, 3, 2, 2, 2, 140, 657, 3, 2, 2, 2, 142, 661, 3, 2, 2, 2, 144, 668, 3, 2, 2, 2, 146, 675, 3, 2, 2, 2, 148, 681, 3, 2, 2, 2, 150, 690, 3, 2, 2, 2, 152, 696, 3, 2, 2, 2, 154, 704, 3, 2, 2, 2, 156, 709, 3, 2, 2, 2, 158, 716, 3, 2, 2, 2, 160, 721, 3, 2, 2, 2, 162, 728, 3, 2, 2, 2, 164, 735, 3, 2, 2, 2, 166, 743, 3, 2, 2, 2, 168, 752, 3, 2, 2, 2, 170, 757, 3, 2, 2, 2, 172, 766, 3, 2, 2, 2, 174, 772, 3, 2, 2, 2, 176, 779, 3, 2, 2, 2, 178, 795, 3, 2, 2, 2, 180, 834, 3, 2, 2, 2, 182, 845, 3, 2, 2, 2, 184, 847, 3, 2, 2, 2, 186, 859, 3, 2, 2, 2, 188, 883, 3, 2, 2, 2, 190, 891, 3, 2, 2, 2, 192, 899, 3, 2, 2, 2, 194, 902, 3, 2, 2, 2, 196, 911, 3, 2, 2, 2, 198, 916, 3, 2, 2, 2, 200, 923, 3, 2, 2, 2, 202, 940, 3, 2, 2, 2, 204, 954, 3, 2, 2, 2, 206, 971, 3, 2, 2, 2, 208, 991, 3, 2, 2, 2, 210, 994, 3, 2, 2, 2, 212, 1003, 3, 2, 2, 2, 214, 1010, 3, 2, 2, 2, 216, 1012, 3, 2, 2, 2, 218, 1014, 3, 2, 2, 2, 220, 1016, 3, 2, 2, 2, 222, 1025, 3, 2, 2, 2, 224, 1027, 3, 2, 2, 2, 226, 1030, 3, 2, 2, 2, 228, 1036, 3, 2, 2, 2, 230, 1047, 3, 2, 2, 2, 232, 1061, 3, 2, 2, 2, 234, 1289, 3, 2, 2, 2, 236, 1291, 3, 2, 2, 2, 238, 1293, 3, 2, 2, 2, 240, 1295, 3, 2, 2, 2, 242, 1297, 3, 2, 2, 2, 244, 1299, 3, 2, 2, 2, 246, 1301, 3, 2, 2, 2, 248, 1303, 3, 2, 2, 2, 250, 1305, 3, 2, 2, 2, 252, 1307, 3, 2, 2, 2, 254, 1310, 3, 2, 2, 2, 256, 1313, 3, 2, 2, 2, 258, 1315, 3, 2, 2, 2, 260, 1317, 3, 2, 2, 2, 262, 1319, 3, 2, 2, 2, 264, 1321, 3, 2, 2, 2, 266, 1323, 3, 2, 2, 2, 268, 1325, 3, 2, 2, 2, 270, 1328, 3, 2, 2, 2, 272, 1333, 3, 2, 2, 2, 274, 1338, 3, 2, 2, 2, 276, 1340, 3, 2, 2, 2, 278, 1356, 3, 2, 2, 2, 280, 1365, 3, 2, 2, 2, 282, 1381, 3, 2, 2, 2, 284, 1383, 3, 2, 2, 2, 286, 1390, 3, 2, 2, 2, 288, 1394, 3, 2, 2, 2, 290, 1400, 3, 2, 2, 2, 292, 1402, 3, 2, 2, 2, 294, 1404, 3, 2, 2, 2, 296, 1406, 3, 2, 2, 2, 298, 1414, 3, 2, 2, 2, 300, 1420, 3, 2, 2, 2, 302, 1427, 3, 2, 2, 2, 304, 1434, 3, 2, 2, 2, 306, 1436, 3, 2, 2, 2, 308, 1439, 3, 2, 2, 2, 310, 1445, 3, 2, 2, 2, 312, 1456, 3, 2, 2, 2, 314, 315, 7, 125, 2, 2, 315, 316, 8, 2, 2, 2, 316, 5, 3, 2, 2, 2, 317, 318, 7, 127, 2, 2, 318, 7, 3, 2, 2, 2, 319, 320, 7, 93, 2, 2, 320, 9, 3, 2, 2, 2, 321, 322, 7, 95, 2, 2, 322, 11, 3, 2, 2, 2, 323, 324, 7, 42, 2, 2, 324, 13, 3, 2, 2, 2, 325, 326, 7, 43, 2, 2, 326, 15, 3, 2, 2, 2, 327, 328, 7, 61, 2, 2, 328, 17, 3, 2, 2, 2, 329, 330, 7, 60, 2, 2, 330, 19, 3, 2, 2, 2, 331, 332, 7, 46, 2, 2, 332, 21, 3, 2, 2, 2, 333, 334, 7, 48, 2, 2, 334, 335, 7, 48, 2, 2, 335, 23, 3, 2, 2, 2, 336, 337, 7, 65, 2, 2, 337, 25, 3, 2, 2, 2, 338, 339, 7, 48, 2, 2, 339, 27, 3, 2, 2, 2, 340, 341, 7, 47, 2, 2, 341, 342, 7, 64, 2, 2, 342, 29, 3, 2, 2, 2, 343, 344, 7, 45, 2, 2, 344, 31, 3, 2, 2, 2, 345, 346, 7, 47, 2, 2, 346, 33, 3, 2, 2, 2, 347, 348, 7, 44, 2, 2, 348, 35, 3, 2, 2, 2, 349, 350, 7, 49, 2, 2, 350, 37, 3, 2, 2, 2, 351, 352, 7, 39, 2, 2, 352, 39, 3, 2, 2, 2, 353, 354, 7, 45, 2, 2, 354, 355, 7, 45, 2, 2, 355, 41, 3, 2, 2, 2, 356, 357, 7, 47, 2, 2, 357, 358, 7, 47, 2, 2, 358, 43, 3, 2, 2, 2, 359, 360, 7, 40, 2, 2, 360, 45, 3, 2, 2, 2, 361, 362, 7, 128, 2, 2, 362, 47, 3, 2, 2, 2, 363, 364, 7, 96, 2, 2, 364, 49, 3, 2, 2, 2, 365, 366, 7, 126, 2, 2, 366, 51, 3, 2, 2, 2, 367, 368, 7, 62, 2, 2, 368, 369, 7, 62, 2, 2, 369, 53, 3, 2, 2, 2, 370, 371, 7, 64, 2, 2, 371, 372, 7, 64, 2, 2, 372, 55, 3, 2, 2, 2, 373, 374, 7, 63, 2, 2, 374, 375, 7, 63, 2, 2, 375, 57, 3, 2, 2, 2, 376, 377, 7, 35, 2, 2, 377, 378, 7, 63, 2, 2, 378, 59, 3, 2, 2, 2, 379, 380, 7, 62, 2, 2, 380, 61, 3, 2, 2, 2, 381, 382, 7, 62, 2, 2, 382, 383, 7, 63, 2, 2, 383, 63, 3, 2, 2, 2, 384, 385, 7, 64, 2, 2, 385, 386, 7, 63, 2, 2, 386, 65, 3, 2, 2, 2, 387, 388, 7, 64, 2, 2, 388, 67, 3, 2, 2, 2, 389, 390, 7, 40, 2, 2, 390, 391, 7, 40, 2, 2, 391, 69, 3, 2, 2, 2, 392, 393, 7, 126, 2, 2, 393, 394, 7, 126, 2, 2, 394, 71, 3, 2, 2, 2, 395, 396, 7, 63, 2, 2, 396, 73, 3, 2, 2, 2, 397, 398, 7, 45, 2, 2, 398, 420, 7, 63, 2, 2, 399, 400, 7, 47, 2, 2, 400, 420, 7, 63, 2, 2, 401, 402, 7, 44, 2, 2, 402, 420, 7, 63, 2, 2, 403, 404, 7, 49, 2, 2, 404, 420, 7, 63, 2, 2, 405, 406, 7, 39, 2, 2, 406, 420, 7, 63, 2, 2, 407, 408, 7, 62, 2, 2, 408, 409, 7, 62, 2, 2, 409, 420, 7, 63, 2, 2, 410, 411, 7, 64, 2, 2, 411, 412, 7, 64, 2, 2, 412, 420, 7, 63, 2, 2, 413, 414, 7, 40, 2, 2, 414, 420, 7, 63, 2, 2, 415, 416, 7, 126, 2, 2, 416, 420, 7, 63, 2, 2, 417, 418, 7, 96, 2, 2, 418, 420, 7, 63, 2, 2, 419, 397, 3, 2, 2, 2, 419, 399, 3, 2, 2, 2, 419, 401, 3, 2, 2, 2, 419, 403, 3, 2, 2, 2, 419, 405, 3, 2, 2, 2, 419, 407, 3, 2, 2, 2, 419, 410, 3, 2, 2, 2, 419, 413, 3, 2, 2, 2, 419, 415, 3, 2, 2, 2, 419, 417, 3, 2, 2, 2, 420, 75, 3, 2, 2, 2, 421, 422, 7, 107, 2, 2, 422, 423, 7, 111, 2, 2, 423, 424, 7, 114, 2, 2, 424, 425, 7, 113, 2, 2, 425, 426, 7, 116, 2, 2, 426, 427, 7, 118, 2, 2, 427, 428, 3, 2, 2, 2, 428, 429, 8, 38, 3, 2, 429, 77, 3, 2, 2, 2, 430, 431, 7, 118, 2, 2, 431, 432, 7, 123, 2, 2, 432, 433, 7, 114, 2, 2, 433, 434, 7, 103, 2, 2, 434, 435, 7, 102, 2, 2, 435, 436, 7, 103, 2, 2, 436, 437, 7, 104, 2, 2, 437, 79, 3, 2, 2, 2, 438, 439, 7, 37, 2, 2, 439, 440, 7, 114, 2, 2, 440, 441, 7, 116, 2, 2, 441, 442, 7, 99, 2, 2, 442, 443, 7, 105, 2, 2, 443, 444, 7, 111, 2, 2, 444, 445, 7, 99, 2, 2, 445, 81, 3, 2, 2, 2, 446, 447, 7, 116, 2, 2, 447, 448, 7, 103, 2, 2, 448, 449, 7, 117, 2, 2, 449, 450, 7, 103, 2, 2, 450, 451, 7, 116, 2, 2, 451, 452, 7, 120, 2, 2, 452, 453, 7, 103, 2, 2, 453, 83, 3, 2, 2, 2, 454, 455, 7, 114, 2, 2, 455, 456, 7, 101, 2, 2, 456, 85, 3, 2, 2, 2, 457, 458, 7, 118, 2, 2, 458, 459, 7, 99, 2, 2, 459, 460, 7, 116, 2, 2, 460, 461, 7, 105, 2, 2, 461, 462, 7, 103, 2, 2, 462, 463, 7, 118, 2, 2, 463, 87, 3, 2, 2, 2, 464, 465, 7, 110, 2, 2, 465, 466, 7, 107, 2, 2, 466, 467, 7, 112, 2, 2, 467, 468, 7, 109, 2, 2, 468, 89, 3, 2, 2, 2, 469, 470, 7, 101, 2, 2, 470, 471, 7, 114, 2, 2, 471, 472, 7, 119, 2, 2, 472, 91, 3, 2, 2, 2, 473, 474, 7, 101, 2, 2, 474, 475, 7, 113, 2, 2, 475, 476, 7, 102, 2, 2, 476, 477, 7, 103, 2, 2, 477, 478, 7, 97, 2, 2, 478, 479, 7, 117, 2, 2, 479, 480, 7, 103, 2, 2, 480, 481, 7, 105, 2, 2, 481, 93, 3, 2, 2, 2, 482, 483, 7, 102, 2, 2, 483, 484, 7, 99, 2, 2, 484, 485, 7, 118, 2, 2, 485, 486, 7, 99, 2, 2, 486, 487, 7, 97, 2, 2, 487, 488, 7, 117, 2, 2, 488, 489, 7, 103, 2, 2, 489, 490, 7, 105, 2, 2, 490, 95, 3, 2, 2, 2, 491, 492, 7, 103, 2, 2, 492, 493, 7, 112, 2, 2, 493, 494, 7, 101, 2, 2, 494, 495, 7, 113, 2, 2, 495, 496, 7, 102, 2, 2, 496, 497, 7, 107, 2, 2, 497, 498, 7, 112, 2, 2, 498, 499, 7, 105, 2, 2, 499, 97, 3, 2, 2, 2, 500, 501, 7, 101, 2, 2, 501, 502, 7, 113, 2, 2, 502, 503, 7, 112, 2, 2, 503, 504, 7, 117, 2, 2, 504, 505, 7, 118, 2, 2, 505, 99, 3, 2, 2, 2, 506, 507, 7, 103, 2, 2, 507, 508, 7, 122, 2, 2, 508, 509, 7, 118, 2, 2, 509, 510, 7, 103, 2, 2, 510, 511, 7, 116, 2, 2, 511, 512, 7, 112, 2, 2, 512, 101, 3, 2, 2, 2, 513, 514, 7, 103, 2, 2, 514, 515, 7, 122, 2, 2, 515, 516, 7, 114, 2, 2, 516, 517, 7, 113, 2, 2, 517, 518, 7, 116, 2, 2, 518, 519, 7, 118, 2, 2, 519, 103, 3, 2, 2, 2, 520, 521, 7, 99, 2, 2, 521, 522, 7, 110, 2, 2, 522, 523, 7, 107, 2, 2, 523, 524, 7, 105, 2, 2, 524, 525, 7, 112, 2, 2, 525, 105, 3, 2, 2, 2, 526, 527, 7, 107, 2, 2, 527, 528, 7, 112, 2, 2, 528, 529, 7, 110, 2, 2, 529, 530, 7, 107, 2, 2, 530, 531, 7, 112, 2, 2, 531, 532, 7, 103, 2, 2, 532, 107, 3, 2, 2, 2, 533, 534, 7, 120, 2, 2, 534, 535, 7, 113, 2, 2, 535, 536, 7, 110, 2, 2, 536, 537, 7, 99, 2, 2, 537, 538, 7, 118, 2, 2, 538, 539, 7, 107, 2, 2, 539, 540, 7, 110, 2, 2, 540, 541, 7, 103, 2, 2, 541, 109, 3, 2, 2, 2, 542, 543, 7, 117, 2, 2, 543, 544, 7, 118, 2, 2, 544, 545, 7, 99, 2, 2, 545, 546, 7, 118, 2, 2, 546, 547, 7, 107, 2, 2, 547, 548, 7, 101, 2, 2, 548, 111, 3, 2, 2, 2, 549, 550, 7, 107, 2, 2, 550, 551, 7, 112, 2, 2, 551, 552, 7, 118, 2, 2, 552, 553, 7, 103, 2, 2, 553, 554, 7, 116, 2, 2, 554, 555, 7, 116, 2, 2, 555, 556, 7, 119, 2, 2, 556, 557, 7, 114, 2, 2, 557, 558, 7, 118, 2, 2, 558, 113, 3, 2, 2, 2, 559, 560, 7, 116, 2, 2, 560, 561, 7, 103, 2, 2, 561, 562, 7, 105, 2, 2, 562, 563, 7, 107, 2, 2, 563, 564, 7, 117, 2, 2, 564, 565, 7, 118, 2, 2, 565, 566, 7, 103, 2, 2, 566, 567, 7, 116, 2, 2, 567, 115, 3, 2, 2, 2, 568, 569, 7, 97, 2, 2, 569, 570, 7, 97, 2, 2, 570, 571, 7, 99, 2, 2, 571, 572, 7, 102, 2, 2, 572, 573, 7, 102, 2, 2, 573, 574, 7, 116, 2, 2, 574, 575, 7, 103, 2, 2, 575, 576, 7, 117, 2, 2, 576, 577, 7, 117, 2, 2, 577, 117, 3, 2, 2, 2, 578, 579, 7, 97, 2, 2, 579, 580, 7, 97, 2, 2, 580, 581, 7, 124, 2, 2, 581, 582, 7, 114, 2, 2, 582, 119, 3, 2, 2, 2, 583, 584, 7, 97, 2, 2, 584, 585, 7, 97, 2, 2, 585, 586, 7, 111, 2, 2, 586, 587, 7, 103, 2, 2, 587, 588, 7, 111, 2, 2, 588, 121, 3, 2, 2, 2, 589, 590, 7, 97, 2, 2, 590, 591, 7, 97, 2, 2, 591, 592, 7, 117, 2, 2, 592, 593, 7, 117, 2, 2, 593, 594, 7, 99, 2, 2, 594, 123, 3, 2, 2, 2, 595, 596, 7, 97, 2, 2, 596, 597, 7, 97, 2, 2, 597, 598, 7, 111, 2, 2, 598, 599, 7, 99, 2, 2, 599, 125, 3, 2, 2, 2, 600, 601, 7, 101, 2, 2, 601, 602, 7, 99, 2, 2, 602, 603, 7, 110, 2, 2, 603, 604, 7, 110, 2, 2, 604, 605, 7, 107, 2, 2, 605, 606, 7, 112, 2, 2, 606, 607, 7, 105, 2, 2, 607, 127, 3, 2, 2, 2, 608, 609, 7, 97, 2, 2, 609, 610, 7, 97, 2, 2, 610, 611, 7, 117, 2, 2, 611, 612, 7, 118, 2, 2, 612, 613, 7, 99, 2, 2, 613, 614, 7, 101, 2, 2, 614, 615, 7, 109, 2, 2, 615, 616, 7, 101, 2, 2, 616, 617, 7, 99, 2, 2, 617, 618, 7, 110, 2, 2, 618, 629, 7, 110, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 97, 2, 2, 621, 622, 7, 114, 2, 2, 622, 623, 7, 106, 2, 2, 623, 624, 7, 107, 2, 2, 624, 625, 7, 101, 2, 2, 625, 626, 7, 99, 2, 2, 626, 627, 7, 110, 2, 2, 627, 629, 7, 110, 2, 2, 628, 608, 3, 2, 2, 2, 628, 619, 3, 2, 2, 2, 629, 129, 3, 2, 2, 2, 630, 631, 7, 120, 2, 2, 631, 632, 7, 99, 2, 2, 632, 633, 7, 116, 2, 2, 633, 634, 7, 97, 2, 2, 634, 635, 7, 111, 2, 2, 635, 636, 7, 113, 2, 2, 636, 637, 7, 102, 2, 2, 637, 638, 7, 103, 2, 2, 638, 639, 7, 110, 2, 2, 639, 131, 3, 2, 2, 2, 640, 641, 7, 107, 2, 2, 641, 642, 7, 104, 2, 2, 642, 133, 3, 2, 2, 2, 643, 644, 7, 103, 2, 2, 644, 645, 7, 110, 2, 2, 645, 646, 7, 117, 2, 2, 646, 647, 7, 103, 2, 2, 647, 135, 3, 2, 2, 2, 648, 649, 7, 121, 2, 2, 649, 650, 7, 106, 2, 2, 650, 651, 7, 107, 2, 2, 651, 652, 7, 110, 2, 2, 652, 653, 7, 103, 2, 2, 653, 137, 3, 2, 2, 2, 654, 655, 7, 102, 2, 2, 655, 656, 7, 113, 2, 2, 656, 139, 3, 2, 2, 2, 657, 658, 7, 104, 2, 2, 658, 659, 7, 113, 2, 2, 659, 660, 7, 116, 2, 2, 660, 141, 3, 2, 2, 2, 661, 662, 7, 117, 2, 2, 662, 663, 7, 121, 2, 2, 663, 664, 7, 107, 2, 2, 664, 665, 7, 118, 2, 2, 665, 666, 7, 101, 2, 2, 666, 667, 7, 106, 2, 2, 667, 143, 3, 2, 2, 2, 668, 669, 7, 116, 2, 2, 669, 670, 7, 103, 2, 2, 670, 671, 7, 118, 2, 2, 671, 672, 7, 119, 2, 2, 672, 673, 7, 116, 2, 2, 673, 674, 7, 112, 2, 2, 674, 145, 3, 2, 2, 2, 675, 676, 7, 100, 2, 2, 676, 677, 7, 116, 2, 2, 677, 678, 7, 103, 2, 2, 678, 679, 7, 99, 2, 2, 679, 680, 7, 109, 2, 2, 680, 147, 3, 2, 2, 2, 681, 682, 7, 101, 2, 2, 682, 683, 7, 113, 2, 2, 683, 684, 7, 112, 2, 2, 684, 685, 7, 118, 2, 2, 685, 686, 7, 107, 2, 2, 686, 687, 7, 112, 2, 2, 687, 688, 7, 119, 2, 2, 688, 689, 7, 103, 2, 2, 689, 149, 3, 2, 2, 2, 690, 691, 7, 99, 2, 2, 691, 692, 7, 117, 2, 2, 692, 693, 7, 111, 2, 2, 693, 694, 3, 2, 2, 2, 694, 695, 8, 75, 4, 2, 695, 151, 3, 2, 2, 2, 696, 697, 7, 102, 2, 2, 697, 698, 7, 103, 2, 2, 698, 699, 7, 104, 2, 2, 699, 700, 7, 99, 2, 2, 700, 701, 7, 119, 2, 2, 701, 702, 7, 110, 2, 2, 702, 703, 7, 118, 2, 2, 703, 153, 3, 2, 2, 2, 704, 705, 7, 101, 2, 2, 705, 706, 7, 99, 2, 2, 706, 707, 7, 117, 2, 2, 707, 708, 7, 103, 2, 2, 708, 155, 3, 2, 2, 2, 709, 710, 7, 117, 2, 2, 710, 711, 7, 118, 2, 2, 711, 712, 7, 116, 2, 2, 712, 713, 7, 119, 2, 2, 713, 714, 7, 101, 2, 2, 714, 715, 7, 118, 2, 2, 715, 157, 3, 2, 2, 2, 716, 717, 7, 103, 2, 2, 717, 718, 7, 112, 2, 2, 718, 719, 7, 119, 2, 2, 719, 720, 7, 111, 2, 2, 720, 159, 3, 2, 2, 2, 721, 722, 7, 117, 2, 2, 722, 723, 7, 107, 2, 2, 723, 724, 7, 124, 2, 2, 724, 725, 7, 103, 2, 2, 725, 726, 7, 113, 2, 2, 726, 727, 7, 104, 2, 2, 727, 161, 3, 2, 2, 2, 728, 729, 7, 118, 2, 2, 729, 730, 7, 123, 2, 2, 730, 731, 7, 114, 2, 2, 731, 732, 7, 103, 2, 2, 732, 733, 7, 107, 2, 2, 733, 734, 7, 102, 2, 2, 734, 163, 3, 2, 2, 2, 735, 736, 7, 109, 2, 2, 736, 737, 7, 107, 2, 2, 737, 738, 7, 101, 2, 2, 738, 739, 7, 109, 2, 2, 739, 740, 7, 99, 2, 2, 740, 741, 7, 117, 2, 2, 741, 742, 7, 111, 2, 2, 742, 165, 3, 2, 2, 2, 743, 744, 7, 116, 2, 2, 744, 745, 7, 103, 2, 2, 745, 746, 7, 117, 2, 2, 746, 747, 7, 113, 2, 2, 747, 748, 7, 119, 2, 2, 748, 749, 7, 116, 2, 2, 749, 750, 7, 101, 2, 2, 750, 751, 7, 103, 2, 2, 751, 167, 3, 2, 2, 2, 752, 753, 7, 119, 2, 2, 753, 754, 7, 117, 2, 2, 754, 755, 7, 103, 2, 2, 755, 756, 7, 117, 2, 2, 756, 169, 3, 2, 2, 2, 757, 758, 7, 101, 2, 2, 758, 759, 7, 110, 2, 2, 759, 760, 7, 113, 2, 2, 760, 761, 7, 100, 2, 2, 761, 762, 7, 100, 2, 2, 762, 763, 7, 103, 2, 2, 763, 764, 7, 116, 2, 2, 764, 765, 7, 117, 2, 2, 765, 171, 3, 2, 2, 2, 766, 767, 7, 100, 2, 2, 767, 768, 7, 123, 2, 2, 768, 769, 7, 118, 2, 2, 769, 770, 7, 103, 2, 2, 770, 771, 7, 117, 2, 2, 771, 173, 3, 2, 2, 2, 772, 773, 7, 101, 2, 2, 773, 774, 7, 123, 2, 2, 774, 775, 7, 101, 2, 2, 775, 776, 7, 110, 2, 2, 776, 777, 7, 103, 2, 2, 777, 778, 7, 117, 2, 2, 778, 175, 3, 2, 2, 2, 779, 780, 7, 35, 2, 2, 780, 177, 3, 2, 2, 2, 781, 782, 7, 117, 2, 2, 782, 783, 7, 107, 2, 2, 783, 784, 7, 105, 2, 2, 784, 785, 7, 112, 2, 2, 785, 786, 7, 103, 2, 2, 786, 796, 7, 102, 2, 2, 787, 788, 7, 119, 2, 2, 788, 789, 7, 112, 2, 2, 789, 790, 7, 117, 2, 2, 790, 791, 7, 107, 2, 2, 791, 792, 7, 105, 2, 2, 792, 793, 7, 112, 2, 2, 793, 794, 7, 103, 2, 2, 794, 796, 7, 102, 2, 2, 795, 781, 3, 2, 2, 2, 795, 787, 3, 2, 2, 2, 796, 179, 3, 2, 2, 2, 797, 798, 7, 100, 2, 2, 798, 799, 7, 123, 2, 2, 799, 800, 7, 118, 2, 2, 800, 835, 7, 103, 2, 2, 801, 802, 7, 121, 2, 2, 802, 803, 7, 113, 2, 2, 803, 804, 7, 116, 2, 2, 804, 835, 7, 102, 2, 2, 805, 806, 7, 102, 2, 2, 806, 807, 7, 121, 2, 2, 807, 808, 7, 113, 2, 2, 808, 809, 7, 116, 2, 2, 809, 835, 7, 102, 2, 2, 810, 811, 7, 100, 2, 2, 811, 812, 7, 113, 2, 2, 812, 813, 7, 113, 2, 2, 813, 835, 7, 110, 2, 2, 814, 815, 7, 101, 2, 2, 815, 816, 7, 106, 2, 2, 816, 817, 7, 99, 2, 2, 817, 835, 7, 116, 2, 2, 818, 819, 7, 117, 2, 2, 819, 820, 7, 106, 2, 2, 820, 821, 7, 113, 2, 2, 821, 822, 7, 116, 2, 2, 822, 835, 7, 118, 2, 2, 823, 824, 7, 107, 2, 2, 824, 825, 7, 112, 2, 2, 825, 835, 7, 118, 2, 2, 826, 827, 7, 110, 2, 2, 827, 828, 7, 113, 2, 2, 828, 829, 7, 112, 2, 2, 829, 835, 7, 105, 2, 2, 830, 831, 7, 120, 2, 2, 831, 832, 7, 113, 2, 2, 832, 833, 7, 107, 2, 2, 833, 835, 7, 102, 2, 2, 834, 797, 3, 2, 2, 2, 834, 801, 3, 2, 2, 2, 834, 805, 3, 2, 2, 2, 834, 810, 3, 2, 2, 2, 834, 814, 3, 2, 2, 2, 834, 818, 3, 2, 2, 2, 834, 823, 3, 2, 2, 2, 834, 826, 3, 2, 2, 2, 834, 830, 3, 2, 2, 2, 835, 181, 3, 2, 2, 2, 836, 837, 7, 118, 2, 2, 837, 838, 7, 116, 2, 2, 838, 839, 7, 119, 2, 2, 839, 846, 7, 103, 2, 2, 840, 841, 7, 104, 2, 2, 841, 842, 7, 99, 2, 2, 842, 843, 7, 110, 2, 2, 843, 844, 7, 117, 2, 2, 844, 846, 7, 103, 2, 2, 845, 836, 3, 2, 2, 2, 845, 840, 3, 2, 2, 2, 846, 183, 3, 2, 2, 2, 847, 848, 7, 125, 2, 2, 848, 849, 7, 125, 2, 2, 849, 853, 3, 2, 2, 2, 850, 852, 11, 2, 2, 2, 851, 850, 3, 2, 2, 2, 852, 855, 3, 2, 2, 2, 853, 854, 3, 2, 2, 2, 853, 851, 3, 2, 2, 2, 854, 856, 3, 2, 2, 2, 855, 853, 3, 2, 2, 2, 856, 857, 7, 127, 2, 2, 857, 858, 7, 127, 2, 2, 858, 185, 3, 2, 2, 2, 859, 865, 7, 36, 2, 2, 860, 861, 7, 94, 2, 2, 861, 864, 7, 36, 2, 2, 862, 864, 10, 2, 2, 2, 863, 860, 3, 2, 2, 2, 863, 862, 3, 2, 2, 2, 864, 867, 3, 2, 2, 2, 865, 863, 3, 2, 2, 2, 865, 866, 3, 2, 2, 2, 866, 868, 3, 2, 2, 2, 867, 865, 3, 2, 2, 2, 868, 870, 7, 36, 2, 2, 869, 871, 9, 3, 2, 2, 870, 869, 3, 2, 2, 2, 870, 871, 3, 2, 2, 2, 871, 876, 3, 2, 2, 2, 872, 874, 9, 4, 2, 2, 873, 875, 9, 5, 2, 2, 874, 873, 3, 2, 2, 2, 874, 875, 3, 2, 2, 2, 875, 877, 3, 2, 2, 2, 876, 872, 3, 2, 2, 2, 876, 877, 3, 2, 2, 2, 877, 879, 3, 2, 2, 2, 878, 880, 9, 3, 2, 2, 879, 878, 3, 2, 2, 2, 879, 880, 3, 2, 2, 2, 880, 881, 3, 2, 2, 2, 881, 882, 8, 93, 5, 2, 882, 187, 3, 2, 2, 2, 883, 887, 7, 41, 2, 2, 884, 885, 7, 94, 2, 2, 885, 888, 9, 6, 2, 2, 886, 888, 10, 7, 2, 2, 887, 884, 3, 2, 2, 2, 887, 886, 3, 2, 2, 2, 888, 889, 3, 2, 2, 2, 889, 890, 7, 41, 2, 2, 890, 189, 3, 2, 2, 2, 891, 892, 7, 37, 2, 2, 892, 893, 7, 102, 2, 2, 893, 894, 7, 103, 2, 2, 894, 895, 7, 104, 2, 2, 895, 896, 7, 107, 2, 2, 896, 897, 7, 112, 2, 2, 897, 898, 7, 103, 2, 2, 898, 191, 3, 2, 2, 2, 899, 900, 7, 94, 2, 2, 900, 901, 7, 12, 2, 2, 901, 193, 3, 2, 2, 2, 902, 903, 7, 37, 2, 2, 903, 904, 7, 119, 2, 2, 904, 905, 7, 112, 2, 2, 905, 906, 7, 102, 2, 2, 906, 907, 7, 103, 2, 2, 907, 908, 7, 104, 2, 2, 908, 195, 3, 2, 2, 2, 909, 912, 5, 198, 99, 2, 910, 912, 5, 206, 103, 2, 911, 909, 3, 2, 2, 2, 911, 910, 3, 2, 2, 2, 912, 197, 3, 2, 2, 2, 913, 917, 5, 200, 100, 2, 914, 917, 5, 202, 101, 2, 915, 917, 5, 204, 102, 2, 916, 913, 3, 2, 2, 2, 916, 914, 3, 2, 2, 2, 916, 915, 3, 2, 2, 2, 917, 199, 3, 2, 2, 2, 918, 924, 7, 39, 2, 2, 919, 920, 7, 50, 2, 2, 920, 924, 7, 100, 2, 2, 921, 922, 7, 50, 2, 2, 922, 924, 7, 68, 2, 2, 923, 918, 3, 2, 2, 2, 923, 919, 3, 2, 2, 2, 923, 921, 3, 2, 2, 2, 924, 928, 3, 2, 2, 2, 925, 927, 5, 214, 107, 2, 926, 925, 3, 2, 2, 2, 927, 930, 3, 2, 2, 2, 928, 926, 3, 2, 2, 2, 928, 929, 3, 2, 2, 2, 929, 931, 3, 2, 2, 2, 930, 928, 3, 2, 2, 2, 931, 933, 7, 48, 2, 2, 932, 934, 5, 214, 107, 2, 933, 932, 3, 2, 2, 2, 934, 935, 3, 2, 2, 2, 935, 933, 3, 2, 2, 2, 935, 936, 3, 2, 2, 2, 936, 201, 3, 2, 2, 2, 937, 939, 5, 216, 108, 2, 938, 937, 3, 2, 2, 2, 939, 942, 3, 2, 2, 2, 940, 938, 3, 2, 2, 2, 940, 941, 3, 2, 2, 2, 941, 943, 3, 2, 2, 2, 942, 940, 3, 2, 2, 2, 943, 945, 7, 48, 2, 2, 944, 946, 5, 216, 108, 2, 945, 944, 3, 2, 2, 2, 946, 947, 3, 2, 2, 2, 947, 945, 3, 2, 2, 2, 947, 948, 3, 2, 2, 2, 948, 203, 3, 2, 2, 2, 949, 955, 7, 38, 2, 2, 950, 951, 7, 50, 2, 2, 951, 955, 7, 122, 2, 2, 952, 953, 7, 50, 2, 2, 953, 955, 7, 90, 2, 2, 954, 949, 3, 2, 2, 2, 954, 950, 3, 2, 2, 2, 954, 952, 3, 2, 2, 2, 955, 959, 3, 2, 2, 2, 956, 958, 5, 218, 109, 2, 957, 956, 3, 2, 2, 2, 958, 961, 3, 2, 2, 2, 959, 957, 3, 2, 2, 2, 959, 960, 3, 2, 2, 2, 960, 962, 3, 2, 2, 2, 961, 959, 3, 2, 2, 2, 962, 964, 7, 48, 2, 2, 963, 965, 5, 218, 109, 2, 964, 963, 3, 2, 2, 2, 965, 966, 3, 2, 2, 2, 966, 964, 3, 2, 2, 2, 966, 967, 3, 2, 2, 2, 967, 205, 3, 2, 2, 2, 968, 972, 5, 210, 105, 2, 969, 972, 5, 212, 106, 2, 970, 972, 5, 208, 104, 2, 971, 968, 3, 2, 2, 2, 971, 969, 3, 2, 2, 2, 971, 970, 3, 2, 2, 2, 972, 976, 3, 2, 2, 2, 973, 974, 9, 8, 2, 2, 974, 977, 9, 9, 2, 2, 975, 977, 7, 110, 2, 2, 976, 973, 3, 2, 2, 2, 976, 975, 3, 2, 2, 2, 976, 977, 3, 2, 2, 2, 977, 207, 3, 2, 2, 2, 978, 979, 7, 50, 2, 2, 979, 981, 9, 10, 2, 2, 980, 982, 5, 214, 107, 2, 981, 980, 3, 2, 2, 2, 982, 983, 3, 2, 2, 2, 983, 981, 3, 2, 2, 2, 983, 984, 3, 2, 2, 2, 984, 992, 3, 2, 2, 2, 985, 987, 7, 39, 2, 2, 986, 988, 5, 214, 107, 2, 987, 986, 3, 2, 2, 2, 988, 989, 3, 2, 2, 2, 989, 987, 3, 2, 2, 2, 989, 990, 3, 2, 2, 2, 990, 992, 3, 2, 2, 2, 991, 978, 3, 2, 2, 2, 991, 985, 3, 2, 2, 2, 992, 209, 3, 2, 2, 2, 993, 995, 5, 216, 108, 2, 994, 993, 3, 2, 2, 2, 995, 996, 3, 2, 2, 2, 996, 994, 3, 2, 2, 2, 996, 997, 3, 2, 2, 2, 997, 211, 3, 2, 2, 2, 998, 1004, 7, 38, 2, 2, 999, 1000, 7, 50, 2, 2, 1000, 1004, 7, 122, 2, 2, 1001, 1002, 7, 50, 2, 2, 1002, 1004, 7, 90, 2, 2, 1003, 998, 3, 2, 2, 2, 1003, 999, 3, 2, 2, 2, 1003, 1001, 3, 2, 2, 2, 1004, 1006, 3, 2, 2, 2, 1005, 1007, 5, 218, 109, 2, 1006, 1005, 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1006, 3, 2, 2, 2, 1008, 1009, 3, 2, 2, 2, 1009, 213, 3, 2, 2, 2, 1010, 1011, 9, 11, 2, 2, 1011, 215, 3, 2, 2, 2, 1012, 1013, 9, 12, 2, 2, 1013, 217, 3, 2, 2, 2, 1014, 1015, 9, 13, 2, 2, 1015, 219, 3, 2, 2, 2, 1016, 1020, 5, 222, 111, 2, 1017, 1019, 5, 224, 112, 2, 1018, 1017, 3, 2, 2, 2, 1019, 1022, 3, 2, 2, 2, 1020, 1018, 3, 2, 2, 2, 1020, 1021, 3, 2, 2, 2, 1021, 1023, 3, 2, 2, 2, 1022, 1020, 3, 2, 2, 2, 1023, 1024, 8, 110, 6, 2, 1024, 221, 3, 2, 2, 2, 1025, 1026, 9, 14, 2, 2, 1026, 223, 3, 2, 2, 2, 1027, 1028, 9, 15, 2, 2, 1028, 225, 3, 2, 2, 2, 1029, 1031, 9, 16, 2, 2, 1030, 1029, 3, 2, 2, 2, 1031, 1032, 3, 2, 2, 2, 1032, 1030, 3, 2, 2, 2, 1032, 1033, 3, 2, 2, 2, 1033, 1034, 3, 2, 2, 2, 1034, 1035, 8, 113, 7, 2, 1035, 227, 3, 2, 2, 2, 1036, 1037, 7, 49, 2, 2, 1037, 1038, 7, 49, 2, 2, 1038, 1042, 3, 2, 2, 2, 1039, 1041, 10, 17, 2, 2, 1040, 1039, 3, 2, 2, 2, 1041, 1044, 3, 2, 2, 2, 1042, 1040, 3, 2, 2, 2, 1042, 1043, 3, 2, 2, 2, 1043, 1045, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1045, 1046, 8, 114, 8, 2, 1046, 229, 3, 2, 2, 2, 1047, 1048, 7, 49, 2, 2, 1048, 1049, 7, 44, 2, 2, 1049, 1053, 3, 2, 2, 2, 1050, 1052, 11, 2, 2, 2, 1051, 1050, 3, 2, 2, 2, 1052, 1055, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1053, 1051, 3, 2, 2, 2, 1054, 1056, 3, 2, 2, 2, 1055, 1053, 3, 2, 2, 2, 1056, 1057, 7, 44, 2, 2, 1057, 1058, 7, 49, 2, 2, 1058, 1059, 3, 2, 2, 2, 1059, 1060, 8, 115, 8, 2, 1060, 231, 3, 2, 2, 2, 1061, 1062, 7, 48, 2, 2, 1062, 1063, 7, 100, 2, 2, 1063, 1064, 7, 123, 2, 2, 1064, 1065, 7, 118, 2, 2, 1065, 1066, 7, 103, 2, 2, 1066, 233, 3, 2, 2, 2, 1067, 1068, 7, 100, 2, 2, 1068, 1069, 7, 116, 2, 2, 1069, 1290, 7, 109, 2, 2, 1070, 1071, 7, 113, 2, 2, 1071, 1072, 7, 116, 2, 2, 1072, 1290, 7, 99, 2, 2, 1073, 1074, 7, 109, 2, 2, 1074, 1075, 7, 107, 2, 2, 1075, 1290, 7, 110, 2, 2, 1076, 1077, 7, 117, 2, 2, 1077, 1078, 7, 110, 2, 2, 1078, 1290, 7, 113, 2, 2, 1079, 1080, 7, 112, 2, 2, 1080, 1081, 7, 113, 2, 2, 1081, 1290, 7, 114, 2, 2, 1082, 1083, 7, 99, 2, 2, 1083, 1084, 7, 117, 2, 2, 1084, 1290, 7, 110, 2, 2, 1085, 1086, 7, 114, 2, 2, 1086, 1087, 7, 106, 2, 2, 1087, 1290, 7, 114, 2, 2, 1088, 1089, 7, 99, 2, 2, 1089, 1090, 7, 112, 2, 2, 1090, 1290, 7, 101, 2, 2, 1091, 1092, 7, 100, 2, 2, 1092, 1093, 7, 114, 2, 2, 1093, 1290, 7, 110, 2, 2, 1094, 1095, 7, 101, 2, 2, 1095, 1096, 7, 110, 2, 2, 1096, 1290, 7, 101, 2, 2, 1097, 1098, 7, 108, 2, 2, 1098, 1099, 7, 117, 2, 2, 1099, 1290, 7, 116, 2, 2, 1100, 1101, 7, 99, 2, 2, 1101, 1102, 7, 112, 2, 2, 1102, 1290, 7, 102, 2, 2, 1103, 1104, 7, 116, 2, 2, 1104, 1105, 7, 110, 2, 2, 1105, 1290, 7, 99, 2, 2, 1106, 1107, 7, 100, 2, 2, 1107, 1108, 7, 107, 2, 2, 1108, 1290, 7, 118, 2, 2, 1109, 1110, 7, 116, 2, 2, 1110, 1111, 7, 113, 2, 2, 1111, 1290, 7, 110, 2, 2, 1112, 1113, 7, 114, 2, 2, 1113, 1114, 7, 110, 2, 2, 1114, 1290, 7, 99, 2, 2, 1115, 1116, 7, 114, 2, 2, 1116, 1117, 7, 110, 2, 2, 1117, 1290, 7, 114, 2, 2, 1118, 1119, 7, 100, 2, 2, 1119, 1120, 7, 111, 2, 2, 1120, 1290, 7, 107, 2, 2, 1121, 1122, 7, 117, 2, 2, 1122, 1123, 7, 103, 2, 2, 1123, 1290, 7, 101, 2, 2, 1124, 1125, 7, 116, 2, 2, 1125, 1126, 7, 118, 2, 2, 1126, 1290, 7, 107, 2, 2, 1127, 1128, 7, 103, 2, 2, 1128, 1129, 7, 113, 2, 2, 1129, 1290, 7, 116, 2, 2, 1130, 1131, 7, 117, 2, 2, 1131, 1132, 7, 116, 2, 2, 1132, 1290, 7, 103, 2, 2, 1133, 1134, 7, 110, 2, 2, 1134, 1135, 7, 117, 2, 2, 1135, 1290, 7, 116, 2, 2, 1136, 1137, 7, 114, 2, 2, 1137, 1138, 7, 106, 2, 2, 1138, 1290, 7, 99, 2, 2, 1139, 1140, 7, 99, 2, 2, 1140, 1141, 7, 110, 2, 2, 1141, 1290, 7, 116, 2, 2, 1142, 1143, 7, 108, 2, 2, 1143, 1144, 7, 111, 2, 2, 1144, 1290, 7, 114, 2, 2, 1145, 1146, 7, 100, 2, 2, 1146, 1147, 7, 120, 2, 2, 1147, 1290, 7, 101, 2, 2, 1148, 1149, 7, 101, 2, 2, 1149, 1150, 7, 110, 2, 2, 1150, 1290, 7, 107, 2, 2, 1151, 1152, 7, 116, 2, 2, 1152, 1153, 7, 118, 2, 2, 1153, 1290, 7, 117, 2, 2, 1154, 1155, 7, 99, 2, 2, 1155, 1156, 7, 102, 2, 2, 1156, 1290, 7, 101, 2, 2, 1157, 1158, 7, 116, 2, 2, 1158, 1159, 7, 116, 2, 2, 1159, 1290, 7, 99, 2, 2, 1160, 1161, 7, 100, 2, 2, 1161, 1162, 7, 120, 2, 2, 1162, 1290, 7, 117, 2, 2, 1163, 1164, 7, 117, 2, 2, 1164, 1165, 7, 103, 2, 2, 1165, 1290, 7, 107, 2, 2, 1166, 1167, 7, 117, 2, 2, 1167, 1168, 7, 99, 2, 2, 1168, 1290, 7, 122, 2, 2, 1169, 1170, 7, 117, 2, 2, 1170, 1171, 7, 118, 2, 2, 1171, 1290, 7, 123, 2, 2, 1172, 1173, 7, 117, 2, 2, 1173, 1174, 7, 118, 2, 2, 1174, 1290, 7, 99, 2, 2, 1175, 1176, 7, 117, 2, 2, 1176, 1177, 7, 118, 2, 2, 1177, 1290, 7, 122, 2, 2, 1178, 1179, 7, 102, 2, 2, 1179, 1180, 7, 103, 2, 2, 1180, 1290, 7, 123, 2, 2, 1181, 1182, 7, 118, 2, 2, 1182, 1183, 7, 122, 2, 2, 1183, 1290, 7, 99, 2, 2, 1184, 1185, 7, 122, 2, 2, 1185, 1186, 7, 99, 2, 2, 1186, 1290, 7, 99, 2, 2, 1187, 1188, 7, 100, 2, 2, 1188, 1189, 7, 101, 2, 2, 1189, 1290, 7, 101, 2, 2, 1190, 1191, 7, 99, 2, 2, 1191, 1192, 7, 106, 2, 2, 1192, 1290, 7, 122, 2, 2, 1193, 1194, 7, 118, 2, 2, 1194, 1195, 7, 123, 2, 2, 1195, 1290, 7, 99, 2, 2, 1196, 1197, 7, 118, 2, 2, 1197, 1198, 7, 122, 2, 2, 1198, 1290, 7, 117, 2, 2, 1199, 1200, 7, 118, 2, 2, 1200, 1201, 7, 99, 2, 2, 1201, 1290, 7, 117, 2, 2, 1202, 1203, 7, 117, 2, 2, 1203, 1204, 7, 106, 2, 2, 1204, 1290, 7, 123, 2, 2, 1205, 1206, 7, 117, 2, 2, 1206, 1207, 7, 106, 2, 2, 1207, 1290, 7, 122, 2, 2, 1208, 1209, 7, 110, 2, 2, 1209, 1210, 7, 102, 2, 2, 1210, 1290, 7, 123, 2, 2, 1211, 1212, 7, 110, 2, 2, 1212, 1213, 7, 102, 2, 2, 1213, 1290, 7, 99, 2, 2, 1214, 1215, 7, 110, 2, 2, 1215, 1216, 7, 102, 2, 2, 1216, 1290, 7, 122, 2, 2, 1217, 1218, 7, 110, 2, 2, 1218, 1219, 7, 99, 2, 2, 1219, 1290, 7, 122, 2, 2, 1220, 1221, 7, 118, 2, 2, 1221, 1222, 7, 99, 2, 2, 1222, 1290, 7, 123, 2, 2, 1223, 1224, 7, 118, 2, 2, 1224, 1225, 7, 99, 2, 2, 1225, 1290, 7, 122, 2, 2, 1226, 1227, 7, 100, 2, 2, 1227, 1228, 7, 101, 2, 2, 1228, 1290, 7, 117, 2, 2, 1229, 1230, 7, 101, 2, 2, 1230, 1231, 7, 110, 2, 2, 1231, 1290, 7, 120, 2, 2, 1232, 1233, 7, 118, 2, 2, 1233, 1234, 7, 117, 2, 2, 1234, 1290, 7, 122, 2, 2, 1235, 1236, 7, 110, 2, 2, 1236, 1237, 7, 99, 2, 2, 1237, 1290, 7, 117, 2, 2, 1238, 1239, 7, 101, 2, 2, 1239, 1240, 7, 114, 2, 2, 1240, 1290, 7, 123, 2, 2, 1241, 1242, 7, 101, 2, 2, 1242, 1243, 7, 111, 2, 2, 1243, 1290, 7, 114, 2, 2, 1244, 1245, 7, 101, 2, 2, 1245, 1246, 7, 114, 2, 2, 1246, 1290, 7, 122, 2, 2, 1247, 1248, 7, 102, 2, 2, 1248, 1249, 7, 101, 2, 2, 1249, 1290, 7, 114, 2, 2, 1250, 1251, 7, 102, 2, 2, 1251, 1252, 7, 103, 2, 2, 1252, 1290, 7, 101, 2, 2, 1253, 1254, 7, 107, 2, 2, 1254, 1255, 7, 112, 2, 2, 1255, 1290, 7, 101, 2, 2, 1256, 1257, 7, 99, 2, 2, 1257, 1258, 7, 122, 2, 2, 1258, 1290, 7, 117, 2, 2, 1259, 1260, 7, 100, 2, 2, 1260, 1261, 7, 112, 2, 2, 1261, 1290, 7, 103, 2, 2, 1262, 1263, 7, 101, 2, 2, 1263, 1264, 7, 110, 2, 2, 1264, 1290, 7, 102, 2, 2, 1265, 1266, 7, 117, 2, 2, 1266, 1267, 7, 100, 2, 2, 1267, 1290, 7, 101, 2, 2, 1268, 1269, 7, 107, 2, 2, 1269, 1270, 7, 117, 2, 2, 1270, 1290, 7, 101, 2, 2, 1271, 1272, 7, 107, 2, 2, 1272, 1273, 7, 112, 2, 2, 1273, 1290, 7, 122, 2, 2, 1274, 1275, 7, 100, 2, 2, 1275, 1276, 7, 103, 2, 2, 1276, 1290, 7, 115, 2, 2, 1277, 1278, 7, 117, 2, 2, 1278, 1279, 7, 103, 2, 2, 1279, 1290, 7, 102, 2, 2, 1280, 1281, 7, 102, 2, 2, 1281, 1282, 7, 103, 2, 2, 1282, 1290, 7, 122, 2, 2, 1283, 1284, 7, 107, 2, 2, 1284, 1285, 7, 112, 2, 2, 1285, 1290, 7, 123, 2, 2, 1286, 1287, 7, 116, 2, 2, 1287, 1288, 7, 113, 2, 2, 1288, 1290, 7, 116, 2, 2, 1289, 1067, 3, 2, 2, 2, 1289, 1070, 3, 2, 2, 2, 1289, 1073, 3, 2, 2, 2, 1289, 1076, 3, 2, 2, 2, 1289, 1079, 3, 2, 2, 2, 1289, 1082, 3, 2, 2, 2, 1289, 1085, 3, 2, 2, 2, 1289, 1088, 3, 2, 2, 2, 1289, 1091, 3, 2, 2, 2, 1289, 1094, 3, 2, 2, 2, 1289, 1097, 3, 2, 2, 2, 1289, 1100, 3, 2, 2, 2, 1289, 1103, 3, 2, 2, 2, 1289, 1106, 3, 2, 2, 2, 1289, 1109, 3, 2, 2, 2, 1289, 1112, 3, 2, 2, 2, 1289, 1115, 3, 2, 2, 2, 1289, 1118, 3, 2, 2, 2, 1289, 1121, 3, 2, 2, 2, 1289, 1124, 3, 2, 2, 2, 1289, 1127, 3, 2, 2, 2, 1289, 1130, 3, 2, 2, 2, 1289, 1133, 3, 2, 2, 2, 1289, 1136, 3, 2, 2, 2, 1289, 1139, 3, 2, 2, 2, 1289, 1142, 3, 2, 2, 2, 1289, 1145, 3, 2, 2, 2, 1289, 1148, 3, 2, 2, 2, 1289, 1151, 3, 2, 2, 2, 1289, 1154, 3, 2, 2, 2, 1289, 1157, 3, 2, 2, 2, 1289, 1160, 3, 2, 2, 2, 1289, 1163, 3, 2, 2, 2, 1289, 1166, 3, 2, 2, 2, 1289, 1169, 3, 2, 2, 2, 1289, 1172, 3, 2, 2, 2, 1289, 1175, 3, 2, 2, 2, 1289, 1178, 3, 2, 2, 2, 1289, 1181, 3, 2, 2, 2, 1289, 1184, 3, 2, 2, 2, 1289, 1187, 3, 2, 2, 2, 1289, 1190, 3, 2, 2, 2, 1289, 1193, 3, 2, 2, 2, 1289, 1196, 3, 2, 2, 2, 1289, 1199, 3, 2, 2, 2, 1289, 1202, 3, 2, 2, 2, 1289, 1205, 3, 2, 2, 2, 1289, 1208, 3, 2, 2, 2, 1289, 1211, 3, 2, 2, 2, 1289, 1214, 3, 2, 2, 2, 1289, 1217, 3, 2, 2, 2, 1289, 1220, 3, 2, 2, 2, 1289, 1223, 3, 2, 2, 2, 1289, 1226, 3, 2, 2, 2, 1289, 1229, 3, 2, 2, 2, 1289, 1232, 3, 2, 2, 2, 1289, 1235, 3, 2, 2, 2, 1289, 1238, 3, 2, 2, 2, 1289, 1241, 3, 2, 2, 2, 1289, 1244, 3, 2, 2, 2, 1289, 1247, 3, 2, 2, 2, 1289, 1250, 3, 2, 2, 2, 1289, 1253, 3, 2, 2, 2, 1289, 1256, 3, 2, 2, 2, 1289, 1259, 3, 2, 2, 2, 1289, 1262, 3, 2, 2, 2, 1289, 1265, 3, 2, 2, 2, 1289, 1268, 3, 2, 2, 2, 1289, 1271, 3, 2, 2, 2, 1289, 1274, 3, 2, 2, 2, 1289, 1277, 3, 2, 2, 2, 1289, 1280, 3, 2, 2, 2, 1289, 1283, 3, 2, 2, 2, 1289, 1286, 3, 2, 2, 2, 1290, 235, 3, 2, 2, 2, 1291, 1292, 7, 37, 2, 2, 1292, 237, 3, 2, 2, 2, 1293, 1294, 7, 60, 2, 2, 1294, 239, 3, 2, 2, 2, 1295, 1296, 7, 46, 2, 2, 1296, 241, 3, 2, 2, 2, 1297, 1298, 7, 42, 2, 2, 1298, 243, 3, 2, 2, 2, 1299, 1300, 7, 43, 2, 2, 1300, 245, 3, 2, 2, 2, 1301, 1302, 7, 93, 2, 2, 1302, 247, 3, 2, 2, 2, 1303, 1304, 7, 95, 2, 2, 1304, 249, 3, 2, 2, 2, 1305, 1306, 7, 48, 2, 2, 1306, 251, 3, 2, 2, 2, 1307, 1308, 7, 62, 2, 2, 1308, 1309, 7, 62, 2, 2, 1309, 253, 3, 2, 2, 2, 1310, 1311, 7, 64, 2, 2, 1311, 1312, 7, 64, 2, 2, 1312, 255, 3, 2, 2, 2, 1313, 1314, 7, 45, 2, 2, 1314, 257, 3, 2, 2, 2, 1315, 1316, 7, 47, 2, 2, 1316, 259, 3, 2, 2, 2, 1317, 1318, 7, 62, 2, 2, 1318, 261, 3, 2, 2, 2, 1319, 1320, 7, 64, 2, 2, 1320, 263, 3, 2, 2, 2, 1321, 1322, 7, 44, 2, 2, 1322, 265, 3, 2, 2, 2, 1323, 1324, 7, 49, 2, 2, 1324, 267, 3, 2, 2, 2, 1325, 1326, 7, 125, 2, 2, 1326, 1327, 8, 134, 9, 2, 1327, 269, 3, 2, 2, 2, 1328, 1329, 7, 127, 2, 2, 1329, 1330, 8, 135, 10, 2, 1330, 271, 3, 2, 2, 2, 1331, 1334, 5, 274, 137, 2, 1332, 1334, 5, 282, 141, 2, 1333, 1331, 3, 2, 2, 2, 1333, 1332, 3, 2, 2, 2, 1334, 273, 3, 2, 2, 2, 1335, 1339, 5, 276, 138, 2, 1336, 1339, 5, 278, 139, 2, 1337, 1339, 5, 280, 140, 2, 1338, 1335, 3, 2, 2, 2, 1338, 1336, 3, 2, 2, 2, 1338, 1337, 3, 2, 2, 2, 1339, 275, 3, 2, 2, 2, 1340, 1344, 7, 39, 2, 2, 1341, 1343, 5, 290, 145, 2, 1342, 1341, 3, 2, 2, 2, 1343, 1346, 3, 2, 2, 2, 1344, 1342, 3, 2, 2, 2, 1344, 1345, 3, 2, 2, 2, 1345, 1347, 3, 2, 2, 2, 1346, 1344, 3, 2, 2, 2, 1347, 1349, 7, 48, 2, 2, 1348, 1350, 5, 290, 145, 2, 1349, 1348, 3, 2, 2, 2, 1350, 1351, 3, 2, 2, 2, 1351, 1349, 3, 2, 2, 2, 1351, 1352, 3, 2, 2, 2, 1352, 277, 3, 2, 2, 2, 1353, 1355, 5, 292, 146, 2, 1354, 1353, 3, 2, 2, 2, 1355, 1358, 3, 2, 2, 2, 1356, 1354, 3, 2, 2, 2, 1356, 1357, 3, 2, 2, 2, 1357, 1359, 3, 2, 2, 2, 1358, 1356, 3, 2, 2, 2, 1359, 1361, 7, 48, 2, 2, 1360, 1362, 5, 292, 146, 2, 1361, 1360, 3, 2, 2, 2, 1362, 1363, 3, 2, 2, 2, 1363, 1361, 3, 2, 2, 2, 1363, 1364, 3, 2, 2, 2, 1364, 279, 3, 2, 2, 2, 1365, 1369, 7, 38, 2, 2, 1366, 1368, 5, 294, 147, 2, 1367, 1366, 3, 2, 2, 2, 1368, 1371, 3, 2, 2, 2, 1369, 1367, 3, 2, 2, 2, 1369, 1370, 3, 2, 2, 2, 1370, 1372, 3, 2, 2, 2, 1371, 1369, 3, 2, 2, 2, 1372, 1374, 7, 48, 2, 2, 1373, 1375, 5, 294, 147, 2, 1374, 1373, 3, 2, 2, 2, 1375, 1376, 3, 2, 2, 2, 1376, 1374, 3, 2, 2, 2, 1376, 1377, 3, 2, 2, 2, 1377, 281, 3, 2, 2, 2, 1378, 1382, 5, 286, 143, 2, 1379, 1382, 5, 288, 144, 2, 1380, 1382, 5, 284, 142, 2, 1381, 1378, 3, 2, 2, 2, 1381, 1379, 3, 2, 2, 2, 1381, 1380, 3, 2, 2, 2, 1382, 283, 3, 2, 2, 2, 1383, 1385, 7, 39, 2, 2, 1384, 1386, 5, 290, 145, 2, 1385, 1384, 3, 2, 2, 2, 1386, 1387, 3, 2, 2, 2, 1387, 1385, 3, 2, 2, 2, 1387, 1388, 3, 2, 2, 2, 1388, 285, 3, 2, 2, 2, 1389, 1391, 5, 292, 146, 2, 1390, 1389, 3, 2, 2, 2, 1391, 1392, 3, 2, 2, 2, 1392, 1390, 3, 2, 2, 2, 1392, 1393, 3, 2, 2, 2, 1393, 287, 3, 2, 2, 2, 1394, 1396, 7, 38, 2, 2, 1395, 1397, 5, 294, 147, 2, 1396, 1395, 3, 2, 2, 2, 1397, 1398, 3, 2, 2, 2, 1398, 1396, 3, 2, 2, 2, 1398, 1399, 3, 2, 2, 2, 1399, 289, 3, 2, 2, 2, 1400, 1401, 9, 11, 2, 2, 1401, 291, 3, 2, 2, 2, 1402, 1403, 9, 12, 2, 2, 1403, 293, 3, 2, 2, 2, 1404, 1405, 9, 13, 2, 2, 1405, 295, 3, 2, 2, 2, 1406, 1410, 7, 41, 2, 2, 1407, 1408, 7, 94, 2, 2, 1408, 1411, 9, 6, 2, 2, 1409, 1411, 10, 7, 2, 2, 1410, 1407, 3, 2, 2, 2, 1410, 1409, 3, 2, 2, 2, 1411, 1412, 3, 2, 2, 2, 1412, 1413, 7, 41, 2, 2, 1413, 297, 3, 2, 2, 2, 1414, 1416, 5, 300, 150, 2, 1415, 1417, 9, 18, 2, 2, 1416, 1415, 3, 2, 2, 2, 1417, 1418, 3, 2, 2, 2, 1418, 1416, 3, 2, 2, 2, 1418, 1419, 3, 2, 2, 2, 1419, 299, 3, 2, 2, 2, 1420, 1424, 7, 35, 2, 2, 1421, 1423, 5, 306, 153, 2, 1422, 1421, 3, 2, 2, 2, 1423, 1426, 3, 2, 2, 2, 1424, 1422, 3, 2, 2, 2, 1424, 1425, 3, 2, 2, 2, 1425, 301, 3, 2, 2, 2, 1426, 1424, 3, 2, 2, 2, 1427, 1431, 5, 304, 152, 2, 1428, 1430, 5, 306, 153, 2, 1429, 1428, 3, 2, 2, 2, 1430, 1433, 3, 2, 2, 2, 1431, 1429, 3, 2, 2, 2, 1431, 1432, 3, 2, 2, 2, 1432, 303, 3, 2, 2, 2, 1433, 1431, 3, 2, 2, 2, 1434, 1435, 9, 14, 2, 2, 1435, 305, 3, 2, 2, 2, 1436, 1437, 9, 15, 2, 2, 1437, 307, 3, 2, 2, 2, 1438, 1440, 9, 16, 2, 2, 1439, 1438, 3, 2, 2, 2, 1440, 1441, 3, 2, 2, 2, 1441, 1439, 3, 2, 2, 2, 1441, 1442, 3, 2, 2, 2, 1442, 1443, 3, 2, 2, 2, 1443, 1444, 8, 154, 7, 2, 1444, 309, 3, 2, 2, 2, 1445, 1446, 7, 49, 2, 2, 1446, 1447, 7, 49, 2, 2, 1447, 1451, 3, 2, 2, 2, 1448, 1450, 10, 17, 2, 2, 1449, 1448, 3, 2, 2, 2, 1450, 1453, 3, 2, 2, 2, 1451, 1449, 3, 2, 2, 2, 1451, 1452, 3, 2, 2, 2, 1452, 1454, 3, 2, 2, 2, 1453, 1451, 3, 2, 2, 2, 1454, 1455, 8, 155, 8, 2, 1455, 311, 3, 2, 2, 2, 1456, 1457, 7, 49, 2, 2, 1457, 1458, 7, 44, 2, 2, 1458, 1462, 3, 2, 2, 2, 1459, 1461, 11, 2, 2, 2, 1460, 1459, 3, 2, 2, 2, 1461, 1464, 3, 2, 2, 2, 1462, 1463, 3, 2, 2, 2, 1462, 1460, 3, 2, 2, 2, 1463, 1465, 3, 2, 2, 2, 1464, 1462, 3, 2, 2, 2, 1465, 1466, 7, 44, 2, 2, 1466, 1467, 7, 49, 2, 2, 1467, 1468, 3, 2, 2, 2, 1468, 1469, 8, 156, 8, 2, 1469, 313, 3, 2, 2, 2, 59, 2, 3, 419, 628, 795, 834, 845, 853, 863, 865, 870, 874, 876, 879, 887, 911, 916, 923, 928, 935, 940, 947, 954, 959, 966, 971, 976, 983, 989, 991, 996, 1003, 1008, 1020, 1032, 1042, 1053, 1289, 1333, 1338, 1344, 1351, 1356, 1363, 1369, 1376, 1381, 1387, 1392, 1398, 1410, 1418, 1424, 1431, 1441, 1451, 1462, 11, 3, 2, 2, 3, 38, 3, 3, 75, 4, 3, 93, 5, 3, 110, 6, 2, 3, 2, 2, 4, 2, 3, 134, 7, 3, 135, 8] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 6dff6d954..02ce41998 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -34,18 +34,18 @@ public class KickCLexer extends Lexer { ASM=75, DEFAULT=76, CASE=77, STRUCT=78, ENUM=79, SIZEOF=80, TYPEID=81, KICKASM=82, RESOURCE=83, USES=84, CLOBBERS=85, BYTES=86, CYCLES=87, LOGIC_NOT=88, SIGNEDNESS=89, SIMPLETYPE=90, BOOLEAN=91, KICKASM_BODY=92, STRING=93, - CHAR=94, DEFINE=95, DEFINE_CONTINUE=96, NUMBER=97, NUMFLOAT=98, BINFLOAT=99, - DECFLOAT=100, HEXFLOAT=101, NUMINT=102, BININTEGER=103, DECINTEGER=104, - HEXINTEGER=105, NAME=106, WS=107, COMMENT_LINE=108, COMMENT_BLOCK=109, - ASM_BYTE=110, ASM_MNEMONIC=111, ASM_IMM=112, ASM_COLON=113, ASM_COMMA=114, - ASM_PAR_BEGIN=115, ASM_PAR_END=116, ASM_BRACKET_BEGIN=117, ASM_BRACKET_END=118, - ASM_DOT=119, ASM_SHIFT_LEFT=120, ASM_SHIFT_RIGHT=121, ASM_PLUS=122, ASM_MINUS=123, - ASM_LESS_THAN=124, ASM_GREATER_THAN=125, ASM_MULTIPLY=126, ASM_DIVIDE=127, - ASM_CURLY_BEGIN=128, ASM_CURLY_END=129, ASM_NUMBER=130, ASM_NUMFLOAT=131, - ASM_BINFLOAT=132, ASM_DECFLOAT=133, ASM_HEXFLOAT=134, ASM_NUMINT=135, - ASM_BININTEGER=136, ASM_DECINTEGER=137, ASM_HEXINTEGER=138, ASM_CHAR=139, - ASM_MULTI_REL=140, ASM_MULTI_NAME=141, ASM_NAME=142, ASM_WS=143, ASM_COMMENT_LINE=144, - ASM_COMMENT_BLOCK=145; + CHAR=94, DEFINE=95, DEFINE_CONTINUE=96, UNDEF=97, NUMBER=98, NUMFLOAT=99, + BINFLOAT=100, DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, + DECINTEGER=105, HEXINTEGER=106, NAME=107, WS=108, COMMENT_LINE=109, COMMENT_BLOCK=110, + ASM_BYTE=111, ASM_MNEMONIC=112, ASM_IMM=113, ASM_COLON=114, ASM_COMMA=115, + ASM_PAR_BEGIN=116, ASM_PAR_END=117, ASM_BRACKET_BEGIN=118, ASM_BRACKET_END=119, + ASM_DOT=120, ASM_SHIFT_LEFT=121, ASM_SHIFT_RIGHT=122, ASM_PLUS=123, ASM_MINUS=124, + ASM_LESS_THAN=125, ASM_GREATER_THAN=126, ASM_MULTIPLY=127, ASM_DIVIDE=128, + ASM_CURLY_BEGIN=129, ASM_CURLY_END=130, ASM_NUMBER=131, ASM_NUMFLOAT=132, + ASM_BINFLOAT=133, ASM_DECFLOAT=134, ASM_HEXFLOAT=135, ASM_NUMINT=136, + ASM_BININTEGER=137, ASM_DECINTEGER=138, ASM_HEXINTEGER=139, ASM_CHAR=140, + ASM_MULTI_REL=141, ASM_MULTI_NAME=142, ASM_NAME=143, ASM_WS=144, ASM_COMMENT_LINE=145, + ASM_COMMENT_BLOCK=146; public static final int ASM_MODE=1; public static String[] channelNames = { @@ -72,9 +72,9 @@ public class KickCLexer extends Lexer { "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", "DEFINE", - "DEFINE_CONTINUE", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", - "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", - "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", "WS", "COMMENT_LINE", + "DEFINE_CONTINUE", "UNDEF", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", + "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "BINDIGIT", + "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", @@ -102,8 +102,8 @@ public class KickCLexer extends Lexer { "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, null, null, - null, "'#define'", "'\\\n'", null, null, null, null, null, null, null, - null, null, null, null, null, null, "'.byte'", null, "'#'" + null, "'#define'", "'\\\n'", "'#undef'", null, null, null, null, null, + null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -123,16 +123,16 @@ public class KickCLexer extends Lexer { "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", - "DEFINE", "DEFINE_CONTINUE", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", - "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", - "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", - "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", - "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", - "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", - "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", - "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", - "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", - "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" + "DEFINE", "DEFINE_CONTINUE", "UNDEF", "NUMBER", "NUMFLOAT", "BINFLOAT", + "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", + "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", + "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", + "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", + "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", + "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", + "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", + "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", + "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -224,13 +224,13 @@ public class KickCLexer extends Lexer { case 91: STRING_action((RuleContext)_localctx, actionIndex); break; - case 107: + case 108: NAME_action((RuleContext)_localctx, actionIndex); break; - case 131: + case 132: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 132: + case 133: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; } @@ -286,7 +286,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0093\u05b5\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0094\u05be\b\1\b"+ "\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n"+ "\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21"+ "\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30"+ @@ -306,528 +306,532 @@ public class KickCLexer extends Lexer { "\4\u008e\t\u008e\4\u008f\t\u008f\4\u0090\t\u0090\4\u0091\t\u0091\4\u0092"+ "\t\u0092\4\u0093\t\u0093\4\u0094\t\u0094\4\u0095\t\u0095\4\u0096\t\u0096"+ "\4\u0097\t\u0097\4\u0098\t\u0098\4\u0099\t\u0099\4\u009a\t\u009a\4\u009b"+ - "\t\u009b\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3"+ - "\t\3\t\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16\3\16\3\17\3\17"+ - "\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24\3\25\3\25\3\25"+ - "\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\32\3\33\3\33\3\33"+ - "\3\34\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\37\3\37\3\37\3 \3 \3 \3!\3"+ - "!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3"+ - "%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u01a2\n%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3\'\3"+ - "\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3)\3)\3)\3"+ - ")\3)\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3-\3-\3-\3-\3.\3.\3"+ - ".\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60"+ - "\3\60\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62"+ - "\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64"+ - "\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\66"+ - "\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\38\38\38\38\3"+ - "8\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3:\3:\3"+ - ":\3:\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3"+ - ">\3?\3?\3?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3"+ - "@\3@\3@\3@\3@\3@\5@\u0273\n@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3"+ - "C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3F\3F\3F\3F\3G\3G\3G\3G\3G\3"+ - "G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3"+ - "J\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N\3N\3N\3"+ - "N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3"+ - "R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3U\3"+ - "U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3X\3X\3"+ - "Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u031a\nY\3Z\3Z\3Z\3Z\3Z\3"+ - "Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3"+ - "Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u0341\nZ\3[\3[\3[\3[\3[\3[\3[\3[\3[\5[\u034c"+ - "\n[\3\\\3\\\3\\\3\\\7\\\u0352\n\\\f\\\16\\\u0355\13\\\3\\\3\\\3\\\3]\3"+ - "]\3]\3]\7]\u035e\n]\f]\16]\u0361\13]\3]\3]\5]\u0365\n]\3]\3]\5]\u0369"+ - "\n]\5]\u036b\n]\3]\5]\u036e\n]\3]\3]\3^\3^\3^\3^\5^\u0376\n^\3^\3^\3_"+ - "\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3a\3a\5a\u0387\na\3b\3b\3b\5b\u038c\nb"+ - "\3c\3c\3c\3c\3c\5c\u0393\nc\3c\7c\u0396\nc\fc\16c\u0399\13c\3c\3c\6c\u039d"+ - "\nc\rc\16c\u039e\3d\7d\u03a2\nd\fd\16d\u03a5\13d\3d\3d\6d\u03a9\nd\rd"+ - "\16d\u03aa\3e\3e\3e\3e\3e\5e\u03b2\ne\3e\7e\u03b5\ne\fe\16e\u03b8\13e"+ - "\3e\3e\6e\u03bc\ne\re\16e\u03bd\3f\3f\3f\5f\u03c3\nf\3f\3f\3f\5f\u03c8"+ - "\nf\3g\3g\3g\6g\u03cd\ng\rg\16g\u03ce\3g\3g\6g\u03d3\ng\rg\16g\u03d4\5"+ - "g\u03d7\ng\3h\6h\u03da\nh\rh\16h\u03db\3i\3i\3i\3i\3i\5i\u03e3\ni\3i\6"+ - "i\u03e6\ni\ri\16i\u03e7\3j\3j\3k\3k\3l\3l\3m\3m\7m\u03f2\nm\fm\16m\u03f5"+ - "\13m\3m\3m\3n\3n\3o\3o\3p\6p\u03fe\np\rp\16p\u03ff\3p\3p\3q\3q\3q\3q\7"+ - "q\u0408\nq\fq\16q\u040b\13q\3q\3q\3r\3r\3r\3r\7r\u0413\nr\fr\16r\u0416"+ - "\13r\3r\3r\3r\3r\3r\3s\3s\3s\3s\3s\3s\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3t\3"+ - "t\3t\3t\3t\3t\5t\u0501\nt\3u\3u\3v\3v\3w\3w\3x\3x\3y\3y\3z\3z\3{\3{\3"+ - "|\3|\3}\3}\3}\3~\3~\3~\3\177\3\177\3\u0080\3\u0080\3\u0081\3\u0081\3\u0082"+ - "\3\u0082\3\u0083\3\u0083\3\u0084\3\u0084\3\u0085\3\u0085\3\u0085\3\u0086"+ - "\3\u0086\3\u0086\3\u0087\3\u0087\5\u0087\u052d\n\u0087\3\u0088\3\u0088"+ - "\3\u0088\5\u0088\u0532\n\u0088\3\u0089\3\u0089\7\u0089\u0536\n\u0089\f"+ - "\u0089\16\u0089\u0539\13\u0089\3\u0089\3\u0089\6\u0089\u053d\n\u0089\r"+ - "\u0089\16\u0089\u053e\3\u008a\7\u008a\u0542\n\u008a\f\u008a\16\u008a\u0545"+ - "\13\u008a\3\u008a\3\u008a\6\u008a\u0549\n\u008a\r\u008a\16\u008a\u054a"+ - "\3\u008b\3\u008b\7\u008b\u054f\n\u008b\f\u008b\16\u008b\u0552\13\u008b"+ - "\3\u008b\3\u008b\6\u008b\u0556\n\u008b\r\u008b\16\u008b\u0557\3\u008c"+ - "\3\u008c\3\u008c\5\u008c\u055d\n\u008c\3\u008d\3\u008d\6\u008d\u0561\n"+ - "\u008d\r\u008d\16\u008d\u0562\3\u008e\6\u008e\u0566\n\u008e\r\u008e\16"+ - "\u008e\u0567\3\u008f\3\u008f\6\u008f\u056c\n\u008f\r\u008f\16\u008f\u056d"+ - "\3\u0090\3\u0090\3\u0091\3\u0091\3\u0092\3\u0092\3\u0093\3\u0093\3\u0093"+ - "\3\u0093\5\u0093\u057a\n\u0093\3\u0093\3\u0093\3\u0094\3\u0094\6\u0094"+ - "\u0580\n\u0094\r\u0094\16\u0094\u0581\3\u0095\3\u0095\7\u0095\u0586\n"+ - "\u0095\f\u0095\16\u0095\u0589\13\u0095\3\u0096\3\u0096\7\u0096\u058d\n"+ - "\u0096\f\u0096\16\u0096\u0590\13\u0096\3\u0097\3\u0097\3\u0098\3\u0098"+ - "\3\u0099\6\u0099\u0597\n\u0099\r\u0099\16\u0099\u0598\3\u0099\3\u0099"+ - "\3\u009a\3\u009a\3\u009a\3\u009a\7\u009a\u05a1\n\u009a\f\u009a\16\u009a"+ - "\u05a4\13\u009a\3\u009a\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\7\u009b"+ - "\u05ac\n\u009b\f\u009b\16\u009b\u05af\13\u009b\3\u009b\3\u009b\3\u009b"+ - "\3\u009b\3\u009b\5\u0353\u0414\u05ad\2\u009c\4\4\6\5\b\6\n\7\f\b\16\t"+ - "\20\n\22\13\24\f\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27"+ - ",\30.\31\60\32\62\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V"+ - "-X.Z/\\\60^\61`\62b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082"+ - "C\u0084D\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096"+ - "M\u0098N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aa"+ - "W\u00acX\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00be"+ - "a\u00c0b\u00c2c\u00c4d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2"+ - "k\u00d4\2\u00d6\2\u00d8\2\u00dal\u00dc\2\u00de\2\u00e0m\u00e2n\u00e4o"+ - "\u00e6p\u00e8q\u00ear\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8"+ - "y\u00faz\u00fc{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108\u0081"+ - "\u010a\u0082\u010c\u0083\u010e\u0084\u0110\u0085\u0112\u0086\u0114\u0087"+ - "\u0116\u0088\u0118\u0089\u011a\u008a\u011c\u008b\u011e\u008c\u0120\2\u0122"+ - "\2\u0124\2\u0126\u008d\u0128\u008e\u012a\u008f\u012c\u0090\u012e\2\u0130"+ - "\2\u0132\u0091\u0134\u0092\u0136\u0093\4\2\3\23\3\2$$\3\2||\4\2rruu\4"+ - "\2ooww\7\2$$))hhpptt\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2"+ - "\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\6\2\13\f\17\17\"\"\u00a2\u00a2"+ - "\4\2\f\f\17\17\4\2--//\2\u063f\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2\2\2\n"+ - "\3\2\2\2\2\f\3\2\2\2\2\16\3\2\2\2\2\20\3\2\2\2\2\22\3\2\2\2\2\24\3\2\2"+ - "\2\2\26\3\2\2\2\2\30\3\2\2\2\2\32\3\2\2\2\2\34\3\2\2\2\2\36\3\2\2\2\2"+ - " \3\2\2\2\2\"\3\2\2\2\2$\3\2\2\2\2&\3\2\2\2\2(\3\2\2\2\2*\3\2\2\2\2,\3"+ - "\2\2\2\2.\3\2\2\2\2\60\3\2\2\2\2\62\3\2\2\2\2\64\3\2\2\2\2\66\3\2\2\2"+ - "\28\3\2\2\2\2:\3\2\2\2\2<\3\2\2\2\2>\3\2\2\2\2@\3\2\2\2\2B\3\2\2\2\2D"+ - "\3\2\2\2\2F\3\2\2\2\2H\3\2\2\2\2J\3\2\2\2\2L\3\2\2\2\2N\3\2\2\2\2P\3\2"+ - "\2\2\2R\3\2\2\2\2T\3\2\2\2\2V\3\2\2\2\2X\3\2\2\2\2Z\3\2\2\2\2\\\3\2\2"+ - "\2\2^\3\2\2\2\2`\3\2\2\2\2b\3\2\2\2\2d\3\2\2\2\2f\3\2\2\2\2h\3\2\2\2\2"+ - "j\3\2\2\2\2l\3\2\2\2\2n\3\2\2\2\2p\3\2\2\2\2r\3\2\2\2\2t\3\2\2\2\2v\3"+ - "\2\2\2\2x\3\2\2\2\2z\3\2\2\2\2|\3\2\2\2\2~\3\2\2\2\2\u0080\3\2\2\2\2\u0082"+ - "\3\2\2\2\2\u0084\3\2\2\2\2\u0086\3\2\2\2\2\u0088\3\2\2\2\2\u008a\3\2\2"+ - "\2\2\u008c\3\2\2\2\2\u008e\3\2\2\2\2\u0090\3\2\2\2\2\u0092\3\2\2\2\2\u0094"+ - "\3\2\2\2\2\u0096\3\2\2\2\2\u0098\3\2\2\2\2\u009a\3\2\2\2\2\u009c\3\2\2"+ - "\2\2\u009e\3\2\2\2\2\u00a0\3\2\2\2\2\u00a2\3\2\2\2\2\u00a4\3\2\2\2\2\u00a6"+ - "\3\2\2\2\2\u00a8\3\2\2\2\2\u00aa\3\2\2\2\2\u00ac\3\2\2\2\2\u00ae\3\2\2"+ - "\2\2\u00b0\3\2\2\2\2\u00b2\3\2\2\2\2\u00b4\3\2\2\2\2\u00b6\3\2\2\2\2\u00b8"+ - "\3\2\2\2\2\u00ba\3\2\2\2\2\u00bc\3\2\2\2\2\u00be\3\2\2\2\2\u00c0\3\2\2"+ - "\2\2\u00c2\3\2\2\2\2\u00c4\3\2\2\2\2\u00c6\3\2\2\2\2\u00c8\3\2\2\2\2\u00ca"+ - "\3\2\2\2\2\u00cc\3\2\2\2\2\u00ce\3\2\2\2\2\u00d0\3\2\2\2\2\u00d2\3\2\2"+ - "\2\2\u00da\3\2\2\2\2\u00e0\3\2\2\2\2\u00e2\3\2\2\2\2\u00e4\3\2\2\2\3\u00e6"+ - "\3\2\2\2\3\u00e8\3\2\2\2\3\u00ea\3\2\2\2\3\u00ec\3\2\2\2\3\u00ee\3\2\2"+ - "\2\3\u00f0\3\2\2\2\3\u00f2\3\2\2\2\3\u00f4\3\2\2\2\3\u00f6\3\2\2\2\3\u00f8"+ - "\3\2\2\2\3\u00fa\3\2\2\2\3\u00fc\3\2\2\2\3\u00fe\3\2\2\2\3\u0100\3\2\2"+ - "\2\3\u0102\3\2\2\2\3\u0104\3\2\2\2\3\u0106\3\2\2\2\3\u0108\3\2\2\2\3\u010a"+ - "\3\2\2\2\3\u010c\3\2\2\2\3\u010e\3\2\2\2\3\u0110\3\2\2\2\3\u0112\3\2\2"+ - "\2\3\u0114\3\2\2\2\3\u0116\3\2\2\2\3\u0118\3\2\2\2\3\u011a\3\2\2\2\3\u011c"+ - "\3\2\2\2\3\u011e\3\2\2\2\3\u0126\3\2\2\2\3\u0128\3\2\2\2\3\u012a\3\2\2"+ - "\2\3\u012c\3\2\2\2\3\u0132\3\2\2\2\3\u0134\3\2\2\2\3\u0136\3\2\2\2\4\u0138"+ - "\3\2\2\2\6\u013b\3\2\2\2\b\u013d\3\2\2\2\n\u013f\3\2\2\2\f\u0141\3\2\2"+ - "\2\16\u0143\3\2\2\2\20\u0145\3\2\2\2\22\u0147\3\2\2\2\24\u0149\3\2\2\2"+ - "\26\u014b\3\2\2\2\30\u014e\3\2\2\2\32\u0150\3\2\2\2\34\u0152\3\2\2\2\36"+ - "\u0155\3\2\2\2 \u0157\3\2\2\2\"\u0159\3\2\2\2$\u015b\3\2\2\2&\u015d\3"+ - "\2\2\2(\u015f\3\2\2\2*\u0162\3\2\2\2,\u0165\3\2\2\2.\u0167\3\2\2\2\60"+ - "\u0169\3\2\2\2\62\u016b\3\2\2\2\64\u016d\3\2\2\2\66\u0170\3\2\2\28\u0173"+ - "\3\2\2\2:\u0176\3\2\2\2<\u0179\3\2\2\2>\u017b\3\2\2\2@\u017e\3\2\2\2B"+ - "\u0181\3\2\2\2D\u0183\3\2\2\2F\u0186\3\2\2\2H\u0189\3\2\2\2J\u01a1\3\2"+ - "\2\2L\u01a3\3\2\2\2N\u01ac\3\2\2\2P\u01b4\3\2\2\2R\u01bc\3\2\2\2T\u01c4"+ - "\3\2\2\2V\u01c7\3\2\2\2X\u01ce\3\2\2\2Z\u01d3\3\2\2\2\\\u01d7\3\2\2\2"+ - "^\u01e0\3\2\2\2`\u01e9\3\2\2\2b\u01f2\3\2\2\2d\u01f8\3\2\2\2f\u01ff\3"+ - "\2\2\2h\u0206\3\2\2\2j\u020c\3\2\2\2l\u0213\3\2\2\2n\u021c\3\2\2\2p\u0223"+ - "\3\2\2\2r\u022d\3\2\2\2t\u0236\3\2\2\2v\u0240\3\2\2\2x\u0245\3\2\2\2z"+ - "\u024b\3\2\2\2|\u0251\3\2\2\2~\u0256\3\2\2\2\u0080\u0272\3\2\2\2\u0082"+ - "\u0274\3\2\2\2\u0084\u027e\3\2\2\2\u0086\u0281\3\2\2\2\u0088\u0286\3\2"+ - "\2\2\u008a\u028c\3\2\2\2\u008c\u028f\3\2\2\2\u008e\u0293\3\2\2\2\u0090"+ - "\u029a\3\2\2\2\u0092\u02a1\3\2\2\2\u0094\u02a7\3\2\2\2\u0096\u02b0\3\2"+ - "\2\2\u0098\u02b6\3\2\2\2\u009a\u02be\3\2\2\2\u009c\u02c3\3\2\2\2\u009e"+ - "\u02ca\3\2\2\2\u00a0\u02cf\3\2\2\2\u00a2\u02d6\3\2\2\2\u00a4\u02dd\3\2"+ - "\2\2\u00a6\u02e5\3\2\2\2\u00a8\u02ee\3\2\2\2\u00aa\u02f3\3\2\2\2\u00ac"+ - "\u02fc\3\2\2\2\u00ae\u0302\3\2\2\2\u00b0\u0309\3\2\2\2\u00b2\u0319\3\2"+ - "\2\2\u00b4\u0340\3\2\2\2\u00b6\u034b\3\2\2\2\u00b8\u034d\3\2\2\2\u00ba"+ - "\u0359\3\2\2\2\u00bc\u0371\3\2\2\2\u00be\u0379\3\2\2\2\u00c0\u0381\3\2"+ - "\2\2\u00c2\u0386\3\2\2\2\u00c4\u038b\3\2\2\2\u00c6\u0392\3\2\2\2\u00c8"+ - "\u03a3\3\2\2\2\u00ca\u03b1\3\2\2\2\u00cc\u03c2\3\2\2\2\u00ce\u03d6\3\2"+ - "\2\2\u00d0\u03d9\3\2\2\2\u00d2\u03e2\3\2\2\2\u00d4\u03e9\3\2\2\2\u00d6"+ - "\u03eb\3\2\2\2\u00d8\u03ed\3\2\2\2\u00da\u03ef\3\2\2\2\u00dc\u03f8\3\2"+ - "\2\2\u00de\u03fa\3\2\2\2\u00e0\u03fd\3\2\2\2\u00e2\u0403\3\2\2\2\u00e4"+ - "\u040e\3\2\2\2\u00e6\u041c\3\2\2\2\u00e8\u0500\3\2\2\2\u00ea\u0502\3\2"+ - "\2\2\u00ec\u0504\3\2\2\2\u00ee\u0506\3\2\2\2\u00f0\u0508\3\2\2\2\u00f2"+ - "\u050a\3\2\2\2\u00f4\u050c\3\2\2\2\u00f6\u050e\3\2\2\2\u00f8\u0510\3\2"+ - "\2\2\u00fa\u0512\3\2\2\2\u00fc\u0515\3\2\2\2\u00fe\u0518\3\2\2\2\u0100"+ - "\u051a\3\2\2\2\u0102\u051c\3\2\2\2\u0104\u051e\3\2\2\2\u0106\u0520\3\2"+ - "\2\2\u0108\u0522\3\2\2\2\u010a\u0524\3\2\2\2\u010c\u0527\3\2\2\2\u010e"+ - "\u052c\3\2\2\2\u0110\u0531\3\2\2\2\u0112\u0533\3\2\2\2\u0114\u0543\3\2"+ - "\2\2\u0116\u054c\3\2\2\2\u0118\u055c\3\2\2\2\u011a\u055e\3\2\2\2\u011c"+ - "\u0565\3\2\2\2\u011e\u0569\3\2\2\2\u0120\u056f\3\2\2\2\u0122\u0571\3\2"+ - "\2\2\u0124\u0573\3\2\2\2\u0126\u0575\3\2\2\2\u0128\u057d\3\2\2\2\u012a"+ - "\u0583\3\2\2\2\u012c\u058a\3\2\2\2\u012e\u0591\3\2\2\2\u0130\u0593\3\2"+ - "\2\2\u0132\u0596\3\2\2\2\u0134\u059c\3\2\2\2\u0136\u05a7\3\2\2\2\u0138"+ - "\u0139\7}\2\2\u0139\u013a\b\2\2\2\u013a\5\3\2\2\2\u013b\u013c\7\177\2"+ - "\2\u013c\7\3\2\2\2\u013d\u013e\7]\2\2\u013e\t\3\2\2\2\u013f\u0140\7_\2"+ - "\2\u0140\13\3\2\2\2\u0141\u0142\7*\2\2\u0142\r\3\2\2\2\u0143\u0144\7+"+ - "\2\2\u0144\17\3\2\2\2\u0145\u0146\7=\2\2\u0146\21\3\2\2\2\u0147\u0148"+ - "\7<\2\2\u0148\23\3\2\2\2\u0149\u014a\7.\2\2\u014a\25\3\2\2\2\u014b\u014c"+ - "\7\60\2\2\u014c\u014d\7\60\2\2\u014d\27\3\2\2\2\u014e\u014f\7A\2\2\u014f"+ - "\31\3\2\2\2\u0150\u0151\7\60\2\2\u0151\33\3\2\2\2\u0152\u0153\7/\2\2\u0153"+ - "\u0154\7@\2\2\u0154\35\3\2\2\2\u0155\u0156\7-\2\2\u0156\37\3\2\2\2\u0157"+ - "\u0158\7/\2\2\u0158!\3\2\2\2\u0159\u015a\7,\2\2\u015a#\3\2\2\2\u015b\u015c"+ - "\7\61\2\2\u015c%\3\2\2\2\u015d\u015e\7\'\2\2\u015e\'\3\2\2\2\u015f\u0160"+ - "\7-\2\2\u0160\u0161\7-\2\2\u0161)\3\2\2\2\u0162\u0163\7/\2\2\u0163\u0164"+ - "\7/\2\2\u0164+\3\2\2\2\u0165\u0166\7(\2\2\u0166-\3\2\2\2\u0167\u0168\7"+ - "\u0080\2\2\u0168/\3\2\2\2\u0169\u016a\7`\2\2\u016a\61\3\2\2\2\u016b\u016c"+ - "\7~\2\2\u016c\63\3\2\2\2\u016d\u016e\7>\2\2\u016e\u016f\7>\2\2\u016f\65"+ - "\3\2\2\2\u0170\u0171\7@\2\2\u0171\u0172\7@\2\2\u0172\67\3\2\2\2\u0173"+ - "\u0174\7?\2\2\u0174\u0175\7?\2\2\u01759\3\2\2\2\u0176\u0177\7#\2\2\u0177"+ - "\u0178\7?\2\2\u0178;\3\2\2\2\u0179\u017a\7>\2\2\u017a=\3\2\2\2\u017b\u017c"+ - "\7>\2\2\u017c\u017d\7?\2\2\u017d?\3\2\2\2\u017e\u017f\7@\2\2\u017f\u0180"+ - "\7?\2\2\u0180A\3\2\2\2\u0181\u0182\7@\2\2\u0182C\3\2\2\2\u0183\u0184\7"+ - "(\2\2\u0184\u0185\7(\2\2\u0185E\3\2\2\2\u0186\u0187\7~\2\2\u0187\u0188"+ - "\7~\2\2\u0188G\3\2\2\2\u0189\u018a\7?\2\2\u018aI\3\2\2\2\u018b\u018c\7"+ - "-\2\2\u018c\u01a2\7?\2\2\u018d\u018e\7/\2\2\u018e\u01a2\7?\2\2\u018f\u0190"+ - "\7,\2\2\u0190\u01a2\7?\2\2\u0191\u0192\7\61\2\2\u0192\u01a2\7?\2\2\u0193"+ - "\u0194\7\'\2\2\u0194\u01a2\7?\2\2\u0195\u0196\7>\2\2\u0196\u0197\7>\2"+ - "\2\u0197\u01a2\7?\2\2\u0198\u0199\7@\2\2\u0199\u019a\7@\2\2\u019a\u01a2"+ - "\7?\2\2\u019b\u019c\7(\2\2\u019c\u01a2\7?\2\2\u019d\u019e\7~\2\2\u019e"+ - "\u01a2\7?\2\2\u019f\u01a0\7`\2\2\u01a0\u01a2\7?\2\2\u01a1\u018b\3\2\2"+ - "\2\u01a1\u018d\3\2\2\2\u01a1\u018f\3\2\2\2\u01a1\u0191\3\2\2\2\u01a1\u0193"+ - "\3\2\2\2\u01a1\u0195\3\2\2\2\u01a1\u0198\3\2\2\2\u01a1\u019b\3\2\2\2\u01a1"+ - "\u019d\3\2\2\2\u01a1\u019f\3\2\2\2\u01a2K\3\2\2\2\u01a3\u01a4\7k\2\2\u01a4"+ - "\u01a5\7o\2\2\u01a5\u01a6\7r\2\2\u01a6\u01a7\7q\2\2\u01a7\u01a8\7t\2\2"+ - "\u01a8\u01a9\7v\2\2\u01a9\u01aa\3\2\2\2\u01aa\u01ab\b&\3\2\u01abM\3\2"+ - "\2\2\u01ac\u01ad\7v\2\2\u01ad\u01ae\7{\2\2\u01ae\u01af\7r\2\2\u01af\u01b0"+ - "\7g\2\2\u01b0\u01b1\7f\2\2\u01b1\u01b2\7g\2\2\u01b2\u01b3\7h\2\2\u01b3"+ - "O\3\2\2\2\u01b4\u01b5\7%\2\2\u01b5\u01b6\7r\2\2\u01b6\u01b7\7t\2\2\u01b7"+ - "\u01b8\7c\2\2\u01b8\u01b9\7i\2\2\u01b9\u01ba\7o\2\2\u01ba\u01bb\7c\2\2"+ - "\u01bbQ\3\2\2\2\u01bc\u01bd\7t\2\2\u01bd\u01be\7g\2\2\u01be\u01bf\7u\2"+ - "\2\u01bf\u01c0\7g\2\2\u01c0\u01c1\7t\2\2\u01c1\u01c2\7x\2\2\u01c2\u01c3"+ - "\7g\2\2\u01c3S\3\2\2\2\u01c4\u01c5\7r\2\2\u01c5\u01c6\7e\2\2\u01c6U\3"+ - "\2\2\2\u01c7\u01c8\7v\2\2\u01c8\u01c9\7c\2\2\u01c9\u01ca\7t\2\2\u01ca"+ - "\u01cb\7i\2\2\u01cb\u01cc\7g\2\2\u01cc\u01cd\7v\2\2\u01cdW\3\2\2\2\u01ce"+ - "\u01cf\7n\2\2\u01cf\u01d0\7k\2\2\u01d0\u01d1\7p\2\2\u01d1\u01d2\7m\2\2"+ - "\u01d2Y\3\2\2\2\u01d3\u01d4\7e\2\2\u01d4\u01d5\7r\2\2\u01d5\u01d6\7w\2"+ - "\2\u01d6[\3\2\2\2\u01d7\u01d8\7e\2\2\u01d8\u01d9\7q\2\2\u01d9\u01da\7"+ - "f\2\2\u01da\u01db\7g\2\2\u01db\u01dc\7a\2\2\u01dc\u01dd\7u\2\2\u01dd\u01de"+ - "\7g\2\2\u01de\u01df\7i\2\2\u01df]\3\2\2\2\u01e0\u01e1\7f\2\2\u01e1\u01e2"+ - "\7c\2\2\u01e2\u01e3\7v\2\2\u01e3\u01e4\7c\2\2\u01e4\u01e5\7a\2\2\u01e5"+ - "\u01e6\7u\2\2\u01e6\u01e7\7g\2\2\u01e7\u01e8\7i\2\2\u01e8_\3\2\2\2\u01e9"+ - "\u01ea\7g\2\2\u01ea\u01eb\7p\2\2\u01eb\u01ec\7e\2\2\u01ec\u01ed\7q\2\2"+ - "\u01ed\u01ee\7f\2\2\u01ee\u01ef\7k\2\2\u01ef\u01f0\7p\2\2\u01f0\u01f1"+ - "\7i\2\2\u01f1a\3\2\2\2\u01f2\u01f3\7e\2\2\u01f3\u01f4\7q\2\2\u01f4\u01f5"+ - "\7p\2\2\u01f5\u01f6\7u\2\2\u01f6\u01f7\7v\2\2\u01f7c\3\2\2\2\u01f8\u01f9"+ - "\7g\2\2\u01f9\u01fa\7z\2\2\u01fa\u01fb\7v\2\2\u01fb\u01fc\7g\2\2\u01fc"+ - "\u01fd\7t\2\2\u01fd\u01fe\7p\2\2\u01fee\3\2\2\2\u01ff\u0200\7g\2\2\u0200"+ - "\u0201\7z\2\2\u0201\u0202\7r\2\2\u0202\u0203\7q\2\2\u0203\u0204\7t\2\2"+ - "\u0204\u0205\7v\2\2\u0205g\3\2\2\2\u0206\u0207\7c\2\2\u0207\u0208\7n\2"+ - "\2\u0208\u0209\7k\2\2\u0209\u020a\7i\2\2\u020a\u020b\7p\2\2\u020bi\3\2"+ - "\2\2\u020c\u020d\7k\2\2\u020d\u020e\7p\2\2\u020e\u020f\7n\2\2\u020f\u0210"+ - "\7k\2\2\u0210\u0211\7p\2\2\u0211\u0212\7g\2\2\u0212k\3\2\2\2\u0213\u0214"+ - "\7x\2\2\u0214\u0215\7q\2\2\u0215\u0216\7n\2\2\u0216\u0217\7c\2\2\u0217"+ - "\u0218\7v\2\2\u0218\u0219\7k\2\2\u0219\u021a\7n\2\2\u021a\u021b\7g\2\2"+ - "\u021bm\3\2\2\2\u021c\u021d\7u\2\2\u021d\u021e\7v\2\2\u021e\u021f\7c\2"+ - "\2\u021f\u0220\7v\2\2\u0220\u0221\7k\2\2\u0221\u0222\7e\2\2\u0222o\3\2"+ - "\2\2\u0223\u0224\7k\2\2\u0224\u0225\7p\2\2\u0225\u0226\7v\2\2\u0226\u0227"+ - "\7g\2\2\u0227\u0228\7t\2\2\u0228\u0229\7t\2\2\u0229\u022a\7w\2\2\u022a"+ - "\u022b\7r\2\2\u022b\u022c\7v\2\2\u022cq\3\2\2\2\u022d\u022e\7t\2\2\u022e"+ - "\u022f\7g\2\2\u022f\u0230\7i\2\2\u0230\u0231\7k\2\2\u0231\u0232\7u\2\2"+ - "\u0232\u0233\7v\2\2\u0233\u0234\7g\2\2\u0234\u0235\7t\2\2\u0235s\3\2\2"+ - "\2\u0236\u0237\7a\2\2\u0237\u0238\7a\2\2\u0238\u0239\7c\2\2\u0239\u023a"+ - "\7f\2\2\u023a\u023b\7f\2\2\u023b\u023c\7t\2\2\u023c\u023d\7g\2\2\u023d"+ - "\u023e\7u\2\2\u023e\u023f\7u\2\2\u023fu\3\2\2\2\u0240\u0241\7a\2\2\u0241"+ - "\u0242\7a\2\2\u0242\u0243\7|\2\2\u0243\u0244\7r\2\2\u0244w\3\2\2\2\u0245"+ - "\u0246\7a\2\2\u0246\u0247\7a\2\2\u0247\u0248\7o\2\2\u0248\u0249\7g\2\2"+ - "\u0249\u024a\7o\2\2\u024ay\3\2\2\2\u024b\u024c\7a\2\2\u024c\u024d\7a\2"+ - "\2\u024d\u024e\7u\2\2\u024e\u024f\7u\2\2\u024f\u0250\7c\2\2\u0250{\3\2"+ - "\2\2\u0251\u0252\7a\2\2\u0252\u0253\7a\2\2\u0253\u0254\7o\2\2\u0254\u0255"+ - "\7c\2\2\u0255}\3\2\2\2\u0256\u0257\7e\2\2\u0257\u0258\7c\2\2\u0258\u0259"+ - "\7n\2\2\u0259\u025a\7n\2\2\u025a\u025b\7k\2\2\u025b\u025c\7p\2\2\u025c"+ - "\u025d\7i\2\2\u025d\177\3\2\2\2\u025e\u025f\7a\2\2\u025f\u0260\7a\2\2"+ - "\u0260\u0261\7u\2\2\u0261\u0262\7v\2\2\u0262\u0263\7c\2\2\u0263\u0264"+ - "\7e\2\2\u0264\u0265\7m\2\2\u0265\u0266\7e\2\2\u0266\u0267\7c\2\2\u0267"+ - "\u0268\7n\2\2\u0268\u0273\7n\2\2\u0269\u026a\7a\2\2\u026a\u026b\7a\2\2"+ - "\u026b\u026c\7r\2\2\u026c\u026d\7j\2\2\u026d\u026e\7k\2\2\u026e\u026f"+ - "\7e\2\2\u026f\u0270\7c\2\2\u0270\u0271\7n\2\2\u0271\u0273\7n\2\2\u0272"+ - "\u025e\3\2\2\2\u0272\u0269\3\2\2\2\u0273\u0081\3\2\2\2\u0274\u0275\7x"+ - "\2\2\u0275\u0276\7c\2\2\u0276\u0277\7t\2\2\u0277\u0278\7a\2\2\u0278\u0279"+ - "\7o\2\2\u0279\u027a\7q\2\2\u027a\u027b\7f\2\2\u027b\u027c\7g\2\2\u027c"+ - "\u027d\7n\2\2\u027d\u0083\3\2\2\2\u027e\u027f\7k\2\2\u027f\u0280\7h\2"+ - "\2\u0280\u0085\3\2\2\2\u0281\u0282\7g\2\2\u0282\u0283\7n\2\2\u0283\u0284"+ - "\7u\2\2\u0284\u0285\7g\2\2\u0285\u0087\3\2\2\2\u0286\u0287\7y\2\2\u0287"+ - "\u0288\7j\2\2\u0288\u0289\7k\2\2\u0289\u028a\7n\2\2\u028a\u028b\7g\2\2"+ - "\u028b\u0089\3\2\2\2\u028c\u028d\7f\2\2\u028d\u028e\7q\2\2\u028e\u008b"+ - "\3\2\2\2\u028f\u0290\7h\2\2\u0290\u0291\7q\2\2\u0291\u0292\7t\2\2\u0292"+ - "\u008d\3\2\2\2\u0293\u0294\7u\2\2\u0294\u0295\7y\2\2\u0295\u0296\7k\2"+ - "\2\u0296\u0297\7v\2\2\u0297\u0298\7e\2\2\u0298\u0299\7j\2\2\u0299\u008f"+ - "\3\2\2\2\u029a\u029b\7t\2\2\u029b\u029c\7g\2\2\u029c\u029d\7v\2\2\u029d"+ - "\u029e\7w\2\2\u029e\u029f\7t\2\2\u029f\u02a0\7p\2\2\u02a0\u0091\3\2\2"+ - "\2\u02a1\u02a2\7d\2\2\u02a2\u02a3\7t\2\2\u02a3\u02a4\7g\2\2\u02a4\u02a5"+ - "\7c\2\2\u02a5\u02a6\7m\2\2\u02a6\u0093\3\2\2\2\u02a7\u02a8\7e\2\2\u02a8"+ - "\u02a9\7q\2\2\u02a9\u02aa\7p\2\2\u02aa\u02ab\7v\2\2\u02ab\u02ac\7k\2\2"+ - "\u02ac\u02ad\7p\2\2\u02ad\u02ae\7w\2\2\u02ae\u02af\7g\2\2\u02af\u0095"+ - "\3\2\2\2\u02b0\u02b1\7c\2\2\u02b1\u02b2\7u\2\2\u02b2\u02b3\7o\2\2\u02b3"+ - "\u02b4\3\2\2\2\u02b4\u02b5\bK\4\2\u02b5\u0097\3\2\2\2\u02b6\u02b7\7f\2"+ - "\2\u02b7\u02b8\7g\2\2\u02b8\u02b9\7h\2\2\u02b9\u02ba\7c\2\2\u02ba\u02bb"+ - "\7w\2\2\u02bb\u02bc\7n\2\2\u02bc\u02bd\7v\2\2\u02bd\u0099\3\2\2\2\u02be"+ - "\u02bf\7e\2\2\u02bf\u02c0\7c\2\2\u02c0\u02c1\7u\2\2\u02c1\u02c2\7g\2\2"+ - "\u02c2\u009b\3\2\2\2\u02c3\u02c4\7u\2\2\u02c4\u02c5\7v\2\2\u02c5\u02c6"+ - "\7t\2\2\u02c6\u02c7\7w\2\2\u02c7\u02c8\7e\2\2\u02c8\u02c9\7v\2\2\u02c9"+ - "\u009d\3\2\2\2\u02ca\u02cb\7g\2\2\u02cb\u02cc\7p\2\2\u02cc\u02cd\7w\2"+ - "\2\u02cd\u02ce\7o\2\2\u02ce\u009f\3\2\2\2\u02cf\u02d0\7u\2\2\u02d0\u02d1"+ - "\7k\2\2\u02d1\u02d2\7|\2\2\u02d2\u02d3\7g\2\2\u02d3\u02d4\7q\2\2\u02d4"+ - "\u02d5\7h\2\2\u02d5\u00a1\3\2\2\2\u02d6\u02d7\7v\2\2\u02d7\u02d8\7{\2"+ - "\2\u02d8\u02d9\7r\2\2\u02d9\u02da\7g\2\2\u02da\u02db\7k\2\2\u02db\u02dc"+ - "\7f\2\2\u02dc\u00a3\3\2\2\2\u02dd\u02de\7m\2\2\u02de\u02df\7k\2\2\u02df"+ - "\u02e0\7e\2\2\u02e0\u02e1\7m\2\2\u02e1\u02e2\7c\2\2\u02e2\u02e3\7u\2\2"+ - "\u02e3\u02e4\7o\2\2\u02e4\u00a5\3\2\2\2\u02e5\u02e6\7t\2\2\u02e6\u02e7"+ - "\7g\2\2\u02e7\u02e8\7u\2\2\u02e8\u02e9\7q\2\2\u02e9\u02ea\7w\2\2\u02ea"+ - "\u02eb\7t\2\2\u02eb\u02ec\7e\2\2\u02ec\u02ed\7g\2\2\u02ed\u00a7\3\2\2"+ - "\2\u02ee\u02ef\7w\2\2\u02ef\u02f0\7u\2\2\u02f0\u02f1\7g\2\2\u02f1\u02f2"+ - "\7u\2\2\u02f2\u00a9\3\2\2\2\u02f3\u02f4\7e\2\2\u02f4\u02f5\7n\2\2\u02f5"+ - "\u02f6\7q\2\2\u02f6\u02f7\7d\2\2\u02f7\u02f8\7d\2\2\u02f8\u02f9\7g\2\2"+ - "\u02f9\u02fa\7t\2\2\u02fa\u02fb\7u\2\2\u02fb\u00ab\3\2\2\2\u02fc\u02fd"+ - "\7d\2\2\u02fd\u02fe\7{\2\2\u02fe\u02ff\7v\2\2\u02ff\u0300\7g\2\2\u0300"+ - "\u0301\7u\2\2\u0301\u00ad\3\2\2\2\u0302\u0303\7e\2\2\u0303\u0304\7{\2"+ - "\2\u0304\u0305\7e\2\2\u0305\u0306\7n\2\2\u0306\u0307\7g\2\2\u0307\u0308"+ - "\7u\2\2\u0308\u00af\3\2\2\2\u0309\u030a\7#\2\2\u030a\u00b1\3\2\2\2\u030b"+ - "\u030c\7u\2\2\u030c\u030d\7k\2\2\u030d\u030e\7i\2\2\u030e\u030f\7p\2\2"+ - "\u030f\u0310\7g\2\2\u0310\u031a\7f\2\2\u0311\u0312\7w\2\2\u0312\u0313"+ - "\7p\2\2\u0313\u0314\7u\2\2\u0314\u0315\7k\2\2\u0315\u0316\7i\2\2\u0316"+ - "\u0317\7p\2\2\u0317\u0318\7g\2\2\u0318\u031a\7f\2\2\u0319\u030b\3\2\2"+ - "\2\u0319\u0311\3\2\2\2\u031a\u00b3\3\2\2\2\u031b\u031c\7d\2\2\u031c\u031d"+ - "\7{\2\2\u031d\u031e\7v\2\2\u031e\u0341\7g\2\2\u031f\u0320\7y\2\2\u0320"+ - "\u0321\7q\2\2\u0321\u0322\7t\2\2\u0322\u0341\7f\2\2\u0323\u0324\7f\2\2"+ - "\u0324\u0325\7y\2\2\u0325\u0326\7q\2\2\u0326\u0327\7t\2\2\u0327\u0341"+ - "\7f\2\2\u0328\u0329\7d\2\2\u0329\u032a\7q\2\2\u032a\u032b\7q\2\2\u032b"+ - "\u0341\7n\2\2\u032c\u032d\7e\2\2\u032d\u032e\7j\2\2\u032e\u032f\7c\2\2"+ - "\u032f\u0341\7t\2\2\u0330\u0331\7u\2\2\u0331\u0332\7j\2\2\u0332\u0333"+ - "\7q\2\2\u0333\u0334\7t\2\2\u0334\u0341\7v\2\2\u0335\u0336\7k\2\2\u0336"+ - "\u0337\7p\2\2\u0337\u0341\7v\2\2\u0338\u0339\7n\2\2\u0339\u033a\7q\2\2"+ - "\u033a\u033b\7p\2\2\u033b\u0341\7i\2\2\u033c\u033d\7x\2\2\u033d\u033e"+ - "\7q\2\2\u033e\u033f\7k\2\2\u033f\u0341\7f\2\2\u0340\u031b\3\2\2\2\u0340"+ - "\u031f\3\2\2\2\u0340\u0323\3\2\2\2\u0340\u0328\3\2\2\2\u0340\u032c\3\2"+ - "\2\2\u0340\u0330\3\2\2\2\u0340\u0335\3\2\2\2\u0340\u0338\3\2\2\2\u0340"+ - "\u033c\3\2\2\2\u0341\u00b5\3\2\2\2\u0342\u0343\7v\2\2\u0343\u0344\7t\2"+ - "\2\u0344\u0345\7w\2\2\u0345\u034c\7g\2\2\u0346\u0347\7h\2\2\u0347\u0348"+ - "\7c\2\2\u0348\u0349\7n\2\2\u0349\u034a\7u\2\2\u034a\u034c\7g\2\2\u034b"+ - "\u0342\3\2\2\2\u034b\u0346\3\2\2\2\u034c\u00b7\3\2\2\2\u034d\u034e\7}"+ - "\2\2\u034e\u034f\7}\2\2\u034f\u0353\3\2\2\2\u0350\u0352\13\2\2\2\u0351"+ - "\u0350\3\2\2\2\u0352\u0355\3\2\2\2\u0353\u0354\3\2\2\2\u0353\u0351\3\2"+ - "\2\2\u0354\u0356\3\2\2\2\u0355\u0353\3\2\2\2\u0356\u0357\7\177\2\2\u0357"+ - "\u0358\7\177\2\2\u0358\u00b9\3\2\2\2\u0359\u035f\7$\2\2\u035a\u035b\7"+ - "^\2\2\u035b\u035e\7$\2\2\u035c\u035e\n\2\2\2\u035d\u035a\3\2\2\2\u035d"+ - "\u035c\3\2\2\2\u035e\u0361\3\2\2\2\u035f\u035d\3\2\2\2\u035f\u0360\3\2"+ - "\2\2\u0360\u0362\3\2\2\2\u0361\u035f\3\2\2\2\u0362\u0364\7$\2\2\u0363"+ - "\u0365\t\3\2\2\u0364\u0363\3\2\2\2\u0364\u0365\3\2\2\2\u0365\u036a\3\2"+ - "\2\2\u0366\u0368\t\4\2\2\u0367\u0369\t\5\2\2\u0368\u0367\3\2\2\2\u0368"+ - "\u0369\3\2\2\2\u0369\u036b\3\2\2\2\u036a\u0366\3\2\2\2\u036a\u036b\3\2"+ - "\2\2\u036b\u036d\3\2\2\2\u036c\u036e\t\3\2\2\u036d\u036c\3\2\2\2\u036d"+ - "\u036e\3\2\2\2\u036e\u036f\3\2\2\2\u036f\u0370\b]\5\2\u0370\u00bb\3\2"+ - "\2\2\u0371\u0375\7)\2\2\u0372\u0373\7^\2\2\u0373\u0376\t\6\2\2\u0374\u0376"+ - "\n\7\2\2\u0375\u0372\3\2\2\2\u0375\u0374\3\2\2\2\u0376\u0377\3\2\2\2\u0377"+ - "\u0378\7)\2\2\u0378\u00bd\3\2\2\2\u0379\u037a\7%\2\2\u037a\u037b\7f\2"+ - "\2\u037b\u037c\7g\2\2\u037c\u037d\7h\2\2\u037d\u037e\7k\2\2\u037e\u037f"+ - "\7p\2\2\u037f\u0380\7g\2\2\u0380\u00bf\3\2\2\2\u0381\u0382\7^\2\2\u0382"+ - "\u0383\7\f\2\2\u0383\u00c1\3\2\2\2\u0384\u0387\5\u00c4b\2\u0385\u0387"+ - "\5\u00ccf\2\u0386\u0384\3\2\2\2\u0386\u0385\3\2\2\2\u0387\u00c3\3\2\2"+ - "\2\u0388\u038c\5\u00c6c\2\u0389\u038c\5\u00c8d\2\u038a\u038c\5\u00cae"+ - "\2\u038b\u0388\3\2\2\2\u038b\u0389\3\2\2\2\u038b\u038a\3\2\2\2\u038c\u00c5"+ - "\3\2\2\2\u038d\u0393\7\'\2\2\u038e\u038f\7\62\2\2\u038f\u0393\7d\2\2\u0390"+ - "\u0391\7\62\2\2\u0391\u0393\7D\2\2\u0392\u038d\3\2\2\2\u0392\u038e\3\2"+ - "\2\2\u0392\u0390\3\2\2\2\u0393\u0397\3\2\2\2\u0394\u0396\5\u00d4j\2\u0395"+ - "\u0394\3\2\2\2\u0396\u0399\3\2\2\2\u0397\u0395\3\2\2\2\u0397\u0398\3\2"+ - "\2\2\u0398\u039a\3\2\2\2\u0399\u0397\3\2\2\2\u039a\u039c\7\60\2\2\u039b"+ - "\u039d\5\u00d4j\2\u039c\u039b\3\2\2\2\u039d\u039e\3\2\2\2\u039e\u039c"+ - "\3\2\2\2\u039e\u039f\3\2\2\2\u039f\u00c7\3\2\2\2\u03a0\u03a2\5\u00d6k"+ - "\2\u03a1\u03a0\3\2\2\2\u03a2\u03a5\3\2\2\2\u03a3\u03a1\3\2\2\2\u03a3\u03a4"+ - "\3\2\2\2\u03a4\u03a6\3\2\2\2\u03a5\u03a3\3\2\2\2\u03a6\u03a8\7\60\2\2"+ - "\u03a7\u03a9\5\u00d6k\2\u03a8\u03a7\3\2\2\2\u03a9\u03aa\3\2\2\2\u03aa"+ - "\u03a8\3\2\2\2\u03aa\u03ab\3\2\2\2\u03ab\u00c9\3\2\2\2\u03ac\u03b2\7&"+ - "\2\2\u03ad\u03ae\7\62\2\2\u03ae\u03b2\7z\2\2\u03af\u03b0\7\62\2\2\u03b0"+ - "\u03b2\7Z\2\2\u03b1\u03ac\3\2\2\2\u03b1\u03ad\3\2\2\2\u03b1\u03af\3\2"+ - "\2\2\u03b2\u03b6\3\2\2\2\u03b3\u03b5\5\u00d8l\2\u03b4\u03b3\3\2\2\2\u03b5"+ - "\u03b8\3\2\2\2\u03b6\u03b4\3\2\2\2\u03b6\u03b7\3\2\2\2\u03b7\u03b9\3\2"+ - "\2\2\u03b8\u03b6\3\2\2\2\u03b9\u03bb\7\60\2\2\u03ba\u03bc\5\u00d8l\2\u03bb"+ - "\u03ba\3\2\2\2\u03bc\u03bd\3\2\2\2\u03bd\u03bb\3\2\2\2\u03bd\u03be\3\2"+ - "\2\2\u03be\u00cb\3\2\2\2\u03bf\u03c3\5\u00d0h\2\u03c0\u03c3\5\u00d2i\2"+ - "\u03c1\u03c3\5\u00ceg\2\u03c2\u03bf\3\2\2\2\u03c2\u03c0\3\2\2\2\u03c2"+ - "\u03c1\3\2\2\2\u03c3\u03c7\3\2\2\2\u03c4\u03c5\t\b\2\2\u03c5\u03c8\t\t"+ - "\2\2\u03c6\u03c8\7n\2\2\u03c7\u03c4\3\2\2\2\u03c7\u03c6\3\2\2\2\u03c7"+ - "\u03c8\3\2\2\2\u03c8\u00cd\3\2\2\2\u03c9\u03ca\7\62\2\2\u03ca\u03cc\t"+ - "\n\2\2\u03cb\u03cd\5\u00d4j\2\u03cc\u03cb\3\2\2\2\u03cd\u03ce\3\2\2\2"+ - "\u03ce\u03cc\3\2\2\2\u03ce\u03cf\3\2\2\2\u03cf\u03d7\3\2\2\2\u03d0\u03d2"+ - "\7\'\2\2\u03d1\u03d3\5\u00d4j\2\u03d2\u03d1\3\2\2\2\u03d3\u03d4\3\2\2"+ - "\2\u03d4\u03d2\3\2\2\2\u03d4\u03d5\3\2\2\2\u03d5\u03d7\3\2\2\2\u03d6\u03c9"+ - "\3\2\2\2\u03d6\u03d0\3\2\2\2\u03d7\u00cf\3\2\2\2\u03d8\u03da\5\u00d6k"+ - "\2\u03d9\u03d8\3\2\2\2\u03da\u03db\3\2\2\2\u03db\u03d9\3\2\2\2\u03db\u03dc"+ - "\3\2\2\2\u03dc\u00d1\3\2\2\2\u03dd\u03e3\7&\2\2\u03de\u03df\7\62\2\2\u03df"+ - "\u03e3\7z\2\2\u03e0\u03e1\7\62\2\2\u03e1\u03e3\7Z\2\2\u03e2\u03dd\3\2"+ - "\2\2\u03e2\u03de\3\2\2\2\u03e2\u03e0\3\2\2\2\u03e3\u03e5\3\2\2\2\u03e4"+ - "\u03e6\5\u00d8l\2\u03e5\u03e4\3\2\2\2\u03e6\u03e7\3\2\2\2\u03e7\u03e5"+ - "\3\2\2\2\u03e7\u03e8\3\2\2\2\u03e8\u00d3\3\2\2\2\u03e9\u03ea\t\13\2\2"+ - "\u03ea\u00d5\3\2\2\2\u03eb\u03ec\t\f\2\2\u03ec\u00d7\3\2\2\2\u03ed\u03ee"+ - "\t\r\2\2\u03ee\u00d9\3\2\2\2\u03ef\u03f3\5\u00dcn\2\u03f0\u03f2\5\u00de"+ - "o\2\u03f1\u03f0\3\2\2\2\u03f2\u03f5\3\2\2\2\u03f3\u03f1\3\2\2\2\u03f3"+ - "\u03f4\3\2\2\2\u03f4\u03f6\3\2\2\2\u03f5\u03f3\3\2\2\2\u03f6\u03f7\bm"+ - "\6\2\u03f7\u00db\3\2\2\2\u03f8\u03f9\t\16\2\2\u03f9\u00dd\3\2\2\2\u03fa"+ - "\u03fb\t\17\2\2\u03fb\u00df\3\2\2\2\u03fc\u03fe\t\20\2\2\u03fd\u03fc\3"+ - "\2\2\2\u03fe\u03ff\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff\u0400\3\2\2\2\u0400"+ - "\u0401\3\2\2\2\u0401\u0402\bp\7\2\u0402\u00e1\3\2\2\2\u0403\u0404\7\61"+ - "\2\2\u0404\u0405\7\61\2\2\u0405\u0409\3\2\2\2\u0406\u0408\n\21\2\2\u0407"+ - "\u0406\3\2\2\2\u0408\u040b\3\2\2\2\u0409\u0407\3\2\2\2\u0409\u040a\3\2"+ - "\2\2\u040a\u040c\3\2\2\2\u040b\u0409\3\2\2\2\u040c\u040d\bq\b\2\u040d"+ - "\u00e3\3\2\2\2\u040e\u040f\7\61\2\2\u040f\u0410\7,\2\2\u0410\u0414\3\2"+ - "\2\2\u0411\u0413\13\2\2\2\u0412\u0411\3\2\2\2\u0413\u0416\3\2\2\2\u0414"+ - "\u0415\3\2\2\2\u0414\u0412\3\2\2\2\u0415\u0417\3\2\2\2\u0416\u0414\3\2"+ - "\2\2\u0417\u0418\7,\2\2\u0418\u0419\7\61\2\2\u0419\u041a\3\2\2\2\u041a"+ - "\u041b\br\b\2\u041b\u00e5\3\2\2\2\u041c\u041d\7\60\2\2\u041d\u041e\7d"+ - "\2\2\u041e\u041f\7{\2\2\u041f\u0420\7v\2\2\u0420\u0421\7g\2\2\u0421\u00e7"+ - "\3\2\2\2\u0422\u0423\7d\2\2\u0423\u0424\7t\2\2\u0424\u0501\7m\2\2\u0425"+ - "\u0426\7q\2\2\u0426\u0427\7t\2\2\u0427\u0501\7c\2\2\u0428\u0429\7m\2\2"+ - "\u0429\u042a\7k\2\2\u042a\u0501\7n\2\2\u042b\u042c\7u\2\2\u042c\u042d"+ - "\7n\2\2\u042d\u0501\7q\2\2\u042e\u042f\7p\2\2\u042f\u0430\7q\2\2\u0430"+ - "\u0501\7r\2\2\u0431\u0432\7c\2\2\u0432\u0433\7u\2\2\u0433\u0501\7n\2\2"+ - "\u0434\u0435\7r\2\2\u0435\u0436\7j\2\2\u0436\u0501\7r\2\2\u0437\u0438"+ - "\7c\2\2\u0438\u0439\7p\2\2\u0439\u0501\7e\2\2\u043a\u043b\7d\2\2\u043b"+ - "\u043c\7r\2\2\u043c\u0501\7n\2\2\u043d\u043e\7e\2\2\u043e\u043f\7n\2\2"+ - "\u043f\u0501\7e\2\2\u0440\u0441\7l\2\2\u0441\u0442\7u\2\2\u0442\u0501"+ - "\7t\2\2\u0443\u0444\7c\2\2\u0444\u0445\7p\2\2\u0445\u0501\7f\2\2\u0446"+ - "\u0447\7t\2\2\u0447\u0448\7n\2\2\u0448\u0501\7c\2\2\u0449\u044a\7d\2\2"+ - "\u044a\u044b\7k\2\2\u044b\u0501\7v\2\2\u044c\u044d\7t\2\2\u044d\u044e"+ - "\7q\2\2\u044e\u0501\7n\2\2\u044f\u0450\7r\2\2\u0450\u0451\7n\2\2\u0451"+ - "\u0501\7c\2\2\u0452\u0453\7r\2\2\u0453\u0454\7n\2\2\u0454\u0501\7r\2\2"+ - "\u0455\u0456\7d\2\2\u0456\u0457\7o\2\2\u0457\u0501\7k\2\2\u0458\u0459"+ - "\7u\2\2\u0459\u045a\7g\2\2\u045a\u0501\7e\2\2\u045b\u045c\7t\2\2\u045c"+ - "\u045d\7v\2\2\u045d\u0501\7k\2\2\u045e\u045f\7g\2\2\u045f\u0460\7q\2\2"+ - "\u0460\u0501\7t\2\2\u0461\u0462\7u\2\2\u0462\u0463\7t\2\2\u0463\u0501"+ - "\7g\2\2\u0464\u0465\7n\2\2\u0465\u0466\7u\2\2\u0466\u0501\7t\2\2\u0467"+ - "\u0468\7r\2\2\u0468\u0469\7j\2\2\u0469\u0501\7c\2\2\u046a\u046b\7c\2\2"+ - "\u046b\u046c\7n\2\2\u046c\u0501\7t\2\2\u046d\u046e\7l\2\2\u046e\u046f"+ - "\7o\2\2\u046f\u0501\7r\2\2\u0470\u0471\7d\2\2\u0471\u0472\7x\2\2\u0472"+ - "\u0501\7e\2\2\u0473\u0474\7e\2\2\u0474\u0475\7n\2\2\u0475\u0501\7k\2\2"+ - "\u0476\u0477\7t\2\2\u0477\u0478\7v\2\2\u0478\u0501\7u\2\2\u0479\u047a"+ - "\7c\2\2\u047a\u047b\7f\2\2\u047b\u0501\7e\2\2\u047c\u047d\7t\2\2\u047d"+ - "\u047e\7t\2\2\u047e\u0501\7c\2\2\u047f\u0480\7d\2\2\u0480\u0481\7x\2\2"+ - "\u0481\u0501\7u\2\2\u0482\u0483\7u\2\2\u0483\u0484\7g\2\2\u0484\u0501"+ - "\7k\2\2\u0485\u0486\7u\2\2\u0486\u0487\7c\2\2\u0487\u0501\7z\2\2\u0488"+ - "\u0489\7u\2\2\u0489\u048a\7v\2\2\u048a\u0501\7{\2\2\u048b\u048c\7u\2\2"+ - "\u048c\u048d\7v\2\2\u048d\u0501\7c\2\2\u048e\u048f\7u\2\2\u048f\u0490"+ - "\7v\2\2\u0490\u0501\7z\2\2\u0491\u0492\7f\2\2\u0492\u0493\7g\2\2\u0493"+ - "\u0501\7{\2\2\u0494\u0495\7v\2\2\u0495\u0496\7z\2\2\u0496\u0501\7c\2\2"+ - "\u0497\u0498\7z\2\2\u0498\u0499\7c\2\2\u0499\u0501\7c\2\2\u049a\u049b"+ - "\7d\2\2\u049b\u049c\7e\2\2\u049c\u0501\7e\2\2\u049d\u049e\7c\2\2\u049e"+ - "\u049f\7j\2\2\u049f\u0501\7z\2\2\u04a0\u04a1\7v\2\2\u04a1\u04a2\7{\2\2"+ - "\u04a2\u0501\7c\2\2\u04a3\u04a4\7v\2\2\u04a4\u04a5\7z\2\2\u04a5\u0501"+ - "\7u\2\2\u04a6\u04a7\7v\2\2\u04a7\u04a8\7c\2\2\u04a8\u0501\7u\2\2\u04a9"+ - "\u04aa\7u\2\2\u04aa\u04ab\7j\2\2\u04ab\u0501\7{\2\2\u04ac\u04ad\7u\2\2"+ - "\u04ad\u04ae\7j\2\2\u04ae\u0501\7z\2\2\u04af\u04b0\7n\2\2\u04b0\u04b1"+ - "\7f\2\2\u04b1\u0501\7{\2\2\u04b2\u04b3\7n\2\2\u04b3\u04b4\7f\2\2\u04b4"+ - "\u0501\7c\2\2\u04b5\u04b6\7n\2\2\u04b6\u04b7\7f\2\2\u04b7\u0501\7z\2\2"+ - "\u04b8\u04b9\7n\2\2\u04b9\u04ba\7c\2\2\u04ba\u0501\7z\2\2\u04bb\u04bc"+ - "\7v\2\2\u04bc\u04bd\7c\2\2\u04bd\u0501\7{\2\2\u04be\u04bf\7v\2\2\u04bf"+ - "\u04c0\7c\2\2\u04c0\u0501\7z\2\2\u04c1\u04c2\7d\2\2\u04c2\u04c3\7e\2\2"+ - "\u04c3\u0501\7u\2\2\u04c4\u04c5\7e\2\2\u04c5\u04c6\7n\2\2\u04c6\u0501"+ - "\7x\2\2\u04c7\u04c8\7v\2\2\u04c8\u04c9\7u\2\2\u04c9\u0501\7z\2\2\u04ca"+ - "\u04cb\7n\2\2\u04cb\u04cc\7c\2\2\u04cc\u0501\7u\2\2\u04cd\u04ce\7e\2\2"+ - "\u04ce\u04cf\7r\2\2\u04cf\u0501\7{\2\2\u04d0\u04d1\7e\2\2\u04d1\u04d2"+ - "\7o\2\2\u04d2\u0501\7r\2\2\u04d3\u04d4\7e\2\2\u04d4\u04d5\7r\2\2\u04d5"+ - "\u0501\7z\2\2\u04d6\u04d7\7f\2\2\u04d7\u04d8\7e\2\2\u04d8\u0501\7r\2\2"+ - "\u04d9\u04da\7f\2\2\u04da\u04db\7g\2\2\u04db\u0501\7e\2\2\u04dc\u04dd"+ - "\7k\2\2\u04dd\u04de\7p\2\2\u04de\u0501\7e\2\2\u04df\u04e0\7c\2\2\u04e0"+ - "\u04e1\7z\2\2\u04e1\u0501\7u\2\2\u04e2\u04e3\7d\2\2\u04e3\u04e4\7p\2\2"+ - "\u04e4\u0501\7g\2\2\u04e5\u04e6\7e\2\2\u04e6\u04e7\7n\2\2\u04e7\u0501"+ - "\7f\2\2\u04e8\u04e9\7u\2\2\u04e9\u04ea\7d\2\2\u04ea\u0501\7e\2\2\u04eb"+ - "\u04ec\7k\2\2\u04ec\u04ed\7u\2\2\u04ed\u0501\7e\2\2\u04ee\u04ef\7k\2\2"+ - "\u04ef\u04f0\7p\2\2\u04f0\u0501\7z\2\2\u04f1\u04f2\7d\2\2\u04f2\u04f3"+ - "\7g\2\2\u04f3\u0501\7s\2\2\u04f4\u04f5\7u\2\2\u04f5\u04f6\7g\2\2\u04f6"+ - "\u0501\7f\2\2\u04f7\u04f8\7f\2\2\u04f8\u04f9\7g\2\2\u04f9\u0501\7z\2\2"+ - "\u04fa\u04fb\7k\2\2\u04fb\u04fc\7p\2\2\u04fc\u0501\7{\2\2\u04fd\u04fe"+ - "\7t\2\2\u04fe\u04ff\7q\2\2\u04ff\u0501\7t\2\2\u0500\u0422\3\2\2\2\u0500"+ - "\u0425\3\2\2\2\u0500\u0428\3\2\2\2\u0500\u042b\3\2\2\2\u0500\u042e\3\2"+ - "\2\2\u0500\u0431\3\2\2\2\u0500\u0434\3\2\2\2\u0500\u0437\3\2\2\2\u0500"+ - "\u043a\3\2\2\2\u0500\u043d\3\2\2\2\u0500\u0440\3\2\2\2\u0500\u0443\3\2"+ - "\2\2\u0500\u0446\3\2\2\2\u0500\u0449\3\2\2\2\u0500\u044c\3\2\2\2\u0500"+ - "\u044f\3\2\2\2\u0500\u0452\3\2\2\2\u0500\u0455\3\2\2\2\u0500\u0458\3\2"+ - "\2\2\u0500\u045b\3\2\2\2\u0500\u045e\3\2\2\2\u0500\u0461\3\2\2\2\u0500"+ - "\u0464\3\2\2\2\u0500\u0467\3\2\2\2\u0500\u046a\3\2\2\2\u0500\u046d\3\2"+ - "\2\2\u0500\u0470\3\2\2\2\u0500\u0473\3\2\2\2\u0500\u0476\3\2\2\2\u0500"+ - "\u0479\3\2\2\2\u0500\u047c\3\2\2\2\u0500\u047f\3\2\2\2\u0500\u0482\3\2"+ - "\2\2\u0500\u0485\3\2\2\2\u0500\u0488\3\2\2\2\u0500\u048b\3\2\2\2\u0500"+ - "\u048e\3\2\2\2\u0500\u0491\3\2\2\2\u0500\u0494\3\2\2\2\u0500\u0497\3\2"+ - "\2\2\u0500\u049a\3\2\2\2\u0500\u049d\3\2\2\2\u0500\u04a0\3\2\2\2\u0500"+ - "\u04a3\3\2\2\2\u0500\u04a6\3\2\2\2\u0500\u04a9\3\2\2\2\u0500\u04ac\3\2"+ - "\2\2\u0500\u04af\3\2\2\2\u0500\u04b2\3\2\2\2\u0500\u04b5\3\2\2\2\u0500"+ - "\u04b8\3\2\2\2\u0500\u04bb\3\2\2\2\u0500\u04be\3\2\2\2\u0500\u04c1\3\2"+ - "\2\2\u0500\u04c4\3\2\2\2\u0500\u04c7\3\2\2\2\u0500\u04ca\3\2\2\2\u0500"+ - "\u04cd\3\2\2\2\u0500\u04d0\3\2\2\2\u0500\u04d3\3\2\2\2\u0500\u04d6\3\2"+ - "\2\2\u0500\u04d9\3\2\2\2\u0500\u04dc\3\2\2\2\u0500\u04df\3\2\2\2\u0500"+ - "\u04e2\3\2\2\2\u0500\u04e5\3\2\2\2\u0500\u04e8\3\2\2\2\u0500\u04eb\3\2"+ - "\2\2\u0500\u04ee\3\2\2\2\u0500\u04f1\3\2\2\2\u0500\u04f4\3\2\2\2\u0500"+ - "\u04f7\3\2\2\2\u0500\u04fa\3\2\2\2\u0500\u04fd\3\2\2\2\u0501\u00e9\3\2"+ - "\2\2\u0502\u0503\7%\2\2\u0503\u00eb\3\2\2\2\u0504\u0505\7<\2\2\u0505\u00ed"+ - "\3\2\2\2\u0506\u0507\7.\2\2\u0507\u00ef\3\2\2\2\u0508\u0509\7*\2\2\u0509"+ - "\u00f1\3\2\2\2\u050a\u050b\7+\2\2\u050b\u00f3\3\2\2\2\u050c\u050d\7]\2"+ - "\2\u050d\u00f5\3\2\2\2\u050e\u050f\7_\2\2\u050f\u00f7\3\2\2\2\u0510\u0511"+ - "\7\60\2\2\u0511\u00f9\3\2\2\2\u0512\u0513\7>\2\2\u0513\u0514\7>\2\2\u0514"+ - "\u00fb\3\2\2\2\u0515\u0516\7@\2\2\u0516\u0517\7@\2\2\u0517\u00fd\3\2\2"+ - "\2\u0518\u0519\7-\2\2\u0519\u00ff\3\2\2\2\u051a\u051b\7/\2\2\u051b\u0101"+ - "\3\2\2\2\u051c\u051d\7>\2\2\u051d\u0103\3\2\2\2\u051e\u051f\7@\2\2\u051f"+ - "\u0105\3\2\2\2\u0520\u0521\7,\2\2\u0521\u0107\3\2\2\2\u0522\u0523\7\61"+ - "\2\2\u0523\u0109\3\2\2\2\u0524\u0525\7}\2\2\u0525\u0526\b\u0085\t\2\u0526"+ - "\u010b\3\2\2\2\u0527\u0528\7\177\2\2\u0528\u0529\b\u0086\n\2\u0529\u010d"+ - "\3\2\2\2\u052a\u052d\5\u0110\u0088\2\u052b\u052d\5\u0118\u008c\2\u052c"+ - "\u052a\3\2\2\2\u052c\u052b\3\2\2\2\u052d\u010f\3\2\2\2\u052e\u0532\5\u0112"+ - "\u0089\2\u052f\u0532\5\u0114\u008a\2\u0530\u0532\5\u0116\u008b\2\u0531"+ - "\u052e\3\2\2\2\u0531\u052f\3\2\2\2\u0531\u0530\3\2\2\2\u0532\u0111\3\2"+ - "\2\2\u0533\u0537\7\'\2\2\u0534\u0536\5\u0120\u0090\2\u0535\u0534\3\2\2"+ - "\2\u0536\u0539\3\2\2\2\u0537\u0535\3\2\2\2\u0537\u0538\3\2\2\2\u0538\u053a"+ - "\3\2\2\2\u0539\u0537\3\2\2\2\u053a\u053c\7\60\2\2\u053b\u053d\5\u0120"+ - "\u0090\2\u053c\u053b\3\2\2\2\u053d\u053e\3\2\2\2\u053e\u053c\3\2\2\2\u053e"+ - "\u053f\3\2\2\2\u053f\u0113\3\2\2\2\u0540\u0542\5\u0122\u0091\2\u0541\u0540"+ - "\3\2\2\2\u0542\u0545\3\2\2\2\u0543\u0541\3\2\2\2\u0543\u0544\3\2\2\2\u0544"+ - "\u0546\3\2\2\2\u0545\u0543\3\2\2\2\u0546\u0548\7\60\2\2\u0547\u0549\5"+ - "\u0122\u0091\2\u0548\u0547\3\2\2\2\u0549\u054a\3\2\2\2\u054a\u0548\3\2"+ - "\2\2\u054a\u054b\3\2\2\2\u054b\u0115\3\2\2\2\u054c\u0550\7&\2\2\u054d"+ - "\u054f\5\u0124\u0092\2\u054e\u054d\3\2\2\2\u054f\u0552\3\2\2\2\u0550\u054e"+ - "\3\2\2\2\u0550\u0551\3\2\2\2\u0551\u0553\3\2\2\2\u0552\u0550\3\2\2\2\u0553"+ - "\u0555\7\60\2\2\u0554\u0556\5\u0124\u0092\2\u0555\u0554\3\2\2\2\u0556"+ - "\u0557\3\2\2\2\u0557\u0555\3\2\2\2\u0557\u0558\3\2\2\2\u0558\u0117\3\2"+ - "\2\2\u0559\u055d\5\u011c\u008e\2\u055a\u055d\5\u011e\u008f\2\u055b\u055d"+ - "\5\u011a\u008d\2\u055c\u0559\3\2\2\2\u055c\u055a\3\2\2\2\u055c\u055b\3"+ - "\2\2\2\u055d\u0119\3\2\2\2\u055e\u0560\7\'\2\2\u055f\u0561\5\u0120\u0090"+ - "\2\u0560\u055f\3\2\2\2\u0561\u0562\3\2\2\2\u0562\u0560\3\2\2\2\u0562\u0563"+ - "\3\2\2\2\u0563\u011b\3\2\2\2\u0564\u0566\5\u0122\u0091\2\u0565\u0564\3"+ - "\2\2\2\u0566\u0567\3\2\2\2\u0567\u0565\3\2\2\2\u0567\u0568\3\2\2\2\u0568"+ - "\u011d\3\2\2\2\u0569\u056b\7&\2\2\u056a\u056c\5\u0124\u0092\2\u056b\u056a"+ - "\3\2\2\2\u056c\u056d\3\2\2\2\u056d\u056b\3\2\2\2\u056d\u056e\3\2\2\2\u056e"+ - "\u011f\3\2\2\2\u056f\u0570\t\13\2\2\u0570\u0121\3\2\2\2\u0571\u0572\t"+ - "\f\2\2\u0572\u0123\3\2\2\2\u0573\u0574\t\r\2\2\u0574\u0125\3\2\2\2\u0575"+ - "\u0579\7)\2\2\u0576\u0577\7^\2\2\u0577\u057a\t\6\2\2\u0578\u057a\n\7\2"+ - "\2\u0579\u0576\3\2\2\2\u0579\u0578\3\2\2\2\u057a\u057b\3\2\2\2\u057b\u057c"+ - "\7)\2\2\u057c\u0127\3\2\2\2\u057d\u057f\5\u012a\u0095\2\u057e\u0580\t"+ - "\22\2\2\u057f\u057e\3\2\2\2\u0580\u0581\3\2\2\2\u0581\u057f\3\2\2\2\u0581"+ - "\u0582\3\2\2\2\u0582\u0129\3\2\2\2\u0583\u0587\7#\2\2\u0584\u0586\5\u0130"+ - "\u0098\2\u0585\u0584\3\2\2\2\u0586\u0589\3\2\2\2\u0587\u0585\3\2\2\2\u0587"+ - "\u0588\3\2\2\2\u0588\u012b\3\2\2\2\u0589\u0587\3\2\2\2\u058a\u058e\5\u012e"+ - "\u0097\2\u058b\u058d\5\u0130\u0098\2\u058c\u058b\3\2\2\2\u058d\u0590\3"+ - "\2\2\2\u058e\u058c\3\2\2\2\u058e\u058f\3\2\2\2\u058f\u012d\3\2\2\2\u0590"+ - "\u058e\3\2\2\2\u0591\u0592\t\16\2\2\u0592\u012f\3\2\2\2\u0593\u0594\t"+ - "\17\2\2\u0594\u0131\3\2\2\2\u0595\u0597\t\20\2\2\u0596\u0595\3\2\2\2\u0597"+ - "\u0598\3\2\2\2\u0598\u0596\3\2\2\2\u0598\u0599\3\2\2\2\u0599\u059a\3\2"+ - "\2\2\u059a\u059b\b\u0099\7\2\u059b\u0133\3\2\2\2\u059c\u059d\7\61\2\2"+ - "\u059d\u059e\7\61\2\2\u059e\u05a2\3\2\2\2\u059f\u05a1\n\21\2\2\u05a0\u059f"+ - "\3\2\2\2\u05a1\u05a4\3\2\2\2\u05a2\u05a0\3\2\2\2\u05a2\u05a3\3\2\2\2\u05a3"+ - "\u05a5\3\2\2\2\u05a4\u05a2\3\2\2\2\u05a5\u05a6\b\u009a\b\2\u05a6\u0135"+ - "\3\2\2\2\u05a7\u05a8\7\61\2\2\u05a8\u05a9\7,\2\2\u05a9\u05ad\3\2\2\2\u05aa"+ - "\u05ac\13\2\2\2\u05ab\u05aa\3\2\2\2\u05ac\u05af\3\2\2\2\u05ad\u05ae\3"+ - "\2\2\2\u05ad\u05ab\3\2\2\2\u05ae\u05b0\3\2\2\2\u05af\u05ad\3\2\2\2\u05b0"+ - "\u05b1\7,\2\2\u05b1\u05b2\7\61\2\2\u05b2\u05b3\3\2\2\2\u05b3\u05b4\b\u009b"+ - "\b\2\u05b4\u0137\3\2\2\2;\2\3\u01a1\u0272\u0319\u0340\u034b\u0353\u035d"+ - "\u035f\u0364\u0368\u036a\u036d\u0375\u0386\u038b\u0392\u0397\u039e\u03a3"+ - "\u03aa\u03b1\u03b6\u03bd\u03c2\u03c7\u03ce\u03d4\u03d6\u03db\u03e2\u03e7"+ - "\u03f3\u03ff\u0409\u0414\u0500\u052c\u0531\u0537\u053e\u0543\u054a\u0550"+ - "\u0557\u055c\u0562\u0567\u056d\u0579\u0581\u0587\u058e\u0598\u05a2\u05ad"+ - "\13\3\2\2\3&\3\3K\4\3]\5\3m\6\2\3\2\2\4\2\3\u0085\7\3\u0086\b"; + "\t\u009b\4\u009c\t\u009c\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3"+ + "\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\r\3\r\3\16\3\16"+ + "\3\16\3\17\3\17\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\24"+ + "\3\25\3\25\3\25\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\32"+ + "\3\33\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\37\3\37\3\37"+ + "\3 \3 \3 \3!\3!\3\"\3\"\3\"\3#\3#\3#\3$\3$\3%\3%\3%\3%\3%\3%\3%\3%\3%"+ + "\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u01a4\n%\3&\3&\3&\3&\3&\3&"+ + "\3&\3&\3&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3)\3"+ + ")\3)\3)\3)\3)\3)\3)\3*\3*\3*\3+\3+\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3-\3"+ + "-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60"+ + "\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\62"+ + "\3\62\3\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64"+ + "\3\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66"+ + "\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67"+ + "\38\38\38\38\38\38\38\38\38\38\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:"+ + "\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3="+ + "\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@"+ + "\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\5@\u0275\n@\3A\3A\3A\3A\3A\3A\3A\3A\3A"+ + "\3A\3B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3F\3F\3F\3F\3G"+ + "\3G\3G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J"+ + "\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M"+ + "\3M\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q"+ + "\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T"+ + "\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W"+ + "\3W\3W\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u031c\nY\3Z"+ + "\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z"+ + "\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u0343\nZ\3[\3[\3[\3[\3[\3["+ + "\3[\3[\3[\5[\u034e\n[\3\\\3\\\3\\\3\\\7\\\u0354\n\\\f\\\16\\\u0357\13"+ + "\\\3\\\3\\\3\\\3]\3]\3]\3]\7]\u0360\n]\f]\16]\u0363\13]\3]\3]\5]\u0367"+ + "\n]\3]\3]\5]\u036b\n]\5]\u036d\n]\3]\5]\u0370\n]\3]\3]\3^\3^\3^\3^\5^"+ + "\u0378\n^\3^\3^\3_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3a\3a\3a\3a\3a\3a\3a"+ + "\3b\3b\5b\u0390\nb\3c\3c\3c\5c\u0395\nc\3d\3d\3d\3d\3d\5d\u039c\nd\3d"+ + "\7d\u039f\nd\fd\16d\u03a2\13d\3d\3d\6d\u03a6\nd\rd\16d\u03a7\3e\7e\u03ab"+ + "\ne\fe\16e\u03ae\13e\3e\3e\6e\u03b2\ne\re\16e\u03b3\3f\3f\3f\3f\3f\5f"+ + "\u03bb\nf\3f\7f\u03be\nf\ff\16f\u03c1\13f\3f\3f\6f\u03c5\nf\rf\16f\u03c6"+ + "\3g\3g\3g\5g\u03cc\ng\3g\3g\3g\5g\u03d1\ng\3h\3h\3h\6h\u03d6\nh\rh\16"+ + "h\u03d7\3h\3h\6h\u03dc\nh\rh\16h\u03dd\5h\u03e0\nh\3i\6i\u03e3\ni\ri\16"+ + "i\u03e4\3j\3j\3j\3j\3j\5j\u03ec\nj\3j\6j\u03ef\nj\rj\16j\u03f0\3k\3k\3"+ + "l\3l\3m\3m\3n\3n\7n\u03fb\nn\fn\16n\u03fe\13n\3n\3n\3o\3o\3p\3p\3q\6q"+ + "\u0407\nq\rq\16q\u0408\3q\3q\3r\3r\3r\3r\7r\u0411\nr\fr\16r\u0414\13r"+ + "\3r\3r\3s\3s\3s\3s\7s\u041c\ns\fs\16s\u041f\13s\3s\3s\3s\3s\3s\3t\3t\3"+ + "t\3t\3t\3t\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3"+ + "u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\3u\5u\u050a\nu\3"+ + "v\3v\3w\3w\3x\3x\3y\3y\3z\3z\3{\3{\3|\3|\3}\3}\3~\3~\3~\3\177\3\177\3"+ + "\177\3\u0080\3\u0080\3\u0081\3\u0081\3\u0082\3\u0082\3\u0083\3\u0083\3"+ + "\u0084\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0086\3\u0087\3\u0087"+ + "\3\u0087\3\u0088\3\u0088\5\u0088\u0536\n\u0088\3\u0089\3\u0089\3\u0089"+ + "\5\u0089\u053b\n\u0089\3\u008a\3\u008a\7\u008a\u053f\n\u008a\f\u008a\16"+ + "\u008a\u0542\13\u008a\3\u008a\3\u008a\6\u008a\u0546\n\u008a\r\u008a\16"+ + "\u008a\u0547\3\u008b\7\u008b\u054b\n\u008b\f\u008b\16\u008b\u054e\13\u008b"+ + "\3\u008b\3\u008b\6\u008b\u0552\n\u008b\r\u008b\16\u008b\u0553\3\u008c"+ + "\3\u008c\7\u008c\u0558\n\u008c\f\u008c\16\u008c\u055b\13\u008c\3\u008c"+ + "\3\u008c\6\u008c\u055f\n\u008c\r\u008c\16\u008c\u0560\3\u008d\3\u008d"+ + "\3\u008d\5\u008d\u0566\n\u008d\3\u008e\3\u008e\6\u008e\u056a\n\u008e\r"+ + "\u008e\16\u008e\u056b\3\u008f\6\u008f\u056f\n\u008f\r\u008f\16\u008f\u0570"+ + "\3\u0090\3\u0090\6\u0090\u0575\n\u0090\r\u0090\16\u0090\u0576\3\u0091"+ + "\3\u0091\3\u0092\3\u0092\3\u0093\3\u0093\3\u0094\3\u0094\3\u0094\3\u0094"+ + "\5\u0094\u0583\n\u0094\3\u0094\3\u0094\3\u0095\3\u0095\6\u0095\u0589\n"+ + "\u0095\r\u0095\16\u0095\u058a\3\u0096\3\u0096\7\u0096\u058f\n\u0096\f"+ + "\u0096\16\u0096\u0592\13\u0096\3\u0097\3\u0097\7\u0097\u0596\n\u0097\f"+ + "\u0097\16\u0097\u0599\13\u0097\3\u0098\3\u0098\3\u0099\3\u0099\3\u009a"+ + "\6\u009a\u05a0\n\u009a\r\u009a\16\u009a\u05a1\3\u009a\3\u009a\3\u009b"+ + "\3\u009b\3\u009b\3\u009b\7\u009b\u05aa\n\u009b\f\u009b\16\u009b\u05ad"+ + "\13\u009b\3\u009b\3\u009b\3\u009c\3\u009c\3\u009c\3\u009c\7\u009c\u05b5"+ + "\n\u009c\f\u009c\16\u009c\u05b8\13\u009c\3\u009c\3\u009c\3\u009c\3\u009c"+ + "\3\u009c\5\u0355\u041d\u05b6\2\u009d\4\4\6\5\b\6\n\7\f\b\16\t\20\n\22"+ + "\13\24\f\26\r\30\16\32\17\34\20\36\21 \22\"\23$\24&\25(\26*\27,\30.\31"+ + "\60\32\62\33\64\34\66\358\36:\37< >!@\"B#D$F%H&J\'L(N)P*R+T,V-X.Z/\\\60"+ + "^\61`\62b\63d\64f\65h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D"+ + "\u0086E\u0088F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098"+ + "N\u009aO\u009cP\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00ac"+ + "X\u00aeY\u00b0Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0"+ + "b\u00c2c\u00c4d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2k\u00d4"+ + "l\u00d6\2\u00d8\2\u00da\2\u00dcm\u00de\2\u00e0\2\u00e2n\u00e4o\u00e6p"+ + "\u00e8q\u00ear\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\u00fa"+ + "z\u00fc{\u00fe|\u0100}\u0102~\u0104\177\u0106\u0080\u0108\u0081\u010a"+ + "\u0082\u010c\u0083\u010e\u0084\u0110\u0085\u0112\u0086\u0114\u0087\u0116"+ + "\u0088\u0118\u0089\u011a\u008a\u011c\u008b\u011e\u008c\u0120\u008d\u0122"+ + "\2\u0124\2\u0126\2\u0128\u008e\u012a\u008f\u012c\u0090\u012e\u0091\u0130"+ + "\2\u0132\2\u0134\u0092\u0136\u0093\u0138\u0094\4\2\3\23\3\2$$\3\2||\4"+ + "\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62"+ + "\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\6\2\13\f\17\17\"\"\u00a2"+ + "\u00a2\4\2\f\f\17\17\4\2--//\2\u0648\2\4\3\2\2\2\2\6\3\2\2\2\2\b\3\2\2"+ + "\2\2\n\3\2\2\2\2\f\3\2\2\2\2\16\3\2\2\2\2\20\3\2\2\2\2\22\3\2\2\2\2\24"+ + "\3\2\2\2\2\26\3\2\2\2\2\30\3\2\2\2\2\32\3\2\2\2\2\34\3\2\2\2\2\36\3\2"+ + "\2\2\2 \3\2\2\2\2\"\3\2\2\2\2$\3\2\2\2\2&\3\2\2\2\2(\3\2\2\2\2*\3\2\2"+ + "\2\2,\3\2\2\2\2.\3\2\2\2\2\60\3\2\2\2\2\62\3\2\2\2\2\64\3\2\2\2\2\66\3"+ + "\2\2\2\28\3\2\2\2\2:\3\2\2\2\2<\3\2\2\2\2>\3\2\2\2\2@\3\2\2\2\2B\3\2\2"+ + "\2\2D\3\2\2\2\2F\3\2\2\2\2H\3\2\2\2\2J\3\2\2\2\2L\3\2\2\2\2N\3\2\2\2\2"+ + "P\3\2\2\2\2R\3\2\2\2\2T\3\2\2\2\2V\3\2\2\2\2X\3\2\2\2\2Z\3\2\2\2\2\\\3"+ + "\2\2\2\2^\3\2\2\2\2`\3\2\2\2\2b\3\2\2\2\2d\3\2\2\2\2f\3\2\2\2\2h\3\2\2"+ + "\2\2j\3\2\2\2\2l\3\2\2\2\2n\3\2\2\2\2p\3\2\2\2\2r\3\2\2\2\2t\3\2\2\2\2"+ + "v\3\2\2\2\2x\3\2\2\2\2z\3\2\2\2\2|\3\2\2\2\2~\3\2\2\2\2\u0080\3\2\2\2"+ + "\2\u0082\3\2\2\2\2\u0084\3\2\2\2\2\u0086\3\2\2\2\2\u0088\3\2\2\2\2\u008a"+ + "\3\2\2\2\2\u008c\3\2\2\2\2\u008e\3\2\2\2\2\u0090\3\2\2\2\2\u0092\3\2\2"+ + "\2\2\u0094\3\2\2\2\2\u0096\3\2\2\2\2\u0098\3\2\2\2\2\u009a\3\2\2\2\2\u009c"+ + "\3\2\2\2\2\u009e\3\2\2\2\2\u00a0\3\2\2\2\2\u00a2\3\2\2\2\2\u00a4\3\2\2"+ + "\2\2\u00a6\3\2\2\2\2\u00a8\3\2\2\2\2\u00aa\3\2\2\2\2\u00ac\3\2\2\2\2\u00ae"+ + "\3\2\2\2\2\u00b0\3\2\2\2\2\u00b2\3\2\2\2\2\u00b4\3\2\2\2\2\u00b6\3\2\2"+ + "\2\2\u00b8\3\2\2\2\2\u00ba\3\2\2\2\2\u00bc\3\2\2\2\2\u00be\3\2\2\2\2\u00c0"+ + "\3\2\2\2\2\u00c2\3\2\2\2\2\u00c4\3\2\2\2\2\u00c6\3\2\2\2\2\u00c8\3\2\2"+ + "\2\2\u00ca\3\2\2\2\2\u00cc\3\2\2\2\2\u00ce\3\2\2\2\2\u00d0\3\2\2\2\2\u00d2"+ + "\3\2\2\2\2\u00d4\3\2\2\2\2\u00dc\3\2\2\2\2\u00e2\3\2\2\2\2\u00e4\3\2\2"+ + "\2\2\u00e6\3\2\2\2\3\u00e8\3\2\2\2\3\u00ea\3\2\2\2\3\u00ec\3\2\2\2\3\u00ee"+ + "\3\2\2\2\3\u00f0\3\2\2\2\3\u00f2\3\2\2\2\3\u00f4\3\2\2\2\3\u00f6\3\2\2"+ + "\2\3\u00f8\3\2\2\2\3\u00fa\3\2\2\2\3\u00fc\3\2\2\2\3\u00fe\3\2\2\2\3\u0100"+ + "\3\2\2\2\3\u0102\3\2\2\2\3\u0104\3\2\2\2\3\u0106\3\2\2\2\3\u0108\3\2\2"+ + "\2\3\u010a\3\2\2\2\3\u010c\3\2\2\2\3\u010e\3\2\2\2\3\u0110\3\2\2\2\3\u0112"+ + "\3\2\2\2\3\u0114\3\2\2\2\3\u0116\3\2\2\2\3\u0118\3\2\2\2\3\u011a\3\2\2"+ + "\2\3\u011c\3\2\2\2\3\u011e\3\2\2\2\3\u0120\3\2\2\2\3\u0128\3\2\2\2\3\u012a"+ + "\3\2\2\2\3\u012c\3\2\2\2\3\u012e\3\2\2\2\3\u0134\3\2\2\2\3\u0136\3\2\2"+ + "\2\3\u0138\3\2\2\2\4\u013a\3\2\2\2\6\u013d\3\2\2\2\b\u013f\3\2\2\2\n\u0141"+ + "\3\2\2\2\f\u0143\3\2\2\2\16\u0145\3\2\2\2\20\u0147\3\2\2\2\22\u0149\3"+ + "\2\2\2\24\u014b\3\2\2\2\26\u014d\3\2\2\2\30\u0150\3\2\2\2\32\u0152\3\2"+ + "\2\2\34\u0154\3\2\2\2\36\u0157\3\2\2\2 \u0159\3\2\2\2\"\u015b\3\2\2\2"+ + "$\u015d\3\2\2\2&\u015f\3\2\2\2(\u0161\3\2\2\2*\u0164\3\2\2\2,\u0167\3"+ + "\2\2\2.\u0169\3\2\2\2\60\u016b\3\2\2\2\62\u016d\3\2\2\2\64\u016f\3\2\2"+ + "\2\66\u0172\3\2\2\28\u0175\3\2\2\2:\u0178\3\2\2\2<\u017b\3\2\2\2>\u017d"+ + "\3\2\2\2@\u0180\3\2\2\2B\u0183\3\2\2\2D\u0185\3\2\2\2F\u0188\3\2\2\2H"+ + "\u018b\3\2\2\2J\u01a3\3\2\2\2L\u01a5\3\2\2\2N\u01ae\3\2\2\2P\u01b6\3\2"+ + "\2\2R\u01be\3\2\2\2T\u01c6\3\2\2\2V\u01c9\3\2\2\2X\u01d0\3\2\2\2Z\u01d5"+ + "\3\2\2\2\\\u01d9\3\2\2\2^\u01e2\3\2\2\2`\u01eb\3\2\2\2b\u01f4\3\2\2\2"+ + "d\u01fa\3\2\2\2f\u0201\3\2\2\2h\u0208\3\2\2\2j\u020e\3\2\2\2l\u0215\3"+ + "\2\2\2n\u021e\3\2\2\2p\u0225\3\2\2\2r\u022f\3\2\2\2t\u0238\3\2\2\2v\u0242"+ + "\3\2\2\2x\u0247\3\2\2\2z\u024d\3\2\2\2|\u0253\3\2\2\2~\u0258\3\2\2\2\u0080"+ + "\u0274\3\2\2\2\u0082\u0276\3\2\2\2\u0084\u0280\3\2\2\2\u0086\u0283\3\2"+ + "\2\2\u0088\u0288\3\2\2\2\u008a\u028e\3\2\2\2\u008c\u0291\3\2\2\2\u008e"+ + "\u0295\3\2\2\2\u0090\u029c\3\2\2\2\u0092\u02a3\3\2\2\2\u0094\u02a9\3\2"+ + "\2\2\u0096\u02b2\3\2\2\2\u0098\u02b8\3\2\2\2\u009a\u02c0\3\2\2\2\u009c"+ + "\u02c5\3\2\2\2\u009e\u02cc\3\2\2\2\u00a0\u02d1\3\2\2\2\u00a2\u02d8\3\2"+ + "\2\2\u00a4\u02df\3\2\2\2\u00a6\u02e7\3\2\2\2\u00a8\u02f0\3\2\2\2\u00aa"+ + "\u02f5\3\2\2\2\u00ac\u02fe\3\2\2\2\u00ae\u0304\3\2\2\2\u00b0\u030b\3\2"+ + "\2\2\u00b2\u031b\3\2\2\2\u00b4\u0342\3\2\2\2\u00b6\u034d\3\2\2\2\u00b8"+ + "\u034f\3\2\2\2\u00ba\u035b\3\2\2\2\u00bc\u0373\3\2\2\2\u00be\u037b\3\2"+ + "\2\2\u00c0\u0383\3\2\2\2\u00c2\u0386\3\2\2\2\u00c4\u038f\3\2\2\2\u00c6"+ + "\u0394\3\2\2\2\u00c8\u039b\3\2\2\2\u00ca\u03ac\3\2\2\2\u00cc\u03ba\3\2"+ + "\2\2\u00ce\u03cb\3\2\2\2\u00d0\u03df\3\2\2\2\u00d2\u03e2\3\2\2\2\u00d4"+ + "\u03eb\3\2\2\2\u00d6\u03f2\3\2\2\2\u00d8\u03f4\3\2\2\2\u00da\u03f6\3\2"+ + "\2\2\u00dc\u03f8\3\2\2\2\u00de\u0401\3\2\2\2\u00e0\u0403\3\2\2\2\u00e2"+ + "\u0406\3\2\2\2\u00e4\u040c\3\2\2\2\u00e6\u0417\3\2\2\2\u00e8\u0425\3\2"+ + "\2\2\u00ea\u0509\3\2\2\2\u00ec\u050b\3\2\2\2\u00ee\u050d\3\2\2\2\u00f0"+ + "\u050f\3\2\2\2\u00f2\u0511\3\2\2\2\u00f4\u0513\3\2\2\2\u00f6\u0515\3\2"+ + "\2\2\u00f8\u0517\3\2\2\2\u00fa\u0519\3\2\2\2\u00fc\u051b\3\2\2\2\u00fe"+ + "\u051e\3\2\2\2\u0100\u0521\3\2\2\2\u0102\u0523\3\2\2\2\u0104\u0525\3\2"+ + "\2\2\u0106\u0527\3\2\2\2\u0108\u0529\3\2\2\2\u010a\u052b\3\2\2\2\u010c"+ + "\u052d\3\2\2\2\u010e\u0530\3\2\2\2\u0110\u0535\3\2\2\2\u0112\u053a\3\2"+ + "\2\2\u0114\u053c\3\2\2\2\u0116\u054c\3\2\2\2\u0118\u0555\3\2\2\2\u011a"+ + "\u0565\3\2\2\2\u011c\u0567\3\2\2\2\u011e\u056e\3\2\2\2\u0120\u0572\3\2"+ + "\2\2\u0122\u0578\3\2\2\2\u0124\u057a\3\2\2\2\u0126\u057c\3\2\2\2\u0128"+ + "\u057e\3\2\2\2\u012a\u0586\3\2\2\2\u012c\u058c\3\2\2\2\u012e\u0593\3\2"+ + "\2\2\u0130\u059a\3\2\2\2\u0132\u059c\3\2\2\2\u0134\u059f\3\2\2\2\u0136"+ + "\u05a5\3\2\2\2\u0138\u05b0\3\2\2\2\u013a\u013b\7}\2\2\u013b\u013c\b\2"+ + "\2\2\u013c\5\3\2\2\2\u013d\u013e\7\177\2\2\u013e\7\3\2\2\2\u013f\u0140"+ + "\7]\2\2\u0140\t\3\2\2\2\u0141\u0142\7_\2\2\u0142\13\3\2\2\2\u0143\u0144"+ + "\7*\2\2\u0144\r\3\2\2\2\u0145\u0146\7+\2\2\u0146\17\3\2\2\2\u0147\u0148"+ + "\7=\2\2\u0148\21\3\2\2\2\u0149\u014a\7<\2\2\u014a\23\3\2\2\2\u014b\u014c"+ + "\7.\2\2\u014c\25\3\2\2\2\u014d\u014e\7\60\2\2\u014e\u014f\7\60\2\2\u014f"+ + "\27\3\2\2\2\u0150\u0151\7A\2\2\u0151\31\3\2\2\2\u0152\u0153\7\60\2\2\u0153"+ + "\33\3\2\2\2\u0154\u0155\7/\2\2\u0155\u0156\7@\2\2\u0156\35\3\2\2\2\u0157"+ + "\u0158\7-\2\2\u0158\37\3\2\2\2\u0159\u015a\7/\2\2\u015a!\3\2\2\2\u015b"+ + "\u015c\7,\2\2\u015c#\3\2\2\2\u015d\u015e\7\61\2\2\u015e%\3\2\2\2\u015f"+ + "\u0160\7\'\2\2\u0160\'\3\2\2\2\u0161\u0162\7-\2\2\u0162\u0163\7-\2\2\u0163"+ + ")\3\2\2\2\u0164\u0165\7/\2\2\u0165\u0166\7/\2\2\u0166+\3\2\2\2\u0167\u0168"+ + "\7(\2\2\u0168-\3\2\2\2\u0169\u016a\7\u0080\2\2\u016a/\3\2\2\2\u016b\u016c"+ + "\7`\2\2\u016c\61\3\2\2\2\u016d\u016e\7~\2\2\u016e\63\3\2\2\2\u016f\u0170"+ + "\7>\2\2\u0170\u0171\7>\2\2\u0171\65\3\2\2\2\u0172\u0173\7@\2\2\u0173\u0174"+ + "\7@\2\2\u0174\67\3\2\2\2\u0175\u0176\7?\2\2\u0176\u0177\7?\2\2\u01779"+ + "\3\2\2\2\u0178\u0179\7#\2\2\u0179\u017a\7?\2\2\u017a;\3\2\2\2\u017b\u017c"+ + "\7>\2\2\u017c=\3\2\2\2\u017d\u017e\7>\2\2\u017e\u017f\7?\2\2\u017f?\3"+ + "\2\2\2\u0180\u0181\7@\2\2\u0181\u0182\7?\2\2\u0182A\3\2\2\2\u0183\u0184"+ + "\7@\2\2\u0184C\3\2\2\2\u0185\u0186\7(\2\2\u0186\u0187\7(\2\2\u0187E\3"+ + "\2\2\2\u0188\u0189\7~\2\2\u0189\u018a\7~\2\2\u018aG\3\2\2\2\u018b\u018c"+ + "\7?\2\2\u018cI\3\2\2\2\u018d\u018e\7-\2\2\u018e\u01a4\7?\2\2\u018f\u0190"+ + "\7/\2\2\u0190\u01a4\7?\2\2\u0191\u0192\7,\2\2\u0192\u01a4\7?\2\2\u0193"+ + "\u0194\7\61\2\2\u0194\u01a4\7?\2\2\u0195\u0196\7\'\2\2\u0196\u01a4\7?"+ + "\2\2\u0197\u0198\7>\2\2\u0198\u0199\7>\2\2\u0199\u01a4\7?\2\2\u019a\u019b"+ + "\7@\2\2\u019b\u019c\7@\2\2\u019c\u01a4\7?\2\2\u019d\u019e\7(\2\2\u019e"+ + "\u01a4\7?\2\2\u019f\u01a0\7~\2\2\u01a0\u01a4\7?\2\2\u01a1\u01a2\7`\2\2"+ + "\u01a2\u01a4\7?\2\2\u01a3\u018d\3\2\2\2\u01a3\u018f\3\2\2\2\u01a3\u0191"+ + "\3\2\2\2\u01a3\u0193\3\2\2\2\u01a3\u0195\3\2\2\2\u01a3\u0197\3\2\2\2\u01a3"+ + "\u019a\3\2\2\2\u01a3\u019d\3\2\2\2\u01a3\u019f\3\2\2\2\u01a3\u01a1\3\2"+ + "\2\2\u01a4K\3\2\2\2\u01a5\u01a6\7k\2\2\u01a6\u01a7\7o\2\2\u01a7\u01a8"+ + "\7r\2\2\u01a8\u01a9\7q\2\2\u01a9\u01aa\7t\2\2\u01aa\u01ab\7v\2\2\u01ab"+ + "\u01ac\3\2\2\2\u01ac\u01ad\b&\3\2\u01adM\3\2\2\2\u01ae\u01af\7v\2\2\u01af"+ + "\u01b0\7{\2\2\u01b0\u01b1\7r\2\2\u01b1\u01b2\7g\2\2\u01b2\u01b3\7f\2\2"+ + "\u01b3\u01b4\7g\2\2\u01b4\u01b5\7h\2\2\u01b5O\3\2\2\2\u01b6\u01b7\7%\2"+ + "\2\u01b7\u01b8\7r\2\2\u01b8\u01b9\7t\2\2\u01b9\u01ba\7c\2\2\u01ba\u01bb"+ + "\7i\2\2\u01bb\u01bc\7o\2\2\u01bc\u01bd\7c\2\2\u01bdQ\3\2\2\2\u01be\u01bf"+ + "\7t\2\2\u01bf\u01c0\7g\2\2\u01c0\u01c1\7u\2\2\u01c1\u01c2\7g\2\2\u01c2"+ + "\u01c3\7t\2\2\u01c3\u01c4\7x\2\2\u01c4\u01c5\7g\2\2\u01c5S\3\2\2\2\u01c6"+ + "\u01c7\7r\2\2\u01c7\u01c8\7e\2\2\u01c8U\3\2\2\2\u01c9\u01ca\7v\2\2\u01ca"+ + "\u01cb\7c\2\2\u01cb\u01cc\7t\2\2\u01cc\u01cd\7i\2\2\u01cd\u01ce\7g\2\2"+ + "\u01ce\u01cf\7v\2\2\u01cfW\3\2\2\2\u01d0\u01d1\7n\2\2\u01d1\u01d2\7k\2"+ + "\2\u01d2\u01d3\7p\2\2\u01d3\u01d4\7m\2\2\u01d4Y\3\2\2\2\u01d5\u01d6\7"+ + "e\2\2\u01d6\u01d7\7r\2\2\u01d7\u01d8\7w\2\2\u01d8[\3\2\2\2\u01d9\u01da"+ + "\7e\2\2\u01da\u01db\7q\2\2\u01db\u01dc\7f\2\2\u01dc\u01dd\7g\2\2\u01dd"+ + "\u01de\7a\2\2\u01de\u01df\7u\2\2\u01df\u01e0\7g\2\2\u01e0\u01e1\7i\2\2"+ + "\u01e1]\3\2\2\2\u01e2\u01e3\7f\2\2\u01e3\u01e4\7c\2\2\u01e4\u01e5\7v\2"+ + "\2\u01e5\u01e6\7c\2\2\u01e6\u01e7\7a\2\2\u01e7\u01e8\7u\2\2\u01e8\u01e9"+ + "\7g\2\2\u01e9\u01ea\7i\2\2\u01ea_\3\2\2\2\u01eb\u01ec\7g\2\2\u01ec\u01ed"+ + "\7p\2\2\u01ed\u01ee\7e\2\2\u01ee\u01ef\7q\2\2\u01ef\u01f0\7f\2\2\u01f0"+ + "\u01f1\7k\2\2\u01f1\u01f2\7p\2\2\u01f2\u01f3\7i\2\2\u01f3a\3\2\2\2\u01f4"+ + "\u01f5\7e\2\2\u01f5\u01f6\7q\2\2\u01f6\u01f7\7p\2\2\u01f7\u01f8\7u\2\2"+ + "\u01f8\u01f9\7v\2\2\u01f9c\3\2\2\2\u01fa\u01fb\7g\2\2\u01fb\u01fc\7z\2"+ + "\2\u01fc\u01fd\7v\2\2\u01fd\u01fe\7g\2\2\u01fe\u01ff\7t\2\2\u01ff\u0200"+ + "\7p\2\2\u0200e\3\2\2\2\u0201\u0202\7g\2\2\u0202\u0203\7z\2\2\u0203\u0204"+ + "\7r\2\2\u0204\u0205\7q\2\2\u0205\u0206\7t\2\2\u0206\u0207\7v\2\2\u0207"+ + "g\3\2\2\2\u0208\u0209\7c\2\2\u0209\u020a\7n\2\2\u020a\u020b\7k\2\2\u020b"+ + "\u020c\7i\2\2\u020c\u020d\7p\2\2\u020di\3\2\2\2\u020e\u020f\7k\2\2\u020f"+ + "\u0210\7p\2\2\u0210\u0211\7n\2\2\u0211\u0212\7k\2\2\u0212\u0213\7p\2\2"+ + "\u0213\u0214\7g\2\2\u0214k\3\2\2\2\u0215\u0216\7x\2\2\u0216\u0217\7q\2"+ + "\2\u0217\u0218\7n\2\2\u0218\u0219\7c\2\2\u0219\u021a\7v\2\2\u021a\u021b"+ + "\7k\2\2\u021b\u021c\7n\2\2\u021c\u021d\7g\2\2\u021dm\3\2\2\2\u021e\u021f"+ + "\7u\2\2\u021f\u0220\7v\2\2\u0220\u0221\7c\2\2\u0221\u0222\7v\2\2\u0222"+ + "\u0223\7k\2\2\u0223\u0224\7e\2\2\u0224o\3\2\2\2\u0225\u0226\7k\2\2\u0226"+ + "\u0227\7p\2\2\u0227\u0228\7v\2\2\u0228\u0229\7g\2\2\u0229\u022a\7t\2\2"+ + "\u022a\u022b\7t\2\2\u022b\u022c\7w\2\2\u022c\u022d\7r\2\2\u022d\u022e"+ + "\7v\2\2\u022eq\3\2\2\2\u022f\u0230\7t\2\2\u0230\u0231\7g\2\2\u0231\u0232"+ + "\7i\2\2\u0232\u0233\7k\2\2\u0233\u0234\7u\2\2\u0234\u0235\7v\2\2\u0235"+ + "\u0236\7g\2\2\u0236\u0237\7t\2\2\u0237s\3\2\2\2\u0238\u0239\7a\2\2\u0239"+ + "\u023a\7a\2\2\u023a\u023b\7c\2\2\u023b\u023c\7f\2\2\u023c\u023d\7f\2\2"+ + "\u023d\u023e\7t\2\2\u023e\u023f\7g\2\2\u023f\u0240\7u\2\2\u0240\u0241"+ + "\7u\2\2\u0241u\3\2\2\2\u0242\u0243\7a\2\2\u0243\u0244\7a\2\2\u0244\u0245"+ + "\7|\2\2\u0245\u0246\7r\2\2\u0246w\3\2\2\2\u0247\u0248\7a\2\2\u0248\u0249"+ + "\7a\2\2\u0249\u024a\7o\2\2\u024a\u024b\7g\2\2\u024b\u024c\7o\2\2\u024c"+ + "y\3\2\2\2\u024d\u024e\7a\2\2\u024e\u024f\7a\2\2\u024f\u0250\7u\2\2\u0250"+ + "\u0251\7u\2\2\u0251\u0252\7c\2\2\u0252{\3\2\2\2\u0253\u0254\7a\2\2\u0254"+ + "\u0255\7a\2\2\u0255\u0256\7o\2\2\u0256\u0257\7c\2\2\u0257}\3\2\2\2\u0258"+ + "\u0259\7e\2\2\u0259\u025a\7c\2\2\u025a\u025b\7n\2\2\u025b\u025c\7n\2\2"+ + "\u025c\u025d\7k\2\2\u025d\u025e\7p\2\2\u025e\u025f\7i\2\2\u025f\177\3"+ + "\2\2\2\u0260\u0261\7a\2\2\u0261\u0262\7a\2\2\u0262\u0263\7u\2\2\u0263"+ + "\u0264\7v\2\2\u0264\u0265\7c\2\2\u0265\u0266\7e\2\2\u0266\u0267\7m\2\2"+ + "\u0267\u0268\7e\2\2\u0268\u0269\7c\2\2\u0269\u026a\7n\2\2\u026a\u0275"+ + "\7n\2\2\u026b\u026c\7a\2\2\u026c\u026d\7a\2\2\u026d\u026e\7r\2\2\u026e"+ + "\u026f\7j\2\2\u026f\u0270\7k\2\2\u0270\u0271\7e\2\2\u0271\u0272\7c\2\2"+ + "\u0272\u0273\7n\2\2\u0273\u0275\7n\2\2\u0274\u0260\3\2\2\2\u0274\u026b"+ + "\3\2\2\2\u0275\u0081\3\2\2\2\u0276\u0277\7x\2\2\u0277\u0278\7c\2\2\u0278"+ + "\u0279\7t\2\2\u0279\u027a\7a\2\2\u027a\u027b\7o\2\2\u027b\u027c\7q\2\2"+ + "\u027c\u027d\7f\2\2\u027d\u027e\7g\2\2\u027e\u027f\7n\2\2\u027f\u0083"+ + "\3\2\2\2\u0280\u0281\7k\2\2\u0281\u0282\7h\2\2\u0282\u0085\3\2\2\2\u0283"+ + "\u0284\7g\2\2\u0284\u0285\7n\2\2\u0285\u0286\7u\2\2\u0286\u0287\7g\2\2"+ + "\u0287\u0087\3\2\2\2\u0288\u0289\7y\2\2\u0289\u028a\7j\2\2\u028a\u028b"+ + "\7k\2\2\u028b\u028c\7n\2\2\u028c\u028d\7g\2\2\u028d\u0089\3\2\2\2\u028e"+ + "\u028f\7f\2\2\u028f\u0290\7q\2\2\u0290\u008b\3\2\2\2\u0291\u0292\7h\2"+ + "\2\u0292\u0293\7q\2\2\u0293\u0294\7t\2\2\u0294\u008d\3\2\2\2\u0295\u0296"+ + "\7u\2\2\u0296\u0297\7y\2\2\u0297\u0298\7k\2\2\u0298\u0299\7v\2\2\u0299"+ + "\u029a\7e\2\2\u029a\u029b\7j\2\2\u029b\u008f\3\2\2\2\u029c\u029d\7t\2"+ + "\2\u029d\u029e\7g\2\2\u029e\u029f\7v\2\2\u029f\u02a0\7w\2\2\u02a0\u02a1"+ + "\7t\2\2\u02a1\u02a2\7p\2\2\u02a2\u0091\3\2\2\2\u02a3\u02a4\7d\2\2\u02a4"+ + "\u02a5\7t\2\2\u02a5\u02a6\7g\2\2\u02a6\u02a7\7c\2\2\u02a7\u02a8\7m\2\2"+ + "\u02a8\u0093\3\2\2\2\u02a9\u02aa\7e\2\2\u02aa\u02ab\7q\2\2\u02ab\u02ac"+ + "\7p\2\2\u02ac\u02ad\7v\2\2\u02ad\u02ae\7k\2\2\u02ae\u02af\7p\2\2\u02af"+ + "\u02b0\7w\2\2\u02b0\u02b1\7g\2\2\u02b1\u0095\3\2\2\2\u02b2\u02b3\7c\2"+ + "\2\u02b3\u02b4\7u\2\2\u02b4\u02b5\7o\2\2\u02b5\u02b6\3\2\2\2\u02b6\u02b7"+ + "\bK\4\2\u02b7\u0097\3\2\2\2\u02b8\u02b9\7f\2\2\u02b9\u02ba\7g\2\2\u02ba"+ + "\u02bb\7h\2\2\u02bb\u02bc\7c\2\2\u02bc\u02bd\7w\2\2\u02bd\u02be\7n\2\2"+ + "\u02be\u02bf\7v\2\2\u02bf\u0099\3\2\2\2\u02c0\u02c1\7e\2\2\u02c1\u02c2"+ + "\7c\2\2\u02c2\u02c3\7u\2\2\u02c3\u02c4\7g\2\2\u02c4\u009b\3\2\2\2\u02c5"+ + "\u02c6\7u\2\2\u02c6\u02c7\7v\2\2\u02c7\u02c8\7t\2\2\u02c8\u02c9\7w\2\2"+ + "\u02c9\u02ca\7e\2\2\u02ca\u02cb\7v\2\2\u02cb\u009d\3\2\2\2\u02cc\u02cd"+ + "\7g\2\2\u02cd\u02ce\7p\2\2\u02ce\u02cf\7w\2\2\u02cf\u02d0\7o\2\2\u02d0"+ + "\u009f\3\2\2\2\u02d1\u02d2\7u\2\2\u02d2\u02d3\7k\2\2\u02d3\u02d4\7|\2"+ + "\2\u02d4\u02d5\7g\2\2\u02d5\u02d6\7q\2\2\u02d6\u02d7\7h\2\2\u02d7\u00a1"+ + "\3\2\2\2\u02d8\u02d9\7v\2\2\u02d9\u02da\7{\2\2\u02da\u02db\7r\2\2\u02db"+ + "\u02dc\7g\2\2\u02dc\u02dd\7k\2\2\u02dd\u02de\7f\2\2\u02de\u00a3\3\2\2"+ + "\2\u02df\u02e0\7m\2\2\u02e0\u02e1\7k\2\2\u02e1\u02e2\7e\2\2\u02e2\u02e3"+ + "\7m\2\2\u02e3\u02e4\7c\2\2\u02e4\u02e5\7u\2\2\u02e5\u02e6\7o\2\2\u02e6"+ + "\u00a5\3\2\2\2\u02e7\u02e8\7t\2\2\u02e8\u02e9\7g\2\2\u02e9\u02ea\7u\2"+ + "\2\u02ea\u02eb\7q\2\2\u02eb\u02ec\7w\2\2\u02ec\u02ed\7t\2\2\u02ed\u02ee"+ + "\7e\2\2\u02ee\u02ef\7g\2\2\u02ef\u00a7\3\2\2\2\u02f0\u02f1\7w\2\2\u02f1"+ + "\u02f2\7u\2\2\u02f2\u02f3\7g\2\2\u02f3\u02f4\7u\2\2\u02f4\u00a9\3\2\2"+ + "\2\u02f5\u02f6\7e\2\2\u02f6\u02f7\7n\2\2\u02f7\u02f8\7q\2\2\u02f8\u02f9"+ + "\7d\2\2\u02f9\u02fa\7d\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc\7t\2\2\u02fc"+ + "\u02fd\7u\2\2\u02fd\u00ab\3\2\2\2\u02fe\u02ff\7d\2\2\u02ff\u0300\7{\2"+ + "\2\u0300\u0301\7v\2\2\u0301\u0302\7g\2\2\u0302\u0303\7u\2\2\u0303\u00ad"+ + "\3\2\2\2\u0304\u0305\7e\2\2\u0305\u0306\7{\2\2\u0306\u0307\7e\2\2\u0307"+ + "\u0308\7n\2\2\u0308\u0309\7g\2\2\u0309\u030a\7u\2\2\u030a\u00af\3\2\2"+ + "\2\u030b\u030c\7#\2\2\u030c\u00b1\3\2\2\2\u030d\u030e\7u\2\2\u030e\u030f"+ + "\7k\2\2\u030f\u0310\7i\2\2\u0310\u0311\7p\2\2\u0311\u0312\7g\2\2\u0312"+ + "\u031c\7f\2\2\u0313\u0314\7w\2\2\u0314\u0315\7p\2\2\u0315\u0316\7u\2\2"+ + "\u0316\u0317\7k\2\2\u0317\u0318\7i\2\2\u0318\u0319\7p\2\2\u0319\u031a"+ + "\7g\2\2\u031a\u031c\7f\2\2\u031b\u030d\3\2\2\2\u031b\u0313\3\2\2\2\u031c"+ + "\u00b3\3\2\2\2\u031d\u031e\7d\2\2\u031e\u031f\7{\2\2\u031f\u0320\7v\2"+ + "\2\u0320\u0343\7g\2\2\u0321\u0322\7y\2\2\u0322\u0323\7q\2\2\u0323\u0324"+ + "\7t\2\2\u0324\u0343\7f\2\2\u0325\u0326\7f\2\2\u0326\u0327\7y\2\2\u0327"+ + "\u0328\7q\2\2\u0328\u0329\7t\2\2\u0329\u0343\7f\2\2\u032a\u032b\7d\2\2"+ + "\u032b\u032c\7q\2\2\u032c\u032d\7q\2\2\u032d\u0343\7n\2\2\u032e\u032f"+ + "\7e\2\2\u032f\u0330\7j\2\2\u0330\u0331\7c\2\2\u0331\u0343\7t\2\2\u0332"+ + "\u0333\7u\2\2\u0333\u0334\7j\2\2\u0334\u0335\7q\2\2\u0335\u0336\7t\2\2"+ + "\u0336\u0343\7v\2\2\u0337\u0338\7k\2\2\u0338\u0339\7p\2\2\u0339\u0343"+ + "\7v\2\2\u033a\u033b\7n\2\2\u033b\u033c\7q\2\2\u033c\u033d\7p\2\2\u033d"+ + "\u0343\7i\2\2\u033e\u033f\7x\2\2\u033f\u0340\7q\2\2\u0340\u0341\7k\2\2"+ + "\u0341\u0343\7f\2\2\u0342\u031d\3\2\2\2\u0342\u0321\3\2\2\2\u0342\u0325"+ + "\3\2\2\2\u0342\u032a\3\2\2\2\u0342\u032e\3\2\2\2\u0342\u0332\3\2\2\2\u0342"+ + "\u0337\3\2\2\2\u0342\u033a\3\2\2\2\u0342\u033e\3\2\2\2\u0343\u00b5\3\2"+ + "\2\2\u0344\u0345\7v\2\2\u0345\u0346\7t\2\2\u0346\u0347\7w\2\2\u0347\u034e"+ + "\7g\2\2\u0348\u0349\7h\2\2\u0349\u034a\7c\2\2\u034a\u034b\7n\2\2\u034b"+ + "\u034c\7u\2\2\u034c\u034e\7g\2\2\u034d\u0344\3\2\2\2\u034d\u0348\3\2\2"+ + "\2\u034e\u00b7\3\2\2\2\u034f\u0350\7}\2\2\u0350\u0351\7}\2\2\u0351\u0355"+ + "\3\2\2\2\u0352\u0354\13\2\2\2\u0353\u0352\3\2\2\2\u0354\u0357\3\2\2\2"+ + "\u0355\u0356\3\2\2\2\u0355\u0353\3\2\2\2\u0356\u0358\3\2\2\2\u0357\u0355"+ + "\3\2\2\2\u0358\u0359\7\177\2\2\u0359\u035a\7\177\2\2\u035a\u00b9\3\2\2"+ + "\2\u035b\u0361\7$\2\2\u035c\u035d\7^\2\2\u035d\u0360\7$\2\2\u035e\u0360"+ + "\n\2\2\2\u035f\u035c\3\2\2\2\u035f\u035e\3\2\2\2\u0360\u0363\3\2\2\2\u0361"+ + "\u035f\3\2\2\2\u0361\u0362\3\2\2\2\u0362\u0364\3\2\2\2\u0363\u0361\3\2"+ + "\2\2\u0364\u0366\7$\2\2\u0365\u0367\t\3\2\2\u0366\u0365\3\2\2\2\u0366"+ + "\u0367\3\2\2\2\u0367\u036c\3\2\2\2\u0368\u036a\t\4\2\2\u0369\u036b\t\5"+ + "\2\2\u036a\u0369\3\2\2\2\u036a\u036b\3\2\2\2\u036b\u036d\3\2\2\2\u036c"+ + "\u0368\3\2\2\2\u036c\u036d\3\2\2\2\u036d\u036f\3\2\2\2\u036e\u0370\t\3"+ + "\2\2\u036f\u036e\3\2\2\2\u036f\u0370\3\2\2\2\u0370\u0371\3\2\2\2\u0371"+ + "\u0372\b]\5\2\u0372\u00bb\3\2\2\2\u0373\u0377\7)\2\2\u0374\u0375\7^\2"+ + "\2\u0375\u0378\t\6\2\2\u0376\u0378\n\7\2\2\u0377\u0374\3\2\2\2\u0377\u0376"+ + "\3\2\2\2\u0378\u0379\3\2\2\2\u0379\u037a\7)\2\2\u037a\u00bd\3\2\2\2\u037b"+ + "\u037c\7%\2\2\u037c\u037d\7f\2\2\u037d\u037e\7g\2\2\u037e\u037f\7h\2\2"+ + "\u037f\u0380\7k\2\2\u0380\u0381\7p\2\2\u0381\u0382\7g\2\2\u0382\u00bf"+ + "\3\2\2\2\u0383\u0384\7^\2\2\u0384\u0385\7\f\2\2\u0385\u00c1\3\2\2\2\u0386"+ + "\u0387\7%\2\2\u0387\u0388\7w\2\2\u0388\u0389\7p\2\2\u0389\u038a\7f\2\2"+ + "\u038a\u038b\7g\2\2\u038b\u038c\7h\2\2\u038c\u00c3\3\2\2\2\u038d\u0390"+ + "\5\u00c6c\2\u038e\u0390\5\u00ceg\2\u038f\u038d\3\2\2\2\u038f\u038e\3\2"+ + "\2\2\u0390\u00c5\3\2\2\2\u0391\u0395\5\u00c8d\2\u0392\u0395\5\u00cae\2"+ + "\u0393\u0395\5\u00ccf\2\u0394\u0391\3\2\2\2\u0394\u0392\3\2\2\2\u0394"+ + "\u0393\3\2\2\2\u0395\u00c7\3\2\2\2\u0396\u039c\7\'\2\2\u0397\u0398\7\62"+ + "\2\2\u0398\u039c\7d\2\2\u0399\u039a\7\62\2\2\u039a\u039c\7D\2\2\u039b"+ + "\u0396\3\2\2\2\u039b\u0397\3\2\2\2\u039b\u0399\3\2\2\2\u039c\u03a0\3\2"+ + "\2\2\u039d\u039f\5\u00d6k\2\u039e\u039d\3\2\2\2\u039f\u03a2\3\2\2\2\u03a0"+ + "\u039e\3\2\2\2\u03a0\u03a1\3\2\2\2\u03a1\u03a3\3\2\2\2\u03a2\u03a0\3\2"+ + "\2\2\u03a3\u03a5\7\60\2\2\u03a4\u03a6\5\u00d6k\2\u03a5\u03a4\3\2\2\2\u03a6"+ + "\u03a7\3\2\2\2\u03a7\u03a5\3\2\2\2\u03a7\u03a8\3\2\2\2\u03a8\u00c9\3\2"+ + "\2\2\u03a9\u03ab\5\u00d8l\2\u03aa\u03a9\3\2\2\2\u03ab\u03ae\3\2\2\2\u03ac"+ + "\u03aa\3\2\2\2\u03ac\u03ad\3\2\2\2\u03ad\u03af\3\2\2\2\u03ae\u03ac\3\2"+ + "\2\2\u03af\u03b1\7\60\2\2\u03b0\u03b2\5\u00d8l\2\u03b1\u03b0\3\2\2\2\u03b2"+ + "\u03b3\3\2\2\2\u03b3\u03b1\3\2\2\2\u03b3\u03b4\3\2\2\2\u03b4\u00cb\3\2"+ + "\2\2\u03b5\u03bb\7&\2\2\u03b6\u03b7\7\62\2\2\u03b7\u03bb\7z\2\2\u03b8"+ + "\u03b9\7\62\2\2\u03b9\u03bb\7Z\2\2\u03ba\u03b5\3\2\2\2\u03ba\u03b6\3\2"+ + "\2\2\u03ba\u03b8\3\2\2\2\u03bb\u03bf\3\2\2\2\u03bc\u03be\5\u00dam\2\u03bd"+ + "\u03bc\3\2\2\2\u03be\u03c1\3\2\2\2\u03bf\u03bd\3\2\2\2\u03bf\u03c0\3\2"+ + "\2\2\u03c0\u03c2\3\2\2\2\u03c1\u03bf\3\2\2\2\u03c2\u03c4\7\60\2\2\u03c3"+ + "\u03c5\5\u00dam\2\u03c4\u03c3\3\2\2\2\u03c5\u03c6\3\2\2\2\u03c6\u03c4"+ + "\3\2\2\2\u03c6\u03c7\3\2\2\2\u03c7\u00cd\3\2\2\2\u03c8\u03cc\5\u00d2i"+ + "\2\u03c9\u03cc\5\u00d4j\2\u03ca\u03cc\5\u00d0h\2\u03cb\u03c8\3\2\2\2\u03cb"+ + "\u03c9\3\2\2\2\u03cb\u03ca\3\2\2\2\u03cc\u03d0\3\2\2\2\u03cd\u03ce\t\b"+ + "\2\2\u03ce\u03d1\t\t\2\2\u03cf\u03d1\7n\2\2\u03d0\u03cd\3\2\2\2\u03d0"+ + "\u03cf\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u00cf\3\2\2\2\u03d2\u03d3\7\62"+ + "\2\2\u03d3\u03d5\t\n\2\2\u03d4\u03d6\5\u00d6k\2\u03d5\u03d4\3\2\2\2\u03d6"+ + "\u03d7\3\2\2\2\u03d7\u03d5\3\2\2\2\u03d7\u03d8\3\2\2\2\u03d8\u03e0\3\2"+ + "\2\2\u03d9\u03db\7\'\2\2\u03da\u03dc\5\u00d6k\2\u03db\u03da\3\2\2\2\u03dc"+ + "\u03dd\3\2\2\2\u03dd\u03db\3\2\2\2\u03dd\u03de\3\2\2\2\u03de\u03e0\3\2"+ + "\2\2\u03df\u03d2\3\2\2\2\u03df\u03d9\3\2\2\2\u03e0\u00d1\3\2\2\2\u03e1"+ + "\u03e3\5\u00d8l\2\u03e2\u03e1\3\2\2\2\u03e3\u03e4\3\2\2\2\u03e4\u03e2"+ + "\3\2\2\2\u03e4\u03e5\3\2\2\2\u03e5\u00d3\3\2\2\2\u03e6\u03ec\7&\2\2\u03e7"+ + "\u03e8\7\62\2\2\u03e8\u03ec\7z\2\2\u03e9\u03ea\7\62\2\2\u03ea\u03ec\7"+ + "Z\2\2\u03eb\u03e6\3\2\2\2\u03eb\u03e7\3\2\2\2\u03eb\u03e9\3\2\2\2\u03ec"+ + "\u03ee\3\2\2\2\u03ed\u03ef\5\u00dam\2\u03ee\u03ed\3\2\2\2\u03ef\u03f0"+ + "\3\2\2\2\u03f0\u03ee\3\2\2\2\u03f0\u03f1\3\2\2\2\u03f1\u00d5\3\2\2\2\u03f2"+ + "\u03f3\t\13\2\2\u03f3\u00d7\3\2\2\2\u03f4\u03f5\t\f\2\2\u03f5\u00d9\3"+ + "\2\2\2\u03f6\u03f7\t\r\2\2\u03f7\u00db\3\2\2\2\u03f8\u03fc\5\u00deo\2"+ + "\u03f9\u03fb\5\u00e0p\2\u03fa\u03f9\3\2\2\2\u03fb\u03fe\3\2\2\2\u03fc"+ + "\u03fa\3\2\2\2\u03fc\u03fd\3\2\2\2\u03fd\u03ff\3\2\2\2\u03fe\u03fc\3\2"+ + "\2\2\u03ff\u0400\bn\6\2\u0400\u00dd\3\2\2\2\u0401\u0402\t\16\2\2\u0402"+ + "\u00df\3\2\2\2\u0403\u0404\t\17\2\2\u0404\u00e1\3\2\2\2\u0405\u0407\t"+ + "\20\2\2\u0406\u0405\3\2\2\2\u0407\u0408\3\2\2\2\u0408\u0406\3\2\2\2\u0408"+ + "\u0409\3\2\2\2\u0409\u040a\3\2\2\2\u040a\u040b\bq\7\2\u040b\u00e3\3\2"+ + "\2\2\u040c\u040d\7\61\2\2\u040d\u040e\7\61\2\2\u040e\u0412\3\2\2\2\u040f"+ + "\u0411\n\21\2\2\u0410\u040f\3\2\2\2\u0411\u0414\3\2\2\2\u0412\u0410\3"+ + "\2\2\2\u0412\u0413\3\2\2\2\u0413\u0415\3\2\2\2\u0414\u0412\3\2\2\2\u0415"+ + "\u0416\br\b\2\u0416\u00e5\3\2\2\2\u0417\u0418\7\61\2\2\u0418\u0419\7,"+ + "\2\2\u0419\u041d\3\2\2\2\u041a\u041c\13\2\2\2\u041b\u041a\3\2\2\2\u041c"+ + "\u041f\3\2\2\2\u041d\u041e\3\2\2\2\u041d\u041b\3\2\2\2\u041e\u0420\3\2"+ + "\2\2\u041f\u041d\3\2\2\2\u0420\u0421\7,\2\2\u0421\u0422\7\61\2\2\u0422"+ + "\u0423\3\2\2\2\u0423\u0424\bs\b\2\u0424\u00e7\3\2\2\2\u0425\u0426\7\60"+ + "\2\2\u0426\u0427\7d\2\2\u0427\u0428\7{\2\2\u0428\u0429\7v\2\2\u0429\u042a"+ + "\7g\2\2\u042a\u00e9\3\2\2\2\u042b\u042c\7d\2\2\u042c\u042d\7t\2\2\u042d"+ + "\u050a\7m\2\2\u042e\u042f\7q\2\2\u042f\u0430\7t\2\2\u0430\u050a\7c\2\2"+ + "\u0431\u0432\7m\2\2\u0432\u0433\7k\2\2\u0433\u050a\7n\2\2\u0434\u0435"+ + "\7u\2\2\u0435\u0436\7n\2\2\u0436\u050a\7q\2\2\u0437\u0438\7p\2\2\u0438"+ + "\u0439\7q\2\2\u0439\u050a\7r\2\2\u043a\u043b\7c\2\2\u043b\u043c\7u\2\2"+ + "\u043c\u050a\7n\2\2\u043d\u043e\7r\2\2\u043e\u043f\7j\2\2\u043f\u050a"+ + "\7r\2\2\u0440\u0441\7c\2\2\u0441\u0442\7p\2\2\u0442\u050a\7e\2\2\u0443"+ + "\u0444\7d\2\2\u0444\u0445\7r\2\2\u0445\u050a\7n\2\2\u0446\u0447\7e\2\2"+ + "\u0447\u0448\7n\2\2\u0448\u050a\7e\2\2\u0449\u044a\7l\2\2\u044a\u044b"+ + "\7u\2\2\u044b\u050a\7t\2\2\u044c\u044d\7c\2\2\u044d\u044e\7p\2\2\u044e"+ + "\u050a\7f\2\2\u044f\u0450\7t\2\2\u0450\u0451\7n\2\2\u0451\u050a\7c\2\2"+ + "\u0452\u0453\7d\2\2\u0453\u0454\7k\2\2\u0454\u050a\7v\2\2\u0455\u0456"+ + "\7t\2\2\u0456\u0457\7q\2\2\u0457\u050a\7n\2\2\u0458\u0459\7r\2\2\u0459"+ + "\u045a\7n\2\2\u045a\u050a\7c\2\2\u045b\u045c\7r\2\2\u045c\u045d\7n\2\2"+ + "\u045d\u050a\7r\2\2\u045e\u045f\7d\2\2\u045f\u0460\7o\2\2\u0460\u050a"+ + "\7k\2\2\u0461\u0462\7u\2\2\u0462\u0463\7g\2\2\u0463\u050a\7e\2\2\u0464"+ + "\u0465\7t\2\2\u0465\u0466\7v\2\2\u0466\u050a\7k\2\2\u0467\u0468\7g\2\2"+ + "\u0468\u0469\7q\2\2\u0469\u050a\7t\2\2\u046a\u046b\7u\2\2\u046b\u046c"+ + "\7t\2\2\u046c\u050a\7g\2\2\u046d\u046e\7n\2\2\u046e\u046f\7u\2\2\u046f"+ + "\u050a\7t\2\2\u0470\u0471\7r\2\2\u0471\u0472\7j\2\2\u0472\u050a\7c\2\2"+ + "\u0473\u0474\7c\2\2\u0474\u0475\7n\2\2\u0475\u050a\7t\2\2\u0476\u0477"+ + "\7l\2\2\u0477\u0478\7o\2\2\u0478\u050a\7r\2\2\u0479\u047a\7d\2\2\u047a"+ + "\u047b\7x\2\2\u047b\u050a\7e\2\2\u047c\u047d\7e\2\2\u047d\u047e\7n\2\2"+ + "\u047e\u050a\7k\2\2\u047f\u0480\7t\2\2\u0480\u0481\7v\2\2\u0481\u050a"+ + "\7u\2\2\u0482\u0483\7c\2\2\u0483\u0484\7f\2\2\u0484\u050a\7e\2\2\u0485"+ + "\u0486\7t\2\2\u0486\u0487\7t\2\2\u0487\u050a\7c\2\2\u0488\u0489\7d\2\2"+ + "\u0489\u048a\7x\2\2\u048a\u050a\7u\2\2\u048b\u048c\7u\2\2\u048c\u048d"+ + "\7g\2\2\u048d\u050a\7k\2\2\u048e\u048f\7u\2\2\u048f\u0490\7c\2\2\u0490"+ + "\u050a\7z\2\2\u0491\u0492\7u\2\2\u0492\u0493\7v\2\2\u0493\u050a\7{\2\2"+ + "\u0494\u0495\7u\2\2\u0495\u0496\7v\2\2\u0496\u050a\7c\2\2\u0497\u0498"+ + "\7u\2\2\u0498\u0499\7v\2\2\u0499\u050a\7z\2\2\u049a\u049b\7f\2\2\u049b"+ + "\u049c\7g\2\2\u049c\u050a\7{\2\2\u049d\u049e\7v\2\2\u049e\u049f\7z\2\2"+ + "\u049f\u050a\7c\2\2\u04a0\u04a1\7z\2\2\u04a1\u04a2\7c\2\2\u04a2\u050a"+ + "\7c\2\2\u04a3\u04a4\7d\2\2\u04a4\u04a5\7e\2\2\u04a5\u050a\7e\2\2\u04a6"+ + "\u04a7\7c\2\2\u04a7\u04a8\7j\2\2\u04a8\u050a\7z\2\2\u04a9\u04aa\7v\2\2"+ + "\u04aa\u04ab\7{\2\2\u04ab\u050a\7c\2\2\u04ac\u04ad\7v\2\2\u04ad\u04ae"+ + "\7z\2\2\u04ae\u050a\7u\2\2\u04af\u04b0\7v\2\2\u04b0\u04b1\7c\2\2\u04b1"+ + "\u050a\7u\2\2\u04b2\u04b3\7u\2\2\u04b3\u04b4\7j\2\2\u04b4\u050a\7{\2\2"+ + "\u04b5\u04b6\7u\2\2\u04b6\u04b7\7j\2\2\u04b7\u050a\7z\2\2\u04b8\u04b9"+ + "\7n\2\2\u04b9\u04ba\7f\2\2\u04ba\u050a\7{\2\2\u04bb\u04bc\7n\2\2\u04bc"+ + "\u04bd\7f\2\2\u04bd\u050a\7c\2\2\u04be\u04bf\7n\2\2\u04bf\u04c0\7f\2\2"+ + "\u04c0\u050a\7z\2\2\u04c1\u04c2\7n\2\2\u04c2\u04c3\7c\2\2\u04c3\u050a"+ + "\7z\2\2\u04c4\u04c5\7v\2\2\u04c5\u04c6\7c\2\2\u04c6\u050a\7{\2\2\u04c7"+ + "\u04c8\7v\2\2\u04c8\u04c9\7c\2\2\u04c9\u050a\7z\2\2\u04ca\u04cb\7d\2\2"+ + "\u04cb\u04cc\7e\2\2\u04cc\u050a\7u\2\2\u04cd\u04ce\7e\2\2\u04ce\u04cf"+ + "\7n\2\2\u04cf\u050a\7x\2\2\u04d0\u04d1\7v\2\2\u04d1\u04d2\7u\2\2\u04d2"+ + "\u050a\7z\2\2\u04d3\u04d4\7n\2\2\u04d4\u04d5\7c\2\2\u04d5\u050a\7u\2\2"+ + "\u04d6\u04d7\7e\2\2\u04d7\u04d8\7r\2\2\u04d8\u050a\7{\2\2\u04d9\u04da"+ + "\7e\2\2\u04da\u04db\7o\2\2\u04db\u050a\7r\2\2\u04dc\u04dd\7e\2\2\u04dd"+ + "\u04de\7r\2\2\u04de\u050a\7z\2\2\u04df\u04e0\7f\2\2\u04e0\u04e1\7e\2\2"+ + "\u04e1\u050a\7r\2\2\u04e2\u04e3\7f\2\2\u04e3\u04e4\7g\2\2\u04e4\u050a"+ + "\7e\2\2\u04e5\u04e6\7k\2\2\u04e6\u04e7\7p\2\2\u04e7\u050a\7e\2\2\u04e8"+ + "\u04e9\7c\2\2\u04e9\u04ea\7z\2\2\u04ea\u050a\7u\2\2\u04eb\u04ec\7d\2\2"+ + "\u04ec\u04ed\7p\2\2\u04ed\u050a\7g\2\2\u04ee\u04ef\7e\2\2\u04ef\u04f0"+ + "\7n\2\2\u04f0\u050a\7f\2\2\u04f1\u04f2\7u\2\2\u04f2\u04f3\7d\2\2\u04f3"+ + "\u050a\7e\2\2\u04f4\u04f5\7k\2\2\u04f5\u04f6\7u\2\2\u04f6\u050a\7e\2\2"+ + "\u04f7\u04f8\7k\2\2\u04f8\u04f9\7p\2\2\u04f9\u050a\7z\2\2\u04fa\u04fb"+ + "\7d\2\2\u04fb\u04fc\7g\2\2\u04fc\u050a\7s\2\2\u04fd\u04fe\7u\2\2\u04fe"+ + "\u04ff\7g\2\2\u04ff\u050a\7f\2\2\u0500\u0501\7f\2\2\u0501\u0502\7g\2\2"+ + "\u0502\u050a\7z\2\2\u0503\u0504\7k\2\2\u0504\u0505\7p\2\2\u0505\u050a"+ + "\7{\2\2\u0506\u0507\7t\2\2\u0507\u0508\7q\2\2\u0508\u050a\7t\2\2\u0509"+ + "\u042b\3\2\2\2\u0509\u042e\3\2\2\2\u0509\u0431\3\2\2\2\u0509\u0434\3\2"+ + "\2\2\u0509\u0437\3\2\2\2\u0509\u043a\3\2\2\2\u0509\u043d\3\2\2\2\u0509"+ + "\u0440\3\2\2\2\u0509\u0443\3\2\2\2\u0509\u0446\3\2\2\2\u0509\u0449\3\2"+ + "\2\2\u0509\u044c\3\2\2\2\u0509\u044f\3\2\2\2\u0509\u0452\3\2\2\2\u0509"+ + "\u0455\3\2\2\2\u0509\u0458\3\2\2\2\u0509\u045b\3\2\2\2\u0509\u045e\3\2"+ + "\2\2\u0509\u0461\3\2\2\2\u0509\u0464\3\2\2\2\u0509\u0467\3\2\2\2\u0509"+ + "\u046a\3\2\2\2\u0509\u046d\3\2\2\2\u0509\u0470\3\2\2\2\u0509\u0473\3\2"+ + "\2\2\u0509\u0476\3\2\2\2\u0509\u0479\3\2\2\2\u0509\u047c\3\2\2\2\u0509"+ + "\u047f\3\2\2\2\u0509\u0482\3\2\2\2\u0509\u0485\3\2\2\2\u0509\u0488\3\2"+ + "\2\2\u0509\u048b\3\2\2\2\u0509\u048e\3\2\2\2\u0509\u0491\3\2\2\2\u0509"+ + "\u0494\3\2\2\2\u0509\u0497\3\2\2\2\u0509\u049a\3\2\2\2\u0509\u049d\3\2"+ + "\2\2\u0509\u04a0\3\2\2\2\u0509\u04a3\3\2\2\2\u0509\u04a6\3\2\2\2\u0509"+ + "\u04a9\3\2\2\2\u0509\u04ac\3\2\2\2\u0509\u04af\3\2\2\2\u0509\u04b2\3\2"+ + "\2\2\u0509\u04b5\3\2\2\2\u0509\u04b8\3\2\2\2\u0509\u04bb\3\2\2\2\u0509"+ + "\u04be\3\2\2\2\u0509\u04c1\3\2\2\2\u0509\u04c4\3\2\2\2\u0509\u04c7\3\2"+ + "\2\2\u0509\u04ca\3\2\2\2\u0509\u04cd\3\2\2\2\u0509\u04d0\3\2\2\2\u0509"+ + "\u04d3\3\2\2\2\u0509\u04d6\3\2\2\2\u0509\u04d9\3\2\2\2\u0509\u04dc\3\2"+ + "\2\2\u0509\u04df\3\2\2\2\u0509\u04e2\3\2\2\2\u0509\u04e5\3\2\2\2\u0509"+ + "\u04e8\3\2\2\2\u0509\u04eb\3\2\2\2\u0509\u04ee\3\2\2\2\u0509\u04f1\3\2"+ + "\2\2\u0509\u04f4\3\2\2\2\u0509\u04f7\3\2\2\2\u0509\u04fa\3\2\2\2\u0509"+ + "\u04fd\3\2\2\2\u0509\u0500\3\2\2\2\u0509\u0503\3\2\2\2\u0509\u0506\3\2"+ + "\2\2\u050a\u00eb\3\2\2\2\u050b\u050c\7%\2\2\u050c\u00ed\3\2\2\2\u050d"+ + "\u050e\7<\2\2\u050e\u00ef\3\2\2\2\u050f\u0510\7.\2\2\u0510\u00f1\3\2\2"+ + "\2\u0511\u0512\7*\2\2\u0512\u00f3\3\2\2\2\u0513\u0514\7+\2\2\u0514\u00f5"+ + "\3\2\2\2\u0515\u0516\7]\2\2\u0516\u00f7\3\2\2\2\u0517\u0518\7_\2\2\u0518"+ + "\u00f9\3\2\2\2\u0519\u051a\7\60\2\2\u051a\u00fb\3\2\2\2\u051b\u051c\7"+ + ">\2\2\u051c\u051d\7>\2\2\u051d\u00fd\3\2\2\2\u051e\u051f\7@\2\2\u051f"+ + "\u0520\7@\2\2\u0520\u00ff\3\2\2\2\u0521\u0522\7-\2\2\u0522\u0101\3\2\2"+ + "\2\u0523\u0524\7/\2\2\u0524\u0103\3\2\2\2\u0525\u0526\7>\2\2\u0526\u0105"+ + "\3\2\2\2\u0527\u0528\7@\2\2\u0528\u0107\3\2\2\2\u0529\u052a\7,\2\2\u052a"+ + "\u0109\3\2\2\2\u052b\u052c\7\61\2\2\u052c\u010b\3\2\2\2\u052d\u052e\7"+ + "}\2\2\u052e\u052f\b\u0086\t\2\u052f\u010d\3\2\2\2\u0530\u0531\7\177\2"+ + "\2\u0531\u0532\b\u0087\n\2\u0532\u010f\3\2\2\2\u0533\u0536\5\u0112\u0089"+ + "\2\u0534\u0536\5\u011a\u008d\2\u0535\u0533\3\2\2\2\u0535\u0534\3\2\2\2"+ + "\u0536\u0111\3\2\2\2\u0537\u053b\5\u0114\u008a\2\u0538\u053b\5\u0116\u008b"+ + "\2\u0539\u053b\5\u0118\u008c\2\u053a\u0537\3\2\2\2\u053a\u0538\3\2\2\2"+ + "\u053a\u0539\3\2\2\2\u053b\u0113\3\2\2\2\u053c\u0540\7\'\2\2\u053d\u053f"+ + "\5\u0122\u0091\2\u053e\u053d\3\2\2\2\u053f\u0542\3\2\2\2\u0540\u053e\3"+ + "\2\2\2\u0540\u0541\3\2\2\2\u0541\u0543\3\2\2\2\u0542\u0540\3\2\2\2\u0543"+ + "\u0545\7\60\2\2\u0544\u0546\5\u0122\u0091\2\u0545\u0544\3\2\2\2\u0546"+ + "\u0547\3\2\2\2\u0547\u0545\3\2\2\2\u0547\u0548\3\2\2\2\u0548\u0115\3\2"+ + "\2\2\u0549\u054b\5\u0124\u0092\2\u054a\u0549\3\2\2\2\u054b\u054e\3\2\2"+ + "\2\u054c\u054a\3\2\2\2\u054c\u054d\3\2\2\2\u054d\u054f\3\2\2\2\u054e\u054c"+ + "\3\2\2\2\u054f\u0551\7\60\2\2\u0550\u0552\5\u0124\u0092\2\u0551\u0550"+ + "\3\2\2\2\u0552\u0553\3\2\2\2\u0553\u0551\3\2\2\2\u0553\u0554\3\2\2\2\u0554"+ + "\u0117\3\2\2\2\u0555\u0559\7&\2\2\u0556\u0558\5\u0126\u0093\2\u0557\u0556"+ + "\3\2\2\2\u0558\u055b\3\2\2\2\u0559\u0557\3\2\2\2\u0559\u055a\3\2\2\2\u055a"+ + "\u055c\3\2\2\2\u055b\u0559\3\2\2\2\u055c\u055e\7\60\2\2\u055d\u055f\5"+ + "\u0126\u0093\2\u055e\u055d\3\2\2\2\u055f\u0560\3\2\2\2\u0560\u055e\3\2"+ + "\2\2\u0560\u0561\3\2\2\2\u0561\u0119\3\2\2\2\u0562\u0566\5\u011e\u008f"+ + "\2\u0563\u0566\5\u0120\u0090\2\u0564\u0566\5\u011c\u008e\2\u0565\u0562"+ + "\3\2\2\2\u0565\u0563\3\2\2\2\u0565\u0564\3\2\2\2\u0566\u011b\3\2\2\2\u0567"+ + "\u0569\7\'\2\2\u0568\u056a\5\u0122\u0091\2\u0569\u0568\3\2\2\2\u056a\u056b"+ + "\3\2\2\2\u056b\u0569\3\2\2\2\u056b\u056c\3\2\2\2\u056c\u011d\3\2\2\2\u056d"+ + "\u056f\5\u0124\u0092\2\u056e\u056d\3\2\2\2\u056f\u0570\3\2\2\2\u0570\u056e"+ + "\3\2\2\2\u0570\u0571\3\2\2\2\u0571\u011f\3\2\2\2\u0572\u0574\7&\2\2\u0573"+ + "\u0575\5\u0126\u0093\2\u0574\u0573\3\2\2\2\u0575\u0576\3\2\2\2\u0576\u0574"+ + "\3\2\2\2\u0576\u0577\3\2\2\2\u0577\u0121\3\2\2\2\u0578\u0579\t\13\2\2"+ + "\u0579\u0123\3\2\2\2\u057a\u057b\t\f\2\2\u057b\u0125\3\2\2\2\u057c\u057d"+ + "\t\r\2\2\u057d\u0127\3\2\2\2\u057e\u0582\7)\2\2\u057f\u0580\7^\2\2\u0580"+ + "\u0583\t\6\2\2\u0581\u0583\n\7\2\2\u0582\u057f\3\2\2\2\u0582\u0581\3\2"+ + "\2\2\u0583\u0584\3\2\2\2\u0584\u0585\7)\2\2\u0585\u0129\3\2\2\2\u0586"+ + "\u0588\5\u012c\u0096\2\u0587\u0589\t\22\2\2\u0588\u0587\3\2\2\2\u0589"+ + "\u058a\3\2\2\2\u058a\u0588\3\2\2\2\u058a\u058b\3\2\2\2\u058b\u012b\3\2"+ + "\2\2\u058c\u0590\7#\2\2\u058d\u058f\5\u0132\u0099\2\u058e\u058d\3\2\2"+ + "\2\u058f\u0592\3\2\2\2\u0590\u058e\3\2\2\2\u0590\u0591\3\2\2\2\u0591\u012d"+ + "\3\2\2\2\u0592\u0590\3\2\2\2\u0593\u0597\5\u0130\u0098\2\u0594\u0596\5"+ + "\u0132\u0099\2\u0595\u0594\3\2\2\2\u0596\u0599\3\2\2\2\u0597\u0595\3\2"+ + "\2\2\u0597\u0598\3\2\2\2\u0598\u012f\3\2\2\2\u0599\u0597\3\2\2\2\u059a"+ + "\u059b\t\16\2\2\u059b\u0131\3\2\2\2\u059c\u059d\t\17\2\2\u059d\u0133\3"+ + "\2\2\2\u059e\u05a0\t\20\2\2\u059f\u059e\3\2\2\2\u05a0\u05a1\3\2\2\2\u05a1"+ + "\u059f\3\2\2\2\u05a1\u05a2\3\2\2\2\u05a2\u05a3\3\2\2\2\u05a3\u05a4\b\u009a"+ + "\7\2\u05a4\u0135\3\2\2\2\u05a5\u05a6\7\61\2\2\u05a6\u05a7\7\61\2\2\u05a7"+ + "\u05ab\3\2\2\2\u05a8\u05aa\n\21\2\2\u05a9\u05a8\3\2\2\2\u05aa\u05ad\3"+ + "\2\2\2\u05ab\u05a9\3\2\2\2\u05ab\u05ac\3\2\2\2\u05ac\u05ae\3\2\2\2\u05ad"+ + "\u05ab\3\2\2\2\u05ae\u05af\b\u009b\b\2\u05af\u0137\3\2\2\2\u05b0\u05b1"+ + "\7\61\2\2\u05b1\u05b2\7,\2\2\u05b2\u05b6\3\2\2\2\u05b3\u05b5\13\2\2\2"+ + "\u05b4\u05b3\3\2\2\2\u05b5\u05b8\3\2\2\2\u05b6\u05b7\3\2\2\2\u05b6\u05b4"+ + "\3\2\2\2\u05b7\u05b9\3\2\2\2\u05b8\u05b6\3\2\2\2\u05b9\u05ba\7,\2\2\u05ba"+ + "\u05bb\7\61\2\2\u05bb\u05bc\3\2\2\2\u05bc\u05bd\b\u009c\b\2\u05bd\u0139"+ + "\3\2\2\2;\2\3\u01a3\u0274\u031b\u0342\u034d\u0355\u035f\u0361\u0366\u036a"+ + "\u036c\u036f\u0377\u038f\u0394\u039b\u03a0\u03a7\u03ac\u03b3\u03ba\u03bf"+ + "\u03c6\u03cb\u03d0\u03d7\u03dd\u03df\u03e4\u03eb\u03f0\u03fc\u0408\u0412"+ + "\u041d\u0509\u0535\u053a\u0540\u0547\u054c\u0553\u0559\u0560\u0565\u056b"+ + "\u0570\u0576\u0582\u058a\u0590\u0597\u05a1\u05ab\u05b6\13\3\2\2\3&\3\3"+ + "K\4\3]\5\3n\6\2\3\2\2\4\2\3\u0086\7\3\u0087\b"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens index e6d413ab2..38bd3cb13 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -94,55 +94,56 @@ STRING=93 CHAR=94 DEFINE=95 DEFINE_CONTINUE=96 -NUMBER=97 -NUMFLOAT=98 -BINFLOAT=99 -DECFLOAT=100 -HEXFLOAT=101 -NUMINT=102 -BININTEGER=103 -DECINTEGER=104 -HEXINTEGER=105 -NAME=106 -WS=107 -COMMENT_LINE=108 -COMMENT_BLOCK=109 -ASM_BYTE=110 -ASM_MNEMONIC=111 -ASM_IMM=112 -ASM_COLON=113 -ASM_COMMA=114 -ASM_PAR_BEGIN=115 -ASM_PAR_END=116 -ASM_BRACKET_BEGIN=117 -ASM_BRACKET_END=118 -ASM_DOT=119 -ASM_SHIFT_LEFT=120 -ASM_SHIFT_RIGHT=121 -ASM_PLUS=122 -ASM_MINUS=123 -ASM_LESS_THAN=124 -ASM_GREATER_THAN=125 -ASM_MULTIPLY=126 -ASM_DIVIDE=127 -ASM_CURLY_BEGIN=128 -ASM_CURLY_END=129 -ASM_NUMBER=130 -ASM_NUMFLOAT=131 -ASM_BINFLOAT=132 -ASM_DECFLOAT=133 -ASM_HEXFLOAT=134 -ASM_NUMINT=135 -ASM_BININTEGER=136 -ASM_DECINTEGER=137 -ASM_HEXINTEGER=138 -ASM_CHAR=139 -ASM_MULTI_REL=140 -ASM_MULTI_NAME=141 -ASM_NAME=142 -ASM_WS=143 -ASM_COMMENT_LINE=144 -ASM_COMMENT_BLOCK=145 +UNDEF=97 +NUMBER=98 +NUMFLOAT=99 +BINFLOAT=100 +DECFLOAT=101 +HEXFLOAT=102 +NUMINT=103 +BININTEGER=104 +DECINTEGER=105 +HEXINTEGER=106 +NAME=107 +WS=108 +COMMENT_LINE=109 +COMMENT_BLOCK=110 +ASM_BYTE=111 +ASM_MNEMONIC=112 +ASM_IMM=113 +ASM_COLON=114 +ASM_COMMA=115 +ASM_PAR_BEGIN=116 +ASM_PAR_END=117 +ASM_BRACKET_BEGIN=118 +ASM_BRACKET_END=119 +ASM_DOT=120 +ASM_SHIFT_LEFT=121 +ASM_SHIFT_RIGHT=122 +ASM_PLUS=123 +ASM_MINUS=124 +ASM_LESS_THAN=125 +ASM_GREATER_THAN=126 +ASM_MULTIPLY=127 +ASM_DIVIDE=128 +ASM_CURLY_BEGIN=129 +ASM_CURLY_END=130 +ASM_NUMBER=131 +ASM_NUMFLOAT=132 +ASM_BINFLOAT=133 +ASM_DECFLOAT=134 +ASM_HEXFLOAT=135 +ASM_NUMINT=136 +ASM_BININTEGER=137 +ASM_DECINTEGER=138 +ASM_HEXINTEGER=139 +ASM_CHAR=140 +ASM_MULTI_REL=141 +ASM_MULTI_NAME=142 +ASM_NAME=143 +ASM_WS=144 +ASM_COMMENT_LINE=145 +ASM_COMMENT_BLOCK=146 ';'=8 '..'=11 '?'=12 @@ -213,5 +214,6 @@ ASM_COMMENT_BLOCK=145 '!'=88 '#define'=95 '\\\n'=96 -'.byte'=110 -'#'=112 +'#undef'=97 +'.byte'=111 +'#'=113 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp index 2957e83bd..36bc59fac 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp @@ -96,6 +96,7 @@ null null '#define' '\\\n' +'#undef' null null null @@ -244,6 +245,7 @@ STRING CHAR DEFINE DEFINE_CONTINUE +UNDEF NUMBER NUMFLOAT BINFLOAT @@ -344,4 +346,4 @@ asmExpr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 147, 872, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 102, 10, 4, 12, 4, 14, 4, 105, 11, 4, 3, 5, 3, 5, 5, 5, 109, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 129, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 136, 10, 9, 12, 9, 14, 9, 139, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 146, 10, 9, 12, 9, 14, 9, 149, 11, 9, 3, 9, 7, 9, 152, 10, 9, 12, 9, 14, 9, 155, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 160, 10, 10, 12, 10, 14, 10, 163, 11, 10, 3, 10, 3, 10, 7, 10, 167, 10, 10, 12, 10, 14, 10, 170, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 176, 10, 11, 12, 11, 14, 11, 179, 11, 11, 3, 11, 3, 11, 5, 11, 183, 10, 11, 3, 11, 3, 11, 7, 11, 187, 10, 11, 12, 11, 14, 11, 190, 11, 11, 3, 11, 3, 11, 5, 11, 194, 10, 11, 3, 12, 7, 12, 197, 10, 12, 12, 12, 14, 12, 200, 11, 12, 3, 12, 3, 12, 7, 12, 204, 10, 12, 12, 12, 14, 12, 207, 11, 12, 3, 13, 3, 13, 7, 13, 211, 10, 13, 12, 13, 14, 13, 214, 11, 13, 3, 14, 3, 14, 5, 14, 218, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 230, 10, 15, 3, 15, 7, 15, 233, 10, 15, 12, 15, 14, 15, 236, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 246, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 253, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 258, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 264, 10, 16, 12, 16, 14, 16, 267, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 274, 10, 18, 3, 18, 3, 18, 6, 18, 278, 10, 18, 13, 18, 14, 18, 279, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 292, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 304, 10, 22, 12, 22, 14, 22, 307, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 312, 10, 23, 3, 24, 3, 24, 7, 24, 316, 10, 24, 12, 24, 14, 24, 319, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 324, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 329, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 336, 10, 25, 12, 25, 14, 25, 339, 11, 25, 3, 26, 3, 26, 7, 26, 343, 10, 26, 12, 26, 14, 26, 346, 11, 26, 3, 26, 3, 26, 3, 26, 5, 26, 351, 10, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 360, 10, 27, 12, 27, 14, 27, 363, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 421, 10, 27, 12, 27, 14, 27, 424, 11, 27, 3, 27, 5, 27, 427, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 438, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 457, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 464, 10, 28, 12, 28, 14, 28, 467, 11, 28, 3, 28, 3, 28, 5, 28, 471, 10, 28, 3, 29, 6, 29, 474, 10, 29, 13, 29, 14, 29, 475, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 483, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 496, 10, 30, 3, 30, 7, 30, 499, 10, 30, 12, 30, 14, 30, 502, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 511, 10, 30, 12, 30, 14, 30, 514, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 525, 10, 30, 12, 30, 14, 30, 528, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 546, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 555, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 562, 10, 30, 3, 31, 6, 31, 565, 10, 31, 13, 31, 14, 31, 566, 3, 31, 3, 31, 3, 31, 5, 31, 572, 10, 31, 5, 31, 574, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 580, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 587, 10, 33, 3, 33, 3, 33, 7, 33, 591, 10, 33, 12, 33, 14, 33, 594, 11, 33, 5, 33, 596, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 604, 10, 33, 3, 34, 5, 34, 607, 10, 34, 3, 34, 5, 34, 610, 10, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 618, 10, 35, 12, 35, 14, 35, 621, 11, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 632, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 640, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 661, 10, 36, 12, 36, 14, 36, 664, 11, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 6, 36, 671, 10, 36, 13, 36, 14, 36, 672, 3, 36, 3, 36, 5, 36, 677, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 727, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 737, 10, 36, 12, 36, 14, 36, 740, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 745, 10, 37, 12, 37, 14, 37, 748, 11, 37, 3, 38, 3, 38, 5, 38, 752, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 760, 10, 39, 12, 39, 14, 39, 763, 11, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 780, 10, 40, 5, 40, 782, 10, 40, 3, 41, 7, 41, 785, 10, 41, 12, 41, 14, 41, 788, 11, 41, 3, 42, 3, 42, 3, 42, 5, 42, 793, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 799, 10, 43, 3, 44, 3, 44, 5, 44, 803, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 809, 10, 45, 12, 45, 14, 45, 812, 11, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 837, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 853, 10, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 867, 10, 47, 12, 47, 14, 47, 870, 11, 47, 3, 47, 2, 9, 16, 28, 30, 42, 68, 70, 92, 48, 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, 2, 13, 3, 2, 22, 23, 5, 2, 17, 18, 24, 25, 90, 90, 4, 2, 32, 32, 35, 35, 3, 2, 28, 29, 3, 2, 19, 21, 3, 2, 17, 18, 3, 2, 30, 35, 3, 2, 124, 127, 3, 2, 122, 123, 3, 2, 128, 129, 3, 2, 124, 125, 2, 996, 2, 94, 3, 2, 2, 2, 4, 97, 3, 2, 2, 2, 6, 103, 3, 2, 2, 2, 8, 108, 3, 2, 2, 2, 10, 110, 3, 2, 2, 2, 12, 128, 3, 2, 2, 2, 14, 130, 3, 2, 2, 2, 16, 133, 3, 2, 2, 2, 18, 156, 3, 2, 2, 2, 20, 193, 3, 2, 2, 2, 22, 198, 3, 2, 2, 2, 24, 208, 3, 2, 2, 2, 26, 215, 3, 2, 2, 2, 28, 221, 3, 2, 2, 2, 30, 252, 3, 2, 2, 2, 32, 268, 3, 2, 2, 2, 34, 271, 3, 2, 2, 2, 36, 283, 3, 2, 2, 2, 38, 286, 3, 2, 2, 2, 40, 289, 3, 2, 2, 2, 42, 297, 3, 2, 2, 2, 44, 308, 3, 2, 2, 2, 46, 313, 3, 2, 2, 2, 48, 332, 3, 2, 2, 2, 50, 350, 3, 2, 2, 2, 52, 426, 3, 2, 2, 2, 54, 470, 3, 2, 2, 2, 56, 473, 3, 2, 2, 2, 58, 561, 3, 2, 2, 2, 60, 564, 3, 2, 2, 2, 62, 575, 3, 2, 2, 2, 64, 603, 3, 2, 2, 2, 66, 609, 3, 2, 2, 2, 68, 611, 3, 2, 2, 2, 70, 676, 3, 2, 2, 2, 72, 741, 3, 2, 2, 2, 74, 749, 3, 2, 2, 2, 76, 755, 3, 2, 2, 2, 78, 781, 3, 2, 2, 2, 80, 786, 3, 2, 2, 2, 82, 792, 3, 2, 2, 2, 84, 798, 3, 2, 2, 2, 86, 800, 3, 2, 2, 2, 88, 804, 3, 2, 2, 2, 90, 836, 3, 2, 2, 2, 92, 852, 3, 2, 2, 2, 94, 95, 5, 6, 4, 2, 95, 96, 7, 2, 2, 3, 96, 3, 3, 2, 2, 2, 97, 98, 5, 80, 41, 2, 98, 99, 7, 2, 2, 3, 99, 5, 3, 2, 2, 2, 100, 102, 5, 8, 5, 2, 101, 100, 3, 2, 2, 2, 102, 105, 3, 2, 2, 2, 103, 101, 3, 2, 2, 2, 103, 104, 3, 2, 2, 2, 104, 7, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 106, 109, 5, 12, 7, 2, 107, 109, 5, 10, 6, 2, 108, 106, 3, 2, 2, 2, 108, 107, 3, 2, 2, 2, 109, 9, 3, 2, 2, 2, 110, 111, 7, 40, 2, 2, 111, 112, 7, 95, 2, 2, 112, 11, 3, 2, 2, 2, 113, 114, 5, 14, 8, 2, 114, 115, 7, 10, 2, 2, 115, 129, 3, 2, 2, 2, 116, 117, 5, 34, 18, 2, 117, 118, 7, 10, 2, 2, 118, 129, 3, 2, 2, 2, 119, 120, 5, 40, 21, 2, 120, 121, 7, 10, 2, 2, 121, 129, 3, 2, 2, 2, 122, 129, 5, 46, 24, 2, 123, 129, 5, 74, 38, 2, 124, 129, 5, 52, 27, 2, 125, 126, 5, 18, 10, 2, 126, 127, 7, 10, 2, 2, 127, 129, 3, 2, 2, 2, 128, 113, 3, 2, 2, 2, 128, 116, 3, 2, 2, 2, 128, 119, 3, 2, 2, 2, 128, 122, 3, 2, 2, 2, 128, 123, 3, 2, 2, 2, 128, 124, 3, 2, 2, 2, 128, 125, 3, 2, 2, 2, 129, 13, 3, 2, 2, 2, 130, 131, 5, 22, 12, 2, 131, 132, 5, 16, 9, 2, 132, 15, 3, 2, 2, 2, 133, 137, 8, 9, 1, 2, 134, 136, 5, 24, 13, 2, 135, 134, 3, 2, 2, 2, 136, 139, 3, 2, 2, 2, 137, 135, 3, 2, 2, 2, 137, 138, 3, 2, 2, 2, 138, 140, 3, 2, 2, 2, 139, 137, 3, 2, 2, 2, 140, 141, 5, 20, 11, 2, 141, 153, 3, 2, 2, 2, 142, 143, 12, 3, 2, 2, 143, 147, 7, 12, 2, 2, 144, 146, 5, 24, 13, 2, 145, 144, 3, 2, 2, 2, 146, 149, 3, 2, 2, 2, 147, 145, 3, 2, 2, 2, 147, 148, 3, 2, 2, 2, 148, 150, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 150, 152, 5, 20, 11, 2, 151, 142, 3, 2, 2, 2, 152, 155, 3, 2, 2, 2, 153, 151, 3, 2, 2, 2, 153, 154, 3, 2, 2, 2, 154, 17, 3, 2, 2, 2, 155, 153, 3, 2, 2, 2, 156, 157, 7, 41, 2, 2, 157, 161, 5, 22, 12, 2, 158, 160, 5, 24, 13, 2, 159, 158, 3, 2, 2, 2, 160, 163, 3, 2, 2, 2, 161, 159, 3, 2, 2, 2, 161, 162, 3, 2, 2, 2, 162, 164, 3, 2, 2, 2, 163, 161, 3, 2, 2, 2, 164, 168, 7, 108, 2, 2, 165, 167, 5, 26, 14, 2, 166, 165, 3, 2, 2, 2, 167, 170, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 171, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 171, 172, 8, 10, 1, 2, 172, 19, 3, 2, 2, 2, 173, 177, 7, 108, 2, 2, 174, 176, 5, 26, 14, 2, 175, 174, 3, 2, 2, 2, 176, 179, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 177, 178, 3, 2, 2, 2, 178, 182, 3, 2, 2, 2, 179, 177, 3, 2, 2, 2, 180, 181, 7, 38, 2, 2, 181, 183, 5, 70, 36, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 194, 3, 2, 2, 2, 184, 188, 7, 108, 2, 2, 185, 187, 5, 26, 14, 2, 186, 185, 3, 2, 2, 2, 187, 190, 3, 2, 2, 2, 188, 186, 3, 2, 2, 2, 188, 189, 3, 2, 2, 2, 189, 191, 3, 2, 2, 2, 190, 188, 3, 2, 2, 2, 191, 192, 7, 38, 2, 2, 192, 194, 5, 74, 38, 2, 193, 173, 3, 2, 2, 2, 193, 184, 3, 2, 2, 2, 194, 21, 3, 2, 2, 2, 195, 197, 5, 54, 28, 2, 196, 195, 3, 2, 2, 2, 197, 200, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 199, 3, 2, 2, 2, 199, 201, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 201, 205, 5, 30, 16, 2, 202, 204, 5, 54, 28, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 23, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 212, 7, 19, 2, 2, 209, 211, 5, 54, 28, 2, 210, 209, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 25, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 217, 7, 6, 2, 2, 216, 218, 5, 70, 36, 2, 217, 216, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 219, 3, 2, 2, 2, 219, 220, 7, 7, 2, 2, 220, 27, 3, 2, 2, 2, 221, 222, 8, 15, 1, 2, 222, 223, 5, 30, 16, 2, 223, 234, 3, 2, 2, 2, 224, 225, 12, 4, 2, 2, 225, 233, 7, 19, 2, 2, 226, 227, 12, 3, 2, 2, 227, 229, 7, 6, 2, 2, 228, 230, 5, 70, 36, 2, 229, 228, 3, 2, 2, 2, 229, 230, 3, 2, 2, 2, 230, 231, 3, 2, 2, 2, 231, 233, 7, 7, 2, 2, 232, 224, 3, 2, 2, 2, 232, 226, 3, 2, 2, 2, 233, 236, 3, 2, 2, 2, 234, 232, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 29, 3, 2, 2, 2, 236, 234, 3, 2, 2, 2, 237, 238, 8, 16, 1, 2, 238, 239, 7, 8, 2, 2, 239, 240, 5, 30, 16, 2, 240, 241, 7, 9, 2, 2, 241, 253, 3, 2, 2, 2, 242, 253, 7, 92, 2, 2, 243, 245, 7, 91, 2, 2, 244, 246, 7, 92, 2, 2, 245, 244, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 253, 3, 2, 2, 2, 247, 253, 5, 34, 18, 2, 248, 253, 5, 32, 17, 2, 249, 253, 5, 40, 21, 2, 250, 253, 5, 38, 20, 2, 251, 253, 7, 3, 2, 2, 252, 237, 3, 2, 2, 2, 252, 242, 3, 2, 2, 2, 252, 243, 3, 2, 2, 2, 252, 247, 3, 2, 2, 2, 252, 248, 3, 2, 2, 2, 252, 249, 3, 2, 2, 2, 252, 250, 3, 2, 2, 2, 252, 251, 3, 2, 2, 2, 253, 265, 3, 2, 2, 2, 254, 255, 12, 9, 2, 2, 255, 257, 7, 6, 2, 2, 256, 258, 5, 70, 36, 2, 257, 256, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 259, 3, 2, 2, 2, 259, 264, 7, 7, 2, 2, 260, 261, 12, 8, 2, 2, 261, 262, 7, 8, 2, 2, 262, 264, 7, 9, 2, 2, 263, 254, 3, 2, 2, 2, 263, 260, 3, 2, 2, 2, 264, 267, 3, 2, 2, 2, 265, 263, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 31, 3, 2, 2, 2, 267, 265, 3, 2, 2, 2, 268, 269, 7, 80, 2, 2, 269, 270, 7, 108, 2, 2, 270, 33, 3, 2, 2, 2, 271, 273, 7, 80, 2, 2, 272, 274, 7, 108, 2, 2, 273, 272, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 277, 7, 4, 2, 2, 276, 278, 5, 36, 19, 2, 277, 276, 3, 2, 2, 2, 278, 279, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 279, 280, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 281, 282, 7, 5, 2, 2, 282, 35, 3, 2, 2, 2, 283, 284, 5, 14, 8, 2, 284, 285, 7, 10, 2, 2, 285, 37, 3, 2, 2, 2, 286, 287, 7, 81, 2, 2, 287, 288, 7, 108, 2, 2, 288, 39, 3, 2, 2, 2, 289, 291, 7, 81, 2, 2, 290, 292, 7, 108, 2, 2, 291, 290, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 7, 4, 2, 2, 294, 295, 5, 42, 22, 2, 295, 296, 7, 5, 2, 2, 296, 41, 3, 2, 2, 2, 297, 298, 8, 22, 1, 2, 298, 299, 5, 44, 23, 2, 299, 305, 3, 2, 2, 2, 300, 301, 12, 3, 2, 2, 301, 302, 7, 12, 2, 2, 302, 304, 5, 44, 23, 2, 303, 300, 3, 2, 2, 2, 304, 307, 3, 2, 2, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 43, 3, 2, 2, 2, 307, 305, 3, 2, 2, 2, 308, 311, 7, 108, 2, 2, 309, 310, 7, 38, 2, 2, 310, 312, 5, 70, 36, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 45, 3, 2, 2, 2, 313, 317, 5, 22, 12, 2, 314, 316, 5, 24, 13, 2, 315, 314, 3, 2, 2, 2, 316, 319, 3, 2, 2, 2, 317, 315, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 320, 3, 2, 2, 2, 319, 317, 3, 2, 2, 2, 320, 321, 7, 108, 2, 2, 321, 323, 7, 8, 2, 2, 322, 324, 5, 48, 25, 2, 323, 322, 3, 2, 2, 2, 323, 324, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 326, 7, 9, 2, 2, 326, 328, 7, 4, 2, 2, 327, 329, 5, 56, 29, 2, 328, 327, 3, 2, 2, 2, 328, 329, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 331, 7, 5, 2, 2, 331, 47, 3, 2, 2, 2, 332, 337, 5, 50, 26, 2, 333, 334, 7, 12, 2, 2, 334, 336, 5, 50, 26, 2, 335, 333, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 49, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 344, 5, 22, 12, 2, 341, 343, 5, 24, 13, 2, 342, 341, 3, 2, 2, 2, 343, 346, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 344, 345, 3, 2, 2, 2, 345, 347, 3, 2, 2, 2, 346, 344, 3, 2, 2, 2, 347, 348, 7, 108, 2, 2, 348, 351, 3, 2, 2, 2, 349, 351, 7, 92, 2, 2, 350, 340, 3, 2, 2, 2, 350, 349, 3, 2, 2, 2, 351, 51, 3, 2, 2, 2, 352, 353, 7, 42, 2, 2, 353, 354, 7, 43, 2, 2, 354, 355, 3, 2, 2, 2, 355, 356, 7, 8, 2, 2, 356, 361, 7, 99, 2, 2, 357, 358, 7, 12, 2, 2, 358, 360, 7, 99, 2, 2, 359, 357, 3, 2, 2, 2, 360, 363, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 364, 3, 2, 2, 2, 363, 361, 3, 2, 2, 2, 364, 427, 7, 9, 2, 2, 365, 366, 7, 42, 2, 2, 366, 367, 7, 44, 2, 2, 367, 368, 3, 2, 2, 2, 368, 369, 7, 8, 2, 2, 369, 370, 7, 99, 2, 2, 370, 427, 7, 9, 2, 2, 371, 372, 7, 42, 2, 2, 372, 373, 7, 45, 2, 2, 373, 374, 3, 2, 2, 2, 374, 375, 7, 8, 2, 2, 375, 376, 7, 108, 2, 2, 376, 427, 7, 9, 2, 2, 377, 378, 7, 42, 2, 2, 378, 379, 7, 47, 2, 2, 379, 380, 3, 2, 2, 2, 380, 381, 7, 8, 2, 2, 381, 382, 7, 108, 2, 2, 382, 427, 7, 9, 2, 2, 383, 384, 7, 42, 2, 2, 384, 385, 7, 46, 2, 2, 385, 386, 3, 2, 2, 2, 386, 387, 7, 8, 2, 2, 387, 388, 7, 95, 2, 2, 388, 427, 7, 9, 2, 2, 389, 390, 7, 42, 2, 2, 390, 391, 7, 48, 2, 2, 391, 392, 3, 2, 2, 2, 392, 393, 7, 8, 2, 2, 393, 394, 7, 108, 2, 2, 394, 427, 7, 9, 2, 2, 395, 396, 7, 42, 2, 2, 396, 397, 7, 49, 2, 2, 397, 398, 3, 2, 2, 2, 398, 399, 7, 8, 2, 2, 399, 400, 7, 108, 2, 2, 400, 427, 7, 9, 2, 2, 401, 402, 7, 42, 2, 2, 402, 403, 7, 50, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 7, 8, 2, 2, 405, 406, 7, 108, 2, 2, 406, 427, 7, 9, 2, 2, 407, 408, 7, 42, 2, 2, 408, 409, 7, 65, 2, 2, 409, 410, 3, 2, 2, 2, 410, 411, 7, 8, 2, 2, 411, 412, 7, 66, 2, 2, 412, 427, 7, 9, 2, 2, 413, 414, 7, 42, 2, 2, 414, 415, 7, 67, 2, 2, 415, 416, 3, 2, 2, 2, 416, 417, 7, 8, 2, 2, 417, 422, 7, 108, 2, 2, 418, 419, 7, 12, 2, 2, 419, 421, 7, 108, 2, 2, 420, 418, 3, 2, 2, 2, 421, 424, 3, 2, 2, 2, 422, 420, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 425, 3, 2, 2, 2, 424, 422, 3, 2, 2, 2, 425, 427, 7, 9, 2, 2, 426, 352, 3, 2, 2, 2, 426, 365, 3, 2, 2, 2, 426, 371, 3, 2, 2, 2, 426, 377, 3, 2, 2, 2, 426, 383, 3, 2, 2, 2, 426, 389, 3, 2, 2, 2, 426, 395, 3, 2, 2, 2, 426, 401, 3, 2, 2, 2, 426, 407, 3, 2, 2, 2, 426, 413, 3, 2, 2, 2, 427, 53, 3, 2, 2, 2, 428, 471, 7, 51, 2, 2, 429, 430, 7, 54, 2, 2, 430, 431, 7, 8, 2, 2, 431, 432, 7, 99, 2, 2, 432, 471, 7, 9, 2, 2, 433, 437, 7, 59, 2, 2, 434, 435, 7, 8, 2, 2, 435, 436, 7, 108, 2, 2, 436, 438, 7, 9, 2, 2, 437, 434, 3, 2, 2, 2, 437, 438, 3, 2, 2, 2, 438, 471, 3, 2, 2, 2, 439, 471, 7, 61, 2, 2, 440, 471, 7, 62, 2, 2, 441, 442, 7, 60, 2, 2, 442, 443, 7, 8, 2, 2, 443, 444, 7, 99, 2, 2, 444, 471, 7, 9, 2, 2, 445, 471, 7, 56, 2, 2, 446, 471, 7, 57, 2, 2, 447, 471, 7, 63, 2, 2, 448, 471, 7, 64, 2, 2, 449, 471, 7, 52, 2, 2, 450, 471, 7, 53, 2, 2, 451, 471, 7, 55, 2, 2, 452, 456, 7, 58, 2, 2, 453, 454, 7, 8, 2, 2, 454, 455, 7, 108, 2, 2, 455, 457, 7, 9, 2, 2, 456, 453, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 471, 3, 2, 2, 2, 458, 459, 7, 43, 2, 2, 459, 460, 7, 8, 2, 2, 460, 465, 7, 99, 2, 2, 461, 462, 7, 12, 2, 2, 462, 464, 7, 99, 2, 2, 463, 461, 3, 2, 2, 2, 464, 467, 3, 2, 2, 2, 465, 463, 3, 2, 2, 2, 465, 466, 3, 2, 2, 2, 466, 468, 3, 2, 2, 2, 467, 465, 3, 2, 2, 2, 468, 471, 7, 9, 2, 2, 469, 471, 7, 66, 2, 2, 470, 428, 3, 2, 2, 2, 470, 429, 3, 2, 2, 2, 470, 433, 3, 2, 2, 2, 470, 439, 3, 2, 2, 2, 470, 440, 3, 2, 2, 2, 470, 441, 3, 2, 2, 2, 470, 445, 3, 2, 2, 2, 470, 446, 3, 2, 2, 2, 470, 447, 3, 2, 2, 2, 470, 448, 3, 2, 2, 2, 470, 449, 3, 2, 2, 2, 470, 450, 3, 2, 2, 2, 470, 451, 3, 2, 2, 2, 470, 452, 3, 2, 2, 2, 470, 458, 3, 2, 2, 2, 470, 469, 3, 2, 2, 2, 471, 55, 3, 2, 2, 2, 472, 474, 5, 58, 30, 2, 473, 472, 3, 2, 2, 2, 474, 475, 3, 2, 2, 2, 475, 473, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 57, 3, 2, 2, 2, 477, 478, 5, 14, 8, 2, 478, 479, 7, 10, 2, 2, 479, 562, 3, 2, 2, 2, 480, 482, 7, 4, 2, 2, 481, 483, 5, 56, 29, 2, 482, 481, 3, 2, 2, 2, 482, 483, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 562, 7, 5, 2, 2, 485, 486, 5, 68, 35, 2, 486, 487, 7, 10, 2, 2, 487, 562, 3, 2, 2, 2, 488, 489, 7, 68, 2, 2, 489, 490, 7, 8, 2, 2, 490, 491, 5, 68, 35, 2, 491, 492, 7, 9, 2, 2, 492, 495, 5, 58, 30, 2, 493, 494, 7, 69, 2, 2, 494, 496, 5, 58, 30, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 562, 3, 2, 2, 2, 497, 499, 5, 54, 28, 2, 498, 497, 3, 2, 2, 2, 499, 502, 3, 2, 2, 2, 500, 498, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 503, 3, 2, 2, 2, 502, 500, 3, 2, 2, 2, 503, 504, 7, 70, 2, 2, 504, 505, 7, 8, 2, 2, 505, 506, 5, 68, 35, 2, 506, 507, 7, 9, 2, 2, 507, 508, 5, 58, 30, 2, 508, 562, 3, 2, 2, 2, 509, 511, 5, 54, 28, 2, 510, 509, 3, 2, 2, 2, 511, 514, 3, 2, 2, 2, 512, 510, 3, 2, 2, 2, 512, 513, 3, 2, 2, 2, 513, 515, 3, 2, 2, 2, 514, 512, 3, 2, 2, 2, 515, 516, 7, 71, 2, 2, 516, 517, 5, 58, 30, 2, 517, 518, 7, 70, 2, 2, 518, 519, 7, 8, 2, 2, 519, 520, 5, 68, 35, 2, 520, 521, 7, 9, 2, 2, 521, 522, 7, 10, 2, 2, 522, 562, 3, 2, 2, 2, 523, 525, 5, 54, 28, 2, 524, 523, 3, 2, 2, 2, 525, 528, 3, 2, 2, 2, 526, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 529, 3, 2, 2, 2, 528, 526, 3, 2, 2, 2, 529, 530, 7, 72, 2, 2, 530, 531, 7, 8, 2, 2, 531, 532, 5, 64, 33, 2, 532, 533, 7, 9, 2, 2, 533, 534, 5, 58, 30, 2, 534, 562, 3, 2, 2, 2, 535, 536, 7, 73, 2, 2, 536, 537, 7, 8, 2, 2, 537, 538, 5, 68, 35, 2, 538, 539, 7, 9, 2, 2, 539, 540, 7, 4, 2, 2, 540, 541, 5, 60, 31, 2, 541, 542, 7, 5, 2, 2, 542, 562, 3, 2, 2, 2, 543, 545, 7, 74, 2, 2, 544, 546, 5, 68, 35, 2, 545, 544, 3, 2, 2, 2, 545, 546, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 562, 7, 10, 2, 2, 548, 549, 7, 75, 2, 2, 549, 562, 7, 10, 2, 2, 550, 551, 7, 76, 2, 2, 551, 562, 7, 10, 2, 2, 552, 554, 7, 77, 2, 2, 553, 555, 5, 76, 39, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 3, 2, 2, 2, 556, 557, 7, 4, 2, 2, 557, 558, 5, 80, 41, 2, 558, 559, 7, 131, 2, 2, 559, 562, 3, 2, 2, 2, 560, 562, 5, 74, 38, 2, 561, 477, 3, 2, 2, 2, 561, 480, 3, 2, 2, 2, 561, 485, 3, 2, 2, 2, 561, 488, 3, 2, 2, 2, 561, 500, 3, 2, 2, 2, 561, 512, 3, 2, 2, 2, 561, 526, 3, 2, 2, 2, 561, 535, 3, 2, 2, 2, 561, 543, 3, 2, 2, 2, 561, 548, 3, 2, 2, 2, 561, 550, 3, 2, 2, 2, 561, 552, 3, 2, 2, 2, 561, 560, 3, 2, 2, 2, 562, 59, 3, 2, 2, 2, 563, 565, 5, 62, 32, 2, 564, 563, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 564, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 573, 3, 2, 2, 2, 568, 569, 7, 78, 2, 2, 569, 571, 7, 11, 2, 2, 570, 572, 5, 56, 29, 2, 571, 570, 3, 2, 2, 2, 571, 572, 3, 2, 2, 2, 572, 574, 3, 2, 2, 2, 573, 568, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 61, 3, 2, 2, 2, 575, 576, 7, 79, 2, 2, 576, 577, 5, 70, 36, 2, 577, 579, 7, 11, 2, 2, 578, 580, 5, 56, 29, 2, 579, 578, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 63, 3, 2, 2, 2, 581, 582, 5, 66, 34, 2, 582, 583, 7, 10, 2, 2, 583, 584, 5, 68, 35, 2, 584, 586, 7, 10, 2, 2, 585, 587, 5, 68, 35, 2, 586, 585, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 604, 3, 2, 2, 2, 588, 592, 5, 22, 12, 2, 589, 591, 5, 24, 13, 2, 590, 589, 3, 2, 2, 2, 591, 594, 3, 2, 2, 2, 592, 590, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 595, 588, 3, 2, 2, 2, 595, 596, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 598, 7, 108, 2, 2, 598, 599, 7, 11, 2, 2, 599, 600, 5, 70, 36, 2, 600, 601, 7, 13, 2, 2, 601, 602, 5, 70, 36, 2, 602, 604, 3, 2, 2, 2, 603, 581, 3, 2, 2, 2, 603, 595, 3, 2, 2, 2, 604, 65, 3, 2, 2, 2, 605, 607, 5, 14, 8, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 610, 5, 68, 35, 2, 609, 606, 3, 2, 2, 2, 609, 608, 3, 2, 2, 2, 610, 67, 3, 2, 2, 2, 611, 612, 8, 35, 1, 2, 612, 613, 5, 70, 36, 2, 613, 619, 3, 2, 2, 2, 614, 615, 12, 3, 2, 2, 615, 616, 7, 12, 2, 2, 616, 618, 5, 70, 36, 2, 617, 614, 3, 2, 2, 2, 618, 621, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 619, 620, 3, 2, 2, 2, 620, 69, 3, 2, 2, 2, 621, 619, 3, 2, 2, 2, 622, 623, 8, 36, 1, 2, 623, 624, 7, 8, 2, 2, 624, 625, 5, 68, 35, 2, 625, 626, 7, 9, 2, 2, 626, 677, 3, 2, 2, 2, 627, 628, 7, 82, 2, 2, 628, 631, 7, 8, 2, 2, 629, 632, 5, 70, 36, 2, 630, 632, 5, 28, 15, 2, 631, 629, 3, 2, 2, 2, 631, 630, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 634, 7, 9, 2, 2, 634, 677, 3, 2, 2, 2, 635, 636, 7, 83, 2, 2, 636, 639, 7, 8, 2, 2, 637, 640, 5, 70, 36, 2, 638, 640, 5, 28, 15, 2, 639, 637, 3, 2, 2, 2, 639, 638, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 642, 7, 9, 2, 2, 642, 677, 3, 2, 2, 2, 643, 644, 7, 8, 2, 2, 644, 645, 5, 28, 15, 2, 645, 646, 7, 9, 2, 2, 646, 647, 5, 70, 36, 26, 647, 677, 3, 2, 2, 2, 648, 649, 9, 2, 2, 2, 649, 677, 5, 70, 36, 25, 650, 651, 7, 19, 2, 2, 651, 677, 5, 70, 36, 23, 652, 653, 9, 3, 2, 2, 653, 677, 5, 70, 36, 22, 654, 655, 9, 4, 2, 2, 655, 677, 5, 70, 36, 18, 656, 657, 7, 4, 2, 2, 657, 662, 5, 70, 36, 2, 658, 659, 7, 12, 2, 2, 659, 661, 5, 70, 36, 2, 660, 658, 3, 2, 2, 2, 661, 664, 3, 2, 2, 2, 662, 660, 3, 2, 2, 2, 662, 663, 3, 2, 2, 2, 663, 665, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 665, 666, 7, 5, 2, 2, 666, 677, 3, 2, 2, 2, 667, 677, 7, 108, 2, 2, 668, 677, 7, 99, 2, 2, 669, 671, 7, 95, 2, 2, 670, 669, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 670, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 677, 3, 2, 2, 2, 674, 677, 7, 96, 2, 2, 675, 677, 7, 93, 2, 2, 676, 622, 3, 2, 2, 2, 676, 627, 3, 2, 2, 2, 676, 635, 3, 2, 2, 2, 676, 643, 3, 2, 2, 2, 676, 648, 3, 2, 2, 2, 676, 650, 3, 2, 2, 2, 676, 652, 3, 2, 2, 2, 676, 654, 3, 2, 2, 2, 676, 656, 3, 2, 2, 2, 676, 667, 3, 2, 2, 2, 676, 668, 3, 2, 2, 2, 676, 670, 3, 2, 2, 2, 676, 674, 3, 2, 2, 2, 676, 675, 3, 2, 2, 2, 677, 738, 3, 2, 2, 2, 678, 679, 12, 21, 2, 2, 679, 680, 9, 5, 2, 2, 680, 737, 5, 70, 36, 22, 681, 682, 12, 20, 2, 2, 682, 683, 9, 6, 2, 2, 683, 737, 5, 70, 36, 21, 684, 685, 12, 19, 2, 2, 685, 686, 9, 7, 2, 2, 686, 737, 5, 70, 36, 20, 687, 688, 12, 17, 2, 2, 688, 689, 9, 8, 2, 2, 689, 737, 5, 70, 36, 18, 690, 691, 12, 16, 2, 2, 691, 692, 7, 24, 2, 2, 692, 737, 5, 70, 36, 17, 693, 694, 12, 15, 2, 2, 694, 695, 7, 26, 2, 2, 695, 737, 5, 70, 36, 16, 696, 697, 12, 14, 2, 2, 697, 698, 7, 27, 2, 2, 698, 737, 5, 70, 36, 15, 699, 700, 12, 13, 2, 2, 700, 701, 7, 36, 2, 2, 701, 737, 5, 70, 36, 14, 702, 703, 12, 12, 2, 2, 703, 704, 7, 37, 2, 2, 704, 737, 5, 70, 36, 13, 705, 706, 12, 11, 2, 2, 706, 707, 7, 14, 2, 2, 707, 708, 5, 70, 36, 2, 708, 709, 7, 11, 2, 2, 709, 710, 5, 70, 36, 12, 710, 737, 3, 2, 2, 2, 711, 712, 12, 10, 2, 2, 712, 713, 7, 38, 2, 2, 713, 737, 5, 70, 36, 10, 714, 715, 12, 9, 2, 2, 715, 716, 7, 39, 2, 2, 716, 737, 5, 70, 36, 9, 717, 718, 12, 32, 2, 2, 718, 719, 7, 15, 2, 2, 719, 737, 7, 108, 2, 2, 720, 721, 12, 31, 2, 2, 721, 722, 7, 16, 2, 2, 722, 737, 7, 108, 2, 2, 723, 724, 12, 30, 2, 2, 724, 726, 7, 8, 2, 2, 725, 727, 5, 72, 37, 2, 726, 725, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 728, 3, 2, 2, 2, 728, 737, 7, 9, 2, 2, 729, 730, 12, 27, 2, 2, 730, 731, 7, 6, 2, 2, 731, 732, 5, 68, 35, 2, 732, 733, 7, 7, 2, 2, 733, 737, 3, 2, 2, 2, 734, 735, 12, 24, 2, 2, 735, 737, 9, 2, 2, 2, 736, 678, 3, 2, 2, 2, 736, 681, 3, 2, 2, 2, 736, 684, 3, 2, 2, 2, 736, 687, 3, 2, 2, 2, 736, 690, 3, 2, 2, 2, 736, 693, 3, 2, 2, 2, 736, 696, 3, 2, 2, 2, 736, 699, 3, 2, 2, 2, 736, 702, 3, 2, 2, 2, 736, 705, 3, 2, 2, 2, 736, 711, 3, 2, 2, 2, 736, 714, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 737, 740, 3, 2, 2, 2, 738, 736, 3, 2, 2, 2, 738, 739, 3, 2, 2, 2, 739, 71, 3, 2, 2, 2, 740, 738, 3, 2, 2, 2, 741, 746, 5, 70, 36, 2, 742, 743, 7, 12, 2, 2, 743, 745, 5, 70, 36, 2, 744, 742, 3, 2, 2, 2, 745, 748, 3, 2, 2, 2, 746, 744, 3, 2, 2, 2, 746, 747, 3, 2, 2, 2, 747, 73, 3, 2, 2, 2, 748, 746, 3, 2, 2, 2, 749, 751, 7, 84, 2, 2, 750, 752, 5, 76, 39, 2, 751, 750, 3, 2, 2, 2, 751, 752, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 7, 94, 2, 2, 754, 75, 3, 2, 2, 2, 755, 756, 7, 8, 2, 2, 756, 761, 5, 78, 40, 2, 757, 758, 7, 12, 2, 2, 758, 760, 5, 78, 40, 2, 759, 757, 3, 2, 2, 2, 760, 763, 3, 2, 2, 2, 761, 759, 3, 2, 2, 2, 761, 762, 3, 2, 2, 2, 762, 764, 3, 2, 2, 2, 763, 761, 3, 2, 2, 2, 764, 765, 7, 9, 2, 2, 765, 77, 3, 2, 2, 2, 766, 767, 7, 85, 2, 2, 767, 782, 7, 95, 2, 2, 768, 769, 7, 86, 2, 2, 769, 782, 7, 108, 2, 2, 770, 771, 7, 87, 2, 2, 771, 782, 7, 95, 2, 2, 772, 773, 7, 88, 2, 2, 773, 782, 5, 70, 36, 2, 774, 775, 7, 89, 2, 2, 775, 782, 5, 70, 36, 2, 776, 779, 7, 44, 2, 2, 777, 780, 7, 55, 2, 2, 778, 780, 5, 70, 36, 2, 779, 777, 3, 2, 2, 2, 779, 778, 3, 2, 2, 2, 780, 782, 3, 2, 2, 2, 781, 766, 3, 2, 2, 2, 781, 768, 3, 2, 2, 2, 781, 770, 3, 2, 2, 2, 781, 772, 3, 2, 2, 2, 781, 774, 3, 2, 2, 2, 781, 776, 3, 2, 2, 2, 782, 79, 3, 2, 2, 2, 783, 785, 5, 82, 42, 2, 784, 783, 3, 2, 2, 2, 785, 788, 3, 2, 2, 2, 786, 784, 3, 2, 2, 2, 786, 787, 3, 2, 2, 2, 787, 81, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 789, 793, 5, 84, 43, 2, 790, 793, 5, 86, 44, 2, 791, 793, 5, 88, 45, 2, 792, 789, 3, 2, 2, 2, 792, 790, 3, 2, 2, 2, 792, 791, 3, 2, 2, 2, 793, 83, 3, 2, 2, 2, 794, 795, 7, 144, 2, 2, 795, 799, 7, 115, 2, 2, 796, 797, 7, 143, 2, 2, 797, 799, 7, 115, 2, 2, 798, 794, 3, 2, 2, 2, 798, 796, 3, 2, 2, 2, 799, 85, 3, 2, 2, 2, 800, 802, 7, 113, 2, 2, 801, 803, 5, 90, 46, 2, 802, 801, 3, 2, 2, 2, 802, 803, 3, 2, 2, 2, 803, 87, 3, 2, 2, 2, 804, 805, 7, 112, 2, 2, 805, 810, 5, 92, 47, 2, 806, 807, 7, 116, 2, 2, 807, 809, 5, 92, 47, 2, 808, 806, 3, 2, 2, 2, 809, 812, 3, 2, 2, 2, 810, 808, 3, 2, 2, 2, 810, 811, 3, 2, 2, 2, 811, 89, 3, 2, 2, 2, 812, 810, 3, 2, 2, 2, 813, 837, 5, 92, 47, 2, 814, 815, 7, 114, 2, 2, 815, 837, 5, 92, 47, 2, 816, 817, 5, 92, 47, 2, 817, 818, 7, 116, 2, 2, 818, 819, 7, 144, 2, 2, 819, 837, 3, 2, 2, 2, 820, 821, 7, 117, 2, 2, 821, 822, 5, 92, 47, 2, 822, 823, 7, 118, 2, 2, 823, 824, 7, 116, 2, 2, 824, 825, 7, 144, 2, 2, 825, 837, 3, 2, 2, 2, 826, 827, 7, 117, 2, 2, 827, 828, 5, 92, 47, 2, 828, 829, 7, 116, 2, 2, 829, 830, 7, 144, 2, 2, 830, 831, 7, 118, 2, 2, 831, 837, 3, 2, 2, 2, 832, 833, 7, 117, 2, 2, 833, 834, 5, 92, 47, 2, 834, 835, 7, 118, 2, 2, 835, 837, 3, 2, 2, 2, 836, 813, 3, 2, 2, 2, 836, 814, 3, 2, 2, 2, 836, 816, 3, 2, 2, 2, 836, 820, 3, 2, 2, 2, 836, 826, 3, 2, 2, 2, 836, 832, 3, 2, 2, 2, 837, 91, 3, 2, 2, 2, 838, 839, 8, 47, 1, 2, 839, 840, 7, 119, 2, 2, 840, 841, 5, 92, 47, 2, 841, 842, 7, 120, 2, 2, 842, 853, 3, 2, 2, 2, 843, 844, 9, 9, 2, 2, 844, 853, 5, 92, 47, 10, 845, 853, 7, 144, 2, 2, 846, 853, 7, 142, 2, 2, 847, 848, 7, 130, 2, 2, 848, 849, 7, 144, 2, 2, 849, 853, 7, 131, 2, 2, 850, 853, 7, 132, 2, 2, 851, 853, 7, 141, 2, 2, 852, 838, 3, 2, 2, 2, 852, 843, 3, 2, 2, 2, 852, 845, 3, 2, 2, 2, 852, 846, 3, 2, 2, 2, 852, 847, 3, 2, 2, 2, 852, 850, 3, 2, 2, 2, 852, 851, 3, 2, 2, 2, 853, 868, 3, 2, 2, 2, 854, 855, 12, 12, 2, 2, 855, 856, 7, 121, 2, 2, 856, 867, 5, 92, 47, 13, 857, 858, 12, 11, 2, 2, 858, 859, 9, 10, 2, 2, 859, 867, 5, 92, 47, 12, 860, 861, 12, 9, 2, 2, 861, 862, 9, 11, 2, 2, 862, 867, 5, 92, 47, 10, 863, 864, 12, 8, 2, 2, 864, 865, 9, 12, 2, 2, 865, 867, 5, 92, 47, 9, 866, 854, 3, 2, 2, 2, 866, 857, 3, 2, 2, 2, 866, 860, 3, 2, 2, 2, 866, 863, 3, 2, 2, 2, 867, 870, 3, 2, 2, 2, 868, 866, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, 93, 3, 2, 2, 2, 870, 868, 3, 2, 2, 2, 86, 103, 108, 128, 137, 147, 153, 161, 168, 177, 182, 188, 193, 198, 205, 212, 217, 229, 232, 234, 245, 252, 257, 263, 265, 273, 279, 291, 305, 311, 317, 323, 328, 337, 344, 350, 361, 422, 426, 437, 456, 465, 470, 475, 482, 495, 500, 512, 526, 545, 554, 561, 566, 571, 573, 579, 586, 592, 595, 603, 606, 609, 619, 631, 639, 662, 672, 676, 726, 736, 738, 746, 751, 761, 779, 781, 786, 792, 798, 802, 810, 836, 852, 866, 868] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 148, 872, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 102, 10, 4, 12, 4, 14, 4, 105, 11, 4, 3, 5, 3, 5, 5, 5, 109, 10, 5, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 129, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 136, 10, 9, 12, 9, 14, 9, 139, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 146, 10, 9, 12, 9, 14, 9, 149, 11, 9, 3, 9, 7, 9, 152, 10, 9, 12, 9, 14, 9, 155, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 160, 10, 10, 12, 10, 14, 10, 163, 11, 10, 3, 10, 3, 10, 7, 10, 167, 10, 10, 12, 10, 14, 10, 170, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 176, 10, 11, 12, 11, 14, 11, 179, 11, 11, 3, 11, 3, 11, 5, 11, 183, 10, 11, 3, 11, 3, 11, 7, 11, 187, 10, 11, 12, 11, 14, 11, 190, 11, 11, 3, 11, 3, 11, 5, 11, 194, 10, 11, 3, 12, 7, 12, 197, 10, 12, 12, 12, 14, 12, 200, 11, 12, 3, 12, 3, 12, 7, 12, 204, 10, 12, 12, 12, 14, 12, 207, 11, 12, 3, 13, 3, 13, 7, 13, 211, 10, 13, 12, 13, 14, 13, 214, 11, 13, 3, 14, 3, 14, 5, 14, 218, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 230, 10, 15, 3, 15, 7, 15, 233, 10, 15, 12, 15, 14, 15, 236, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 246, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 253, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 258, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 264, 10, 16, 12, 16, 14, 16, 267, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 274, 10, 18, 3, 18, 3, 18, 6, 18, 278, 10, 18, 13, 18, 14, 18, 279, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 292, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 304, 10, 22, 12, 22, 14, 22, 307, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 312, 10, 23, 3, 24, 3, 24, 7, 24, 316, 10, 24, 12, 24, 14, 24, 319, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 324, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 329, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 7, 25, 336, 10, 25, 12, 25, 14, 25, 339, 11, 25, 3, 26, 3, 26, 7, 26, 343, 10, 26, 12, 26, 14, 26, 346, 11, 26, 3, 26, 3, 26, 3, 26, 5, 26, 351, 10, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 360, 10, 27, 12, 27, 14, 27, 363, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 3, 27, 7, 27, 421, 10, 27, 12, 27, 14, 27, 424, 11, 27, 3, 27, 5, 27, 427, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 438, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 457, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 464, 10, 28, 12, 28, 14, 28, 467, 11, 28, 3, 28, 3, 28, 5, 28, 471, 10, 28, 3, 29, 6, 29, 474, 10, 29, 13, 29, 14, 29, 475, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 483, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 496, 10, 30, 3, 30, 7, 30, 499, 10, 30, 12, 30, 14, 30, 502, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 511, 10, 30, 12, 30, 14, 30, 514, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 525, 10, 30, 12, 30, 14, 30, 528, 11, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 546, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 555, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 562, 10, 30, 3, 31, 6, 31, 565, 10, 31, 13, 31, 14, 31, 566, 3, 31, 3, 31, 3, 31, 5, 31, 572, 10, 31, 5, 31, 574, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 580, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 587, 10, 33, 3, 33, 3, 33, 7, 33, 591, 10, 33, 12, 33, 14, 33, 594, 11, 33, 5, 33, 596, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 604, 10, 33, 3, 34, 5, 34, 607, 10, 34, 3, 34, 5, 34, 610, 10, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 618, 10, 35, 12, 35, 14, 35, 621, 11, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 632, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 640, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 661, 10, 36, 12, 36, 14, 36, 664, 11, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 6, 36, 671, 10, 36, 13, 36, 14, 36, 672, 3, 36, 3, 36, 5, 36, 677, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 5, 36, 727, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 737, 10, 36, 12, 36, 14, 36, 740, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 745, 10, 37, 12, 37, 14, 37, 748, 11, 37, 3, 38, 3, 38, 5, 38, 752, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 760, 10, 39, 12, 39, 14, 39, 763, 11, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 780, 10, 40, 5, 40, 782, 10, 40, 3, 41, 7, 41, 785, 10, 41, 12, 41, 14, 41, 788, 11, 41, 3, 42, 3, 42, 3, 42, 5, 42, 793, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 799, 10, 43, 3, 44, 3, 44, 5, 44, 803, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 809, 10, 45, 12, 45, 14, 45, 812, 11, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 837, 10, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 853, 10, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 867, 10, 47, 12, 47, 14, 47, 870, 11, 47, 3, 47, 2, 9, 16, 28, 30, 42, 68, 70, 92, 48, 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, 2, 13, 3, 2, 22, 23, 5, 2, 17, 18, 24, 25, 90, 90, 4, 2, 32, 32, 35, 35, 3, 2, 28, 29, 3, 2, 19, 21, 3, 2, 17, 18, 3, 2, 30, 35, 3, 2, 125, 128, 3, 2, 123, 124, 3, 2, 129, 130, 3, 2, 125, 126, 2, 996, 2, 94, 3, 2, 2, 2, 4, 97, 3, 2, 2, 2, 6, 103, 3, 2, 2, 2, 8, 108, 3, 2, 2, 2, 10, 110, 3, 2, 2, 2, 12, 128, 3, 2, 2, 2, 14, 130, 3, 2, 2, 2, 16, 133, 3, 2, 2, 2, 18, 156, 3, 2, 2, 2, 20, 193, 3, 2, 2, 2, 22, 198, 3, 2, 2, 2, 24, 208, 3, 2, 2, 2, 26, 215, 3, 2, 2, 2, 28, 221, 3, 2, 2, 2, 30, 252, 3, 2, 2, 2, 32, 268, 3, 2, 2, 2, 34, 271, 3, 2, 2, 2, 36, 283, 3, 2, 2, 2, 38, 286, 3, 2, 2, 2, 40, 289, 3, 2, 2, 2, 42, 297, 3, 2, 2, 2, 44, 308, 3, 2, 2, 2, 46, 313, 3, 2, 2, 2, 48, 332, 3, 2, 2, 2, 50, 350, 3, 2, 2, 2, 52, 426, 3, 2, 2, 2, 54, 470, 3, 2, 2, 2, 56, 473, 3, 2, 2, 2, 58, 561, 3, 2, 2, 2, 60, 564, 3, 2, 2, 2, 62, 575, 3, 2, 2, 2, 64, 603, 3, 2, 2, 2, 66, 609, 3, 2, 2, 2, 68, 611, 3, 2, 2, 2, 70, 676, 3, 2, 2, 2, 72, 741, 3, 2, 2, 2, 74, 749, 3, 2, 2, 2, 76, 755, 3, 2, 2, 2, 78, 781, 3, 2, 2, 2, 80, 786, 3, 2, 2, 2, 82, 792, 3, 2, 2, 2, 84, 798, 3, 2, 2, 2, 86, 800, 3, 2, 2, 2, 88, 804, 3, 2, 2, 2, 90, 836, 3, 2, 2, 2, 92, 852, 3, 2, 2, 2, 94, 95, 5, 6, 4, 2, 95, 96, 7, 2, 2, 3, 96, 3, 3, 2, 2, 2, 97, 98, 5, 80, 41, 2, 98, 99, 7, 2, 2, 3, 99, 5, 3, 2, 2, 2, 100, 102, 5, 8, 5, 2, 101, 100, 3, 2, 2, 2, 102, 105, 3, 2, 2, 2, 103, 101, 3, 2, 2, 2, 103, 104, 3, 2, 2, 2, 104, 7, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 106, 109, 5, 12, 7, 2, 107, 109, 5, 10, 6, 2, 108, 106, 3, 2, 2, 2, 108, 107, 3, 2, 2, 2, 109, 9, 3, 2, 2, 2, 110, 111, 7, 40, 2, 2, 111, 112, 7, 95, 2, 2, 112, 11, 3, 2, 2, 2, 113, 114, 5, 14, 8, 2, 114, 115, 7, 10, 2, 2, 115, 129, 3, 2, 2, 2, 116, 117, 5, 34, 18, 2, 117, 118, 7, 10, 2, 2, 118, 129, 3, 2, 2, 2, 119, 120, 5, 40, 21, 2, 120, 121, 7, 10, 2, 2, 121, 129, 3, 2, 2, 2, 122, 129, 5, 46, 24, 2, 123, 129, 5, 74, 38, 2, 124, 129, 5, 52, 27, 2, 125, 126, 5, 18, 10, 2, 126, 127, 7, 10, 2, 2, 127, 129, 3, 2, 2, 2, 128, 113, 3, 2, 2, 2, 128, 116, 3, 2, 2, 2, 128, 119, 3, 2, 2, 2, 128, 122, 3, 2, 2, 2, 128, 123, 3, 2, 2, 2, 128, 124, 3, 2, 2, 2, 128, 125, 3, 2, 2, 2, 129, 13, 3, 2, 2, 2, 130, 131, 5, 22, 12, 2, 131, 132, 5, 16, 9, 2, 132, 15, 3, 2, 2, 2, 133, 137, 8, 9, 1, 2, 134, 136, 5, 24, 13, 2, 135, 134, 3, 2, 2, 2, 136, 139, 3, 2, 2, 2, 137, 135, 3, 2, 2, 2, 137, 138, 3, 2, 2, 2, 138, 140, 3, 2, 2, 2, 139, 137, 3, 2, 2, 2, 140, 141, 5, 20, 11, 2, 141, 153, 3, 2, 2, 2, 142, 143, 12, 3, 2, 2, 143, 147, 7, 12, 2, 2, 144, 146, 5, 24, 13, 2, 145, 144, 3, 2, 2, 2, 146, 149, 3, 2, 2, 2, 147, 145, 3, 2, 2, 2, 147, 148, 3, 2, 2, 2, 148, 150, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 150, 152, 5, 20, 11, 2, 151, 142, 3, 2, 2, 2, 152, 155, 3, 2, 2, 2, 153, 151, 3, 2, 2, 2, 153, 154, 3, 2, 2, 2, 154, 17, 3, 2, 2, 2, 155, 153, 3, 2, 2, 2, 156, 157, 7, 41, 2, 2, 157, 161, 5, 22, 12, 2, 158, 160, 5, 24, 13, 2, 159, 158, 3, 2, 2, 2, 160, 163, 3, 2, 2, 2, 161, 159, 3, 2, 2, 2, 161, 162, 3, 2, 2, 2, 162, 164, 3, 2, 2, 2, 163, 161, 3, 2, 2, 2, 164, 168, 7, 109, 2, 2, 165, 167, 5, 26, 14, 2, 166, 165, 3, 2, 2, 2, 167, 170, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 171, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 171, 172, 8, 10, 1, 2, 172, 19, 3, 2, 2, 2, 173, 177, 7, 109, 2, 2, 174, 176, 5, 26, 14, 2, 175, 174, 3, 2, 2, 2, 176, 179, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 177, 178, 3, 2, 2, 2, 178, 182, 3, 2, 2, 2, 179, 177, 3, 2, 2, 2, 180, 181, 7, 38, 2, 2, 181, 183, 5, 70, 36, 2, 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 194, 3, 2, 2, 2, 184, 188, 7, 109, 2, 2, 185, 187, 5, 26, 14, 2, 186, 185, 3, 2, 2, 2, 187, 190, 3, 2, 2, 2, 188, 186, 3, 2, 2, 2, 188, 189, 3, 2, 2, 2, 189, 191, 3, 2, 2, 2, 190, 188, 3, 2, 2, 2, 191, 192, 7, 38, 2, 2, 192, 194, 5, 74, 38, 2, 193, 173, 3, 2, 2, 2, 193, 184, 3, 2, 2, 2, 194, 21, 3, 2, 2, 2, 195, 197, 5, 54, 28, 2, 196, 195, 3, 2, 2, 2, 197, 200, 3, 2, 2, 2, 198, 196, 3, 2, 2, 2, 198, 199, 3, 2, 2, 2, 199, 201, 3, 2, 2, 2, 200, 198, 3, 2, 2, 2, 201, 205, 5, 30, 16, 2, 202, 204, 5, 54, 28, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 23, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 212, 7, 19, 2, 2, 209, 211, 5, 54, 28, 2, 210, 209, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 25, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 217, 7, 6, 2, 2, 216, 218, 5, 70, 36, 2, 217, 216, 3, 2, 2, 2, 217, 218, 3, 2, 2, 2, 218, 219, 3, 2, 2, 2, 219, 220, 7, 7, 2, 2, 220, 27, 3, 2, 2, 2, 221, 222, 8, 15, 1, 2, 222, 223, 5, 30, 16, 2, 223, 234, 3, 2, 2, 2, 224, 225, 12, 4, 2, 2, 225, 233, 7, 19, 2, 2, 226, 227, 12, 3, 2, 2, 227, 229, 7, 6, 2, 2, 228, 230, 5, 70, 36, 2, 229, 228, 3, 2, 2, 2, 229, 230, 3, 2, 2, 2, 230, 231, 3, 2, 2, 2, 231, 233, 7, 7, 2, 2, 232, 224, 3, 2, 2, 2, 232, 226, 3, 2, 2, 2, 233, 236, 3, 2, 2, 2, 234, 232, 3, 2, 2, 2, 234, 235, 3, 2, 2, 2, 235, 29, 3, 2, 2, 2, 236, 234, 3, 2, 2, 2, 237, 238, 8, 16, 1, 2, 238, 239, 7, 8, 2, 2, 239, 240, 5, 30, 16, 2, 240, 241, 7, 9, 2, 2, 241, 253, 3, 2, 2, 2, 242, 253, 7, 92, 2, 2, 243, 245, 7, 91, 2, 2, 244, 246, 7, 92, 2, 2, 245, 244, 3, 2, 2, 2, 245, 246, 3, 2, 2, 2, 246, 253, 3, 2, 2, 2, 247, 253, 5, 34, 18, 2, 248, 253, 5, 32, 17, 2, 249, 253, 5, 40, 21, 2, 250, 253, 5, 38, 20, 2, 251, 253, 7, 3, 2, 2, 252, 237, 3, 2, 2, 2, 252, 242, 3, 2, 2, 2, 252, 243, 3, 2, 2, 2, 252, 247, 3, 2, 2, 2, 252, 248, 3, 2, 2, 2, 252, 249, 3, 2, 2, 2, 252, 250, 3, 2, 2, 2, 252, 251, 3, 2, 2, 2, 253, 265, 3, 2, 2, 2, 254, 255, 12, 9, 2, 2, 255, 257, 7, 6, 2, 2, 256, 258, 5, 70, 36, 2, 257, 256, 3, 2, 2, 2, 257, 258, 3, 2, 2, 2, 258, 259, 3, 2, 2, 2, 259, 264, 7, 7, 2, 2, 260, 261, 12, 8, 2, 2, 261, 262, 7, 8, 2, 2, 262, 264, 7, 9, 2, 2, 263, 254, 3, 2, 2, 2, 263, 260, 3, 2, 2, 2, 264, 267, 3, 2, 2, 2, 265, 263, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 31, 3, 2, 2, 2, 267, 265, 3, 2, 2, 2, 268, 269, 7, 80, 2, 2, 269, 270, 7, 109, 2, 2, 270, 33, 3, 2, 2, 2, 271, 273, 7, 80, 2, 2, 272, 274, 7, 109, 2, 2, 273, 272, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 277, 7, 4, 2, 2, 276, 278, 5, 36, 19, 2, 277, 276, 3, 2, 2, 2, 278, 279, 3, 2, 2, 2, 279, 277, 3, 2, 2, 2, 279, 280, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 281, 282, 7, 5, 2, 2, 282, 35, 3, 2, 2, 2, 283, 284, 5, 14, 8, 2, 284, 285, 7, 10, 2, 2, 285, 37, 3, 2, 2, 2, 286, 287, 7, 81, 2, 2, 287, 288, 7, 109, 2, 2, 288, 39, 3, 2, 2, 2, 289, 291, 7, 81, 2, 2, 290, 292, 7, 109, 2, 2, 291, 290, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 7, 4, 2, 2, 294, 295, 5, 42, 22, 2, 295, 296, 7, 5, 2, 2, 296, 41, 3, 2, 2, 2, 297, 298, 8, 22, 1, 2, 298, 299, 5, 44, 23, 2, 299, 305, 3, 2, 2, 2, 300, 301, 12, 3, 2, 2, 301, 302, 7, 12, 2, 2, 302, 304, 5, 44, 23, 2, 303, 300, 3, 2, 2, 2, 304, 307, 3, 2, 2, 2, 305, 303, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 43, 3, 2, 2, 2, 307, 305, 3, 2, 2, 2, 308, 311, 7, 109, 2, 2, 309, 310, 7, 38, 2, 2, 310, 312, 5, 70, 36, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 45, 3, 2, 2, 2, 313, 317, 5, 22, 12, 2, 314, 316, 5, 24, 13, 2, 315, 314, 3, 2, 2, 2, 316, 319, 3, 2, 2, 2, 317, 315, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 320, 3, 2, 2, 2, 319, 317, 3, 2, 2, 2, 320, 321, 7, 109, 2, 2, 321, 323, 7, 8, 2, 2, 322, 324, 5, 48, 25, 2, 323, 322, 3, 2, 2, 2, 323, 324, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 326, 7, 9, 2, 2, 326, 328, 7, 4, 2, 2, 327, 329, 5, 56, 29, 2, 328, 327, 3, 2, 2, 2, 328, 329, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 331, 7, 5, 2, 2, 331, 47, 3, 2, 2, 2, 332, 337, 5, 50, 26, 2, 333, 334, 7, 12, 2, 2, 334, 336, 5, 50, 26, 2, 335, 333, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 49, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 344, 5, 22, 12, 2, 341, 343, 5, 24, 13, 2, 342, 341, 3, 2, 2, 2, 343, 346, 3, 2, 2, 2, 344, 342, 3, 2, 2, 2, 344, 345, 3, 2, 2, 2, 345, 347, 3, 2, 2, 2, 346, 344, 3, 2, 2, 2, 347, 348, 7, 109, 2, 2, 348, 351, 3, 2, 2, 2, 349, 351, 7, 92, 2, 2, 350, 340, 3, 2, 2, 2, 350, 349, 3, 2, 2, 2, 351, 51, 3, 2, 2, 2, 352, 353, 7, 42, 2, 2, 353, 354, 7, 43, 2, 2, 354, 355, 3, 2, 2, 2, 355, 356, 7, 8, 2, 2, 356, 361, 7, 100, 2, 2, 357, 358, 7, 12, 2, 2, 358, 360, 7, 100, 2, 2, 359, 357, 3, 2, 2, 2, 360, 363, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 364, 3, 2, 2, 2, 363, 361, 3, 2, 2, 2, 364, 427, 7, 9, 2, 2, 365, 366, 7, 42, 2, 2, 366, 367, 7, 44, 2, 2, 367, 368, 3, 2, 2, 2, 368, 369, 7, 8, 2, 2, 369, 370, 7, 100, 2, 2, 370, 427, 7, 9, 2, 2, 371, 372, 7, 42, 2, 2, 372, 373, 7, 45, 2, 2, 373, 374, 3, 2, 2, 2, 374, 375, 7, 8, 2, 2, 375, 376, 7, 109, 2, 2, 376, 427, 7, 9, 2, 2, 377, 378, 7, 42, 2, 2, 378, 379, 7, 47, 2, 2, 379, 380, 3, 2, 2, 2, 380, 381, 7, 8, 2, 2, 381, 382, 7, 109, 2, 2, 382, 427, 7, 9, 2, 2, 383, 384, 7, 42, 2, 2, 384, 385, 7, 46, 2, 2, 385, 386, 3, 2, 2, 2, 386, 387, 7, 8, 2, 2, 387, 388, 7, 95, 2, 2, 388, 427, 7, 9, 2, 2, 389, 390, 7, 42, 2, 2, 390, 391, 7, 48, 2, 2, 391, 392, 3, 2, 2, 2, 392, 393, 7, 8, 2, 2, 393, 394, 7, 109, 2, 2, 394, 427, 7, 9, 2, 2, 395, 396, 7, 42, 2, 2, 396, 397, 7, 49, 2, 2, 397, 398, 3, 2, 2, 2, 398, 399, 7, 8, 2, 2, 399, 400, 7, 109, 2, 2, 400, 427, 7, 9, 2, 2, 401, 402, 7, 42, 2, 2, 402, 403, 7, 50, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 7, 8, 2, 2, 405, 406, 7, 109, 2, 2, 406, 427, 7, 9, 2, 2, 407, 408, 7, 42, 2, 2, 408, 409, 7, 65, 2, 2, 409, 410, 3, 2, 2, 2, 410, 411, 7, 8, 2, 2, 411, 412, 7, 66, 2, 2, 412, 427, 7, 9, 2, 2, 413, 414, 7, 42, 2, 2, 414, 415, 7, 67, 2, 2, 415, 416, 3, 2, 2, 2, 416, 417, 7, 8, 2, 2, 417, 422, 7, 109, 2, 2, 418, 419, 7, 12, 2, 2, 419, 421, 7, 109, 2, 2, 420, 418, 3, 2, 2, 2, 421, 424, 3, 2, 2, 2, 422, 420, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 425, 3, 2, 2, 2, 424, 422, 3, 2, 2, 2, 425, 427, 7, 9, 2, 2, 426, 352, 3, 2, 2, 2, 426, 365, 3, 2, 2, 2, 426, 371, 3, 2, 2, 2, 426, 377, 3, 2, 2, 2, 426, 383, 3, 2, 2, 2, 426, 389, 3, 2, 2, 2, 426, 395, 3, 2, 2, 2, 426, 401, 3, 2, 2, 2, 426, 407, 3, 2, 2, 2, 426, 413, 3, 2, 2, 2, 427, 53, 3, 2, 2, 2, 428, 471, 7, 51, 2, 2, 429, 430, 7, 54, 2, 2, 430, 431, 7, 8, 2, 2, 431, 432, 7, 100, 2, 2, 432, 471, 7, 9, 2, 2, 433, 437, 7, 59, 2, 2, 434, 435, 7, 8, 2, 2, 435, 436, 7, 109, 2, 2, 436, 438, 7, 9, 2, 2, 437, 434, 3, 2, 2, 2, 437, 438, 3, 2, 2, 2, 438, 471, 3, 2, 2, 2, 439, 471, 7, 61, 2, 2, 440, 471, 7, 62, 2, 2, 441, 442, 7, 60, 2, 2, 442, 443, 7, 8, 2, 2, 443, 444, 7, 100, 2, 2, 444, 471, 7, 9, 2, 2, 445, 471, 7, 56, 2, 2, 446, 471, 7, 57, 2, 2, 447, 471, 7, 63, 2, 2, 448, 471, 7, 64, 2, 2, 449, 471, 7, 52, 2, 2, 450, 471, 7, 53, 2, 2, 451, 471, 7, 55, 2, 2, 452, 456, 7, 58, 2, 2, 453, 454, 7, 8, 2, 2, 454, 455, 7, 109, 2, 2, 455, 457, 7, 9, 2, 2, 456, 453, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 471, 3, 2, 2, 2, 458, 459, 7, 43, 2, 2, 459, 460, 7, 8, 2, 2, 460, 465, 7, 100, 2, 2, 461, 462, 7, 12, 2, 2, 462, 464, 7, 100, 2, 2, 463, 461, 3, 2, 2, 2, 464, 467, 3, 2, 2, 2, 465, 463, 3, 2, 2, 2, 465, 466, 3, 2, 2, 2, 466, 468, 3, 2, 2, 2, 467, 465, 3, 2, 2, 2, 468, 471, 7, 9, 2, 2, 469, 471, 7, 66, 2, 2, 470, 428, 3, 2, 2, 2, 470, 429, 3, 2, 2, 2, 470, 433, 3, 2, 2, 2, 470, 439, 3, 2, 2, 2, 470, 440, 3, 2, 2, 2, 470, 441, 3, 2, 2, 2, 470, 445, 3, 2, 2, 2, 470, 446, 3, 2, 2, 2, 470, 447, 3, 2, 2, 2, 470, 448, 3, 2, 2, 2, 470, 449, 3, 2, 2, 2, 470, 450, 3, 2, 2, 2, 470, 451, 3, 2, 2, 2, 470, 452, 3, 2, 2, 2, 470, 458, 3, 2, 2, 2, 470, 469, 3, 2, 2, 2, 471, 55, 3, 2, 2, 2, 472, 474, 5, 58, 30, 2, 473, 472, 3, 2, 2, 2, 474, 475, 3, 2, 2, 2, 475, 473, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 57, 3, 2, 2, 2, 477, 478, 5, 14, 8, 2, 478, 479, 7, 10, 2, 2, 479, 562, 3, 2, 2, 2, 480, 482, 7, 4, 2, 2, 481, 483, 5, 56, 29, 2, 482, 481, 3, 2, 2, 2, 482, 483, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 562, 7, 5, 2, 2, 485, 486, 5, 68, 35, 2, 486, 487, 7, 10, 2, 2, 487, 562, 3, 2, 2, 2, 488, 489, 7, 68, 2, 2, 489, 490, 7, 8, 2, 2, 490, 491, 5, 68, 35, 2, 491, 492, 7, 9, 2, 2, 492, 495, 5, 58, 30, 2, 493, 494, 7, 69, 2, 2, 494, 496, 5, 58, 30, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 562, 3, 2, 2, 2, 497, 499, 5, 54, 28, 2, 498, 497, 3, 2, 2, 2, 499, 502, 3, 2, 2, 2, 500, 498, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 503, 3, 2, 2, 2, 502, 500, 3, 2, 2, 2, 503, 504, 7, 70, 2, 2, 504, 505, 7, 8, 2, 2, 505, 506, 5, 68, 35, 2, 506, 507, 7, 9, 2, 2, 507, 508, 5, 58, 30, 2, 508, 562, 3, 2, 2, 2, 509, 511, 5, 54, 28, 2, 510, 509, 3, 2, 2, 2, 511, 514, 3, 2, 2, 2, 512, 510, 3, 2, 2, 2, 512, 513, 3, 2, 2, 2, 513, 515, 3, 2, 2, 2, 514, 512, 3, 2, 2, 2, 515, 516, 7, 71, 2, 2, 516, 517, 5, 58, 30, 2, 517, 518, 7, 70, 2, 2, 518, 519, 7, 8, 2, 2, 519, 520, 5, 68, 35, 2, 520, 521, 7, 9, 2, 2, 521, 522, 7, 10, 2, 2, 522, 562, 3, 2, 2, 2, 523, 525, 5, 54, 28, 2, 524, 523, 3, 2, 2, 2, 525, 528, 3, 2, 2, 2, 526, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 529, 3, 2, 2, 2, 528, 526, 3, 2, 2, 2, 529, 530, 7, 72, 2, 2, 530, 531, 7, 8, 2, 2, 531, 532, 5, 64, 33, 2, 532, 533, 7, 9, 2, 2, 533, 534, 5, 58, 30, 2, 534, 562, 3, 2, 2, 2, 535, 536, 7, 73, 2, 2, 536, 537, 7, 8, 2, 2, 537, 538, 5, 68, 35, 2, 538, 539, 7, 9, 2, 2, 539, 540, 7, 4, 2, 2, 540, 541, 5, 60, 31, 2, 541, 542, 7, 5, 2, 2, 542, 562, 3, 2, 2, 2, 543, 545, 7, 74, 2, 2, 544, 546, 5, 68, 35, 2, 545, 544, 3, 2, 2, 2, 545, 546, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 562, 7, 10, 2, 2, 548, 549, 7, 75, 2, 2, 549, 562, 7, 10, 2, 2, 550, 551, 7, 76, 2, 2, 551, 562, 7, 10, 2, 2, 552, 554, 7, 77, 2, 2, 553, 555, 5, 76, 39, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 3, 2, 2, 2, 556, 557, 7, 4, 2, 2, 557, 558, 5, 80, 41, 2, 558, 559, 7, 132, 2, 2, 559, 562, 3, 2, 2, 2, 560, 562, 5, 74, 38, 2, 561, 477, 3, 2, 2, 2, 561, 480, 3, 2, 2, 2, 561, 485, 3, 2, 2, 2, 561, 488, 3, 2, 2, 2, 561, 500, 3, 2, 2, 2, 561, 512, 3, 2, 2, 2, 561, 526, 3, 2, 2, 2, 561, 535, 3, 2, 2, 2, 561, 543, 3, 2, 2, 2, 561, 548, 3, 2, 2, 2, 561, 550, 3, 2, 2, 2, 561, 552, 3, 2, 2, 2, 561, 560, 3, 2, 2, 2, 562, 59, 3, 2, 2, 2, 563, 565, 5, 62, 32, 2, 564, 563, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 564, 3, 2, 2, 2, 566, 567, 3, 2, 2, 2, 567, 573, 3, 2, 2, 2, 568, 569, 7, 78, 2, 2, 569, 571, 7, 11, 2, 2, 570, 572, 5, 56, 29, 2, 571, 570, 3, 2, 2, 2, 571, 572, 3, 2, 2, 2, 572, 574, 3, 2, 2, 2, 573, 568, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 61, 3, 2, 2, 2, 575, 576, 7, 79, 2, 2, 576, 577, 5, 70, 36, 2, 577, 579, 7, 11, 2, 2, 578, 580, 5, 56, 29, 2, 579, 578, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 63, 3, 2, 2, 2, 581, 582, 5, 66, 34, 2, 582, 583, 7, 10, 2, 2, 583, 584, 5, 68, 35, 2, 584, 586, 7, 10, 2, 2, 585, 587, 5, 68, 35, 2, 586, 585, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 604, 3, 2, 2, 2, 588, 592, 5, 22, 12, 2, 589, 591, 5, 24, 13, 2, 590, 589, 3, 2, 2, 2, 591, 594, 3, 2, 2, 2, 592, 590, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 596, 3, 2, 2, 2, 594, 592, 3, 2, 2, 2, 595, 588, 3, 2, 2, 2, 595, 596, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 598, 7, 109, 2, 2, 598, 599, 7, 11, 2, 2, 599, 600, 5, 70, 36, 2, 600, 601, 7, 13, 2, 2, 601, 602, 5, 70, 36, 2, 602, 604, 3, 2, 2, 2, 603, 581, 3, 2, 2, 2, 603, 595, 3, 2, 2, 2, 604, 65, 3, 2, 2, 2, 605, 607, 5, 14, 8, 2, 606, 605, 3, 2, 2, 2, 606, 607, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 610, 5, 68, 35, 2, 609, 606, 3, 2, 2, 2, 609, 608, 3, 2, 2, 2, 610, 67, 3, 2, 2, 2, 611, 612, 8, 35, 1, 2, 612, 613, 5, 70, 36, 2, 613, 619, 3, 2, 2, 2, 614, 615, 12, 3, 2, 2, 615, 616, 7, 12, 2, 2, 616, 618, 5, 70, 36, 2, 617, 614, 3, 2, 2, 2, 618, 621, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 619, 620, 3, 2, 2, 2, 620, 69, 3, 2, 2, 2, 621, 619, 3, 2, 2, 2, 622, 623, 8, 36, 1, 2, 623, 624, 7, 8, 2, 2, 624, 625, 5, 68, 35, 2, 625, 626, 7, 9, 2, 2, 626, 677, 3, 2, 2, 2, 627, 628, 7, 82, 2, 2, 628, 631, 7, 8, 2, 2, 629, 632, 5, 70, 36, 2, 630, 632, 5, 28, 15, 2, 631, 629, 3, 2, 2, 2, 631, 630, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 634, 7, 9, 2, 2, 634, 677, 3, 2, 2, 2, 635, 636, 7, 83, 2, 2, 636, 639, 7, 8, 2, 2, 637, 640, 5, 70, 36, 2, 638, 640, 5, 28, 15, 2, 639, 637, 3, 2, 2, 2, 639, 638, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 642, 7, 9, 2, 2, 642, 677, 3, 2, 2, 2, 643, 644, 7, 8, 2, 2, 644, 645, 5, 28, 15, 2, 645, 646, 7, 9, 2, 2, 646, 647, 5, 70, 36, 26, 647, 677, 3, 2, 2, 2, 648, 649, 9, 2, 2, 2, 649, 677, 5, 70, 36, 25, 650, 651, 7, 19, 2, 2, 651, 677, 5, 70, 36, 23, 652, 653, 9, 3, 2, 2, 653, 677, 5, 70, 36, 22, 654, 655, 9, 4, 2, 2, 655, 677, 5, 70, 36, 18, 656, 657, 7, 4, 2, 2, 657, 662, 5, 70, 36, 2, 658, 659, 7, 12, 2, 2, 659, 661, 5, 70, 36, 2, 660, 658, 3, 2, 2, 2, 661, 664, 3, 2, 2, 2, 662, 660, 3, 2, 2, 2, 662, 663, 3, 2, 2, 2, 663, 665, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 665, 666, 7, 5, 2, 2, 666, 677, 3, 2, 2, 2, 667, 677, 7, 109, 2, 2, 668, 677, 7, 100, 2, 2, 669, 671, 7, 95, 2, 2, 670, 669, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 670, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 677, 3, 2, 2, 2, 674, 677, 7, 96, 2, 2, 675, 677, 7, 93, 2, 2, 676, 622, 3, 2, 2, 2, 676, 627, 3, 2, 2, 2, 676, 635, 3, 2, 2, 2, 676, 643, 3, 2, 2, 2, 676, 648, 3, 2, 2, 2, 676, 650, 3, 2, 2, 2, 676, 652, 3, 2, 2, 2, 676, 654, 3, 2, 2, 2, 676, 656, 3, 2, 2, 2, 676, 667, 3, 2, 2, 2, 676, 668, 3, 2, 2, 2, 676, 670, 3, 2, 2, 2, 676, 674, 3, 2, 2, 2, 676, 675, 3, 2, 2, 2, 677, 738, 3, 2, 2, 2, 678, 679, 12, 21, 2, 2, 679, 680, 9, 5, 2, 2, 680, 737, 5, 70, 36, 22, 681, 682, 12, 20, 2, 2, 682, 683, 9, 6, 2, 2, 683, 737, 5, 70, 36, 21, 684, 685, 12, 19, 2, 2, 685, 686, 9, 7, 2, 2, 686, 737, 5, 70, 36, 20, 687, 688, 12, 17, 2, 2, 688, 689, 9, 8, 2, 2, 689, 737, 5, 70, 36, 18, 690, 691, 12, 16, 2, 2, 691, 692, 7, 24, 2, 2, 692, 737, 5, 70, 36, 17, 693, 694, 12, 15, 2, 2, 694, 695, 7, 26, 2, 2, 695, 737, 5, 70, 36, 16, 696, 697, 12, 14, 2, 2, 697, 698, 7, 27, 2, 2, 698, 737, 5, 70, 36, 15, 699, 700, 12, 13, 2, 2, 700, 701, 7, 36, 2, 2, 701, 737, 5, 70, 36, 14, 702, 703, 12, 12, 2, 2, 703, 704, 7, 37, 2, 2, 704, 737, 5, 70, 36, 13, 705, 706, 12, 11, 2, 2, 706, 707, 7, 14, 2, 2, 707, 708, 5, 70, 36, 2, 708, 709, 7, 11, 2, 2, 709, 710, 5, 70, 36, 12, 710, 737, 3, 2, 2, 2, 711, 712, 12, 10, 2, 2, 712, 713, 7, 38, 2, 2, 713, 737, 5, 70, 36, 10, 714, 715, 12, 9, 2, 2, 715, 716, 7, 39, 2, 2, 716, 737, 5, 70, 36, 9, 717, 718, 12, 32, 2, 2, 718, 719, 7, 15, 2, 2, 719, 737, 7, 109, 2, 2, 720, 721, 12, 31, 2, 2, 721, 722, 7, 16, 2, 2, 722, 737, 7, 109, 2, 2, 723, 724, 12, 30, 2, 2, 724, 726, 7, 8, 2, 2, 725, 727, 5, 72, 37, 2, 726, 725, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 728, 3, 2, 2, 2, 728, 737, 7, 9, 2, 2, 729, 730, 12, 27, 2, 2, 730, 731, 7, 6, 2, 2, 731, 732, 5, 68, 35, 2, 732, 733, 7, 7, 2, 2, 733, 737, 3, 2, 2, 2, 734, 735, 12, 24, 2, 2, 735, 737, 9, 2, 2, 2, 736, 678, 3, 2, 2, 2, 736, 681, 3, 2, 2, 2, 736, 684, 3, 2, 2, 2, 736, 687, 3, 2, 2, 2, 736, 690, 3, 2, 2, 2, 736, 693, 3, 2, 2, 2, 736, 696, 3, 2, 2, 2, 736, 699, 3, 2, 2, 2, 736, 702, 3, 2, 2, 2, 736, 705, 3, 2, 2, 2, 736, 711, 3, 2, 2, 2, 736, 714, 3, 2, 2, 2, 736, 717, 3, 2, 2, 2, 736, 720, 3, 2, 2, 2, 736, 723, 3, 2, 2, 2, 736, 729, 3, 2, 2, 2, 736, 734, 3, 2, 2, 2, 737, 740, 3, 2, 2, 2, 738, 736, 3, 2, 2, 2, 738, 739, 3, 2, 2, 2, 739, 71, 3, 2, 2, 2, 740, 738, 3, 2, 2, 2, 741, 746, 5, 70, 36, 2, 742, 743, 7, 12, 2, 2, 743, 745, 5, 70, 36, 2, 744, 742, 3, 2, 2, 2, 745, 748, 3, 2, 2, 2, 746, 744, 3, 2, 2, 2, 746, 747, 3, 2, 2, 2, 747, 73, 3, 2, 2, 2, 748, 746, 3, 2, 2, 2, 749, 751, 7, 84, 2, 2, 750, 752, 5, 76, 39, 2, 751, 750, 3, 2, 2, 2, 751, 752, 3, 2, 2, 2, 752, 753, 3, 2, 2, 2, 753, 754, 7, 94, 2, 2, 754, 75, 3, 2, 2, 2, 755, 756, 7, 8, 2, 2, 756, 761, 5, 78, 40, 2, 757, 758, 7, 12, 2, 2, 758, 760, 5, 78, 40, 2, 759, 757, 3, 2, 2, 2, 760, 763, 3, 2, 2, 2, 761, 759, 3, 2, 2, 2, 761, 762, 3, 2, 2, 2, 762, 764, 3, 2, 2, 2, 763, 761, 3, 2, 2, 2, 764, 765, 7, 9, 2, 2, 765, 77, 3, 2, 2, 2, 766, 767, 7, 85, 2, 2, 767, 782, 7, 95, 2, 2, 768, 769, 7, 86, 2, 2, 769, 782, 7, 109, 2, 2, 770, 771, 7, 87, 2, 2, 771, 782, 7, 95, 2, 2, 772, 773, 7, 88, 2, 2, 773, 782, 5, 70, 36, 2, 774, 775, 7, 89, 2, 2, 775, 782, 5, 70, 36, 2, 776, 779, 7, 44, 2, 2, 777, 780, 7, 55, 2, 2, 778, 780, 5, 70, 36, 2, 779, 777, 3, 2, 2, 2, 779, 778, 3, 2, 2, 2, 780, 782, 3, 2, 2, 2, 781, 766, 3, 2, 2, 2, 781, 768, 3, 2, 2, 2, 781, 770, 3, 2, 2, 2, 781, 772, 3, 2, 2, 2, 781, 774, 3, 2, 2, 2, 781, 776, 3, 2, 2, 2, 782, 79, 3, 2, 2, 2, 783, 785, 5, 82, 42, 2, 784, 783, 3, 2, 2, 2, 785, 788, 3, 2, 2, 2, 786, 784, 3, 2, 2, 2, 786, 787, 3, 2, 2, 2, 787, 81, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 789, 793, 5, 84, 43, 2, 790, 793, 5, 86, 44, 2, 791, 793, 5, 88, 45, 2, 792, 789, 3, 2, 2, 2, 792, 790, 3, 2, 2, 2, 792, 791, 3, 2, 2, 2, 793, 83, 3, 2, 2, 2, 794, 795, 7, 145, 2, 2, 795, 799, 7, 116, 2, 2, 796, 797, 7, 144, 2, 2, 797, 799, 7, 116, 2, 2, 798, 794, 3, 2, 2, 2, 798, 796, 3, 2, 2, 2, 799, 85, 3, 2, 2, 2, 800, 802, 7, 114, 2, 2, 801, 803, 5, 90, 46, 2, 802, 801, 3, 2, 2, 2, 802, 803, 3, 2, 2, 2, 803, 87, 3, 2, 2, 2, 804, 805, 7, 113, 2, 2, 805, 810, 5, 92, 47, 2, 806, 807, 7, 117, 2, 2, 807, 809, 5, 92, 47, 2, 808, 806, 3, 2, 2, 2, 809, 812, 3, 2, 2, 2, 810, 808, 3, 2, 2, 2, 810, 811, 3, 2, 2, 2, 811, 89, 3, 2, 2, 2, 812, 810, 3, 2, 2, 2, 813, 837, 5, 92, 47, 2, 814, 815, 7, 115, 2, 2, 815, 837, 5, 92, 47, 2, 816, 817, 5, 92, 47, 2, 817, 818, 7, 117, 2, 2, 818, 819, 7, 145, 2, 2, 819, 837, 3, 2, 2, 2, 820, 821, 7, 118, 2, 2, 821, 822, 5, 92, 47, 2, 822, 823, 7, 119, 2, 2, 823, 824, 7, 117, 2, 2, 824, 825, 7, 145, 2, 2, 825, 837, 3, 2, 2, 2, 826, 827, 7, 118, 2, 2, 827, 828, 5, 92, 47, 2, 828, 829, 7, 117, 2, 2, 829, 830, 7, 145, 2, 2, 830, 831, 7, 119, 2, 2, 831, 837, 3, 2, 2, 2, 832, 833, 7, 118, 2, 2, 833, 834, 5, 92, 47, 2, 834, 835, 7, 119, 2, 2, 835, 837, 3, 2, 2, 2, 836, 813, 3, 2, 2, 2, 836, 814, 3, 2, 2, 2, 836, 816, 3, 2, 2, 2, 836, 820, 3, 2, 2, 2, 836, 826, 3, 2, 2, 2, 836, 832, 3, 2, 2, 2, 837, 91, 3, 2, 2, 2, 838, 839, 8, 47, 1, 2, 839, 840, 7, 120, 2, 2, 840, 841, 5, 92, 47, 2, 841, 842, 7, 121, 2, 2, 842, 853, 3, 2, 2, 2, 843, 844, 9, 9, 2, 2, 844, 853, 5, 92, 47, 10, 845, 853, 7, 145, 2, 2, 846, 853, 7, 143, 2, 2, 847, 848, 7, 131, 2, 2, 848, 849, 7, 145, 2, 2, 849, 853, 7, 132, 2, 2, 850, 853, 7, 133, 2, 2, 851, 853, 7, 142, 2, 2, 852, 838, 3, 2, 2, 2, 852, 843, 3, 2, 2, 2, 852, 845, 3, 2, 2, 2, 852, 846, 3, 2, 2, 2, 852, 847, 3, 2, 2, 2, 852, 850, 3, 2, 2, 2, 852, 851, 3, 2, 2, 2, 853, 868, 3, 2, 2, 2, 854, 855, 12, 12, 2, 2, 855, 856, 7, 122, 2, 2, 856, 867, 5, 92, 47, 13, 857, 858, 12, 11, 2, 2, 858, 859, 9, 10, 2, 2, 859, 867, 5, 92, 47, 12, 860, 861, 12, 9, 2, 2, 861, 862, 9, 11, 2, 2, 862, 867, 5, 92, 47, 10, 863, 864, 12, 8, 2, 2, 864, 865, 9, 12, 2, 2, 865, 867, 5, 92, 47, 9, 866, 854, 3, 2, 2, 2, 866, 857, 3, 2, 2, 2, 866, 860, 3, 2, 2, 2, 866, 863, 3, 2, 2, 2, 867, 870, 3, 2, 2, 2, 868, 866, 3, 2, 2, 2, 868, 869, 3, 2, 2, 2, 869, 93, 3, 2, 2, 2, 870, 868, 3, 2, 2, 2, 86, 103, 108, 128, 137, 147, 153, 161, 168, 177, 182, 188, 193, 198, 205, 212, 217, 229, 232, 234, 245, 252, 257, 263, 265, 273, 279, 291, 305, 311, 317, 323, 328, 337, 344, 350, 361, 422, 426, 437, 456, 465, 470, 475, 482, 495, 500, 512, 526, 545, 554, 561, 566, 571, 573, 579, 586, 592, 595, 603, 606, 609, 619, 631, 639, 662, 672, 676, 726, 736, 738, 746, 751, 761, 779, 781, 786, 792, 798, 802, 810, 836, 852, 866, 868] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 762fe2bd2..796408706 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -34,18 +34,18 @@ public class KickCParser extends Parser { ASM=75, DEFAULT=76, CASE=77, STRUCT=78, ENUM=79, SIZEOF=80, TYPEID=81, KICKASM=82, RESOURCE=83, USES=84, CLOBBERS=85, BYTES=86, CYCLES=87, LOGIC_NOT=88, SIGNEDNESS=89, SIMPLETYPE=90, BOOLEAN=91, KICKASM_BODY=92, STRING=93, - CHAR=94, DEFINE=95, DEFINE_CONTINUE=96, NUMBER=97, NUMFLOAT=98, BINFLOAT=99, - DECFLOAT=100, HEXFLOAT=101, NUMINT=102, BININTEGER=103, DECINTEGER=104, - HEXINTEGER=105, NAME=106, WS=107, COMMENT_LINE=108, COMMENT_BLOCK=109, - ASM_BYTE=110, ASM_MNEMONIC=111, ASM_IMM=112, ASM_COLON=113, ASM_COMMA=114, - ASM_PAR_BEGIN=115, ASM_PAR_END=116, ASM_BRACKET_BEGIN=117, ASM_BRACKET_END=118, - ASM_DOT=119, ASM_SHIFT_LEFT=120, ASM_SHIFT_RIGHT=121, ASM_PLUS=122, ASM_MINUS=123, - ASM_LESS_THAN=124, ASM_GREATER_THAN=125, ASM_MULTIPLY=126, ASM_DIVIDE=127, - ASM_CURLY_BEGIN=128, ASM_CURLY_END=129, ASM_NUMBER=130, ASM_NUMFLOAT=131, - ASM_BINFLOAT=132, ASM_DECFLOAT=133, ASM_HEXFLOAT=134, ASM_NUMINT=135, - ASM_BININTEGER=136, ASM_DECINTEGER=137, ASM_HEXINTEGER=138, ASM_CHAR=139, - ASM_MULTI_REL=140, ASM_MULTI_NAME=141, ASM_NAME=142, ASM_WS=143, ASM_COMMENT_LINE=144, - ASM_COMMENT_BLOCK=145; + CHAR=94, DEFINE=95, DEFINE_CONTINUE=96, UNDEF=97, NUMBER=98, NUMFLOAT=99, + BINFLOAT=100, DECFLOAT=101, HEXFLOAT=102, NUMINT=103, BININTEGER=104, + DECINTEGER=105, HEXINTEGER=106, NAME=107, WS=108, COMMENT_LINE=109, COMMENT_BLOCK=110, + ASM_BYTE=111, ASM_MNEMONIC=112, ASM_IMM=113, ASM_COLON=114, ASM_COMMA=115, + ASM_PAR_BEGIN=116, ASM_PAR_END=117, ASM_BRACKET_BEGIN=118, ASM_BRACKET_END=119, + ASM_DOT=120, ASM_SHIFT_LEFT=121, ASM_SHIFT_RIGHT=122, ASM_PLUS=123, ASM_MINUS=124, + ASM_LESS_THAN=125, ASM_GREATER_THAN=126, ASM_MULTIPLY=127, ASM_DIVIDE=128, + ASM_CURLY_BEGIN=129, ASM_CURLY_END=130, ASM_NUMBER=131, ASM_NUMFLOAT=132, + ASM_BINFLOAT=133, ASM_DECFLOAT=134, ASM_HEXFLOAT=135, ASM_NUMINT=136, + ASM_BININTEGER=137, ASM_DECINTEGER=138, ASM_HEXINTEGER=139, ASM_CHAR=140, + ASM_MULTI_REL=141, ASM_MULTI_NAME=142, ASM_NAME=143, ASM_WS=144, ASM_COMMENT_LINE=145, + ASM_COMMENT_BLOCK=146; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_declOrImport = 3, RULE_importDecl = 4, RULE_decl = 5, RULE_declVariables = 6, RULE_declVariableList = 7, @@ -89,8 +89,8 @@ public class KickCParser extends Parser { "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", "'enum'", "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, null, null, - null, "'#define'", "'\\\n'", null, null, null, null, null, null, null, - null, null, null, null, null, null, "'.byte'", null, "'#'" + null, "'#define'", "'\\\n'", "'#undef'", null, null, null, null, null, + null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -110,16 +110,16 @@ public class KickCParser extends Parser { "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", - "DEFINE", "DEFINE_CONTINUE", "NUMBER", "NUMFLOAT", "BINFLOAT", "DECFLOAT", - "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", "NAME", - "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", - "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", - "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", - "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", - "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", - "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", - "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", - "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" + "DEFINE", "DEFINE_CONTINUE", "UNDEF", "NUMBER", "NUMFLOAT", "BINFLOAT", + "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", + "NAME", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", + "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", + "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", + "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", + "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", + "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", + "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", + "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -6177,7 +6177,7 @@ public class KickCParser extends Parser { setState(784); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 110)) & ~0x3f) == 0 && ((1L << (_la - 110)) & ((1L << (ASM_BYTE - 110)) | (1L << (ASM_MNEMONIC - 110)) | (1L << (ASM_MULTI_NAME - 110)) | (1L << (ASM_NAME - 110)))) != 0)) { + while (((((_la - 111)) & ~0x3f) == 0 && ((1L << (_la - 111)) & ((1L << (ASM_BYTE - 111)) | (1L << (ASM_MNEMONIC - 111)) | (1L << (ASM_MULTI_NAME - 111)) | (1L << (ASM_NAME - 111)))) != 0)) { { { setState(781); @@ -6938,7 +6938,7 @@ public class KickCParser extends Parser { _prevctx = _localctx; setState(841); _la = _input.LA(1); - if ( !(((((_la - 122)) & ~0x3f) == 0 && ((1L << (_la - 122)) & ((1L << (ASM_PLUS - 122)) | (1L << (ASM_MINUS - 122)) | (1L << (ASM_LESS_THAN - 122)) | (1L << (ASM_GREATER_THAN - 122)))) != 0)) ) { + if ( !(((((_la - 123)) & ~0x3f) == 0 && ((1L << (_la - 123)) & ((1L << (ASM_PLUS - 123)) | (1L << (ASM_MINUS - 123)) | (1L << (ASM_LESS_THAN - 123)) | (1L << (ASM_GREATER_THAN - 123)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -7220,7 +7220,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0093\u0368\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0094\u0368\4\2\t"+ "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ @@ -7285,8 +7285,8 @@ public class KickCParser extends Parser { "/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\7/\u0363\n/\f/\16/\u0366\13/\3/\2\t\20"+ "\34\36*DF\\\60\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64"+ "\668:<>@BDFHJLNPRTVXZ\\\2\r\3\2\26\27\5\2\21\22\30\31ZZ\4\2 ##\3\2\34"+ - "\35\3\2\23\25\3\2\21\22\3\2\36#\3\2|\177\3\2z{\3\2\u0080\u0081\3\2|}\2"+ - "\u03e4\2^\3\2\2\2\4a\3\2\2\2\6g\3\2\2\2\bl\3\2\2\2\nn\3\2\2\2\f\u0080"+ + "\35\3\2\23\25\3\2\21\22\3\2\36#\3\2}\u0080\3\2{|\3\2\u0081\u0082\3\2}"+ + "~\2\u03e4\2^\3\2\2\2\4a\3\2\2\2\6g\3\2\2\2\bl\3\2\2\2\nn\3\2\2\2\f\u0080"+ "\3\2\2\2\16\u0082\3\2\2\2\20\u0085\3\2\2\2\22\u009c\3\2\2\2\24\u00c1\3"+ "\2\2\2\26\u00c6\3\2\2\2\30\u00d0\3\2\2\2\32\u00d7\3\2\2\2\34\u00dd\3\2"+ "\2\2\36\u00fc\3\2\2\2 \u010c\3\2\2\2\"\u010f\3\2\2\2$\u011b\3\2\2\2&\u011e"+ @@ -7314,13 +7314,13 @@ public class KickCParser extends Parser { "\u009a\3\2\2\2\u009a\21\3\2\2\2\u009b\u0099\3\2\2\2\u009c\u009d\7)\2\2"+ "\u009d\u00a1\5\26\f\2\u009e\u00a0\5\30\r\2\u009f\u009e\3\2\2\2\u00a0\u00a3"+ "\3\2\2\2\u00a1\u009f\3\2\2\2\u00a1\u00a2\3\2\2\2\u00a2\u00a4\3\2\2\2\u00a3"+ - "\u00a1\3\2\2\2\u00a4\u00a8\7l\2\2\u00a5\u00a7\5\32\16\2\u00a6\u00a5\3"+ + "\u00a1\3\2\2\2\u00a4\u00a8\7m\2\2\u00a5\u00a7\5\32\16\2\u00a6\u00a5\3"+ "\2\2\2\u00a7\u00aa\3\2\2\2\u00a8\u00a6\3\2\2\2\u00a8\u00a9\3\2\2\2\u00a9"+ "\u00ab\3\2\2\2\u00aa\u00a8\3\2\2\2\u00ab\u00ac\b\n\1\2\u00ac\23\3\2\2"+ - "\2\u00ad\u00b1\7l\2\2\u00ae\u00b0\5\32\16\2\u00af\u00ae\3\2\2\2\u00b0"+ + "\2\u00ad\u00b1\7m\2\2\u00ae\u00b0\5\32\16\2\u00af\u00ae\3\2\2\2\u00b0"+ "\u00b3\3\2\2\2\u00b1\u00af\3\2\2\2\u00b1\u00b2\3\2\2\2\u00b2\u00b6\3\2"+ "\2\2\u00b3\u00b1\3\2\2\2\u00b4\u00b5\7&\2\2\u00b5\u00b7\5F$\2\u00b6\u00b4"+ - "\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00c2\3\2\2\2\u00b8\u00bc\7l\2\2\u00b9"+ + "\3\2\2\2\u00b6\u00b7\3\2\2\2\u00b7\u00c2\3\2\2\2\u00b8\u00bc\7m\2\2\u00b9"+ "\u00bb\5\32\16\2\u00ba\u00b9\3\2\2\2\u00bb\u00be\3\2\2\2\u00bc\u00ba\3"+ "\2\2\2\u00bc\u00bd\3\2\2\2\u00bd\u00bf\3\2\2\2\u00be\u00bc\3\2\2\2\u00bf"+ "\u00c0\7&\2\2\u00c0\u00c2\5J&\2\u00c1\u00ad\3\2\2\2\u00c1\u00b8\3\2\2"+ @@ -7350,23 +7350,23 @@ public class KickCParser extends Parser { "\u0108\7\7\2\2\u0104\u0105\f\b\2\2\u0105\u0106\7\b\2\2\u0106\u0108\7\t"+ "\2\2\u0107\u00fe\3\2\2\2\u0107\u0104\3\2\2\2\u0108\u010b\3\2\2\2\u0109"+ "\u0107\3\2\2\2\u0109\u010a\3\2\2\2\u010a\37\3\2\2\2\u010b\u0109\3\2\2"+ - "\2\u010c\u010d\7P\2\2\u010d\u010e\7l\2\2\u010e!\3\2\2\2\u010f\u0111\7"+ - "P\2\2\u0110\u0112\7l\2\2\u0111\u0110\3\2\2\2\u0111\u0112\3\2\2\2\u0112"+ + "\2\u010c\u010d\7P\2\2\u010d\u010e\7m\2\2\u010e!\3\2\2\2\u010f\u0111\7"+ + "P\2\2\u0110\u0112\7m\2\2\u0111\u0110\3\2\2\2\u0111\u0112\3\2\2\2\u0112"+ "\u0113\3\2\2\2\u0113\u0115\7\4\2\2\u0114\u0116\5$\23\2\u0115\u0114\3\2"+ "\2\2\u0116\u0117\3\2\2\2\u0117\u0115\3\2\2\2\u0117\u0118\3\2\2\2\u0118"+ "\u0119\3\2\2\2\u0119\u011a\7\5\2\2\u011a#\3\2\2\2\u011b\u011c\5\16\b\2"+ - "\u011c\u011d\7\n\2\2\u011d%\3\2\2\2\u011e\u011f\7Q\2\2\u011f\u0120\7l"+ - "\2\2\u0120\'\3\2\2\2\u0121\u0123\7Q\2\2\u0122\u0124\7l\2\2\u0123\u0122"+ + "\u011c\u011d\7\n\2\2\u011d%\3\2\2\2\u011e\u011f\7Q\2\2\u011f\u0120\7m"+ + "\2\2\u0120\'\3\2\2\2\u0121\u0123\7Q\2\2\u0122\u0124\7m\2\2\u0123\u0122"+ "\3\2\2\2\u0123\u0124\3\2\2\2\u0124\u0125\3\2\2\2\u0125\u0126\7\4\2\2\u0126"+ "\u0127\5*\26\2\u0127\u0128\7\5\2\2\u0128)\3\2\2\2\u0129\u012a\b\26\1\2"+ "\u012a\u012b\5,\27\2\u012b\u0131\3\2\2\2\u012c\u012d\f\3\2\2\u012d\u012e"+ "\7\f\2\2\u012e\u0130\5,\27\2\u012f\u012c\3\2\2\2\u0130\u0133\3\2\2\2\u0131"+ "\u012f\3\2\2\2\u0131\u0132\3\2\2\2\u0132+\3\2\2\2\u0133\u0131\3\2\2\2"+ - "\u0134\u0137\7l\2\2\u0135\u0136\7&\2\2\u0136\u0138\5F$\2\u0137\u0135\3"+ + "\u0134\u0137\7m\2\2\u0135\u0136\7&\2\2\u0136\u0138\5F$\2\u0137\u0135\3"+ "\2\2\2\u0137\u0138\3\2\2\2\u0138-\3\2\2\2\u0139\u013d\5\26\f\2\u013a\u013c"+ "\5\30\r\2\u013b\u013a\3\2\2\2\u013c\u013f\3\2\2\2\u013d\u013b\3\2\2\2"+ "\u013d\u013e\3\2\2\2\u013e\u0140\3\2\2\2\u013f\u013d\3\2\2\2\u0140\u0141"+ - "\7l\2\2\u0141\u0143\7\b\2\2\u0142\u0144\5\60\31\2\u0143\u0142\3\2\2\2"+ + "\7m\2\2\u0141\u0143\7\b\2\2\u0142\u0144\5\60\31\2\u0143\u0142\3\2\2\2"+ "\u0143\u0144\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0146\7\t\2\2\u0146\u0148"+ "\7\4\2\2\u0147\u0149\58\35\2\u0148\u0147\3\2\2\2\u0148\u0149\3\2\2\2\u0149"+ "\u014a\3\2\2\2\u014a\u014b\7\5\2\2\u014b/\3\2\2\2\u014c\u0151\5\62\32"+ @@ -7374,43 +7374,43 @@ public class KickCParser extends Parser { "\u0153\3\2\2\2\u0151\u014f\3\2\2\2\u0151\u0152\3\2\2\2\u0152\61\3\2\2"+ "\2\u0153\u0151\3\2\2\2\u0154\u0158\5\26\f\2\u0155\u0157\5\30\r\2\u0156"+ "\u0155\3\2\2\2\u0157\u015a\3\2\2\2\u0158\u0156\3\2\2\2\u0158\u0159\3\2"+ - "\2\2\u0159\u015b\3\2\2\2\u015a\u0158\3\2\2\2\u015b\u015c\7l\2\2\u015c"+ + "\2\2\u0159\u015b\3\2\2\2\u015a\u0158\3\2\2\2\u015b\u015c\7m\2\2\u015c"+ "\u015f\3\2\2\2\u015d\u015f\7\\\2\2\u015e\u0154\3\2\2\2\u015e\u015d\3\2"+ "\2\2\u015f\63\3\2\2\2\u0160\u0161\7*\2\2\u0161\u0162\7+\2\2\u0162\u0163"+ - "\3\2\2\2\u0163\u0164\7\b\2\2\u0164\u0169\7c\2\2\u0165\u0166\7\f\2\2\u0166"+ - "\u0168\7c\2\2\u0167\u0165\3\2\2\2\u0168\u016b\3\2\2\2\u0169\u0167\3\2"+ + "\3\2\2\2\u0163\u0164\7\b\2\2\u0164\u0169\7d\2\2\u0165\u0166\7\f\2\2\u0166"+ + "\u0168\7d\2\2\u0167\u0165\3\2\2\2\u0168\u016b\3\2\2\2\u0169\u0167\3\2"+ "\2\2\u0169\u016a\3\2\2\2\u016a\u016c\3\2\2\2\u016b\u0169\3\2\2\2\u016c"+ "\u01ab\7\t\2\2\u016d\u016e\7*\2\2\u016e\u016f\7,\2\2\u016f\u0170\3\2\2"+ - "\2\u0170\u0171\7\b\2\2\u0171\u0172\7c\2\2\u0172\u01ab\7\t\2\2\u0173\u0174"+ + "\2\u0170\u0171\7\b\2\2\u0171\u0172\7d\2\2\u0172\u01ab\7\t\2\2\u0173\u0174"+ "\7*\2\2\u0174\u0175\7-\2\2\u0175\u0176\3\2\2\2\u0176\u0177\7\b\2\2\u0177"+ - "\u0178\7l\2\2\u0178\u01ab\7\t\2\2\u0179\u017a\7*\2\2\u017a\u017b\7/\2"+ - "\2\u017b\u017c\3\2\2\2\u017c\u017d\7\b\2\2\u017d\u017e\7l\2\2\u017e\u01ab"+ + "\u0178\7m\2\2\u0178\u01ab\7\t\2\2\u0179\u017a\7*\2\2\u017a\u017b\7/\2"+ + "\2\u017b\u017c\3\2\2\2\u017c\u017d\7\b\2\2\u017d\u017e\7m\2\2\u017e\u01ab"+ "\7\t\2\2\u017f\u0180\7*\2\2\u0180\u0181\7.\2\2\u0181\u0182\3\2\2\2\u0182"+ "\u0183\7\b\2\2\u0183\u0184\7_\2\2\u0184\u01ab\7\t\2\2\u0185\u0186\7*\2"+ "\2\u0186\u0187\7\60\2\2\u0187\u0188\3\2\2\2\u0188\u0189\7\b\2\2\u0189"+ - "\u018a\7l\2\2\u018a\u01ab\7\t\2\2\u018b\u018c\7*\2\2\u018c\u018d\7\61"+ - "\2\2\u018d\u018e\3\2\2\2\u018e\u018f\7\b\2\2\u018f\u0190\7l\2\2\u0190"+ + "\u018a\7m\2\2\u018a\u01ab\7\t\2\2\u018b\u018c\7*\2\2\u018c\u018d\7\61"+ + "\2\2\u018d\u018e\3\2\2\2\u018e\u018f\7\b\2\2\u018f\u0190\7m\2\2\u0190"+ "\u01ab\7\t\2\2\u0191\u0192\7*\2\2\u0192\u0193\7\62\2\2\u0193\u0194\3\2"+ - "\2\2\u0194\u0195\7\b\2\2\u0195\u0196\7l\2\2\u0196\u01ab\7\t\2\2\u0197"+ + "\2\2\u0194\u0195\7\b\2\2\u0195\u0196\7m\2\2\u0196\u01ab\7\t\2\2\u0197"+ "\u0198\7*\2\2\u0198\u0199\7A\2\2\u0199\u019a\3\2\2\2\u019a\u019b\7\b\2"+ "\2\u019b\u019c\7B\2\2\u019c\u01ab\7\t\2\2\u019d\u019e\7*\2\2\u019e\u019f"+ - "\7C\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a1\7\b\2\2\u01a1\u01a6\7l\2\2\u01a2"+ - "\u01a3\7\f\2\2\u01a3\u01a5\7l\2\2\u01a4\u01a2\3\2\2\2\u01a5\u01a8\3\2"+ + "\7C\2\2\u019f\u01a0\3\2\2\2\u01a0\u01a1\7\b\2\2\u01a1\u01a6\7m\2\2\u01a2"+ + "\u01a3\7\f\2\2\u01a3\u01a5\7m\2\2\u01a4\u01a2\3\2\2\2\u01a5\u01a8\3\2"+ "\2\2\u01a6\u01a4\3\2\2\2\u01a6\u01a7\3\2\2\2\u01a7\u01a9\3\2\2\2\u01a8"+ "\u01a6\3\2\2\2\u01a9\u01ab\7\t\2\2\u01aa\u0160\3\2\2\2\u01aa\u016d\3\2"+ "\2\2\u01aa\u0173\3\2\2\2\u01aa\u0179\3\2\2\2\u01aa\u017f\3\2\2\2\u01aa"+ "\u0185\3\2\2\2\u01aa\u018b\3\2\2\2\u01aa\u0191\3\2\2\2\u01aa\u0197\3\2"+ "\2\2\u01aa\u019d\3\2\2\2\u01ab\65\3\2\2\2\u01ac\u01d7\7\63\2\2\u01ad\u01ae"+ - "\7\66\2\2\u01ae\u01af\7\b\2\2\u01af\u01b0\7c\2\2\u01b0\u01d7\7\t\2\2\u01b1"+ - "\u01b5\7;\2\2\u01b2\u01b3\7\b\2\2\u01b3\u01b4\7l\2\2\u01b4\u01b6\7\t\2"+ + "\7\66\2\2\u01ae\u01af\7\b\2\2\u01af\u01b0\7d\2\2\u01b0\u01d7\7\t\2\2\u01b1"+ + "\u01b5\7;\2\2\u01b2\u01b3\7\b\2\2\u01b3\u01b4\7m\2\2\u01b4\u01b6\7\t\2"+ "\2\u01b5\u01b2\3\2\2\2\u01b5\u01b6\3\2\2\2\u01b6\u01d7\3\2\2\2\u01b7\u01d7"+ "\7=\2\2\u01b8\u01d7\7>\2\2\u01b9\u01ba\7<\2\2\u01ba\u01bb\7\b\2\2\u01bb"+ - "\u01bc\7c\2\2\u01bc\u01d7\7\t\2\2\u01bd\u01d7\78\2\2\u01be\u01d7\79\2"+ + "\u01bc\7d\2\2\u01bc\u01d7\7\t\2\2\u01bd\u01d7\78\2\2\u01be\u01d7\79\2"+ "\2\u01bf\u01d7\7?\2\2\u01c0\u01d7\7@\2\2\u01c1\u01d7\7\64\2\2\u01c2\u01d7"+ "\7\65\2\2\u01c3\u01d7\7\67\2\2\u01c4\u01c8\7:\2\2\u01c5\u01c6\7\b\2\2"+ - "\u01c6\u01c7\7l\2\2\u01c7\u01c9\7\t\2\2\u01c8\u01c5\3\2\2\2\u01c8\u01c9"+ + "\u01c6\u01c7\7m\2\2\u01c7\u01c9\7\t\2\2\u01c8\u01c5\3\2\2\2\u01c8\u01c9"+ "\3\2\2\2\u01c9\u01d7\3\2\2\2\u01ca\u01cb\7+\2\2\u01cb\u01cc\7\b\2\2\u01cc"+ - "\u01d1\7c\2\2\u01cd\u01ce\7\f\2\2\u01ce\u01d0\7c\2\2\u01cf\u01cd\3\2\2"+ + "\u01d1\7d\2\2\u01cd\u01ce\7\f\2\2\u01ce\u01d0\7d\2\2\u01cf\u01cd\3\2\2"+ "\2\u01d0\u01d3\3\2\2\2\u01d1\u01cf\3\2\2\2\u01d1\u01d2\3\2\2\2\u01d2\u01d4"+ "\3\2\2\2\u01d3\u01d1\3\2\2\2\u01d4\u01d7\7\t\2\2\u01d5\u01d7\7B\2\2\u01d6"+ "\u01ac\3\2\2\2\u01d6\u01ad\3\2\2\2\u01d6\u01b1\3\2\2\2\u01d6\u01b7\3\2"+ @@ -7444,7 +7444,7 @@ public class KickCParser extends Parser { "\7K\2\2\u0225\u0232\7\n\2\2\u0226\u0227\7L\2\2\u0227\u0232\7\n\2\2\u0228"+ "\u022a\7M\2\2\u0229\u022b\5L\'\2\u022a\u0229\3\2\2\2\u022a\u022b\3\2\2"+ "\2\u022b\u022c\3\2\2\2\u022c\u022d\7\4\2\2\u022d\u022e\5P)\2\u022e\u022f"+ - "\7\u0083\2\2\u022f\u0232\3\2\2\2\u0230\u0232\5J&\2\u0231\u01dd\3\2\2\2"+ + "\7\u0084\2\2\u022f\u0232\3\2\2\2\u0230\u0232\5J&\2\u0231\u01dd\3\2\2\2"+ "\u0231\u01e0\3\2\2\2\u0231\u01e5\3\2\2\2\u0231\u01e8\3\2\2\2\u0231\u01f4"+ "\3\2\2\2\u0231\u0200\3\2\2\2\u0231\u020e\3\2\2\2\u0231\u0217\3\2\2\2\u0231"+ "\u021f\3\2\2\2\u0231\u0224\3\2\2\2\u0231\u0226\3\2\2\2\u0231\u0228\3\2"+ @@ -7460,7 +7460,7 @@ public class KickCParser extends Parser { "\f\2\u024d\u024f\5\30\r\2\u024e\u024d\3\2\2\2\u024f\u0252\3\2\2\2\u0250"+ "\u024e\3\2\2\2\u0250\u0251\3\2\2\2\u0251\u0254\3\2\2\2\u0252\u0250\3\2"+ "\2\2\u0253\u024c\3\2\2\2\u0253\u0254\3\2\2\2\u0254\u0255\3\2\2\2\u0255"+ - "\u0256\7l\2\2\u0256\u0257\7\13\2\2\u0257\u0258\5F$\2\u0258\u0259\7\r\2"+ + "\u0256\7m\2\2\u0256\u0257\7\13\2\2\u0257\u0258\5F$\2\u0258\u0259\7\r\2"+ "\2\u0259\u025a\5F$\2\u025a\u025c\3\2\2\2\u025b\u0245\3\2\2\2\u025b\u0253"+ "\3\2\2\2\u025cA\3\2\2\2\u025d\u025f\5\16\b\2\u025e\u025d\3\2\2\2\u025e"+ "\u025f\3\2\2\2\u025f\u0262\3\2\2\2\u0260\u0262\5D#\2\u0261\u025e\3\2\2"+ @@ -7481,7 +7481,7 @@ public class KickCParser extends Parser { "\22\u0290\u0291\7\4\2\2\u0291\u0296\5F$\2\u0292\u0293\7\f\2\2\u0293\u0295"+ "\5F$\2\u0294\u0292\3\2\2\2\u0295\u0298\3\2\2\2\u0296\u0294\3\2\2\2\u0296"+ "\u0297\3\2\2\2\u0297\u0299\3\2\2\2\u0298\u0296\3\2\2\2\u0299\u029a\7\5"+ - "\2\2\u029a\u02a5\3\2\2\2\u029b\u02a5\7l\2\2\u029c\u02a5\7c\2\2\u029d\u029f"+ + "\2\2\u029a\u02a5\3\2\2\2\u029b\u02a5\7m\2\2\u029c\u02a5\7d\2\2\u029d\u029f"+ "\7_\2\2\u029e\u029d\3\2\2\2\u029f\u02a0\3\2\2\2\u02a0\u029e\3\2\2\2\u02a0"+ "\u02a1\3\2\2\2\u02a1\u02a5\3\2\2\2\u02a2\u02a5\7`\2\2\u02a3\u02a5\7]\2"+ "\2\u02a4\u026e\3\2\2\2\u02a4\u0273\3\2\2\2\u02a4\u027b\3\2\2\2\u02a4\u0283"+ @@ -7499,8 +7499,8 @@ public class KickCParser extends Parser { "\f\13\2\2\u02c2\u02c3\7\16\2\2\u02c3\u02c4\5F$\2\u02c4\u02c5\7\13\2\2"+ "\u02c5\u02c6\5F$\f\u02c6\u02e1\3\2\2\2\u02c7\u02c8\f\n\2\2\u02c8\u02c9"+ "\7&\2\2\u02c9\u02e1\5F$\n\u02ca\u02cb\f\t\2\2\u02cb\u02cc\7\'\2\2\u02cc"+ - "\u02e1\5F$\t\u02cd\u02ce\f \2\2\u02ce\u02cf\7\17\2\2\u02cf\u02e1\7l\2"+ - "\2\u02d0\u02d1\f\37\2\2\u02d1\u02d2\7\20\2\2\u02d2\u02e1\7l\2\2\u02d3"+ + "\u02e1\5F$\t\u02cd\u02ce\f \2\2\u02ce\u02cf\7\17\2\2\u02cf\u02e1\7m\2"+ + "\2\u02d0\u02d1\f\37\2\2\u02d1\u02d2\7\20\2\2\u02d2\u02e1\7m\2\2\u02d3"+ "\u02d4\f\36\2\2\u02d4\u02d6\7\b\2\2\u02d5\u02d7\5H%\2\u02d6\u02d5\3\2"+ "\2\2\u02d6\u02d7\3\2\2\2\u02d7\u02d8\3\2\2\2\u02d8\u02e1\7\t\2\2\u02d9"+ "\u02da\f\33\2\2\u02da\u02db\7\6\2\2\u02db\u02dc\5D#\2\u02dc\u02dd\7\7"+ @@ -7519,7 +7519,7 @@ public class KickCParser extends Parser { "\u02f6\7\f\2\2\u02f6\u02f8\5N(\2\u02f7\u02f5\3\2\2\2\u02f8\u02fb\3\2\2"+ "\2\u02f9\u02f7\3\2\2\2\u02f9\u02fa\3\2\2\2\u02fa\u02fc\3\2\2\2\u02fb\u02f9"+ "\3\2\2\2\u02fc\u02fd\7\t\2\2\u02fdM\3\2\2\2\u02fe\u02ff\7U\2\2\u02ff\u030e"+ - "\7_\2\2\u0300\u0301\7V\2\2\u0301\u030e\7l\2\2\u0302\u0303\7W\2\2\u0303"+ + "\7_\2\2\u0300\u0301\7V\2\2\u0301\u030e\7m\2\2\u0302\u0303\7W\2\2\u0303"+ "\u030e\7_\2\2\u0304\u0305\7X\2\2\u0305\u030e\5F$\2\u0306\u0307\7Y\2\2"+ "\u0307\u030e\5F$\2\u0308\u030b\7,\2\2\u0309\u030c\7\67\2\2\u030a\u030c"+ "\5F$\2\u030b\u0309\3\2\2\2\u030b\u030a\3\2\2\2\u030c\u030e\3\2\2\2\u030d"+ @@ -7528,28 +7528,28 @@ public class KickCParser extends Parser { "\5R*\2\u0310\u030f\3\2\2\2\u0311\u0314\3\2\2\2\u0312\u0310\3\2\2\2\u0312"+ "\u0313\3\2\2\2\u0313Q\3\2\2\2\u0314\u0312\3\2\2\2\u0315\u0319\5T+\2\u0316"+ "\u0319\5V,\2\u0317\u0319\5X-\2\u0318\u0315\3\2\2\2\u0318\u0316\3\2\2\2"+ - "\u0318\u0317\3\2\2\2\u0319S\3\2\2\2\u031a\u031b\7\u0090\2\2\u031b\u031f"+ - "\7s\2\2\u031c\u031d\7\u008f\2\2\u031d\u031f\7s\2\2\u031e\u031a\3\2\2\2"+ - "\u031e\u031c\3\2\2\2\u031fU\3\2\2\2\u0320\u0322\7q\2\2\u0321\u0323\5Z"+ + "\u0318\u0317\3\2\2\2\u0319S\3\2\2\2\u031a\u031b\7\u0091\2\2\u031b\u031f"+ + "\7t\2\2\u031c\u031d\7\u0090\2\2\u031d\u031f\7t\2\2\u031e\u031a\3\2\2\2"+ + "\u031e\u031c\3\2\2\2\u031fU\3\2\2\2\u0320\u0322\7r\2\2\u0321\u0323\5Z"+ ".\2\u0322\u0321\3\2\2\2\u0322\u0323\3\2\2\2\u0323W\3\2\2\2\u0324\u0325"+ - "\7p\2\2\u0325\u032a\5\\/\2\u0326\u0327\7t\2\2\u0327\u0329\5\\/\2\u0328"+ + "\7q\2\2\u0325\u032a\5\\/\2\u0326\u0327\7u\2\2\u0327\u0329\5\\/\2\u0328"+ "\u0326\3\2\2\2\u0329\u032c\3\2\2\2\u032a\u0328\3\2\2\2\u032a\u032b\3\2"+ "\2\2\u032bY\3\2\2\2\u032c\u032a\3\2\2\2\u032d\u0345\5\\/\2\u032e\u032f"+ - "\7r\2\2\u032f\u0345\5\\/\2\u0330\u0331\5\\/\2\u0331\u0332\7t\2\2\u0332"+ - "\u0333\7\u0090\2\2\u0333\u0345\3\2\2\2\u0334\u0335\7u\2\2\u0335\u0336"+ - "\5\\/\2\u0336\u0337\7v\2\2\u0337\u0338\7t\2\2\u0338\u0339\7\u0090\2\2"+ - "\u0339\u0345\3\2\2\2\u033a\u033b\7u\2\2\u033b\u033c\5\\/\2\u033c\u033d"+ - "\7t\2\2\u033d\u033e\7\u0090\2\2\u033e\u033f\7v\2\2\u033f\u0345\3\2\2\2"+ - "\u0340\u0341\7u\2\2\u0341\u0342\5\\/\2\u0342\u0343\7v\2\2\u0343\u0345"+ + "\7s\2\2\u032f\u0345\5\\/\2\u0330\u0331\5\\/\2\u0331\u0332\7u\2\2\u0332"+ + "\u0333\7\u0091\2\2\u0333\u0345\3\2\2\2\u0334\u0335\7v\2\2\u0335\u0336"+ + "\5\\/\2\u0336\u0337\7w\2\2\u0337\u0338\7u\2\2\u0338\u0339\7\u0091\2\2"+ + "\u0339\u0345\3\2\2\2\u033a\u033b\7v\2\2\u033b\u033c\5\\/\2\u033c\u033d"+ + "\7u\2\2\u033d\u033e\7\u0091\2\2\u033e\u033f\7w\2\2\u033f\u0345\3\2\2\2"+ + "\u0340\u0341\7v\2\2\u0341\u0342\5\\/\2\u0342\u0343\7w\2\2\u0343\u0345"+ "\3\2\2\2\u0344\u032d\3\2\2\2\u0344\u032e\3\2\2\2\u0344\u0330\3\2\2\2\u0344"+ "\u0334\3\2\2\2\u0344\u033a\3\2\2\2\u0344\u0340\3\2\2\2\u0345[\3\2\2\2"+ - "\u0346\u0347\b/\1\2\u0347\u0348\7w\2\2\u0348\u0349\5\\/\2\u0349\u034a"+ - "\7x\2\2\u034a\u0355\3\2\2\2\u034b\u034c\t\t\2\2\u034c\u0355\5\\/\n\u034d"+ - "\u0355\7\u0090\2\2\u034e\u0355\7\u008e\2\2\u034f\u0350\7\u0082\2\2\u0350"+ - "\u0351\7\u0090\2\2\u0351\u0355\7\u0083\2\2\u0352\u0355\7\u0084\2\2\u0353"+ - "\u0355\7\u008d\2\2\u0354\u0346\3\2\2\2\u0354\u034b\3\2\2\2\u0354\u034d"+ + "\u0346\u0347\b/\1\2\u0347\u0348\7x\2\2\u0348\u0349\5\\/\2\u0349\u034a"+ + "\7y\2\2\u034a\u0355\3\2\2\2\u034b\u034c\t\t\2\2\u034c\u0355\5\\/\n\u034d"+ + "\u0355\7\u0091\2\2\u034e\u0355\7\u008f\2\2\u034f\u0350\7\u0083\2\2\u0350"+ + "\u0351\7\u0091\2\2\u0351\u0355\7\u0084\2\2\u0352\u0355\7\u0085\2\2\u0353"+ + "\u0355\7\u008e\2\2\u0354\u0346\3\2\2\2\u0354\u034b\3\2\2\2\u0354\u034d"+ "\3\2\2\2\u0354\u034e\3\2\2\2\u0354\u034f\3\2\2\2\u0354\u0352\3\2\2\2\u0354"+ - "\u0353\3\2\2\2\u0355\u0364\3\2\2\2\u0356\u0357\f\f\2\2\u0357\u0358\7y"+ + "\u0353\3\2\2\2\u0355\u0364\3\2\2\2\u0356\u0357\f\f\2\2\u0357\u0358\7z"+ "\2\2\u0358\u0363\5\\/\r\u0359\u035a\f\13\2\2\u035a\u035b\t\n\2\2\u035b"+ "\u0363\5\\/\f\u035c\u035d\f\t\2\2\u035d\u035e\t\13\2\2\u035e\u0363\5\\"+ "/\n\u035f\u0360\f\b\2\2\u0360\u0361\t\f\2\2\u0361\u0363\5\\/\t\u0362\u0356"+ diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index e6d413ab2..38bd3cb13 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -94,55 +94,56 @@ STRING=93 CHAR=94 DEFINE=95 DEFINE_CONTINUE=96 -NUMBER=97 -NUMFLOAT=98 -BINFLOAT=99 -DECFLOAT=100 -HEXFLOAT=101 -NUMINT=102 -BININTEGER=103 -DECINTEGER=104 -HEXINTEGER=105 -NAME=106 -WS=107 -COMMENT_LINE=108 -COMMENT_BLOCK=109 -ASM_BYTE=110 -ASM_MNEMONIC=111 -ASM_IMM=112 -ASM_COLON=113 -ASM_COMMA=114 -ASM_PAR_BEGIN=115 -ASM_PAR_END=116 -ASM_BRACKET_BEGIN=117 -ASM_BRACKET_END=118 -ASM_DOT=119 -ASM_SHIFT_LEFT=120 -ASM_SHIFT_RIGHT=121 -ASM_PLUS=122 -ASM_MINUS=123 -ASM_LESS_THAN=124 -ASM_GREATER_THAN=125 -ASM_MULTIPLY=126 -ASM_DIVIDE=127 -ASM_CURLY_BEGIN=128 -ASM_CURLY_END=129 -ASM_NUMBER=130 -ASM_NUMFLOAT=131 -ASM_BINFLOAT=132 -ASM_DECFLOAT=133 -ASM_HEXFLOAT=134 -ASM_NUMINT=135 -ASM_BININTEGER=136 -ASM_DECINTEGER=137 -ASM_HEXINTEGER=138 -ASM_CHAR=139 -ASM_MULTI_REL=140 -ASM_MULTI_NAME=141 -ASM_NAME=142 -ASM_WS=143 -ASM_COMMENT_LINE=144 -ASM_COMMENT_BLOCK=145 +UNDEF=97 +NUMBER=98 +NUMFLOAT=99 +BINFLOAT=100 +DECFLOAT=101 +HEXFLOAT=102 +NUMINT=103 +BININTEGER=104 +DECINTEGER=105 +HEXINTEGER=106 +NAME=107 +WS=108 +COMMENT_LINE=109 +COMMENT_BLOCK=110 +ASM_BYTE=111 +ASM_MNEMONIC=112 +ASM_IMM=113 +ASM_COLON=114 +ASM_COMMA=115 +ASM_PAR_BEGIN=116 +ASM_PAR_END=117 +ASM_BRACKET_BEGIN=118 +ASM_BRACKET_END=119 +ASM_DOT=120 +ASM_SHIFT_LEFT=121 +ASM_SHIFT_RIGHT=122 +ASM_PLUS=123 +ASM_MINUS=124 +ASM_LESS_THAN=125 +ASM_GREATER_THAN=126 +ASM_MULTIPLY=127 +ASM_DIVIDE=128 +ASM_CURLY_BEGIN=129 +ASM_CURLY_END=130 +ASM_NUMBER=131 +ASM_NUMFLOAT=132 +ASM_BINFLOAT=133 +ASM_DECFLOAT=134 +ASM_HEXFLOAT=135 +ASM_NUMINT=136 +ASM_BININTEGER=137 +ASM_DECINTEGER=138 +ASM_HEXINTEGER=139 +ASM_CHAR=140 +ASM_MULTI_REL=141 +ASM_MULTI_NAME=142 +ASM_NAME=143 +ASM_WS=144 +ASM_COMMENT_LINE=145 +ASM_COMMENT_BLOCK=146 ';'=8 '..'=11 '?'=12 @@ -213,5 +214,6 @@ ASM_COMMENT_BLOCK=145 '!'=88 '#define'=95 '\\\n'=96 -'.byte'=110 -'#'=112 +'#undef'=97 +'.byte'=111 +'#'=113 diff --git a/src/main/java/dk/camelot64/kickc/preprocessor/CTokenSourcePreprocessor.java b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java similarity index 51% rename from src/main/java/dk/camelot64/kickc/preprocessor/CTokenSourcePreprocessor.java rename to src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java index 73c8eb5c1..b15af3e87 100644 --- a/src/main/java/dk/camelot64/kickc/preprocessor/CTokenSourcePreprocessor.java +++ b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java @@ -11,7 +11,7 @@ import java.util.*; *

* The preprocessor takes a token source as input and produces macro expanded tokens as output */ -public class CTokenSourcePreprocessor implements TokenSource { +public class CPreprocessor implements TokenSource { /** The token source containing the input */ private CTokenSource input; @@ -22,24 +22,10 @@ public class CTokenSourcePreprocessor implements TokenSource { */ private Map> defines; - /** The channel containing whitespace. */ - private final int channelWhitespace; - /** The token type for tokens containing whitespace. */ - private final int tokenWhitespace; - /** The token type for #define. */ - private final int tokenDefine; - /** The token type for identifiers. */ - private final int tokenIdentifier; - /** The token type for define multi-line. */ - private final int tokenDefineMultiline; - /** The token type for parenthesis begin. */ - private final int tokenParBegin; - /** The token type for parenthesis end. */ - private final int tokenParEnd; - /** The token type for comma. */ - private final int tokenComma; + /** The token types. */ + private CPreprocessorTokens tokenTypes; - public CTokenSourcePreprocessor(TokenSource input, int channelWhitespace, int tokenWhitespace, int tokenDefine, int tokenIdentifier, int tokenParBegin, int tokenParEnd, int tokenComma, int tokenDefineMultiline) { + public CPreprocessor(TokenSource input, CPreprocessorTokens tokenTypes) { if(input instanceof CTokenSource) { // If possible use the input directly instead of wrapping it this.input = (CTokenSource) input; @@ -47,14 +33,7 @@ public class CTokenSourcePreprocessor implements TokenSource { this.input = new CTokenSource(input); } this.defines = new LinkedHashMap<>(); - this.channelWhitespace = channelWhitespace; - this.tokenWhitespace = tokenWhitespace; - this.tokenDefine = tokenDefine; - this.tokenIdentifier = tokenIdentifier; - this.tokenParBegin = tokenParBegin; - this.tokenParEnd = tokenParEnd; - this.tokenComma = tokenComma; - this.tokenDefineMultiline = tokenDefineMultiline; + this.tokenTypes = tokenTypes; } @Override @@ -99,7 +78,7 @@ public class CTokenSourcePreprocessor implements TokenSource { /** * Perform any preprocessing needed on a token. If preprocessing is not needed nothing is done. - * + *

* This method may gobble more tokens from the source (for instance if a macro is being defined) and it may push tokens at the front of the source (if a macro is being expanded). * * @param inputToken The token to process @@ -107,76 +86,107 @@ public class CTokenSourcePreprocessor implements TokenSource { * @return true if the input token was preprocessed (and should not be added to the output). False if the token was not a preprocessor token */ private boolean preprocess(Token inputToken, CTokenSource cTokenSource) { - boolean wasPreprocessed; - if(inputToken.getType() == tokenDefine) { - // #define a new macro - find the name - skipWhitespace(cTokenSource); - String macroName = nextToken(cTokenSource, tokenIdentifier).getText(); - // Examine whether the macro has parameters - skipWhitespace(cTokenSource); - if(cTokenSource.peekToken().getType() == tokenParBegin) { - // Macro has parameters - find parameter name list - throw new CompileError("Macros with parameters not supported!"); - } - // Find body by gobbling tokens until the line ends - final ArrayList macroBody = new ArrayList<>(); - boolean macroRead = true; - while(macroRead) { - final Token bodyToken = cTokenSource.nextToken(); - if(bodyToken.getType() == tokenDefineMultiline) { - // Skip the multi-line token, add a newline token and continue reading body on the next line - final CommonToken newlineToken = new CommonToken(bodyToken); - newlineToken.setType(tokenWhitespace); - newlineToken.setChannel(channelWhitespace); - newlineToken.setText("\n"); - macroBody.add(newlineToken); - continue; - } - if(bodyToken.getChannel() == channelWhitespace && bodyToken.getText().contains("\n")) { - macroRead = false; - } else { - macroBody.add(bodyToken); - } - } - defines.put(macroName, macroBody); + if(inputToken.getType() == tokenTypes.define) { + defineMacro(cTokenSource); return true; - } else { - if(inputToken.getType() == tokenIdentifier) { - final String macroName = inputToken.getText(); - List macroBody = defines.get(macroName); - if(macroBody != null) { - // Check for macro recursion - if(inputToken instanceof ExpansionToken) { - if(((ExpansionToken) inputToken).getMacroNames().contains(macroName)) { - // Detected macro recursion in the expansion - add directly to output and do not perform expansion! - macroBody = null; - } - } - } - if(macroBody != null) { - // Macro expansion is needed - List expandedBody = new ArrayList<>(); - for(Token bodyToken : macroBody) { - final CommonToken expandedToken = new CommonToken(inputToken); - expandedToken.setText(bodyToken.getText()); - expandedToken.setType(bodyToken.getType()); - expandedToken.setChannel(bodyToken.getChannel()); - Set macroNames = new HashSet<>(); - if(inputToken instanceof ExpansionToken) { - // Transfer macro names to the new expansion - macroNames = ((ExpansionToken) inputToken).getMacroNames(); - } - macroNames.add(macroName); - expandedBody.add(new ExpansionToken(expandedToken, macroNames)); - } - cTokenSource.addSource(new ListTokenSource(expandedBody)); - return true; + } else if(inputToken.getType() == tokenTypes.undef) { + undefMacro(cTokenSource); + return true; + } else if(inputToken.getType() == tokenTypes.identifier) { + final boolean expanded = expandMacro(inputToken, cTokenSource); + if(expanded) return true; + } + return false; + } + + /** + * Encountered an IDENTIFIER. Attempt to expand as a macro. + * @param inputToken The IDENTIFIER token + * @param cTokenSource The token source usable for getting more tokens (eg. parameter values) - and for pushing the expanded body to the front for further processing. + * @return true if a macro was expanded. False if not. + */ + private boolean expandMacro(Token inputToken, CTokenSource cTokenSource) { + final String macroName = inputToken.getText(); + List macroBody = defines.get(macroName); + if(macroBody != null) { + // Check for macro recursion + if(inputToken instanceof ExpansionToken) { + if(((ExpansionToken) inputToken).getMacroNames().contains(macroName)) { + // Detected macro recursion in the expansion - add directly to output and do not perform expansion! + macroBody = null; } } } + if(macroBody != null) { + // Macro expansion is needed + List expandedBody = new ArrayList<>(); + for(Token bodyToken : macroBody) { + final CommonToken expandedToken = new CommonToken(inputToken); + expandedToken.setText(bodyToken.getText()); + expandedToken.setType(bodyToken.getType()); + expandedToken.setChannel(bodyToken.getChannel()); + Set macroNames = new HashSet<>(); + if(inputToken instanceof ExpansionToken) { + // Transfer macro names to the new expansion + macroNames = ((ExpansionToken) inputToken).getMacroNames(); + } + macroNames.add(macroName); + expandedBody.add(new ExpansionToken(expandedToken, macroNames)); + } + cTokenSource.addSource(new ListTokenSource(expandedBody)); + return true; + } return false; } + /** + * Undefine a macro. + * @param cTokenSource The token source used to get the name + */ + private void undefMacro(CTokenSource cTokenSource) { + // #define a new macro - find the name + skipWhitespace(cTokenSource); + String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + this.defines.remove(macroName); + } + + /** + * Define a macro. + * @param cTokenSource The token source used to get the macro name and body. + */ + private void defineMacro(CTokenSource cTokenSource) { + // #define a new macro - find the name + skipWhitespace(cTokenSource); + String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + // Examine whether the macro has parameters + skipWhitespace(cTokenSource); + if(cTokenSource.peekToken().getType() == tokenTypes.parBegin) { + // Macro has parameters - find parameter name list + throw new CompileError("Macros with parameters not supported!"); + } + // Find body by gobbling tokens until the line ends + final ArrayList macroBody = new ArrayList<>(); + boolean macroRead = true; + while(macroRead) { + final Token bodyToken = cTokenSource.nextToken(); + if(bodyToken.getType() == tokenTypes.defineMultiline) { + // Skip the multi-line token, add a newline token and continue reading body on the next line + final CommonToken newlineToken = new CommonToken(bodyToken); + newlineToken.setType(tokenTypes.whitespace); + newlineToken.setChannel(tokenTypes.channelWhitespace); + newlineToken.setText("\n"); + macroBody.add(newlineToken); + continue; + } + if(bodyToken.getChannel() == tokenTypes.channelWhitespace && bodyToken.getText().contains("\n")) { + macroRead = false; + } else { + macroBody.add(bodyToken); + } + } + defines.put(macroName, macroBody); + } + /** * Pull first token from a source and check that it matches the expected type. Any other type will produce an error. @@ -198,7 +208,7 @@ public class CTokenSourcePreprocessor implements TokenSource { * @param cTokenSource The token iterator */ private void skipWhitespace(CTokenSource cTokenSource) { - while(cTokenSource.peekToken().getChannel() == channelWhitespace) + while(cTokenSource.peekToken().getChannel() == tokenTypes.channelWhitespace) cTokenSource.nextToken(); } diff --git a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java new file mode 100644 index 000000000..99219af9c --- /dev/null +++ b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java @@ -0,0 +1,38 @@ +package dk.camelot64.kickc.preprocessor; + +/** + * Tokens used by the preprocessor + */ +public class CPreprocessorTokens { + + /** The channel containing whitespaces. */ + final int channelWhitespace; + /** The token type for tokens containing whitespace. */ + final int whitespace; + /** The token type for #define. */ + final int define; + /** The token type for define multi-line. */ + final int defineMultiline; + /** The token type for #undef. */ + final int undef; + /** The token type for identifiers. */ + final int identifier; + /** The token type for parenthesis begin. */ + final int parBegin; + /** The token type for parenthesis end. */ + final int parEnd; + /** The token type for comma. */ + final int comma; + + public CPreprocessorTokens(int channelWhitespace, int whitespace, int define, int identifier, int defineMultiline, int undef, int parBegin, int parEnd, int comma) { + this.channelWhitespace = channelWhitespace; + this.whitespace = whitespace; + this.define = define; + this.identifier = identifier; + this.defineMultiline = defineMultiline; + this.undef = undef; + this.parBegin = parBegin; + this.parEnd = parEnd; + this.comma = comma; + } +} diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 index a9a998084..7182b28d2 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 @@ -40,5 +40,6 @@ SIMPLETYPE: 'char' | 'int' ; IDENTIFIER: [a-zA-Z_]+ ; NUMBER: [0-9]+ ; DEFINE: '#define' ; +UNDEF: '#undef' ; DEFINE_CONTINUE: '\\\n' ; WHITESPACE: [ \t\r\n]+ -> channel(1) ; // Send whitespace to the hidden WS channel diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.interp b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.interp index cf45bb00c..d5daf01bc 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.interp +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.interp @@ -12,6 +12,7 @@ null null null '#define' +'#undef' '\\\n' null @@ -29,6 +30,7 @@ SIMPLETYPE IDENTIFIER NUMBER DEFINE +UNDEF DEFINE_CONTINUE WHITESPACE @@ -39,4 +41,4 @@ expr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 16, 51, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 3, 2, 7, 2, 10, 10, 2, 12, 2, 14, 2, 13, 11, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 29, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 46, 10, 4, 12, 4, 14, 4, 49, 11, 4, 3, 4, 2, 3, 6, 5, 2, 4, 6, 2, 2, 2, 56, 2, 11, 3, 2, 2, 2, 4, 14, 3, 2, 2, 2, 6, 28, 3, 2, 2, 2, 8, 10, 5, 4, 3, 2, 9, 8, 3, 2, 2, 2, 10, 13, 3, 2, 2, 2, 11, 9, 3, 2, 2, 2, 11, 12, 3, 2, 2, 2, 12, 3, 3, 2, 2, 2, 13, 11, 3, 2, 2, 2, 14, 15, 5, 6, 4, 2, 15, 16, 7, 3, 2, 2, 16, 5, 3, 2, 2, 2, 17, 18, 8, 4, 1, 2, 18, 19, 7, 8, 2, 2, 19, 20, 7, 11, 2, 2, 20, 21, 7, 9, 2, 2, 21, 29, 5, 6, 4, 11, 22, 29, 7, 12, 2, 2, 23, 29, 7, 13, 2, 2, 24, 25, 7, 8, 2, 2, 25, 26, 5, 6, 4, 2, 26, 27, 7, 9, 2, 2, 27, 29, 3, 2, 2, 2, 28, 17, 3, 2, 2, 2, 28, 22, 3, 2, 2, 2, 28, 23, 3, 2, 2, 2, 28, 24, 3, 2, 2, 2, 29, 47, 3, 2, 2, 2, 30, 31, 12, 7, 2, 2, 31, 32, 7, 4, 2, 2, 32, 46, 5, 6, 4, 8, 33, 34, 12, 6, 2, 2, 34, 35, 7, 5, 2, 2, 35, 46, 5, 6, 4, 7, 36, 37, 12, 5, 2, 2, 37, 38, 7, 6, 2, 2, 38, 46, 5, 6, 4, 6, 39, 40, 12, 4, 2, 2, 40, 41, 7, 7, 2, 2, 41, 46, 5, 6, 4, 5, 42, 43, 12, 3, 2, 2, 43, 44, 7, 10, 2, 2, 44, 46, 5, 6, 4, 4, 45, 30, 3, 2, 2, 2, 45, 33, 3, 2, 2, 2, 45, 36, 3, 2, 2, 2, 45, 39, 3, 2, 2, 2, 45, 42, 3, 2, 2, 2, 46, 49, 3, 2, 2, 2, 47, 45, 3, 2, 2, 2, 47, 48, 3, 2, 2, 2, 48, 7, 3, 2, 2, 2, 49, 47, 3, 2, 2, 2, 6, 11, 28, 45, 47] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 17, 51, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 3, 2, 7, 2, 10, 10, 2, 12, 2, 14, 2, 13, 11, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 29, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 46, 10, 4, 12, 4, 14, 4, 49, 11, 4, 3, 4, 2, 3, 6, 5, 2, 4, 6, 2, 2, 2, 56, 2, 11, 3, 2, 2, 2, 4, 14, 3, 2, 2, 2, 6, 28, 3, 2, 2, 2, 8, 10, 5, 4, 3, 2, 9, 8, 3, 2, 2, 2, 10, 13, 3, 2, 2, 2, 11, 9, 3, 2, 2, 2, 11, 12, 3, 2, 2, 2, 12, 3, 3, 2, 2, 2, 13, 11, 3, 2, 2, 2, 14, 15, 5, 6, 4, 2, 15, 16, 7, 3, 2, 2, 16, 5, 3, 2, 2, 2, 17, 18, 8, 4, 1, 2, 18, 19, 7, 8, 2, 2, 19, 20, 7, 11, 2, 2, 20, 21, 7, 9, 2, 2, 21, 29, 5, 6, 4, 11, 22, 29, 7, 12, 2, 2, 23, 29, 7, 13, 2, 2, 24, 25, 7, 8, 2, 2, 25, 26, 5, 6, 4, 2, 26, 27, 7, 9, 2, 2, 27, 29, 3, 2, 2, 2, 28, 17, 3, 2, 2, 2, 28, 22, 3, 2, 2, 2, 28, 23, 3, 2, 2, 2, 28, 24, 3, 2, 2, 2, 29, 47, 3, 2, 2, 2, 30, 31, 12, 7, 2, 2, 31, 32, 7, 4, 2, 2, 32, 46, 5, 6, 4, 8, 33, 34, 12, 6, 2, 2, 34, 35, 7, 5, 2, 2, 35, 46, 5, 6, 4, 7, 36, 37, 12, 5, 2, 2, 37, 38, 7, 6, 2, 2, 38, 46, 5, 6, 4, 6, 39, 40, 12, 4, 2, 2, 40, 41, 7, 7, 2, 2, 41, 46, 5, 6, 4, 5, 42, 43, 12, 3, 2, 2, 43, 44, 7, 10, 2, 2, 44, 46, 5, 6, 4, 4, 45, 30, 3, 2, 2, 2, 45, 33, 3, 2, 2, 2, 45, 36, 3, 2, 2, 2, 45, 39, 3, 2, 2, 2, 45, 42, 3, 2, 2, 2, 46, 49, 3, 2, 2, 2, 47, 45, 3, 2, 2, 2, 47, 48, 3, 2, 2, 2, 48, 7, 3, 2, 2, 2, 49, 47, 3, 2, 2, 2, 6, 11, 28, 45, 47] \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.tokens b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.tokens index 3b18144a6..075f50aba 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.tokens +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.tokens @@ -10,8 +10,9 @@ SIMPLETYPE=9 IDENTIFIER=10 NUMBER=11 DEFINE=12 -DEFINE_CONTINUE=13 -WHITESPACE=14 +UNDEF=13 +DEFINE_CONTINUE=14 +WHITESPACE=15 ';'=1 '*'=2 '/'=3 @@ -21,4 +22,5 @@ WHITESPACE=14 ')'=7 ','=8 '#define'=12 -'\\\n'=13 +'#undef'=13 +'\\\n'=14 diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp index 549787db1..5b7ee129f 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp @@ -12,6 +12,7 @@ null null null '#define' +'#undef' '\\\n' null @@ -29,6 +30,7 @@ SIMPLETYPE IDENTIFIER NUMBER DEFINE +UNDEF DEFINE_CONTINUE WHITESPACE @@ -45,6 +47,7 @@ SIMPLETYPE IDENTIFIER NUMBER DEFINE +UNDEF DEFINE_CONTINUE WHITESPACE @@ -56,4 +59,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 16, 84, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 55, 10, 10, 3, 11, 6, 11, 58, 10, 11, 13, 11, 14, 11, 59, 3, 12, 6, 12, 63, 10, 12, 13, 12, 14, 12, 64, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 6, 15, 79, 10, 15, 13, 15, 14, 15, 80, 3, 15, 3, 15, 2, 2, 16, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 3, 2, 5, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 5, 2, 11, 12, 15, 15, 34, 34, 2, 87, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 3, 31, 3, 2, 2, 2, 5, 33, 3, 2, 2, 2, 7, 35, 3, 2, 2, 2, 9, 37, 3, 2, 2, 2, 11, 39, 3, 2, 2, 2, 13, 41, 3, 2, 2, 2, 15, 43, 3, 2, 2, 2, 17, 45, 3, 2, 2, 2, 19, 54, 3, 2, 2, 2, 21, 57, 3, 2, 2, 2, 23, 62, 3, 2, 2, 2, 25, 66, 3, 2, 2, 2, 27, 74, 3, 2, 2, 2, 29, 78, 3, 2, 2, 2, 31, 32, 7, 61, 2, 2, 32, 4, 3, 2, 2, 2, 33, 34, 7, 44, 2, 2, 34, 6, 3, 2, 2, 2, 35, 36, 7, 49, 2, 2, 36, 8, 3, 2, 2, 2, 37, 38, 7, 45, 2, 2, 38, 10, 3, 2, 2, 2, 39, 40, 7, 47, 2, 2, 40, 12, 3, 2, 2, 2, 41, 42, 7, 42, 2, 2, 42, 14, 3, 2, 2, 2, 43, 44, 7, 43, 2, 2, 44, 16, 3, 2, 2, 2, 45, 46, 7, 46, 2, 2, 46, 18, 3, 2, 2, 2, 47, 48, 7, 101, 2, 2, 48, 49, 7, 106, 2, 2, 49, 50, 7, 99, 2, 2, 50, 55, 7, 116, 2, 2, 51, 52, 7, 107, 2, 2, 52, 53, 7, 112, 2, 2, 53, 55, 7, 118, 2, 2, 54, 47, 3, 2, 2, 2, 54, 51, 3, 2, 2, 2, 55, 20, 3, 2, 2, 2, 56, 58, 9, 2, 2, 2, 57, 56, 3, 2, 2, 2, 58, 59, 3, 2, 2, 2, 59, 57, 3, 2, 2, 2, 59, 60, 3, 2, 2, 2, 60, 22, 3, 2, 2, 2, 61, 63, 9, 3, 2, 2, 62, 61, 3, 2, 2, 2, 63, 64, 3, 2, 2, 2, 64, 62, 3, 2, 2, 2, 64, 65, 3, 2, 2, 2, 65, 24, 3, 2, 2, 2, 66, 67, 7, 37, 2, 2, 67, 68, 7, 102, 2, 2, 68, 69, 7, 103, 2, 2, 69, 70, 7, 104, 2, 2, 70, 71, 7, 107, 2, 2, 71, 72, 7, 112, 2, 2, 72, 73, 7, 103, 2, 2, 73, 26, 3, 2, 2, 2, 74, 75, 7, 94, 2, 2, 75, 76, 7, 12, 2, 2, 76, 28, 3, 2, 2, 2, 77, 79, 9, 4, 2, 2, 78, 77, 3, 2, 2, 2, 79, 80, 3, 2, 2, 2, 80, 78, 3, 2, 2, 2, 80, 81, 3, 2, 2, 2, 81, 82, 3, 2, 2, 2, 82, 83, 8, 15, 2, 2, 83, 30, 3, 2, 2, 2, 7, 2, 54, 59, 64, 80, 3, 2, 3, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 17, 93, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 5, 10, 57, 10, 10, 3, 11, 6, 11, 60, 10, 11, 13, 11, 14, 11, 61, 3, 12, 6, 12, 65, 10, 12, 13, 12, 14, 12, 66, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 6, 16, 88, 10, 16, 13, 16, 14, 16, 89, 3, 16, 3, 16, 2, 2, 17, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 3, 2, 5, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 5, 2, 11, 12, 15, 15, 34, 34, 2, 96, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 3, 33, 3, 2, 2, 2, 5, 35, 3, 2, 2, 2, 7, 37, 3, 2, 2, 2, 9, 39, 3, 2, 2, 2, 11, 41, 3, 2, 2, 2, 13, 43, 3, 2, 2, 2, 15, 45, 3, 2, 2, 2, 17, 47, 3, 2, 2, 2, 19, 56, 3, 2, 2, 2, 21, 59, 3, 2, 2, 2, 23, 64, 3, 2, 2, 2, 25, 68, 3, 2, 2, 2, 27, 76, 3, 2, 2, 2, 29, 83, 3, 2, 2, 2, 31, 87, 3, 2, 2, 2, 33, 34, 7, 61, 2, 2, 34, 4, 3, 2, 2, 2, 35, 36, 7, 44, 2, 2, 36, 6, 3, 2, 2, 2, 37, 38, 7, 49, 2, 2, 38, 8, 3, 2, 2, 2, 39, 40, 7, 45, 2, 2, 40, 10, 3, 2, 2, 2, 41, 42, 7, 47, 2, 2, 42, 12, 3, 2, 2, 2, 43, 44, 7, 42, 2, 2, 44, 14, 3, 2, 2, 2, 45, 46, 7, 43, 2, 2, 46, 16, 3, 2, 2, 2, 47, 48, 7, 46, 2, 2, 48, 18, 3, 2, 2, 2, 49, 50, 7, 101, 2, 2, 50, 51, 7, 106, 2, 2, 51, 52, 7, 99, 2, 2, 52, 57, 7, 116, 2, 2, 53, 54, 7, 107, 2, 2, 54, 55, 7, 112, 2, 2, 55, 57, 7, 118, 2, 2, 56, 49, 3, 2, 2, 2, 56, 53, 3, 2, 2, 2, 57, 20, 3, 2, 2, 2, 58, 60, 9, 2, 2, 2, 59, 58, 3, 2, 2, 2, 60, 61, 3, 2, 2, 2, 61, 59, 3, 2, 2, 2, 61, 62, 3, 2, 2, 2, 62, 22, 3, 2, 2, 2, 63, 65, 9, 3, 2, 2, 64, 63, 3, 2, 2, 2, 65, 66, 3, 2, 2, 2, 66, 64, 3, 2, 2, 2, 66, 67, 3, 2, 2, 2, 67, 24, 3, 2, 2, 2, 68, 69, 7, 37, 2, 2, 69, 70, 7, 102, 2, 2, 70, 71, 7, 103, 2, 2, 71, 72, 7, 104, 2, 2, 72, 73, 7, 107, 2, 2, 73, 74, 7, 112, 2, 2, 74, 75, 7, 103, 2, 2, 75, 26, 3, 2, 2, 2, 76, 77, 7, 37, 2, 2, 77, 78, 7, 119, 2, 2, 78, 79, 7, 112, 2, 2, 79, 80, 7, 102, 2, 2, 80, 81, 7, 103, 2, 2, 81, 82, 7, 104, 2, 2, 82, 28, 3, 2, 2, 2, 83, 84, 7, 94, 2, 2, 84, 85, 7, 12, 2, 2, 85, 30, 3, 2, 2, 2, 86, 88, 9, 4, 2, 2, 87, 86, 3, 2, 2, 2, 88, 89, 3, 2, 2, 2, 89, 87, 3, 2, 2, 2, 89, 90, 3, 2, 2, 2, 90, 91, 3, 2, 2, 2, 91, 92, 8, 16, 2, 2, 92, 32, 3, 2, 2, 2, 7, 2, 56, 61, 66, 89, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.java index c61c65472..478774ef6 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.java +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.java @@ -20,8 +20,8 @@ public class MacrosLexer extends Lexer { new PredictionContextCache(); public static final int T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, PAR_BEGIN=6, PAR_END=7, COMMA=8, - SIMPLETYPE=9, IDENTIFIER=10, NUMBER=11, DEFINE=12, DEFINE_CONTINUE=13, - WHITESPACE=14; + SIMPLETYPE=9, IDENTIFIER=10, NUMBER=11, DEFINE=12, UNDEF=13, DEFINE_CONTINUE=14, + WHITESPACE=15; public static String[] channelNames = { "DEFAULT_TOKEN_CHANNEL", "HIDDEN" }; @@ -33,7 +33,8 @@ public class MacrosLexer extends Lexer { private static String[] makeRuleNames() { return new String[] { "T__0", "T__1", "T__2", "T__3", "T__4", "PAR_BEGIN", "PAR_END", "COMMA", - "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "DEFINE_CONTINUE", "WHITESPACE" + "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "UNDEF", "DEFINE_CONTINUE", + "WHITESPACE" }; } public static final String[] ruleNames = makeRuleNames(); @@ -41,14 +42,15 @@ public class MacrosLexer extends Lexer { private static String[] makeLiteralNames() { return new String[] { null, "';'", "'*'", "'/'", "'+'", "'-'", "'('", "')'", "','", null, null, - null, "'#define'", "'\\\n'" + null, "'#define'", "'#undef'", "'\\\n'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { null, null, null, null, null, null, "PAR_BEGIN", "PAR_END", "COMMA", - "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "DEFINE_CONTINUE", "WHITESPACE" + "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "UNDEF", "DEFINE_CONTINUE", + "WHITESPACE" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -112,28 +114,30 @@ public class MacrosLexer extends Lexer { public ATN getATN() { return _ATN; } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\20T\b\1\4\2\t\2\4"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\21]\b\1\4\2\t\2\4"+ "\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13\t"+ - "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3"+ - "\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3\n\5\n\67"+ - "\n\n\3\13\6\13:\n\13\r\13\16\13;\3\f\6\f?\n\f\r\f\16\f@\3\r\3\r\3\r\3"+ - "\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\17\6\17O\n\17\r\17\16\17P\3\17\3\17"+ - "\2\2\20\3\3\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17"+ - "\35\20\3\2\5\5\2C\\aac|\3\2\62;\5\2\13\f\17\17\"\"\2W\2\3\3\2\2\2\2\5"+ - "\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2"+ - "\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33"+ - "\3\2\2\2\2\35\3\2\2\2\3\37\3\2\2\2\5!\3\2\2\2\7#\3\2\2\2\t%\3\2\2\2\13"+ - "\'\3\2\2\2\r)\3\2\2\2\17+\3\2\2\2\21-\3\2\2\2\23\66\3\2\2\2\259\3\2\2"+ - "\2\27>\3\2\2\2\31B\3\2\2\2\33J\3\2\2\2\35N\3\2\2\2\37 \7=\2\2 \4\3\2\2"+ - "\2!\"\7,\2\2\"\6\3\2\2\2#$\7\61\2\2$\b\3\2\2\2%&\7-\2\2&\n\3\2\2\2\'("+ - "\7/\2\2(\f\3\2\2\2)*\7*\2\2*\16\3\2\2\2+,\7+\2\2,\20\3\2\2\2-.\7.\2\2"+ - ".\22\3\2\2\2/\60\7e\2\2\60\61\7j\2\2\61\62\7c\2\2\62\67\7t\2\2\63\64\7"+ - "k\2\2\64\65\7p\2\2\65\67\7v\2\2\66/\3\2\2\2\66\63\3\2\2\2\67\24\3\2\2"+ - "\28:\t\2\2\298\3\2\2\2:;\3\2\2\2;9\3\2\2\2;<\3\2\2\2<\26\3\2\2\2=?\t\3"+ - "\2\2>=\3\2\2\2?@\3\2\2\2@>\3\2\2\2@A\3\2\2\2A\30\3\2\2\2BC\7%\2\2CD\7"+ - "f\2\2DE\7g\2\2EF\7h\2\2FG\7k\2\2GH\7p\2\2HI\7g\2\2I\32\3\2\2\2JK\7^\2"+ - "\2KL\7\f\2\2L\34\3\2\2\2MO\t\4\2\2NM\3\2\2\2OP\3\2\2\2PN\3\2\2\2PQ\3\2"+ - "\2\2QR\3\2\2\2RS\b\17\2\2S\36\3\2\2\2\7\2\66;@P\3\2\3\2"; + "\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\3\2\3\2\3\3\3\3\3\4"+ + "\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3\n\3\n\3\n\3\n\3\n\3\n\3"+ + "\n\5\n9\n\n\3\13\6\13<\n\13\r\13\16\13=\3\f\6\fA\n\f\r\f\16\fB\3\r\3\r"+ + "\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17"+ + "\3\17\3\20\6\20X\n\20\r\20\16\20Y\3\20\3\20\2\2\21\3\3\5\4\7\5\t\6\13"+ + "\7\r\b\17\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21\3\2\5\5\2C\\"+ + "aac|\3\2\62;\5\2\13\f\17\17\"\"\2`\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2\2\2"+ + "\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3"+ + "\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2"+ + "\2\2\37\3\2\2\2\3!\3\2\2\2\5#\3\2\2\2\7%\3\2\2\2\t\'\3\2\2\2\13)\3\2\2"+ + "\2\r+\3\2\2\2\17-\3\2\2\2\21/\3\2\2\2\238\3\2\2\2\25;\3\2\2\2\27@\3\2"+ + "\2\2\31D\3\2\2\2\33L\3\2\2\2\35S\3\2\2\2\37W\3\2\2\2!\"\7=\2\2\"\4\3\2"+ + "\2\2#$\7,\2\2$\6\3\2\2\2%&\7\61\2\2&\b\3\2\2\2\'(\7-\2\2(\n\3\2\2\2)*"+ + "\7/\2\2*\f\3\2\2\2+,\7*\2\2,\16\3\2\2\2-.\7+\2\2.\20\3\2\2\2/\60\7.\2"+ + "\2\60\22\3\2\2\2\61\62\7e\2\2\62\63\7j\2\2\63\64\7c\2\2\649\7t\2\2\65"+ + "\66\7k\2\2\66\67\7p\2\2\679\7v\2\28\61\3\2\2\28\65\3\2\2\29\24\3\2\2\2"+ + ":<\t\2\2\2;:\3\2\2\2<=\3\2\2\2=;\3\2\2\2=>\3\2\2\2>\26\3\2\2\2?A\t\3\2"+ + "\2@?\3\2\2\2AB\3\2\2\2B@\3\2\2\2BC\3\2\2\2C\30\3\2\2\2DE\7%\2\2EF\7f\2"+ + "\2FG\7g\2\2GH\7h\2\2HI\7k\2\2IJ\7p\2\2JK\7g\2\2K\32\3\2\2\2LM\7%\2\2M"+ + "N\7w\2\2NO\7p\2\2OP\7f\2\2PQ\7g\2\2QR\7h\2\2R\34\3\2\2\2ST\7^\2\2TU\7"+ + "\f\2\2U\36\3\2\2\2VX\t\4\2\2WV\3\2\2\2XY\3\2\2\2YW\3\2\2\2YZ\3\2\2\2Z"+ + "[\3\2\2\2[\\\b\20\2\2\\ \3\2\2\2\7\28=BY\3\2\3\2"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens index 3b18144a6..075f50aba 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens @@ -10,8 +10,9 @@ SIMPLETYPE=9 IDENTIFIER=10 NUMBER=11 DEFINE=12 -DEFINE_CONTINUE=13 -WHITESPACE=14 +UNDEF=13 +DEFINE_CONTINUE=14 +WHITESPACE=15 ';'=1 '*'=2 '/'=3 @@ -21,4 +22,5 @@ WHITESPACE=14 ')'=7 ','=8 '#define'=12 -'\\\n'=13 +'#undef'=13 +'\\\n'=14 diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java index a945b20c0..f43042b24 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java @@ -20,8 +20,8 @@ public class MacrosParser extends Parser { new PredictionContextCache(); public static final int T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, PAR_BEGIN=6, PAR_END=7, COMMA=8, - SIMPLETYPE=9, IDENTIFIER=10, NUMBER=11, DEFINE=12, DEFINE_CONTINUE=13, - WHITESPACE=14; + SIMPLETYPE=9, IDENTIFIER=10, NUMBER=11, DEFINE=12, UNDEF=13, DEFINE_CONTINUE=14, + WHITESPACE=15; public static final int RULE_stmtSeq = 0, RULE_stmt = 1, RULE_expr = 2; private static String[] makeRuleNames() { @@ -34,14 +34,15 @@ public class MacrosParser extends Parser { private static String[] makeLiteralNames() { return new String[] { null, "';'", "'*'", "'/'", "'+'", "'-'", "'('", "')'", "','", null, null, - null, "'#define'", "'\\\n'" + null, "'#define'", "'#undef'", "'\\\n'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); private static String[] makeSymbolicNames() { return new String[] { null, null, null, null, null, null, "PAR_BEGIN", "PAR_END", "COMMA", - "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "DEFINE_CONTINUE", "WHITESPACE" + "SIMPLETYPE", "IDENTIFIER", "NUMBER", "DEFINE", "UNDEF", "DEFINE_CONTINUE", + "WHITESPACE" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -506,7 +507,7 @@ public class MacrosParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\20\63\4\2\t\2\4\3"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\21\63\4\2\t\2\4\3"+ "\t\3\4\4\t\4\3\2\7\2\n\n\2\f\2\16\2\r\13\2\3\3\3\3\3\3\3\4\3\4\3\4\3\4"+ "\3\4\3\4\3\4\3\4\3\4\3\4\3\4\5\4\35\n\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\3"+ "\4\3\4\3\4\3\4\3\4\3\4\3\4\3\4\7\4.\n\4\f\4\16\4\61\13\4\3\4\2\3\6\5\2"+ diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java b/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java index 1f3bbea55..5dcd7cf2b 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java @@ -1,7 +1,8 @@ package dk.camelot64.kickc.parsing.macros; -import dk.camelot64.kickc.preprocessor.CTokenSourcePreprocessor; import dk.camelot64.kickc.model.CompileError; +import dk.camelot64.kickc.preprocessor.CPreprocessor; +import dk.camelot64.kickc.preprocessor.CPreprocessorTokens; import org.antlr.v4.runtime.*; import org.junit.Test; @@ -74,6 +75,16 @@ public class TestMacrosParser { assertEquals("name:a;+(name:b,num:1);", parse("#define A a;\\\nb\nA+1;")); } + + /** + * Test define and undef + */ + @Test + public void testUndef() { + // A simple unused define + assertEquals("name:a;name:A;", parse("#define A a\nA;\n#undef A\nA;")); + } + /** * Test define with parameters */ @@ -106,7 +117,8 @@ public class TestMacrosParser { } }); - final CTokenSourcePreprocessor expandedTokenSource = new CTokenSourcePreprocessor(lexer, CHANNEL_WHITESPACE, MacrosLexer.WHITESPACE, MacrosLexer.DEFINE, MacrosLexer.IDENTIFIER, MacrosLexer.PAR_BEGIN, MacrosLexer.PAR_END, MacrosLexer.COMMA, MacrosLexer.DEFINE_CONTINUE); + final CPreprocessorTokens preprocessorTokens = new CPreprocessorTokens(CHANNEL_WHITESPACE, MacrosLexer.WHITESPACE, MacrosLexer.DEFINE, MacrosLexer.IDENTIFIER, MacrosLexer.DEFINE_CONTINUE, MacrosLexer.UNDEF, MacrosLexer.PAR_BEGIN, MacrosLexer.PAR_END, MacrosLexer.COMMA); + final CPreprocessor expandedTokenSource = new CPreprocessor(lexer, preprocessorTokens); MacrosParser parser = new MacrosParser(new CommonTokenStream(expandedTokenSource)); parser.setBuildParseTree(true); parser.addErrorListener(new BaseErrorListener() { diff --git a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java index 7c09207ab..d3d4345b6 100644 --- a/src/test/java/dk/camelot64/kickc/test/TestPrograms.java +++ b/src/test/java/dk/camelot64/kickc/test/TestPrograms.java @@ -37,9 +37,10 @@ public class TestPrograms { public TestPrograms() { } + @Test - public void testPreprocessor0() throws IOException, URISyntaxException { - compileAndCompare("preprocessor-0"); + public void testPreprocessor2() throws IOException, URISyntaxException { + compileAndCompare("preprocessor-2", log()); } @Test @@ -47,6 +48,11 @@ public class TestPrograms { compileAndCompare("preprocessor-1"); } + @Test + public void testPreprocessor0() throws IOException, URISyntaxException { + compileAndCompare("preprocessor-0"); + } + @Test public void testMaCoalesceProblem() throws IOException, URISyntaxException { compileAndCompare("ma_coalesce_problem"); diff --git a/src/test/kc/preprocessor-2.kc b/src/test/kc/preprocessor-2.kc new file mode 100644 index 000000000..b47323891 --- /dev/null +++ b/src/test/kc/preprocessor-2.kc @@ -0,0 +1,12 @@ +// Test the preprocessor +// #define and #undef - expected output on screen is xa + +char * SCREEN = 0x0400; + +void main() { + char a = 'a'; + #define a 'x' + SCREEN[0] = a; + #undef a + SCREEN[1] = a; +} \ No newline at end of file