diff --git a/src/main/java/dk/camelot64/kickc/model/operators/OperatorLogicNot.java b/src/main/java/dk/camelot64/kickc/model/operators/OperatorLogicNot.java index fa843c29e..b6f27261d 100644 --- a/src/main/java/dk/camelot64/kickc/model/operators/OperatorLogicNot.java +++ b/src/main/java/dk/camelot64/kickc/model/operators/OperatorLogicNot.java @@ -4,6 +4,7 @@ import dk.camelot64.kickc.model.CompileError; import dk.camelot64.kickc.model.symbols.ProgramScope; import dk.camelot64.kickc.model.types.SymbolType; import dk.camelot64.kickc.model.values.ConstantBool; +import dk.camelot64.kickc.model.values.ConstantEnumerable; import dk.camelot64.kickc.model.values.ConstantLiteral; /** Unary Logic Not operator (!b) */ @@ -15,6 +16,9 @@ public class OperatorLogicNot extends OperatorUnary { @Override public ConstantLiteral calculateLiteral(ConstantLiteral left, ProgramScope scope) { + if(left instanceof ConstantEnumerable) { + left = new ConstantBool(((ConstantEnumerable) left).getInteger()!=0); + } if(left instanceof ConstantBool) { return new ConstantBool(!((ConstantBool) left).getBool() ); } diff --git a/src/main/java/dk/camelot64/kickc/parser/CParser.java b/src/main/java/dk/camelot64/kickc/parser/CParser.java index 79e3c1f23..cde65a990 100644 --- a/src/main/java/dk/camelot64/kickc/parser/CParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/CParser.java @@ -4,16 +4,12 @@ import dk.camelot64.kickc.SourceLoader; 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; import java.io.IOException; import java.nio.file.Path; -import java.util.ArrayList; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Map; +import java.util.*; /** * Parser for C-language files. @@ -65,8 +61,7 @@ public class CParser { this.program = program; this.cFiles = new LinkedHashMap<>(); this.cTokenSource = new CTokenSource(); - final CPreprocessorTokens preprocessorTokens = new CPreprocessorTokens(CHANNEL_WHITESPACE, KickCLexer.WS, KickCLexer.DEFINE, KickCLexer.NAME, KickCLexer.DEFINE_CONTINUE, KickCLexer.UNDEF, KickCLexer.IFDEF, KickCLexer.IFNDEF, KickCLexer.IFELSE, KickCLexer.ENDIF, KickCLexer.PAR_BEGIN, KickCLexer.PAR_END, KickCLexer.COMMA); - final CPreprocessor preprocessor = new CPreprocessor(cTokenSource, preprocessorTokens); + final CPreprocessor preprocessor = new CPreprocessor(cTokenSource, new HashMap<>()); this.tokenStream = new CommonTokenStream(preprocessor); this.parser = new KickCParser(tokenStream, this); this.typedefs = new ArrayList<>(); @@ -115,6 +110,14 @@ public class CParser { return this.parser.file(); } + /** + * Get the C parser + * @return The C parser + */ + public KickCParser getParser() { + return parser; + } + /** * Get the path of the folder containing the source file for a token * @@ -179,25 +182,35 @@ public class CParser { program.getLog().append("PARSING " + file.getPath().replace("\\", "/")); program.getLog().append(fileStream.toString()); } - KickCLexer lexer = new KickCLexer(fileStream, this); - lexer.addErrorListener(new BaseErrorListener() { - @Override - public void syntaxError( - Recognizer recognizer, - Object offendingSymbol, - int line, - int charPositionInLine, - String msg, - RecognitionException e) { - throw new CompileError("Error parsing file " + fileStream.getSourceName() + "\n - Line: " + line + "\n - Message: " + msg); - } - }); + KickCLexer lexer = addSource(fileStream); CFile cFile = new CFile(file, lexer); cFiles.put(file.getAbsolutePath(), cFile); - cTokenSource.addSource(lexer); } catch(IOException e) { throw new CompileError("Error parsing file " + fileName, e); } } + /** + * Add source code at the start of the token stream being parsed. + * @param charStream The char stream containing the source code to add + * @return The lexer for reading the source tokens of the added source + */ + public KickCLexer addSource(CharStream charStream) { + KickCLexer lexer = new KickCLexer(charStream, this); + lexer.addErrorListener(new BaseErrorListener() { + @Override + public void syntaxError( + Recognizer recognizer, + Object offendingSymbol, + int line, + int charPositionInLine, + String msg, + RecognitionException e) { + throw new CompileError("Error parsing file " + charStream.getSourceName() + "\n - Line: " + line + "\n - Message: " + msg); + } + }); + cTokenSource.addSource(lexer); + return lexer; + } + } diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index ccee91f81..a81f5bfc8 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -106,6 +106,7 @@ STRUCT : 'struct' ; ENUM : 'enum' ; SIZEOF : 'sizeof' ; TYPEID : 'typeid' ; +DEFINED : 'defined' ; KICKASM : 'kickasm' ; RESOURCE : 'resource' ; USES : 'uses' ; @@ -124,10 +125,12 @@ CHAR : '\'' ('\\'['"rfn] | ~'\'' ) '\''; // Macros DEFINE: '#define' ; -DEFINE_CONTINUE: '\\\n' ; +DEFINE_CONTINUE: '\\\n' | '\\\r\n'; UNDEF: '#undef' ; IFDEF: '#ifdef' ; IFNDEF: '#ifndef' ; +IFIF: '#if' ; +ELIF: '#elif' ; IFELSE: '#else' ; ENDIF: '#endif' ; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index 767300f1e..c849594be 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -81,6 +81,7 @@ null 'enum' 'sizeof' 'typeid' +'defined' 'kickasm' 'resource' 'uses' @@ -95,10 +96,12 @@ null null null '#define' -'\\\n' +null '#undef' '#ifdef' '#ifndef' +'#if' +'#elif' '#else' '#endif' null @@ -234,6 +237,7 @@ STRUCT ENUM SIZEOF TYPEID +DEFINED KICKASM RESOURCE USES @@ -252,6 +256,8 @@ DEFINE_CONTINUE UNDEF IFDEF IFNDEF +IFIF +ELIF IFELSE ENDIF NUMBER @@ -385,6 +391,7 @@ STRUCT ENUM SIZEOF TYPEID +DEFINED KICKASM RESOURCE USES @@ -403,6 +410,8 @@ DEFINE_CONTINUE UNDEF IFDEF IFNDEF +IFIF +ELIF IFELSE ENDIF NUMBER @@ -474,4 +483,4 @@ DEFAULT_MODE ASM_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 152, 1506, 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, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 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, 428, 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, 637, 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, 804, 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, 843, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 854, 10, 91, 3, 92, 3, 92, 3, 92, 3, 92, 7, 92, 860, 10, 92, 12, 92, 14, 92, 863, 11, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 7, 93, 872, 10, 93, 12, 93, 14, 93, 875, 11, 93, 3, 93, 3, 93, 5, 93, 879, 10, 93, 3, 93, 3, 93, 5, 93, 883, 10, 93, 5, 93, 885, 10, 93, 3, 93, 5, 93, 888, 10, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 896, 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, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 5, 102, 948, 10, 102, 3, 103, 3, 103, 3, 103, 5, 103, 953, 10, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 5, 104, 960, 10, 104, 3, 104, 7, 104, 963, 10, 104, 12, 104, 14, 104, 966, 11, 104, 3, 104, 3, 104, 6, 104, 970, 10, 104, 13, 104, 14, 104, 971, 3, 105, 7, 105, 975, 10, 105, 12, 105, 14, 105, 978, 11, 105, 3, 105, 3, 105, 6, 105, 982, 10, 105, 13, 105, 14, 105, 983, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 991, 10, 106, 3, 106, 7, 106, 994, 10, 106, 12, 106, 14, 106, 997, 11, 106, 3, 106, 3, 106, 6, 106, 1001, 10, 106, 13, 106, 14, 106, 1002, 3, 107, 3, 107, 3, 107, 5, 107, 1008, 10, 107, 3, 107, 3, 107, 3, 107, 5, 107, 1013, 10, 107, 3, 108, 3, 108, 3, 108, 6, 108, 1018, 10, 108, 13, 108, 14, 108, 1019, 3, 108, 3, 108, 6, 108, 1024, 10, 108, 13, 108, 14, 108, 1025, 5, 108, 1028, 10, 108, 3, 109, 6, 109, 1031, 10, 109, 13, 109, 14, 109, 1032, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1040, 10, 110, 3, 110, 6, 110, 1043, 10, 110, 13, 110, 14, 110, 1044, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 7, 114, 1055, 10, 114, 12, 114, 14, 114, 1058, 11, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 3, 117, 6, 117, 1067, 10, 117, 13, 117, 14, 117, 1068, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 7, 118, 1077, 10, 118, 12, 118, 14, 118, 1080, 11, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 7, 119, 1088, 10, 119, 12, 119, 14, 119, 1091, 11, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 5, 121, 1326, 10, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 124, 3, 124, 3, 125, 3, 125, 3, 126, 3, 126, 3, 127, 3, 127, 3, 128, 3, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 5, 140, 1370, 10, 140, 3, 141, 3, 141, 3, 141, 5, 141, 1375, 10, 141, 3, 142, 3, 142, 7, 142, 1379, 10, 142, 12, 142, 14, 142, 1382, 11, 142, 3, 142, 3, 142, 6, 142, 1386, 10, 142, 13, 142, 14, 142, 1387, 3, 143, 7, 143, 1391, 10, 143, 12, 143, 14, 143, 1394, 11, 143, 3, 143, 3, 143, 6, 143, 1398, 10, 143, 13, 143, 14, 143, 1399, 3, 144, 3, 144, 7, 144, 1404, 10, 144, 12, 144, 14, 144, 1407, 11, 144, 3, 144, 3, 144, 6, 144, 1411, 10, 144, 13, 144, 14, 144, 1412, 3, 145, 3, 145, 3, 145, 5, 145, 1418, 10, 145, 3, 146, 3, 146, 6, 146, 1422, 10, 146, 13, 146, 14, 146, 1423, 3, 147, 6, 147, 1427, 10, 147, 13, 147, 14, 147, 1428, 3, 148, 3, 148, 6, 148, 1433, 10, 148, 13, 148, 14, 148, 1434, 3, 149, 3, 149, 3, 150, 3, 150, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 5, 152, 1447, 10, 152, 3, 152, 3, 152, 3, 153, 3, 153, 6, 153, 1453, 10, 153, 13, 153, 14, 153, 1454, 3, 154, 3, 154, 7, 154, 1459, 10, 154, 12, 154, 14, 154, 1462, 11, 154, 3, 155, 3, 155, 7, 155, 1466, 10, 155, 12, 155, 14, 155, 1469, 11, 155, 3, 156, 3, 156, 3, 157, 3, 157, 3, 158, 6, 158, 1476, 10, 158, 13, 158, 14, 158, 1477, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 7, 159, 1486, 10, 159, 12, 159, 14, 159, 1489, 11, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 7, 160, 1497, 10, 160, 12, 160, 14, 160, 1500, 11, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 5, 861, 1089, 1498, 2, 161, 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, 109, 216, 110, 218, 111, 220, 112, 222, 2, 224, 2, 226, 2, 228, 113, 230, 2, 232, 2, 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, 142, 292, 143, 294, 144, 296, 145, 298, 2, 300, 2, 302, 2, 304, 146, 306, 147, 308, 148, 310, 149, 312, 2, 314, 2, 316, 150, 318, 151, 320, 152, 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, 1644, 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, 214, 3, 2, 2, 2, 2, 216, 3, 2, 2, 2, 2, 218, 3, 2, 2, 2, 2, 220, 3, 2, 2, 2, 2, 228, 3, 2, 2, 2, 2, 234, 3, 2, 2, 2, 2, 236, 3, 2, 2, 2, 2, 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, 290, 3, 2, 2, 2, 3, 292, 3, 2, 2, 2, 3, 294, 3, 2, 2, 2, 3, 296, 3, 2, 2, 2, 3, 304, 3, 2, 2, 2, 3, 306, 3, 2, 2, 2, 3, 308, 3, 2, 2, 2, 3, 310, 3, 2, 2, 2, 3, 316, 3, 2, 2, 2, 3, 318, 3, 2, 2, 2, 3, 320, 3, 2, 2, 2, 4, 322, 3, 2, 2, 2, 6, 325, 3, 2, 2, 2, 8, 327, 3, 2, 2, 2, 10, 329, 3, 2, 2, 2, 12, 331, 3, 2, 2, 2, 14, 333, 3, 2, 2, 2, 16, 335, 3, 2, 2, 2, 18, 337, 3, 2, 2, 2, 20, 339, 3, 2, 2, 2, 22, 341, 3, 2, 2, 2, 24, 344, 3, 2, 2, 2, 26, 346, 3, 2, 2, 2, 28, 348, 3, 2, 2, 2, 30, 351, 3, 2, 2, 2, 32, 353, 3, 2, 2, 2, 34, 355, 3, 2, 2, 2, 36, 357, 3, 2, 2, 2, 38, 359, 3, 2, 2, 2, 40, 361, 3, 2, 2, 2, 42, 364, 3, 2, 2, 2, 44, 367, 3, 2, 2, 2, 46, 369, 3, 2, 2, 2, 48, 371, 3, 2, 2, 2, 50, 373, 3, 2, 2, 2, 52, 375, 3, 2, 2, 2, 54, 378, 3, 2, 2, 2, 56, 381, 3, 2, 2, 2, 58, 384, 3, 2, 2, 2, 60, 387, 3, 2, 2, 2, 62, 389, 3, 2, 2, 2, 64, 392, 3, 2, 2, 2, 66, 395, 3, 2, 2, 2, 68, 397, 3, 2, 2, 2, 70, 400, 3, 2, 2, 2, 72, 403, 3, 2, 2, 2, 74, 427, 3, 2, 2, 2, 76, 429, 3, 2, 2, 2, 78, 438, 3, 2, 2, 2, 80, 446, 3, 2, 2, 2, 82, 454, 3, 2, 2, 2, 84, 462, 3, 2, 2, 2, 86, 465, 3, 2, 2, 2, 88, 472, 3, 2, 2, 2, 90, 477, 3, 2, 2, 2, 92, 481, 3, 2, 2, 2, 94, 490, 3, 2, 2, 2, 96, 499, 3, 2, 2, 2, 98, 508, 3, 2, 2, 2, 100, 514, 3, 2, 2, 2, 102, 521, 3, 2, 2, 2, 104, 528, 3, 2, 2, 2, 106, 534, 3, 2, 2, 2, 108, 541, 3, 2, 2, 2, 110, 550, 3, 2, 2, 2, 112, 557, 3, 2, 2, 2, 114, 567, 3, 2, 2, 2, 116, 576, 3, 2, 2, 2, 118, 586, 3, 2, 2, 2, 120, 591, 3, 2, 2, 2, 122, 597, 3, 2, 2, 2, 124, 603, 3, 2, 2, 2, 126, 608, 3, 2, 2, 2, 128, 636, 3, 2, 2, 2, 130, 638, 3, 2, 2, 2, 132, 648, 3, 2, 2, 2, 134, 651, 3, 2, 2, 2, 136, 656, 3, 2, 2, 2, 138, 662, 3, 2, 2, 2, 140, 665, 3, 2, 2, 2, 142, 669, 3, 2, 2, 2, 144, 676, 3, 2, 2, 2, 146, 683, 3, 2, 2, 2, 148, 689, 3, 2, 2, 2, 150, 698, 3, 2, 2, 2, 152, 704, 3, 2, 2, 2, 154, 712, 3, 2, 2, 2, 156, 717, 3, 2, 2, 2, 158, 724, 3, 2, 2, 2, 160, 729, 3, 2, 2, 2, 162, 736, 3, 2, 2, 2, 164, 743, 3, 2, 2, 2, 166, 751, 3, 2, 2, 2, 168, 760, 3, 2, 2, 2, 170, 765, 3, 2, 2, 2, 172, 774, 3, 2, 2, 2, 174, 780, 3, 2, 2, 2, 176, 787, 3, 2, 2, 2, 178, 803, 3, 2, 2, 2, 180, 842, 3, 2, 2, 2, 182, 853, 3, 2, 2, 2, 184, 855, 3, 2, 2, 2, 186, 867, 3, 2, 2, 2, 188, 891, 3, 2, 2, 2, 190, 899, 3, 2, 2, 2, 192, 907, 3, 2, 2, 2, 194, 910, 3, 2, 2, 2, 196, 917, 3, 2, 2, 2, 198, 924, 3, 2, 2, 2, 200, 932, 3, 2, 2, 2, 202, 938, 3, 2, 2, 2, 204, 947, 3, 2, 2, 2, 206, 952, 3, 2, 2, 2, 208, 959, 3, 2, 2, 2, 210, 976, 3, 2, 2, 2, 212, 990, 3, 2, 2, 2, 214, 1007, 3, 2, 2, 2, 216, 1027, 3, 2, 2, 2, 218, 1030, 3, 2, 2, 2, 220, 1039, 3, 2, 2, 2, 222, 1046, 3, 2, 2, 2, 224, 1048, 3, 2, 2, 2, 226, 1050, 3, 2, 2, 2, 228, 1052, 3, 2, 2, 2, 230, 1061, 3, 2, 2, 2, 232, 1063, 3, 2, 2, 2, 234, 1066, 3, 2, 2, 2, 236, 1072, 3, 2, 2, 2, 238, 1083, 3, 2, 2, 2, 240, 1097, 3, 2, 2, 2, 242, 1325, 3, 2, 2, 2, 244, 1327, 3, 2, 2, 2, 246, 1329, 3, 2, 2, 2, 248, 1331, 3, 2, 2, 2, 250, 1333, 3, 2, 2, 2, 252, 1335, 3, 2, 2, 2, 254, 1337, 3, 2, 2, 2, 256, 1339, 3, 2, 2, 2, 258, 1341, 3, 2, 2, 2, 260, 1343, 3, 2, 2, 2, 262, 1346, 3, 2, 2, 2, 264, 1349, 3, 2, 2, 2, 266, 1351, 3, 2, 2, 2, 268, 1353, 3, 2, 2, 2, 270, 1355, 3, 2, 2, 2, 272, 1357, 3, 2, 2, 2, 274, 1359, 3, 2, 2, 2, 276, 1361, 3, 2, 2, 2, 278, 1364, 3, 2, 2, 2, 280, 1369, 3, 2, 2, 2, 282, 1374, 3, 2, 2, 2, 284, 1376, 3, 2, 2, 2, 286, 1392, 3, 2, 2, 2, 288, 1401, 3, 2, 2, 2, 290, 1417, 3, 2, 2, 2, 292, 1419, 3, 2, 2, 2, 294, 1426, 3, 2, 2, 2, 296, 1430, 3, 2, 2, 2, 298, 1436, 3, 2, 2, 2, 300, 1438, 3, 2, 2, 2, 302, 1440, 3, 2, 2, 2, 304, 1442, 3, 2, 2, 2, 306, 1450, 3, 2, 2, 2, 308, 1456, 3, 2, 2, 2, 310, 1463, 3, 2, 2, 2, 312, 1470, 3, 2, 2, 2, 314, 1472, 3, 2, 2, 2, 316, 1475, 3, 2, 2, 2, 318, 1481, 3, 2, 2, 2, 320, 1492, 3, 2, 2, 2, 322, 323, 7, 125, 2, 2, 323, 324, 8, 2, 2, 2, 324, 5, 3, 2, 2, 2, 325, 326, 7, 127, 2, 2, 326, 7, 3, 2, 2, 2, 327, 328, 7, 93, 2, 2, 328, 9, 3, 2, 2, 2, 329, 330, 7, 95, 2, 2, 330, 11, 3, 2, 2, 2, 331, 332, 7, 42, 2, 2, 332, 13, 3, 2, 2, 2, 333, 334, 7, 43, 2, 2, 334, 15, 3, 2, 2, 2, 335, 336, 7, 61, 2, 2, 336, 17, 3, 2, 2, 2, 337, 338, 7, 60, 2, 2, 338, 19, 3, 2, 2, 2, 339, 340, 7, 46, 2, 2, 340, 21, 3, 2, 2, 2, 341, 342, 7, 48, 2, 2, 342, 343, 7, 48, 2, 2, 343, 23, 3, 2, 2, 2, 344, 345, 7, 65, 2, 2, 345, 25, 3, 2, 2, 2, 346, 347, 7, 48, 2, 2, 347, 27, 3, 2, 2, 2, 348, 349, 7, 47, 2, 2, 349, 350, 7, 64, 2, 2, 350, 29, 3, 2, 2, 2, 351, 352, 7, 45, 2, 2, 352, 31, 3, 2, 2, 2, 353, 354, 7, 47, 2, 2, 354, 33, 3, 2, 2, 2, 355, 356, 7, 44, 2, 2, 356, 35, 3, 2, 2, 2, 357, 358, 7, 49, 2, 2, 358, 37, 3, 2, 2, 2, 359, 360, 7, 39, 2, 2, 360, 39, 3, 2, 2, 2, 361, 362, 7, 45, 2, 2, 362, 363, 7, 45, 2, 2, 363, 41, 3, 2, 2, 2, 364, 365, 7, 47, 2, 2, 365, 366, 7, 47, 2, 2, 366, 43, 3, 2, 2, 2, 367, 368, 7, 40, 2, 2, 368, 45, 3, 2, 2, 2, 369, 370, 7, 128, 2, 2, 370, 47, 3, 2, 2, 2, 371, 372, 7, 96, 2, 2, 372, 49, 3, 2, 2, 2, 373, 374, 7, 126, 2, 2, 374, 51, 3, 2, 2, 2, 375, 376, 7, 62, 2, 2, 376, 377, 7, 62, 2, 2, 377, 53, 3, 2, 2, 2, 378, 379, 7, 64, 2, 2, 379, 380, 7, 64, 2, 2, 380, 55, 3, 2, 2, 2, 381, 382, 7, 63, 2, 2, 382, 383, 7, 63, 2, 2, 383, 57, 3, 2, 2, 2, 384, 385, 7, 35, 2, 2, 385, 386, 7, 63, 2, 2, 386, 59, 3, 2, 2, 2, 387, 388, 7, 62, 2, 2, 388, 61, 3, 2, 2, 2, 389, 390, 7, 62, 2, 2, 390, 391, 7, 63, 2, 2, 391, 63, 3, 2, 2, 2, 392, 393, 7, 64, 2, 2, 393, 394, 7, 63, 2, 2, 394, 65, 3, 2, 2, 2, 395, 396, 7, 64, 2, 2, 396, 67, 3, 2, 2, 2, 397, 398, 7, 40, 2, 2, 398, 399, 7, 40, 2, 2, 399, 69, 3, 2, 2, 2, 400, 401, 7, 126, 2, 2, 401, 402, 7, 126, 2, 2, 402, 71, 3, 2, 2, 2, 403, 404, 7, 63, 2, 2, 404, 73, 3, 2, 2, 2, 405, 406, 7, 45, 2, 2, 406, 428, 7, 63, 2, 2, 407, 408, 7, 47, 2, 2, 408, 428, 7, 63, 2, 2, 409, 410, 7, 44, 2, 2, 410, 428, 7, 63, 2, 2, 411, 412, 7, 49, 2, 2, 412, 428, 7, 63, 2, 2, 413, 414, 7, 39, 2, 2, 414, 428, 7, 63, 2, 2, 415, 416, 7, 62, 2, 2, 416, 417, 7, 62, 2, 2, 417, 428, 7, 63, 2, 2, 418, 419, 7, 64, 2, 2, 419, 420, 7, 64, 2, 2, 420, 428, 7, 63, 2, 2, 421, 422, 7, 40, 2, 2, 422, 428, 7, 63, 2, 2, 423, 424, 7, 126, 2, 2, 424, 428, 7, 63, 2, 2, 425, 426, 7, 96, 2, 2, 426, 428, 7, 63, 2, 2, 427, 405, 3, 2, 2, 2, 427, 407, 3, 2, 2, 2, 427, 409, 3, 2, 2, 2, 427, 411, 3, 2, 2, 2, 427, 413, 3, 2, 2, 2, 427, 415, 3, 2, 2, 2, 427, 418, 3, 2, 2, 2, 427, 421, 3, 2, 2, 2, 427, 423, 3, 2, 2, 2, 427, 425, 3, 2, 2, 2, 428, 75, 3, 2, 2, 2, 429, 430, 7, 107, 2, 2, 430, 431, 7, 111, 2, 2, 431, 432, 7, 114, 2, 2, 432, 433, 7, 113, 2, 2, 433, 434, 7, 116, 2, 2, 434, 435, 7, 118, 2, 2, 435, 436, 3, 2, 2, 2, 436, 437, 8, 38, 3, 2, 437, 77, 3, 2, 2, 2, 438, 439, 7, 118, 2, 2, 439, 440, 7, 123, 2, 2, 440, 441, 7, 114, 2, 2, 441, 442, 7, 103, 2, 2, 442, 443, 7, 102, 2, 2, 443, 444, 7, 103, 2, 2, 444, 445, 7, 104, 2, 2, 445, 79, 3, 2, 2, 2, 446, 447, 7, 37, 2, 2, 447, 448, 7, 114, 2, 2, 448, 449, 7, 116, 2, 2, 449, 450, 7, 99, 2, 2, 450, 451, 7, 105, 2, 2, 451, 452, 7, 111, 2, 2, 452, 453, 7, 99, 2, 2, 453, 81, 3, 2, 2, 2, 454, 455, 7, 116, 2, 2, 455, 456, 7, 103, 2, 2, 456, 457, 7, 117, 2, 2, 457, 458, 7, 103, 2, 2, 458, 459, 7, 116, 2, 2, 459, 460, 7, 120, 2, 2, 460, 461, 7, 103, 2, 2, 461, 83, 3, 2, 2, 2, 462, 463, 7, 114, 2, 2, 463, 464, 7, 101, 2, 2, 464, 85, 3, 2, 2, 2, 465, 466, 7, 118, 2, 2, 466, 467, 7, 99, 2, 2, 467, 468, 7, 116, 2, 2, 468, 469, 7, 105, 2, 2, 469, 470, 7, 103, 2, 2, 470, 471, 7, 118, 2, 2, 471, 87, 3, 2, 2, 2, 472, 473, 7, 110, 2, 2, 473, 474, 7, 107, 2, 2, 474, 475, 7, 112, 2, 2, 475, 476, 7, 109, 2, 2, 476, 89, 3, 2, 2, 2, 477, 478, 7, 101, 2, 2, 478, 479, 7, 114, 2, 2, 479, 480, 7, 119, 2, 2, 480, 91, 3, 2, 2, 2, 481, 482, 7, 101, 2, 2, 482, 483, 7, 113, 2, 2, 483, 484, 7, 102, 2, 2, 484, 485, 7, 103, 2, 2, 485, 486, 7, 97, 2, 2, 486, 487, 7, 117, 2, 2, 487, 488, 7, 103, 2, 2, 488, 489, 7, 105, 2, 2, 489, 93, 3, 2, 2, 2, 490, 491, 7, 102, 2, 2, 491, 492, 7, 99, 2, 2, 492, 493, 7, 118, 2, 2, 493, 494, 7, 99, 2, 2, 494, 495, 7, 97, 2, 2, 495, 496, 7, 117, 2, 2, 496, 497, 7, 103, 2, 2, 497, 498, 7, 105, 2, 2, 498, 95, 3, 2, 2, 2, 499, 500, 7, 103, 2, 2, 500, 501, 7, 112, 2, 2, 501, 502, 7, 101, 2, 2, 502, 503, 7, 113, 2, 2, 503, 504, 7, 102, 2, 2, 504, 505, 7, 107, 2, 2, 505, 506, 7, 112, 2, 2, 506, 507, 7, 105, 2, 2, 507, 97, 3, 2, 2, 2, 508, 509, 7, 101, 2, 2, 509, 510, 7, 113, 2, 2, 510, 511, 7, 112, 2, 2, 511, 512, 7, 117, 2, 2, 512, 513, 7, 118, 2, 2, 513, 99, 3, 2, 2, 2, 514, 515, 7, 103, 2, 2, 515, 516, 7, 122, 2, 2, 516, 517, 7, 118, 2, 2, 517, 518, 7, 103, 2, 2, 518, 519, 7, 116, 2, 2, 519, 520, 7, 112, 2, 2, 520, 101, 3, 2, 2, 2, 521, 522, 7, 103, 2, 2, 522, 523, 7, 122, 2, 2, 523, 524, 7, 114, 2, 2, 524, 525, 7, 113, 2, 2, 525, 526, 7, 116, 2, 2, 526, 527, 7, 118, 2, 2, 527, 103, 3, 2, 2, 2, 528, 529, 7, 99, 2, 2, 529, 530, 7, 110, 2, 2, 530, 531, 7, 107, 2, 2, 531, 532, 7, 105, 2, 2, 532, 533, 7, 112, 2, 2, 533, 105, 3, 2, 2, 2, 534, 535, 7, 107, 2, 2, 535, 536, 7, 112, 2, 2, 536, 537, 7, 110, 2, 2, 537, 538, 7, 107, 2, 2, 538, 539, 7, 112, 2, 2, 539, 540, 7, 103, 2, 2, 540, 107, 3, 2, 2, 2, 541, 542, 7, 120, 2, 2, 542, 543, 7, 113, 2, 2, 543, 544, 7, 110, 2, 2, 544, 545, 7, 99, 2, 2, 545, 546, 7, 118, 2, 2, 546, 547, 7, 107, 2, 2, 547, 548, 7, 110, 2, 2, 548, 549, 7, 103, 2, 2, 549, 109, 3, 2, 2, 2, 550, 551, 7, 117, 2, 2, 551, 552, 7, 118, 2, 2, 552, 553, 7, 99, 2, 2, 553, 554, 7, 118, 2, 2, 554, 555, 7, 107, 2, 2, 555, 556, 7, 101, 2, 2, 556, 111, 3, 2, 2, 2, 557, 558, 7, 107, 2, 2, 558, 559, 7, 112, 2, 2, 559, 560, 7, 118, 2, 2, 560, 561, 7, 103, 2, 2, 561, 562, 7, 116, 2, 2, 562, 563, 7, 116, 2, 2, 563, 564, 7, 119, 2, 2, 564, 565, 7, 114, 2, 2, 565, 566, 7, 118, 2, 2, 566, 113, 3, 2, 2, 2, 567, 568, 7, 116, 2, 2, 568, 569, 7, 103, 2, 2, 569, 570, 7, 105, 2, 2, 570, 571, 7, 107, 2, 2, 571, 572, 7, 117, 2, 2, 572, 573, 7, 118, 2, 2, 573, 574, 7, 103, 2, 2, 574, 575, 7, 116, 2, 2, 575, 115, 3, 2, 2, 2, 576, 577, 7, 97, 2, 2, 577, 578, 7, 97, 2, 2, 578, 579, 7, 99, 2, 2, 579, 580, 7, 102, 2, 2, 580, 581, 7, 102, 2, 2, 581, 582, 7, 116, 2, 2, 582, 583, 7, 103, 2, 2, 583, 584, 7, 117, 2, 2, 584, 585, 7, 117, 2, 2, 585, 117, 3, 2, 2, 2, 586, 587, 7, 97, 2, 2, 587, 588, 7, 97, 2, 2, 588, 589, 7, 124, 2, 2, 589, 590, 7, 114, 2, 2, 590, 119, 3, 2, 2, 2, 591, 592, 7, 97, 2, 2, 592, 593, 7, 97, 2, 2, 593, 594, 7, 111, 2, 2, 594, 595, 7, 103, 2, 2, 595, 596, 7, 111, 2, 2, 596, 121, 3, 2, 2, 2, 597, 598, 7, 97, 2, 2, 598, 599, 7, 97, 2, 2, 599, 600, 7, 117, 2, 2, 600, 601, 7, 117, 2, 2, 601, 602, 7, 99, 2, 2, 602, 123, 3, 2, 2, 2, 603, 604, 7, 97, 2, 2, 604, 605, 7, 97, 2, 2, 605, 606, 7, 111, 2, 2, 606, 607, 7, 99, 2, 2, 607, 125, 3, 2, 2, 2, 608, 609, 7, 101, 2, 2, 609, 610, 7, 99, 2, 2, 610, 611, 7, 110, 2, 2, 611, 612, 7, 110, 2, 2, 612, 613, 7, 107, 2, 2, 613, 614, 7, 112, 2, 2, 614, 615, 7, 105, 2, 2, 615, 127, 3, 2, 2, 2, 616, 617, 7, 97, 2, 2, 617, 618, 7, 97, 2, 2, 618, 619, 7, 117, 2, 2, 619, 620, 7, 118, 2, 2, 620, 621, 7, 99, 2, 2, 621, 622, 7, 101, 2, 2, 622, 623, 7, 109, 2, 2, 623, 624, 7, 101, 2, 2, 624, 625, 7, 99, 2, 2, 625, 626, 7, 110, 2, 2, 626, 637, 7, 110, 2, 2, 627, 628, 7, 97, 2, 2, 628, 629, 7, 97, 2, 2, 629, 630, 7, 114, 2, 2, 630, 631, 7, 106, 2, 2, 631, 632, 7, 107, 2, 2, 632, 633, 7, 101, 2, 2, 633, 634, 7, 99, 2, 2, 634, 635, 7, 110, 2, 2, 635, 637, 7, 110, 2, 2, 636, 616, 3, 2, 2, 2, 636, 627, 3, 2, 2, 2, 637, 129, 3, 2, 2, 2, 638, 639, 7, 120, 2, 2, 639, 640, 7, 99, 2, 2, 640, 641, 7, 116, 2, 2, 641, 642, 7, 97, 2, 2, 642, 643, 7, 111, 2, 2, 643, 644, 7, 113, 2, 2, 644, 645, 7, 102, 2, 2, 645, 646, 7, 103, 2, 2, 646, 647, 7, 110, 2, 2, 647, 131, 3, 2, 2, 2, 648, 649, 7, 107, 2, 2, 649, 650, 7, 104, 2, 2, 650, 133, 3, 2, 2, 2, 651, 652, 7, 103, 2, 2, 652, 653, 7, 110, 2, 2, 653, 654, 7, 117, 2, 2, 654, 655, 7, 103, 2, 2, 655, 135, 3, 2, 2, 2, 656, 657, 7, 121, 2, 2, 657, 658, 7, 106, 2, 2, 658, 659, 7, 107, 2, 2, 659, 660, 7, 110, 2, 2, 660, 661, 7, 103, 2, 2, 661, 137, 3, 2, 2, 2, 662, 663, 7, 102, 2, 2, 663, 664, 7, 113, 2, 2, 664, 139, 3, 2, 2, 2, 665, 666, 7, 104, 2, 2, 666, 667, 7, 113, 2, 2, 667, 668, 7, 116, 2, 2, 668, 141, 3, 2, 2, 2, 669, 670, 7, 117, 2, 2, 670, 671, 7, 121, 2, 2, 671, 672, 7, 107, 2, 2, 672, 673, 7, 118, 2, 2, 673, 674, 7, 101, 2, 2, 674, 675, 7, 106, 2, 2, 675, 143, 3, 2, 2, 2, 676, 677, 7, 116, 2, 2, 677, 678, 7, 103, 2, 2, 678, 679, 7, 118, 2, 2, 679, 680, 7, 119, 2, 2, 680, 681, 7, 116, 2, 2, 681, 682, 7, 112, 2, 2, 682, 145, 3, 2, 2, 2, 683, 684, 7, 100, 2, 2, 684, 685, 7, 116, 2, 2, 685, 686, 7, 103, 2, 2, 686, 687, 7, 99, 2, 2, 687, 688, 7, 109, 2, 2, 688, 147, 3, 2, 2, 2, 689, 690, 7, 101, 2, 2, 690, 691, 7, 113, 2, 2, 691, 692, 7, 112, 2, 2, 692, 693, 7, 118, 2, 2, 693, 694, 7, 107, 2, 2, 694, 695, 7, 112, 2, 2, 695, 696, 7, 119, 2, 2, 696, 697, 7, 103, 2, 2, 697, 149, 3, 2, 2, 2, 698, 699, 7, 99, 2, 2, 699, 700, 7, 117, 2, 2, 700, 701, 7, 111, 2, 2, 701, 702, 3, 2, 2, 2, 702, 703, 8, 75, 4, 2, 703, 151, 3, 2, 2, 2, 704, 705, 7, 102, 2, 2, 705, 706, 7, 103, 2, 2, 706, 707, 7, 104, 2, 2, 707, 708, 7, 99, 2, 2, 708, 709, 7, 119, 2, 2, 709, 710, 7, 110, 2, 2, 710, 711, 7, 118, 2, 2, 711, 153, 3, 2, 2, 2, 712, 713, 7, 101, 2, 2, 713, 714, 7, 99, 2, 2, 714, 715, 7, 117, 2, 2, 715, 716, 7, 103, 2, 2, 716, 155, 3, 2, 2, 2, 717, 718, 7, 117, 2, 2, 718, 719, 7, 118, 2, 2, 719, 720, 7, 116, 2, 2, 720, 721, 7, 119, 2, 2, 721, 722, 7, 101, 2, 2, 722, 723, 7, 118, 2, 2, 723, 157, 3, 2, 2, 2, 724, 725, 7, 103, 2, 2, 725, 726, 7, 112, 2, 2, 726, 727, 7, 119, 2, 2, 727, 728, 7, 111, 2, 2, 728, 159, 3, 2, 2, 2, 729, 730, 7, 117, 2, 2, 730, 731, 7, 107, 2, 2, 731, 732, 7, 124, 2, 2, 732, 733, 7, 103, 2, 2, 733, 734, 7, 113, 2, 2, 734, 735, 7, 104, 2, 2, 735, 161, 3, 2, 2, 2, 736, 737, 7, 118, 2, 2, 737, 738, 7, 123, 2, 2, 738, 739, 7, 114, 2, 2, 739, 740, 7, 103, 2, 2, 740, 741, 7, 107, 2, 2, 741, 742, 7, 102, 2, 2, 742, 163, 3, 2, 2, 2, 743, 744, 7, 109, 2, 2, 744, 745, 7, 107, 2, 2, 745, 746, 7, 101, 2, 2, 746, 747, 7, 109, 2, 2, 747, 748, 7, 99, 2, 2, 748, 749, 7, 117, 2, 2, 749, 750, 7, 111, 2, 2, 750, 165, 3, 2, 2, 2, 751, 752, 7, 116, 2, 2, 752, 753, 7, 103, 2, 2, 753, 754, 7, 117, 2, 2, 754, 755, 7, 113, 2, 2, 755, 756, 7, 119, 2, 2, 756, 757, 7, 116, 2, 2, 757, 758, 7, 101, 2, 2, 758, 759, 7, 103, 2, 2, 759, 167, 3, 2, 2, 2, 760, 761, 7, 119, 2, 2, 761, 762, 7, 117, 2, 2, 762, 763, 7, 103, 2, 2, 763, 764, 7, 117, 2, 2, 764, 169, 3, 2, 2, 2, 765, 766, 7, 101, 2, 2, 766, 767, 7, 110, 2, 2, 767, 768, 7, 113, 2, 2, 768, 769, 7, 100, 2, 2, 769, 770, 7, 100, 2, 2, 770, 771, 7, 103, 2, 2, 771, 772, 7, 116, 2, 2, 772, 773, 7, 117, 2, 2, 773, 171, 3, 2, 2, 2, 774, 775, 7, 100, 2, 2, 775, 776, 7, 123, 2, 2, 776, 777, 7, 118, 2, 2, 777, 778, 7, 103, 2, 2, 778, 779, 7, 117, 2, 2, 779, 173, 3, 2, 2, 2, 780, 781, 7, 101, 2, 2, 781, 782, 7, 123, 2, 2, 782, 783, 7, 101, 2, 2, 783, 784, 7, 110, 2, 2, 784, 785, 7, 103, 2, 2, 785, 786, 7, 117, 2, 2, 786, 175, 3, 2, 2, 2, 787, 788, 7, 35, 2, 2, 788, 177, 3, 2, 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, 804, 7, 102, 2, 2, 795, 796, 7, 119, 2, 2, 796, 797, 7, 112, 2, 2, 797, 798, 7, 117, 2, 2, 798, 799, 7, 107, 2, 2, 799, 800, 7, 105, 2, 2, 800, 801, 7, 112, 2, 2, 801, 802, 7, 103, 2, 2, 802, 804, 7, 102, 2, 2, 803, 789, 3, 2, 2, 2, 803, 795, 3, 2, 2, 2, 804, 179, 3, 2, 2, 2, 805, 806, 7, 100, 2, 2, 806, 807, 7, 123, 2, 2, 807, 808, 7, 118, 2, 2, 808, 843, 7, 103, 2, 2, 809, 810, 7, 121, 2, 2, 810, 811, 7, 113, 2, 2, 811, 812, 7, 116, 2, 2, 812, 843, 7, 102, 2, 2, 813, 814, 7, 102, 2, 2, 814, 815, 7, 121, 2, 2, 815, 816, 7, 113, 2, 2, 816, 817, 7, 116, 2, 2, 817, 843, 7, 102, 2, 2, 818, 819, 7, 100, 2, 2, 819, 820, 7, 113, 2, 2, 820, 821, 7, 113, 2, 2, 821, 843, 7, 110, 2, 2, 822, 823, 7, 101, 2, 2, 823, 824, 7, 106, 2, 2, 824, 825, 7, 99, 2, 2, 825, 843, 7, 116, 2, 2, 826, 827, 7, 117, 2, 2, 827, 828, 7, 106, 2, 2, 828, 829, 7, 113, 2, 2, 829, 830, 7, 116, 2, 2, 830, 843, 7, 118, 2, 2, 831, 832, 7, 107, 2, 2, 832, 833, 7, 112, 2, 2, 833, 843, 7, 118, 2, 2, 834, 835, 7, 110, 2, 2, 835, 836, 7, 113, 2, 2, 836, 837, 7, 112, 2, 2, 837, 843, 7, 105, 2, 2, 838, 839, 7, 120, 2, 2, 839, 840, 7, 113, 2, 2, 840, 841, 7, 107, 2, 2, 841, 843, 7, 102, 2, 2, 842, 805, 3, 2, 2, 2, 842, 809, 3, 2, 2, 2, 842, 813, 3, 2, 2, 2, 842, 818, 3, 2, 2, 2, 842, 822, 3, 2, 2, 2, 842, 826, 3, 2, 2, 2, 842, 831, 3, 2, 2, 2, 842, 834, 3, 2, 2, 2, 842, 838, 3, 2, 2, 2, 843, 181, 3, 2, 2, 2, 844, 845, 7, 118, 2, 2, 845, 846, 7, 116, 2, 2, 846, 847, 7, 119, 2, 2, 847, 854, 7, 103, 2, 2, 848, 849, 7, 104, 2, 2, 849, 850, 7, 99, 2, 2, 850, 851, 7, 110, 2, 2, 851, 852, 7, 117, 2, 2, 852, 854, 7, 103, 2, 2, 853, 844, 3, 2, 2, 2, 853, 848, 3, 2, 2, 2, 854, 183, 3, 2, 2, 2, 855, 856, 7, 125, 2, 2, 856, 857, 7, 125, 2, 2, 857, 861, 3, 2, 2, 2, 858, 860, 11, 2, 2, 2, 859, 858, 3, 2, 2, 2, 860, 863, 3, 2, 2, 2, 861, 862, 3, 2, 2, 2, 861, 859, 3, 2, 2, 2, 862, 864, 3, 2, 2, 2, 863, 861, 3, 2, 2, 2, 864, 865, 7, 127, 2, 2, 865, 866, 7, 127, 2, 2, 866, 185, 3, 2, 2, 2, 867, 873, 7, 36, 2, 2, 868, 869, 7, 94, 2, 2, 869, 872, 7, 36, 2, 2, 870, 872, 10, 2, 2, 2, 871, 868, 3, 2, 2, 2, 871, 870, 3, 2, 2, 2, 872, 875, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 873, 874, 3, 2, 2, 2, 874, 876, 3, 2, 2, 2, 875, 873, 3, 2, 2, 2, 876, 878, 7, 36, 2, 2, 877, 879, 9, 3, 2, 2, 878, 877, 3, 2, 2, 2, 878, 879, 3, 2, 2, 2, 879, 884, 3, 2, 2, 2, 880, 882, 9, 4, 2, 2, 881, 883, 9, 5, 2, 2, 882, 881, 3, 2, 2, 2, 882, 883, 3, 2, 2, 2, 883, 885, 3, 2, 2, 2, 884, 880, 3, 2, 2, 2, 884, 885, 3, 2, 2, 2, 885, 887, 3, 2, 2, 2, 886, 888, 9, 3, 2, 2, 887, 886, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 889, 3, 2, 2, 2, 889, 890, 8, 93, 5, 2, 890, 187, 3, 2, 2, 2, 891, 895, 7, 41, 2, 2, 892, 893, 7, 94, 2, 2, 893, 896, 9, 6, 2, 2, 894, 896, 10, 7, 2, 2, 895, 892, 3, 2, 2, 2, 895, 894, 3, 2, 2, 2, 896, 897, 3, 2, 2, 2, 897, 898, 7, 41, 2, 2, 898, 189, 3, 2, 2, 2, 899, 900, 7, 37, 2, 2, 900, 901, 7, 102, 2, 2, 901, 902, 7, 103, 2, 2, 902, 903, 7, 104, 2, 2, 903, 904, 7, 107, 2, 2, 904, 905, 7, 112, 2, 2, 905, 906, 7, 103, 2, 2, 906, 191, 3, 2, 2, 2, 907, 908, 7, 94, 2, 2, 908, 909, 7, 12, 2, 2, 909, 193, 3, 2, 2, 2, 910, 911, 7, 37, 2, 2, 911, 912, 7, 119, 2, 2, 912, 913, 7, 112, 2, 2, 913, 914, 7, 102, 2, 2, 914, 915, 7, 103, 2, 2, 915, 916, 7, 104, 2, 2, 916, 195, 3, 2, 2, 2, 917, 918, 7, 37, 2, 2, 918, 919, 7, 107, 2, 2, 919, 920, 7, 104, 2, 2, 920, 921, 7, 102, 2, 2, 921, 922, 7, 103, 2, 2, 922, 923, 7, 104, 2, 2, 923, 197, 3, 2, 2, 2, 924, 925, 7, 37, 2, 2, 925, 926, 7, 107, 2, 2, 926, 927, 7, 104, 2, 2, 927, 928, 7, 112, 2, 2, 928, 929, 7, 102, 2, 2, 929, 930, 7, 103, 2, 2, 930, 931, 7, 104, 2, 2, 931, 199, 3, 2, 2, 2, 932, 933, 7, 37, 2, 2, 933, 934, 7, 103, 2, 2, 934, 935, 7, 110, 2, 2, 935, 936, 7, 117, 2, 2, 936, 937, 7, 103, 2, 2, 937, 201, 3, 2, 2, 2, 938, 939, 7, 37, 2, 2, 939, 940, 7, 103, 2, 2, 940, 941, 7, 112, 2, 2, 941, 942, 7, 102, 2, 2, 942, 943, 7, 107, 2, 2, 943, 944, 7, 104, 2, 2, 944, 203, 3, 2, 2, 2, 945, 948, 5, 206, 103, 2, 946, 948, 5, 214, 107, 2, 947, 945, 3, 2, 2, 2, 947, 946, 3, 2, 2, 2, 948, 205, 3, 2, 2, 2, 949, 953, 5, 208, 104, 2, 950, 953, 5, 210, 105, 2, 951, 953, 5, 212, 106, 2, 952, 949, 3, 2, 2, 2, 952, 950, 3, 2, 2, 2, 952, 951, 3, 2, 2, 2, 953, 207, 3, 2, 2, 2, 954, 960, 7, 39, 2, 2, 955, 956, 7, 50, 2, 2, 956, 960, 7, 100, 2, 2, 957, 958, 7, 50, 2, 2, 958, 960, 7, 68, 2, 2, 959, 954, 3, 2, 2, 2, 959, 955, 3, 2, 2, 2, 959, 957, 3, 2, 2, 2, 960, 964, 3, 2, 2, 2, 961, 963, 5, 222, 111, 2, 962, 961, 3, 2, 2, 2, 963, 966, 3, 2, 2, 2, 964, 962, 3, 2, 2, 2, 964, 965, 3, 2, 2, 2, 965, 967, 3, 2, 2, 2, 966, 964, 3, 2, 2, 2, 967, 969, 7, 48, 2, 2, 968, 970, 5, 222, 111, 2, 969, 968, 3, 2, 2, 2, 970, 971, 3, 2, 2, 2, 971, 969, 3, 2, 2, 2, 971, 972, 3, 2, 2, 2, 972, 209, 3, 2, 2, 2, 973, 975, 5, 224, 112, 2, 974, 973, 3, 2, 2, 2, 975, 978, 3, 2, 2, 2, 976, 974, 3, 2, 2, 2, 976, 977, 3, 2, 2, 2, 977, 979, 3, 2, 2, 2, 978, 976, 3, 2, 2, 2, 979, 981, 7, 48, 2, 2, 980, 982, 5, 224, 112, 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, 211, 3, 2, 2, 2, 985, 991, 7, 38, 2, 2, 986, 987, 7, 50, 2, 2, 987, 991, 7, 122, 2, 2, 988, 989, 7, 50, 2, 2, 989, 991, 7, 90, 2, 2, 990, 985, 3, 2, 2, 2, 990, 986, 3, 2, 2, 2, 990, 988, 3, 2, 2, 2, 991, 995, 3, 2, 2, 2, 992, 994, 5, 226, 113, 2, 993, 992, 3, 2, 2, 2, 994, 997, 3, 2, 2, 2, 995, 993, 3, 2, 2, 2, 995, 996, 3, 2, 2, 2, 996, 998, 3, 2, 2, 2, 997, 995, 3, 2, 2, 2, 998, 1000, 7, 48, 2, 2, 999, 1001, 5, 226, 113, 2, 1000, 999, 3, 2, 2, 2, 1001, 1002, 3, 2, 2, 2, 1002, 1000, 3, 2, 2, 2, 1002, 1003, 3, 2, 2, 2, 1003, 213, 3, 2, 2, 2, 1004, 1008, 5, 218, 109, 2, 1005, 1008, 5, 220, 110, 2, 1006, 1008, 5, 216, 108, 2, 1007, 1004, 3, 2, 2, 2, 1007, 1005, 3, 2, 2, 2, 1007, 1006, 3, 2, 2, 2, 1008, 1012, 3, 2, 2, 2, 1009, 1010, 9, 8, 2, 2, 1010, 1013, 9, 9, 2, 2, 1011, 1013, 7, 110, 2, 2, 1012, 1009, 3, 2, 2, 2, 1012, 1011, 3, 2, 2, 2, 1012, 1013, 3, 2, 2, 2, 1013, 215, 3, 2, 2, 2, 1014, 1015, 7, 50, 2, 2, 1015, 1017, 9, 10, 2, 2, 1016, 1018, 5, 222, 111, 2, 1017, 1016, 3, 2, 2, 2, 1018, 1019, 3, 2, 2, 2, 1019, 1017, 3, 2, 2, 2, 1019, 1020, 3, 2, 2, 2, 1020, 1028, 3, 2, 2, 2, 1021, 1023, 7, 39, 2, 2, 1022, 1024, 5, 222, 111, 2, 1023, 1022, 3, 2, 2, 2, 1024, 1025, 3, 2, 2, 2, 1025, 1023, 3, 2, 2, 2, 1025, 1026, 3, 2, 2, 2, 1026, 1028, 3, 2, 2, 2, 1027, 1014, 3, 2, 2, 2, 1027, 1021, 3, 2, 2, 2, 1028, 217, 3, 2, 2, 2, 1029, 1031, 5, 224, 112, 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, 219, 3, 2, 2, 2, 1034, 1040, 7, 38, 2, 2, 1035, 1036, 7, 50, 2, 2, 1036, 1040, 7, 122, 2, 2, 1037, 1038, 7, 50, 2, 2, 1038, 1040, 7, 90, 2, 2, 1039, 1034, 3, 2, 2, 2, 1039, 1035, 3, 2, 2, 2, 1039, 1037, 3, 2, 2, 2, 1040, 1042, 3, 2, 2, 2, 1041, 1043, 5, 226, 113, 2, 1042, 1041, 3, 2, 2, 2, 1043, 1044, 3, 2, 2, 2, 1044, 1042, 3, 2, 2, 2, 1044, 1045, 3, 2, 2, 2, 1045, 221, 3, 2, 2, 2, 1046, 1047, 9, 11, 2, 2, 1047, 223, 3, 2, 2, 2, 1048, 1049, 9, 12, 2, 2, 1049, 225, 3, 2, 2, 2, 1050, 1051, 9, 13, 2, 2, 1051, 227, 3, 2, 2, 2, 1052, 1056, 5, 230, 115, 2, 1053, 1055, 5, 232, 116, 2, 1054, 1053, 3, 2, 2, 2, 1055, 1058, 3, 2, 2, 2, 1056, 1054, 3, 2, 2, 2, 1056, 1057, 3, 2, 2, 2, 1057, 1059, 3, 2, 2, 2, 1058, 1056, 3, 2, 2, 2, 1059, 1060, 8, 114, 6, 2, 1060, 229, 3, 2, 2, 2, 1061, 1062, 9, 14, 2, 2, 1062, 231, 3, 2, 2, 2, 1063, 1064, 9, 15, 2, 2, 1064, 233, 3, 2, 2, 2, 1065, 1067, 9, 16, 2, 2, 1066, 1065, 3, 2, 2, 2, 1067, 1068, 3, 2, 2, 2, 1068, 1066, 3, 2, 2, 2, 1068, 1069, 3, 2, 2, 2, 1069, 1070, 3, 2, 2, 2, 1070, 1071, 8, 117, 7, 2, 1071, 235, 3, 2, 2, 2, 1072, 1073, 7, 49, 2, 2, 1073, 1074, 7, 49, 2, 2, 1074, 1078, 3, 2, 2, 2, 1075, 1077, 10, 17, 2, 2, 1076, 1075, 3, 2, 2, 2, 1077, 1080, 3, 2, 2, 2, 1078, 1076, 3, 2, 2, 2, 1078, 1079, 3, 2, 2, 2, 1079, 1081, 3, 2, 2, 2, 1080, 1078, 3, 2, 2, 2, 1081, 1082, 8, 118, 8, 2, 1082, 237, 3, 2, 2, 2, 1083, 1084, 7, 49, 2, 2, 1084, 1085, 7, 44, 2, 2, 1085, 1089, 3, 2, 2, 2, 1086, 1088, 11, 2, 2, 2, 1087, 1086, 3, 2, 2, 2, 1088, 1091, 3, 2, 2, 2, 1089, 1090, 3, 2, 2, 2, 1089, 1087, 3, 2, 2, 2, 1090, 1092, 3, 2, 2, 2, 1091, 1089, 3, 2, 2, 2, 1092, 1093, 7, 44, 2, 2, 1093, 1094, 7, 49, 2, 2, 1094, 1095, 3, 2, 2, 2, 1095, 1096, 8, 119, 8, 2, 1096, 239, 3, 2, 2, 2, 1097, 1098, 7, 48, 2, 2, 1098, 1099, 7, 100, 2, 2, 1099, 1100, 7, 123, 2, 2, 1100, 1101, 7, 118, 2, 2, 1101, 1102, 7, 103, 2, 2, 1102, 241, 3, 2, 2, 2, 1103, 1104, 7, 100, 2, 2, 1104, 1105, 7, 116, 2, 2, 1105, 1326, 7, 109, 2, 2, 1106, 1107, 7, 113, 2, 2, 1107, 1108, 7, 116, 2, 2, 1108, 1326, 7, 99, 2, 2, 1109, 1110, 7, 109, 2, 2, 1110, 1111, 7, 107, 2, 2, 1111, 1326, 7, 110, 2, 2, 1112, 1113, 7, 117, 2, 2, 1113, 1114, 7, 110, 2, 2, 1114, 1326, 7, 113, 2, 2, 1115, 1116, 7, 112, 2, 2, 1116, 1117, 7, 113, 2, 2, 1117, 1326, 7, 114, 2, 2, 1118, 1119, 7, 99, 2, 2, 1119, 1120, 7, 117, 2, 2, 1120, 1326, 7, 110, 2, 2, 1121, 1122, 7, 114, 2, 2, 1122, 1123, 7, 106, 2, 2, 1123, 1326, 7, 114, 2, 2, 1124, 1125, 7, 99, 2, 2, 1125, 1126, 7, 112, 2, 2, 1126, 1326, 7, 101, 2, 2, 1127, 1128, 7, 100, 2, 2, 1128, 1129, 7, 114, 2, 2, 1129, 1326, 7, 110, 2, 2, 1130, 1131, 7, 101, 2, 2, 1131, 1132, 7, 110, 2, 2, 1132, 1326, 7, 101, 2, 2, 1133, 1134, 7, 108, 2, 2, 1134, 1135, 7, 117, 2, 2, 1135, 1326, 7, 116, 2, 2, 1136, 1137, 7, 99, 2, 2, 1137, 1138, 7, 112, 2, 2, 1138, 1326, 7, 102, 2, 2, 1139, 1140, 7, 116, 2, 2, 1140, 1141, 7, 110, 2, 2, 1141, 1326, 7, 99, 2, 2, 1142, 1143, 7, 100, 2, 2, 1143, 1144, 7, 107, 2, 2, 1144, 1326, 7, 118, 2, 2, 1145, 1146, 7, 116, 2, 2, 1146, 1147, 7, 113, 2, 2, 1147, 1326, 7, 110, 2, 2, 1148, 1149, 7, 114, 2, 2, 1149, 1150, 7, 110, 2, 2, 1150, 1326, 7, 99, 2, 2, 1151, 1152, 7, 114, 2, 2, 1152, 1153, 7, 110, 2, 2, 1153, 1326, 7, 114, 2, 2, 1154, 1155, 7, 100, 2, 2, 1155, 1156, 7, 111, 2, 2, 1156, 1326, 7, 107, 2, 2, 1157, 1158, 7, 117, 2, 2, 1158, 1159, 7, 103, 2, 2, 1159, 1326, 7, 101, 2, 2, 1160, 1161, 7, 116, 2, 2, 1161, 1162, 7, 118, 2, 2, 1162, 1326, 7, 107, 2, 2, 1163, 1164, 7, 103, 2, 2, 1164, 1165, 7, 113, 2, 2, 1165, 1326, 7, 116, 2, 2, 1166, 1167, 7, 117, 2, 2, 1167, 1168, 7, 116, 2, 2, 1168, 1326, 7, 103, 2, 2, 1169, 1170, 7, 110, 2, 2, 1170, 1171, 7, 117, 2, 2, 1171, 1326, 7, 116, 2, 2, 1172, 1173, 7, 114, 2, 2, 1173, 1174, 7, 106, 2, 2, 1174, 1326, 7, 99, 2, 2, 1175, 1176, 7, 99, 2, 2, 1176, 1177, 7, 110, 2, 2, 1177, 1326, 7, 116, 2, 2, 1178, 1179, 7, 108, 2, 2, 1179, 1180, 7, 111, 2, 2, 1180, 1326, 7, 114, 2, 2, 1181, 1182, 7, 100, 2, 2, 1182, 1183, 7, 120, 2, 2, 1183, 1326, 7, 101, 2, 2, 1184, 1185, 7, 101, 2, 2, 1185, 1186, 7, 110, 2, 2, 1186, 1326, 7, 107, 2, 2, 1187, 1188, 7, 116, 2, 2, 1188, 1189, 7, 118, 2, 2, 1189, 1326, 7, 117, 2, 2, 1190, 1191, 7, 99, 2, 2, 1191, 1192, 7, 102, 2, 2, 1192, 1326, 7, 101, 2, 2, 1193, 1194, 7, 116, 2, 2, 1194, 1195, 7, 116, 2, 2, 1195, 1326, 7, 99, 2, 2, 1196, 1197, 7, 100, 2, 2, 1197, 1198, 7, 120, 2, 2, 1198, 1326, 7, 117, 2, 2, 1199, 1200, 7, 117, 2, 2, 1200, 1201, 7, 103, 2, 2, 1201, 1326, 7, 107, 2, 2, 1202, 1203, 7, 117, 2, 2, 1203, 1204, 7, 99, 2, 2, 1204, 1326, 7, 122, 2, 2, 1205, 1206, 7, 117, 2, 2, 1206, 1207, 7, 118, 2, 2, 1207, 1326, 7, 123, 2, 2, 1208, 1209, 7, 117, 2, 2, 1209, 1210, 7, 118, 2, 2, 1210, 1326, 7, 99, 2, 2, 1211, 1212, 7, 117, 2, 2, 1212, 1213, 7, 118, 2, 2, 1213, 1326, 7, 122, 2, 2, 1214, 1215, 7, 102, 2, 2, 1215, 1216, 7, 103, 2, 2, 1216, 1326, 7, 123, 2, 2, 1217, 1218, 7, 118, 2, 2, 1218, 1219, 7, 122, 2, 2, 1219, 1326, 7, 99, 2, 2, 1220, 1221, 7, 122, 2, 2, 1221, 1222, 7, 99, 2, 2, 1222, 1326, 7, 99, 2, 2, 1223, 1224, 7, 100, 2, 2, 1224, 1225, 7, 101, 2, 2, 1225, 1326, 7, 101, 2, 2, 1226, 1227, 7, 99, 2, 2, 1227, 1228, 7, 106, 2, 2, 1228, 1326, 7, 122, 2, 2, 1229, 1230, 7, 118, 2, 2, 1230, 1231, 7, 123, 2, 2, 1231, 1326, 7, 99, 2, 2, 1232, 1233, 7, 118, 2, 2, 1233, 1234, 7, 122, 2, 2, 1234, 1326, 7, 117, 2, 2, 1235, 1236, 7, 118, 2, 2, 1236, 1237, 7, 99, 2, 2, 1237, 1326, 7, 117, 2, 2, 1238, 1239, 7, 117, 2, 2, 1239, 1240, 7, 106, 2, 2, 1240, 1326, 7, 123, 2, 2, 1241, 1242, 7, 117, 2, 2, 1242, 1243, 7, 106, 2, 2, 1243, 1326, 7, 122, 2, 2, 1244, 1245, 7, 110, 2, 2, 1245, 1246, 7, 102, 2, 2, 1246, 1326, 7, 123, 2, 2, 1247, 1248, 7, 110, 2, 2, 1248, 1249, 7, 102, 2, 2, 1249, 1326, 7, 99, 2, 2, 1250, 1251, 7, 110, 2, 2, 1251, 1252, 7, 102, 2, 2, 1252, 1326, 7, 122, 2, 2, 1253, 1254, 7, 110, 2, 2, 1254, 1255, 7, 99, 2, 2, 1255, 1326, 7, 122, 2, 2, 1256, 1257, 7, 118, 2, 2, 1257, 1258, 7, 99, 2, 2, 1258, 1326, 7, 123, 2, 2, 1259, 1260, 7, 118, 2, 2, 1260, 1261, 7, 99, 2, 2, 1261, 1326, 7, 122, 2, 2, 1262, 1263, 7, 100, 2, 2, 1263, 1264, 7, 101, 2, 2, 1264, 1326, 7, 117, 2, 2, 1265, 1266, 7, 101, 2, 2, 1266, 1267, 7, 110, 2, 2, 1267, 1326, 7, 120, 2, 2, 1268, 1269, 7, 118, 2, 2, 1269, 1270, 7, 117, 2, 2, 1270, 1326, 7, 122, 2, 2, 1271, 1272, 7, 110, 2, 2, 1272, 1273, 7, 99, 2, 2, 1273, 1326, 7, 117, 2, 2, 1274, 1275, 7, 101, 2, 2, 1275, 1276, 7, 114, 2, 2, 1276, 1326, 7, 123, 2, 2, 1277, 1278, 7, 101, 2, 2, 1278, 1279, 7, 111, 2, 2, 1279, 1326, 7, 114, 2, 2, 1280, 1281, 7, 101, 2, 2, 1281, 1282, 7, 114, 2, 2, 1282, 1326, 7, 122, 2, 2, 1283, 1284, 7, 102, 2, 2, 1284, 1285, 7, 101, 2, 2, 1285, 1326, 7, 114, 2, 2, 1286, 1287, 7, 102, 2, 2, 1287, 1288, 7, 103, 2, 2, 1288, 1326, 7, 101, 2, 2, 1289, 1290, 7, 107, 2, 2, 1290, 1291, 7, 112, 2, 2, 1291, 1326, 7, 101, 2, 2, 1292, 1293, 7, 99, 2, 2, 1293, 1294, 7, 122, 2, 2, 1294, 1326, 7, 117, 2, 2, 1295, 1296, 7, 100, 2, 2, 1296, 1297, 7, 112, 2, 2, 1297, 1326, 7, 103, 2, 2, 1298, 1299, 7, 101, 2, 2, 1299, 1300, 7, 110, 2, 2, 1300, 1326, 7, 102, 2, 2, 1301, 1302, 7, 117, 2, 2, 1302, 1303, 7, 100, 2, 2, 1303, 1326, 7, 101, 2, 2, 1304, 1305, 7, 107, 2, 2, 1305, 1306, 7, 117, 2, 2, 1306, 1326, 7, 101, 2, 2, 1307, 1308, 7, 107, 2, 2, 1308, 1309, 7, 112, 2, 2, 1309, 1326, 7, 122, 2, 2, 1310, 1311, 7, 100, 2, 2, 1311, 1312, 7, 103, 2, 2, 1312, 1326, 7, 115, 2, 2, 1313, 1314, 7, 117, 2, 2, 1314, 1315, 7, 103, 2, 2, 1315, 1326, 7, 102, 2, 2, 1316, 1317, 7, 102, 2, 2, 1317, 1318, 7, 103, 2, 2, 1318, 1326, 7, 122, 2, 2, 1319, 1320, 7, 107, 2, 2, 1320, 1321, 7, 112, 2, 2, 1321, 1326, 7, 123, 2, 2, 1322, 1323, 7, 116, 2, 2, 1323, 1324, 7, 113, 2, 2, 1324, 1326, 7, 116, 2, 2, 1325, 1103, 3, 2, 2, 2, 1325, 1106, 3, 2, 2, 2, 1325, 1109, 3, 2, 2, 2, 1325, 1112, 3, 2, 2, 2, 1325, 1115, 3, 2, 2, 2, 1325, 1118, 3, 2, 2, 2, 1325, 1121, 3, 2, 2, 2, 1325, 1124, 3, 2, 2, 2, 1325, 1127, 3, 2, 2, 2, 1325, 1130, 3, 2, 2, 2, 1325, 1133, 3, 2, 2, 2, 1325, 1136, 3, 2, 2, 2, 1325, 1139, 3, 2, 2, 2, 1325, 1142, 3, 2, 2, 2, 1325, 1145, 3, 2, 2, 2, 1325, 1148, 3, 2, 2, 2, 1325, 1151, 3, 2, 2, 2, 1325, 1154, 3, 2, 2, 2, 1325, 1157, 3, 2, 2, 2, 1325, 1160, 3, 2, 2, 2, 1325, 1163, 3, 2, 2, 2, 1325, 1166, 3, 2, 2, 2, 1325, 1169, 3, 2, 2, 2, 1325, 1172, 3, 2, 2, 2, 1325, 1175, 3, 2, 2, 2, 1325, 1178, 3, 2, 2, 2, 1325, 1181, 3, 2, 2, 2, 1325, 1184, 3, 2, 2, 2, 1325, 1187, 3, 2, 2, 2, 1325, 1190, 3, 2, 2, 2, 1325, 1193, 3, 2, 2, 2, 1325, 1196, 3, 2, 2, 2, 1325, 1199, 3, 2, 2, 2, 1325, 1202, 3, 2, 2, 2, 1325, 1205, 3, 2, 2, 2, 1325, 1208, 3, 2, 2, 2, 1325, 1211, 3, 2, 2, 2, 1325, 1214, 3, 2, 2, 2, 1325, 1217, 3, 2, 2, 2, 1325, 1220, 3, 2, 2, 2, 1325, 1223, 3, 2, 2, 2, 1325, 1226, 3, 2, 2, 2, 1325, 1229, 3, 2, 2, 2, 1325, 1232, 3, 2, 2, 2, 1325, 1235, 3, 2, 2, 2, 1325, 1238, 3, 2, 2, 2, 1325, 1241, 3, 2, 2, 2, 1325, 1244, 3, 2, 2, 2, 1325, 1247, 3, 2, 2, 2, 1325, 1250, 3, 2, 2, 2, 1325, 1253, 3, 2, 2, 2, 1325, 1256, 3, 2, 2, 2, 1325, 1259, 3, 2, 2, 2, 1325, 1262, 3, 2, 2, 2, 1325, 1265, 3, 2, 2, 2, 1325, 1268, 3, 2, 2, 2, 1325, 1271, 3, 2, 2, 2, 1325, 1274, 3, 2, 2, 2, 1325, 1277, 3, 2, 2, 2, 1325, 1280, 3, 2, 2, 2, 1325, 1283, 3, 2, 2, 2, 1325, 1286, 3, 2, 2, 2, 1325, 1289, 3, 2, 2, 2, 1325, 1292, 3, 2, 2, 2, 1325, 1295, 3, 2, 2, 2, 1325, 1298, 3, 2, 2, 2, 1325, 1301, 3, 2, 2, 2, 1325, 1304, 3, 2, 2, 2, 1325, 1307, 3, 2, 2, 2, 1325, 1310, 3, 2, 2, 2, 1325, 1313, 3, 2, 2, 2, 1325, 1316, 3, 2, 2, 2, 1325, 1319, 3, 2, 2, 2, 1325, 1322, 3, 2, 2, 2, 1326, 243, 3, 2, 2, 2, 1327, 1328, 7, 37, 2, 2, 1328, 245, 3, 2, 2, 2, 1329, 1330, 7, 60, 2, 2, 1330, 247, 3, 2, 2, 2, 1331, 1332, 7, 46, 2, 2, 1332, 249, 3, 2, 2, 2, 1333, 1334, 7, 42, 2, 2, 1334, 251, 3, 2, 2, 2, 1335, 1336, 7, 43, 2, 2, 1336, 253, 3, 2, 2, 2, 1337, 1338, 7, 93, 2, 2, 1338, 255, 3, 2, 2, 2, 1339, 1340, 7, 95, 2, 2, 1340, 257, 3, 2, 2, 2, 1341, 1342, 7, 48, 2, 2, 1342, 259, 3, 2, 2, 2, 1343, 1344, 7, 62, 2, 2, 1344, 1345, 7, 62, 2, 2, 1345, 261, 3, 2, 2, 2, 1346, 1347, 7, 64, 2, 2, 1347, 1348, 7, 64, 2, 2, 1348, 263, 3, 2, 2, 2, 1349, 1350, 7, 45, 2, 2, 1350, 265, 3, 2, 2, 2, 1351, 1352, 7, 47, 2, 2, 1352, 267, 3, 2, 2, 2, 1353, 1354, 7, 62, 2, 2, 1354, 269, 3, 2, 2, 2, 1355, 1356, 7, 64, 2, 2, 1356, 271, 3, 2, 2, 2, 1357, 1358, 7, 44, 2, 2, 1358, 273, 3, 2, 2, 2, 1359, 1360, 7, 49, 2, 2, 1360, 275, 3, 2, 2, 2, 1361, 1362, 7, 125, 2, 2, 1362, 1363, 8, 138, 9, 2, 1363, 277, 3, 2, 2, 2, 1364, 1365, 7, 127, 2, 2, 1365, 1366, 8, 139, 10, 2, 1366, 279, 3, 2, 2, 2, 1367, 1370, 5, 282, 141, 2, 1368, 1370, 5, 290, 145, 2, 1369, 1367, 3, 2, 2, 2, 1369, 1368, 3, 2, 2, 2, 1370, 281, 3, 2, 2, 2, 1371, 1375, 5, 284, 142, 2, 1372, 1375, 5, 286, 143, 2, 1373, 1375, 5, 288, 144, 2, 1374, 1371, 3, 2, 2, 2, 1374, 1372, 3, 2, 2, 2, 1374, 1373, 3, 2, 2, 2, 1375, 283, 3, 2, 2, 2, 1376, 1380, 7, 39, 2, 2, 1377, 1379, 5, 298, 149, 2, 1378, 1377, 3, 2, 2, 2, 1379, 1382, 3, 2, 2, 2, 1380, 1378, 3, 2, 2, 2, 1380, 1381, 3, 2, 2, 2, 1381, 1383, 3, 2, 2, 2, 1382, 1380, 3, 2, 2, 2, 1383, 1385, 7, 48, 2, 2, 1384, 1386, 5, 298, 149, 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, 300, 150, 2, 1390, 1389, 3, 2, 2, 2, 1391, 1394, 3, 2, 2, 2, 1392, 1390, 3, 2, 2, 2, 1392, 1393, 3, 2, 2, 2, 1393, 1395, 3, 2, 2, 2, 1394, 1392, 3, 2, 2, 2, 1395, 1397, 7, 48, 2, 2, 1396, 1398, 5, 300, 150, 2, 1397, 1396, 3, 2, 2, 2, 1398, 1399, 3, 2, 2, 2, 1399, 1397, 3, 2, 2, 2, 1399, 1400, 3, 2, 2, 2, 1400, 287, 3, 2, 2, 2, 1401, 1405, 7, 38, 2, 2, 1402, 1404, 5, 302, 151, 2, 1403, 1402, 3, 2, 2, 2, 1404, 1407, 3, 2, 2, 2, 1405, 1403, 3, 2, 2, 2, 1405, 1406, 3, 2, 2, 2, 1406, 1408, 3, 2, 2, 2, 1407, 1405, 3, 2, 2, 2, 1408, 1410, 7, 48, 2, 2, 1409, 1411, 5, 302, 151, 2, 1410, 1409, 3, 2, 2, 2, 1411, 1412, 3, 2, 2, 2, 1412, 1410, 3, 2, 2, 2, 1412, 1413, 3, 2, 2, 2, 1413, 289, 3, 2, 2, 2, 1414, 1418, 5, 294, 147, 2, 1415, 1418, 5, 296, 148, 2, 1416, 1418, 5, 292, 146, 2, 1417, 1414, 3, 2, 2, 2, 1417, 1415, 3, 2, 2, 2, 1417, 1416, 3, 2, 2, 2, 1418, 291, 3, 2, 2, 2, 1419, 1421, 7, 39, 2, 2, 1420, 1422, 5, 298, 149, 2, 1421, 1420, 3, 2, 2, 2, 1422, 1423, 3, 2, 2, 2, 1423, 1421, 3, 2, 2, 2, 1423, 1424, 3, 2, 2, 2, 1424, 293, 3, 2, 2, 2, 1425, 1427, 5, 300, 150, 2, 1426, 1425, 3, 2, 2, 2, 1427, 1428, 3, 2, 2, 2, 1428, 1426, 3, 2, 2, 2, 1428, 1429, 3, 2, 2, 2, 1429, 295, 3, 2, 2, 2, 1430, 1432, 7, 38, 2, 2, 1431, 1433, 5, 302, 151, 2, 1432, 1431, 3, 2, 2, 2, 1433, 1434, 3, 2, 2, 2, 1434, 1432, 3, 2, 2, 2, 1434, 1435, 3, 2, 2, 2, 1435, 297, 3, 2, 2, 2, 1436, 1437, 9, 11, 2, 2, 1437, 299, 3, 2, 2, 2, 1438, 1439, 9, 12, 2, 2, 1439, 301, 3, 2, 2, 2, 1440, 1441, 9, 13, 2, 2, 1441, 303, 3, 2, 2, 2, 1442, 1446, 7, 41, 2, 2, 1443, 1444, 7, 94, 2, 2, 1444, 1447, 9, 6, 2, 2, 1445, 1447, 10, 7, 2, 2, 1446, 1443, 3, 2, 2, 2, 1446, 1445, 3, 2, 2, 2, 1447, 1448, 3, 2, 2, 2, 1448, 1449, 7, 41, 2, 2, 1449, 305, 3, 2, 2, 2, 1450, 1452, 5, 308, 154, 2, 1451, 1453, 9, 18, 2, 2, 1452, 1451, 3, 2, 2, 2, 1453, 1454, 3, 2, 2, 2, 1454, 1452, 3, 2, 2, 2, 1454, 1455, 3, 2, 2, 2, 1455, 307, 3, 2, 2, 2, 1456, 1460, 7, 35, 2, 2, 1457, 1459, 5, 314, 157, 2, 1458, 1457, 3, 2, 2, 2, 1459, 1462, 3, 2, 2, 2, 1460, 1458, 3, 2, 2, 2, 1460, 1461, 3, 2, 2, 2, 1461, 309, 3, 2, 2, 2, 1462, 1460, 3, 2, 2, 2, 1463, 1467, 5, 312, 156, 2, 1464, 1466, 5, 314, 157, 2, 1465, 1464, 3, 2, 2, 2, 1466, 1469, 3, 2, 2, 2, 1467, 1465, 3, 2, 2, 2, 1467, 1468, 3, 2, 2, 2, 1468, 311, 3, 2, 2, 2, 1469, 1467, 3, 2, 2, 2, 1470, 1471, 9, 14, 2, 2, 1471, 313, 3, 2, 2, 2, 1472, 1473, 9, 15, 2, 2, 1473, 315, 3, 2, 2, 2, 1474, 1476, 9, 16, 2, 2, 1475, 1474, 3, 2, 2, 2, 1476, 1477, 3, 2, 2, 2, 1477, 1475, 3, 2, 2, 2, 1477, 1478, 3, 2, 2, 2, 1478, 1479, 3, 2, 2, 2, 1479, 1480, 8, 158, 7, 2, 1480, 317, 3, 2, 2, 2, 1481, 1482, 7, 49, 2, 2, 1482, 1483, 7, 49, 2, 2, 1483, 1487, 3, 2, 2, 2, 1484, 1486, 10, 17, 2, 2, 1485, 1484, 3, 2, 2, 2, 1486, 1489, 3, 2, 2, 2, 1487, 1485, 3, 2, 2, 2, 1487, 1488, 3, 2, 2, 2, 1488, 1490, 3, 2, 2, 2, 1489, 1487, 3, 2, 2, 2, 1490, 1491, 8, 159, 8, 2, 1491, 319, 3, 2, 2, 2, 1492, 1493, 7, 49, 2, 2, 1493, 1494, 7, 44, 2, 2, 1494, 1498, 3, 2, 2, 2, 1495, 1497, 11, 2, 2, 2, 1496, 1495, 3, 2, 2, 2, 1497, 1500, 3, 2, 2, 2, 1498, 1499, 3, 2, 2, 2, 1498, 1496, 3, 2, 2, 2, 1499, 1501, 3, 2, 2, 2, 1500, 1498, 3, 2, 2, 2, 1501, 1502, 7, 44, 2, 2, 1502, 1503, 7, 49, 2, 2, 1503, 1504, 3, 2, 2, 2, 1504, 1505, 8, 160, 8, 2, 1505, 321, 3, 2, 2, 2, 59, 2, 3, 427, 636, 803, 842, 853, 861, 871, 873, 878, 882, 884, 887, 895, 947, 952, 959, 964, 971, 976, 983, 990, 995, 1002, 1007, 1012, 1019, 1025, 1027, 1032, 1039, 1044, 1056, 1068, 1078, 1089, 1325, 1369, 1374, 1380, 1387, 1392, 1399, 1405, 1412, 1417, 1423, 1428, 1434, 1446, 1454, 1460, 1467, 1477, 1487, 1498, 11, 3, 2, 2, 3, 38, 3, 3, 75, 4, 3, 93, 5, 3, 114, 6, 2, 3, 2, 2, 4, 2, 3, 138, 7, 3, 139, 8] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 155, 1534, 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, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 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, 434, 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, 643, 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, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 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, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 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, 5, 90, 818, 10, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 857, 10, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 5, 92, 868, 10, 92, 3, 93, 3, 93, 3, 93, 3, 93, 7, 93, 874, 10, 93, 12, 93, 14, 93, 877, 11, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 7, 94, 886, 10, 94, 12, 94, 14, 94, 889, 11, 94, 3, 94, 3, 94, 5, 94, 893, 10, 94, 3, 94, 3, 94, 5, 94, 897, 10, 94, 5, 94, 899, 10, 94, 3, 94, 5, 94, 902, 10, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 5, 95, 910, 10, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 5, 97, 927, 10, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 5, 105, 976, 10, 105, 3, 106, 3, 106, 3, 106, 5, 106, 981, 10, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 5, 107, 988, 10, 107, 3, 107, 7, 107, 991, 10, 107, 12, 107, 14, 107, 994, 11, 107, 3, 107, 3, 107, 6, 107, 998, 10, 107, 13, 107, 14, 107, 999, 3, 108, 7, 108, 1003, 10, 108, 12, 108, 14, 108, 1006, 11, 108, 3, 108, 3, 108, 6, 108, 1010, 10, 108, 13, 108, 14, 108, 1011, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1019, 10, 109, 3, 109, 7, 109, 1022, 10, 109, 12, 109, 14, 109, 1025, 11, 109, 3, 109, 3, 109, 6, 109, 1029, 10, 109, 13, 109, 14, 109, 1030, 3, 110, 3, 110, 3, 110, 5, 110, 1036, 10, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1041, 10, 110, 3, 111, 3, 111, 3, 111, 6, 111, 1046, 10, 111, 13, 111, 14, 111, 1047, 3, 111, 3, 111, 6, 111, 1052, 10, 111, 13, 111, 14, 111, 1053, 5, 111, 1056, 10, 111, 3, 112, 6, 112, 1059, 10, 112, 13, 112, 14, 112, 1060, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 5, 113, 1068, 10, 113, 3, 113, 6, 113, 1071, 10, 113, 13, 113, 14, 113, 1072, 3, 114, 3, 114, 3, 115, 3, 115, 3, 116, 3, 116, 3, 117, 3, 117, 7, 117, 1083, 10, 117, 12, 117, 14, 117, 1086, 11, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 120, 6, 120, 1095, 10, 120, 13, 120, 14, 120, 1096, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 7, 121, 1105, 10, 121, 12, 121, 14, 121, 1108, 11, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 1116, 10, 122, 12, 122, 14, 122, 1119, 11, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 5, 124, 1354, 10, 124, 3, 125, 3, 125, 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, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 5, 143, 1398, 10, 143, 3, 144, 3, 144, 3, 144, 5, 144, 1403, 10, 144, 3, 145, 3, 145, 7, 145, 1407, 10, 145, 12, 145, 14, 145, 1410, 11, 145, 3, 145, 3, 145, 6, 145, 1414, 10, 145, 13, 145, 14, 145, 1415, 3, 146, 7, 146, 1419, 10, 146, 12, 146, 14, 146, 1422, 11, 146, 3, 146, 3, 146, 6, 146, 1426, 10, 146, 13, 146, 14, 146, 1427, 3, 147, 3, 147, 7, 147, 1432, 10, 147, 12, 147, 14, 147, 1435, 11, 147, 3, 147, 3, 147, 6, 147, 1439, 10, 147, 13, 147, 14, 147, 1440, 3, 148, 3, 148, 3, 148, 5, 148, 1446, 10, 148, 3, 149, 3, 149, 6, 149, 1450, 10, 149, 13, 149, 14, 149, 1451, 3, 150, 6, 150, 1455, 10, 150, 13, 150, 14, 150, 1456, 3, 151, 3, 151, 6, 151, 1461, 10, 151, 13, 151, 14, 151, 1462, 3, 152, 3, 152, 3, 153, 3, 153, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 5, 155, 1475, 10, 155, 3, 155, 3, 155, 3, 156, 3, 156, 6, 156, 1481, 10, 156, 13, 156, 14, 156, 1482, 3, 157, 3, 157, 7, 157, 1487, 10, 157, 12, 157, 14, 157, 1490, 11, 157, 3, 158, 3, 158, 7, 158, 1494, 10, 158, 12, 158, 14, 158, 1497, 11, 158, 3, 159, 3, 159, 3, 160, 3, 160, 3, 161, 6, 161, 1504, 10, 161, 13, 161, 14, 161, 1505, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 7, 162, 1514, 10, 162, 12, 162, 14, 162, 1517, 11, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 7, 163, 1525, 10, 163, 12, 163, 14, 163, 1528, 11, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 5, 875, 1117, 1526, 2, 164, 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, 109, 216, 110, 218, 111, 220, 112, 222, 113, 224, 114, 226, 115, 228, 2, 230, 2, 232, 2, 234, 116, 236, 2, 238, 2, 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, 142, 292, 143, 294, 144, 296, 145, 298, 146, 300, 147, 302, 148, 304, 2, 306, 2, 308, 2, 310, 149, 312, 150, 314, 151, 316, 152, 318, 2, 320, 2, 322, 153, 324, 154, 326, 155, 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, 1673, 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, 214, 3, 2, 2, 2, 2, 216, 3, 2, 2, 2, 2, 218, 3, 2, 2, 2, 2, 220, 3, 2, 2, 2, 2, 222, 3, 2, 2, 2, 2, 224, 3, 2, 2, 2, 2, 226, 3, 2, 2, 2, 2, 234, 3, 2, 2, 2, 2, 240, 3, 2, 2, 2, 2, 242, 3, 2, 2, 2, 2, 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, 290, 3, 2, 2, 2, 3, 292, 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, 302, 3, 2, 2, 2, 3, 310, 3, 2, 2, 2, 3, 312, 3, 2, 2, 2, 3, 314, 3, 2, 2, 2, 3, 316, 3, 2, 2, 2, 3, 322, 3, 2, 2, 2, 3, 324, 3, 2, 2, 2, 3, 326, 3, 2, 2, 2, 4, 328, 3, 2, 2, 2, 6, 331, 3, 2, 2, 2, 8, 333, 3, 2, 2, 2, 10, 335, 3, 2, 2, 2, 12, 337, 3, 2, 2, 2, 14, 339, 3, 2, 2, 2, 16, 341, 3, 2, 2, 2, 18, 343, 3, 2, 2, 2, 20, 345, 3, 2, 2, 2, 22, 347, 3, 2, 2, 2, 24, 350, 3, 2, 2, 2, 26, 352, 3, 2, 2, 2, 28, 354, 3, 2, 2, 2, 30, 357, 3, 2, 2, 2, 32, 359, 3, 2, 2, 2, 34, 361, 3, 2, 2, 2, 36, 363, 3, 2, 2, 2, 38, 365, 3, 2, 2, 2, 40, 367, 3, 2, 2, 2, 42, 370, 3, 2, 2, 2, 44, 373, 3, 2, 2, 2, 46, 375, 3, 2, 2, 2, 48, 377, 3, 2, 2, 2, 50, 379, 3, 2, 2, 2, 52, 381, 3, 2, 2, 2, 54, 384, 3, 2, 2, 2, 56, 387, 3, 2, 2, 2, 58, 390, 3, 2, 2, 2, 60, 393, 3, 2, 2, 2, 62, 395, 3, 2, 2, 2, 64, 398, 3, 2, 2, 2, 66, 401, 3, 2, 2, 2, 68, 403, 3, 2, 2, 2, 70, 406, 3, 2, 2, 2, 72, 409, 3, 2, 2, 2, 74, 433, 3, 2, 2, 2, 76, 435, 3, 2, 2, 2, 78, 444, 3, 2, 2, 2, 80, 452, 3, 2, 2, 2, 82, 460, 3, 2, 2, 2, 84, 468, 3, 2, 2, 2, 86, 471, 3, 2, 2, 2, 88, 478, 3, 2, 2, 2, 90, 483, 3, 2, 2, 2, 92, 487, 3, 2, 2, 2, 94, 496, 3, 2, 2, 2, 96, 505, 3, 2, 2, 2, 98, 514, 3, 2, 2, 2, 100, 520, 3, 2, 2, 2, 102, 527, 3, 2, 2, 2, 104, 534, 3, 2, 2, 2, 106, 540, 3, 2, 2, 2, 108, 547, 3, 2, 2, 2, 110, 556, 3, 2, 2, 2, 112, 563, 3, 2, 2, 2, 114, 573, 3, 2, 2, 2, 116, 582, 3, 2, 2, 2, 118, 592, 3, 2, 2, 2, 120, 597, 3, 2, 2, 2, 122, 603, 3, 2, 2, 2, 124, 609, 3, 2, 2, 2, 126, 614, 3, 2, 2, 2, 128, 642, 3, 2, 2, 2, 130, 644, 3, 2, 2, 2, 132, 654, 3, 2, 2, 2, 134, 657, 3, 2, 2, 2, 136, 662, 3, 2, 2, 2, 138, 668, 3, 2, 2, 2, 140, 671, 3, 2, 2, 2, 142, 675, 3, 2, 2, 2, 144, 682, 3, 2, 2, 2, 146, 689, 3, 2, 2, 2, 148, 695, 3, 2, 2, 2, 150, 704, 3, 2, 2, 2, 152, 710, 3, 2, 2, 2, 154, 718, 3, 2, 2, 2, 156, 723, 3, 2, 2, 2, 158, 730, 3, 2, 2, 2, 160, 735, 3, 2, 2, 2, 162, 742, 3, 2, 2, 2, 164, 749, 3, 2, 2, 2, 166, 757, 3, 2, 2, 2, 168, 765, 3, 2, 2, 2, 170, 774, 3, 2, 2, 2, 172, 779, 3, 2, 2, 2, 174, 788, 3, 2, 2, 2, 176, 794, 3, 2, 2, 2, 178, 801, 3, 2, 2, 2, 180, 817, 3, 2, 2, 2, 182, 856, 3, 2, 2, 2, 184, 867, 3, 2, 2, 2, 186, 869, 3, 2, 2, 2, 188, 881, 3, 2, 2, 2, 190, 905, 3, 2, 2, 2, 192, 913, 3, 2, 2, 2, 194, 926, 3, 2, 2, 2, 196, 928, 3, 2, 2, 2, 198, 935, 3, 2, 2, 2, 200, 942, 3, 2, 2, 2, 202, 950, 3, 2, 2, 2, 204, 954, 3, 2, 2, 2, 206, 960, 3, 2, 2, 2, 208, 966, 3, 2, 2, 2, 210, 975, 3, 2, 2, 2, 212, 980, 3, 2, 2, 2, 214, 987, 3, 2, 2, 2, 216, 1004, 3, 2, 2, 2, 218, 1018, 3, 2, 2, 2, 220, 1035, 3, 2, 2, 2, 222, 1055, 3, 2, 2, 2, 224, 1058, 3, 2, 2, 2, 226, 1067, 3, 2, 2, 2, 228, 1074, 3, 2, 2, 2, 230, 1076, 3, 2, 2, 2, 232, 1078, 3, 2, 2, 2, 234, 1080, 3, 2, 2, 2, 236, 1089, 3, 2, 2, 2, 238, 1091, 3, 2, 2, 2, 240, 1094, 3, 2, 2, 2, 242, 1100, 3, 2, 2, 2, 244, 1111, 3, 2, 2, 2, 246, 1125, 3, 2, 2, 2, 248, 1353, 3, 2, 2, 2, 250, 1355, 3, 2, 2, 2, 252, 1357, 3, 2, 2, 2, 254, 1359, 3, 2, 2, 2, 256, 1361, 3, 2, 2, 2, 258, 1363, 3, 2, 2, 2, 260, 1365, 3, 2, 2, 2, 262, 1367, 3, 2, 2, 2, 264, 1369, 3, 2, 2, 2, 266, 1371, 3, 2, 2, 2, 268, 1374, 3, 2, 2, 2, 270, 1377, 3, 2, 2, 2, 272, 1379, 3, 2, 2, 2, 274, 1381, 3, 2, 2, 2, 276, 1383, 3, 2, 2, 2, 278, 1385, 3, 2, 2, 2, 280, 1387, 3, 2, 2, 2, 282, 1389, 3, 2, 2, 2, 284, 1392, 3, 2, 2, 2, 286, 1397, 3, 2, 2, 2, 288, 1402, 3, 2, 2, 2, 290, 1404, 3, 2, 2, 2, 292, 1420, 3, 2, 2, 2, 294, 1429, 3, 2, 2, 2, 296, 1445, 3, 2, 2, 2, 298, 1447, 3, 2, 2, 2, 300, 1454, 3, 2, 2, 2, 302, 1458, 3, 2, 2, 2, 304, 1464, 3, 2, 2, 2, 306, 1466, 3, 2, 2, 2, 308, 1468, 3, 2, 2, 2, 310, 1470, 3, 2, 2, 2, 312, 1478, 3, 2, 2, 2, 314, 1484, 3, 2, 2, 2, 316, 1491, 3, 2, 2, 2, 318, 1498, 3, 2, 2, 2, 320, 1500, 3, 2, 2, 2, 322, 1503, 3, 2, 2, 2, 324, 1509, 3, 2, 2, 2, 326, 1520, 3, 2, 2, 2, 328, 329, 7, 125, 2, 2, 329, 330, 8, 2, 2, 2, 330, 5, 3, 2, 2, 2, 331, 332, 7, 127, 2, 2, 332, 7, 3, 2, 2, 2, 333, 334, 7, 93, 2, 2, 334, 9, 3, 2, 2, 2, 335, 336, 7, 95, 2, 2, 336, 11, 3, 2, 2, 2, 337, 338, 7, 42, 2, 2, 338, 13, 3, 2, 2, 2, 339, 340, 7, 43, 2, 2, 340, 15, 3, 2, 2, 2, 341, 342, 7, 61, 2, 2, 342, 17, 3, 2, 2, 2, 343, 344, 7, 60, 2, 2, 344, 19, 3, 2, 2, 2, 345, 346, 7, 46, 2, 2, 346, 21, 3, 2, 2, 2, 347, 348, 7, 48, 2, 2, 348, 349, 7, 48, 2, 2, 349, 23, 3, 2, 2, 2, 350, 351, 7, 65, 2, 2, 351, 25, 3, 2, 2, 2, 352, 353, 7, 48, 2, 2, 353, 27, 3, 2, 2, 2, 354, 355, 7, 47, 2, 2, 355, 356, 7, 64, 2, 2, 356, 29, 3, 2, 2, 2, 357, 358, 7, 45, 2, 2, 358, 31, 3, 2, 2, 2, 359, 360, 7, 47, 2, 2, 360, 33, 3, 2, 2, 2, 361, 362, 7, 44, 2, 2, 362, 35, 3, 2, 2, 2, 363, 364, 7, 49, 2, 2, 364, 37, 3, 2, 2, 2, 365, 366, 7, 39, 2, 2, 366, 39, 3, 2, 2, 2, 367, 368, 7, 45, 2, 2, 368, 369, 7, 45, 2, 2, 369, 41, 3, 2, 2, 2, 370, 371, 7, 47, 2, 2, 371, 372, 7, 47, 2, 2, 372, 43, 3, 2, 2, 2, 373, 374, 7, 40, 2, 2, 374, 45, 3, 2, 2, 2, 375, 376, 7, 128, 2, 2, 376, 47, 3, 2, 2, 2, 377, 378, 7, 96, 2, 2, 378, 49, 3, 2, 2, 2, 379, 380, 7, 126, 2, 2, 380, 51, 3, 2, 2, 2, 381, 382, 7, 62, 2, 2, 382, 383, 7, 62, 2, 2, 383, 53, 3, 2, 2, 2, 384, 385, 7, 64, 2, 2, 385, 386, 7, 64, 2, 2, 386, 55, 3, 2, 2, 2, 387, 388, 7, 63, 2, 2, 388, 389, 7, 63, 2, 2, 389, 57, 3, 2, 2, 2, 390, 391, 7, 35, 2, 2, 391, 392, 7, 63, 2, 2, 392, 59, 3, 2, 2, 2, 393, 394, 7, 62, 2, 2, 394, 61, 3, 2, 2, 2, 395, 396, 7, 62, 2, 2, 396, 397, 7, 63, 2, 2, 397, 63, 3, 2, 2, 2, 398, 399, 7, 64, 2, 2, 399, 400, 7, 63, 2, 2, 400, 65, 3, 2, 2, 2, 401, 402, 7, 64, 2, 2, 402, 67, 3, 2, 2, 2, 403, 404, 7, 40, 2, 2, 404, 405, 7, 40, 2, 2, 405, 69, 3, 2, 2, 2, 406, 407, 7, 126, 2, 2, 407, 408, 7, 126, 2, 2, 408, 71, 3, 2, 2, 2, 409, 410, 7, 63, 2, 2, 410, 73, 3, 2, 2, 2, 411, 412, 7, 45, 2, 2, 412, 434, 7, 63, 2, 2, 413, 414, 7, 47, 2, 2, 414, 434, 7, 63, 2, 2, 415, 416, 7, 44, 2, 2, 416, 434, 7, 63, 2, 2, 417, 418, 7, 49, 2, 2, 418, 434, 7, 63, 2, 2, 419, 420, 7, 39, 2, 2, 420, 434, 7, 63, 2, 2, 421, 422, 7, 62, 2, 2, 422, 423, 7, 62, 2, 2, 423, 434, 7, 63, 2, 2, 424, 425, 7, 64, 2, 2, 425, 426, 7, 64, 2, 2, 426, 434, 7, 63, 2, 2, 427, 428, 7, 40, 2, 2, 428, 434, 7, 63, 2, 2, 429, 430, 7, 126, 2, 2, 430, 434, 7, 63, 2, 2, 431, 432, 7, 96, 2, 2, 432, 434, 7, 63, 2, 2, 433, 411, 3, 2, 2, 2, 433, 413, 3, 2, 2, 2, 433, 415, 3, 2, 2, 2, 433, 417, 3, 2, 2, 2, 433, 419, 3, 2, 2, 2, 433, 421, 3, 2, 2, 2, 433, 424, 3, 2, 2, 2, 433, 427, 3, 2, 2, 2, 433, 429, 3, 2, 2, 2, 433, 431, 3, 2, 2, 2, 434, 75, 3, 2, 2, 2, 435, 436, 7, 107, 2, 2, 436, 437, 7, 111, 2, 2, 437, 438, 7, 114, 2, 2, 438, 439, 7, 113, 2, 2, 439, 440, 7, 116, 2, 2, 440, 441, 7, 118, 2, 2, 441, 442, 3, 2, 2, 2, 442, 443, 8, 38, 3, 2, 443, 77, 3, 2, 2, 2, 444, 445, 7, 118, 2, 2, 445, 446, 7, 123, 2, 2, 446, 447, 7, 114, 2, 2, 447, 448, 7, 103, 2, 2, 448, 449, 7, 102, 2, 2, 449, 450, 7, 103, 2, 2, 450, 451, 7, 104, 2, 2, 451, 79, 3, 2, 2, 2, 452, 453, 7, 37, 2, 2, 453, 454, 7, 114, 2, 2, 454, 455, 7, 116, 2, 2, 455, 456, 7, 99, 2, 2, 456, 457, 7, 105, 2, 2, 457, 458, 7, 111, 2, 2, 458, 459, 7, 99, 2, 2, 459, 81, 3, 2, 2, 2, 460, 461, 7, 116, 2, 2, 461, 462, 7, 103, 2, 2, 462, 463, 7, 117, 2, 2, 463, 464, 7, 103, 2, 2, 464, 465, 7, 116, 2, 2, 465, 466, 7, 120, 2, 2, 466, 467, 7, 103, 2, 2, 467, 83, 3, 2, 2, 2, 468, 469, 7, 114, 2, 2, 469, 470, 7, 101, 2, 2, 470, 85, 3, 2, 2, 2, 471, 472, 7, 118, 2, 2, 472, 473, 7, 99, 2, 2, 473, 474, 7, 116, 2, 2, 474, 475, 7, 105, 2, 2, 475, 476, 7, 103, 2, 2, 476, 477, 7, 118, 2, 2, 477, 87, 3, 2, 2, 2, 478, 479, 7, 110, 2, 2, 479, 480, 7, 107, 2, 2, 480, 481, 7, 112, 2, 2, 481, 482, 7, 109, 2, 2, 482, 89, 3, 2, 2, 2, 483, 484, 7, 101, 2, 2, 484, 485, 7, 114, 2, 2, 485, 486, 7, 119, 2, 2, 486, 91, 3, 2, 2, 2, 487, 488, 7, 101, 2, 2, 488, 489, 7, 113, 2, 2, 489, 490, 7, 102, 2, 2, 490, 491, 7, 103, 2, 2, 491, 492, 7, 97, 2, 2, 492, 493, 7, 117, 2, 2, 493, 494, 7, 103, 2, 2, 494, 495, 7, 105, 2, 2, 495, 93, 3, 2, 2, 2, 496, 497, 7, 102, 2, 2, 497, 498, 7, 99, 2, 2, 498, 499, 7, 118, 2, 2, 499, 500, 7, 99, 2, 2, 500, 501, 7, 97, 2, 2, 501, 502, 7, 117, 2, 2, 502, 503, 7, 103, 2, 2, 503, 504, 7, 105, 2, 2, 504, 95, 3, 2, 2, 2, 505, 506, 7, 103, 2, 2, 506, 507, 7, 112, 2, 2, 507, 508, 7, 101, 2, 2, 508, 509, 7, 113, 2, 2, 509, 510, 7, 102, 2, 2, 510, 511, 7, 107, 2, 2, 511, 512, 7, 112, 2, 2, 512, 513, 7, 105, 2, 2, 513, 97, 3, 2, 2, 2, 514, 515, 7, 101, 2, 2, 515, 516, 7, 113, 2, 2, 516, 517, 7, 112, 2, 2, 517, 518, 7, 117, 2, 2, 518, 519, 7, 118, 2, 2, 519, 99, 3, 2, 2, 2, 520, 521, 7, 103, 2, 2, 521, 522, 7, 122, 2, 2, 522, 523, 7, 118, 2, 2, 523, 524, 7, 103, 2, 2, 524, 525, 7, 116, 2, 2, 525, 526, 7, 112, 2, 2, 526, 101, 3, 2, 2, 2, 527, 528, 7, 103, 2, 2, 528, 529, 7, 122, 2, 2, 529, 530, 7, 114, 2, 2, 530, 531, 7, 113, 2, 2, 531, 532, 7, 116, 2, 2, 532, 533, 7, 118, 2, 2, 533, 103, 3, 2, 2, 2, 534, 535, 7, 99, 2, 2, 535, 536, 7, 110, 2, 2, 536, 537, 7, 107, 2, 2, 537, 538, 7, 105, 2, 2, 538, 539, 7, 112, 2, 2, 539, 105, 3, 2, 2, 2, 540, 541, 7, 107, 2, 2, 541, 542, 7, 112, 2, 2, 542, 543, 7, 110, 2, 2, 543, 544, 7, 107, 2, 2, 544, 545, 7, 112, 2, 2, 545, 546, 7, 103, 2, 2, 546, 107, 3, 2, 2, 2, 547, 548, 7, 120, 2, 2, 548, 549, 7, 113, 2, 2, 549, 550, 7, 110, 2, 2, 550, 551, 7, 99, 2, 2, 551, 552, 7, 118, 2, 2, 552, 553, 7, 107, 2, 2, 553, 554, 7, 110, 2, 2, 554, 555, 7, 103, 2, 2, 555, 109, 3, 2, 2, 2, 556, 557, 7, 117, 2, 2, 557, 558, 7, 118, 2, 2, 558, 559, 7, 99, 2, 2, 559, 560, 7, 118, 2, 2, 560, 561, 7, 107, 2, 2, 561, 562, 7, 101, 2, 2, 562, 111, 3, 2, 2, 2, 563, 564, 7, 107, 2, 2, 564, 565, 7, 112, 2, 2, 565, 566, 7, 118, 2, 2, 566, 567, 7, 103, 2, 2, 567, 568, 7, 116, 2, 2, 568, 569, 7, 116, 2, 2, 569, 570, 7, 119, 2, 2, 570, 571, 7, 114, 2, 2, 571, 572, 7, 118, 2, 2, 572, 113, 3, 2, 2, 2, 573, 574, 7, 116, 2, 2, 574, 575, 7, 103, 2, 2, 575, 576, 7, 105, 2, 2, 576, 577, 7, 107, 2, 2, 577, 578, 7, 117, 2, 2, 578, 579, 7, 118, 2, 2, 579, 580, 7, 103, 2, 2, 580, 581, 7, 116, 2, 2, 581, 115, 3, 2, 2, 2, 582, 583, 7, 97, 2, 2, 583, 584, 7, 97, 2, 2, 584, 585, 7, 99, 2, 2, 585, 586, 7, 102, 2, 2, 586, 587, 7, 102, 2, 2, 587, 588, 7, 116, 2, 2, 588, 589, 7, 103, 2, 2, 589, 590, 7, 117, 2, 2, 590, 591, 7, 117, 2, 2, 591, 117, 3, 2, 2, 2, 592, 593, 7, 97, 2, 2, 593, 594, 7, 97, 2, 2, 594, 595, 7, 124, 2, 2, 595, 596, 7, 114, 2, 2, 596, 119, 3, 2, 2, 2, 597, 598, 7, 97, 2, 2, 598, 599, 7, 97, 2, 2, 599, 600, 7, 111, 2, 2, 600, 601, 7, 103, 2, 2, 601, 602, 7, 111, 2, 2, 602, 121, 3, 2, 2, 2, 603, 604, 7, 97, 2, 2, 604, 605, 7, 97, 2, 2, 605, 606, 7, 117, 2, 2, 606, 607, 7, 117, 2, 2, 607, 608, 7, 99, 2, 2, 608, 123, 3, 2, 2, 2, 609, 610, 7, 97, 2, 2, 610, 611, 7, 97, 2, 2, 611, 612, 7, 111, 2, 2, 612, 613, 7, 99, 2, 2, 613, 125, 3, 2, 2, 2, 614, 615, 7, 101, 2, 2, 615, 616, 7, 99, 2, 2, 616, 617, 7, 110, 2, 2, 617, 618, 7, 110, 2, 2, 618, 619, 7, 107, 2, 2, 619, 620, 7, 112, 2, 2, 620, 621, 7, 105, 2, 2, 621, 127, 3, 2, 2, 2, 622, 623, 7, 97, 2, 2, 623, 624, 7, 97, 2, 2, 624, 625, 7, 117, 2, 2, 625, 626, 7, 118, 2, 2, 626, 627, 7, 99, 2, 2, 627, 628, 7, 101, 2, 2, 628, 629, 7, 109, 2, 2, 629, 630, 7, 101, 2, 2, 630, 631, 7, 99, 2, 2, 631, 632, 7, 110, 2, 2, 632, 643, 7, 110, 2, 2, 633, 634, 7, 97, 2, 2, 634, 635, 7, 97, 2, 2, 635, 636, 7, 114, 2, 2, 636, 637, 7, 106, 2, 2, 637, 638, 7, 107, 2, 2, 638, 639, 7, 101, 2, 2, 639, 640, 7, 99, 2, 2, 640, 641, 7, 110, 2, 2, 641, 643, 7, 110, 2, 2, 642, 622, 3, 2, 2, 2, 642, 633, 3, 2, 2, 2, 643, 129, 3, 2, 2, 2, 644, 645, 7, 120, 2, 2, 645, 646, 7, 99, 2, 2, 646, 647, 7, 116, 2, 2, 647, 648, 7, 97, 2, 2, 648, 649, 7, 111, 2, 2, 649, 650, 7, 113, 2, 2, 650, 651, 7, 102, 2, 2, 651, 652, 7, 103, 2, 2, 652, 653, 7, 110, 2, 2, 653, 131, 3, 2, 2, 2, 654, 655, 7, 107, 2, 2, 655, 656, 7, 104, 2, 2, 656, 133, 3, 2, 2, 2, 657, 658, 7, 103, 2, 2, 658, 659, 7, 110, 2, 2, 659, 660, 7, 117, 2, 2, 660, 661, 7, 103, 2, 2, 661, 135, 3, 2, 2, 2, 662, 663, 7, 121, 2, 2, 663, 664, 7, 106, 2, 2, 664, 665, 7, 107, 2, 2, 665, 666, 7, 110, 2, 2, 666, 667, 7, 103, 2, 2, 667, 137, 3, 2, 2, 2, 668, 669, 7, 102, 2, 2, 669, 670, 7, 113, 2, 2, 670, 139, 3, 2, 2, 2, 671, 672, 7, 104, 2, 2, 672, 673, 7, 113, 2, 2, 673, 674, 7, 116, 2, 2, 674, 141, 3, 2, 2, 2, 675, 676, 7, 117, 2, 2, 676, 677, 7, 121, 2, 2, 677, 678, 7, 107, 2, 2, 678, 679, 7, 118, 2, 2, 679, 680, 7, 101, 2, 2, 680, 681, 7, 106, 2, 2, 681, 143, 3, 2, 2, 2, 682, 683, 7, 116, 2, 2, 683, 684, 7, 103, 2, 2, 684, 685, 7, 118, 2, 2, 685, 686, 7, 119, 2, 2, 686, 687, 7, 116, 2, 2, 687, 688, 7, 112, 2, 2, 688, 145, 3, 2, 2, 2, 689, 690, 7, 100, 2, 2, 690, 691, 7, 116, 2, 2, 691, 692, 7, 103, 2, 2, 692, 693, 7, 99, 2, 2, 693, 694, 7, 109, 2, 2, 694, 147, 3, 2, 2, 2, 695, 696, 7, 101, 2, 2, 696, 697, 7, 113, 2, 2, 697, 698, 7, 112, 2, 2, 698, 699, 7, 118, 2, 2, 699, 700, 7, 107, 2, 2, 700, 701, 7, 112, 2, 2, 701, 702, 7, 119, 2, 2, 702, 703, 7, 103, 2, 2, 703, 149, 3, 2, 2, 2, 704, 705, 7, 99, 2, 2, 705, 706, 7, 117, 2, 2, 706, 707, 7, 111, 2, 2, 707, 708, 3, 2, 2, 2, 708, 709, 8, 75, 4, 2, 709, 151, 3, 2, 2, 2, 710, 711, 7, 102, 2, 2, 711, 712, 7, 103, 2, 2, 712, 713, 7, 104, 2, 2, 713, 714, 7, 99, 2, 2, 714, 715, 7, 119, 2, 2, 715, 716, 7, 110, 2, 2, 716, 717, 7, 118, 2, 2, 717, 153, 3, 2, 2, 2, 718, 719, 7, 101, 2, 2, 719, 720, 7, 99, 2, 2, 720, 721, 7, 117, 2, 2, 721, 722, 7, 103, 2, 2, 722, 155, 3, 2, 2, 2, 723, 724, 7, 117, 2, 2, 724, 725, 7, 118, 2, 2, 725, 726, 7, 116, 2, 2, 726, 727, 7, 119, 2, 2, 727, 728, 7, 101, 2, 2, 728, 729, 7, 118, 2, 2, 729, 157, 3, 2, 2, 2, 730, 731, 7, 103, 2, 2, 731, 732, 7, 112, 2, 2, 732, 733, 7, 119, 2, 2, 733, 734, 7, 111, 2, 2, 734, 159, 3, 2, 2, 2, 735, 736, 7, 117, 2, 2, 736, 737, 7, 107, 2, 2, 737, 738, 7, 124, 2, 2, 738, 739, 7, 103, 2, 2, 739, 740, 7, 113, 2, 2, 740, 741, 7, 104, 2, 2, 741, 161, 3, 2, 2, 2, 742, 743, 7, 118, 2, 2, 743, 744, 7, 123, 2, 2, 744, 745, 7, 114, 2, 2, 745, 746, 7, 103, 2, 2, 746, 747, 7, 107, 2, 2, 747, 748, 7, 102, 2, 2, 748, 163, 3, 2, 2, 2, 749, 750, 7, 102, 2, 2, 750, 751, 7, 103, 2, 2, 751, 752, 7, 104, 2, 2, 752, 753, 7, 107, 2, 2, 753, 754, 7, 112, 2, 2, 754, 755, 7, 103, 2, 2, 755, 756, 7, 102, 2, 2, 756, 165, 3, 2, 2, 2, 757, 758, 7, 109, 2, 2, 758, 759, 7, 107, 2, 2, 759, 760, 7, 101, 2, 2, 760, 761, 7, 109, 2, 2, 761, 762, 7, 99, 2, 2, 762, 763, 7, 117, 2, 2, 763, 764, 7, 111, 2, 2, 764, 167, 3, 2, 2, 2, 765, 766, 7, 116, 2, 2, 766, 767, 7, 103, 2, 2, 767, 768, 7, 117, 2, 2, 768, 769, 7, 113, 2, 2, 769, 770, 7, 119, 2, 2, 770, 771, 7, 116, 2, 2, 771, 772, 7, 101, 2, 2, 772, 773, 7, 103, 2, 2, 773, 169, 3, 2, 2, 2, 774, 775, 7, 119, 2, 2, 775, 776, 7, 117, 2, 2, 776, 777, 7, 103, 2, 2, 777, 778, 7, 117, 2, 2, 778, 171, 3, 2, 2, 2, 779, 780, 7, 101, 2, 2, 780, 781, 7, 110, 2, 2, 781, 782, 7, 113, 2, 2, 782, 783, 7, 100, 2, 2, 783, 784, 7, 100, 2, 2, 784, 785, 7, 103, 2, 2, 785, 786, 7, 116, 2, 2, 786, 787, 7, 117, 2, 2, 787, 173, 3, 2, 2, 2, 788, 789, 7, 100, 2, 2, 789, 790, 7, 123, 2, 2, 790, 791, 7, 118, 2, 2, 791, 792, 7, 103, 2, 2, 792, 793, 7, 117, 2, 2, 793, 175, 3, 2, 2, 2, 794, 795, 7, 101, 2, 2, 795, 796, 7, 123, 2, 2, 796, 797, 7, 101, 2, 2, 797, 798, 7, 110, 2, 2, 798, 799, 7, 103, 2, 2, 799, 800, 7, 117, 2, 2, 800, 177, 3, 2, 2, 2, 801, 802, 7, 35, 2, 2, 802, 179, 3, 2, 2, 2, 803, 804, 7, 117, 2, 2, 804, 805, 7, 107, 2, 2, 805, 806, 7, 105, 2, 2, 806, 807, 7, 112, 2, 2, 807, 808, 7, 103, 2, 2, 808, 818, 7, 102, 2, 2, 809, 810, 7, 119, 2, 2, 810, 811, 7, 112, 2, 2, 811, 812, 7, 117, 2, 2, 812, 813, 7, 107, 2, 2, 813, 814, 7, 105, 2, 2, 814, 815, 7, 112, 2, 2, 815, 816, 7, 103, 2, 2, 816, 818, 7, 102, 2, 2, 817, 803, 3, 2, 2, 2, 817, 809, 3, 2, 2, 2, 818, 181, 3, 2, 2, 2, 819, 820, 7, 100, 2, 2, 820, 821, 7, 123, 2, 2, 821, 822, 7, 118, 2, 2, 822, 857, 7, 103, 2, 2, 823, 824, 7, 121, 2, 2, 824, 825, 7, 113, 2, 2, 825, 826, 7, 116, 2, 2, 826, 857, 7, 102, 2, 2, 827, 828, 7, 102, 2, 2, 828, 829, 7, 121, 2, 2, 829, 830, 7, 113, 2, 2, 830, 831, 7, 116, 2, 2, 831, 857, 7, 102, 2, 2, 832, 833, 7, 100, 2, 2, 833, 834, 7, 113, 2, 2, 834, 835, 7, 113, 2, 2, 835, 857, 7, 110, 2, 2, 836, 837, 7, 101, 2, 2, 837, 838, 7, 106, 2, 2, 838, 839, 7, 99, 2, 2, 839, 857, 7, 116, 2, 2, 840, 841, 7, 117, 2, 2, 841, 842, 7, 106, 2, 2, 842, 843, 7, 113, 2, 2, 843, 844, 7, 116, 2, 2, 844, 857, 7, 118, 2, 2, 845, 846, 7, 107, 2, 2, 846, 847, 7, 112, 2, 2, 847, 857, 7, 118, 2, 2, 848, 849, 7, 110, 2, 2, 849, 850, 7, 113, 2, 2, 850, 851, 7, 112, 2, 2, 851, 857, 7, 105, 2, 2, 852, 853, 7, 120, 2, 2, 853, 854, 7, 113, 2, 2, 854, 855, 7, 107, 2, 2, 855, 857, 7, 102, 2, 2, 856, 819, 3, 2, 2, 2, 856, 823, 3, 2, 2, 2, 856, 827, 3, 2, 2, 2, 856, 832, 3, 2, 2, 2, 856, 836, 3, 2, 2, 2, 856, 840, 3, 2, 2, 2, 856, 845, 3, 2, 2, 2, 856, 848, 3, 2, 2, 2, 856, 852, 3, 2, 2, 2, 857, 183, 3, 2, 2, 2, 858, 859, 7, 118, 2, 2, 859, 860, 7, 116, 2, 2, 860, 861, 7, 119, 2, 2, 861, 868, 7, 103, 2, 2, 862, 863, 7, 104, 2, 2, 863, 864, 7, 99, 2, 2, 864, 865, 7, 110, 2, 2, 865, 866, 7, 117, 2, 2, 866, 868, 7, 103, 2, 2, 867, 858, 3, 2, 2, 2, 867, 862, 3, 2, 2, 2, 868, 185, 3, 2, 2, 2, 869, 870, 7, 125, 2, 2, 870, 871, 7, 125, 2, 2, 871, 875, 3, 2, 2, 2, 872, 874, 11, 2, 2, 2, 873, 872, 3, 2, 2, 2, 874, 877, 3, 2, 2, 2, 875, 876, 3, 2, 2, 2, 875, 873, 3, 2, 2, 2, 876, 878, 3, 2, 2, 2, 877, 875, 3, 2, 2, 2, 878, 879, 7, 127, 2, 2, 879, 880, 7, 127, 2, 2, 880, 187, 3, 2, 2, 2, 881, 887, 7, 36, 2, 2, 882, 883, 7, 94, 2, 2, 883, 886, 7, 36, 2, 2, 884, 886, 10, 2, 2, 2, 885, 882, 3, 2, 2, 2, 885, 884, 3, 2, 2, 2, 886, 889, 3, 2, 2, 2, 887, 885, 3, 2, 2, 2, 887, 888, 3, 2, 2, 2, 888, 890, 3, 2, 2, 2, 889, 887, 3, 2, 2, 2, 890, 892, 7, 36, 2, 2, 891, 893, 9, 3, 2, 2, 892, 891, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 898, 3, 2, 2, 2, 894, 896, 9, 4, 2, 2, 895, 897, 9, 5, 2, 2, 896, 895, 3, 2, 2, 2, 896, 897, 3, 2, 2, 2, 897, 899, 3, 2, 2, 2, 898, 894, 3, 2, 2, 2, 898, 899, 3, 2, 2, 2, 899, 901, 3, 2, 2, 2, 900, 902, 9, 3, 2, 2, 901, 900, 3, 2, 2, 2, 901, 902, 3, 2, 2, 2, 902, 903, 3, 2, 2, 2, 903, 904, 8, 94, 5, 2, 904, 189, 3, 2, 2, 2, 905, 909, 7, 41, 2, 2, 906, 907, 7, 94, 2, 2, 907, 910, 9, 6, 2, 2, 908, 910, 10, 7, 2, 2, 909, 906, 3, 2, 2, 2, 909, 908, 3, 2, 2, 2, 910, 911, 3, 2, 2, 2, 911, 912, 7, 41, 2, 2, 912, 191, 3, 2, 2, 2, 913, 914, 7, 37, 2, 2, 914, 915, 7, 102, 2, 2, 915, 916, 7, 103, 2, 2, 916, 917, 7, 104, 2, 2, 917, 918, 7, 107, 2, 2, 918, 919, 7, 112, 2, 2, 919, 920, 7, 103, 2, 2, 920, 193, 3, 2, 2, 2, 921, 922, 7, 94, 2, 2, 922, 927, 7, 12, 2, 2, 923, 924, 7, 94, 2, 2, 924, 925, 7, 15, 2, 2, 925, 927, 7, 12, 2, 2, 926, 921, 3, 2, 2, 2, 926, 923, 3, 2, 2, 2, 927, 195, 3, 2, 2, 2, 928, 929, 7, 37, 2, 2, 929, 930, 7, 119, 2, 2, 930, 931, 7, 112, 2, 2, 931, 932, 7, 102, 2, 2, 932, 933, 7, 103, 2, 2, 933, 934, 7, 104, 2, 2, 934, 197, 3, 2, 2, 2, 935, 936, 7, 37, 2, 2, 936, 937, 7, 107, 2, 2, 937, 938, 7, 104, 2, 2, 938, 939, 7, 102, 2, 2, 939, 940, 7, 103, 2, 2, 940, 941, 7, 104, 2, 2, 941, 199, 3, 2, 2, 2, 942, 943, 7, 37, 2, 2, 943, 944, 7, 107, 2, 2, 944, 945, 7, 104, 2, 2, 945, 946, 7, 112, 2, 2, 946, 947, 7, 102, 2, 2, 947, 948, 7, 103, 2, 2, 948, 949, 7, 104, 2, 2, 949, 201, 3, 2, 2, 2, 950, 951, 7, 37, 2, 2, 951, 952, 7, 107, 2, 2, 952, 953, 7, 104, 2, 2, 953, 203, 3, 2, 2, 2, 954, 955, 7, 37, 2, 2, 955, 956, 7, 103, 2, 2, 956, 957, 7, 110, 2, 2, 957, 958, 7, 107, 2, 2, 958, 959, 7, 104, 2, 2, 959, 205, 3, 2, 2, 2, 960, 961, 7, 37, 2, 2, 961, 962, 7, 103, 2, 2, 962, 963, 7, 110, 2, 2, 963, 964, 7, 117, 2, 2, 964, 965, 7, 103, 2, 2, 965, 207, 3, 2, 2, 2, 966, 967, 7, 37, 2, 2, 967, 968, 7, 103, 2, 2, 968, 969, 7, 112, 2, 2, 969, 970, 7, 102, 2, 2, 970, 971, 7, 107, 2, 2, 971, 972, 7, 104, 2, 2, 972, 209, 3, 2, 2, 2, 973, 976, 5, 212, 106, 2, 974, 976, 5, 220, 110, 2, 975, 973, 3, 2, 2, 2, 975, 974, 3, 2, 2, 2, 976, 211, 3, 2, 2, 2, 977, 981, 5, 214, 107, 2, 978, 981, 5, 216, 108, 2, 979, 981, 5, 218, 109, 2, 980, 977, 3, 2, 2, 2, 980, 978, 3, 2, 2, 2, 980, 979, 3, 2, 2, 2, 981, 213, 3, 2, 2, 2, 982, 988, 7, 39, 2, 2, 983, 984, 7, 50, 2, 2, 984, 988, 7, 100, 2, 2, 985, 986, 7, 50, 2, 2, 986, 988, 7, 68, 2, 2, 987, 982, 3, 2, 2, 2, 987, 983, 3, 2, 2, 2, 987, 985, 3, 2, 2, 2, 988, 992, 3, 2, 2, 2, 989, 991, 5, 228, 114, 2, 990, 989, 3, 2, 2, 2, 991, 994, 3, 2, 2, 2, 992, 990, 3, 2, 2, 2, 992, 993, 3, 2, 2, 2, 993, 995, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 995, 997, 7, 48, 2, 2, 996, 998, 5, 228, 114, 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, 215, 3, 2, 2, 2, 1001, 1003, 5, 230, 115, 2, 1002, 1001, 3, 2, 2, 2, 1003, 1006, 3, 2, 2, 2, 1004, 1002, 3, 2, 2, 2, 1004, 1005, 3, 2, 2, 2, 1005, 1007, 3, 2, 2, 2, 1006, 1004, 3, 2, 2, 2, 1007, 1009, 7, 48, 2, 2, 1008, 1010, 5, 230, 115, 2, 1009, 1008, 3, 2, 2, 2, 1010, 1011, 3, 2, 2, 2, 1011, 1009, 3, 2, 2, 2, 1011, 1012, 3, 2, 2, 2, 1012, 217, 3, 2, 2, 2, 1013, 1019, 7, 38, 2, 2, 1014, 1015, 7, 50, 2, 2, 1015, 1019, 7, 122, 2, 2, 1016, 1017, 7, 50, 2, 2, 1017, 1019, 7, 90, 2, 2, 1018, 1013, 3, 2, 2, 2, 1018, 1014, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1023, 3, 2, 2, 2, 1020, 1022, 5, 232, 116, 2, 1021, 1020, 3, 2, 2, 2, 1022, 1025, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 1026, 3, 2, 2, 2, 1025, 1023, 3, 2, 2, 2, 1026, 1028, 7, 48, 2, 2, 1027, 1029, 5, 232, 116, 2, 1028, 1027, 3, 2, 2, 2, 1029, 1030, 3, 2, 2, 2, 1030, 1028, 3, 2, 2, 2, 1030, 1031, 3, 2, 2, 2, 1031, 219, 3, 2, 2, 2, 1032, 1036, 5, 224, 112, 2, 1033, 1036, 5, 226, 113, 2, 1034, 1036, 5, 222, 111, 2, 1035, 1032, 3, 2, 2, 2, 1035, 1033, 3, 2, 2, 2, 1035, 1034, 3, 2, 2, 2, 1036, 1040, 3, 2, 2, 2, 1037, 1038, 9, 8, 2, 2, 1038, 1041, 9, 9, 2, 2, 1039, 1041, 7, 110, 2, 2, 1040, 1037, 3, 2, 2, 2, 1040, 1039, 3, 2, 2, 2, 1040, 1041, 3, 2, 2, 2, 1041, 221, 3, 2, 2, 2, 1042, 1043, 7, 50, 2, 2, 1043, 1045, 9, 10, 2, 2, 1044, 1046, 5, 228, 114, 2, 1045, 1044, 3, 2, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1045, 3, 2, 2, 2, 1047, 1048, 3, 2, 2, 2, 1048, 1056, 3, 2, 2, 2, 1049, 1051, 7, 39, 2, 2, 1050, 1052, 5, 228, 114, 2, 1051, 1050, 3, 2, 2, 2, 1052, 1053, 3, 2, 2, 2, 1053, 1051, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1056, 3, 2, 2, 2, 1055, 1042, 3, 2, 2, 2, 1055, 1049, 3, 2, 2, 2, 1056, 223, 3, 2, 2, 2, 1057, 1059, 5, 230, 115, 2, 1058, 1057, 3, 2, 2, 2, 1059, 1060, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1060, 1061, 3, 2, 2, 2, 1061, 225, 3, 2, 2, 2, 1062, 1068, 7, 38, 2, 2, 1063, 1064, 7, 50, 2, 2, 1064, 1068, 7, 122, 2, 2, 1065, 1066, 7, 50, 2, 2, 1066, 1068, 7, 90, 2, 2, 1067, 1062, 3, 2, 2, 2, 1067, 1063, 3, 2, 2, 2, 1067, 1065, 3, 2, 2, 2, 1068, 1070, 3, 2, 2, 2, 1069, 1071, 5, 232, 116, 2, 1070, 1069, 3, 2, 2, 2, 1071, 1072, 3, 2, 2, 2, 1072, 1070, 3, 2, 2, 2, 1072, 1073, 3, 2, 2, 2, 1073, 227, 3, 2, 2, 2, 1074, 1075, 9, 11, 2, 2, 1075, 229, 3, 2, 2, 2, 1076, 1077, 9, 12, 2, 2, 1077, 231, 3, 2, 2, 2, 1078, 1079, 9, 13, 2, 2, 1079, 233, 3, 2, 2, 2, 1080, 1084, 5, 236, 118, 2, 1081, 1083, 5, 238, 119, 2, 1082, 1081, 3, 2, 2, 2, 1083, 1086, 3, 2, 2, 2, 1084, 1082, 3, 2, 2, 2, 1084, 1085, 3, 2, 2, 2, 1085, 1087, 3, 2, 2, 2, 1086, 1084, 3, 2, 2, 2, 1087, 1088, 8, 117, 6, 2, 1088, 235, 3, 2, 2, 2, 1089, 1090, 9, 14, 2, 2, 1090, 237, 3, 2, 2, 2, 1091, 1092, 9, 15, 2, 2, 1092, 239, 3, 2, 2, 2, 1093, 1095, 9, 16, 2, 2, 1094, 1093, 3, 2, 2, 2, 1095, 1096, 3, 2, 2, 2, 1096, 1094, 3, 2, 2, 2, 1096, 1097, 3, 2, 2, 2, 1097, 1098, 3, 2, 2, 2, 1098, 1099, 8, 120, 7, 2, 1099, 241, 3, 2, 2, 2, 1100, 1101, 7, 49, 2, 2, 1101, 1102, 7, 49, 2, 2, 1102, 1106, 3, 2, 2, 2, 1103, 1105, 10, 17, 2, 2, 1104, 1103, 3, 2, 2, 2, 1105, 1108, 3, 2, 2, 2, 1106, 1104, 3, 2, 2, 2, 1106, 1107, 3, 2, 2, 2, 1107, 1109, 3, 2, 2, 2, 1108, 1106, 3, 2, 2, 2, 1109, 1110, 8, 121, 8, 2, 1110, 243, 3, 2, 2, 2, 1111, 1112, 7, 49, 2, 2, 1112, 1113, 7, 44, 2, 2, 1113, 1117, 3, 2, 2, 2, 1114, 1116, 11, 2, 2, 2, 1115, 1114, 3, 2, 2, 2, 1116, 1119, 3, 2, 2, 2, 1117, 1118, 3, 2, 2, 2, 1117, 1115, 3, 2, 2, 2, 1118, 1120, 3, 2, 2, 2, 1119, 1117, 3, 2, 2, 2, 1120, 1121, 7, 44, 2, 2, 1121, 1122, 7, 49, 2, 2, 1122, 1123, 3, 2, 2, 2, 1123, 1124, 8, 122, 8, 2, 1124, 245, 3, 2, 2, 2, 1125, 1126, 7, 48, 2, 2, 1126, 1127, 7, 100, 2, 2, 1127, 1128, 7, 123, 2, 2, 1128, 1129, 7, 118, 2, 2, 1129, 1130, 7, 103, 2, 2, 1130, 247, 3, 2, 2, 2, 1131, 1132, 7, 100, 2, 2, 1132, 1133, 7, 116, 2, 2, 1133, 1354, 7, 109, 2, 2, 1134, 1135, 7, 113, 2, 2, 1135, 1136, 7, 116, 2, 2, 1136, 1354, 7, 99, 2, 2, 1137, 1138, 7, 109, 2, 2, 1138, 1139, 7, 107, 2, 2, 1139, 1354, 7, 110, 2, 2, 1140, 1141, 7, 117, 2, 2, 1141, 1142, 7, 110, 2, 2, 1142, 1354, 7, 113, 2, 2, 1143, 1144, 7, 112, 2, 2, 1144, 1145, 7, 113, 2, 2, 1145, 1354, 7, 114, 2, 2, 1146, 1147, 7, 99, 2, 2, 1147, 1148, 7, 117, 2, 2, 1148, 1354, 7, 110, 2, 2, 1149, 1150, 7, 114, 2, 2, 1150, 1151, 7, 106, 2, 2, 1151, 1354, 7, 114, 2, 2, 1152, 1153, 7, 99, 2, 2, 1153, 1154, 7, 112, 2, 2, 1154, 1354, 7, 101, 2, 2, 1155, 1156, 7, 100, 2, 2, 1156, 1157, 7, 114, 2, 2, 1157, 1354, 7, 110, 2, 2, 1158, 1159, 7, 101, 2, 2, 1159, 1160, 7, 110, 2, 2, 1160, 1354, 7, 101, 2, 2, 1161, 1162, 7, 108, 2, 2, 1162, 1163, 7, 117, 2, 2, 1163, 1354, 7, 116, 2, 2, 1164, 1165, 7, 99, 2, 2, 1165, 1166, 7, 112, 2, 2, 1166, 1354, 7, 102, 2, 2, 1167, 1168, 7, 116, 2, 2, 1168, 1169, 7, 110, 2, 2, 1169, 1354, 7, 99, 2, 2, 1170, 1171, 7, 100, 2, 2, 1171, 1172, 7, 107, 2, 2, 1172, 1354, 7, 118, 2, 2, 1173, 1174, 7, 116, 2, 2, 1174, 1175, 7, 113, 2, 2, 1175, 1354, 7, 110, 2, 2, 1176, 1177, 7, 114, 2, 2, 1177, 1178, 7, 110, 2, 2, 1178, 1354, 7, 99, 2, 2, 1179, 1180, 7, 114, 2, 2, 1180, 1181, 7, 110, 2, 2, 1181, 1354, 7, 114, 2, 2, 1182, 1183, 7, 100, 2, 2, 1183, 1184, 7, 111, 2, 2, 1184, 1354, 7, 107, 2, 2, 1185, 1186, 7, 117, 2, 2, 1186, 1187, 7, 103, 2, 2, 1187, 1354, 7, 101, 2, 2, 1188, 1189, 7, 116, 2, 2, 1189, 1190, 7, 118, 2, 2, 1190, 1354, 7, 107, 2, 2, 1191, 1192, 7, 103, 2, 2, 1192, 1193, 7, 113, 2, 2, 1193, 1354, 7, 116, 2, 2, 1194, 1195, 7, 117, 2, 2, 1195, 1196, 7, 116, 2, 2, 1196, 1354, 7, 103, 2, 2, 1197, 1198, 7, 110, 2, 2, 1198, 1199, 7, 117, 2, 2, 1199, 1354, 7, 116, 2, 2, 1200, 1201, 7, 114, 2, 2, 1201, 1202, 7, 106, 2, 2, 1202, 1354, 7, 99, 2, 2, 1203, 1204, 7, 99, 2, 2, 1204, 1205, 7, 110, 2, 2, 1205, 1354, 7, 116, 2, 2, 1206, 1207, 7, 108, 2, 2, 1207, 1208, 7, 111, 2, 2, 1208, 1354, 7, 114, 2, 2, 1209, 1210, 7, 100, 2, 2, 1210, 1211, 7, 120, 2, 2, 1211, 1354, 7, 101, 2, 2, 1212, 1213, 7, 101, 2, 2, 1213, 1214, 7, 110, 2, 2, 1214, 1354, 7, 107, 2, 2, 1215, 1216, 7, 116, 2, 2, 1216, 1217, 7, 118, 2, 2, 1217, 1354, 7, 117, 2, 2, 1218, 1219, 7, 99, 2, 2, 1219, 1220, 7, 102, 2, 2, 1220, 1354, 7, 101, 2, 2, 1221, 1222, 7, 116, 2, 2, 1222, 1223, 7, 116, 2, 2, 1223, 1354, 7, 99, 2, 2, 1224, 1225, 7, 100, 2, 2, 1225, 1226, 7, 120, 2, 2, 1226, 1354, 7, 117, 2, 2, 1227, 1228, 7, 117, 2, 2, 1228, 1229, 7, 103, 2, 2, 1229, 1354, 7, 107, 2, 2, 1230, 1231, 7, 117, 2, 2, 1231, 1232, 7, 99, 2, 2, 1232, 1354, 7, 122, 2, 2, 1233, 1234, 7, 117, 2, 2, 1234, 1235, 7, 118, 2, 2, 1235, 1354, 7, 123, 2, 2, 1236, 1237, 7, 117, 2, 2, 1237, 1238, 7, 118, 2, 2, 1238, 1354, 7, 99, 2, 2, 1239, 1240, 7, 117, 2, 2, 1240, 1241, 7, 118, 2, 2, 1241, 1354, 7, 122, 2, 2, 1242, 1243, 7, 102, 2, 2, 1243, 1244, 7, 103, 2, 2, 1244, 1354, 7, 123, 2, 2, 1245, 1246, 7, 118, 2, 2, 1246, 1247, 7, 122, 2, 2, 1247, 1354, 7, 99, 2, 2, 1248, 1249, 7, 122, 2, 2, 1249, 1250, 7, 99, 2, 2, 1250, 1354, 7, 99, 2, 2, 1251, 1252, 7, 100, 2, 2, 1252, 1253, 7, 101, 2, 2, 1253, 1354, 7, 101, 2, 2, 1254, 1255, 7, 99, 2, 2, 1255, 1256, 7, 106, 2, 2, 1256, 1354, 7, 122, 2, 2, 1257, 1258, 7, 118, 2, 2, 1258, 1259, 7, 123, 2, 2, 1259, 1354, 7, 99, 2, 2, 1260, 1261, 7, 118, 2, 2, 1261, 1262, 7, 122, 2, 2, 1262, 1354, 7, 117, 2, 2, 1263, 1264, 7, 118, 2, 2, 1264, 1265, 7, 99, 2, 2, 1265, 1354, 7, 117, 2, 2, 1266, 1267, 7, 117, 2, 2, 1267, 1268, 7, 106, 2, 2, 1268, 1354, 7, 123, 2, 2, 1269, 1270, 7, 117, 2, 2, 1270, 1271, 7, 106, 2, 2, 1271, 1354, 7, 122, 2, 2, 1272, 1273, 7, 110, 2, 2, 1273, 1274, 7, 102, 2, 2, 1274, 1354, 7, 123, 2, 2, 1275, 1276, 7, 110, 2, 2, 1276, 1277, 7, 102, 2, 2, 1277, 1354, 7, 99, 2, 2, 1278, 1279, 7, 110, 2, 2, 1279, 1280, 7, 102, 2, 2, 1280, 1354, 7, 122, 2, 2, 1281, 1282, 7, 110, 2, 2, 1282, 1283, 7, 99, 2, 2, 1283, 1354, 7, 122, 2, 2, 1284, 1285, 7, 118, 2, 2, 1285, 1286, 7, 99, 2, 2, 1286, 1354, 7, 123, 2, 2, 1287, 1288, 7, 118, 2, 2, 1288, 1289, 7, 99, 2, 2, 1289, 1354, 7, 122, 2, 2, 1290, 1291, 7, 100, 2, 2, 1291, 1292, 7, 101, 2, 2, 1292, 1354, 7, 117, 2, 2, 1293, 1294, 7, 101, 2, 2, 1294, 1295, 7, 110, 2, 2, 1295, 1354, 7, 120, 2, 2, 1296, 1297, 7, 118, 2, 2, 1297, 1298, 7, 117, 2, 2, 1298, 1354, 7, 122, 2, 2, 1299, 1300, 7, 110, 2, 2, 1300, 1301, 7, 99, 2, 2, 1301, 1354, 7, 117, 2, 2, 1302, 1303, 7, 101, 2, 2, 1303, 1304, 7, 114, 2, 2, 1304, 1354, 7, 123, 2, 2, 1305, 1306, 7, 101, 2, 2, 1306, 1307, 7, 111, 2, 2, 1307, 1354, 7, 114, 2, 2, 1308, 1309, 7, 101, 2, 2, 1309, 1310, 7, 114, 2, 2, 1310, 1354, 7, 122, 2, 2, 1311, 1312, 7, 102, 2, 2, 1312, 1313, 7, 101, 2, 2, 1313, 1354, 7, 114, 2, 2, 1314, 1315, 7, 102, 2, 2, 1315, 1316, 7, 103, 2, 2, 1316, 1354, 7, 101, 2, 2, 1317, 1318, 7, 107, 2, 2, 1318, 1319, 7, 112, 2, 2, 1319, 1354, 7, 101, 2, 2, 1320, 1321, 7, 99, 2, 2, 1321, 1322, 7, 122, 2, 2, 1322, 1354, 7, 117, 2, 2, 1323, 1324, 7, 100, 2, 2, 1324, 1325, 7, 112, 2, 2, 1325, 1354, 7, 103, 2, 2, 1326, 1327, 7, 101, 2, 2, 1327, 1328, 7, 110, 2, 2, 1328, 1354, 7, 102, 2, 2, 1329, 1330, 7, 117, 2, 2, 1330, 1331, 7, 100, 2, 2, 1331, 1354, 7, 101, 2, 2, 1332, 1333, 7, 107, 2, 2, 1333, 1334, 7, 117, 2, 2, 1334, 1354, 7, 101, 2, 2, 1335, 1336, 7, 107, 2, 2, 1336, 1337, 7, 112, 2, 2, 1337, 1354, 7, 122, 2, 2, 1338, 1339, 7, 100, 2, 2, 1339, 1340, 7, 103, 2, 2, 1340, 1354, 7, 115, 2, 2, 1341, 1342, 7, 117, 2, 2, 1342, 1343, 7, 103, 2, 2, 1343, 1354, 7, 102, 2, 2, 1344, 1345, 7, 102, 2, 2, 1345, 1346, 7, 103, 2, 2, 1346, 1354, 7, 122, 2, 2, 1347, 1348, 7, 107, 2, 2, 1348, 1349, 7, 112, 2, 2, 1349, 1354, 7, 123, 2, 2, 1350, 1351, 7, 116, 2, 2, 1351, 1352, 7, 113, 2, 2, 1352, 1354, 7, 116, 2, 2, 1353, 1131, 3, 2, 2, 2, 1353, 1134, 3, 2, 2, 2, 1353, 1137, 3, 2, 2, 2, 1353, 1140, 3, 2, 2, 2, 1353, 1143, 3, 2, 2, 2, 1353, 1146, 3, 2, 2, 2, 1353, 1149, 3, 2, 2, 2, 1353, 1152, 3, 2, 2, 2, 1353, 1155, 3, 2, 2, 2, 1353, 1158, 3, 2, 2, 2, 1353, 1161, 3, 2, 2, 2, 1353, 1164, 3, 2, 2, 2, 1353, 1167, 3, 2, 2, 2, 1353, 1170, 3, 2, 2, 2, 1353, 1173, 3, 2, 2, 2, 1353, 1176, 3, 2, 2, 2, 1353, 1179, 3, 2, 2, 2, 1353, 1182, 3, 2, 2, 2, 1353, 1185, 3, 2, 2, 2, 1353, 1188, 3, 2, 2, 2, 1353, 1191, 3, 2, 2, 2, 1353, 1194, 3, 2, 2, 2, 1353, 1197, 3, 2, 2, 2, 1353, 1200, 3, 2, 2, 2, 1353, 1203, 3, 2, 2, 2, 1353, 1206, 3, 2, 2, 2, 1353, 1209, 3, 2, 2, 2, 1353, 1212, 3, 2, 2, 2, 1353, 1215, 3, 2, 2, 2, 1353, 1218, 3, 2, 2, 2, 1353, 1221, 3, 2, 2, 2, 1353, 1224, 3, 2, 2, 2, 1353, 1227, 3, 2, 2, 2, 1353, 1230, 3, 2, 2, 2, 1353, 1233, 3, 2, 2, 2, 1353, 1236, 3, 2, 2, 2, 1353, 1239, 3, 2, 2, 2, 1353, 1242, 3, 2, 2, 2, 1353, 1245, 3, 2, 2, 2, 1353, 1248, 3, 2, 2, 2, 1353, 1251, 3, 2, 2, 2, 1353, 1254, 3, 2, 2, 2, 1353, 1257, 3, 2, 2, 2, 1353, 1260, 3, 2, 2, 2, 1353, 1263, 3, 2, 2, 2, 1353, 1266, 3, 2, 2, 2, 1353, 1269, 3, 2, 2, 2, 1353, 1272, 3, 2, 2, 2, 1353, 1275, 3, 2, 2, 2, 1353, 1278, 3, 2, 2, 2, 1353, 1281, 3, 2, 2, 2, 1353, 1284, 3, 2, 2, 2, 1353, 1287, 3, 2, 2, 2, 1353, 1290, 3, 2, 2, 2, 1353, 1293, 3, 2, 2, 2, 1353, 1296, 3, 2, 2, 2, 1353, 1299, 3, 2, 2, 2, 1353, 1302, 3, 2, 2, 2, 1353, 1305, 3, 2, 2, 2, 1353, 1308, 3, 2, 2, 2, 1353, 1311, 3, 2, 2, 2, 1353, 1314, 3, 2, 2, 2, 1353, 1317, 3, 2, 2, 2, 1353, 1320, 3, 2, 2, 2, 1353, 1323, 3, 2, 2, 2, 1353, 1326, 3, 2, 2, 2, 1353, 1329, 3, 2, 2, 2, 1353, 1332, 3, 2, 2, 2, 1353, 1335, 3, 2, 2, 2, 1353, 1338, 3, 2, 2, 2, 1353, 1341, 3, 2, 2, 2, 1353, 1344, 3, 2, 2, 2, 1353, 1347, 3, 2, 2, 2, 1353, 1350, 3, 2, 2, 2, 1354, 249, 3, 2, 2, 2, 1355, 1356, 7, 37, 2, 2, 1356, 251, 3, 2, 2, 2, 1357, 1358, 7, 60, 2, 2, 1358, 253, 3, 2, 2, 2, 1359, 1360, 7, 46, 2, 2, 1360, 255, 3, 2, 2, 2, 1361, 1362, 7, 42, 2, 2, 1362, 257, 3, 2, 2, 2, 1363, 1364, 7, 43, 2, 2, 1364, 259, 3, 2, 2, 2, 1365, 1366, 7, 93, 2, 2, 1366, 261, 3, 2, 2, 2, 1367, 1368, 7, 95, 2, 2, 1368, 263, 3, 2, 2, 2, 1369, 1370, 7, 48, 2, 2, 1370, 265, 3, 2, 2, 2, 1371, 1372, 7, 62, 2, 2, 1372, 1373, 7, 62, 2, 2, 1373, 267, 3, 2, 2, 2, 1374, 1375, 7, 64, 2, 2, 1375, 1376, 7, 64, 2, 2, 1376, 269, 3, 2, 2, 2, 1377, 1378, 7, 45, 2, 2, 1378, 271, 3, 2, 2, 2, 1379, 1380, 7, 47, 2, 2, 1380, 273, 3, 2, 2, 2, 1381, 1382, 7, 62, 2, 2, 1382, 275, 3, 2, 2, 2, 1383, 1384, 7, 64, 2, 2, 1384, 277, 3, 2, 2, 2, 1385, 1386, 7, 44, 2, 2, 1386, 279, 3, 2, 2, 2, 1387, 1388, 7, 49, 2, 2, 1388, 281, 3, 2, 2, 2, 1389, 1390, 7, 125, 2, 2, 1390, 1391, 8, 141, 9, 2, 1391, 283, 3, 2, 2, 2, 1392, 1393, 7, 127, 2, 2, 1393, 1394, 8, 142, 10, 2, 1394, 285, 3, 2, 2, 2, 1395, 1398, 5, 288, 144, 2, 1396, 1398, 5, 296, 148, 2, 1397, 1395, 3, 2, 2, 2, 1397, 1396, 3, 2, 2, 2, 1398, 287, 3, 2, 2, 2, 1399, 1403, 5, 290, 145, 2, 1400, 1403, 5, 292, 146, 2, 1401, 1403, 5, 294, 147, 2, 1402, 1399, 3, 2, 2, 2, 1402, 1400, 3, 2, 2, 2, 1402, 1401, 3, 2, 2, 2, 1403, 289, 3, 2, 2, 2, 1404, 1408, 7, 39, 2, 2, 1405, 1407, 5, 304, 152, 2, 1406, 1405, 3, 2, 2, 2, 1407, 1410, 3, 2, 2, 2, 1408, 1406, 3, 2, 2, 2, 1408, 1409, 3, 2, 2, 2, 1409, 1411, 3, 2, 2, 2, 1410, 1408, 3, 2, 2, 2, 1411, 1413, 7, 48, 2, 2, 1412, 1414, 5, 304, 152, 2, 1413, 1412, 3, 2, 2, 2, 1414, 1415, 3, 2, 2, 2, 1415, 1413, 3, 2, 2, 2, 1415, 1416, 3, 2, 2, 2, 1416, 291, 3, 2, 2, 2, 1417, 1419, 5, 306, 153, 2, 1418, 1417, 3, 2, 2, 2, 1419, 1422, 3, 2, 2, 2, 1420, 1418, 3, 2, 2, 2, 1420, 1421, 3, 2, 2, 2, 1421, 1423, 3, 2, 2, 2, 1422, 1420, 3, 2, 2, 2, 1423, 1425, 7, 48, 2, 2, 1424, 1426, 5, 306, 153, 2, 1425, 1424, 3, 2, 2, 2, 1426, 1427, 3, 2, 2, 2, 1427, 1425, 3, 2, 2, 2, 1427, 1428, 3, 2, 2, 2, 1428, 293, 3, 2, 2, 2, 1429, 1433, 7, 38, 2, 2, 1430, 1432, 5, 308, 154, 2, 1431, 1430, 3, 2, 2, 2, 1432, 1435, 3, 2, 2, 2, 1433, 1431, 3, 2, 2, 2, 1433, 1434, 3, 2, 2, 2, 1434, 1436, 3, 2, 2, 2, 1435, 1433, 3, 2, 2, 2, 1436, 1438, 7, 48, 2, 2, 1437, 1439, 5, 308, 154, 2, 1438, 1437, 3, 2, 2, 2, 1439, 1440, 3, 2, 2, 2, 1440, 1438, 3, 2, 2, 2, 1440, 1441, 3, 2, 2, 2, 1441, 295, 3, 2, 2, 2, 1442, 1446, 5, 300, 150, 2, 1443, 1446, 5, 302, 151, 2, 1444, 1446, 5, 298, 149, 2, 1445, 1442, 3, 2, 2, 2, 1445, 1443, 3, 2, 2, 2, 1445, 1444, 3, 2, 2, 2, 1446, 297, 3, 2, 2, 2, 1447, 1449, 7, 39, 2, 2, 1448, 1450, 5, 304, 152, 2, 1449, 1448, 3, 2, 2, 2, 1450, 1451, 3, 2, 2, 2, 1451, 1449, 3, 2, 2, 2, 1451, 1452, 3, 2, 2, 2, 1452, 299, 3, 2, 2, 2, 1453, 1455, 5, 306, 153, 2, 1454, 1453, 3, 2, 2, 2, 1455, 1456, 3, 2, 2, 2, 1456, 1454, 3, 2, 2, 2, 1456, 1457, 3, 2, 2, 2, 1457, 301, 3, 2, 2, 2, 1458, 1460, 7, 38, 2, 2, 1459, 1461, 5, 308, 154, 2, 1460, 1459, 3, 2, 2, 2, 1461, 1462, 3, 2, 2, 2, 1462, 1460, 3, 2, 2, 2, 1462, 1463, 3, 2, 2, 2, 1463, 303, 3, 2, 2, 2, 1464, 1465, 9, 11, 2, 2, 1465, 305, 3, 2, 2, 2, 1466, 1467, 9, 12, 2, 2, 1467, 307, 3, 2, 2, 2, 1468, 1469, 9, 13, 2, 2, 1469, 309, 3, 2, 2, 2, 1470, 1474, 7, 41, 2, 2, 1471, 1472, 7, 94, 2, 2, 1472, 1475, 9, 6, 2, 2, 1473, 1475, 10, 7, 2, 2, 1474, 1471, 3, 2, 2, 2, 1474, 1473, 3, 2, 2, 2, 1475, 1476, 3, 2, 2, 2, 1476, 1477, 7, 41, 2, 2, 1477, 311, 3, 2, 2, 2, 1478, 1480, 5, 314, 157, 2, 1479, 1481, 9, 18, 2, 2, 1480, 1479, 3, 2, 2, 2, 1481, 1482, 3, 2, 2, 2, 1482, 1480, 3, 2, 2, 2, 1482, 1483, 3, 2, 2, 2, 1483, 313, 3, 2, 2, 2, 1484, 1488, 7, 35, 2, 2, 1485, 1487, 5, 320, 160, 2, 1486, 1485, 3, 2, 2, 2, 1487, 1490, 3, 2, 2, 2, 1488, 1486, 3, 2, 2, 2, 1488, 1489, 3, 2, 2, 2, 1489, 315, 3, 2, 2, 2, 1490, 1488, 3, 2, 2, 2, 1491, 1495, 5, 318, 159, 2, 1492, 1494, 5, 320, 160, 2, 1493, 1492, 3, 2, 2, 2, 1494, 1497, 3, 2, 2, 2, 1495, 1493, 3, 2, 2, 2, 1495, 1496, 3, 2, 2, 2, 1496, 317, 3, 2, 2, 2, 1497, 1495, 3, 2, 2, 2, 1498, 1499, 9, 14, 2, 2, 1499, 319, 3, 2, 2, 2, 1500, 1501, 9, 15, 2, 2, 1501, 321, 3, 2, 2, 2, 1502, 1504, 9, 16, 2, 2, 1503, 1502, 3, 2, 2, 2, 1504, 1505, 3, 2, 2, 2, 1505, 1503, 3, 2, 2, 2, 1505, 1506, 3, 2, 2, 2, 1506, 1507, 3, 2, 2, 2, 1507, 1508, 8, 161, 7, 2, 1508, 323, 3, 2, 2, 2, 1509, 1510, 7, 49, 2, 2, 1510, 1511, 7, 49, 2, 2, 1511, 1515, 3, 2, 2, 2, 1512, 1514, 10, 17, 2, 2, 1513, 1512, 3, 2, 2, 2, 1514, 1517, 3, 2, 2, 2, 1515, 1513, 3, 2, 2, 2, 1515, 1516, 3, 2, 2, 2, 1516, 1518, 3, 2, 2, 2, 1517, 1515, 3, 2, 2, 2, 1518, 1519, 8, 162, 8, 2, 1519, 325, 3, 2, 2, 2, 1520, 1521, 7, 49, 2, 2, 1521, 1522, 7, 44, 2, 2, 1522, 1526, 3, 2, 2, 2, 1523, 1525, 11, 2, 2, 2, 1524, 1523, 3, 2, 2, 2, 1525, 1528, 3, 2, 2, 2, 1526, 1527, 3, 2, 2, 2, 1526, 1524, 3, 2, 2, 2, 1527, 1529, 3, 2, 2, 2, 1528, 1526, 3, 2, 2, 2, 1529, 1530, 7, 44, 2, 2, 1530, 1531, 7, 49, 2, 2, 1531, 1532, 3, 2, 2, 2, 1532, 1533, 8, 163, 8, 2, 1533, 327, 3, 2, 2, 2, 60, 2, 3, 433, 642, 817, 856, 867, 875, 885, 887, 892, 896, 898, 901, 909, 926, 975, 980, 987, 992, 999, 1004, 1011, 1018, 1023, 1030, 1035, 1040, 1047, 1053, 1055, 1060, 1067, 1072, 1084, 1096, 1106, 1117, 1353, 1397, 1402, 1408, 1415, 1420, 1427, 1433, 1440, 1445, 1451, 1456, 1462, 1474, 1482, 1488, 1495, 1505, 1515, 1526, 11, 3, 2, 2, 3, 38, 3, 3, 75, 4, 3, 94, 5, 3, 117, 6, 2, 3, 2, 2, 4, 2, 3, 141, 7, 3, 142, 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 455a66f57..4eddef05a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCLexer.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -32,20 +32,21 @@ public class KickCLexer extends Lexer { FORM_MA=62, CALLING=63, CALLINGCONVENTION=64, VARMODEL=65, IF=66, ELSE=67, WHILE=68, DO=69, FOR=70, SWITCH=71, RETURN=72, BREAK=73, CONTINUE=74, 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, UNDEF=97, IFDEF=98, IFNDEF=99, - IFELSE=100, ENDIF=101, NUMBER=102, NUMFLOAT=103, BINFLOAT=104, DECFLOAT=105, - HEXFLOAT=106, NUMINT=107, BININTEGER=108, DECINTEGER=109, HEXINTEGER=110, - NAME=111, WS=112, COMMENT_LINE=113, COMMENT_BLOCK=114, ASM_BYTE=115, ASM_MNEMONIC=116, - ASM_IMM=117, ASM_COLON=118, ASM_COMMA=119, ASM_PAR_BEGIN=120, ASM_PAR_END=121, - ASM_BRACKET_BEGIN=122, ASM_BRACKET_END=123, ASM_DOT=124, ASM_SHIFT_LEFT=125, - ASM_SHIFT_RIGHT=126, ASM_PLUS=127, ASM_MINUS=128, ASM_LESS_THAN=129, ASM_GREATER_THAN=130, - ASM_MULTIPLY=131, ASM_DIVIDE=132, ASM_CURLY_BEGIN=133, ASM_CURLY_END=134, - ASM_NUMBER=135, ASM_NUMFLOAT=136, ASM_BINFLOAT=137, ASM_DECFLOAT=138, - ASM_HEXFLOAT=139, ASM_NUMINT=140, ASM_BININTEGER=141, ASM_DECINTEGER=142, - ASM_HEXINTEGER=143, ASM_CHAR=144, ASM_MULTI_REL=145, ASM_MULTI_NAME=146, - ASM_NAME=147, ASM_WS=148, ASM_COMMENT_LINE=149, ASM_COMMENT_BLOCK=150; + DEFINED=82, KICKASM=83, RESOURCE=84, USES=85, CLOBBERS=86, BYTES=87, CYCLES=88, + LOGIC_NOT=89, SIGNEDNESS=90, SIMPLETYPE=91, BOOLEAN=92, KICKASM_BODY=93, + STRING=94, CHAR=95, DEFINE=96, DEFINE_CONTINUE=97, UNDEF=98, IFDEF=99, + IFNDEF=100, IFIF=101, ELIF=102, IFELSE=103, ENDIF=104, NUMBER=105, NUMFLOAT=106, + BINFLOAT=107, DECFLOAT=108, HEXFLOAT=109, NUMINT=110, BININTEGER=111, + DECINTEGER=112, HEXINTEGER=113, NAME=114, WS=115, COMMENT_LINE=116, COMMENT_BLOCK=117, + ASM_BYTE=118, ASM_MNEMONIC=119, ASM_IMM=120, ASM_COLON=121, ASM_COMMA=122, + ASM_PAR_BEGIN=123, ASM_PAR_END=124, ASM_BRACKET_BEGIN=125, ASM_BRACKET_END=126, + ASM_DOT=127, ASM_SHIFT_LEFT=128, ASM_SHIFT_RIGHT=129, ASM_PLUS=130, ASM_MINUS=131, + ASM_LESS_THAN=132, ASM_GREATER_THAN=133, ASM_MULTIPLY=134, ASM_DIVIDE=135, + ASM_CURLY_BEGIN=136, ASM_CURLY_END=137, ASM_NUMBER=138, ASM_NUMFLOAT=139, + ASM_BINFLOAT=140, ASM_DECFLOAT=141, ASM_HEXFLOAT=142, ASM_NUMINT=143, + ASM_BININTEGER=144, ASM_DECINTEGER=145, ASM_HEXINTEGER=146, ASM_CHAR=147, + ASM_MULTI_REL=148, ASM_MULTI_NAME=149, ASM_NAME=150, ASM_WS=151, ASM_COMMENT_LINE=152, + ASM_COMMENT_BLOCK=153; public static final int ASM_MODE=1; public static String[] channelNames = { @@ -69,22 +70,22 @@ public class KickCLexer extends Lexer { "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "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", "UNDEF", "IFDEF", "IFNDEF", "IFELSE", "ENDIF", "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", "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_BINDIGIT", - "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", - "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", "ASM_WS", "ASM_COMMENT_LINE", - "ASM_COMMENT_BLOCK" + "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", + "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", + "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", "CHAR", + "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", "ELIF", + "IFELSE", "ENDIF", "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", + "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_BINDIGIT", "ASM_DECDIGIT", "ASM_HEXDIGIT", "ASM_CHAR", "ASM_MULTI_REL", + "ASM_MULTI_NAME", "ASM_NAME", "ASM_NAME_START", "ASM_NAME_CHAR", "ASM_WS", + "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK" }; } public static final String[] ruleNames = makeRuleNames(); @@ -101,11 +102,11 @@ public class KickCLexer extends Lexer { "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'calling'", null, "'var_model'", "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", - "'enum'", "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", - "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, null, null, - null, "'#define'", "'\\\n'", "'#undef'", "'#ifdef'", "'#ifndef'", "'#else'", - "'#endif'", null, null, null, null, null, null, null, null, null, null, - null, null, null, "'.byte'", null, "'#'" + "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", + "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, + null, null, null, "'#define'", null, "'#undef'", "'#ifdef'", "'#ifndef'", + "'#if'", "'#elif'", "'#else'", "'#endif'", null, null, null, null, null, + null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -123,18 +124,19 @@ public class KickCLexer extends Lexer { "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "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", "UNDEF", "IFDEF", "IFNDEF", "IFELSE", "ENDIF", - "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" + "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", + "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", + "CHAR", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", + "ELIF", "IFELSE", "ENDIF", "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(); @@ -223,16 +225,16 @@ public class KickCLexer extends Lexer { case 73: ASM_action((RuleContext)_localctx, actionIndex); break; - case 91: + case 92: STRING_action((RuleContext)_localctx, actionIndex); break; - case 112: + case 115: NAME_action((RuleContext)_localctx, actionIndex); break; - case 136: + case 139: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 137: + case 140: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; } @@ -288,7 +290,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u0098\u05e2\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u009b\u05fe\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"+ @@ -309,544 +311,554 @@ public class KickCLexer extends Lexer { "\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\4\u009c\t\u009c\4\u009d\t\u009d\4\u009e\t\u009e\4\u009f\t\u009f"+ - "\4\u00a0\t\u00a0\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%\u01ac\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\3"+ - "8\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@\u027d\n@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3"+ - "B\3B\3B\3C\3C\3C\3C\3C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3F\3F\3F\3F\3G\3G\3"+ - "G\3G\3G\3G\3G\3H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3"+ - "J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3"+ - "N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3"+ - "Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3"+ - "T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3"+ - "W\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Y\5Y\u0324\nY\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\3Z\3Z\3Z\5Z\u034b\nZ\3[\3[\3[\3[\3[\3[\3[\3"+ - "[\3[\5[\u0356\n[\3\\\3\\\3\\\3\\\7\\\u035c\n\\\f\\\16\\\u035f\13\\\3\\"+ - "\3\\\3\\\3]\3]\3]\3]\7]\u0368\n]\f]\16]\u036b\13]\3]\3]\5]\u036f\n]\3"+ - "]\3]\5]\u0373\n]\5]\u0375\n]\3]\5]\u0378\n]\3]\3]\3^\3^\3^\3^\5^\u0380"+ - "\n^\3^\3^\3_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3a\3a\3a\3a\3a\3a\3a\3b\3b"+ - "\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e"+ - "\3e\3e\3e\3f\3f\5f\u03b4\nf\3g\3g\3g\5g\u03b9\ng\3h\3h\3h\3h\3h\5h\u03c0"+ - "\nh\3h\7h\u03c3\nh\fh\16h\u03c6\13h\3h\3h\6h\u03ca\nh\rh\16h\u03cb\3i"+ - "\7i\u03cf\ni\fi\16i\u03d2\13i\3i\3i\6i\u03d6\ni\ri\16i\u03d7\3j\3j\3j"+ - "\3j\3j\5j\u03df\nj\3j\7j\u03e2\nj\fj\16j\u03e5\13j\3j\3j\6j\u03e9\nj\r"+ - "j\16j\u03ea\3k\3k\3k\5k\u03f0\nk\3k\3k\3k\5k\u03f5\nk\3l\3l\3l\6l\u03fa"+ - "\nl\rl\16l\u03fb\3l\3l\6l\u0400\nl\rl\16l\u0401\5l\u0404\nl\3m\6m\u0407"+ - "\nm\rm\16m\u0408\3n\3n\3n\3n\3n\5n\u0410\nn\3n\6n\u0413\nn\rn\16n\u0414"+ - "\3o\3o\3p\3p\3q\3q\3r\3r\7r\u041f\nr\fr\16r\u0422\13r\3r\3r\3s\3s\3t\3"+ - "t\3u\6u\u042b\nu\ru\16u\u042c\3u\3u\3v\3v\3v\3v\7v\u0435\nv\fv\16v\u0438"+ - "\13v\3v\3v\3w\3w\3w\3w\7w\u0440\nw\fw\16w\u0443\13w\3w\3w\3w\3w\3w\3x"+ - "\3x\3x\3x\3x\3x\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y"+ - "\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\3y\5y\u052e"+ - "\ny\3z\3z\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\u0082\3\u0083\3\u0083\3\u0083\3\u0084\3\u0084"+ - "\3\u0085\3\u0085\3\u0086\3\u0086\3\u0087\3\u0087\3\u0088\3\u0088\3\u0089"+ - "\3\u0089\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b\3\u008b\3\u008c\3\u008c"+ - "\5\u008c\u055a\n\u008c\3\u008d\3\u008d\3\u008d\5\u008d\u055f\n\u008d\3"+ - "\u008e\3\u008e\7\u008e\u0563\n\u008e\f\u008e\16\u008e\u0566\13\u008e\3"+ - "\u008e\3\u008e\6\u008e\u056a\n\u008e\r\u008e\16\u008e\u056b\3\u008f\7"+ - "\u008f\u056f\n\u008f\f\u008f\16\u008f\u0572\13\u008f\3\u008f\3\u008f\6"+ - "\u008f\u0576\n\u008f\r\u008f\16\u008f\u0577\3\u0090\3\u0090\7\u0090\u057c"+ - "\n\u0090\f\u0090\16\u0090\u057f\13\u0090\3\u0090\3\u0090\6\u0090\u0583"+ - "\n\u0090\r\u0090\16\u0090\u0584\3\u0091\3\u0091\3\u0091\5\u0091\u058a"+ - "\n\u0091\3\u0092\3\u0092\6\u0092\u058e\n\u0092\r\u0092\16\u0092\u058f"+ - "\3\u0093\6\u0093\u0593\n\u0093\r\u0093\16\u0093\u0594\3\u0094\3\u0094"+ - "\6\u0094\u0599\n\u0094\r\u0094\16\u0094\u059a\3\u0095\3\u0095\3\u0096"+ - "\3\u0096\3\u0097\3\u0097\3\u0098\3\u0098\3\u0098\3\u0098\5\u0098\u05a7"+ - "\n\u0098\3\u0098\3\u0098\3\u0099\3\u0099\6\u0099\u05ad\n\u0099\r\u0099"+ - "\16\u0099\u05ae\3\u009a\3\u009a\7\u009a\u05b3\n\u009a\f\u009a\16\u009a"+ - "\u05b6\13\u009a\3\u009b\3\u009b\7\u009b\u05ba\n\u009b\f\u009b\16\u009b"+ - "\u05bd\13\u009b\3\u009c\3\u009c\3\u009d\3\u009d\3\u009e\6\u009e\u05c4"+ - "\n\u009e\r\u009e\16\u009e\u05c5\3\u009e\3\u009e\3\u009f\3\u009f\3\u009f"+ - "\3\u009f\7\u009f\u05ce\n\u009f\f\u009f\16\u009f\u05d1\13\u009f\3\u009f"+ - "\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0\7\u00a0\u05d9\n\u00a0\f\u00a0"+ - "\16\u00a0\u05dc\13\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a0\3\u00a0\5\u035d"+ - "\u0441\u05da\2\u00a1\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\u0088"+ - "F\u008aG\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098N\u009aO\u009c"+ - "P\u009eQ\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00acX\u00aeY\u00b0"+ - "Z\u00b2[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0b\u00c2c\u00c4"+ - "d\u00c6e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2k\u00d4l\u00d6m\u00d8"+ - "n\u00dao\u00dcp\u00de\2\u00e0\2\u00e2\2\u00e4q\u00e6\2\u00e8\2\u00ear"+ - "\u00ecs\u00eet\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\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\u008d\u0122\u008e\u0124\u008f"+ - "\u0126\u0090\u0128\u0091\u012a\2\u012c\2\u012e\2\u0130\u0092\u0132\u0093"+ - "\u0134\u0094\u0136\u0095\u0138\2\u013a\2\u013c\u0096\u013e\u0097\u0140"+ - "\u0098\4\2\3\23\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\3\2))\4\2uu"+ - "ww\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\u066c"+ - "\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\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\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\u00d6"+ - "\3\2\2\2\2\u00d8\3\2\2\2\2\u00da\3\2\2\2\2\u00dc\3\2\2\2\2\u00e4\3\2\2"+ - "\2\2\u00ea\3\2\2\2\2\u00ec\3\2\2\2\2\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\u0122\3\2\2\2\3\u0124\3\2\2\2\3\u0126\3\2\2\2\3\u0128"+ - "\3\2\2\2\3\u0130\3\2\2\2\3\u0132\3\2\2\2\3\u0134\3\2\2\2\3\u0136\3\2\2"+ - "\2\3\u013c\3\2\2\2\3\u013e\3\2\2\2\3\u0140\3\2\2\2\4\u0142\3\2\2\2\6\u0145"+ - "\3\2\2\2\b\u0147\3\2\2\2\n\u0149\3\2\2\2\f\u014b\3\2\2\2\16\u014d\3\2"+ - "\2\2\20\u014f\3\2\2\2\22\u0151\3\2\2\2\24\u0153\3\2\2\2\26\u0155\3\2\2"+ - "\2\30\u0158\3\2\2\2\32\u015a\3\2\2\2\34\u015c\3\2\2\2\36\u015f\3\2\2\2"+ - " \u0161\3\2\2\2\"\u0163\3\2\2\2$\u0165\3\2\2\2&\u0167\3\2\2\2(\u0169\3"+ - "\2\2\2*\u016c\3\2\2\2,\u016f\3\2\2\2.\u0171\3\2\2\2\60\u0173\3\2\2\2\62"+ - "\u0175\3\2\2\2\64\u0177\3\2\2\2\66\u017a\3\2\2\28\u017d\3\2\2\2:\u0180"+ - "\3\2\2\2<\u0183\3\2\2\2>\u0185\3\2\2\2@\u0188\3\2\2\2B\u018b\3\2\2\2D"+ - "\u018d\3\2\2\2F\u0190\3\2\2\2H\u0193\3\2\2\2J\u01ab\3\2\2\2L\u01ad\3\2"+ - "\2\2N\u01b6\3\2\2\2P\u01be\3\2\2\2R\u01c6\3\2\2\2T\u01ce\3\2\2\2V\u01d1"+ - "\3\2\2\2X\u01d8\3\2\2\2Z\u01dd\3\2\2\2\\\u01e1\3\2\2\2^\u01ea\3\2\2\2"+ - "`\u01f3\3\2\2\2b\u01fc\3\2\2\2d\u0202\3\2\2\2f\u0209\3\2\2\2h\u0210\3"+ - "\2\2\2j\u0216\3\2\2\2l\u021d\3\2\2\2n\u0226\3\2\2\2p\u022d\3\2\2\2r\u0237"+ - "\3\2\2\2t\u0240\3\2\2\2v\u024a\3\2\2\2x\u024f\3\2\2\2z\u0255\3\2\2\2|"+ - "\u025b\3\2\2\2~\u0260\3\2\2\2\u0080\u027c\3\2\2\2\u0082\u027e\3\2\2\2"+ - "\u0084\u0288\3\2\2\2\u0086\u028b\3\2\2\2\u0088\u0290\3\2\2\2\u008a\u0296"+ - "\3\2\2\2\u008c\u0299\3\2\2\2\u008e\u029d\3\2\2\2\u0090\u02a4\3\2\2\2\u0092"+ - "\u02ab\3\2\2\2\u0094\u02b1\3\2\2\2\u0096\u02ba\3\2\2\2\u0098\u02c0\3\2"+ - "\2\2\u009a\u02c8\3\2\2\2\u009c\u02cd\3\2\2\2\u009e\u02d4\3\2\2\2\u00a0"+ - "\u02d9\3\2\2\2\u00a2\u02e0\3\2\2\2\u00a4\u02e7\3\2\2\2\u00a6\u02ef\3\2"+ - "\2\2\u00a8\u02f8\3\2\2\2\u00aa\u02fd\3\2\2\2\u00ac\u0306\3\2\2\2\u00ae"+ - "\u030c\3\2\2\2\u00b0\u0313\3\2\2\2\u00b2\u0323\3\2\2\2\u00b4\u034a\3\2"+ - "\2\2\u00b6\u0355\3\2\2\2\u00b8\u0357\3\2\2\2\u00ba\u0363\3\2\2\2\u00bc"+ - "\u037b\3\2\2\2\u00be\u0383\3\2\2\2\u00c0\u038b\3\2\2\2\u00c2\u038e\3\2"+ - "\2\2\u00c4\u0395\3\2\2\2\u00c6\u039c\3\2\2\2\u00c8\u03a4\3\2\2\2\u00ca"+ - "\u03aa\3\2\2\2\u00cc\u03b3\3\2\2\2\u00ce\u03b8\3\2\2\2\u00d0\u03bf\3\2"+ - "\2\2\u00d2\u03d0\3\2\2\2\u00d4\u03de\3\2\2\2\u00d6\u03ef\3\2\2\2\u00d8"+ - "\u0403\3\2\2\2\u00da\u0406\3\2\2\2\u00dc\u040f\3\2\2\2\u00de\u0416\3\2"+ - "\2\2\u00e0\u0418\3\2\2\2\u00e2\u041a\3\2\2\2\u00e4\u041c\3\2\2\2\u00e6"+ - "\u0425\3\2\2\2\u00e8\u0427\3\2\2\2\u00ea\u042a\3\2\2\2\u00ec\u0430\3\2"+ - "\2\2\u00ee\u043b\3\2\2\2\u00f0\u0449\3\2\2\2\u00f2\u052d\3\2\2\2\u00f4"+ - "\u052f\3\2\2\2\u00f6\u0531\3\2\2\2\u00f8\u0533\3\2\2\2\u00fa\u0535\3\2"+ - "\2\2\u00fc\u0537\3\2\2\2\u00fe\u0539\3\2\2\2\u0100\u053b\3\2\2\2\u0102"+ - "\u053d\3\2\2\2\u0104\u053f\3\2\2\2\u0106\u0542\3\2\2\2\u0108\u0545\3\2"+ - "\2\2\u010a\u0547\3\2\2\2\u010c\u0549\3\2\2\2\u010e\u054b\3\2\2\2\u0110"+ - "\u054d\3\2\2\2\u0112\u054f\3\2\2\2\u0114\u0551\3\2\2\2\u0116\u0554\3\2"+ - "\2\2\u0118\u0559\3\2\2\2\u011a\u055e\3\2\2\2\u011c\u0560\3\2\2\2\u011e"+ - "\u0570\3\2\2\2\u0120\u0579\3\2\2\2\u0122\u0589\3\2\2\2\u0124\u058b\3\2"+ - "\2\2\u0126\u0592\3\2\2\2\u0128\u0596\3\2\2\2\u012a\u059c\3\2\2\2\u012c"+ - "\u059e\3\2\2\2\u012e\u05a0\3\2\2\2\u0130\u05a2\3\2\2\2\u0132\u05aa\3\2"+ - "\2\2\u0134\u05b0\3\2\2\2\u0136\u05b7\3\2\2\2\u0138\u05be\3\2\2\2\u013a"+ - "\u05c0\3\2\2\2\u013c\u05c3\3\2\2\2\u013e\u05c9\3\2\2\2\u0140\u05d4\3\2"+ - "\2\2\u0142\u0143\7}\2\2\u0143\u0144\b\2\2\2\u0144\5\3\2\2\2\u0145\u0146"+ - "\7\177\2\2\u0146\7\3\2\2\2\u0147\u0148\7]\2\2\u0148\t\3\2\2\2\u0149\u014a"+ - "\7_\2\2\u014a\13\3\2\2\2\u014b\u014c\7*\2\2\u014c\r\3\2\2\2\u014d\u014e"+ - "\7+\2\2\u014e\17\3\2\2\2\u014f\u0150\7=\2\2\u0150\21\3\2\2\2\u0151\u0152"+ - "\7<\2\2\u0152\23\3\2\2\2\u0153\u0154\7.\2\2\u0154\25\3\2\2\2\u0155\u0156"+ - "\7\60\2\2\u0156\u0157\7\60\2\2\u0157\27\3\2\2\2\u0158\u0159\7A\2\2\u0159"+ - "\31\3\2\2\2\u015a\u015b\7\60\2\2\u015b\33\3\2\2\2\u015c\u015d\7/\2\2\u015d"+ - "\u015e\7@\2\2\u015e\35\3\2\2\2\u015f\u0160\7-\2\2\u0160\37\3\2\2\2\u0161"+ - "\u0162\7/\2\2\u0162!\3\2\2\2\u0163\u0164\7,\2\2\u0164#\3\2\2\2\u0165\u0166"+ - "\7\61\2\2\u0166%\3\2\2\2\u0167\u0168\7\'\2\2\u0168\'\3\2\2\2\u0169\u016a"+ - "\7-\2\2\u016a\u016b\7-\2\2\u016b)\3\2\2\2\u016c\u016d\7/\2\2\u016d\u016e"+ - "\7/\2\2\u016e+\3\2\2\2\u016f\u0170\7(\2\2\u0170-\3\2\2\2\u0171\u0172\7"+ - "\u0080\2\2\u0172/\3\2\2\2\u0173\u0174\7`\2\2\u0174\61\3\2\2\2\u0175\u0176"+ - "\7~\2\2\u0176\63\3\2\2\2\u0177\u0178\7>\2\2\u0178\u0179\7>\2\2\u0179\65"+ - "\3\2\2\2\u017a\u017b\7@\2\2\u017b\u017c\7@\2\2\u017c\67\3\2\2\2\u017d"+ - "\u017e\7?\2\2\u017e\u017f\7?\2\2\u017f9\3\2\2\2\u0180\u0181\7#\2\2\u0181"+ - "\u0182\7?\2\2\u0182;\3\2\2\2\u0183\u0184\7>\2\2\u0184=\3\2\2\2\u0185\u0186"+ - "\7>\2\2\u0186\u0187\7?\2\2\u0187?\3\2\2\2\u0188\u0189\7@\2\2\u0189\u018a"+ - "\7?\2\2\u018aA\3\2\2\2\u018b\u018c\7@\2\2\u018cC\3\2\2\2\u018d\u018e\7"+ - "(\2\2\u018e\u018f\7(\2\2\u018fE\3\2\2\2\u0190\u0191\7~\2\2\u0191\u0192"+ - "\7~\2\2\u0192G\3\2\2\2\u0193\u0194\7?\2\2\u0194I\3\2\2\2\u0195\u0196\7"+ - "-\2\2\u0196\u01ac\7?\2\2\u0197\u0198\7/\2\2\u0198\u01ac\7?\2\2\u0199\u019a"+ - "\7,\2\2\u019a\u01ac\7?\2\2\u019b\u019c\7\61\2\2\u019c\u01ac\7?\2\2\u019d"+ - "\u019e\7\'\2\2\u019e\u01ac\7?\2\2\u019f\u01a0\7>\2\2\u01a0\u01a1\7>\2"+ - "\2\u01a1\u01ac\7?\2\2\u01a2\u01a3\7@\2\2\u01a3\u01a4\7@\2\2\u01a4\u01ac"+ - "\7?\2\2\u01a5\u01a6\7(\2\2\u01a6\u01ac\7?\2\2\u01a7\u01a8\7~\2\2\u01a8"+ - "\u01ac\7?\2\2\u01a9\u01aa\7`\2\2\u01aa\u01ac\7?\2\2\u01ab\u0195\3\2\2"+ - "\2\u01ab\u0197\3\2\2\2\u01ab\u0199\3\2\2\2\u01ab\u019b\3\2\2\2\u01ab\u019d"+ - "\3\2\2\2\u01ab\u019f\3\2\2\2\u01ab\u01a2\3\2\2\2\u01ab\u01a5\3\2\2\2\u01ab"+ - "\u01a7\3\2\2\2\u01ab\u01a9\3\2\2\2\u01acK\3\2\2\2\u01ad\u01ae\7k\2\2\u01ae"+ - "\u01af\7o\2\2\u01af\u01b0\7r\2\2\u01b0\u01b1\7q\2\2\u01b1\u01b2\7t\2\2"+ - "\u01b2\u01b3\7v\2\2\u01b3\u01b4\3\2\2\2\u01b4\u01b5\b&\3\2\u01b5M\3\2"+ - "\2\2\u01b6\u01b7\7v\2\2\u01b7\u01b8\7{\2\2\u01b8\u01b9\7r\2\2\u01b9\u01ba"+ - "\7g\2\2\u01ba\u01bb\7f\2\2\u01bb\u01bc\7g\2\2\u01bc\u01bd\7h\2\2\u01bd"+ - "O\3\2\2\2\u01be\u01bf\7%\2\2\u01bf\u01c0\7r\2\2\u01c0\u01c1\7t\2\2\u01c1"+ - "\u01c2\7c\2\2\u01c2\u01c3\7i\2\2\u01c3\u01c4\7o\2\2\u01c4\u01c5\7c\2\2"+ - "\u01c5Q\3\2\2\2\u01c6\u01c7\7t\2\2\u01c7\u01c8\7g\2\2\u01c8\u01c9\7u\2"+ - "\2\u01c9\u01ca\7g\2\2\u01ca\u01cb\7t\2\2\u01cb\u01cc\7x\2\2\u01cc\u01cd"+ - "\7g\2\2\u01cdS\3\2\2\2\u01ce\u01cf\7r\2\2\u01cf\u01d0\7e\2\2\u01d0U\3"+ - "\2\2\2\u01d1\u01d2\7v\2\2\u01d2\u01d3\7c\2\2\u01d3\u01d4\7t\2\2\u01d4"+ - "\u01d5\7i\2\2\u01d5\u01d6\7g\2\2\u01d6\u01d7\7v\2\2\u01d7W\3\2\2\2\u01d8"+ - "\u01d9\7n\2\2\u01d9\u01da\7k\2\2\u01da\u01db\7p\2\2\u01db\u01dc\7m\2\2"+ - "\u01dcY\3\2\2\2\u01dd\u01de\7e\2\2\u01de\u01df\7r\2\2\u01df\u01e0\7w\2"+ - "\2\u01e0[\3\2\2\2\u01e1\u01e2\7e\2\2\u01e2\u01e3\7q\2\2\u01e3\u01e4\7"+ - "f\2\2\u01e4\u01e5\7g\2\2\u01e5\u01e6\7a\2\2\u01e6\u01e7\7u\2\2\u01e7\u01e8"+ - "\7g\2\2\u01e8\u01e9\7i\2\2\u01e9]\3\2\2\2\u01ea\u01eb\7f\2\2\u01eb\u01ec"+ - "\7c\2\2\u01ec\u01ed\7v\2\2\u01ed\u01ee\7c\2\2\u01ee\u01ef\7a\2\2\u01ef"+ - "\u01f0\7u\2\2\u01f0\u01f1\7g\2\2\u01f1\u01f2\7i\2\2\u01f2_\3\2\2\2\u01f3"+ - "\u01f4\7g\2\2\u01f4\u01f5\7p\2\2\u01f5\u01f6\7e\2\2\u01f6\u01f7\7q\2\2"+ - "\u01f7\u01f8\7f\2\2\u01f8\u01f9\7k\2\2\u01f9\u01fa\7p\2\2\u01fa\u01fb"+ - "\7i\2\2\u01fba\3\2\2\2\u01fc\u01fd\7e\2\2\u01fd\u01fe\7q\2\2\u01fe\u01ff"+ - "\7p\2\2\u01ff\u0200\7u\2\2\u0200\u0201\7v\2\2\u0201c\3\2\2\2\u0202\u0203"+ - "\7g\2\2\u0203\u0204\7z\2\2\u0204\u0205\7v\2\2\u0205\u0206\7g\2\2\u0206"+ - "\u0207\7t\2\2\u0207\u0208\7p\2\2\u0208e\3\2\2\2\u0209\u020a\7g\2\2\u020a"+ - "\u020b\7z\2\2\u020b\u020c\7r\2\2\u020c\u020d\7q\2\2\u020d\u020e\7t\2\2"+ - "\u020e\u020f\7v\2\2\u020fg\3\2\2\2\u0210\u0211\7c\2\2\u0211\u0212\7n\2"+ - "\2\u0212\u0213\7k\2\2\u0213\u0214\7i\2\2\u0214\u0215\7p\2\2\u0215i\3\2"+ - "\2\2\u0216\u0217\7k\2\2\u0217\u0218\7p\2\2\u0218\u0219\7n\2\2\u0219\u021a"+ - "\7k\2\2\u021a\u021b\7p\2\2\u021b\u021c\7g\2\2\u021ck\3\2\2\2\u021d\u021e"+ - "\7x\2\2\u021e\u021f\7q\2\2\u021f\u0220\7n\2\2\u0220\u0221\7c\2\2\u0221"+ - "\u0222\7v\2\2\u0222\u0223\7k\2\2\u0223\u0224\7n\2\2\u0224\u0225\7g\2\2"+ - "\u0225m\3\2\2\2\u0226\u0227\7u\2\2\u0227\u0228\7v\2\2\u0228\u0229\7c\2"+ - "\2\u0229\u022a\7v\2\2\u022a\u022b\7k\2\2\u022b\u022c\7e\2\2\u022co\3\2"+ - "\2\2\u022d\u022e\7k\2\2\u022e\u022f\7p\2\2\u022f\u0230\7v\2\2\u0230\u0231"+ - "\7g\2\2\u0231\u0232\7t\2\2\u0232\u0233\7t\2\2\u0233\u0234\7w\2\2\u0234"+ - "\u0235\7r\2\2\u0235\u0236\7v\2\2\u0236q\3\2\2\2\u0237\u0238\7t\2\2\u0238"+ - "\u0239\7g\2\2\u0239\u023a\7i\2\2\u023a\u023b\7k\2\2\u023b\u023c\7u\2\2"+ - "\u023c\u023d\7v\2\2\u023d\u023e\7g\2\2\u023e\u023f\7t\2\2\u023fs\3\2\2"+ - "\2\u0240\u0241\7a\2\2\u0241\u0242\7a\2\2\u0242\u0243\7c\2\2\u0243\u0244"+ - "\7f\2\2\u0244\u0245\7f\2\2\u0245\u0246\7t\2\2\u0246\u0247\7g\2\2\u0247"+ - "\u0248\7u\2\2\u0248\u0249\7u\2\2\u0249u\3\2\2\2\u024a\u024b\7a\2\2\u024b"+ - "\u024c\7a\2\2\u024c\u024d\7|\2\2\u024d\u024e\7r\2\2\u024ew\3\2\2\2\u024f"+ - "\u0250\7a\2\2\u0250\u0251\7a\2\2\u0251\u0252\7o\2\2\u0252\u0253\7g\2\2"+ - "\u0253\u0254\7o\2\2\u0254y\3\2\2\2\u0255\u0256\7a\2\2\u0256\u0257\7a\2"+ - "\2\u0257\u0258\7u\2\2\u0258\u0259\7u\2\2\u0259\u025a\7c\2\2\u025a{\3\2"+ - "\2\2\u025b\u025c\7a\2\2\u025c\u025d\7a\2\2\u025d\u025e\7o\2\2\u025e\u025f"+ - "\7c\2\2\u025f}\3\2\2\2\u0260\u0261\7e\2\2\u0261\u0262\7c\2\2\u0262\u0263"+ - "\7n\2\2\u0263\u0264\7n\2\2\u0264\u0265\7k\2\2\u0265\u0266\7p\2\2\u0266"+ - "\u0267\7i\2\2\u0267\177\3\2\2\2\u0268\u0269\7a\2\2\u0269\u026a\7a\2\2"+ - "\u026a\u026b\7u\2\2\u026b\u026c\7v\2\2\u026c\u026d\7c\2\2\u026d\u026e"+ - "\7e\2\2\u026e\u026f\7m\2\2\u026f\u0270\7e\2\2\u0270\u0271\7c\2\2\u0271"+ - "\u0272\7n\2\2\u0272\u027d\7n\2\2\u0273\u0274\7a\2\2\u0274\u0275\7a\2\2"+ - "\u0275\u0276\7r\2\2\u0276\u0277\7j\2\2\u0277\u0278\7k\2\2\u0278\u0279"+ - "\7e\2\2\u0279\u027a\7c\2\2\u027a\u027b\7n\2\2\u027b\u027d\7n\2\2\u027c"+ - "\u0268\3\2\2\2\u027c\u0273\3\2\2\2\u027d\u0081\3\2\2\2\u027e\u027f\7x"+ - "\2\2\u027f\u0280\7c\2\2\u0280\u0281\7t\2\2\u0281\u0282\7a\2\2\u0282\u0283"+ - "\7o\2\2\u0283\u0284\7q\2\2\u0284\u0285\7f\2\2\u0285\u0286\7g\2\2\u0286"+ - "\u0287\7n\2\2\u0287\u0083\3\2\2\2\u0288\u0289\7k\2\2\u0289\u028a\7h\2"+ - "\2\u028a\u0085\3\2\2\2\u028b\u028c\7g\2\2\u028c\u028d\7n\2\2\u028d\u028e"+ - "\7u\2\2\u028e\u028f\7g\2\2\u028f\u0087\3\2\2\2\u0290\u0291\7y\2\2\u0291"+ - "\u0292\7j\2\2\u0292\u0293\7k\2\2\u0293\u0294\7n\2\2\u0294\u0295\7g\2\2"+ - "\u0295\u0089\3\2\2\2\u0296\u0297\7f\2\2\u0297\u0298\7q\2\2\u0298\u008b"+ - "\3\2\2\2\u0299\u029a\7h\2\2\u029a\u029b\7q\2\2\u029b\u029c\7t\2\2\u029c"+ - "\u008d\3\2\2\2\u029d\u029e\7u\2\2\u029e\u029f\7y\2\2\u029f\u02a0\7k\2"+ - "\2\u02a0\u02a1\7v\2\2\u02a1\u02a2\7e\2\2\u02a2\u02a3\7j\2\2\u02a3\u008f"+ - "\3\2\2\2\u02a4\u02a5\7t\2\2\u02a5\u02a6\7g\2\2\u02a6\u02a7\7v\2\2\u02a7"+ - "\u02a8\7w\2\2\u02a8\u02a9\7t\2\2\u02a9\u02aa\7p\2\2\u02aa\u0091\3\2\2"+ - "\2\u02ab\u02ac\7d\2\2\u02ac\u02ad\7t\2\2\u02ad\u02ae\7g\2\2\u02ae\u02af"+ - "\7c\2\2\u02af\u02b0\7m\2\2\u02b0\u0093\3\2\2\2\u02b1\u02b2\7e\2\2\u02b2"+ - "\u02b3\7q\2\2\u02b3\u02b4\7p\2\2\u02b4\u02b5\7v\2\2\u02b5\u02b6\7k\2\2"+ - "\u02b6\u02b7\7p\2\2\u02b7\u02b8\7w\2\2\u02b8\u02b9\7g\2\2\u02b9\u0095"+ - "\3\2\2\2\u02ba\u02bb\7c\2\2\u02bb\u02bc\7u\2\2\u02bc\u02bd\7o\2\2\u02bd"+ - "\u02be\3\2\2\2\u02be\u02bf\bK\4\2\u02bf\u0097\3\2\2\2\u02c0\u02c1\7f\2"+ - "\2\u02c1\u02c2\7g\2\2\u02c2\u02c3\7h\2\2\u02c3\u02c4\7c\2\2\u02c4\u02c5"+ - "\7w\2\2\u02c5\u02c6\7n\2\2\u02c6\u02c7\7v\2\2\u02c7\u0099\3\2\2\2\u02c8"+ - "\u02c9\7e\2\2\u02c9\u02ca\7c\2\2\u02ca\u02cb\7u\2\2\u02cb\u02cc\7g\2\2"+ - "\u02cc\u009b\3\2\2\2\u02cd\u02ce\7u\2\2\u02ce\u02cf\7v\2\2\u02cf\u02d0"+ - "\7t\2\2\u02d0\u02d1\7w\2\2\u02d1\u02d2\7e\2\2\u02d2\u02d3\7v\2\2\u02d3"+ - "\u009d\3\2\2\2\u02d4\u02d5\7g\2\2\u02d5\u02d6\7p\2\2\u02d6\u02d7\7w\2"+ - "\2\u02d7\u02d8\7o\2\2\u02d8\u009f\3\2\2\2\u02d9\u02da\7u\2\2\u02da\u02db"+ - "\7k\2\2\u02db\u02dc\7|\2\2\u02dc\u02dd\7g\2\2\u02dd\u02de\7q\2\2\u02de"+ - "\u02df\7h\2\2\u02df\u00a1\3\2\2\2\u02e0\u02e1\7v\2\2\u02e1\u02e2\7{\2"+ - "\2\u02e2\u02e3\7r\2\2\u02e3\u02e4\7g\2\2\u02e4\u02e5\7k\2\2\u02e5\u02e6"+ - "\7f\2\2\u02e6\u00a3\3\2\2\2\u02e7\u02e8\7m\2\2\u02e8\u02e9\7k\2\2\u02e9"+ - "\u02ea\7e\2\2\u02ea\u02eb\7m\2\2\u02eb\u02ec\7c\2\2\u02ec\u02ed\7u\2\2"+ - "\u02ed\u02ee\7o\2\2\u02ee\u00a5\3\2\2\2\u02ef\u02f0\7t\2\2\u02f0\u02f1"+ - "\7g\2\2\u02f1\u02f2\7u\2\2\u02f2\u02f3\7q\2\2\u02f3\u02f4\7w\2\2\u02f4"+ - "\u02f5\7t\2\2\u02f5\u02f6\7e\2\2\u02f6\u02f7\7g\2\2\u02f7\u00a7\3\2\2"+ - "\2\u02f8\u02f9\7w\2\2\u02f9\u02fa\7u\2\2\u02fa\u02fb\7g\2\2\u02fb\u02fc"+ - "\7u\2\2\u02fc\u00a9\3\2\2\2\u02fd\u02fe\7e\2\2\u02fe\u02ff\7n\2\2\u02ff"+ - "\u0300\7q\2\2\u0300\u0301\7d\2\2\u0301\u0302\7d\2\2\u0302\u0303\7g\2\2"+ - "\u0303\u0304\7t\2\2\u0304\u0305\7u\2\2\u0305\u00ab\3\2\2\2\u0306\u0307"+ - "\7d\2\2\u0307\u0308\7{\2\2\u0308\u0309\7v\2\2\u0309\u030a\7g\2\2\u030a"+ - "\u030b\7u\2\2\u030b\u00ad\3\2\2\2\u030c\u030d\7e\2\2\u030d\u030e\7{\2"+ - "\2\u030e\u030f\7e\2\2\u030f\u0310\7n\2\2\u0310\u0311\7g\2\2\u0311\u0312"+ - "\7u\2\2\u0312\u00af\3\2\2\2\u0313\u0314\7#\2\2\u0314\u00b1\3\2\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\u0324\7f\2\2\u031b\u031c\7w\2\2\u031c\u031d"+ - "\7p\2\2\u031d\u031e\7u\2\2\u031e\u031f\7k\2\2\u031f\u0320\7i\2\2\u0320"+ - "\u0321\7p\2\2\u0321\u0322\7g\2\2\u0322\u0324\7f\2\2\u0323\u0315\3\2\2"+ - "\2\u0323\u031b\3\2\2\2\u0324\u00b3\3\2\2\2\u0325\u0326\7d\2\2\u0326\u0327"+ - "\7{\2\2\u0327\u0328\7v\2\2\u0328\u034b\7g\2\2\u0329\u032a\7y\2\2\u032a"+ - "\u032b\7q\2\2\u032b\u032c\7t\2\2\u032c\u034b\7f\2\2\u032d\u032e\7f\2\2"+ - "\u032e\u032f\7y\2\2\u032f\u0330\7q\2\2\u0330\u0331\7t\2\2\u0331\u034b"+ - "\7f\2\2\u0332\u0333\7d\2\2\u0333\u0334\7q\2\2\u0334\u0335\7q\2\2\u0335"+ - "\u034b\7n\2\2\u0336\u0337\7e\2\2\u0337\u0338\7j\2\2\u0338\u0339\7c\2\2"+ - "\u0339\u034b\7t\2\2\u033a\u033b\7u\2\2\u033b\u033c\7j\2\2\u033c\u033d"+ - "\7q\2\2\u033d\u033e\7t\2\2\u033e\u034b\7v\2\2\u033f\u0340\7k\2\2\u0340"+ - "\u0341\7p\2\2\u0341\u034b\7v\2\2\u0342\u0343\7n\2\2\u0343\u0344\7q\2\2"+ - "\u0344\u0345\7p\2\2\u0345\u034b\7i\2\2\u0346\u0347\7x\2\2\u0347\u0348"+ - "\7q\2\2\u0348\u0349\7k\2\2\u0349\u034b\7f\2\2\u034a\u0325\3\2\2\2\u034a"+ - "\u0329\3\2\2\2\u034a\u032d\3\2\2\2\u034a\u0332\3\2\2\2\u034a\u0336\3\2"+ - "\2\2\u034a\u033a\3\2\2\2\u034a\u033f\3\2\2\2\u034a\u0342\3\2\2\2\u034a"+ - "\u0346\3\2\2\2\u034b\u00b5\3\2\2\2\u034c\u034d\7v\2\2\u034d\u034e\7t\2"+ - "\2\u034e\u034f\7w\2\2\u034f\u0356\7g\2\2\u0350\u0351\7h\2\2\u0351\u0352"+ - "\7c\2\2\u0352\u0353\7n\2\2\u0353\u0354\7u\2\2\u0354\u0356\7g\2\2\u0355"+ - "\u034c\3\2\2\2\u0355\u0350\3\2\2\2\u0356\u00b7\3\2\2\2\u0357\u0358\7}"+ - "\2\2\u0358\u0359\7}\2\2\u0359\u035d\3\2\2\2\u035a\u035c\13\2\2\2\u035b"+ - "\u035a\3\2\2\2\u035c\u035f\3\2\2\2\u035d\u035e\3\2\2\2\u035d\u035b\3\2"+ - "\2\2\u035e\u0360\3\2\2\2\u035f\u035d\3\2\2\2\u0360\u0361\7\177\2\2\u0361"+ - "\u0362\7\177\2\2\u0362\u00b9\3\2\2\2\u0363\u0369\7$\2\2\u0364\u0365\7"+ - "^\2\2\u0365\u0368\7$\2\2\u0366\u0368\n\2\2\2\u0367\u0364\3\2\2\2\u0367"+ - "\u0366\3\2\2\2\u0368\u036b\3\2\2\2\u0369\u0367\3\2\2\2\u0369\u036a\3\2"+ - "\2\2\u036a\u036c\3\2\2\2\u036b\u0369\3\2\2\2\u036c\u036e\7$\2\2\u036d"+ - "\u036f\t\3\2\2\u036e\u036d\3\2\2\2\u036e\u036f\3\2\2\2\u036f\u0374\3\2"+ - "\2\2\u0370\u0372\t\4\2\2\u0371\u0373\t\5\2\2\u0372\u0371\3\2\2\2\u0372"+ - "\u0373\3\2\2\2\u0373\u0375\3\2\2\2\u0374\u0370\3\2\2\2\u0374\u0375\3\2"+ - "\2\2\u0375\u0377\3\2\2\2\u0376\u0378\t\3\2\2\u0377\u0376\3\2\2\2\u0377"+ - "\u0378\3\2\2\2\u0378\u0379\3\2\2\2\u0379\u037a\b]\5\2\u037a\u00bb\3\2"+ - "\2\2\u037b\u037f\7)\2\2\u037c\u037d\7^\2\2\u037d\u0380\t\6\2\2\u037e\u0380"+ - "\n\7\2\2\u037f\u037c\3\2\2\2\u037f\u037e\3\2\2\2\u0380\u0381\3\2\2\2\u0381"+ - "\u0382\7)\2\2\u0382\u00bd\3\2\2\2\u0383\u0384\7%\2\2\u0384\u0385\7f\2"+ - "\2\u0385\u0386\7g\2\2\u0386\u0387\7h\2\2\u0387\u0388\7k\2\2\u0388\u0389"+ - "\7p\2\2\u0389\u038a\7g\2\2\u038a\u00bf\3\2\2\2\u038b\u038c\7^\2\2\u038c"+ - "\u038d\7\f\2\2\u038d\u00c1\3\2\2\2\u038e\u038f\7%\2\2\u038f\u0390\7w\2"+ - "\2\u0390\u0391\7p\2\2\u0391\u0392\7f\2\2\u0392\u0393\7g\2\2\u0393\u0394"+ - "\7h\2\2\u0394\u00c3\3\2\2\2\u0395\u0396\7%\2\2\u0396\u0397\7k\2\2\u0397"+ - "\u0398\7h\2\2\u0398\u0399\7f\2\2\u0399\u039a\7g\2\2\u039a\u039b\7h\2\2"+ - "\u039b\u00c5\3\2\2\2\u039c\u039d\7%\2\2\u039d\u039e\7k\2\2\u039e\u039f"+ - "\7h\2\2\u039f\u03a0\7p\2\2\u03a0\u03a1\7f\2\2\u03a1\u03a2\7g\2\2\u03a2"+ - "\u03a3\7h\2\2\u03a3\u00c7\3\2\2\2\u03a4\u03a5\7%\2\2\u03a5\u03a6\7g\2"+ - "\2\u03a6\u03a7\7n\2\2\u03a7\u03a8\7u\2\2\u03a8\u03a9\7g\2\2\u03a9\u00c9"+ - "\3\2\2\2\u03aa\u03ab\7%\2\2\u03ab\u03ac\7g\2\2\u03ac\u03ad\7p\2\2\u03ad"+ - "\u03ae\7f\2\2\u03ae\u03af\7k\2\2\u03af\u03b0\7h\2\2\u03b0\u00cb\3\2\2"+ - "\2\u03b1\u03b4\5\u00ceg\2\u03b2\u03b4\5\u00d6k\2\u03b3\u03b1\3\2\2\2\u03b3"+ - "\u03b2\3\2\2\2\u03b4\u00cd\3\2\2\2\u03b5\u03b9\5\u00d0h\2\u03b6\u03b9"+ - "\5\u00d2i\2\u03b7\u03b9\5\u00d4j\2\u03b8\u03b5\3\2\2\2\u03b8\u03b6\3\2"+ - "\2\2\u03b8\u03b7\3\2\2\2\u03b9\u00cf\3\2\2\2\u03ba\u03c0\7\'\2\2\u03bb"+ - "\u03bc\7\62\2\2\u03bc\u03c0\7d\2\2\u03bd\u03be\7\62\2\2\u03be\u03c0\7"+ - "D\2\2\u03bf\u03ba\3\2\2\2\u03bf\u03bb\3\2\2\2\u03bf\u03bd\3\2\2\2\u03c0"+ - "\u03c4\3\2\2\2\u03c1\u03c3\5\u00deo\2\u03c2\u03c1\3\2\2\2\u03c3\u03c6"+ - "\3\2\2\2\u03c4\u03c2\3\2\2\2\u03c4\u03c5\3\2\2\2\u03c5\u03c7\3\2\2\2\u03c6"+ - "\u03c4\3\2\2\2\u03c7\u03c9\7\60\2\2\u03c8\u03ca\5\u00deo\2\u03c9\u03c8"+ - "\3\2\2\2\u03ca\u03cb\3\2\2\2\u03cb\u03c9\3\2\2\2\u03cb\u03cc\3\2\2\2\u03cc"+ - "\u00d1\3\2\2\2\u03cd\u03cf\5\u00e0p\2\u03ce\u03cd\3\2\2\2\u03cf\u03d2"+ - "\3\2\2\2\u03d0\u03ce\3\2\2\2\u03d0\u03d1\3\2\2\2\u03d1\u03d3\3\2\2\2\u03d2"+ - "\u03d0\3\2\2\2\u03d3\u03d5\7\60\2\2\u03d4\u03d6\5\u00e0p\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"+ - "\u00d3\3\2\2\2\u03d9\u03df\7&\2\2\u03da\u03db\7\62\2\2\u03db\u03df\7z"+ - "\2\2\u03dc\u03dd\7\62\2\2\u03dd\u03df\7Z\2\2\u03de\u03d9\3\2\2\2\u03de"+ - "\u03da\3\2\2\2\u03de\u03dc\3\2\2\2\u03df\u03e3\3\2\2\2\u03e0\u03e2\5\u00e2"+ - "q\2\u03e1\u03e0\3\2\2\2\u03e2\u03e5\3\2\2\2\u03e3\u03e1\3\2\2\2\u03e3"+ - "\u03e4\3\2\2\2\u03e4\u03e6\3\2\2\2\u03e5\u03e3\3\2\2\2\u03e6\u03e8\7\60"+ - "\2\2\u03e7\u03e9\5\u00e2q\2\u03e8\u03e7\3\2\2\2\u03e9\u03ea\3\2\2\2\u03ea"+ - "\u03e8\3\2\2\2\u03ea\u03eb\3\2\2\2\u03eb\u00d5\3\2\2\2\u03ec\u03f0\5\u00da"+ - "m\2\u03ed\u03f0\5\u00dcn\2\u03ee\u03f0\5\u00d8l\2\u03ef\u03ec\3\2\2\2"+ - "\u03ef\u03ed\3\2\2\2\u03ef\u03ee\3\2\2\2\u03f0\u03f4\3\2\2\2\u03f1\u03f2"+ - "\t\b\2\2\u03f2\u03f5\t\t\2\2\u03f3\u03f5\7n\2\2\u03f4\u03f1\3\2\2\2\u03f4"+ - "\u03f3\3\2\2\2\u03f4\u03f5\3\2\2\2\u03f5\u00d7\3\2\2\2\u03f6\u03f7\7\62"+ - "\2\2\u03f7\u03f9\t\n\2\2\u03f8\u03fa\5\u00deo\2\u03f9\u03f8\3\2\2\2\u03fa"+ - "\u03fb\3\2\2\2\u03fb\u03f9\3\2\2\2\u03fb\u03fc\3\2\2\2\u03fc\u0404\3\2"+ - "\2\2\u03fd\u03ff\7\'\2\2\u03fe\u0400\5\u00deo\2\u03ff\u03fe\3\2\2\2\u0400"+ - "\u0401\3\2\2\2\u0401\u03ff\3\2\2\2\u0401\u0402\3\2\2\2\u0402\u0404\3\2"+ - "\2\2\u0403\u03f6\3\2\2\2\u0403\u03fd\3\2\2\2\u0404\u00d9\3\2\2\2\u0405"+ - "\u0407\5\u00e0p\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\u00db\3\2\2\2\u040a\u0410\7&\2\2\u040b"+ - "\u040c\7\62\2\2\u040c\u0410\7z\2\2\u040d\u040e\7\62\2\2\u040e\u0410\7"+ - "Z\2\2\u040f\u040a\3\2\2\2\u040f\u040b\3\2\2\2\u040f\u040d\3\2\2\2\u0410"+ - "\u0412\3\2\2\2\u0411\u0413\5\u00e2q\2\u0412\u0411\3\2\2\2\u0413\u0414"+ - "\3\2\2\2\u0414\u0412\3\2\2\2\u0414\u0415\3\2\2\2\u0415\u00dd\3\2\2\2\u0416"+ - "\u0417\t\13\2\2\u0417\u00df\3\2\2\2\u0418\u0419\t\f\2\2\u0419\u00e1\3"+ - "\2\2\2\u041a\u041b\t\r\2\2\u041b\u00e3\3\2\2\2\u041c\u0420\5\u00e6s\2"+ - "\u041d\u041f\5\u00e8t\2\u041e\u041d\3\2\2\2\u041f\u0422\3\2\2\2\u0420"+ - "\u041e\3\2\2\2\u0420\u0421\3\2\2\2\u0421\u0423\3\2\2\2\u0422\u0420\3\2"+ - "\2\2\u0423\u0424\br\6\2\u0424\u00e5\3\2\2\2\u0425\u0426\t\16\2\2\u0426"+ - "\u00e7\3\2\2\2\u0427\u0428\t\17\2\2\u0428\u00e9\3\2\2\2\u0429\u042b\t"+ - "\20\2\2\u042a\u0429\3\2\2\2\u042b\u042c\3\2\2\2\u042c\u042a\3\2\2\2\u042c"+ - "\u042d\3\2\2\2\u042d\u042e\3\2\2\2\u042e\u042f\bu\7\2\u042f\u00eb\3\2"+ - "\2\2\u0430\u0431\7\61\2\2\u0431\u0432\7\61\2\2\u0432\u0436\3\2\2\2\u0433"+ - "\u0435\n\21\2\2\u0434\u0433\3\2\2\2\u0435\u0438\3\2\2\2\u0436\u0434\3"+ - "\2\2\2\u0436\u0437\3\2\2\2\u0437\u0439\3\2\2\2\u0438\u0436\3\2\2\2\u0439"+ - "\u043a\bv\b\2\u043a\u00ed\3\2\2\2\u043b\u043c\7\61\2\2\u043c\u043d\7,"+ - "\2\2\u043d\u0441\3\2\2\2\u043e\u0440\13\2\2\2\u043f\u043e\3\2\2\2\u0440"+ - "\u0443\3\2\2\2\u0441\u0442\3\2\2\2\u0441\u043f\3\2\2\2\u0442\u0444\3\2"+ - "\2\2\u0443\u0441\3\2\2\2\u0444\u0445\7,\2\2\u0445\u0446\7\61\2\2\u0446"+ - "\u0447\3\2\2\2\u0447\u0448\bw\b\2\u0448\u00ef\3\2\2\2\u0449\u044a\7\60"+ - "\2\2\u044a\u044b\7d\2\2\u044b\u044c\7{\2\2\u044c\u044d\7v\2\2\u044d\u044e"+ - "\7g\2\2\u044e\u00f1\3\2\2\2\u044f\u0450\7d\2\2\u0450\u0451\7t\2\2\u0451"+ - "\u052e\7m\2\2\u0452\u0453\7q\2\2\u0453\u0454\7t\2\2\u0454\u052e\7c\2\2"+ - "\u0455\u0456\7m\2\2\u0456\u0457\7k\2\2\u0457\u052e\7n\2\2\u0458\u0459"+ - "\7u\2\2\u0459\u045a\7n\2\2\u045a\u052e\7q\2\2\u045b\u045c\7p\2\2\u045c"+ - "\u045d\7q\2\2\u045d\u052e\7r\2\2\u045e\u045f\7c\2\2\u045f\u0460\7u\2\2"+ - "\u0460\u052e\7n\2\2\u0461\u0462\7r\2\2\u0462\u0463\7j\2\2\u0463\u052e"+ - "\7r\2\2\u0464\u0465\7c\2\2\u0465\u0466\7p\2\2\u0466\u052e\7e\2\2\u0467"+ - "\u0468\7d\2\2\u0468\u0469\7r\2\2\u0469\u052e\7n\2\2\u046a\u046b\7e\2\2"+ - "\u046b\u046c\7n\2\2\u046c\u052e\7e\2\2\u046d\u046e\7l\2\2\u046e\u046f"+ - "\7u\2\2\u046f\u052e\7t\2\2\u0470\u0471\7c\2\2\u0471\u0472\7p\2\2\u0472"+ - "\u052e\7f\2\2\u0473\u0474\7t\2\2\u0474\u0475\7n\2\2\u0475\u052e\7c\2\2"+ - "\u0476\u0477\7d\2\2\u0477\u0478\7k\2\2\u0478\u052e\7v\2\2\u0479\u047a"+ - "\7t\2\2\u047a\u047b\7q\2\2\u047b\u052e\7n\2\2\u047c\u047d\7r\2\2\u047d"+ - "\u047e\7n\2\2\u047e\u052e\7c\2\2\u047f\u0480\7r\2\2\u0480\u0481\7n\2\2"+ - "\u0481\u052e\7r\2\2\u0482\u0483\7d\2\2\u0483\u0484\7o\2\2\u0484\u052e"+ - "\7k\2\2\u0485\u0486\7u\2\2\u0486\u0487\7g\2\2\u0487\u052e\7e\2\2\u0488"+ - "\u0489\7t\2\2\u0489\u048a\7v\2\2\u048a\u052e\7k\2\2\u048b\u048c\7g\2\2"+ - "\u048c\u048d\7q\2\2\u048d\u052e\7t\2\2\u048e\u048f\7u\2\2\u048f\u0490"+ - "\7t\2\2\u0490\u052e\7g\2\2\u0491\u0492\7n\2\2\u0492\u0493\7u\2\2\u0493"+ - "\u052e\7t\2\2\u0494\u0495\7r\2\2\u0495\u0496\7j\2\2\u0496\u052e\7c\2\2"+ - "\u0497\u0498\7c\2\2\u0498\u0499\7n\2\2\u0499\u052e\7t\2\2\u049a\u049b"+ - "\7l\2\2\u049b\u049c\7o\2\2\u049c\u052e\7r\2\2\u049d\u049e\7d\2\2\u049e"+ - "\u049f\7x\2\2\u049f\u052e\7e\2\2\u04a0\u04a1\7e\2\2\u04a1\u04a2\7n\2\2"+ - "\u04a2\u052e\7k\2\2\u04a3\u04a4\7t\2\2\u04a4\u04a5\7v\2\2\u04a5\u052e"+ - "\7u\2\2\u04a6\u04a7\7c\2\2\u04a7\u04a8\7f\2\2\u04a8\u052e\7e\2\2\u04a9"+ - "\u04aa\7t\2\2\u04aa\u04ab\7t\2\2\u04ab\u052e\7c\2\2\u04ac\u04ad\7d\2\2"+ - "\u04ad\u04ae\7x\2\2\u04ae\u052e\7u\2\2\u04af\u04b0\7u\2\2\u04b0\u04b1"+ - "\7g\2\2\u04b1\u052e\7k\2\2\u04b2\u04b3\7u\2\2\u04b3\u04b4\7c\2\2\u04b4"+ - "\u052e\7z\2\2\u04b5\u04b6\7u\2\2\u04b6\u04b7\7v\2\2\u04b7\u052e\7{\2\2"+ - "\u04b8\u04b9\7u\2\2\u04b9\u04ba\7v\2\2\u04ba\u052e\7c\2\2\u04bb\u04bc"+ - "\7u\2\2\u04bc\u04bd\7v\2\2\u04bd\u052e\7z\2\2\u04be\u04bf\7f\2\2\u04bf"+ - "\u04c0\7g\2\2\u04c0\u052e\7{\2\2\u04c1\u04c2\7v\2\2\u04c2\u04c3\7z\2\2"+ - "\u04c3\u052e\7c\2\2\u04c4\u04c5\7z\2\2\u04c5\u04c6\7c\2\2\u04c6\u052e"+ - "\7c\2\2\u04c7\u04c8\7d\2\2\u04c8\u04c9\7e\2\2\u04c9\u052e\7e\2\2\u04ca"+ - "\u04cb\7c\2\2\u04cb\u04cc\7j\2\2\u04cc\u052e\7z\2\2\u04cd\u04ce\7v\2\2"+ - "\u04ce\u04cf\7{\2\2\u04cf\u052e\7c\2\2\u04d0\u04d1\7v\2\2\u04d1\u04d2"+ - "\7z\2\2\u04d2\u052e\7u\2\2\u04d3\u04d4\7v\2\2\u04d4\u04d5\7c\2\2\u04d5"+ - "\u052e\7u\2\2\u04d6\u04d7\7u\2\2\u04d7\u04d8\7j\2\2\u04d8\u052e\7{\2\2"+ - "\u04d9\u04da\7u\2\2\u04da\u04db\7j\2\2\u04db\u052e\7z\2\2\u04dc\u04dd"+ - "\7n\2\2\u04dd\u04de\7f\2\2\u04de\u052e\7{\2\2\u04df\u04e0\7n\2\2\u04e0"+ - "\u04e1\7f\2\2\u04e1\u052e\7c\2\2\u04e2\u04e3\7n\2\2\u04e3\u04e4\7f\2\2"+ - "\u04e4\u052e\7z\2\2\u04e5\u04e6\7n\2\2\u04e6\u04e7\7c\2\2\u04e7\u052e"+ - "\7z\2\2\u04e8\u04e9\7v\2\2\u04e9\u04ea\7c\2\2\u04ea\u052e\7{\2\2\u04eb"+ - "\u04ec\7v\2\2\u04ec\u04ed\7c\2\2\u04ed\u052e\7z\2\2\u04ee\u04ef\7d\2\2"+ - "\u04ef\u04f0\7e\2\2\u04f0\u052e\7u\2\2\u04f1\u04f2\7e\2\2\u04f2\u04f3"+ - "\7n\2\2\u04f3\u052e\7x\2\2\u04f4\u04f5\7v\2\2\u04f5\u04f6\7u\2\2\u04f6"+ - "\u052e\7z\2\2\u04f7\u04f8\7n\2\2\u04f8\u04f9\7c\2\2\u04f9\u052e\7u\2\2"+ - "\u04fa\u04fb\7e\2\2\u04fb\u04fc\7r\2\2\u04fc\u052e\7{\2\2\u04fd\u04fe"+ - "\7e\2\2\u04fe\u04ff\7o\2\2\u04ff\u052e\7r\2\2\u0500\u0501\7e\2\2\u0501"+ - "\u0502\7r\2\2\u0502\u052e\7z\2\2\u0503\u0504\7f\2\2\u0504\u0505\7e\2\2"+ - "\u0505\u052e\7r\2\2\u0506\u0507\7f\2\2\u0507\u0508\7g\2\2\u0508\u052e"+ - "\7e\2\2\u0509\u050a\7k\2\2\u050a\u050b\7p\2\2\u050b\u052e\7e\2\2\u050c"+ - "\u050d\7c\2\2\u050d\u050e\7z\2\2\u050e\u052e\7u\2\2\u050f\u0510\7d\2\2"+ - "\u0510\u0511\7p\2\2\u0511\u052e\7g\2\2\u0512\u0513\7e\2\2\u0513\u0514"+ - "\7n\2\2\u0514\u052e\7f\2\2\u0515\u0516\7u\2\2\u0516\u0517\7d\2\2\u0517"+ - "\u052e\7e\2\2\u0518\u0519\7k\2\2\u0519\u051a\7u\2\2\u051a\u052e\7e\2\2"+ - "\u051b\u051c\7k\2\2\u051c\u051d\7p\2\2\u051d\u052e\7z\2\2\u051e\u051f"+ - "\7d\2\2\u051f\u0520\7g\2\2\u0520\u052e\7s\2\2\u0521\u0522\7u\2\2\u0522"+ - "\u0523\7g\2\2\u0523\u052e\7f\2\2\u0524\u0525\7f\2\2\u0525\u0526\7g\2\2"+ - "\u0526\u052e\7z\2\2\u0527\u0528\7k\2\2\u0528\u0529\7p\2\2\u0529\u052e"+ - "\7{\2\2\u052a\u052b\7t\2\2\u052b\u052c\7q\2\2\u052c\u052e\7t\2\2\u052d"+ - "\u044f\3\2\2\2\u052d\u0452\3\2\2\2\u052d\u0455\3\2\2\2\u052d\u0458\3\2"+ - "\2\2\u052d\u045b\3\2\2\2\u052d\u045e\3\2\2\2\u052d\u0461\3\2\2\2\u052d"+ - "\u0464\3\2\2\2\u052d\u0467\3\2\2\2\u052d\u046a\3\2\2\2\u052d\u046d\3\2"+ - "\2\2\u052d\u0470\3\2\2\2\u052d\u0473\3\2\2\2\u052d\u0476\3\2\2\2\u052d"+ - "\u0479\3\2\2\2\u052d\u047c\3\2\2\2\u052d\u047f\3\2\2\2\u052d\u0482\3\2"+ - "\2\2\u052d\u0485\3\2\2\2\u052d\u0488\3\2\2\2\u052d\u048b\3\2\2\2\u052d"+ - "\u048e\3\2\2\2\u052d\u0491\3\2\2\2\u052d\u0494\3\2\2\2\u052d\u0497\3\2"+ - "\2\2\u052d\u049a\3\2\2\2\u052d\u049d\3\2\2\2\u052d\u04a0\3\2\2\2\u052d"+ - "\u04a3\3\2\2\2\u052d\u04a6\3\2\2\2\u052d\u04a9\3\2\2\2\u052d\u04ac\3\2"+ - "\2\2\u052d\u04af\3\2\2\2\u052d\u04b2\3\2\2\2\u052d\u04b5\3\2\2\2\u052d"+ - "\u04b8\3\2\2\2\u052d\u04bb\3\2\2\2\u052d\u04be\3\2\2\2\u052d\u04c1\3\2"+ - "\2\2\u052d\u04c4\3\2\2\2\u052d\u04c7\3\2\2\2\u052d\u04ca\3\2\2\2\u052d"+ - "\u04cd\3\2\2\2\u052d\u04d0\3\2\2\2\u052d\u04d3\3\2\2\2\u052d\u04d6\3\2"+ - "\2\2\u052d\u04d9\3\2\2\2\u052d\u04dc\3\2\2\2\u052d\u04df\3\2\2\2\u052d"+ - "\u04e2\3\2\2\2\u052d\u04e5\3\2\2\2\u052d\u04e8\3\2\2\2\u052d\u04eb\3\2"+ - "\2\2\u052d\u04ee\3\2\2\2\u052d\u04f1\3\2\2\2\u052d\u04f4\3\2\2\2\u052d"+ - "\u04f7\3\2\2\2\u052d\u04fa\3\2\2\2\u052d\u04fd\3\2\2\2\u052d\u0500\3\2"+ - "\2\2\u052d\u0503\3\2\2\2\u052d\u0506\3\2\2\2\u052d\u0509\3\2\2\2\u052d"+ - "\u050c\3\2\2\2\u052d\u050f\3\2\2\2\u052d\u0512\3\2\2\2\u052d\u0515\3\2"+ - "\2\2\u052d\u0518\3\2\2\2\u052d\u051b\3\2\2\2\u052d\u051e\3\2\2\2\u052d"+ - "\u0521\3\2\2\2\u052d\u0524\3\2\2\2\u052d\u0527\3\2\2\2\u052d\u052a\3\2"+ - "\2\2\u052e\u00f3\3\2\2\2\u052f\u0530\7%\2\2\u0530\u00f5\3\2\2\2\u0531"+ - "\u0532\7<\2\2\u0532\u00f7\3\2\2\2\u0533\u0534\7.\2\2\u0534\u00f9\3\2\2"+ - "\2\u0535\u0536\7*\2\2\u0536\u00fb\3\2\2\2\u0537\u0538\7+\2\2\u0538\u00fd"+ - "\3\2\2\2\u0539\u053a\7]\2\2\u053a\u00ff\3\2\2\2\u053b\u053c\7_\2\2\u053c"+ - "\u0101\3\2\2\2\u053d\u053e\7\60\2\2\u053e\u0103\3\2\2\2\u053f\u0540\7"+ - ">\2\2\u0540\u0541\7>\2\2\u0541\u0105\3\2\2\2\u0542\u0543\7@\2\2\u0543"+ - "\u0544\7@\2\2\u0544\u0107\3\2\2\2\u0545\u0546\7-\2\2\u0546\u0109\3\2\2"+ - "\2\u0547\u0548\7/\2\2\u0548\u010b\3\2\2\2\u0549\u054a\7>\2\2\u054a\u010d"+ - "\3\2\2\2\u054b\u054c\7@\2\2\u054c\u010f\3\2\2\2\u054d\u054e\7,\2\2\u054e"+ - "\u0111\3\2\2\2\u054f\u0550\7\61\2\2\u0550\u0113\3\2\2\2\u0551\u0552\7"+ - "}\2\2\u0552\u0553\b\u008a\t\2\u0553\u0115\3\2\2\2\u0554\u0555\7\177\2"+ - "\2\u0555\u0556\b\u008b\n\2\u0556\u0117\3\2\2\2\u0557\u055a\5\u011a\u008d"+ - "\2\u0558\u055a\5\u0122\u0091\2\u0559\u0557\3\2\2\2\u0559\u0558\3\2\2\2"+ - "\u055a\u0119\3\2\2\2\u055b\u055f\5\u011c\u008e\2\u055c\u055f\5\u011e\u008f"+ - "\2\u055d\u055f\5\u0120\u0090\2\u055e\u055b\3\2\2\2\u055e\u055c\3\2\2\2"+ - "\u055e\u055d\3\2\2\2\u055f\u011b\3\2\2\2\u0560\u0564\7\'\2\2\u0561\u0563"+ - "\5\u012a\u0095\2\u0562\u0561\3\2\2\2\u0563\u0566\3\2\2\2\u0564\u0562\3"+ - "\2\2\2\u0564\u0565\3\2\2\2\u0565\u0567\3\2\2\2\u0566\u0564\3\2\2\2\u0567"+ - "\u0569\7\60\2\2\u0568\u056a\5\u012a\u0095\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\u012c\u0096\2\u056e\u056d\3\2\2\2\u056f\u0572\3\2\2"+ - "\2\u0570\u056e\3\2\2\2\u0570\u0571\3\2\2\2\u0571\u0573\3\2\2\2\u0572\u0570"+ - "\3\2\2\2\u0573\u0575\7\60\2\2\u0574\u0576\5\u012c\u0096\2\u0575\u0574"+ - "\3\2\2\2\u0576\u0577\3\2\2\2\u0577\u0575\3\2\2\2\u0577\u0578\3\2\2\2\u0578"+ - "\u011f\3\2\2\2\u0579\u057d\7&\2\2\u057a\u057c\5\u012e\u0097\2\u057b\u057a"+ - "\3\2\2\2\u057c\u057f\3\2\2\2\u057d\u057b\3\2\2\2\u057d\u057e\3\2\2\2\u057e"+ - "\u0580\3\2\2\2\u057f\u057d\3\2\2\2\u0580\u0582\7\60\2\2\u0581\u0583\5"+ - "\u012e\u0097\2\u0582\u0581\3\2\2\2\u0583\u0584\3\2\2\2\u0584\u0582\3\2"+ - "\2\2\u0584\u0585\3\2\2\2\u0585\u0121\3\2\2\2\u0586\u058a\5\u0126\u0093"+ - "\2\u0587\u058a\5\u0128\u0094\2\u0588\u058a\5\u0124\u0092\2\u0589\u0586"+ - "\3\2\2\2\u0589\u0587\3\2\2\2\u0589\u0588\3\2\2\2\u058a\u0123\3\2\2\2\u058b"+ - "\u058d\7\'\2\2\u058c\u058e\5\u012a\u0095\2\u058d\u058c\3\2\2\2\u058e\u058f"+ - "\3\2\2\2\u058f\u058d\3\2\2\2\u058f\u0590\3\2\2\2\u0590\u0125\3\2\2\2\u0591"+ - "\u0593\5\u012c\u0096\2\u0592\u0591\3\2\2\2\u0593\u0594\3\2\2\2\u0594\u0592"+ - "\3\2\2\2\u0594\u0595\3\2\2\2\u0595\u0127\3\2\2\2\u0596\u0598\7&\2\2\u0597"+ - "\u0599\5\u012e\u0097\2\u0598\u0597\3\2\2\2\u0599\u059a\3\2\2\2\u059a\u0598"+ - "\3\2\2\2\u059a\u059b\3\2\2\2\u059b\u0129\3\2\2\2\u059c\u059d\t\13\2\2"+ - "\u059d\u012b\3\2\2\2\u059e\u059f\t\f\2\2\u059f\u012d\3\2\2\2\u05a0\u05a1"+ - "\t\r\2\2\u05a1\u012f\3\2\2\2\u05a2\u05a6\7)\2\2\u05a3\u05a4\7^\2\2\u05a4"+ - "\u05a7\t\6\2\2\u05a5\u05a7\n\7\2\2\u05a6\u05a3\3\2\2\2\u05a6\u05a5\3\2"+ - "\2\2\u05a7\u05a8\3\2\2\2\u05a8\u05a9\7)\2\2\u05a9\u0131\3\2\2\2\u05aa"+ - "\u05ac\5\u0134\u009a\2\u05ab\u05ad\t\22\2\2\u05ac\u05ab\3\2\2\2\u05ad"+ - "\u05ae\3\2\2\2\u05ae\u05ac\3\2\2\2\u05ae\u05af\3\2\2\2\u05af\u0133\3\2"+ - "\2\2\u05b0\u05b4\7#\2\2\u05b1\u05b3\5\u013a\u009d\2\u05b2\u05b1\3\2\2"+ - "\2\u05b3\u05b6\3\2\2\2\u05b4\u05b2\3\2\2\2\u05b4\u05b5\3\2\2\2\u05b5\u0135"+ - "\3\2\2\2\u05b6\u05b4\3\2\2\2\u05b7\u05bb\5\u0138\u009c\2\u05b8\u05ba\5"+ - "\u013a\u009d\2\u05b9\u05b8\3\2\2\2\u05ba\u05bd\3\2\2\2\u05bb\u05b9\3\2"+ - "\2\2\u05bb\u05bc\3\2\2\2\u05bc\u0137\3\2\2\2\u05bd\u05bb\3\2\2\2\u05be"+ - "\u05bf\t\16\2\2\u05bf\u0139\3\2\2\2\u05c0\u05c1\t\17\2\2\u05c1\u013b\3"+ - "\2\2\2\u05c2\u05c4\t\20\2\2\u05c3\u05c2\3\2\2\2\u05c4\u05c5\3\2\2\2\u05c5"+ - "\u05c3\3\2\2\2\u05c5\u05c6\3\2\2\2\u05c6\u05c7\3\2\2\2\u05c7\u05c8\b\u009e"+ - "\7\2\u05c8\u013d\3\2\2\2\u05c9\u05ca\7\61\2\2\u05ca\u05cb\7\61\2\2\u05cb"+ - "\u05cf\3\2\2\2\u05cc\u05ce\n\21\2\2\u05cd\u05cc\3\2\2\2\u05ce\u05d1\3"+ - "\2\2\2\u05cf\u05cd\3\2\2\2\u05cf\u05d0\3\2\2\2\u05d0\u05d2\3\2\2\2\u05d1"+ - "\u05cf\3\2\2\2\u05d2\u05d3\b\u009f\b\2\u05d3\u013f\3\2\2\2\u05d4\u05d5"+ - "\7\61\2\2\u05d5\u05d6\7,\2\2\u05d6\u05da\3\2\2\2\u05d7\u05d9\13\2\2\2"+ - "\u05d8\u05d7\3\2\2\2\u05d9\u05dc\3\2\2\2\u05da\u05db\3\2\2\2\u05da\u05d8"+ - "\3\2\2\2\u05db\u05dd\3\2\2\2\u05dc\u05da\3\2\2\2\u05dd\u05de\7,\2\2\u05de"+ - "\u05df\7\61\2\2\u05df\u05e0\3\2\2\2\u05e0\u05e1\b\u00a0\b\2\u05e1\u0141"+ - "\3\2\2\2;\2\3\u01ab\u027c\u0323\u034a\u0355\u035d\u0367\u0369\u036e\u0372"+ - "\u0374\u0377\u037f\u03b3\u03b8\u03bf\u03c4\u03cb\u03d0\u03d7\u03de\u03e3"+ - "\u03ea\u03ef\u03f4\u03fb\u0401\u0403\u0408\u040f\u0414\u0420\u042c\u0436"+ - "\u0441\u052d\u0559\u055e\u0564\u056b\u0570\u0577\u057d\u0584\u0589\u058f"+ - "\u0594\u059a\u05a6\u05ae\u05b4\u05bb\u05c5\u05cf\u05da\13\3\2\2\3&\3\3"+ - "K\4\3]\5\3r\6\2\3\2\2\4\2\3\u008a\7\3\u008b\b"; + "\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3\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%\u01b2\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\3"+ + "8\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@\u0283\n@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3C\3C\3C\3C\3"+ + "C\3D\3D\3D\3D\3D\3D\3E\3E\3E\3F\3F\3F\3F\3G\3G\3G\3G\3G\3G\3G\3H\3H\3"+ + "H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3"+ + "K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3"+ + "O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3"+ + "R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3"+ + "U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3"+ + "X\3X\3Y\3Y\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\3Z\5Z\u0332\nZ\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[\u0359\n[\3\\\3\\\3\\\3\\\3\\"+ + "\3\\\3\\\3\\\3\\\5\\\u0364\n\\\3]\3]\3]\3]\7]\u036a\n]\f]\16]\u036d\13"+ + "]\3]\3]\3]\3^\3^\3^\3^\7^\u0376\n^\f^\16^\u0379\13^\3^\3^\5^\u037d\n^"+ + "\3^\3^\5^\u0381\n^\5^\u0383\n^\3^\5^\u0386\n^\3^\3^\3_\3_\3_\3_\5_\u038e"+ + "\n_\3_\3_\3`\3`\3`\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\5a\u039f\na\3b\3b\3b"+ + "\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3c\3d\3d\3d\3d\3d\3d\3d\3d\3e\3e\3e\3e"+ + "\3f\3f\3f\3f\3f\3f\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3h\3h\3h\3i\3i\5i\u03d0"+ + "\ni\3j\3j\3j\5j\u03d5\nj\3k\3k\3k\3k\3k\5k\u03dc\nk\3k\7k\u03df\nk\fk"+ + "\16k\u03e2\13k\3k\3k\6k\u03e6\nk\rk\16k\u03e7\3l\7l\u03eb\nl\fl\16l\u03ee"+ + "\13l\3l\3l\6l\u03f2\nl\rl\16l\u03f3\3m\3m\3m\3m\3m\5m\u03fb\nm\3m\7m\u03fe"+ + "\nm\fm\16m\u0401\13m\3m\3m\6m\u0405\nm\rm\16m\u0406\3n\3n\3n\5n\u040c"+ + "\nn\3n\3n\3n\5n\u0411\nn\3o\3o\3o\6o\u0416\no\ro\16o\u0417\3o\3o\6o\u041c"+ + "\no\ro\16o\u041d\5o\u0420\no\3p\6p\u0423\np\rp\16p\u0424\3q\3q\3q\3q\3"+ + "q\5q\u042c\nq\3q\6q\u042f\nq\rq\16q\u0430\3r\3r\3s\3s\3t\3t\3u\3u\7u\u043b"+ + "\nu\fu\16u\u043e\13u\3u\3u\3v\3v\3w\3w\3x\6x\u0447\nx\rx\16x\u0448\3x"+ + "\3x\3y\3y\3y\3y\7y\u0451\ny\fy\16y\u0454\13y\3y\3y\3z\3z\3z\3z\7z\u045c"+ + "\nz\fz\16z\u045f\13z\3z\3z\3z\3z\3z\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|\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|\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|\3|\3|\3|\3|\3|\3"+ + "|\3|\3|\3|\3|\3|\3|\3|\3|\3|\5|\u054a\n|\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\3\u0088"+ + "\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008b\3\u008b\3\u008c\3\u008c"+ + "\3\u008d\3\u008d\3\u008d\3\u008e\3\u008e\3\u008e\3\u008f\3\u008f\5\u008f"+ + "\u0576\n\u008f\3\u0090\3\u0090\3\u0090\5\u0090\u057b\n\u0090\3\u0091\3"+ + "\u0091\7\u0091\u057f\n\u0091\f\u0091\16\u0091\u0582\13\u0091\3\u0091\3"+ + "\u0091\6\u0091\u0586\n\u0091\r\u0091\16\u0091\u0587\3\u0092\7\u0092\u058b"+ + "\n\u0092\f\u0092\16\u0092\u058e\13\u0092\3\u0092\3\u0092\6\u0092\u0592"+ + "\n\u0092\r\u0092\16\u0092\u0593\3\u0093\3\u0093\7\u0093\u0598\n\u0093"+ + "\f\u0093\16\u0093\u059b\13\u0093\3\u0093\3\u0093\6\u0093\u059f\n\u0093"+ + "\r\u0093\16\u0093\u05a0\3\u0094\3\u0094\3\u0094\5\u0094\u05a6\n\u0094"+ + "\3\u0095\3\u0095\6\u0095\u05aa\n\u0095\r\u0095\16\u0095\u05ab\3\u0096"+ + "\6\u0096\u05af\n\u0096\r\u0096\16\u0096\u05b0\3\u0097\3\u0097\6\u0097"+ + "\u05b5\n\u0097\r\u0097\16\u0097\u05b6\3\u0098\3\u0098\3\u0099\3\u0099"+ + "\3\u009a\3\u009a\3\u009b\3\u009b\3\u009b\3\u009b\5\u009b\u05c3\n\u009b"+ + "\3\u009b\3\u009b\3\u009c\3\u009c\6\u009c\u05c9\n\u009c\r\u009c\16\u009c"+ + "\u05ca\3\u009d\3\u009d\7\u009d\u05cf\n\u009d\f\u009d\16\u009d\u05d2\13"+ + "\u009d\3\u009e\3\u009e\7\u009e\u05d6\n\u009e\f\u009e\16\u009e\u05d9\13"+ + "\u009e\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a1\6\u00a1\u05e0\n\u00a1\r"+ + "\u00a1\16\u00a1\u05e1\3\u00a1\3\u00a1\3\u00a2\3\u00a2\3\u00a2\3\u00a2"+ + "\7\u00a2\u05ea\n\u00a2\f\u00a2\16\u00a2\u05ed\13\u00a2\3\u00a2\3\u00a2"+ + "\3\u00a3\3\u00a3\3\u00a3\3\u00a3\7\u00a3\u05f5\n\u00a3\f\u00a3\16\u00a3"+ + "\u05f8\13\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a3\3\u00a3\5\u036b\u045d"+ + "\u05f6\2\u00a4\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\65"+ + "h\66j\67l8n9p:r;tz?|@~A\u0080B\u0082C\u0084D\u0086E\u0088F\u008a"+ + "G\u008cH\u008eI\u0090J\u0092K\u0094L\u0096M\u0098N\u009aO\u009cP\u009e"+ + "Q\u00a0R\u00a2S\u00a4T\u00a6U\u00a8V\u00aaW\u00acX\u00aeY\u00b0Z\u00b2"+ + "[\u00b4\\\u00b6]\u00b8^\u00ba_\u00bc`\u00bea\u00c0b\u00c2c\u00c4d\u00c6"+ + "e\u00c8f\u00cag\u00cch\u00cei\u00d0j\u00d2k\u00d4l\u00d6m\u00d8n\u00da"+ + "o\u00dcp\u00deq\u00e0r\u00e2s\u00e4\2\u00e6\2\u00e8\2\u00eat\u00ec\2\u00ee"+ + "\2\u00f0u\u00f2v\u00f4w\u00f6x\u00f8y\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\u008d\u0122\u008e\u0124\u008f\u0126\u0090"+ + "\u0128\u0091\u012a\u0092\u012c\u0093\u012e\u0094\u0130\2\u0132\2\u0134"+ + "\2\u0136\u0095\u0138\u0096\u013a\u0097\u013c\u0098\u013e\2\u0140\2\u0142"+ + "\u0099\u0144\u009a\u0146\u009b\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\u0689\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\2"+ + "R\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\2v\3\2\2\2\2"+ + "x\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\u00d6\3\2\2\2\2\u00d8\3\2\2\2\2\u00da\3\2\2\2\2\u00dc"+ + "\3\2\2\2\2\u00de\3\2\2\2\2\u00e0\3\2\2\2\2\u00e2\3\2\2\2\2\u00ea\3\2\2"+ + "\2\2\u00f0\3\2\2\2\2\u00f2\3\2\2\2\2\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\u0122\3\2\2\2\3\u0124\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\u012e"+ + "\3\2\2\2\3\u0136\3\2\2\2\3\u0138\3\2\2\2\3\u013a\3\2\2\2\3\u013c\3\2\2"+ + "\2\3\u0142\3\2\2\2\3\u0144\3\2\2\2\3\u0146\3\2\2\2\4\u0148\3\2\2\2\6\u014b"+ + "\3\2\2\2\b\u014d\3\2\2\2\n\u014f\3\2\2\2\f\u0151\3\2\2\2\16\u0153\3\2"+ + "\2\2\20\u0155\3\2\2\2\22\u0157\3\2\2\2\24\u0159\3\2\2\2\26\u015b\3\2\2"+ + "\2\30\u015e\3\2\2\2\32\u0160\3\2\2\2\34\u0162\3\2\2\2\36\u0165\3\2\2\2"+ + " \u0167\3\2\2\2\"\u0169\3\2\2\2$\u016b\3\2\2\2&\u016d\3\2\2\2(\u016f\3"+ + "\2\2\2*\u0172\3\2\2\2,\u0175\3\2\2\2.\u0177\3\2\2\2\60\u0179\3\2\2\2\62"+ + "\u017b\3\2\2\2\64\u017d\3\2\2\2\66\u0180\3\2\2\28\u0183\3\2\2\2:\u0186"+ + "\3\2\2\2<\u0189\3\2\2\2>\u018b\3\2\2\2@\u018e\3\2\2\2B\u0191\3\2\2\2D"+ + "\u0193\3\2\2\2F\u0196\3\2\2\2H\u0199\3\2\2\2J\u01b1\3\2\2\2L\u01b3\3\2"+ + "\2\2N\u01bc\3\2\2\2P\u01c4\3\2\2\2R\u01cc\3\2\2\2T\u01d4\3\2\2\2V\u01d7"+ + "\3\2\2\2X\u01de\3\2\2\2Z\u01e3\3\2\2\2\\\u01e7\3\2\2\2^\u01f0\3\2\2\2"+ + "`\u01f9\3\2\2\2b\u0202\3\2\2\2d\u0208\3\2\2\2f\u020f\3\2\2\2h\u0216\3"+ + "\2\2\2j\u021c\3\2\2\2l\u0223\3\2\2\2n\u022c\3\2\2\2p\u0233\3\2\2\2r\u023d"+ + "\3\2\2\2t\u0246\3\2\2\2v\u0250\3\2\2\2x\u0255\3\2\2\2z\u025b\3\2\2\2|"+ + "\u0261\3\2\2\2~\u0266\3\2\2\2\u0080\u0282\3\2\2\2\u0082\u0284\3\2\2\2"+ + "\u0084\u028e\3\2\2\2\u0086\u0291\3\2\2\2\u0088\u0296\3\2\2\2\u008a\u029c"+ + "\3\2\2\2\u008c\u029f\3\2\2\2\u008e\u02a3\3\2\2\2\u0090\u02aa\3\2\2\2\u0092"+ + "\u02b1\3\2\2\2\u0094\u02b7\3\2\2\2\u0096\u02c0\3\2\2\2\u0098\u02c6\3\2"+ + "\2\2\u009a\u02ce\3\2\2\2\u009c\u02d3\3\2\2\2\u009e\u02da\3\2\2\2\u00a0"+ + "\u02df\3\2\2\2\u00a2\u02e6\3\2\2\2\u00a4\u02ed\3\2\2\2\u00a6\u02f5\3\2"+ + "\2\2\u00a8\u02fd\3\2\2\2\u00aa\u0306\3\2\2\2\u00ac\u030b\3\2\2\2\u00ae"+ + "\u0314\3\2\2\2\u00b0\u031a\3\2\2\2\u00b2\u0321\3\2\2\2\u00b4\u0331\3\2"+ + "\2\2\u00b6\u0358\3\2\2\2\u00b8\u0363\3\2\2\2\u00ba\u0365\3\2\2\2\u00bc"+ + "\u0371\3\2\2\2\u00be\u0389\3\2\2\2\u00c0\u0391\3\2\2\2\u00c2\u039e\3\2"+ + "\2\2\u00c4\u03a0\3\2\2\2\u00c6\u03a7\3\2\2\2\u00c8\u03ae\3\2\2\2\u00ca"+ + "\u03b6\3\2\2\2\u00cc\u03ba\3\2\2\2\u00ce\u03c0\3\2\2\2\u00d0\u03c6\3\2"+ + "\2\2\u00d2\u03cf\3\2\2\2\u00d4\u03d4\3\2\2\2\u00d6\u03db\3\2\2\2\u00d8"+ + "\u03ec\3\2\2\2\u00da\u03fa\3\2\2\2\u00dc\u040b\3\2\2\2\u00de\u041f\3\2"+ + "\2\2\u00e0\u0422\3\2\2\2\u00e2\u042b\3\2\2\2\u00e4\u0432\3\2\2\2\u00e6"+ + "\u0434\3\2\2\2\u00e8\u0436\3\2\2\2\u00ea\u0438\3\2\2\2\u00ec\u0441\3\2"+ + "\2\2\u00ee\u0443\3\2\2\2\u00f0\u0446\3\2\2\2\u00f2\u044c\3\2\2\2\u00f4"+ + "\u0457\3\2\2\2\u00f6\u0465\3\2\2\2\u00f8\u0549\3\2\2\2\u00fa\u054b\3\2"+ + "\2\2\u00fc\u054d\3\2\2\2\u00fe\u054f\3\2\2\2\u0100\u0551\3\2\2\2\u0102"+ + "\u0553\3\2\2\2\u0104\u0555\3\2\2\2\u0106\u0557\3\2\2\2\u0108\u0559\3\2"+ + "\2\2\u010a\u055b\3\2\2\2\u010c\u055e\3\2\2\2\u010e\u0561\3\2\2\2\u0110"+ + "\u0563\3\2\2\2\u0112\u0565\3\2\2\2\u0114\u0567\3\2\2\2\u0116\u0569\3\2"+ + "\2\2\u0118\u056b\3\2\2\2\u011a\u056d\3\2\2\2\u011c\u0570\3\2\2\2\u011e"+ + "\u0575\3\2\2\2\u0120\u057a\3\2\2\2\u0122\u057c\3\2\2\2\u0124\u058c\3\2"+ + "\2\2\u0126\u0595\3\2\2\2\u0128\u05a5\3\2\2\2\u012a\u05a7\3\2\2\2\u012c"+ + "\u05ae\3\2\2\2\u012e\u05b2\3\2\2\2\u0130\u05b8\3\2\2\2\u0132\u05ba\3\2"+ + "\2\2\u0134\u05bc\3\2\2\2\u0136\u05be\3\2\2\2\u0138\u05c6\3\2\2\2\u013a"+ + "\u05cc\3\2\2\2\u013c\u05d3\3\2\2\2\u013e\u05da\3\2\2\2\u0140\u05dc\3\2"+ + "\2\2\u0142\u05df\3\2\2\2\u0144\u05e5\3\2\2\2\u0146\u05f0\3\2\2\2\u0148"+ + "\u0149\7}\2\2\u0149\u014a\b\2\2\2\u014a\5\3\2\2\2\u014b\u014c\7\177\2"+ + "\2\u014c\7\3\2\2\2\u014d\u014e\7]\2\2\u014e\t\3\2\2\2\u014f\u0150\7_\2"+ + "\2\u0150\13\3\2\2\2\u0151\u0152\7*\2\2\u0152\r\3\2\2\2\u0153\u0154\7+"+ + "\2\2\u0154\17\3\2\2\2\u0155\u0156\7=\2\2\u0156\21\3\2\2\2\u0157\u0158"+ + "\7<\2\2\u0158\23\3\2\2\2\u0159\u015a\7.\2\2\u015a\25\3\2\2\2\u015b\u015c"+ + "\7\60\2\2\u015c\u015d\7\60\2\2\u015d\27\3\2\2\2\u015e\u015f\7A\2\2\u015f"+ + "\31\3\2\2\2\u0160\u0161\7\60\2\2\u0161\33\3\2\2\2\u0162\u0163\7/\2\2\u0163"+ + "\u0164\7@\2\2\u0164\35\3\2\2\2\u0165\u0166\7-\2\2\u0166\37\3\2\2\2\u0167"+ + "\u0168\7/\2\2\u0168!\3\2\2\2\u0169\u016a\7,\2\2\u016a#\3\2\2\2\u016b\u016c"+ + "\7\61\2\2\u016c%\3\2\2\2\u016d\u016e\7\'\2\2\u016e\'\3\2\2\2\u016f\u0170"+ + "\7-\2\2\u0170\u0171\7-\2\2\u0171)\3\2\2\2\u0172\u0173\7/\2\2\u0173\u0174"+ + "\7/\2\2\u0174+\3\2\2\2\u0175\u0176\7(\2\2\u0176-\3\2\2\2\u0177\u0178\7"+ + "\u0080\2\2\u0178/\3\2\2\2\u0179\u017a\7`\2\2\u017a\61\3\2\2\2\u017b\u017c"+ + "\7~\2\2\u017c\63\3\2\2\2\u017d\u017e\7>\2\2\u017e\u017f\7>\2\2\u017f\65"+ + "\3\2\2\2\u0180\u0181\7@\2\2\u0181\u0182\7@\2\2\u0182\67\3\2\2\2\u0183"+ + "\u0184\7?\2\2\u0184\u0185\7?\2\2\u01859\3\2\2\2\u0186\u0187\7#\2\2\u0187"+ + "\u0188\7?\2\2\u0188;\3\2\2\2\u0189\u018a\7>\2\2\u018a=\3\2\2\2\u018b\u018c"+ + "\7>\2\2\u018c\u018d\7?\2\2\u018d?\3\2\2\2\u018e\u018f\7@\2\2\u018f\u0190"+ + "\7?\2\2\u0190A\3\2\2\2\u0191\u0192\7@\2\2\u0192C\3\2\2\2\u0193\u0194\7"+ + "(\2\2\u0194\u0195\7(\2\2\u0195E\3\2\2\2\u0196\u0197\7~\2\2\u0197\u0198"+ + "\7~\2\2\u0198G\3\2\2\2\u0199\u019a\7?\2\2\u019aI\3\2\2\2\u019b\u019c\7"+ + "-\2\2\u019c\u01b2\7?\2\2\u019d\u019e\7/\2\2\u019e\u01b2\7?\2\2\u019f\u01a0"+ + "\7,\2\2\u01a0\u01b2\7?\2\2\u01a1\u01a2\7\61\2\2\u01a2\u01b2\7?\2\2\u01a3"+ + "\u01a4\7\'\2\2\u01a4\u01b2\7?\2\2\u01a5\u01a6\7>\2\2\u01a6\u01a7\7>\2"+ + "\2\u01a7\u01b2\7?\2\2\u01a8\u01a9\7@\2\2\u01a9\u01aa\7@\2\2\u01aa\u01b2"+ + "\7?\2\2\u01ab\u01ac\7(\2\2\u01ac\u01b2\7?\2\2\u01ad\u01ae\7~\2\2\u01ae"+ + "\u01b2\7?\2\2\u01af\u01b0\7`\2\2\u01b0\u01b2\7?\2\2\u01b1\u019b\3\2\2"+ + "\2\u01b1\u019d\3\2\2\2\u01b1\u019f\3\2\2\2\u01b1\u01a1\3\2\2\2\u01b1\u01a3"+ + "\3\2\2\2\u01b1\u01a5\3\2\2\2\u01b1\u01a8\3\2\2\2\u01b1\u01ab\3\2\2\2\u01b1"+ + "\u01ad\3\2\2\2\u01b1\u01af\3\2\2\2\u01b2K\3\2\2\2\u01b3\u01b4\7k\2\2\u01b4"+ + "\u01b5\7o\2\2\u01b5\u01b6\7r\2\2\u01b6\u01b7\7q\2\2\u01b7\u01b8\7t\2\2"+ + "\u01b8\u01b9\7v\2\2\u01b9\u01ba\3\2\2\2\u01ba\u01bb\b&\3\2\u01bbM\3\2"+ + "\2\2\u01bc\u01bd\7v\2\2\u01bd\u01be\7{\2\2\u01be\u01bf\7r\2\2\u01bf\u01c0"+ + "\7g\2\2\u01c0\u01c1\7f\2\2\u01c1\u01c2\7g\2\2\u01c2\u01c3\7h\2\2\u01c3"+ + "O\3\2\2\2\u01c4\u01c5\7%\2\2\u01c5\u01c6\7r\2\2\u01c6\u01c7\7t\2\2\u01c7"+ + "\u01c8\7c\2\2\u01c8\u01c9\7i\2\2\u01c9\u01ca\7o\2\2\u01ca\u01cb\7c\2\2"+ + "\u01cbQ\3\2\2\2\u01cc\u01cd\7t\2\2\u01cd\u01ce\7g\2\2\u01ce\u01cf\7u\2"+ + "\2\u01cf\u01d0\7g\2\2\u01d0\u01d1\7t\2\2\u01d1\u01d2\7x\2\2\u01d2\u01d3"+ + "\7g\2\2\u01d3S\3\2\2\2\u01d4\u01d5\7r\2\2\u01d5\u01d6\7e\2\2\u01d6U\3"+ + "\2\2\2\u01d7\u01d8\7v\2\2\u01d8\u01d9\7c\2\2\u01d9\u01da\7t\2\2\u01da"+ + "\u01db\7i\2\2\u01db\u01dc\7g\2\2\u01dc\u01dd\7v\2\2\u01ddW\3\2\2\2\u01de"+ + "\u01df\7n\2\2\u01df\u01e0\7k\2\2\u01e0\u01e1\7p\2\2\u01e1\u01e2\7m\2\2"+ + "\u01e2Y\3\2\2\2\u01e3\u01e4\7e\2\2\u01e4\u01e5\7r\2\2\u01e5\u01e6\7w\2"+ + "\2\u01e6[\3\2\2\2\u01e7\u01e8\7e\2\2\u01e8\u01e9\7q\2\2\u01e9\u01ea\7"+ + "f\2\2\u01ea\u01eb\7g\2\2\u01eb\u01ec\7a\2\2\u01ec\u01ed\7u\2\2\u01ed\u01ee"+ + "\7g\2\2\u01ee\u01ef\7i\2\2\u01ef]\3\2\2\2\u01f0\u01f1\7f\2\2\u01f1\u01f2"+ + "\7c\2\2\u01f2\u01f3\7v\2\2\u01f3\u01f4\7c\2\2\u01f4\u01f5\7a\2\2\u01f5"+ + "\u01f6\7u\2\2\u01f6\u01f7\7g\2\2\u01f7\u01f8\7i\2\2\u01f8_\3\2\2\2\u01f9"+ + "\u01fa\7g\2\2\u01fa\u01fb\7p\2\2\u01fb\u01fc\7e\2\2\u01fc\u01fd\7q\2\2"+ + "\u01fd\u01fe\7f\2\2\u01fe\u01ff\7k\2\2\u01ff\u0200\7p\2\2\u0200\u0201"+ + "\7i\2\2\u0201a\3\2\2\2\u0202\u0203\7e\2\2\u0203\u0204\7q\2\2\u0204\u0205"+ + "\7p\2\2\u0205\u0206\7u\2\2\u0206\u0207\7v\2\2\u0207c\3\2\2\2\u0208\u0209"+ + "\7g\2\2\u0209\u020a\7z\2\2\u020a\u020b\7v\2\2\u020b\u020c\7g\2\2\u020c"+ + "\u020d\7t\2\2\u020d\u020e\7p\2\2\u020ee\3\2\2\2\u020f\u0210\7g\2\2\u0210"+ + "\u0211\7z\2\2\u0211\u0212\7r\2\2\u0212\u0213\7q\2\2\u0213\u0214\7t\2\2"+ + "\u0214\u0215\7v\2\2\u0215g\3\2\2\2\u0216\u0217\7c\2\2\u0217\u0218\7n\2"+ + "\2\u0218\u0219\7k\2\2\u0219\u021a\7i\2\2\u021a\u021b\7p\2\2\u021bi\3\2"+ + "\2\2\u021c\u021d\7k\2\2\u021d\u021e\7p\2\2\u021e\u021f\7n\2\2\u021f\u0220"+ + "\7k\2\2\u0220\u0221\7p\2\2\u0221\u0222\7g\2\2\u0222k\3\2\2\2\u0223\u0224"+ + "\7x\2\2\u0224\u0225\7q\2\2\u0225\u0226\7n\2\2\u0226\u0227\7c\2\2\u0227"+ + "\u0228\7v\2\2\u0228\u0229\7k\2\2\u0229\u022a\7n\2\2\u022a\u022b\7g\2\2"+ + "\u022bm\3\2\2\2\u022c\u022d\7u\2\2\u022d\u022e\7v\2\2\u022e\u022f\7c\2"+ + "\2\u022f\u0230\7v\2\2\u0230\u0231\7k\2\2\u0231\u0232\7e\2\2\u0232o\3\2"+ + "\2\2\u0233\u0234\7k\2\2\u0234\u0235\7p\2\2\u0235\u0236\7v\2\2\u0236\u0237"+ + "\7g\2\2\u0237\u0238\7t\2\2\u0238\u0239\7t\2\2\u0239\u023a\7w\2\2\u023a"+ + "\u023b\7r\2\2\u023b\u023c\7v\2\2\u023cq\3\2\2\2\u023d\u023e\7t\2\2\u023e"+ + "\u023f\7g\2\2\u023f\u0240\7i\2\2\u0240\u0241\7k\2\2\u0241\u0242\7u\2\2"+ + "\u0242\u0243\7v\2\2\u0243\u0244\7g\2\2\u0244\u0245\7t\2\2\u0245s\3\2\2"+ + "\2\u0246\u0247\7a\2\2\u0247\u0248\7a\2\2\u0248\u0249\7c\2\2\u0249\u024a"+ + "\7f\2\2\u024a\u024b\7f\2\2\u024b\u024c\7t\2\2\u024c\u024d\7g\2\2\u024d"+ + "\u024e\7u\2\2\u024e\u024f\7u\2\2\u024fu\3\2\2\2\u0250\u0251\7a\2\2\u0251"+ + "\u0252\7a\2\2\u0252\u0253\7|\2\2\u0253\u0254\7r\2\2\u0254w\3\2\2\2\u0255"+ + "\u0256\7a\2\2\u0256\u0257\7a\2\2\u0257\u0258\7o\2\2\u0258\u0259\7g\2\2"+ + "\u0259\u025a\7o\2\2\u025ay\3\2\2\2\u025b\u025c\7a\2\2\u025c\u025d\7a\2"+ + "\2\u025d\u025e\7u\2\2\u025e\u025f\7u\2\2\u025f\u0260\7c\2\2\u0260{\3\2"+ + "\2\2\u0261\u0262\7a\2\2\u0262\u0263\7a\2\2\u0263\u0264\7o\2\2\u0264\u0265"+ + "\7c\2\2\u0265}\3\2\2\2\u0266\u0267\7e\2\2\u0267\u0268\7c\2\2\u0268\u0269"+ + "\7n\2\2\u0269\u026a\7n\2\2\u026a\u026b\7k\2\2\u026b\u026c\7p\2\2\u026c"+ + "\u026d\7i\2\2\u026d\177\3\2\2\2\u026e\u026f\7a\2\2\u026f\u0270\7a\2\2"+ + "\u0270\u0271\7u\2\2\u0271\u0272\7v\2\2\u0272\u0273\7c\2\2\u0273\u0274"+ + "\7e\2\2\u0274\u0275\7m\2\2\u0275\u0276\7e\2\2\u0276\u0277\7c\2\2\u0277"+ + "\u0278\7n\2\2\u0278\u0283\7n\2\2\u0279\u027a\7a\2\2\u027a\u027b\7a\2\2"+ + "\u027b\u027c\7r\2\2\u027c\u027d\7j\2\2\u027d\u027e\7k\2\2\u027e\u027f"+ + "\7e\2\2\u027f\u0280\7c\2\2\u0280\u0281\7n\2\2\u0281\u0283\7n\2\2\u0282"+ + "\u026e\3\2\2\2\u0282\u0279\3\2\2\2\u0283\u0081\3\2\2\2\u0284\u0285\7x"+ + "\2\2\u0285\u0286\7c\2\2\u0286\u0287\7t\2\2\u0287\u0288\7a\2\2\u0288\u0289"+ + "\7o\2\2\u0289\u028a\7q\2\2\u028a\u028b\7f\2\2\u028b\u028c\7g\2\2\u028c"+ + "\u028d\7n\2\2\u028d\u0083\3\2\2\2\u028e\u028f\7k\2\2\u028f\u0290\7h\2"+ + "\2\u0290\u0085\3\2\2\2\u0291\u0292\7g\2\2\u0292\u0293\7n\2\2\u0293\u0294"+ + "\7u\2\2\u0294\u0295\7g\2\2\u0295\u0087\3\2\2\2\u0296\u0297\7y\2\2\u0297"+ + "\u0298\7j\2\2\u0298\u0299\7k\2\2\u0299\u029a\7n\2\2\u029a\u029b\7g\2\2"+ + "\u029b\u0089\3\2\2\2\u029c\u029d\7f\2\2\u029d\u029e\7q\2\2\u029e\u008b"+ + "\3\2\2\2\u029f\u02a0\7h\2\2\u02a0\u02a1\7q\2\2\u02a1\u02a2\7t\2\2\u02a2"+ + "\u008d\3\2\2\2\u02a3\u02a4\7u\2\2\u02a4\u02a5\7y\2\2\u02a5\u02a6\7k\2"+ + "\2\u02a6\u02a7\7v\2\2\u02a7\u02a8\7e\2\2\u02a8\u02a9\7j\2\2\u02a9\u008f"+ + "\3\2\2\2\u02aa\u02ab\7t\2\2\u02ab\u02ac\7g\2\2\u02ac\u02ad\7v\2\2\u02ad"+ + "\u02ae\7w\2\2\u02ae\u02af\7t\2\2\u02af\u02b0\7p\2\2\u02b0\u0091\3\2\2"+ + "\2\u02b1\u02b2\7d\2\2\u02b2\u02b3\7t\2\2\u02b3\u02b4\7g\2\2\u02b4\u02b5"+ + "\7c\2\2\u02b5\u02b6\7m\2\2\u02b6\u0093\3\2\2\2\u02b7\u02b8\7e\2\2\u02b8"+ + "\u02b9\7q\2\2\u02b9\u02ba\7p\2\2\u02ba\u02bb\7v\2\2\u02bb\u02bc\7k\2\2"+ + "\u02bc\u02bd\7p\2\2\u02bd\u02be\7w\2\2\u02be\u02bf\7g\2\2\u02bf\u0095"+ + "\3\2\2\2\u02c0\u02c1\7c\2\2\u02c1\u02c2\7u\2\2\u02c2\u02c3\7o\2\2\u02c3"+ + "\u02c4\3\2\2\2\u02c4\u02c5\bK\4\2\u02c5\u0097\3\2\2\2\u02c6\u02c7\7f\2"+ + "\2\u02c7\u02c8\7g\2\2\u02c8\u02c9\7h\2\2\u02c9\u02ca\7c\2\2\u02ca\u02cb"+ + "\7w\2\2\u02cb\u02cc\7n\2\2\u02cc\u02cd\7v\2\2\u02cd\u0099\3\2\2\2\u02ce"+ + "\u02cf\7e\2\2\u02cf\u02d0\7c\2\2\u02d0\u02d1\7u\2\2\u02d1\u02d2\7g\2\2"+ + "\u02d2\u009b\3\2\2\2\u02d3\u02d4\7u\2\2\u02d4\u02d5\7v\2\2\u02d5\u02d6"+ + "\7t\2\2\u02d6\u02d7\7w\2\2\u02d7\u02d8\7e\2\2\u02d8\u02d9\7v\2\2\u02d9"+ + "\u009d\3\2\2\2\u02da\u02db\7g\2\2\u02db\u02dc\7p\2\2\u02dc\u02dd\7w\2"+ + "\2\u02dd\u02de\7o\2\2\u02de\u009f\3\2\2\2\u02df\u02e0\7u\2\2\u02e0\u02e1"+ + "\7k\2\2\u02e1\u02e2\7|\2\2\u02e2\u02e3\7g\2\2\u02e3\u02e4\7q\2\2\u02e4"+ + "\u02e5\7h\2\2\u02e5\u00a1\3\2\2\2\u02e6\u02e7\7v\2\2\u02e7\u02e8\7{\2"+ + "\2\u02e8\u02e9\7r\2\2\u02e9\u02ea\7g\2\2\u02ea\u02eb\7k\2\2\u02eb\u02ec"+ + "\7f\2\2\u02ec\u00a3\3\2\2\2\u02ed\u02ee\7f\2\2\u02ee\u02ef\7g\2\2\u02ef"+ + "\u02f0\7h\2\2\u02f0\u02f1\7k\2\2\u02f1\u02f2\7p\2\2\u02f2\u02f3\7g\2\2"+ + "\u02f3\u02f4\7f\2\2\u02f4\u00a5\3\2\2\2\u02f5\u02f6\7m\2\2\u02f6\u02f7"+ + "\7k\2\2\u02f7\u02f8\7e\2\2\u02f8\u02f9\7m\2\2\u02f9\u02fa\7c\2\2\u02fa"+ + "\u02fb\7u\2\2\u02fb\u02fc\7o\2\2\u02fc\u00a7\3\2\2\2\u02fd\u02fe\7t\2"+ + "\2\u02fe\u02ff\7g\2\2\u02ff\u0300\7u\2\2\u0300\u0301\7q\2\2\u0301\u0302"+ + "\7w\2\2\u0302\u0303\7t\2\2\u0303\u0304\7e\2\2\u0304\u0305\7g\2\2\u0305"+ + "\u00a9\3\2\2\2\u0306\u0307\7w\2\2\u0307\u0308\7u\2\2\u0308\u0309\7g\2"+ + "\2\u0309\u030a\7u\2\2\u030a\u00ab\3\2\2\2\u030b\u030c\7e\2\2\u030c\u030d"+ + "\7n\2\2\u030d\u030e\7q\2\2\u030e\u030f\7d\2\2\u030f\u0310\7d\2\2\u0310"+ + "\u0311\7g\2\2\u0311\u0312\7t\2\2\u0312\u0313\7u\2\2\u0313\u00ad\3\2\2"+ + "\2\u0314\u0315\7d\2\2\u0315\u0316\7{\2\2\u0316\u0317\7v\2\2\u0317\u0318"+ + "\7g\2\2\u0318\u0319\7u\2\2\u0319\u00af\3\2\2\2\u031a\u031b\7e\2\2\u031b"+ + "\u031c\7{\2\2\u031c\u031d\7e\2\2\u031d\u031e\7n\2\2\u031e\u031f\7g\2\2"+ + "\u031f\u0320\7u\2\2\u0320\u00b1\3\2\2\2\u0321\u0322\7#\2\2\u0322\u00b3"+ + "\3\2\2\2\u0323\u0324\7u\2\2\u0324\u0325\7k\2\2\u0325\u0326\7i\2\2\u0326"+ + "\u0327\7p\2\2\u0327\u0328\7g\2\2\u0328\u0332\7f\2\2\u0329\u032a\7w\2\2"+ + "\u032a\u032b\7p\2\2\u032b\u032c\7u\2\2\u032c\u032d\7k\2\2\u032d\u032e"+ + "\7i\2\2\u032e\u032f\7p\2\2\u032f\u0330\7g\2\2\u0330\u0332\7f\2\2\u0331"+ + "\u0323\3\2\2\2\u0331\u0329\3\2\2\2\u0332\u00b5\3\2\2\2\u0333\u0334\7d"+ + "\2\2\u0334\u0335\7{\2\2\u0335\u0336\7v\2\2\u0336\u0359\7g\2\2\u0337\u0338"+ + "\7y\2\2\u0338\u0339\7q\2\2\u0339\u033a\7t\2\2\u033a\u0359\7f\2\2\u033b"+ + "\u033c\7f\2\2\u033c\u033d\7y\2\2\u033d\u033e\7q\2\2\u033e\u033f\7t\2\2"+ + "\u033f\u0359\7f\2\2\u0340\u0341\7d\2\2\u0341\u0342\7q\2\2\u0342\u0343"+ + "\7q\2\2\u0343\u0359\7n\2\2\u0344\u0345\7e\2\2\u0345\u0346\7j\2\2\u0346"+ + "\u0347\7c\2\2\u0347\u0359\7t\2\2\u0348\u0349\7u\2\2\u0349\u034a\7j\2\2"+ + "\u034a\u034b\7q\2\2\u034b\u034c\7t\2\2\u034c\u0359\7v\2\2\u034d\u034e"+ + "\7k\2\2\u034e\u034f\7p\2\2\u034f\u0359\7v\2\2\u0350\u0351\7n\2\2\u0351"+ + "\u0352\7q\2\2\u0352\u0353\7p\2\2\u0353\u0359\7i\2\2\u0354\u0355\7x\2\2"+ + "\u0355\u0356\7q\2\2\u0356\u0357\7k\2\2\u0357\u0359\7f\2\2\u0358\u0333"+ + "\3\2\2\2\u0358\u0337\3\2\2\2\u0358\u033b\3\2\2\2\u0358\u0340\3\2\2\2\u0358"+ + "\u0344\3\2\2\2\u0358\u0348\3\2\2\2\u0358\u034d\3\2\2\2\u0358\u0350\3\2"+ + "\2\2\u0358\u0354\3\2\2\2\u0359\u00b7\3\2\2\2\u035a\u035b\7v\2\2\u035b"+ + "\u035c\7t\2\2\u035c\u035d\7w\2\2\u035d\u0364\7g\2\2\u035e\u035f\7h\2\2"+ + "\u035f\u0360\7c\2\2\u0360\u0361\7n\2\2\u0361\u0362\7u\2\2\u0362\u0364"+ + "\7g\2\2\u0363\u035a\3\2\2\2\u0363\u035e\3\2\2\2\u0364\u00b9\3\2\2\2\u0365"+ + "\u0366\7}\2\2\u0366\u0367\7}\2\2\u0367\u036b\3\2\2\2\u0368\u036a\13\2"+ + "\2\2\u0369\u0368\3\2\2\2\u036a\u036d\3\2\2\2\u036b\u036c\3\2\2\2\u036b"+ + "\u0369\3\2\2\2\u036c\u036e\3\2\2\2\u036d\u036b\3\2\2\2\u036e\u036f\7\177"+ + "\2\2\u036f\u0370\7\177\2\2\u0370\u00bb\3\2\2\2\u0371\u0377\7$\2\2\u0372"+ + "\u0373\7^\2\2\u0373\u0376\7$\2\2\u0374\u0376\n\2\2\2\u0375\u0372\3\2\2"+ + "\2\u0375\u0374\3\2\2\2\u0376\u0379\3\2\2\2\u0377\u0375\3\2\2\2\u0377\u0378"+ + "\3\2\2\2\u0378\u037a\3\2\2\2\u0379\u0377\3\2\2\2\u037a\u037c\7$\2\2\u037b"+ + "\u037d\t\3\2\2\u037c\u037b\3\2\2\2\u037c\u037d\3\2\2\2\u037d\u0382\3\2"+ + "\2\2\u037e\u0380\t\4\2\2\u037f\u0381\t\5\2\2\u0380\u037f\3\2\2\2\u0380"+ + "\u0381\3\2\2\2\u0381\u0383\3\2\2\2\u0382\u037e\3\2\2\2\u0382\u0383\3\2"+ + "\2\2\u0383\u0385\3\2\2\2\u0384\u0386\t\3\2\2\u0385\u0384\3\2\2\2\u0385"+ + "\u0386\3\2\2\2\u0386\u0387\3\2\2\2\u0387\u0388\b^\5\2\u0388\u00bd\3\2"+ + "\2\2\u0389\u038d\7)\2\2\u038a\u038b\7^\2\2\u038b\u038e\t\6\2\2\u038c\u038e"+ + "\n\7\2\2\u038d\u038a\3\2\2\2\u038d\u038c\3\2\2\2\u038e\u038f\3\2\2\2\u038f"+ + "\u0390\7)\2\2\u0390\u00bf\3\2\2\2\u0391\u0392\7%\2\2\u0392\u0393\7f\2"+ + "\2\u0393\u0394\7g\2\2\u0394\u0395\7h\2\2\u0395\u0396\7k\2\2\u0396\u0397"+ + "\7p\2\2\u0397\u0398\7g\2\2\u0398\u00c1\3\2\2\2\u0399\u039a\7^\2\2\u039a"+ + "\u039f\7\f\2\2\u039b\u039c\7^\2\2\u039c\u039d\7\17\2\2\u039d\u039f\7\f"+ + "\2\2\u039e\u0399\3\2\2\2\u039e\u039b\3\2\2\2\u039f\u00c3\3\2\2\2\u03a0"+ + "\u03a1\7%\2\2\u03a1\u03a2\7w\2\2\u03a2\u03a3\7p\2\2\u03a3\u03a4\7f\2\2"+ + "\u03a4\u03a5\7g\2\2\u03a5\u03a6\7h\2\2\u03a6\u00c5\3\2\2\2\u03a7\u03a8"+ + "\7%\2\2\u03a8\u03a9\7k\2\2\u03a9\u03aa\7h\2\2\u03aa\u03ab\7f\2\2\u03ab"+ + "\u03ac\7g\2\2\u03ac\u03ad\7h\2\2\u03ad\u00c7\3\2\2\2\u03ae\u03af\7%\2"+ + "\2\u03af\u03b0\7k\2\2\u03b0\u03b1\7h\2\2\u03b1\u03b2\7p\2\2\u03b2\u03b3"+ + "\7f\2\2\u03b3\u03b4\7g\2\2\u03b4\u03b5\7h\2\2\u03b5\u00c9\3\2\2\2\u03b6"+ + "\u03b7\7%\2\2\u03b7\u03b8\7k\2\2\u03b8\u03b9\7h\2\2\u03b9\u00cb\3\2\2"+ + "\2\u03ba\u03bb\7%\2\2\u03bb\u03bc\7g\2\2\u03bc\u03bd\7n\2\2\u03bd\u03be"+ + "\7k\2\2\u03be\u03bf\7h\2\2\u03bf\u00cd\3\2\2\2\u03c0\u03c1\7%\2\2\u03c1"+ + "\u03c2\7g\2\2\u03c2\u03c3\7n\2\2\u03c3\u03c4\7u\2\2\u03c4\u03c5\7g\2\2"+ + "\u03c5\u00cf\3\2\2\2\u03c6\u03c7\7%\2\2\u03c7\u03c8\7g\2\2\u03c8\u03c9"+ + "\7p\2\2\u03c9\u03ca\7f\2\2\u03ca\u03cb\7k\2\2\u03cb\u03cc\7h\2\2\u03cc"+ + "\u00d1\3\2\2\2\u03cd\u03d0\5\u00d4j\2\u03ce\u03d0\5\u00dcn\2\u03cf\u03cd"+ + "\3\2\2\2\u03cf\u03ce\3\2\2\2\u03d0\u00d3\3\2\2\2\u03d1\u03d5\5\u00d6k"+ + "\2\u03d2\u03d5\5\u00d8l\2\u03d3\u03d5\5\u00dam\2\u03d4\u03d1\3\2\2\2\u03d4"+ + "\u03d2\3\2\2\2\u03d4\u03d3\3\2\2\2\u03d5\u00d5\3\2\2\2\u03d6\u03dc\7\'"+ + "\2\2\u03d7\u03d8\7\62\2\2\u03d8\u03dc\7d\2\2\u03d9\u03da\7\62\2\2\u03da"+ + "\u03dc\7D\2\2\u03db\u03d6\3\2\2\2\u03db\u03d7\3\2\2\2\u03db\u03d9\3\2"+ + "\2\2\u03dc\u03e0\3\2\2\2\u03dd\u03df\5\u00e4r\2\u03de\u03dd\3\2\2\2\u03df"+ + "\u03e2\3\2\2\2\u03e0\u03de\3\2\2\2\u03e0\u03e1\3\2\2\2\u03e1\u03e3\3\2"+ + "\2\2\u03e2\u03e0\3\2\2\2\u03e3\u03e5\7\60\2\2\u03e4\u03e6\5\u00e4r\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\u00d7\3\2\2\2\u03e9\u03eb\5\u00e6s\2\u03ea\u03e9\3\2\2\2\u03eb"+ + "\u03ee\3\2\2\2\u03ec\u03ea\3\2\2\2\u03ec\u03ed\3\2\2\2\u03ed\u03ef\3\2"+ + "\2\2\u03ee\u03ec\3\2\2\2\u03ef\u03f1\7\60\2\2\u03f0\u03f2\5\u00e6s\2\u03f1"+ + "\u03f0\3\2\2\2\u03f2\u03f3\3\2\2\2\u03f3\u03f1\3\2\2\2\u03f3\u03f4\3\2"+ + "\2\2\u03f4\u00d9\3\2\2\2\u03f5\u03fb\7&\2\2\u03f6\u03f7\7\62\2\2\u03f7"+ + "\u03fb\7z\2\2\u03f8\u03f9\7\62\2\2\u03f9\u03fb\7Z\2\2\u03fa\u03f5\3\2"+ + "\2\2\u03fa\u03f6\3\2\2\2\u03fa\u03f8\3\2\2\2\u03fb\u03ff\3\2\2\2\u03fc"+ + "\u03fe\5\u00e8t\2\u03fd\u03fc\3\2\2\2\u03fe\u0401\3\2\2\2\u03ff\u03fd"+ + "\3\2\2\2\u03ff\u0400\3\2\2\2\u0400\u0402\3\2\2\2\u0401\u03ff\3\2\2\2\u0402"+ + "\u0404\7\60\2\2\u0403\u0405\5\u00e8t\2\u0404\u0403\3\2\2\2\u0405\u0406"+ + "\3\2\2\2\u0406\u0404\3\2\2\2\u0406\u0407\3\2\2\2\u0407\u00db\3\2\2\2\u0408"+ + "\u040c\5\u00e0p\2\u0409\u040c\5\u00e2q\2\u040a\u040c\5\u00deo\2\u040b"+ + "\u0408\3\2\2\2\u040b\u0409\3\2\2\2\u040b\u040a\3\2\2\2\u040c\u0410\3\2"+ + "\2\2\u040d\u040e\t\b\2\2\u040e\u0411\t\t\2\2\u040f\u0411\7n\2\2\u0410"+ + "\u040d\3\2\2\2\u0410\u040f\3\2\2\2\u0410\u0411\3\2\2\2\u0411\u00dd\3\2"+ + "\2\2\u0412\u0413\7\62\2\2\u0413\u0415\t\n\2\2\u0414\u0416\5\u00e4r\2\u0415"+ + "\u0414\3\2\2\2\u0416\u0417\3\2\2\2\u0417\u0415\3\2\2\2\u0417\u0418\3\2"+ + "\2\2\u0418\u0420\3\2\2\2\u0419\u041b\7\'\2\2\u041a\u041c\5\u00e4r\2\u041b"+ + "\u041a\3\2\2\2\u041c\u041d\3\2\2\2\u041d\u041b\3\2\2\2\u041d\u041e\3\2"+ + "\2\2\u041e\u0420\3\2\2\2\u041f\u0412\3\2\2\2\u041f\u0419\3\2\2\2\u0420"+ + "\u00df\3\2\2\2\u0421\u0423\5\u00e6s\2\u0422\u0421\3\2\2\2\u0423\u0424"+ + "\3\2\2\2\u0424\u0422\3\2\2\2\u0424\u0425\3\2\2\2\u0425\u00e1\3\2\2\2\u0426"+ + "\u042c\7&\2\2\u0427\u0428\7\62\2\2\u0428\u042c\7z\2\2\u0429\u042a\7\62"+ + "\2\2\u042a\u042c\7Z\2\2\u042b\u0426\3\2\2\2\u042b\u0427\3\2\2\2\u042b"+ + "\u0429\3\2\2\2\u042c\u042e\3\2\2\2\u042d\u042f\5\u00e8t\2\u042e\u042d"+ + "\3\2\2\2\u042f\u0430\3\2\2\2\u0430\u042e\3\2\2\2\u0430\u0431\3\2\2\2\u0431"+ + "\u00e3\3\2\2\2\u0432\u0433\t\13\2\2\u0433\u00e5\3\2\2\2\u0434\u0435\t"+ + "\f\2\2\u0435\u00e7\3\2\2\2\u0436\u0437\t\r\2\2\u0437\u00e9\3\2\2\2\u0438"+ + "\u043c\5\u00ecv\2\u0439\u043b\5\u00eew\2\u043a\u0439\3\2\2\2\u043b\u043e"+ + "\3\2\2\2\u043c\u043a\3\2\2\2\u043c\u043d\3\2\2\2\u043d\u043f\3\2\2\2\u043e"+ + "\u043c\3\2\2\2\u043f\u0440\bu\6\2\u0440\u00eb\3\2\2\2\u0441\u0442\t\16"+ + "\2\2\u0442\u00ed\3\2\2\2\u0443\u0444\t\17\2\2\u0444\u00ef\3\2\2\2\u0445"+ + "\u0447\t\20\2\2\u0446\u0445\3\2\2\2\u0447\u0448\3\2\2\2\u0448\u0446\3"+ + "\2\2\2\u0448\u0449\3\2\2\2\u0449\u044a\3\2\2\2\u044a\u044b\bx\7\2\u044b"+ + "\u00f1\3\2\2\2\u044c\u044d\7\61\2\2\u044d\u044e\7\61\2\2\u044e\u0452\3"+ + "\2\2\2\u044f\u0451\n\21\2\2\u0450\u044f\3\2\2\2\u0451\u0454\3\2\2\2\u0452"+ + "\u0450\3\2\2\2\u0452\u0453\3\2\2\2\u0453\u0455\3\2\2\2\u0454\u0452\3\2"+ + "\2\2\u0455\u0456\by\b\2\u0456\u00f3\3\2\2\2\u0457\u0458\7\61\2\2\u0458"+ + "\u0459\7,\2\2\u0459\u045d\3\2\2\2\u045a\u045c\13\2\2\2\u045b\u045a\3\2"+ + "\2\2\u045c\u045f\3\2\2\2\u045d\u045e\3\2\2\2\u045d\u045b\3\2\2\2\u045e"+ + "\u0460\3\2\2\2\u045f\u045d\3\2\2\2\u0460\u0461\7,\2\2\u0461\u0462\7\61"+ + "\2\2\u0462\u0463\3\2\2\2\u0463\u0464\bz\b\2\u0464\u00f5\3\2\2\2\u0465"+ + "\u0466\7\60\2\2\u0466\u0467\7d\2\2\u0467\u0468\7{\2\2\u0468\u0469\7v\2"+ + "\2\u0469\u046a\7g\2\2\u046a\u00f7\3\2\2\2\u046b\u046c\7d\2\2\u046c\u046d"+ + "\7t\2\2\u046d\u054a\7m\2\2\u046e\u046f\7q\2\2\u046f\u0470\7t\2\2\u0470"+ + "\u054a\7c\2\2\u0471\u0472\7m\2\2\u0472\u0473\7k\2\2\u0473\u054a\7n\2\2"+ + "\u0474\u0475\7u\2\2\u0475\u0476\7n\2\2\u0476\u054a\7q\2\2\u0477\u0478"+ + "\7p\2\2\u0478\u0479\7q\2\2\u0479\u054a\7r\2\2\u047a\u047b\7c\2\2\u047b"+ + "\u047c\7u\2\2\u047c\u054a\7n\2\2\u047d\u047e\7r\2\2\u047e\u047f\7j\2\2"+ + "\u047f\u054a\7r\2\2\u0480\u0481\7c\2\2\u0481\u0482\7p\2\2\u0482\u054a"+ + "\7e\2\2\u0483\u0484\7d\2\2\u0484\u0485\7r\2\2\u0485\u054a\7n\2\2\u0486"+ + "\u0487\7e\2\2\u0487\u0488\7n\2\2\u0488\u054a\7e\2\2\u0489\u048a\7l\2\2"+ + "\u048a\u048b\7u\2\2\u048b\u054a\7t\2\2\u048c\u048d\7c\2\2\u048d\u048e"+ + "\7p\2\2\u048e\u054a\7f\2\2\u048f\u0490\7t\2\2\u0490\u0491\7n\2\2\u0491"+ + "\u054a\7c\2\2\u0492\u0493\7d\2\2\u0493\u0494\7k\2\2\u0494\u054a\7v\2\2"+ + "\u0495\u0496\7t\2\2\u0496\u0497\7q\2\2\u0497\u054a\7n\2\2\u0498\u0499"+ + "\7r\2\2\u0499\u049a\7n\2\2\u049a\u054a\7c\2\2\u049b\u049c\7r\2\2\u049c"+ + "\u049d\7n\2\2\u049d\u054a\7r\2\2\u049e\u049f\7d\2\2\u049f\u04a0\7o\2\2"+ + "\u04a0\u054a\7k\2\2\u04a1\u04a2\7u\2\2\u04a2\u04a3\7g\2\2\u04a3\u054a"+ + "\7e\2\2\u04a4\u04a5\7t\2\2\u04a5\u04a6\7v\2\2\u04a6\u054a\7k\2\2\u04a7"+ + "\u04a8\7g\2\2\u04a8\u04a9\7q\2\2\u04a9\u054a\7t\2\2\u04aa\u04ab\7u\2\2"+ + "\u04ab\u04ac\7t\2\2\u04ac\u054a\7g\2\2\u04ad\u04ae\7n\2\2\u04ae\u04af"+ + "\7u\2\2\u04af\u054a\7t\2\2\u04b0\u04b1\7r\2\2\u04b1\u04b2\7j\2\2\u04b2"+ + "\u054a\7c\2\2\u04b3\u04b4\7c\2\2\u04b4\u04b5\7n\2\2\u04b5\u054a\7t\2\2"+ + "\u04b6\u04b7\7l\2\2\u04b7\u04b8\7o\2\2\u04b8\u054a\7r\2\2\u04b9\u04ba"+ + "\7d\2\2\u04ba\u04bb\7x\2\2\u04bb\u054a\7e\2\2\u04bc\u04bd\7e\2\2\u04bd"+ + "\u04be\7n\2\2\u04be\u054a\7k\2\2\u04bf\u04c0\7t\2\2\u04c0\u04c1\7v\2\2"+ + "\u04c1\u054a\7u\2\2\u04c2\u04c3\7c\2\2\u04c3\u04c4\7f\2\2\u04c4\u054a"+ + "\7e\2\2\u04c5\u04c6\7t\2\2\u04c6\u04c7\7t\2\2\u04c7\u054a\7c\2\2\u04c8"+ + "\u04c9\7d\2\2\u04c9\u04ca\7x\2\2\u04ca\u054a\7u\2\2\u04cb\u04cc\7u\2\2"+ + "\u04cc\u04cd\7g\2\2\u04cd\u054a\7k\2\2\u04ce\u04cf\7u\2\2\u04cf\u04d0"+ + "\7c\2\2\u04d0\u054a\7z\2\2\u04d1\u04d2\7u\2\2\u04d2\u04d3\7v\2\2\u04d3"+ + "\u054a\7{\2\2\u04d4\u04d5\7u\2\2\u04d5\u04d6\7v\2\2\u04d6\u054a\7c\2\2"+ + "\u04d7\u04d8\7u\2\2\u04d8\u04d9\7v\2\2\u04d9\u054a\7z\2\2\u04da\u04db"+ + "\7f\2\2\u04db\u04dc\7g\2\2\u04dc\u054a\7{\2\2\u04dd\u04de\7v\2\2\u04de"+ + "\u04df\7z\2\2\u04df\u054a\7c\2\2\u04e0\u04e1\7z\2\2\u04e1\u04e2\7c\2\2"+ + "\u04e2\u054a\7c\2\2\u04e3\u04e4\7d\2\2\u04e4\u04e5\7e\2\2\u04e5\u054a"+ + "\7e\2\2\u04e6\u04e7\7c\2\2\u04e7\u04e8\7j\2\2\u04e8\u054a\7z\2\2\u04e9"+ + "\u04ea\7v\2\2\u04ea\u04eb\7{\2\2\u04eb\u054a\7c\2\2\u04ec\u04ed\7v\2\2"+ + "\u04ed\u04ee\7z\2\2\u04ee\u054a\7u\2\2\u04ef\u04f0\7v\2\2\u04f0\u04f1"+ + "\7c\2\2\u04f1\u054a\7u\2\2\u04f2\u04f3\7u\2\2\u04f3\u04f4\7j\2\2\u04f4"+ + "\u054a\7{\2\2\u04f5\u04f6\7u\2\2\u04f6\u04f7\7j\2\2\u04f7\u054a\7z\2\2"+ + "\u04f8\u04f9\7n\2\2\u04f9\u04fa\7f\2\2\u04fa\u054a\7{\2\2\u04fb\u04fc"+ + "\7n\2\2\u04fc\u04fd\7f\2\2\u04fd\u054a\7c\2\2\u04fe\u04ff\7n\2\2\u04ff"+ + "\u0500\7f\2\2\u0500\u054a\7z\2\2\u0501\u0502\7n\2\2\u0502\u0503\7c\2\2"+ + "\u0503\u054a\7z\2\2\u0504\u0505\7v\2\2\u0505\u0506\7c\2\2\u0506\u054a"+ + "\7{\2\2\u0507\u0508\7v\2\2\u0508\u0509\7c\2\2\u0509\u054a\7z\2\2\u050a"+ + "\u050b\7d\2\2\u050b\u050c\7e\2\2\u050c\u054a\7u\2\2\u050d\u050e\7e\2\2"+ + "\u050e\u050f\7n\2\2\u050f\u054a\7x\2\2\u0510\u0511\7v\2\2\u0511\u0512"+ + "\7u\2\2\u0512\u054a\7z\2\2\u0513\u0514\7n\2\2\u0514\u0515\7c\2\2\u0515"+ + "\u054a\7u\2\2\u0516\u0517\7e\2\2\u0517\u0518\7r\2\2\u0518\u054a\7{\2\2"+ + "\u0519\u051a\7e\2\2\u051a\u051b\7o\2\2\u051b\u054a\7r\2\2\u051c\u051d"+ + "\7e\2\2\u051d\u051e\7r\2\2\u051e\u054a\7z\2\2\u051f\u0520\7f\2\2\u0520"+ + "\u0521\7e\2\2\u0521\u054a\7r\2\2\u0522\u0523\7f\2\2\u0523\u0524\7g\2\2"+ + "\u0524\u054a\7e\2\2\u0525\u0526\7k\2\2\u0526\u0527\7p\2\2\u0527\u054a"+ + "\7e\2\2\u0528\u0529\7c\2\2\u0529\u052a\7z\2\2\u052a\u054a\7u\2\2\u052b"+ + "\u052c\7d\2\2\u052c\u052d\7p\2\2\u052d\u054a\7g\2\2\u052e\u052f\7e\2\2"+ + "\u052f\u0530\7n\2\2\u0530\u054a\7f\2\2\u0531\u0532\7u\2\2\u0532\u0533"+ + "\7d\2\2\u0533\u054a\7e\2\2\u0534\u0535\7k\2\2\u0535\u0536\7u\2\2\u0536"+ + "\u054a\7e\2\2\u0537\u0538\7k\2\2\u0538\u0539\7p\2\2\u0539\u054a\7z\2\2"+ + "\u053a\u053b\7d\2\2\u053b\u053c\7g\2\2\u053c\u054a\7s\2\2\u053d\u053e"+ + "\7u\2\2\u053e\u053f\7g\2\2\u053f\u054a\7f\2\2\u0540\u0541\7f\2\2\u0541"+ + "\u0542\7g\2\2\u0542\u054a\7z\2\2\u0543\u0544\7k\2\2\u0544\u0545\7p\2\2"+ + "\u0545\u054a\7{\2\2\u0546\u0547\7t\2\2\u0547\u0548\7q\2\2\u0548\u054a"+ + "\7t\2\2\u0549\u046b\3\2\2\2\u0549\u046e\3\2\2\2\u0549\u0471\3\2\2\2\u0549"+ + "\u0474\3\2\2\2\u0549\u0477\3\2\2\2\u0549\u047a\3\2\2\2\u0549\u047d\3\2"+ + "\2\2\u0549\u0480\3\2\2\2\u0549\u0483\3\2\2\2\u0549\u0486\3\2\2\2\u0549"+ + "\u0489\3\2\2\2\u0549\u048c\3\2\2\2\u0549\u048f\3\2\2\2\u0549\u0492\3\2"+ + "\2\2\u0549\u0495\3\2\2\2\u0549\u0498\3\2\2\2\u0549\u049b\3\2\2\2\u0549"+ + "\u049e\3\2\2\2\u0549\u04a1\3\2\2\2\u0549\u04a4\3\2\2\2\u0549\u04a7\3\2"+ + "\2\2\u0549\u04aa\3\2\2\2\u0549\u04ad\3\2\2\2\u0549\u04b0\3\2\2\2\u0549"+ + "\u04b3\3\2\2\2\u0549\u04b6\3\2\2\2\u0549\u04b9\3\2\2\2\u0549\u04bc\3\2"+ + "\2\2\u0549\u04bf\3\2\2\2\u0549\u04c2\3\2\2\2\u0549\u04c5\3\2\2\2\u0549"+ + "\u04c8\3\2\2\2\u0549\u04cb\3\2\2\2\u0549\u04ce\3\2\2\2\u0549\u04d1\3\2"+ + "\2\2\u0549\u04d4\3\2\2\2\u0549\u04d7\3\2\2\2\u0549\u04da\3\2\2\2\u0549"+ + "\u04dd\3\2\2\2\u0549\u04e0\3\2\2\2\u0549\u04e3\3\2\2\2\u0549\u04e6\3\2"+ + "\2\2\u0549\u04e9\3\2\2\2\u0549\u04ec\3\2\2\2\u0549\u04ef\3\2\2\2\u0549"+ + "\u04f2\3\2\2\2\u0549\u04f5\3\2\2\2\u0549\u04f8\3\2\2\2\u0549\u04fb\3\2"+ + "\2\2\u0549\u04fe\3\2\2\2\u0549\u0501\3\2\2\2\u0549\u0504\3\2\2\2\u0549"+ + "\u0507\3\2\2\2\u0549\u050a\3\2\2\2\u0549\u050d\3\2\2\2\u0549\u0510\3\2"+ + "\2\2\u0549\u0513\3\2\2\2\u0549\u0516\3\2\2\2\u0549\u0519\3\2\2\2\u0549"+ + "\u051c\3\2\2\2\u0549\u051f\3\2\2\2\u0549\u0522\3\2\2\2\u0549\u0525\3\2"+ + "\2\2\u0549\u0528\3\2\2\2\u0549\u052b\3\2\2\2\u0549\u052e\3\2\2\2\u0549"+ + "\u0531\3\2\2\2\u0549\u0534\3\2\2\2\u0549\u0537\3\2\2\2\u0549\u053a\3\2"+ + "\2\2\u0549\u053d\3\2\2\2\u0549\u0540\3\2\2\2\u0549\u0543\3\2\2\2\u0549"+ + "\u0546\3\2\2\2\u054a\u00f9\3\2\2\2\u054b\u054c\7%\2\2\u054c\u00fb\3\2"+ + "\2\2\u054d\u054e\7<\2\2\u054e\u00fd\3\2\2\2\u054f\u0550\7.\2\2\u0550\u00ff"+ + "\3\2\2\2\u0551\u0552\7*\2\2\u0552\u0101\3\2\2\2\u0553\u0554\7+\2\2\u0554"+ + "\u0103\3\2\2\2\u0555\u0556\7]\2\2\u0556\u0105\3\2\2\2\u0557\u0558\7_\2"+ + "\2\u0558\u0107\3\2\2\2\u0559\u055a\7\60\2\2\u055a\u0109\3\2\2\2\u055b"+ + "\u055c\7>\2\2\u055c\u055d\7>\2\2\u055d\u010b\3\2\2\2\u055e\u055f\7@\2"+ + "\2\u055f\u0560\7@\2\2\u0560\u010d\3\2\2\2\u0561\u0562\7-\2\2\u0562\u010f"+ + "\3\2\2\2\u0563\u0564\7/\2\2\u0564\u0111\3\2\2\2\u0565\u0566\7>\2\2\u0566"+ + "\u0113\3\2\2\2\u0567\u0568\7@\2\2\u0568\u0115\3\2\2\2\u0569\u056a\7,\2"+ + "\2\u056a\u0117\3\2\2\2\u056b\u056c\7\61\2\2\u056c\u0119\3\2\2\2\u056d"+ + "\u056e\7}\2\2\u056e\u056f\b\u008d\t\2\u056f\u011b\3\2\2\2\u0570\u0571"+ + "\7\177\2\2\u0571\u0572\b\u008e\n\2\u0572\u011d\3\2\2\2\u0573\u0576\5\u0120"+ + "\u0090\2\u0574\u0576\5\u0128\u0094\2\u0575\u0573\3\2\2\2\u0575\u0574\3"+ + "\2\2\2\u0576\u011f\3\2\2\2\u0577\u057b\5\u0122\u0091\2\u0578\u057b\5\u0124"+ + "\u0092\2\u0579\u057b\5\u0126\u0093\2\u057a\u0577\3\2\2\2\u057a\u0578\3"+ + "\2\2\2\u057a\u0579\3\2\2\2\u057b\u0121\3\2\2\2\u057c\u0580\7\'\2\2\u057d"+ + "\u057f\5\u0130\u0098\2\u057e\u057d\3\2\2\2\u057f\u0582\3\2\2\2\u0580\u057e"+ + "\3\2\2\2\u0580\u0581\3\2\2\2\u0581\u0583\3\2\2\2\u0582\u0580\3\2\2\2\u0583"+ + "\u0585\7\60\2\2\u0584\u0586\5\u0130\u0098\2\u0585\u0584\3\2\2\2\u0586"+ + "\u0587\3\2\2\2\u0587\u0585\3\2\2\2\u0587\u0588\3\2\2\2\u0588\u0123\3\2"+ + "\2\2\u0589\u058b\5\u0132\u0099\2\u058a\u0589\3\2\2\2\u058b\u058e\3\2\2"+ + "\2\u058c\u058a\3\2\2\2\u058c\u058d\3\2\2\2\u058d\u058f\3\2\2\2\u058e\u058c"+ + "\3\2\2\2\u058f\u0591\7\60\2\2\u0590\u0592\5\u0132\u0099\2\u0591\u0590"+ + "\3\2\2\2\u0592\u0593\3\2\2\2\u0593\u0591\3\2\2\2\u0593\u0594\3\2\2\2\u0594"+ + "\u0125\3\2\2\2\u0595\u0599\7&\2\2\u0596\u0598\5\u0134\u009a\2\u0597\u0596"+ + "\3\2\2\2\u0598\u059b\3\2\2\2\u0599\u0597\3\2\2\2\u0599\u059a\3\2\2\2\u059a"+ + "\u059c\3\2\2\2\u059b\u0599\3\2\2\2\u059c\u059e\7\60\2\2\u059d\u059f\5"+ + "\u0134\u009a\2\u059e\u059d\3\2\2\2\u059f\u05a0\3\2\2\2\u05a0\u059e\3\2"+ + "\2\2\u05a0\u05a1\3\2\2\2\u05a1\u0127\3\2\2\2\u05a2\u05a6\5\u012c\u0096"+ + "\2\u05a3\u05a6\5\u012e\u0097\2\u05a4\u05a6\5\u012a\u0095\2\u05a5\u05a2"+ + "\3\2\2\2\u05a5\u05a3\3\2\2\2\u05a5\u05a4\3\2\2\2\u05a6\u0129\3\2\2\2\u05a7"+ + "\u05a9\7\'\2\2\u05a8\u05aa\5\u0130\u0098\2\u05a9\u05a8\3\2\2\2\u05aa\u05ab"+ + "\3\2\2\2\u05ab\u05a9\3\2\2\2\u05ab\u05ac\3\2\2\2\u05ac\u012b\3\2\2\2\u05ad"+ + "\u05af\5\u0132\u0099\2\u05ae\u05ad\3\2\2\2\u05af\u05b0\3\2\2\2\u05b0\u05ae"+ + "\3\2\2\2\u05b0\u05b1\3\2\2\2\u05b1\u012d\3\2\2\2\u05b2\u05b4\7&\2\2\u05b3"+ + "\u05b5\5\u0134\u009a\2\u05b4\u05b3\3\2\2\2\u05b5\u05b6\3\2\2\2\u05b6\u05b4"+ + "\3\2\2\2\u05b6\u05b7\3\2\2\2\u05b7\u012f\3\2\2\2\u05b8\u05b9\t\13\2\2"+ + "\u05b9\u0131\3\2\2\2\u05ba\u05bb\t\f\2\2\u05bb\u0133\3\2\2\2\u05bc\u05bd"+ + "\t\r\2\2\u05bd\u0135\3\2\2\2\u05be\u05c2\7)\2\2\u05bf\u05c0\7^\2\2\u05c0"+ + "\u05c3\t\6\2\2\u05c1\u05c3\n\7\2\2\u05c2\u05bf\3\2\2\2\u05c2\u05c1\3\2"+ + "\2\2\u05c3\u05c4\3\2\2\2\u05c4\u05c5\7)\2\2\u05c5\u0137\3\2\2\2\u05c6"+ + "\u05c8\5\u013a\u009d\2\u05c7\u05c9\t\22\2\2\u05c8\u05c7\3\2\2\2\u05c9"+ + "\u05ca\3\2\2\2\u05ca\u05c8\3\2\2\2\u05ca\u05cb\3\2\2\2\u05cb\u0139\3\2"+ + "\2\2\u05cc\u05d0\7#\2\2\u05cd\u05cf\5\u0140\u00a0\2\u05ce\u05cd\3\2\2"+ + "\2\u05cf\u05d2\3\2\2\2\u05d0\u05ce\3\2\2\2\u05d0\u05d1\3\2\2\2\u05d1\u013b"+ + "\3\2\2\2\u05d2\u05d0\3\2\2\2\u05d3\u05d7\5\u013e\u009f\2\u05d4\u05d6\5"+ + "\u0140\u00a0\2\u05d5\u05d4\3\2\2\2\u05d6\u05d9\3\2\2\2\u05d7\u05d5\3\2"+ + "\2\2\u05d7\u05d8\3\2\2\2\u05d8\u013d\3\2\2\2\u05d9\u05d7\3\2\2\2\u05da"+ + "\u05db\t\16\2\2\u05db\u013f\3\2\2\2\u05dc\u05dd\t\17\2\2\u05dd\u0141\3"+ + "\2\2\2\u05de\u05e0\t\20\2\2\u05df\u05de\3\2\2\2\u05e0\u05e1\3\2\2\2\u05e1"+ + "\u05df\3\2\2\2\u05e1\u05e2\3\2\2\2\u05e2\u05e3\3\2\2\2\u05e3\u05e4\b\u00a1"+ + "\7\2\u05e4\u0143\3\2\2\2\u05e5\u05e6\7\61\2\2\u05e6\u05e7\7\61\2\2\u05e7"+ + "\u05eb\3\2\2\2\u05e8\u05ea\n\21\2\2\u05e9\u05e8\3\2\2\2\u05ea\u05ed\3"+ + "\2\2\2\u05eb\u05e9\3\2\2\2\u05eb\u05ec\3\2\2\2\u05ec\u05ee\3\2\2\2\u05ed"+ + "\u05eb\3\2\2\2\u05ee\u05ef\b\u00a2\b\2\u05ef\u0145\3\2\2\2\u05f0\u05f1"+ + "\7\61\2\2\u05f1\u05f2\7,\2\2\u05f2\u05f6\3\2\2\2\u05f3\u05f5\13\2\2\2"+ + "\u05f4\u05f3\3\2\2\2\u05f5\u05f8\3\2\2\2\u05f6\u05f7\3\2\2\2\u05f6\u05f4"+ + "\3\2\2\2\u05f7\u05f9\3\2\2\2\u05f8\u05f6\3\2\2\2\u05f9\u05fa\7,\2\2\u05fa"+ + "\u05fb\7\61\2\2\u05fb\u05fc\3\2\2\2\u05fc\u05fd\b\u00a3\b\2\u05fd\u0147"+ + "\3\2\2\2<\2\3\u01b1\u0282\u0331\u0358\u0363\u036b\u0375\u0377\u037c\u0380"+ + "\u0382\u0385\u038d\u039e\u03cf\u03d4\u03db\u03e0\u03e7\u03ec\u03f3\u03fa"+ + "\u03ff\u0406\u040b\u0410\u0417\u041d\u041f\u0424\u042b\u0430\u043c\u0448"+ + "\u0452\u045d\u0549\u0575\u057a\u0580\u0587\u058c\u0593\u0599\u05a0\u05a5"+ + "\u05ab\u05b0\u05b6\u05c2\u05ca\u05d0\u05d7\u05e1\u05eb\u05f6\13\3\2\2"+ + "\3&\3\3K\4\3^\5\3u\6\2\3\2\2\4\2\3\u008d\7\3\u008e\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 5570de9e4..1c26a4734 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -79,75 +79,78 @@ 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 -UNDEF=97 -IFDEF=98 -IFNDEF=99 -IFELSE=100 -ENDIF=101 -NUMBER=102 -NUMFLOAT=103 -BINFLOAT=104 -DECFLOAT=105 -HEXFLOAT=106 -NUMINT=107 -BININTEGER=108 -DECINTEGER=109 -HEXINTEGER=110 -NAME=111 -WS=112 -COMMENT_LINE=113 -COMMENT_BLOCK=114 -ASM_BYTE=115 -ASM_MNEMONIC=116 -ASM_IMM=117 -ASM_COLON=118 -ASM_COMMA=119 -ASM_PAR_BEGIN=120 -ASM_PAR_END=121 -ASM_BRACKET_BEGIN=122 -ASM_BRACKET_END=123 -ASM_DOT=124 -ASM_SHIFT_LEFT=125 -ASM_SHIFT_RIGHT=126 -ASM_PLUS=127 -ASM_MINUS=128 -ASM_LESS_THAN=129 -ASM_GREATER_THAN=130 -ASM_MULTIPLY=131 -ASM_DIVIDE=132 -ASM_CURLY_BEGIN=133 -ASM_CURLY_END=134 -ASM_NUMBER=135 -ASM_NUMFLOAT=136 -ASM_BINFLOAT=137 -ASM_DECFLOAT=138 -ASM_HEXFLOAT=139 -ASM_NUMINT=140 -ASM_BININTEGER=141 -ASM_DECINTEGER=142 -ASM_HEXINTEGER=143 -ASM_CHAR=144 -ASM_MULTI_REL=145 -ASM_MULTI_NAME=146 -ASM_NAME=147 -ASM_WS=148 -ASM_COMMENT_LINE=149 -ASM_COMMENT_BLOCK=150 +DEFINED=82 +KICKASM=83 +RESOURCE=84 +USES=85 +CLOBBERS=86 +BYTES=87 +CYCLES=88 +LOGIC_NOT=89 +SIGNEDNESS=90 +SIMPLETYPE=91 +BOOLEAN=92 +KICKASM_BODY=93 +STRING=94 +CHAR=95 +DEFINE=96 +DEFINE_CONTINUE=97 +UNDEF=98 +IFDEF=99 +IFNDEF=100 +IFIF=101 +ELIF=102 +IFELSE=103 +ENDIF=104 +NUMBER=105 +NUMFLOAT=106 +BINFLOAT=107 +DECFLOAT=108 +HEXFLOAT=109 +NUMINT=110 +BININTEGER=111 +DECINTEGER=112 +HEXINTEGER=113 +NAME=114 +WS=115 +COMMENT_LINE=116 +COMMENT_BLOCK=117 +ASM_BYTE=118 +ASM_MNEMONIC=119 +ASM_IMM=120 +ASM_COLON=121 +ASM_COMMA=122 +ASM_PAR_BEGIN=123 +ASM_PAR_END=124 +ASM_BRACKET_BEGIN=125 +ASM_BRACKET_END=126 +ASM_DOT=127 +ASM_SHIFT_LEFT=128 +ASM_SHIFT_RIGHT=129 +ASM_PLUS=130 +ASM_MINUS=131 +ASM_LESS_THAN=132 +ASM_GREATER_THAN=133 +ASM_MULTIPLY=134 +ASM_DIVIDE=135 +ASM_CURLY_BEGIN=136 +ASM_CURLY_END=137 +ASM_NUMBER=138 +ASM_NUMFLOAT=139 +ASM_BINFLOAT=140 +ASM_DECFLOAT=141 +ASM_HEXFLOAT=142 +ASM_NUMINT=143 +ASM_BININTEGER=144 +ASM_DECINTEGER=145 +ASM_HEXINTEGER=146 +ASM_CHAR=147 +ASM_MULTI_REL=148 +ASM_MULTI_NAME=149 +ASM_NAME=150 +ASM_WS=151 +ASM_COMMENT_LINE=152 +ASM_COMMENT_BLOCK=153 ';'=8 '..'=11 '?'=12 @@ -209,19 +212,21 @@ ASM_COMMENT_BLOCK=150 'enum'=79 'sizeof'=80 'typeid'=81 -'kickasm'=82 -'resource'=83 -'uses'=84 -'clobbers'=85 -'bytes'=86 -'cycles'=87 -'!'=88 -'#define'=95 -'\\\n'=96 -'#undef'=97 -'#ifdef'=98 -'#ifndef'=99 -'#else'=100 -'#endif'=101 -'.byte'=115 -'#'=117 +'defined'=82 +'kickasm'=83 +'resource'=84 +'uses'=85 +'clobbers'=86 +'bytes'=87 +'cycles'=88 +'!'=89 +'#define'=96 +'#undef'=98 +'#ifdef'=99 +'#ifndef'=100 +'#if'=101 +'#elif'=102 +'#else'=103 +'#endif'=104 +'.byte'=118 +'#'=120 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index b5b594ba3..bb47666f3 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -220,6 +220,7 @@ expr | expr PAR_BEGIN parameterList? PAR_END #exprCall | SIZEOF PAR_BEGIN ( expr | typeSpecifier ) PAR_END #exprSizeOf | TYPEID PAR_BEGIN ( expr | typeSpecifier ) PAR_END #exprTypeId + | DEFINED PAR_BEGIN? NAME PAR_END? #exprDefined | expr BRACKET_BEGIN commaExpr BRACKET_END #exprArray | PAR_BEGIN typeSpecifier PAR_END expr #exprCast | ('--' | '++' ) expr #exprPreMod diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp index 0cacbc417..f26d714f2 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp @@ -81,6 +81,7 @@ null 'enum' 'sizeof' 'typeid' +'defined' 'kickasm' 'resource' 'uses' @@ -95,10 +96,12 @@ null null null '#define' -'\\\n' +null '#undef' '#ifdef' '#ifndef' +'#if' +'#elif' '#else' '#endif' null @@ -234,6 +237,7 @@ STRUCT ENUM SIZEOF TYPEID +DEFINED KICKASM RESOURCE USES @@ -252,6 +256,8 @@ DEFINE_CONTINUE UNDEF IFDEF IFNDEF +IFIF +ELIF IFELSE ENDIF NUMBER @@ -354,4 +360,4 @@ asmExpr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 152, 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, 129, 132, 3, 2, 127, 128, 3, 2, 133, 134, 3, 2, 129, 130, 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, 113, 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, 113, 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, 113, 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, 113, 2, 2, 270, 33, 3, 2, 2, 2, 271, 273, 7, 80, 2, 2, 272, 274, 7, 113, 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, 113, 2, 2, 288, 39, 3, 2, 2, 2, 289, 291, 7, 81, 2, 2, 290, 292, 7, 113, 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, 113, 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, 113, 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, 113, 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, 104, 2, 2, 357, 358, 7, 12, 2, 2, 358, 360, 7, 104, 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, 104, 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, 113, 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, 113, 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, 113, 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, 113, 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, 113, 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, 113, 2, 2, 418, 419, 7, 12, 2, 2, 419, 421, 7, 113, 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, 104, 2, 2, 432, 471, 7, 9, 2, 2, 433, 437, 7, 59, 2, 2, 434, 435, 7, 8, 2, 2, 435, 436, 7, 113, 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, 104, 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, 113, 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, 104, 2, 2, 461, 462, 7, 12, 2, 2, 462, 464, 7, 104, 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, 136, 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, 113, 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, 113, 2, 2, 668, 677, 7, 104, 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, 113, 2, 2, 720, 721, 12, 31, 2, 2, 721, 722, 7, 16, 2, 2, 722, 737, 7, 113, 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, 113, 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, 149, 2, 2, 795, 799, 7, 120, 2, 2, 796, 797, 7, 148, 2, 2, 797, 799, 7, 120, 2, 2, 798, 794, 3, 2, 2, 2, 798, 796, 3, 2, 2, 2, 799, 85, 3, 2, 2, 2, 800, 802, 7, 118, 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, 117, 2, 2, 805, 810, 5, 92, 47, 2, 806, 807, 7, 121, 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, 119, 2, 2, 815, 837, 5, 92, 47, 2, 816, 817, 5, 92, 47, 2, 817, 818, 7, 121, 2, 2, 818, 819, 7, 149, 2, 2, 819, 837, 3, 2, 2, 2, 820, 821, 7, 122, 2, 2, 821, 822, 5, 92, 47, 2, 822, 823, 7, 123, 2, 2, 823, 824, 7, 121, 2, 2, 824, 825, 7, 149, 2, 2, 825, 837, 3, 2, 2, 2, 826, 827, 7, 122, 2, 2, 827, 828, 5, 92, 47, 2, 828, 829, 7, 121, 2, 2, 829, 830, 7, 149, 2, 2, 830, 831, 7, 123, 2, 2, 831, 837, 3, 2, 2, 2, 832, 833, 7, 122, 2, 2, 833, 834, 5, 92, 47, 2, 834, 835, 7, 123, 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, 124, 2, 2, 840, 841, 5, 92, 47, 2, 841, 842, 7, 125, 2, 2, 842, 853, 3, 2, 2, 2, 843, 844, 9, 9, 2, 2, 844, 853, 5, 92, 47, 10, 845, 853, 7, 149, 2, 2, 846, 853, 7, 147, 2, 2, 847, 848, 7, 135, 2, 2, 848, 849, 7, 149, 2, 2, 849, 853, 7, 136, 2, 2, 850, 853, 7, 137, 2, 2, 851, 853, 7, 146, 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, 126, 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, 155, 880, 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, 5, 36, 646, 10, 36, 3, 36, 3, 36, 5, 36, 650, 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, 7, 36, 669, 10, 36, 12, 36, 14, 36, 672, 11, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 6, 36, 679, 10, 36, 13, 36, 14, 36, 680, 3, 36, 3, 36, 5, 36, 685, 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, 735, 10, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 745, 10, 36, 12, 36, 14, 36, 748, 11, 36, 3, 37, 3, 37, 3, 37, 7, 37, 753, 10, 37, 12, 37, 14, 37, 756, 11, 37, 3, 38, 3, 38, 5, 38, 760, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 768, 10, 39, 12, 39, 14, 39, 771, 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, 788, 10, 40, 5, 40, 790, 10, 40, 3, 41, 7, 41, 793, 10, 41, 12, 41, 14, 41, 796, 11, 41, 3, 42, 3, 42, 3, 42, 5, 42, 801, 10, 42, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 807, 10, 43, 3, 44, 3, 44, 5, 44, 811, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 817, 10, 45, 12, 45, 14, 45, 820, 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, 845, 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, 861, 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, 875, 10, 47, 12, 47, 14, 47, 878, 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, 91, 91, 4, 2, 32, 32, 35, 35, 3, 2, 28, 29, 3, 2, 19, 21, 3, 2, 17, 18, 3, 2, 30, 35, 3, 2, 132, 135, 3, 2, 130, 131, 3, 2, 136, 137, 3, 2, 132, 133, 2, 1007, 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, 684, 3, 2, 2, 2, 72, 749, 3, 2, 2, 2, 74, 757, 3, 2, 2, 2, 76, 763, 3, 2, 2, 2, 78, 789, 3, 2, 2, 2, 80, 794, 3, 2, 2, 2, 82, 800, 3, 2, 2, 2, 84, 806, 3, 2, 2, 2, 86, 808, 3, 2, 2, 2, 88, 812, 3, 2, 2, 2, 90, 844, 3, 2, 2, 2, 92, 860, 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, 96, 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, 116, 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, 116, 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, 116, 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, 93, 2, 2, 243, 245, 7, 92, 2, 2, 244, 246, 7, 93, 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, 116, 2, 2, 270, 33, 3, 2, 2, 2, 271, 273, 7, 80, 2, 2, 272, 274, 7, 116, 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, 116, 2, 2, 288, 39, 3, 2, 2, 2, 289, 291, 7, 81, 2, 2, 290, 292, 7, 116, 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, 116, 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, 116, 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, 116, 2, 2, 348, 351, 3, 2, 2, 2, 349, 351, 7, 93, 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, 107, 2, 2, 357, 358, 7, 12, 2, 2, 358, 360, 7, 107, 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, 107, 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, 116, 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, 116, 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, 96, 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, 116, 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, 116, 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, 116, 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, 116, 2, 2, 418, 419, 7, 12, 2, 2, 419, 421, 7, 116, 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, 107, 2, 2, 432, 471, 7, 9, 2, 2, 433, 437, 7, 59, 2, 2, 434, 435, 7, 8, 2, 2, 435, 436, 7, 116, 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, 107, 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, 116, 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, 107, 2, 2, 461, 462, 7, 12, 2, 2, 462, 464, 7, 107, 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, 139, 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, 116, 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, 685, 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, 685, 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, 685, 3, 2, 2, 2, 643, 645, 7, 84, 2, 2, 644, 646, 7, 8, 2, 2, 645, 644, 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 649, 7, 116, 2, 2, 648, 650, 7, 9, 2, 2, 649, 648, 3, 2, 2, 2, 649, 650, 3, 2, 2, 2, 650, 685, 3, 2, 2, 2, 651, 652, 7, 8, 2, 2, 652, 653, 5, 28, 15, 2, 653, 654, 7, 9, 2, 2, 654, 655, 5, 70, 36, 26, 655, 685, 3, 2, 2, 2, 656, 657, 9, 2, 2, 2, 657, 685, 5, 70, 36, 25, 658, 659, 7, 19, 2, 2, 659, 685, 5, 70, 36, 23, 660, 661, 9, 3, 2, 2, 661, 685, 5, 70, 36, 22, 662, 663, 9, 4, 2, 2, 663, 685, 5, 70, 36, 18, 664, 665, 7, 4, 2, 2, 665, 670, 5, 70, 36, 2, 666, 667, 7, 12, 2, 2, 667, 669, 5, 70, 36, 2, 668, 666, 3, 2, 2, 2, 669, 672, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, 673, 3, 2, 2, 2, 672, 670, 3, 2, 2, 2, 673, 674, 7, 5, 2, 2, 674, 685, 3, 2, 2, 2, 675, 685, 7, 116, 2, 2, 676, 685, 7, 107, 2, 2, 677, 679, 7, 96, 2, 2, 678, 677, 3, 2, 2, 2, 679, 680, 3, 2, 2, 2, 680, 678, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 685, 3, 2, 2, 2, 682, 685, 7, 97, 2, 2, 683, 685, 7, 94, 2, 2, 684, 622, 3, 2, 2, 2, 684, 627, 3, 2, 2, 2, 684, 635, 3, 2, 2, 2, 684, 643, 3, 2, 2, 2, 684, 651, 3, 2, 2, 2, 684, 656, 3, 2, 2, 2, 684, 658, 3, 2, 2, 2, 684, 660, 3, 2, 2, 2, 684, 662, 3, 2, 2, 2, 684, 664, 3, 2, 2, 2, 684, 675, 3, 2, 2, 2, 684, 676, 3, 2, 2, 2, 684, 678, 3, 2, 2, 2, 684, 682, 3, 2, 2, 2, 684, 683, 3, 2, 2, 2, 685, 746, 3, 2, 2, 2, 686, 687, 12, 21, 2, 2, 687, 688, 9, 5, 2, 2, 688, 745, 5, 70, 36, 22, 689, 690, 12, 20, 2, 2, 690, 691, 9, 6, 2, 2, 691, 745, 5, 70, 36, 21, 692, 693, 12, 19, 2, 2, 693, 694, 9, 7, 2, 2, 694, 745, 5, 70, 36, 20, 695, 696, 12, 17, 2, 2, 696, 697, 9, 8, 2, 2, 697, 745, 5, 70, 36, 18, 698, 699, 12, 16, 2, 2, 699, 700, 7, 24, 2, 2, 700, 745, 5, 70, 36, 17, 701, 702, 12, 15, 2, 2, 702, 703, 7, 26, 2, 2, 703, 745, 5, 70, 36, 16, 704, 705, 12, 14, 2, 2, 705, 706, 7, 27, 2, 2, 706, 745, 5, 70, 36, 15, 707, 708, 12, 13, 2, 2, 708, 709, 7, 36, 2, 2, 709, 745, 5, 70, 36, 14, 710, 711, 12, 12, 2, 2, 711, 712, 7, 37, 2, 2, 712, 745, 5, 70, 36, 13, 713, 714, 12, 11, 2, 2, 714, 715, 7, 14, 2, 2, 715, 716, 5, 70, 36, 2, 716, 717, 7, 11, 2, 2, 717, 718, 5, 70, 36, 12, 718, 745, 3, 2, 2, 2, 719, 720, 12, 10, 2, 2, 720, 721, 7, 38, 2, 2, 721, 745, 5, 70, 36, 10, 722, 723, 12, 9, 2, 2, 723, 724, 7, 39, 2, 2, 724, 745, 5, 70, 36, 9, 725, 726, 12, 33, 2, 2, 726, 727, 7, 15, 2, 2, 727, 745, 7, 116, 2, 2, 728, 729, 12, 32, 2, 2, 729, 730, 7, 16, 2, 2, 730, 745, 7, 116, 2, 2, 731, 732, 12, 31, 2, 2, 732, 734, 7, 8, 2, 2, 733, 735, 5, 72, 37, 2, 734, 733, 3, 2, 2, 2, 734, 735, 3, 2, 2, 2, 735, 736, 3, 2, 2, 2, 736, 745, 7, 9, 2, 2, 737, 738, 12, 27, 2, 2, 738, 739, 7, 6, 2, 2, 739, 740, 5, 68, 35, 2, 740, 741, 7, 7, 2, 2, 741, 745, 3, 2, 2, 2, 742, 743, 12, 24, 2, 2, 743, 745, 9, 2, 2, 2, 744, 686, 3, 2, 2, 2, 744, 689, 3, 2, 2, 2, 744, 692, 3, 2, 2, 2, 744, 695, 3, 2, 2, 2, 744, 698, 3, 2, 2, 2, 744, 701, 3, 2, 2, 2, 744, 704, 3, 2, 2, 2, 744, 707, 3, 2, 2, 2, 744, 710, 3, 2, 2, 2, 744, 713, 3, 2, 2, 2, 744, 719, 3, 2, 2, 2, 744, 722, 3, 2, 2, 2, 744, 725, 3, 2, 2, 2, 744, 728, 3, 2, 2, 2, 744, 731, 3, 2, 2, 2, 744, 737, 3, 2, 2, 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, 71, 3, 2, 2, 2, 748, 746, 3, 2, 2, 2, 749, 754, 5, 70, 36, 2, 750, 751, 7, 12, 2, 2, 751, 753, 5, 70, 36, 2, 752, 750, 3, 2, 2, 2, 753, 756, 3, 2, 2, 2, 754, 752, 3, 2, 2, 2, 754, 755, 3, 2, 2, 2, 755, 73, 3, 2, 2, 2, 756, 754, 3, 2, 2, 2, 757, 759, 7, 85, 2, 2, 758, 760, 5, 76, 39, 2, 759, 758, 3, 2, 2, 2, 759, 760, 3, 2, 2, 2, 760, 761, 3, 2, 2, 2, 761, 762, 7, 95, 2, 2, 762, 75, 3, 2, 2, 2, 763, 764, 7, 8, 2, 2, 764, 769, 5, 78, 40, 2, 765, 766, 7, 12, 2, 2, 766, 768, 5, 78, 40, 2, 767, 765, 3, 2, 2, 2, 768, 771, 3, 2, 2, 2, 769, 767, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 772, 3, 2, 2, 2, 771, 769, 3, 2, 2, 2, 772, 773, 7, 9, 2, 2, 773, 77, 3, 2, 2, 2, 774, 775, 7, 86, 2, 2, 775, 790, 7, 96, 2, 2, 776, 777, 7, 87, 2, 2, 777, 790, 7, 116, 2, 2, 778, 779, 7, 88, 2, 2, 779, 790, 7, 96, 2, 2, 780, 781, 7, 89, 2, 2, 781, 790, 5, 70, 36, 2, 782, 783, 7, 90, 2, 2, 783, 790, 5, 70, 36, 2, 784, 787, 7, 44, 2, 2, 785, 788, 7, 55, 2, 2, 786, 788, 5, 70, 36, 2, 787, 785, 3, 2, 2, 2, 787, 786, 3, 2, 2, 2, 788, 790, 3, 2, 2, 2, 789, 774, 3, 2, 2, 2, 789, 776, 3, 2, 2, 2, 789, 778, 3, 2, 2, 2, 789, 780, 3, 2, 2, 2, 789, 782, 3, 2, 2, 2, 789, 784, 3, 2, 2, 2, 790, 79, 3, 2, 2, 2, 791, 793, 5, 82, 42, 2, 792, 791, 3, 2, 2, 2, 793, 796, 3, 2, 2, 2, 794, 792, 3, 2, 2, 2, 794, 795, 3, 2, 2, 2, 795, 81, 3, 2, 2, 2, 796, 794, 3, 2, 2, 2, 797, 801, 5, 84, 43, 2, 798, 801, 5, 86, 44, 2, 799, 801, 5, 88, 45, 2, 800, 797, 3, 2, 2, 2, 800, 798, 3, 2, 2, 2, 800, 799, 3, 2, 2, 2, 801, 83, 3, 2, 2, 2, 802, 803, 7, 152, 2, 2, 803, 807, 7, 123, 2, 2, 804, 805, 7, 151, 2, 2, 805, 807, 7, 123, 2, 2, 806, 802, 3, 2, 2, 2, 806, 804, 3, 2, 2, 2, 807, 85, 3, 2, 2, 2, 808, 810, 7, 121, 2, 2, 809, 811, 5, 90, 46, 2, 810, 809, 3, 2, 2, 2, 810, 811, 3, 2, 2, 2, 811, 87, 3, 2, 2, 2, 812, 813, 7, 120, 2, 2, 813, 818, 5, 92, 47, 2, 814, 815, 7, 124, 2, 2, 815, 817, 5, 92, 47, 2, 816, 814, 3, 2, 2, 2, 817, 820, 3, 2, 2, 2, 818, 816, 3, 2, 2, 2, 818, 819, 3, 2, 2, 2, 819, 89, 3, 2, 2, 2, 820, 818, 3, 2, 2, 2, 821, 845, 5, 92, 47, 2, 822, 823, 7, 122, 2, 2, 823, 845, 5, 92, 47, 2, 824, 825, 5, 92, 47, 2, 825, 826, 7, 124, 2, 2, 826, 827, 7, 152, 2, 2, 827, 845, 3, 2, 2, 2, 828, 829, 7, 125, 2, 2, 829, 830, 5, 92, 47, 2, 830, 831, 7, 126, 2, 2, 831, 832, 7, 124, 2, 2, 832, 833, 7, 152, 2, 2, 833, 845, 3, 2, 2, 2, 834, 835, 7, 125, 2, 2, 835, 836, 5, 92, 47, 2, 836, 837, 7, 124, 2, 2, 837, 838, 7, 152, 2, 2, 838, 839, 7, 126, 2, 2, 839, 845, 3, 2, 2, 2, 840, 841, 7, 125, 2, 2, 841, 842, 5, 92, 47, 2, 842, 843, 7, 126, 2, 2, 843, 845, 3, 2, 2, 2, 844, 821, 3, 2, 2, 2, 844, 822, 3, 2, 2, 2, 844, 824, 3, 2, 2, 2, 844, 828, 3, 2, 2, 2, 844, 834, 3, 2, 2, 2, 844, 840, 3, 2, 2, 2, 845, 91, 3, 2, 2, 2, 846, 847, 8, 47, 1, 2, 847, 848, 7, 127, 2, 2, 848, 849, 5, 92, 47, 2, 849, 850, 7, 128, 2, 2, 850, 861, 3, 2, 2, 2, 851, 852, 9, 9, 2, 2, 852, 861, 5, 92, 47, 10, 853, 861, 7, 152, 2, 2, 854, 861, 7, 150, 2, 2, 855, 856, 7, 138, 2, 2, 856, 857, 7, 152, 2, 2, 857, 861, 7, 139, 2, 2, 858, 861, 7, 140, 2, 2, 859, 861, 7, 149, 2, 2, 860, 846, 3, 2, 2, 2, 860, 851, 3, 2, 2, 2, 860, 853, 3, 2, 2, 2, 860, 854, 3, 2, 2, 2, 860, 855, 3, 2, 2, 2, 860, 858, 3, 2, 2, 2, 860, 859, 3, 2, 2, 2, 861, 876, 3, 2, 2, 2, 862, 863, 12, 12, 2, 2, 863, 864, 7, 129, 2, 2, 864, 875, 5, 92, 47, 13, 865, 866, 12, 11, 2, 2, 866, 867, 9, 10, 2, 2, 867, 875, 5, 92, 47, 12, 868, 869, 12, 9, 2, 2, 869, 870, 9, 11, 2, 2, 870, 875, 5, 92, 47, 10, 871, 872, 12, 8, 2, 2, 872, 873, 9, 12, 2, 2, 873, 875, 5, 92, 47, 9, 874, 862, 3, 2, 2, 2, 874, 865, 3, 2, 2, 2, 874, 868, 3, 2, 2, 2, 874, 871, 3, 2, 2, 2, 875, 878, 3, 2, 2, 2, 876, 874, 3, 2, 2, 2, 876, 877, 3, 2, 2, 2, 877, 93, 3, 2, 2, 2, 878, 876, 3, 2, 2, 2, 88, 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, 645, 649, 670, 680, 684, 734, 744, 746, 754, 759, 769, 787, 789, 794, 800, 806, 810, 818, 844, 860, 874, 876] \ 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 dd27db9b8..61d0d5aff 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -32,20 +32,21 @@ public class KickCParser extends Parser { FORM_MA=62, CALLING=63, CALLINGCONVENTION=64, VARMODEL=65, IF=66, ELSE=67, WHILE=68, DO=69, FOR=70, SWITCH=71, RETURN=72, BREAK=73, CONTINUE=74, 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, UNDEF=97, IFDEF=98, IFNDEF=99, - IFELSE=100, ENDIF=101, NUMBER=102, NUMFLOAT=103, BINFLOAT=104, DECFLOAT=105, - HEXFLOAT=106, NUMINT=107, BININTEGER=108, DECINTEGER=109, HEXINTEGER=110, - NAME=111, WS=112, COMMENT_LINE=113, COMMENT_BLOCK=114, ASM_BYTE=115, ASM_MNEMONIC=116, - ASM_IMM=117, ASM_COLON=118, ASM_COMMA=119, ASM_PAR_BEGIN=120, ASM_PAR_END=121, - ASM_BRACKET_BEGIN=122, ASM_BRACKET_END=123, ASM_DOT=124, ASM_SHIFT_LEFT=125, - ASM_SHIFT_RIGHT=126, ASM_PLUS=127, ASM_MINUS=128, ASM_LESS_THAN=129, ASM_GREATER_THAN=130, - ASM_MULTIPLY=131, ASM_DIVIDE=132, ASM_CURLY_BEGIN=133, ASM_CURLY_END=134, - ASM_NUMBER=135, ASM_NUMFLOAT=136, ASM_BINFLOAT=137, ASM_DECFLOAT=138, - ASM_HEXFLOAT=139, ASM_NUMINT=140, ASM_BININTEGER=141, ASM_DECINTEGER=142, - ASM_HEXINTEGER=143, ASM_CHAR=144, ASM_MULTI_REL=145, ASM_MULTI_NAME=146, - ASM_NAME=147, ASM_WS=148, ASM_COMMENT_LINE=149, ASM_COMMENT_BLOCK=150; + DEFINED=82, KICKASM=83, RESOURCE=84, USES=85, CLOBBERS=86, BYTES=87, CYCLES=88, + LOGIC_NOT=89, SIGNEDNESS=90, SIMPLETYPE=91, BOOLEAN=92, KICKASM_BODY=93, + STRING=94, CHAR=95, DEFINE=96, DEFINE_CONTINUE=97, UNDEF=98, IFDEF=99, + IFNDEF=100, IFIF=101, ELIF=102, IFELSE=103, ENDIF=104, NUMBER=105, NUMFLOAT=106, + BINFLOAT=107, DECFLOAT=108, HEXFLOAT=109, NUMINT=110, BININTEGER=111, + DECINTEGER=112, HEXINTEGER=113, NAME=114, WS=115, COMMENT_LINE=116, COMMENT_BLOCK=117, + ASM_BYTE=118, ASM_MNEMONIC=119, ASM_IMM=120, ASM_COLON=121, ASM_COMMA=122, + ASM_PAR_BEGIN=123, ASM_PAR_END=124, ASM_BRACKET_BEGIN=125, ASM_BRACKET_END=126, + ASM_DOT=127, ASM_SHIFT_LEFT=128, ASM_SHIFT_RIGHT=129, ASM_PLUS=130, ASM_MINUS=131, + ASM_LESS_THAN=132, ASM_GREATER_THAN=133, ASM_MULTIPLY=134, ASM_DIVIDE=135, + ASM_CURLY_BEGIN=136, ASM_CURLY_END=137, ASM_NUMBER=138, ASM_NUMFLOAT=139, + ASM_BINFLOAT=140, ASM_DECFLOAT=141, ASM_HEXFLOAT=142, ASM_NUMINT=143, + ASM_BININTEGER=144, ASM_DECINTEGER=145, ASM_HEXINTEGER=146, ASM_CHAR=147, + ASM_MULTI_REL=148, ASM_MULTI_NAME=149, ASM_NAME=150, ASM_WS=151, ASM_COMMENT_LINE=152, + ASM_COMMENT_BLOCK=153; 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, @@ -87,11 +88,11 @@ public class KickCParser extends Parser { "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'calling'", null, "'var_model'", "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", "'struct'", - "'enum'", "'sizeof'", "'typeid'", "'kickasm'", "'resource'", "'uses'", - "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, null, null, - null, "'#define'", "'\\\n'", "'#undef'", "'#ifdef'", "'#ifndef'", "'#else'", - "'#endif'", null, null, null, null, null, null, null, null, null, null, - null, null, null, "'.byte'", null, "'#'" + "'enum'", "'sizeof'", "'typeid'", "'defined'", "'kickasm'", "'resource'", + "'uses'", "'clobbers'", "'bytes'", "'cycles'", "'!'", null, null, null, + null, null, null, "'#define'", null, "'#undef'", "'#ifdef'", "'#ifndef'", + "'#if'", "'#elif'", "'#else'", "'#endif'", null, null, null, null, null, + null, null, null, null, null, null, null, null, "'.byte'", null, "'#'" }; } private static final String[] _LITERAL_NAMES = makeLiteralNames(); @@ -109,18 +110,19 @@ public class KickCParser extends Parser { "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", "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", "UNDEF", "IFDEF", "IFNDEF", "IFELSE", "ENDIF", - "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" + "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", + "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "STRING", + "CHAR", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", "IFIF", + "ELIF", "IFELSE", "ENDIF", "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(); @@ -1177,7 +1179,7 @@ public class KickCParser extends Parser { setState(215); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { setState(214); expr(0); @@ -1331,7 +1333,7 @@ public class KickCParser extends Parser { setState(227); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { setState(226); expr(0); @@ -1698,7 +1700,7 @@ public class KickCParser extends Parser { setState(255); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { setState(254); expr(0); @@ -2249,7 +2251,7 @@ public class KickCParser extends Parser { setState(326); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { { setState(325); stmtSeq(); @@ -3485,7 +3487,7 @@ public class KickCParser extends Parser { setState(473); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0) ); } } catch (RecognitionException re) { @@ -3851,7 +3853,7 @@ public class KickCParser extends Parser { setState(480); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { { setState(479); stmtSeq(); @@ -4023,7 +4025,7 @@ public class KickCParser extends Parser { setState(543); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { setState(542); commaExpr(0); @@ -4163,7 +4165,7 @@ public class KickCParser extends Parser { setState(569); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { { setState(568); stmtSeq(); @@ -4230,7 +4232,7 @@ public class KickCParser extends Parser { setState(577); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)))) != 0)) { { setState(576); stmtSeq(); @@ -4348,7 +4350,7 @@ public class KickCParser extends Parser { setState(584); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { setState(583); commaExpr(0); @@ -5059,6 +5061,26 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } + public static class ExprDefinedContext extends ExprContext { + public TerminalNode DEFINED() { return getToken(KickCParser.DEFINED, 0); } + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } + public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } + public ExprDefinedContext(ExprContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterExprDefined(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitExprDefined(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitExprDefined(this); + else return visitor.visitChildren(this); + } + } public static class ExprTernaryContext extends ExprContext { public List expr() { return getRuleContexts(ExprContext.class); @@ -5147,9 +5169,9 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(674); + setState(682); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,66,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { case 1: { _localctx = new ExprParContext(_localctx); @@ -5224,25 +5246,56 @@ public class KickCParser extends Parser { break; case 4: { - _localctx = new ExprCastContext(_localctx); + _localctx = new ExprDefinedContext(_localctx); _ctx = _localctx; _prevctx = _localctx; setState(641); - match(PAR_BEGIN); - setState(642); - typeSpecifier(0); + match(DEFINED); setState(643); - match(PAR_END); - setState(644); - expr(24); + _errHandler.sync(this); + _la = _input.LA(1); + if (_la==PAR_BEGIN) { + { + setState(642); + match(PAR_BEGIN); + } + } + + setState(645); + match(NAME); + setState(647); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { + case 1: + { + setState(646); + match(PAR_END); + } + break; + } } break; case 5: + { + _localctx = new ExprCastContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(649); + match(PAR_BEGIN); + setState(650); + typeSpecifier(0); + setState(651); + match(PAR_END); + setState(652); + expr(24); + } + break; + case 6: { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(646); + setState(654); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5252,27 +5305,27 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(647); + setState(655); expr(23); } break; - case 6: - { - _localctx = new ExprPtrContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(648); - match(ASTERISK); - setState(649); - expr(21); - } - break; case 7: + { + _localctx = new ExprPtrContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(656); + match(ASTERISK); + setState(657); + expr(21); + } + break; + case 8: { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(650); + setState(658); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) { _errHandler.recoverInline(this); @@ -5282,16 +5335,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(651); + setState(659); expr(20); } break; - case 8: + case 9: { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(652); + setState(660); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -5301,63 +5354,63 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(653); + setState(661); expr(16); } break; - case 9: + case 10: { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(654); + setState(662); match(CURLY_BEGIN); - setState(655); + setState(663); expr(0); - setState(660); + setState(668); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(656); + setState(664); match(COMMA); - setState(657); + setState(665); expr(0); } } - setState(662); + setState(670); _errHandler.sync(this); _la = _input.LA(1); } - setState(663); + setState(671); match(CURLY_END); } break; - case 10: - { - _localctx = new ExprIdContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(665); - match(NAME); - } - break; case 11: { - _localctx = new ExprNumberContext(_localctx); + _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(666); - match(NUMBER); + setState(673); + match(NAME); } break; case 12: + { + _localctx = new ExprNumberContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(674); + match(NUMBER); + } + break; + case 13: { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(668); + setState(676); _errHandler.sync(this); _alt = 1; do { @@ -5365,7 +5418,7 @@ public class KickCParser extends Parser { case 1: { { - setState(667); + setState(675); match(STRING); } } @@ -5373,50 +5426,50 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(670); + setState(678); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,65,_ctx); + _alt = getInterpreter().adaptivePredict(_input,67,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); } break; - case 13: - { - _localctx = new ExprCharContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(672); - match(CHAR); - } - break; case 14: + { + _localctx = new ExprCharContext(_localctx); + _ctx = _localctx; + _prevctx = _localctx; + setState(680); + match(CHAR); + } + break; + case 15: { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(673); + setState(681); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(736); + setState(744); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,71,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(734); + setState(742); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,68,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(676); + setState(684); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(677); + setState(685); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -5426,7 +5479,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(678); + setState(686); expr(20); } break; @@ -5434,9 +5487,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(679); + setState(687); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(680); + setState(688); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -5446,7 +5499,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(681); + setState(689); expr(19); } break; @@ -5454,9 +5507,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(682); + setState(690); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(683); + setState(691); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5466,7 +5519,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(684); + setState(692); expr(18); } break; @@ -5474,9 +5527,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(685); + setState(693); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(686); + setState(694); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) { _errHandler.recoverInline(this); @@ -5486,7 +5539,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(687); + setState(695); expr(16); } break; @@ -5494,13 +5547,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(688); + setState(696); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(689); + setState(697); match(AND); } - setState(690); + setState(698); expr(15); } break; @@ -5508,13 +5561,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(691); + setState(699); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(692); + setState(700); match(BIT_XOR); } - setState(693); + setState(701); expr(14); } break; @@ -5522,13 +5575,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(694); + setState(702); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(695); + setState(703); match(BIT_OR); } - setState(696); + setState(704); expr(13); } break; @@ -5536,13 +5589,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(697); + setState(705); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(698); + setState(706); match(LOGIC_AND); } - setState(699); + setState(707); expr(12); } break; @@ -5550,13 +5603,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(700); + setState(708); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(701); + setState(709); match(LOGIC_OR); } - setState(702); + setState(710); expr(11); } break; @@ -5564,15 +5617,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(703); + setState(711); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(704); + setState(712); match(CONDITION); - setState(705); + setState(713); expr(0); - setState(706); + setState(714); match(COLON); - setState(707); + setState(715); expr(10); } break; @@ -5580,11 +5633,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(709); + setState(717); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(710); + setState(718); match(ASSIGN); - setState(711); + setState(719); expr(8); } break; @@ -5592,11 +5645,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(712); + setState(720); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(713); + setState(721); match(ASSIGN_COMPOUND); - setState(714); + setState(722); expr(7); } break; @@ -5604,11 +5657,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(715); - if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(716); + setState(723); + if (!(precpred(_ctx, 31))) throw new FailedPredicateException(this, "precpred(_ctx, 31)"); + setState(724); match(DOT); - setState(717); + setState(725); match(NAME); } break; @@ -5616,11 +5669,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(718); - if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(719); + setState(726); + if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); + setState(727); match(ARROW); - setState(720); + setState(728); match(NAME); } break; @@ -5628,21 +5681,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(721); - if (!(precpred(_ctx, 28))) throw new FailedPredicateException(this, "precpred(_ctx, 28)"); - setState(722); + setState(729); + if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); + setState(730); match(PAR_BEGIN); - setState(724); + setState(732); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 80)) & ~0x3f) == 0 && ((1L << (_la - 80)) & ((1L << (SIZEOF - 80)) | (1L << (TYPEID - 80)) | (1L << (DEFINED - 80)) | (1L << (LOGIC_NOT - 80)) | (1L << (BOOLEAN - 80)) | (1L << (STRING - 80)) | (1L << (CHAR - 80)) | (1L << (NUMBER - 80)) | (1L << (NAME - 80)))) != 0)) { { - setState(723); + setState(731); parameterList(); } } - setState(726); + setState(734); match(PAR_END); } break; @@ -5650,13 +5703,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(727); + setState(735); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(728); + setState(736); match(BRACKET_BEGIN); - setState(729); + setState(737); commaExpr(0); - setState(730); + setState(738); match(BRACKET_END); } break; @@ -5664,9 +5717,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(732); + setState(740); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(733); + setState(741); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5681,9 +5734,9 @@ public class KickCParser extends Parser { } } } - setState(738); + setState(746); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,69,_ctx); + _alt = getInterpreter().adaptivePredict(_input,71,_ctx); } } } @@ -5735,21 +5788,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(739); + setState(747); expr(0); - setState(744); + setState(752); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(740); + setState(748); match(COMMA); - setState(741); + setState(749); expr(0); } } - setState(746); + setState(754); _errHandler.sync(this); _la = _input.LA(1); } @@ -5798,19 +5851,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(747); + setState(755); match(KICKASM); - setState(749); + setState(757); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(748); + setState(756); asmDirectives(); } } - setState(751); + setState(759); match(KICKASM_BODY); } } @@ -5864,27 +5917,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(753); + setState(761); match(PAR_BEGIN); - setState(754); + setState(762); asmDirective(); - setState(759); + setState(767); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(755); + setState(763); match(COMMA); - setState(756); + setState(764); asmDirective(); } } - setState(761); + setState(769); _errHandler.sync(this); _la = _input.LA(1); } - setState(762); + setState(770); match(PAR_END); } } @@ -6030,16 +6083,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 76, RULE_asmDirective); try { - setState(779); + setState(787); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(764); + setState(772); match(RESOURCE); - setState(765); + setState(773); match(STRING); } break; @@ -6047,9 +6100,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(766); + setState(774); match(USES); - setState(767); + setState(775); match(NAME); } break; @@ -6057,9 +6110,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(768); + setState(776); match(CLOBBERS); - setState(769); + setState(777); match(STRING); } break; @@ -6067,9 +6120,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(770); + setState(778); match(BYTES); - setState(771); + setState(779); expr(0); } break; @@ -6077,9 +6130,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(772); + setState(780); match(CYCLES); - setState(773); + setState(781); expr(0); } break; @@ -6087,14 +6140,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(774); + setState(782); match(PC); - setState(777); + setState(785); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: { - setState(775); + setState(783); match(INLINE); } break; @@ -6111,6 +6164,7 @@ public class KickCParser extends Parser { case GREATER_THAN: case SIZEOF: case TYPEID: + case DEFINED: case LOGIC_NOT: case BOOLEAN: case STRING: @@ -6118,7 +6172,7 @@ public class KickCParser extends Parser { case NUMBER: case NAME: { - setState(776); + setState(784); expr(0); } break; @@ -6175,17 +6229,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(784); + setState(792); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 115)) & ~0x3f) == 0 && ((1L << (_la - 115)) & ((1L << (ASM_BYTE - 115)) | (1L << (ASM_MNEMONIC - 115)) | (1L << (ASM_MULTI_NAME - 115)) | (1L << (ASM_NAME - 115)))) != 0)) { + while (((((_la - 118)) & ~0x3f) == 0 && ((1L << (_la - 118)) & ((1L << (ASM_BYTE - 118)) | (1L << (ASM_MNEMONIC - 118)) | (1L << (ASM_MULTI_NAME - 118)) | (1L << (ASM_NAME - 118)))) != 0)) { { { - setState(781); + setState(789); asmLine(); } } - setState(786); + setState(794); _errHandler.sync(this); _la = _input.LA(1); } @@ -6235,28 +6289,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 80, RULE_asmLine); try { - setState(790); + setState(798); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(787); + setState(795); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(788); + setState(796); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(789); + setState(797); asmBytes(); } break; @@ -6327,16 +6381,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmLabel); try { - setState(796); + setState(804); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(792); + setState(800); match(ASM_NAME); - setState(793); + setState(801); match(ASM_COLON); } break; @@ -6344,9 +6398,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(794); + setState(802); match(ASM_MULTI_NAME); - setState(795); + setState(803); match(ASM_COLON); } break; @@ -6395,14 +6449,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(798); + setState(806); match(ASM_MNEMONIC); - setState(800); + setState(808); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,78,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) { case 1: { - setState(799); + setState(807); asmParamMode(); } break; @@ -6458,23 +6512,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(802); + setState(810); match(ASM_BYTE); - setState(803); + setState(811); asmExpr(0); - setState(808); + setState(816); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(804); + setState(812); match(ASM_COMMA); - setState(805); + setState(813); asmExpr(0); } } - setState(810); + setState(818); _errHandler.sync(this); _la = _input.LA(1); } @@ -6634,14 +6688,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 88, RULE_asmParamMode); try { - setState(834); + setState(842); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,80,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(811); + setState(819); asmExpr(0); } break; @@ -6649,9 +6703,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(812); + setState(820); match(ASM_IMM); - setState(813); + setState(821); asmExpr(0); } break; @@ -6659,11 +6713,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(814); + setState(822); asmExpr(0); - setState(815); + setState(823); match(ASM_COMMA); - setState(816); + setState(824); match(ASM_NAME); } break; @@ -6671,15 +6725,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(818); + setState(826); match(ASM_PAR_BEGIN); - setState(819); + setState(827); asmExpr(0); - setState(820); + setState(828); match(ASM_PAR_END); - setState(821); + setState(829); match(ASM_COMMA); - setState(822); + setState(830); match(ASM_NAME); } break; @@ -6687,15 +6741,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(824); + setState(832); match(ASM_PAR_BEGIN); - setState(825); + setState(833); asmExpr(0); - setState(826); + setState(834); match(ASM_COMMA); - setState(827); + setState(835); match(ASM_NAME); - setState(828); + setState(836); match(ASM_PAR_END); } break; @@ -6703,11 +6757,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(830); + setState(838); match(ASM_PAR_BEGIN); - setState(831); + setState(839); asmExpr(0); - setState(832); + setState(840); match(ASM_PAR_END); } break; @@ -6912,7 +6966,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(850); + setState(858); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -6921,11 +6975,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(837); + setState(845); match(ASM_BRACKET_BEGIN); - setState(838); + setState(846); asmExpr(0); - setState(839); + setState(847); match(ASM_BRACKET_END); } break; @@ -6937,9 +6991,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(841); + setState(849); _la = _input.LA(1); - if ( !(((((_la - 127)) & ~0x3f) == 0 && ((1L << (_la - 127)) & ((1L << (ASM_PLUS - 127)) | (1L << (ASM_MINUS - 127)) | (1L << (ASM_LESS_THAN - 127)) | (1L << (ASM_GREATER_THAN - 127)))) != 0)) ) { + if ( !(((((_la - 130)) & ~0x3f) == 0 && ((1L << (_la - 130)) & ((1L << (ASM_PLUS - 130)) | (1L << (ASM_MINUS - 130)) | (1L << (ASM_LESS_THAN - 130)) | (1L << (ASM_GREATER_THAN - 130)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -6947,7 +7001,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(842); + setState(850); asmExpr(8); } break; @@ -6956,7 +7010,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(843); + setState(851); match(ASM_NAME); } break; @@ -6965,7 +7019,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(844); + setState(852); match(ASM_MULTI_REL); } break; @@ -6974,11 +7028,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(845); + setState(853); match(ASM_CURLY_BEGIN); - setState(846); + setState(854); match(ASM_NAME); - setState(847); + setState(855); match(ASM_CURLY_END); } break; @@ -6987,7 +7041,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(848); + setState(856); match(ASM_NUMBER); } break; @@ -6996,7 +7050,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(849); + setState(857); match(ASM_CHAR); } break; @@ -7004,28 +7058,28 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(866); + setState(874); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,83,_ctx); + _alt = getInterpreter().adaptivePredict(_input,85,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { if ( _alt==1 ) { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(864); + setState(872); _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) { + switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(852); + setState(860); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(853); + setState(861); match(ASM_DOT); } - setState(854); + setState(862); asmExpr(11); } break; @@ -7033,9 +7087,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(855); + setState(863); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(856); + setState(864); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -7045,7 +7099,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(857); + setState(865); asmExpr(10); } break; @@ -7053,9 +7107,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(858); + setState(866); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(859); + setState(867); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -7065,7 +7119,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(860); + setState(868); asmExpr(8); } break; @@ -7073,9 +7127,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(861); + setState(869); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(862); + setState(870); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -7085,16 +7139,16 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(863); + setState(871); asmExpr(7); } break; } } } - setState(868); + setState(876); _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,83,_ctx); + _alt = getInterpreter().adaptivePredict(_input,85,_ctx); } } } @@ -7194,11 +7248,11 @@ public class KickCParser extends Parser { case 18: return precpred(_ctx, 7); case 19: - return precpred(_ctx, 30); + return precpred(_ctx, 31); case 20: - return precpred(_ctx, 29); + return precpred(_ctx, 30); case 21: - return precpred(_ctx, 28); + return precpred(_ctx, 29); case 22: return precpred(_ctx, 25); case 23: @@ -7221,7 +7275,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u0098\u0368\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u009b\u0370\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"+ @@ -7271,299 +7325,302 @@ public class KickCParser extends Parser { "\n!\3!\3!\7!\u024f\n!\f!\16!\u0252\13!\5!\u0254\n!\3!\3!\3!\3!\3!\3!\5"+ "!\u025c\n!\3\"\5\"\u025f\n\"\3\"\5\"\u0262\n\"\3#\3#\3#\3#\3#\3#\7#\u026a"+ "\n#\f#\16#\u026d\13#\3$\3$\3$\3$\3$\3$\3$\3$\3$\5$\u0278\n$\3$\3$\3$\3"+ - "$\3$\3$\5$\u0280\n$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3"+ - "$\3$\3$\7$\u0295\n$\f$\16$\u0298\13$\3$\3$\3$\3$\3$\6$\u029f\n$\r$\16"+ - "$\u02a0\3$\3$\5$\u02a5\n$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3"+ + "$\3$\3$\5$\u0280\n$\3$\3$\3$\3$\5$\u0286\n$\3$\3$\5$\u028a\n$\3$\3$\3"+ + "$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\7$\u029d\n$\f$\16$\u02a0\13"+ + "$\3$\3$\3$\3$\3$\6$\u02a7\n$\r$\16$\u02a8\3$\3$\5$\u02ad\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$\5$\u02d7\n$\3$\3$\3$\3$\3$\3$\3$\3$\7"+ - "$\u02e1\n$\f$\16$\u02e4\13$\3%\3%\3%\7%\u02e9\n%\f%\16%\u02ec\13%\3&\3"+ - "&\5&\u02f0\n&\3&\3&\3\'\3\'\3\'\3\'\7\'\u02f8\n\'\f\'\16\'\u02fb\13\'"+ - "\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\5(\u030c\n(\5(\u030e\n"+ - "(\3)\7)\u0311\n)\f)\16)\u0314\13)\3*\3*\3*\5*\u0319\n*\3+\3+\3+\3+\5+"+ - "\u031f\n+\3,\3,\5,\u0323\n,\3-\3-\3-\3-\7-\u0329\n-\f-\16-\u032c\13-\3"+ - ".\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\5"+ - ".\u0345\n.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u0355\n/\3/\3"+ - "/\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\u0081\u0084\3\2\177\u0080\3\2\u0085"+ - "\u0086\3\2\u0081\u0082\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\3\2\2\2(\u0121\3\2\2\2*\u0129\3\2\2\2,\u0134"+ - "\3\2\2\2.\u0139\3\2\2\2\60\u014c\3\2\2\2\62\u015e\3\2\2\2\64\u01aa\3\2"+ - "\2\2\66\u01d6\3\2\2\28\u01d9\3\2\2\2:\u0231\3\2\2\2<\u0234\3\2\2\2>\u023f"+ - "\3\2\2\2@\u025b\3\2\2\2B\u0261\3\2\2\2D\u0263\3\2\2\2F\u02a4\3\2\2\2H"+ - "\u02e5\3\2\2\2J\u02ed\3\2\2\2L\u02f3\3\2\2\2N\u030d\3\2\2\2P\u0312\3\2"+ - "\2\2R\u0318\3\2\2\2T\u031e\3\2\2\2V\u0320\3\2\2\2X\u0324\3\2\2\2Z\u0344"+ - "\3\2\2\2\\\u0354\3\2\2\2^_\5\6\4\2_`\7\2\2\3`\3\3\2\2\2ab\5P)\2bc\7\2"+ - "\2\3c\5\3\2\2\2df\5\b\5\2ed\3\2\2\2fi\3\2\2\2ge\3\2\2\2gh\3\2\2\2h\7\3"+ - "\2\2\2ig\3\2\2\2jm\5\f\7\2km\5\n\6\2lj\3\2\2\2lk\3\2\2\2m\t\3\2\2\2no"+ - "\7(\2\2op\7_\2\2p\13\3\2\2\2qr\5\16\b\2rs\7\n\2\2s\u0081\3\2\2\2tu\5\""+ - "\22\2uv\7\n\2\2v\u0081\3\2\2\2wx\5(\25\2xy\7\n\2\2y\u0081\3\2\2\2z\u0081"+ - "\5.\30\2{\u0081\5J&\2|\u0081\5\64\33\2}~\5\22\n\2~\177\7\n\2\2\177\u0081"+ - "\3\2\2\2\u0080q\3\2\2\2\u0080t\3\2\2\2\u0080w\3\2\2\2\u0080z\3\2\2\2\u0080"+ - "{\3\2\2\2\u0080|\3\2\2\2\u0080}\3\2\2\2\u0081\r\3\2\2\2\u0082\u0083\5"+ - "\26\f\2\u0083\u0084\5\20\t\2\u0084\17\3\2\2\2\u0085\u0089\b\t\1\2\u0086"+ - "\u0088\5\30\r\2\u0087\u0086\3\2\2\2\u0088\u008b\3\2\2\2\u0089\u0087\3"+ - "\2\2\2\u0089\u008a\3\2\2\2\u008a\u008c\3\2\2\2\u008b\u0089\3\2\2\2\u008c"+ - "\u008d\5\24\13\2\u008d\u0099\3\2\2\2\u008e\u008f\f\3\2\2\u008f\u0093\7"+ - "\f\2\2\u0090\u0092\5\30\r\2\u0091\u0090\3\2\2\2\u0092\u0095\3\2\2\2\u0093"+ - "\u0091\3\2\2\2\u0093\u0094\3\2\2\2\u0094\u0096\3\2\2\2\u0095\u0093\3\2"+ - "\2\2\u0096\u0098\5\24\13\2\u0097\u008e\3\2\2\2\u0098\u009b\3\2\2\2\u0099"+ - "\u0097\3\2\2\2\u0099\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\7q\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\7q\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\7q\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\2\u00c2\25\3\2\2\2\u00c3\u00c5\5\66\34\2\u00c4"+ - "\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2\u00c6\u00c4\3\2\2\2\u00c6\u00c7\3\2"+ - "\2\2\u00c7\u00c9\3\2\2\2\u00c8\u00c6\3\2\2\2\u00c9\u00cd\5\36\20\2\u00ca"+ - "\u00cc\5\66\34\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3"+ - "\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\27\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0"+ - "\u00d4\7\23\2\2\u00d1\u00d3\5\66\34\2\u00d2\u00d1\3\2\2\2\u00d3\u00d6"+ - "\3\2\2\2\u00d4\u00d2\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\31\3\2\2\2\u00d6"+ - "\u00d4\3\2\2\2\u00d7\u00d9\7\6\2\2\u00d8\u00da\5F$\2\u00d9\u00d8\3\2\2"+ - "\2\u00d9\u00da\3\2\2\2\u00da\u00db\3\2\2\2\u00db\u00dc\7\7\2\2\u00dc\33"+ - "\3\2\2\2\u00dd\u00de\b\17\1\2\u00de\u00df\5\36\20\2\u00df\u00ea\3\2\2"+ - "\2\u00e0\u00e1\f\4\2\2\u00e1\u00e9\7\23\2\2\u00e2\u00e3\f\3\2\2\u00e3"+ - "\u00e5\7\6\2\2\u00e4\u00e6\5F$\2\u00e5\u00e4\3\2\2\2\u00e5\u00e6\3\2\2"+ - "\2\u00e6\u00e7\3\2\2\2\u00e7\u00e9\7\7\2\2\u00e8\u00e0\3\2\2\2\u00e8\u00e2"+ - "\3\2\2\2\u00e9\u00ec\3\2\2\2\u00ea\u00e8\3\2\2\2\u00ea\u00eb\3\2\2\2\u00eb"+ - "\35\3\2\2\2\u00ec\u00ea\3\2\2\2\u00ed\u00ee\b\20\1\2\u00ee\u00ef\7\b\2"+ - "\2\u00ef\u00f0\5\36\20\2\u00f0\u00f1\7\t\2\2\u00f1\u00fd\3\2\2\2\u00f2"+ - "\u00fd\7\\\2\2\u00f3\u00f5\7[\2\2\u00f4\u00f6\7\\\2\2\u00f5\u00f4\3\2"+ - "\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fd\3\2\2\2\u00f7\u00fd\5\"\22\2\u00f8"+ - "\u00fd\5 \21\2\u00f9\u00fd\5(\25\2\u00fa\u00fd\5&\24\2\u00fb\u00fd\7\3"+ - "\2\2\u00fc\u00ed\3\2\2\2\u00fc\u00f2\3\2\2\2\u00fc\u00f3\3\2\2\2\u00fc"+ - "\u00f7\3\2\2\2\u00fc\u00f8\3\2\2\2\u00fc\u00f9\3\2\2\2\u00fc\u00fa\3\2"+ - "\2\2\u00fc\u00fb\3\2\2\2\u00fd\u0109\3\2\2\2\u00fe\u00ff\f\t\2\2\u00ff"+ - "\u0101\7\6\2\2\u0100\u0102\5F$\2\u0101\u0100\3\2\2\2\u0101\u0102\3\2\2"+ - "\2\u0102\u0103\3\2\2\2\u0103\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\7q\2\2\u010e!\3"+ - "\2\2\2\u010f\u0111\7P\2\2\u0110\u0112\7q\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\7"+ - "Q\2\2\u011f\u0120\7q\2\2\u0120\'\3\2\2\2\u0121\u0123\7Q\2\2\u0122\u0124"+ - "\7q\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\7q\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\7q\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\2\u014d\u014e\7\f\2\2\u014e\u0150\5\62\32\2\u014f"+ - "\u014d\3\2\2\2\u0150\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"+ - "\7q\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\7h\2\2\u0165\u0166"+ - "\7\f\2\2\u0166\u0168\7h\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\7h\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\7q\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\7q\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\7q\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\7q\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\7q\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\7q\2\2\u01a2"+ - "\u01a3\7\f\2\2\u01a3\u01a5\7q\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\7h\2\2\u01b0\u01d7\7\t\2\2\u01b1"+ - "\u01b5\7;\2\2\u01b2\u01b3\7\b\2\2\u01b3\u01b4\7q\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\7h\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\7q\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\7h\2\2\u01cd\u01ce\7\f\2\2\u01ce\u01d0\7h\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"+ - "\2\2\u01d6\u01b8\3\2\2\2\u01d6\u01b9\3\2\2\2\u01d6\u01bd\3\2\2\2\u01d6"+ - "\u01be\3\2\2\2\u01d6\u01bf\3\2\2\2\u01d6\u01c0\3\2\2\2\u01d6\u01c1\3\2"+ - "\2\2\u01d6\u01c2\3\2\2\2\u01d6\u01c3\3\2\2\2\u01d6\u01c4\3\2\2\2\u01d6"+ - "\u01ca\3\2\2\2\u01d6\u01d5\3\2\2\2\u01d7\67\3\2\2\2\u01d8\u01da\5:\36"+ - "\2\u01d9\u01d8\3\2\2\2\u01da\u01db\3\2\2\2\u01db\u01d9\3\2\2\2\u01db\u01dc"+ - "\3\2\2\2\u01dc9\3\2\2\2\u01dd\u01de\5\16\b\2\u01de\u01df\7\n\2\2\u01df"+ - "\u0232\3\2\2\2\u01e0\u01e2\7\4\2\2\u01e1\u01e3\58\35\2\u01e2\u01e1\3\2"+ - "\2\2\u01e2\u01e3\3\2\2\2\u01e3\u01e4\3\2\2\2\u01e4\u0232\7\5\2\2\u01e5"+ - "\u01e6\5D#\2\u01e6\u01e7\7\n\2\2\u01e7\u0232\3\2\2\2\u01e8\u01e9\7D\2"+ - "\2\u01e9\u01ea\7\b\2\2\u01ea\u01eb\5D#\2\u01eb\u01ec\7\t\2\2\u01ec\u01ef"+ - "\5:\36\2\u01ed\u01ee\7E\2\2\u01ee\u01f0\5:\36\2\u01ef\u01ed\3\2\2\2\u01ef"+ - "\u01f0\3\2\2\2\u01f0\u0232\3\2\2\2\u01f1\u01f3\5\66\34\2\u01f2\u01f1\3"+ - "\2\2\2\u01f3\u01f6\3\2\2\2\u01f4\u01f2\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5"+ - "\u01f7\3\2\2\2\u01f6\u01f4\3\2\2\2\u01f7\u01f8\7F\2\2\u01f8\u01f9\7\b"+ - "\2\2\u01f9\u01fa\5D#\2\u01fa\u01fb\7\t\2\2\u01fb\u01fc\5:\36\2\u01fc\u0232"+ - "\3\2\2\2\u01fd\u01ff\5\66\34\2\u01fe\u01fd\3\2\2\2\u01ff\u0202\3\2\2\2"+ - "\u0200\u01fe\3\2\2\2\u0200\u0201\3\2\2\2\u0201\u0203\3\2\2\2\u0202\u0200"+ - "\3\2\2\2\u0203\u0204\7G\2\2\u0204\u0205\5:\36\2\u0205\u0206\7F\2\2\u0206"+ - "\u0207\7\b\2\2\u0207\u0208\5D#\2\u0208\u0209\7\t\2\2\u0209\u020a\7\n\2"+ - "\2\u020a\u0232\3\2\2\2\u020b\u020d\5\66\34\2\u020c\u020b\3\2\2\2\u020d"+ - "\u0210\3\2\2\2\u020e\u020c\3\2\2\2\u020e\u020f\3\2\2\2\u020f\u0211\3\2"+ - "\2\2\u0210\u020e\3\2\2\2\u0211\u0212\7H\2\2\u0212\u0213\7\b\2\2\u0213"+ - "\u0214\5@!\2\u0214\u0215\7\t\2\2\u0215\u0216\5:\36\2\u0216\u0232\3\2\2"+ - "\2\u0217\u0218\7I\2\2\u0218\u0219\7\b\2\2\u0219\u021a\5D#\2\u021a\u021b"+ - "\7\t\2\2\u021b\u021c\7\4\2\2\u021c\u021d\5<\37\2\u021d\u021e\7\5\2\2\u021e"+ - "\u0232\3\2\2\2\u021f\u0221\7J\2\2\u0220\u0222\5D#\2\u0221\u0220\3\2\2"+ - "\2\u0221\u0222\3\2\2\2\u0222\u0223\3\2\2\2\u0223\u0232\7\n\2\2\u0224\u0225"+ - "\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\u0088\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"+ - "\2\2\u0231\u0230\3\2\2\2\u0232;\3\2\2\2\u0233\u0235\5> \2\u0234\u0233"+ - "\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0234\3\2\2\2\u0236\u0237\3\2\2\2\u0237"+ - "\u023d\3\2\2\2\u0238\u0239\7N\2\2\u0239\u023b\7\13\2\2\u023a\u023c\58"+ - "\35\2\u023b\u023a\3\2\2\2\u023b\u023c\3\2\2\2\u023c\u023e\3\2\2\2\u023d"+ - "\u0238\3\2\2\2\u023d\u023e\3\2\2\2\u023e=\3\2\2\2\u023f\u0240\7O\2\2\u0240"+ - "\u0241\5F$\2\u0241\u0243\7\13\2\2\u0242\u0244\58\35\2\u0243\u0242\3\2"+ - "\2\2\u0243\u0244\3\2\2\2\u0244?\3\2\2\2\u0245\u0246\5B\"\2\u0246\u0247"+ - "\7\n\2\2\u0247\u0248\5D#\2\u0248\u024a\7\n\2\2\u0249\u024b\5D#\2\u024a"+ - "\u0249\3\2\2\2\u024a\u024b\3\2\2\2\u024b\u025c\3\2\2\2\u024c\u0250\5\26"+ - "\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\7q\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"+ - "\2\u0261\u0260\3\2\2\2\u0262C\3\2\2\2\u0263\u0264\b#\1\2\u0264\u0265\5"+ - "F$\2\u0265\u026b\3\2\2\2\u0266\u0267\f\3\2\2\u0267\u0268\7\f\2\2\u0268"+ - "\u026a\5F$\2\u0269\u0266\3\2\2\2\u026a\u026d\3\2\2\2\u026b\u0269\3\2\2"+ - "\2\u026b\u026c\3\2\2\2\u026cE\3\2\2\2\u026d\u026b\3\2\2\2\u026e\u026f"+ - "\b$\1\2\u026f\u0270\7\b\2\2\u0270\u0271\5D#\2\u0271\u0272\7\t\2\2\u0272"+ - "\u02a5\3\2\2\2\u0273\u0274\7R\2\2\u0274\u0277\7\b\2\2\u0275\u0278\5F$"+ - "\2\u0276\u0278\5\34\17\2\u0277\u0275\3\2\2\2\u0277\u0276\3\2\2\2\u0278"+ - "\u0279\3\2\2\2\u0279\u027a\7\t\2\2\u027a\u02a5\3\2\2\2\u027b\u027c\7S"+ - "\2\2\u027c\u027f\7\b\2\2\u027d\u0280\5F$\2\u027e\u0280\5\34\17\2\u027f"+ - "\u027d\3\2\2\2\u027f\u027e\3\2\2\2\u0280\u0281\3\2\2\2\u0281\u0282\7\t"+ - "\2\2\u0282\u02a5\3\2\2\2\u0283\u0284\7\b\2\2\u0284\u0285\5\34\17\2\u0285"+ - "\u0286\7\t\2\2\u0286\u0287\5F$\32\u0287\u02a5\3\2\2\2\u0288\u0289\t\2"+ - "\2\2\u0289\u02a5\5F$\31\u028a\u028b\7\23\2\2\u028b\u02a5\5F$\27\u028c"+ - "\u028d\t\3\2\2\u028d\u02a5\5F$\26\u028e\u028f\t\4\2\2\u028f\u02a5\5F$"+ - "\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\7q\2\2\u029c\u02a5\7h\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"+ - "\3\2\2\2\u02a4\u0288\3\2\2\2\u02a4\u028a\3\2\2\2\u02a4\u028c\3\2\2\2\u02a4"+ - "\u028e\3\2\2\2\u02a4\u0290\3\2\2\2\u02a4\u029b\3\2\2\2\u02a4\u029c\3\2"+ - "\2\2\u02a4\u029e\3\2\2\2\u02a4\u02a2\3\2\2\2\u02a4\u02a3\3\2\2\2\u02a5"+ - "\u02e2\3\2\2\2\u02a6\u02a7\f\25\2\2\u02a7\u02a8\t\5\2\2\u02a8\u02e1\5"+ - "F$\26\u02a9\u02aa\f\24\2\2\u02aa\u02ab\t\6\2\2\u02ab\u02e1\5F$\25\u02ac"+ - "\u02ad\f\23\2\2\u02ad\u02ae\t\7\2\2\u02ae\u02e1\5F$\24\u02af\u02b0\f\21"+ - "\2\2\u02b0\u02b1\t\b\2\2\u02b1\u02e1\5F$\22\u02b2\u02b3\f\20\2\2\u02b3"+ - "\u02b4\7\30\2\2\u02b4\u02e1\5F$\21\u02b5\u02b6\f\17\2\2\u02b6\u02b7\7"+ - "\32\2\2\u02b7\u02e1\5F$\20\u02b8\u02b9\f\16\2\2\u02b9\u02ba\7\33\2\2\u02ba"+ - "\u02e1\5F$\17\u02bb\u02bc\f\r\2\2\u02bc\u02bd\7$\2\2\u02bd\u02e1\5F$\16"+ - "\u02be\u02bf\f\f\2\2\u02bf\u02c0\7%\2\2\u02c0\u02e1\5F$\r\u02c1\u02c2"+ - "\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\7q\2"+ - "\2\u02d0\u02d1\f\37\2\2\u02d1\u02d2\7\20\2\2\u02d2\u02e1\7q\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"+ - "\2\2\u02dd\u02e1\3\2\2\2\u02de\u02df\f\30\2\2\u02df\u02e1\t\2\2\2\u02e0"+ - "\u02a6\3\2\2\2\u02e0\u02a9\3\2\2\2\u02e0\u02ac\3\2\2\2\u02e0\u02af\3\2"+ - "\2\2\u02e0\u02b2\3\2\2\2\u02e0\u02b5\3\2\2\2\u02e0\u02b8\3\2\2\2\u02e0"+ - "\u02bb\3\2\2\2\u02e0\u02be\3\2\2\2\u02e0\u02c1\3\2\2\2\u02e0\u02c7\3\2"+ - "\2\2\u02e0\u02ca\3\2\2\2\u02e0\u02cd\3\2\2\2\u02e0\u02d0\3\2\2\2\u02e0"+ - "\u02d3\3\2\2\2\u02e0\u02d9\3\2\2\2\u02e0\u02de\3\2\2\2\u02e1\u02e4\3\2"+ - "\2\2\u02e2\u02e0\3\2\2\2\u02e2\u02e3\3\2\2\2\u02e3G\3\2\2\2\u02e4\u02e2"+ - "\3\2\2\2\u02e5\u02ea\5F$\2\u02e6\u02e7\7\f\2\2\u02e7\u02e9\5F$\2\u02e8"+ - "\u02e6\3\2\2\2\u02e9\u02ec\3\2\2\2\u02ea\u02e8\3\2\2\2\u02ea\u02eb\3\2"+ - "\2\2\u02ebI\3\2\2\2\u02ec\u02ea\3\2\2\2\u02ed\u02ef\7T\2\2\u02ee\u02f0"+ - "\5L\'\2\u02ef\u02ee\3\2\2\2\u02ef\u02f0\3\2\2\2\u02f0\u02f1\3\2\2\2\u02f1"+ - "\u02f2\7^\2\2\u02f2K\3\2\2\2\u02f3\u02f4\7\b\2\2\u02f4\u02f9\5N(\2\u02f5"+ - "\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\7q\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"+ - "\u02fe\3\2\2\2\u030d\u0300\3\2\2\2\u030d\u0302\3\2\2\2\u030d\u0304\3\2"+ - "\2\2\u030d\u0306\3\2\2\2\u030d\u0308\3\2\2\2\u030eO\3\2\2\2\u030f\u0311"+ - "\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\u0095\2\2\u031b\u031f"+ - "\7x\2\2\u031c\u031d\7\u0094\2\2\u031d\u031f\7x\2\2\u031e\u031a\3\2\2\2"+ - "\u031e\u031c\3\2\2\2\u031fU\3\2\2\2\u0320\u0322\7v\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"+ - "\7u\2\2\u0325\u032a\5\\/\2\u0326\u0327\7y\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"+ - "\7w\2\2\u032f\u0345\5\\/\2\u0330\u0331\5\\/\2\u0331\u0332\7y\2\2\u0332"+ - "\u0333\7\u0095\2\2\u0333\u0345\3\2\2\2\u0334\u0335\7z\2\2\u0335\u0336"+ - "\5\\/\2\u0336\u0337\7{\2\2\u0337\u0338\7y\2\2\u0338\u0339\7\u0095\2\2"+ - "\u0339\u0345\3\2\2\2\u033a\u033b\7z\2\2\u033b\u033c\5\\/\2\u033c\u033d"+ - "\7y\2\2\u033d\u033e\7\u0095\2\2\u033e\u033f\7{\2\2\u033f\u0345\3\2\2\2"+ - "\u0340\u0341\7z\2\2\u0341\u0342\5\\/\2\u0342\u0343\7{\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\7|\2\2\u0348\u0349\5\\/\2\u0349\u034a"+ - "\7}\2\2\u034a\u0355\3\2\2\2\u034b\u034c\t\t\2\2\u034c\u0355\5\\/\n\u034d"+ - "\u0355\7\u0095\2\2\u034e\u0355\7\u0093\2\2\u034f\u0350\7\u0087\2\2\u0350"+ - "\u0351\7\u0095\2\2\u0351\u0355\7\u0088\2\2\u0352\u0355\7\u0089\2\2\u0353"+ - "\u0355\7\u0092\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\7~"+ - "\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"+ - "\3\2\2\2\u0362\u0359\3\2\2\2\u0362\u035c\3\2\2\2\u0362\u035f\3\2\2\2\u0363"+ - "\u0366\3\2\2\2\u0364\u0362\3\2\2\2\u0364\u0365\3\2\2\2\u0365]\3\2\2\2"+ - "\u0366\u0364\3\2\2\2Vgl\u0080\u0089\u0093\u0099\u00a1\u00a8\u00b1\u00b6"+ - "\u00bc\u00c1\u00c6\u00cd\u00d4\u00d9\u00e5\u00e8\u00ea\u00f5\u00fc\u0101"+ - "\u0107\u0109\u0111\u0117\u0123\u0131\u0137\u013d\u0143\u0148\u0151\u0158"+ - "\u015e\u0169\u01a6\u01aa\u01b5\u01c8\u01d1\u01d6\u01db\u01e2\u01ef\u01f4"+ - "\u0200\u020e\u0221\u022a\u0231\u0236\u023b\u023d\u0243\u024a\u0250\u0253"+ - "\u025b\u025e\u0261\u026b\u0277\u027f\u0296\u02a0\u02a4\u02d6\u02e0\u02e2"+ - "\u02ea\u02ef\u02f9\u030b\u030d\u0312\u0318\u031e\u0322\u032a\u0344\u0354"+ - "\u0362\u0364"; + "$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\3$\5$\u02df"+ + "\n$\3$\3$\3$\3$\3$\3$\3$\3$\7$\u02e9\n$\f$\16$\u02ec\13$\3%\3%\3%\7%\u02f1"+ + "\n%\f%\16%\u02f4\13%\3&\3&\5&\u02f8\n&\3&\3&\3\'\3\'\3\'\3\'\7\'\u0300"+ + "\n\'\f\'\16\'\u0303\13\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3(\3"+ + "(\5(\u0314\n(\5(\u0316\n(\3)\7)\u0319\n)\f)\16)\u031c\13)\3*\3*\3*\5*"+ + "\u0321\n*\3+\3+\3+\3+\5+\u0327\n+\3,\3,\5,\u032b\n,\3-\3-\3-\3-\7-\u0331"+ + "\n-\f-\16-\u0334\13-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ + ".\3.\3.\3.\3.\3.\3.\5.\u034d\n.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+ + "/\3/\5/\u035d\n/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\7/\u036b\n/\f/\16"+ + "/\u036e\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"+ + "\31[[\4\2 ##\3\2\34\35\3\2\23\25\3\2\21\22\3\2\36#\3\2\u0084\u0087\3"+ + "\2\u0082\u0083\3\2\u0088\u0089\3\2\u0084\u0085\2\u03ef\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\3\2\2\2(\u0121\3"+ + "\2\2\2*\u0129\3\2\2\2,\u0134\3\2\2\2.\u0139\3\2\2\2\60\u014c\3\2\2\2\62"+ + "\u015e\3\2\2\2\64\u01aa\3\2\2\2\66\u01d6\3\2\2\28\u01d9\3\2\2\2:\u0231"+ + "\3\2\2\2<\u0234\3\2\2\2>\u023f\3\2\2\2@\u025b\3\2\2\2B\u0261\3\2\2\2D"+ + "\u0263\3\2\2\2F\u02ac\3\2\2\2H\u02ed\3\2\2\2J\u02f5\3\2\2\2L\u02fb\3\2"+ + "\2\2N\u0315\3\2\2\2P\u031a\3\2\2\2R\u0320\3\2\2\2T\u0326\3\2\2\2V\u0328"+ + "\3\2\2\2X\u032c\3\2\2\2Z\u034c\3\2\2\2\\\u035c\3\2\2\2^_\5\6\4\2_`\7\2"+ + "\2\3`\3\3\2\2\2ab\5P)\2bc\7\2\2\3c\5\3\2\2\2df\5\b\5\2ed\3\2\2\2fi\3\2"+ + "\2\2ge\3\2\2\2gh\3\2\2\2h\7\3\2\2\2ig\3\2\2\2jm\5\f\7\2km\5\n\6\2lj\3"+ + "\2\2\2lk\3\2\2\2m\t\3\2\2\2no\7(\2\2op\7`\2\2p\13\3\2\2\2qr\5\16\b\2r"+ + "s\7\n\2\2s\u0081\3\2\2\2tu\5\"\22\2uv\7\n\2\2v\u0081\3\2\2\2wx\5(\25\2"+ + "xy\7\n\2\2y\u0081\3\2\2\2z\u0081\5.\30\2{\u0081\5J&\2|\u0081\5\64\33\2"+ + "}~\5\22\n\2~\177\7\n\2\2\177\u0081\3\2\2\2\u0080q\3\2\2\2\u0080t\3\2\2"+ + "\2\u0080w\3\2\2\2\u0080z\3\2\2\2\u0080{\3\2\2\2\u0080|\3\2\2\2\u0080}"+ + "\3\2\2\2\u0081\r\3\2\2\2\u0082\u0083\5\26\f\2\u0083\u0084\5\20\t\2\u0084"+ + "\17\3\2\2\2\u0085\u0089\b\t\1\2\u0086\u0088\5\30\r\2\u0087\u0086\3\2\2"+ + "\2\u0088\u008b\3\2\2\2\u0089\u0087\3\2\2\2\u0089\u008a\3\2\2\2\u008a\u008c"+ + "\3\2\2\2\u008b\u0089\3\2\2\2\u008c\u008d\5\24\13\2\u008d\u0099\3\2\2\2"+ + "\u008e\u008f\f\3\2\2\u008f\u0093\7\f\2\2\u0090\u0092\5\30\r\2\u0091\u0090"+ + "\3\2\2\2\u0092\u0095\3\2\2\2\u0093\u0091\3\2\2\2\u0093\u0094\3\2\2\2\u0094"+ + "\u0096\3\2\2\2\u0095\u0093\3\2\2\2\u0096\u0098\5\24\13\2\u0097\u008e\3"+ + "\2\2\2\u0098\u009b\3\2\2\2\u0099\u0097\3\2\2\2\u0099\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\7t\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"+ + "\7t\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\7t\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\2\u00c2\25"+ + "\3\2\2\2\u00c3\u00c5\5\66\34\2\u00c4\u00c3\3\2\2\2\u00c5\u00c8\3\2\2\2"+ + "\u00c6\u00c4\3\2\2\2\u00c6\u00c7\3\2\2\2\u00c7\u00c9\3\2\2\2\u00c8\u00c6"+ + "\3\2\2\2\u00c9\u00cd\5\36\20\2\u00ca\u00cc\5\66\34\2\u00cb\u00ca\3\2\2"+ + "\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\27"+ + "\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0\u00d4\7\23\2\2\u00d1\u00d3\5\66\34"+ + "\2\u00d2\u00d1\3\2\2\2\u00d3\u00d6\3\2\2\2\u00d4\u00d2\3\2\2\2\u00d4\u00d5"+ + "\3\2\2\2\u00d5\31\3\2\2\2\u00d6\u00d4\3\2\2\2\u00d7\u00d9\7\6\2\2\u00d8"+ + "\u00da\5F$\2\u00d9\u00d8\3\2\2\2\u00d9\u00da\3\2\2\2\u00da\u00db\3\2\2"+ + "\2\u00db\u00dc\7\7\2\2\u00dc\33\3\2\2\2\u00dd\u00de\b\17\1\2\u00de\u00df"+ + "\5\36\20\2\u00df\u00ea\3\2\2\2\u00e0\u00e1\f\4\2\2\u00e1\u00e9\7\23\2"+ + "\2\u00e2\u00e3\f\3\2\2\u00e3\u00e5\7\6\2\2\u00e4\u00e6\5F$\2\u00e5\u00e4"+ + "\3\2\2\2\u00e5\u00e6\3\2\2\2\u00e6\u00e7\3\2\2\2\u00e7\u00e9\7\7\2\2\u00e8"+ + "\u00e0\3\2\2\2\u00e8\u00e2\3\2\2\2\u00e9\u00ec\3\2\2\2\u00ea\u00e8\3\2"+ + "\2\2\u00ea\u00eb\3\2\2\2\u00eb\35\3\2\2\2\u00ec\u00ea\3\2\2\2\u00ed\u00ee"+ + "\b\20\1\2\u00ee\u00ef\7\b\2\2\u00ef\u00f0\5\36\20\2\u00f0\u00f1\7\t\2"+ + "\2\u00f1\u00fd\3\2\2\2\u00f2\u00fd\7]\2\2\u00f3\u00f5\7\\\2\2\u00f4\u00f6"+ + "\7]\2\2\u00f5\u00f4\3\2\2\2\u00f5\u00f6\3\2\2\2\u00f6\u00fd\3\2\2\2\u00f7"+ + "\u00fd\5\"\22\2\u00f8\u00fd\5 \21\2\u00f9\u00fd\5(\25\2\u00fa\u00fd\5"+ + "&\24\2\u00fb\u00fd\7\3\2\2\u00fc\u00ed\3\2\2\2\u00fc\u00f2\3\2\2\2\u00fc"+ + "\u00f3\3\2\2\2\u00fc\u00f7\3\2\2\2\u00fc\u00f8\3\2\2\2\u00fc\u00f9\3\2"+ + "\2\2\u00fc\u00fa\3\2\2\2\u00fc\u00fb\3\2\2\2\u00fd\u0109\3\2\2\2\u00fe"+ + "\u00ff\f\t\2\2\u00ff\u0101\7\6\2\2\u0100\u0102\5F$\2\u0101\u0100\3\2\2"+ + "\2\u0101\u0102\3\2\2\2\u0102\u0103\3\2\2\2\u0103\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"+ + "\7t\2\2\u010e!\3\2\2\2\u010f\u0111\7P\2\2\u0110\u0112\7t\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\7t\2\2\u0120\'\3\2\2\2\u0121\u0123\7Q\2\2\u0122"+ + "\u0124\7t\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\7t\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\7t\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\2\u014d\u014e\7\f\2\2\u014e\u0150\5\62\32"+ + "\2\u014f\u014d\3\2\2\2\u0150\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\7t\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\7k\2\2\u0165"+ + "\u0166\7\f\2\2\u0166\u0168\7k\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\7k\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\7t\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"+ + "\7t\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\7t\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\7t\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\7t\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\7t\2\2\u01a2\u01a3\7\f\2\2\u01a3\u01a5\7t\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\7k\2\2\u01b0\u01d7"+ + "\7\t\2\2\u01b1\u01b5\7;\2\2\u01b2\u01b3\7\b\2\2\u01b3\u01b4\7t\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\7k\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\7t\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\7k\2\2\u01cd\u01ce\7\f\2\2\u01ce\u01d0\7k\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\2\2\u01d6\u01b8\3\2\2\2\u01d6\u01b9\3\2\2\2\u01d6"+ + "\u01bd\3\2\2\2\u01d6\u01be\3\2\2\2\u01d6\u01bf\3\2\2\2\u01d6\u01c0\3\2"+ + "\2\2\u01d6\u01c1\3\2\2\2\u01d6\u01c2\3\2\2\2\u01d6\u01c3\3\2\2\2\u01d6"+ + "\u01c4\3\2\2\2\u01d6\u01ca\3\2\2\2\u01d6\u01d5\3\2\2\2\u01d7\67\3\2\2"+ + "\2\u01d8\u01da\5:\36\2\u01d9\u01d8\3\2\2\2\u01da\u01db\3\2\2\2\u01db\u01d9"+ + "\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc9\3\2\2\2\u01dd\u01de\5\16\b\2\u01de"+ + "\u01df\7\n\2\2\u01df\u0232\3\2\2\2\u01e0\u01e2\7\4\2\2\u01e1\u01e3\58"+ + "\35\2\u01e2\u01e1\3\2\2\2\u01e2\u01e3\3\2\2\2\u01e3\u01e4\3\2\2\2\u01e4"+ + "\u0232\7\5\2\2\u01e5\u01e6\5D#\2\u01e6\u01e7\7\n\2\2\u01e7\u0232\3\2\2"+ + "\2\u01e8\u01e9\7D\2\2\u01e9\u01ea\7\b\2\2\u01ea\u01eb\5D#\2\u01eb\u01ec"+ + "\7\t\2\2\u01ec\u01ef\5:\36\2\u01ed\u01ee\7E\2\2\u01ee\u01f0\5:\36\2\u01ef"+ + "\u01ed\3\2\2\2\u01ef\u01f0\3\2\2\2\u01f0\u0232\3\2\2\2\u01f1\u01f3\5\66"+ + "\34\2\u01f2\u01f1\3\2\2\2\u01f3\u01f6\3\2\2\2\u01f4\u01f2\3\2\2\2\u01f4"+ + "\u01f5\3\2\2\2\u01f5\u01f7\3\2\2\2\u01f6\u01f4\3\2\2\2\u01f7\u01f8\7F"+ + "\2\2\u01f8\u01f9\7\b\2\2\u01f9\u01fa\5D#\2\u01fa\u01fb\7\t\2\2\u01fb\u01fc"+ + "\5:\36\2\u01fc\u0232\3\2\2\2\u01fd\u01ff\5\66\34\2\u01fe\u01fd\3\2\2\2"+ + "\u01ff\u0202\3\2\2\2\u0200\u01fe\3\2\2\2\u0200\u0201\3\2\2\2\u0201\u0203"+ + "\3\2\2\2\u0202\u0200\3\2\2\2\u0203\u0204\7G\2\2\u0204\u0205\5:\36\2\u0205"+ + "\u0206\7F\2\2\u0206\u0207\7\b\2\2\u0207\u0208\5D#\2\u0208\u0209\7\t\2"+ + "\2\u0209\u020a\7\n\2\2\u020a\u0232\3\2\2\2\u020b\u020d\5\66\34\2\u020c"+ + "\u020b\3\2\2\2\u020d\u0210\3\2\2\2\u020e\u020c\3\2\2\2\u020e\u020f\3\2"+ + "\2\2\u020f\u0211\3\2\2\2\u0210\u020e\3\2\2\2\u0211\u0212\7H\2\2\u0212"+ + "\u0213\7\b\2\2\u0213\u0214\5@!\2\u0214\u0215\7\t\2\2\u0215\u0216\5:\36"+ + "\2\u0216\u0232\3\2\2\2\u0217\u0218\7I\2\2\u0218\u0219\7\b\2\2\u0219\u021a"+ + "\5D#\2\u021a\u021b\7\t\2\2\u021b\u021c\7\4\2\2\u021c\u021d\5<\37\2\u021d"+ + "\u021e\7\5\2\2\u021e\u0232\3\2\2\2\u021f\u0221\7J\2\2\u0220\u0222\5D#"+ + "\2\u0221\u0220\3\2\2\2\u0221\u0222\3\2\2\2\u0222\u0223\3\2\2\2\u0223\u0232"+ + "\7\n\2\2\u0224\u0225\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\u008b\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\2\2\u0231\u0230\3\2\2\2\u0232;\3\2\2\2\u0233\u0235"+ + "\5> \2\u0234\u0233\3\2\2\2\u0235\u0236\3\2\2\2\u0236\u0234\3\2\2\2\u0236"+ + "\u0237\3\2\2\2\u0237\u023d\3\2\2\2\u0238\u0239\7N\2\2\u0239\u023b\7\13"+ + "\2\2\u023a\u023c\58\35\2\u023b\u023a\3\2\2\2\u023b\u023c\3\2\2\2\u023c"+ + "\u023e\3\2\2\2\u023d\u0238\3\2\2\2\u023d\u023e\3\2\2\2\u023e=\3\2\2\2"+ + "\u023f\u0240\7O\2\2\u0240\u0241\5F$\2\u0241\u0243\7\13\2\2\u0242\u0244"+ + "\58\35\2\u0243\u0242\3\2\2\2\u0243\u0244\3\2\2\2\u0244?\3\2\2\2\u0245"+ + "\u0246\5B\"\2\u0246\u0247\7\n\2\2\u0247\u0248\5D#\2\u0248\u024a\7\n\2"+ + "\2\u0249\u024b\5D#\2\u024a\u0249\3\2\2\2\u024a\u024b\3\2\2\2\u024b\u025c"+ + "\3\2\2\2\u024c\u0250\5\26\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\7t\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\2\u0261\u0260\3\2\2\2\u0262C\3\2\2\2\u0263\u0264"+ + "\b#\1\2\u0264\u0265\5F$\2\u0265\u026b\3\2\2\2\u0266\u0267\f\3\2\2\u0267"+ + "\u0268\7\f\2\2\u0268\u026a\5F$\2\u0269\u0266\3\2\2\2\u026a\u026d\3\2\2"+ + "\2\u026b\u0269\3\2\2\2\u026b\u026c\3\2\2\2\u026cE\3\2\2\2\u026d\u026b"+ + "\3\2\2\2\u026e\u026f\b$\1\2\u026f\u0270\7\b\2\2\u0270\u0271\5D#\2\u0271"+ + "\u0272\7\t\2\2\u0272\u02ad\3\2\2\2\u0273\u0274\7R\2\2\u0274\u0277\7\b"+ + "\2\2\u0275\u0278\5F$\2\u0276\u0278\5\34\17\2\u0277\u0275\3\2\2\2\u0277"+ + "\u0276\3\2\2\2\u0278\u0279\3\2\2\2\u0279\u027a\7\t\2\2\u027a\u02ad\3\2"+ + "\2\2\u027b\u027c\7S\2\2\u027c\u027f\7\b\2\2\u027d\u0280\5F$\2\u027e\u0280"+ + "\5\34\17\2\u027f\u027d\3\2\2\2\u027f\u027e\3\2\2\2\u0280\u0281\3\2\2\2"+ + "\u0281\u0282\7\t\2\2\u0282\u02ad\3\2\2\2\u0283\u0285\7T\2\2\u0284\u0286"+ + "\7\b\2\2\u0285\u0284\3\2\2\2\u0285\u0286\3\2\2\2\u0286\u0287\3\2\2\2\u0287"+ + "\u0289\7t\2\2\u0288\u028a\7\t\2\2\u0289\u0288\3\2\2\2\u0289\u028a\3\2"+ + "\2\2\u028a\u02ad\3\2\2\2\u028b\u028c\7\b\2\2\u028c\u028d\5\34\17\2\u028d"+ + "\u028e\7\t\2\2\u028e\u028f\5F$\32\u028f\u02ad\3\2\2\2\u0290\u0291\t\2"+ + "\2\2\u0291\u02ad\5F$\31\u0292\u0293\7\23\2\2\u0293\u02ad\5F$\27\u0294"+ + "\u0295\t\3\2\2\u0295\u02ad\5F$\26\u0296\u0297\t\4\2\2\u0297\u02ad\5F$"+ + "\22\u0298\u0299\7\4\2\2\u0299\u029e\5F$\2\u029a\u029b\7\f\2\2\u029b\u029d"+ + "\5F$\2\u029c\u029a\3\2\2\2\u029d\u02a0\3\2\2\2\u029e\u029c\3\2\2\2\u029e"+ + "\u029f\3\2\2\2\u029f\u02a1\3\2\2\2\u02a0\u029e\3\2\2\2\u02a1\u02a2\7\5"+ + "\2\2\u02a2\u02ad\3\2\2\2\u02a3\u02ad\7t\2\2\u02a4\u02ad\7k\2\2\u02a5\u02a7"+ + "\7`\2\2\u02a6\u02a5\3\2\2\2\u02a7\u02a8\3\2\2\2\u02a8\u02a6\3\2\2\2\u02a8"+ + "\u02a9\3\2\2\2\u02a9\u02ad\3\2\2\2\u02aa\u02ad\7a\2\2\u02ab\u02ad\7^\2"+ + "\2\u02ac\u026e\3\2\2\2\u02ac\u0273\3\2\2\2\u02ac\u027b\3\2\2\2\u02ac\u0283"+ + "\3\2\2\2\u02ac\u028b\3\2\2\2\u02ac\u0290\3\2\2\2\u02ac\u0292\3\2\2\2\u02ac"+ + "\u0294\3\2\2\2\u02ac\u0296\3\2\2\2\u02ac\u0298\3\2\2\2\u02ac\u02a3\3\2"+ + "\2\2\u02ac\u02a4\3\2\2\2\u02ac\u02a6\3\2\2\2\u02ac\u02aa\3\2\2\2\u02ac"+ + "\u02ab\3\2\2\2\u02ad\u02ea\3\2\2\2\u02ae\u02af\f\25\2\2\u02af\u02b0\t"+ + "\5\2\2\u02b0\u02e9\5F$\26\u02b1\u02b2\f\24\2\2\u02b2\u02b3\t\6\2\2\u02b3"+ + "\u02e9\5F$\25\u02b4\u02b5\f\23\2\2\u02b5\u02b6\t\7\2\2\u02b6\u02e9\5F"+ + "$\24\u02b7\u02b8\f\21\2\2\u02b8\u02b9\t\b\2\2\u02b9\u02e9\5F$\22\u02ba"+ + "\u02bb\f\20\2\2\u02bb\u02bc\7\30\2\2\u02bc\u02e9\5F$\21\u02bd\u02be\f"+ + "\17\2\2\u02be\u02bf\7\32\2\2\u02bf\u02e9\5F$\20\u02c0\u02c1\f\16\2\2\u02c1"+ + "\u02c2\7\33\2\2\u02c2\u02e9\5F$\17\u02c3\u02c4\f\r\2\2\u02c4\u02c5\7$"+ + "\2\2\u02c5\u02e9\5F$\16\u02c6\u02c7\f\f\2\2\u02c7\u02c8\7%\2\2\u02c8\u02e9"+ + "\5F$\r\u02c9\u02ca\f\13\2\2\u02ca\u02cb\7\16\2\2\u02cb\u02cc\5F$\2\u02cc"+ + "\u02cd\7\13\2\2\u02cd\u02ce\5F$\f\u02ce\u02e9\3\2\2\2\u02cf\u02d0\f\n"+ + "\2\2\u02d0\u02d1\7&\2\2\u02d1\u02e9\5F$\n\u02d2\u02d3\f\t\2\2\u02d3\u02d4"+ + "\7\'\2\2\u02d4\u02e9\5F$\t\u02d5\u02d6\f!\2\2\u02d6\u02d7\7\17\2\2\u02d7"+ + "\u02e9\7t\2\2\u02d8\u02d9\f \2\2\u02d9\u02da\7\20\2\2\u02da\u02e9\7t\2"+ + "\2\u02db\u02dc\f\37\2\2\u02dc\u02de\7\b\2\2\u02dd\u02df\5H%\2\u02de\u02dd"+ + "\3\2\2\2\u02de\u02df\3\2\2\2\u02df\u02e0\3\2\2\2\u02e0\u02e9\7\t\2\2\u02e1"+ + "\u02e2\f\33\2\2\u02e2\u02e3\7\6\2\2\u02e3\u02e4\5D#\2\u02e4\u02e5\7\7"+ + "\2\2\u02e5\u02e9\3\2\2\2\u02e6\u02e7\f\30\2\2\u02e7\u02e9\t\2\2\2\u02e8"+ + "\u02ae\3\2\2\2\u02e8\u02b1\3\2\2\2\u02e8\u02b4\3\2\2\2\u02e8\u02b7\3\2"+ + "\2\2\u02e8\u02ba\3\2\2\2\u02e8\u02bd\3\2\2\2\u02e8\u02c0\3\2\2\2\u02e8"+ + "\u02c3\3\2\2\2\u02e8\u02c6\3\2\2\2\u02e8\u02c9\3\2\2\2\u02e8\u02cf\3\2"+ + "\2\2\u02e8\u02d2\3\2\2\2\u02e8\u02d5\3\2\2\2\u02e8\u02d8\3\2\2\2\u02e8"+ + "\u02db\3\2\2\2\u02e8\u02e1\3\2\2\2\u02e8\u02e6\3\2\2\2\u02e9\u02ec\3\2"+ + "\2\2\u02ea\u02e8\3\2\2\2\u02ea\u02eb\3\2\2\2\u02ebG\3\2\2\2\u02ec\u02ea"+ + "\3\2\2\2\u02ed\u02f2\5F$\2\u02ee\u02ef\7\f\2\2\u02ef\u02f1\5F$\2\u02f0"+ + "\u02ee\3\2\2\2\u02f1\u02f4\3\2\2\2\u02f2\u02f0\3\2\2\2\u02f2\u02f3\3\2"+ + "\2\2\u02f3I\3\2\2\2\u02f4\u02f2\3\2\2\2\u02f5\u02f7\7U\2\2\u02f6\u02f8"+ + "\5L\'\2\u02f7\u02f6\3\2\2\2\u02f7\u02f8\3\2\2\2\u02f8\u02f9\3\2\2\2\u02f9"+ + "\u02fa\7_\2\2\u02faK\3\2\2\2\u02fb\u02fc\7\b\2\2\u02fc\u0301\5N(\2\u02fd"+ + "\u02fe\7\f\2\2\u02fe\u0300\5N(\2\u02ff\u02fd\3\2\2\2\u0300\u0303\3\2\2"+ + "\2\u0301\u02ff\3\2\2\2\u0301\u0302\3\2\2\2\u0302\u0304\3\2\2\2\u0303\u0301"+ + "\3\2\2\2\u0304\u0305\7\t\2\2\u0305M\3\2\2\2\u0306\u0307\7V\2\2\u0307\u0316"+ + "\7`\2\2\u0308\u0309\7W\2\2\u0309\u0316\7t\2\2\u030a\u030b\7X\2\2\u030b"+ + "\u0316\7`\2\2\u030c\u030d\7Y\2\2\u030d\u0316\5F$\2\u030e\u030f\7Z\2\2"+ + "\u030f\u0316\5F$\2\u0310\u0313\7,\2\2\u0311\u0314\7\67\2\2\u0312\u0314"+ + "\5F$\2\u0313\u0311\3\2\2\2\u0313\u0312\3\2\2\2\u0314\u0316\3\2\2\2\u0315"+ + "\u0306\3\2\2\2\u0315\u0308\3\2\2\2\u0315\u030a\3\2\2\2\u0315\u030c\3\2"+ + "\2\2\u0315\u030e\3\2\2\2\u0315\u0310\3\2\2\2\u0316O\3\2\2\2\u0317\u0319"+ + "\5R*\2\u0318\u0317\3\2\2\2\u0319\u031c\3\2\2\2\u031a\u0318\3\2\2\2\u031a"+ + "\u031b\3\2\2\2\u031bQ\3\2\2\2\u031c\u031a\3\2\2\2\u031d\u0321\5T+\2\u031e"+ + "\u0321\5V,\2\u031f\u0321\5X-\2\u0320\u031d\3\2\2\2\u0320\u031e\3\2\2\2"+ + "\u0320\u031f\3\2\2\2\u0321S\3\2\2\2\u0322\u0323\7\u0098\2\2\u0323\u0327"+ + "\7{\2\2\u0324\u0325\7\u0097\2\2\u0325\u0327\7{\2\2\u0326\u0322\3\2\2\2"+ + "\u0326\u0324\3\2\2\2\u0327U\3\2\2\2\u0328\u032a\7y\2\2\u0329\u032b\5Z"+ + ".\2\u032a\u0329\3\2\2\2\u032a\u032b\3\2\2\2\u032bW\3\2\2\2\u032c\u032d"+ + "\7x\2\2\u032d\u0332\5\\/\2\u032e\u032f\7|\2\2\u032f\u0331\5\\/\2\u0330"+ + "\u032e\3\2\2\2\u0331\u0334\3\2\2\2\u0332\u0330\3\2\2\2\u0332\u0333\3\2"+ + "\2\2\u0333Y\3\2\2\2\u0334\u0332\3\2\2\2\u0335\u034d\5\\/\2\u0336\u0337"+ + "\7z\2\2\u0337\u034d\5\\/\2\u0338\u0339\5\\/\2\u0339\u033a\7|\2\2\u033a"+ + "\u033b\7\u0098\2\2\u033b\u034d\3\2\2\2\u033c\u033d\7}\2\2\u033d\u033e"+ + "\5\\/\2\u033e\u033f\7~\2\2\u033f\u0340\7|\2\2\u0340\u0341\7\u0098\2\2"+ + "\u0341\u034d\3\2\2\2\u0342\u0343\7}\2\2\u0343\u0344\5\\/\2\u0344\u0345"+ + "\7|\2\2\u0345\u0346\7\u0098\2\2\u0346\u0347\7~\2\2\u0347\u034d\3\2\2\2"+ + "\u0348\u0349\7}\2\2\u0349\u034a\5\\/\2\u034a\u034b\7~\2\2\u034b\u034d"+ + "\3\2\2\2\u034c\u0335\3\2\2\2\u034c\u0336\3\2\2\2\u034c\u0338\3\2\2\2\u034c"+ + "\u033c\3\2\2\2\u034c\u0342\3\2\2\2\u034c\u0348\3\2\2\2\u034d[\3\2\2\2"+ + "\u034e\u034f\b/\1\2\u034f\u0350\7\177\2\2\u0350\u0351\5\\/\2\u0351\u0352"+ + "\7\u0080\2\2\u0352\u035d\3\2\2\2\u0353\u0354\t\t\2\2\u0354\u035d\5\\/"+ + "\n\u0355\u035d\7\u0098\2\2\u0356\u035d\7\u0096\2\2\u0357\u0358\7\u008a"+ + "\2\2\u0358\u0359\7\u0098\2\2\u0359\u035d\7\u008b\2\2\u035a\u035d\7\u008c"+ + "\2\2\u035b\u035d\7\u0095\2\2\u035c\u034e\3\2\2\2\u035c\u0353\3\2\2\2\u035c"+ + "\u0355\3\2\2\2\u035c\u0356\3\2\2\2\u035c\u0357\3\2\2\2\u035c\u035a\3\2"+ + "\2\2\u035c\u035b\3\2\2\2\u035d\u036c\3\2\2\2\u035e\u035f\f\f\2\2\u035f"+ + "\u0360\7\u0081\2\2\u0360\u036b\5\\/\r\u0361\u0362\f\13\2\2\u0362\u0363"+ + "\t\n\2\2\u0363\u036b\5\\/\f\u0364\u0365\f\t\2\2\u0365\u0366\t\13\2\2\u0366"+ + "\u036b\5\\/\n\u0367\u0368\f\b\2\2\u0368\u0369\t\f\2\2\u0369\u036b\5\\"+ + "/\t\u036a\u035e\3\2\2\2\u036a\u0361\3\2\2\2\u036a\u0364\3\2\2\2\u036a"+ + "\u0367\3\2\2\2\u036b\u036e\3\2\2\2\u036c\u036a\3\2\2\2\u036c\u036d\3\2"+ + "\2\2\u036d]\3\2\2\2\u036e\u036c\3\2\2\2Xgl\u0080\u0089\u0093\u0099\u00a1"+ + "\u00a8\u00b1\u00b6\u00bc\u00c1\u00c6\u00cd\u00d4\u00d9\u00e5\u00e8\u00ea"+ + "\u00f5\u00fc\u0101\u0107\u0109\u0111\u0117\u0123\u0131\u0137\u013d\u0143"+ + "\u0148\u0151\u0158\u015e\u0169\u01a6\u01aa\u01b5\u01c8\u01d1\u01d6\u01db"+ + "\u01e2\u01ef\u01f4\u0200\u020e\u0221\u022a\u0231\u0236\u023b\u023d\u0243"+ + "\u024a\u0250\u0253\u025b\u025e\u0261\u026b\u0277\u027f\u0285\u0289\u029e"+ + "\u02a8\u02ac\u02de\u02e8\u02ea\u02f2\u02f7\u0301\u0313\u0315\u031a\u0320"+ + "\u0326\u032a\u0332\u034c\u035c\u036a\u036c"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index 5570de9e4..1c26a4734 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -79,75 +79,78 @@ 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 -UNDEF=97 -IFDEF=98 -IFNDEF=99 -IFELSE=100 -ENDIF=101 -NUMBER=102 -NUMFLOAT=103 -BINFLOAT=104 -DECFLOAT=105 -HEXFLOAT=106 -NUMINT=107 -BININTEGER=108 -DECINTEGER=109 -HEXINTEGER=110 -NAME=111 -WS=112 -COMMENT_LINE=113 -COMMENT_BLOCK=114 -ASM_BYTE=115 -ASM_MNEMONIC=116 -ASM_IMM=117 -ASM_COLON=118 -ASM_COMMA=119 -ASM_PAR_BEGIN=120 -ASM_PAR_END=121 -ASM_BRACKET_BEGIN=122 -ASM_BRACKET_END=123 -ASM_DOT=124 -ASM_SHIFT_LEFT=125 -ASM_SHIFT_RIGHT=126 -ASM_PLUS=127 -ASM_MINUS=128 -ASM_LESS_THAN=129 -ASM_GREATER_THAN=130 -ASM_MULTIPLY=131 -ASM_DIVIDE=132 -ASM_CURLY_BEGIN=133 -ASM_CURLY_END=134 -ASM_NUMBER=135 -ASM_NUMFLOAT=136 -ASM_BINFLOAT=137 -ASM_DECFLOAT=138 -ASM_HEXFLOAT=139 -ASM_NUMINT=140 -ASM_BININTEGER=141 -ASM_DECINTEGER=142 -ASM_HEXINTEGER=143 -ASM_CHAR=144 -ASM_MULTI_REL=145 -ASM_MULTI_NAME=146 -ASM_NAME=147 -ASM_WS=148 -ASM_COMMENT_LINE=149 -ASM_COMMENT_BLOCK=150 +DEFINED=82 +KICKASM=83 +RESOURCE=84 +USES=85 +CLOBBERS=86 +BYTES=87 +CYCLES=88 +LOGIC_NOT=89 +SIGNEDNESS=90 +SIMPLETYPE=91 +BOOLEAN=92 +KICKASM_BODY=93 +STRING=94 +CHAR=95 +DEFINE=96 +DEFINE_CONTINUE=97 +UNDEF=98 +IFDEF=99 +IFNDEF=100 +IFIF=101 +ELIF=102 +IFELSE=103 +ENDIF=104 +NUMBER=105 +NUMFLOAT=106 +BINFLOAT=107 +DECFLOAT=108 +HEXFLOAT=109 +NUMINT=110 +BININTEGER=111 +DECINTEGER=112 +HEXINTEGER=113 +NAME=114 +WS=115 +COMMENT_LINE=116 +COMMENT_BLOCK=117 +ASM_BYTE=118 +ASM_MNEMONIC=119 +ASM_IMM=120 +ASM_COLON=121 +ASM_COMMA=122 +ASM_PAR_BEGIN=123 +ASM_PAR_END=124 +ASM_BRACKET_BEGIN=125 +ASM_BRACKET_END=126 +ASM_DOT=127 +ASM_SHIFT_LEFT=128 +ASM_SHIFT_RIGHT=129 +ASM_PLUS=130 +ASM_MINUS=131 +ASM_LESS_THAN=132 +ASM_GREATER_THAN=133 +ASM_MULTIPLY=134 +ASM_DIVIDE=135 +ASM_CURLY_BEGIN=136 +ASM_CURLY_END=137 +ASM_NUMBER=138 +ASM_NUMFLOAT=139 +ASM_BINFLOAT=140 +ASM_DECFLOAT=141 +ASM_HEXFLOAT=142 +ASM_NUMINT=143 +ASM_BININTEGER=144 +ASM_DECINTEGER=145 +ASM_HEXINTEGER=146 +ASM_CHAR=147 +ASM_MULTI_REL=148 +ASM_MULTI_NAME=149 +ASM_NAME=150 +ASM_WS=151 +ASM_COMMENT_LINE=152 +ASM_COMMENT_BLOCK=153 ';'=8 '..'=11 '?'=12 @@ -209,19 +212,21 @@ ASM_COMMENT_BLOCK=150 'enum'=79 'sizeof'=80 'typeid'=81 -'kickasm'=82 -'resource'=83 -'uses'=84 -'clobbers'=85 -'bytes'=86 -'cycles'=87 -'!'=88 -'#define'=95 -'\\\n'=96 -'#undef'=97 -'#ifdef'=98 -'#ifndef'=99 -'#else'=100 -'#endif'=101 -'.byte'=115 -'#'=117 +'defined'=82 +'kickasm'=83 +'resource'=84 +'uses'=85 +'clobbers'=86 +'bytes'=87 +'cycles'=88 +'!'=89 +'#define'=96 +'#undef'=98 +'#ifdef'=99 +'#ifndef'=100 +'#if'=101 +'#elif'=102 +'#else'=103 +'#endif'=104 +'.byte'=118 +'#'=120 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index d08c29254..aa3088460 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -1273,6 +1273,18 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitExprId(KickCParser.ExprIdContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterExprDefined(KickCParser.ExprDefinedContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitExprDefined(KickCParser.ExprDefinedContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java index 8d90b7c4d..d41e35be9 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -748,6 +748,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitExprId(KickCParser.ExprIdContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

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

+ */ + @Override public T visitExprDefined(KickCParser.ExprDefinedContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java index 05bb2cdbf..8c5fb8346 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -1221,6 +1221,18 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitExprId(KickCParser.ExprIdContext ctx); + /** + * Enter a parse tree produced by the {@code exprDefined} + * labeled alternative in {@link KickCParser#expr}. + * @param ctx the parse tree + */ + void enterExprDefined(KickCParser.ExprDefinedContext ctx); + /** + * Exit a parse tree produced by the {@code exprDefined} + * labeled alternative in {@link KickCParser#expr}. + * @param ctx the parse tree + */ + void exitExprDefined(KickCParser.ExprDefinedContext ctx); /** * Enter a parse tree produced by the {@code exprTernary} * labeled alternative in {@link KickCParser#expr}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index d20b12f75..99ecdd033 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -1,4 +1,4 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 by ANTLR 4.7.2 +// Generated from C:/c64/kickc/src/main/java/dk/camelot64/kickc/parser\KickCParser.g4 by ANTLR 4.7.2 package dk.camelot64.kickc.parser; @@ -723,6 +723,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitExprId(KickCParser.ExprIdContext ctx); + /** + * Visit a parse tree produced by the {@code exprDefined} + * labeled alternative in {@link KickCParser#expr}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitExprDefined(KickCParser.ExprDefinedContext ctx); /** * Visit a parse tree produced by the {@code exprTernary} * labeled alternative in {@link KickCParser#expr}. diff --git a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java index b82623bda..6a87e315d 100644 --- a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java +++ b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessor.java @@ -1,8 +1,17 @@ package dk.camelot64.kickc.preprocessor; +import dk.camelot64.kickc.NumberParser; import dk.camelot64.kickc.model.CompileError; -import dk.camelot64.kickc.parser.CTokenSource; +import dk.camelot64.kickc.model.operators.OperatorBinary; +import dk.camelot64.kickc.model.operators.OperatorUnary; +import dk.camelot64.kickc.model.operators.Operators; +import dk.camelot64.kickc.model.statements.StatementSource; +import dk.camelot64.kickc.model.values.ConstantBool; +import dk.camelot64.kickc.model.values.ConstantInteger; +import dk.camelot64.kickc.model.values.ConstantLiteral; +import dk.camelot64.kickc.parser.*; import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.tree.TerminalNode; import java.util.*; @@ -22,18 +31,14 @@ public class CPreprocessor implements TokenSource { */ private Map> defines; - /** The token types. */ - private CPreprocessorTokens tokenTypes; - - public CPreprocessor(TokenSource input, CPreprocessorTokens tokenTypes) { + public CPreprocessor(TokenSource input, Map> defines) { if(input instanceof CTokenSource) { // If possible use the input directly instead of wrapping it this.input = (CTokenSource) input; } else { this.input = new CTokenSource(input); } - this.defines = new LinkedHashMap<>(); - this.tokenTypes = tokenTypes; + this.defines = defines; } @Override @@ -86,29 +91,30 @@ public class CPreprocessor 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) { - if(inputToken.getType() == tokenTypes.define) { + if(inputToken.getType() == KickCLexer.DEFINE) { define(cTokenSource); return true; - } else if(inputToken.getType() == tokenTypes.undef) { + } else if(inputToken.getType() == KickCLexer.UNDEF) { undef(cTokenSource); return true; - } else if(inputToken.getType() == tokenTypes.ifndef) { + } else if(inputToken.getType() == KickCLexer.IFNDEF) { ifndef(cTokenSource); return true; - } else if(inputToken.getType() == tokenTypes.ifdef) { + } else if(inputToken.getType() == KickCLexer.IFDEF) { ifdef(cTokenSource); return true; - } else if(inputToken.getType() == tokenTypes.ifelse) { + } else if(inputToken.getType() == KickCLexer.IFIF) { + ifif(cTokenSource); + return true; + } else if(inputToken.getType() == KickCLexer.IFELSE) { // #else means we must skip until #endif ifelse(cTokenSource); return true; - } else if(inputToken.getType() == tokenTypes.endif) { + } else if(inputToken.getType() == KickCLexer.ENDIF) { // Skip #endif - they have already been handled by #if / #else return true; - } else if(inputToken.getType() == tokenTypes.identifier) { - final boolean expanded = expand(inputToken, cTokenSource); - if(expanded) - return true; + } else if(inputToken.getType() == KickCLexer.NAME) { + return expand(inputToken, cTokenSource); } return false; } @@ -162,7 +168,7 @@ public class CPreprocessor implements TokenSource { private void undef(CTokenSource cTokenSource) { // #undef a new macro - find the name skipWhitespace(cTokenSource); - String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + String macroName = nextToken(cTokenSource, KickCLexer.NAME).getText(); this.defines.remove(macroName); } @@ -173,13 +179,151 @@ public class CPreprocessor implements TokenSource { */ private void ifdef(CTokenSource cTokenSource) { skipWhitespace(cTokenSource); - String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + String macroName = nextToken(cTokenSource, KickCLexer.NAME).getText(); final boolean defined = this.defines.containsKey(macroName); if(!defined) { iffalse(cTokenSource); } } + /** + * #if checks if a constant condition expression is non-zero + * + * @param cTokenSource The token source used to get the condition + */ + private void ifif(CTokenSource cTokenSource) { + // Read the condition body + ArrayList conditionTokens = readBody(cTokenSource); + // Evaluate any uses of the defined operator (to prevent expansion of the named macro) + evaluateDefinedOperator(conditionTokens); + // Expand the condition body before evaluating it + CPreprocessor subPreprocessor = new CPreprocessor(new ListTokenSource(conditionTokens), new HashMap<>(defines)); + // Parse the expression + KickCParser.ExprContext conditionExpr = ExprParser.parseExpression(subPreprocessor); + // Evaluate the expression + Long conditionValue = evaluateExpression(conditionExpr); + if(conditionValue == null || conditionValue == 0L) { + iffalse(cTokenSource); + } + } + + /** + * Evaluate a constant condition expression from #if. The special defined operator must be evaluated before calling this. + * + * @param conditionExpr The expression + * @return The result of the evaluation. + */ + private Long evaluateExpression(KickCParser.ExprContext conditionExpr) { + KickCParserBaseVisitor conditionEvaluator = new KickCParserBaseVisitor() { + @Override + public Long visitExprNumber(KickCParser.ExprNumberContext ctx) { + try { + ConstantInteger constantInteger = NumberParser.parseIntegerLiteral(ctx.getText()); + return constantInteger.getInteger(); + } catch(NumberFormatException e) { + throw new CompileError(e.getMessage(), new StatementSource(ctx)); + } + } + + @Override + public Long visitExprId(KickCParser.ExprIdContext ctx) { + return 0L; + } + + @Override + public Long visitExprBinary(KickCParser.ExprBinaryContext ctx) { + Long left = this.visit(ctx.expr(0)); + Long right = this.visit(ctx.expr(1)); + String op = ((TerminalNode) ctx.getChild(1)).getSymbol().getText(); + OperatorBinary operator = (OperatorBinary) Operators.getBinary(op); + ConstantLiteral result = operator.calculateLiteral(new ConstantInteger(left), new ConstantInteger(right)); + if(result instanceof ConstantInteger) { + return ((ConstantInteger) result).getInteger(); + } else if(result instanceof ConstantBool) { + return ((ConstantBool) result).getBool()?1L:0L; + } else + return 0L; + } + + @Override + public Long visitExprUnary(KickCParser.ExprUnaryContext ctx) { + Long left = this.visit(ctx.expr()); + String op = ((TerminalNode) ctx.getChild(0)).getSymbol().getText(); + OperatorUnary operator = (OperatorUnary) Operators.getUnary(op); + ConstantLiteral result = operator.calculateLiteral(new ConstantInteger(left), null); + if(result instanceof ConstantInteger) { + return ((ConstantInteger) result).getInteger(); + } else if(result instanceof ConstantBool) { + return ((ConstantBool) result).getBool()?1L:0L; + } else + return 0L; + } + + @Override + public Long visitExprPar(KickCParser.ExprParContext ctx) { + return this.visit(ctx.commaExpr()); + } + + }; + return conditionEvaluator.visit(conditionExpr); + } + + /** + * Find and evaluate the special defined X operator which evaluates to 1 if a named macro if defined and 0 if it is undefined. + * Works by replacing the defined X tokens with the resulting 0/1 value in the passed token list. + * @param conditionTokens The token list + */ + private void evaluateDefinedOperator(ArrayList conditionTokens) { + // First evaluate the special defined operators + ListIterator tokenIt = conditionTokens.listIterator(); + while(tokenIt.hasNext()) { + Token token = tokenIt.next(); + if(token.getType()== KickCLexer.DEFINED) { + // Remove the token + tokenIt.remove(); + // Read the macro name to examine - and skip any parenthesis + token = getNextSkipWhitespace(tokenIt); + boolean hasPar = false; + if(token.getType()==KickCLexer.PAR_BEGIN) { + tokenIt.remove(); + token = getNextSkipWhitespace(tokenIt); + hasPar = true; + } + if(token.getType()!=KickCLexer.NAME) { + throw new CompileError("Unexpected token. Was expecting NAME!"); + } + tokenIt.remove(); + Token macroNameToken = token; + String macroName = macroNameToken.getText(); + if(hasPar) { + // Skip closing parenthesis + token = getNextSkipWhitespace(tokenIt); + if(token.getType()!=KickCLexer.PAR_END) { + throw new CompileError("Unexpected token. Was expecting ')'!"); + } + tokenIt.remove(); + } + final boolean defined = defines.containsKey(macroName); + CommonToken definedToken = new CommonToken(macroNameToken); + definedToken.setType(KickCLexer.NUMBER); + definedToken.setText(defined?"1":"0"); + tokenIt.add(definedToken); + } + } + } + + /** + * Get the next token from an iterator skipping whitespace (unless it has a newline) + * @param tokenIt The iterator + * @return The next non-whitespace token + */ + private Token getNextSkipWhitespace(ListIterator tokenIt) { + Token token = tokenIt.next(); + while(token.getChannel()==CParser.CHANNEL_WHITESPACE && !token.getText().contains("\n")) + token = tokenIt.next(); + return token; + } + /** * #ifdef checks if a macro is _NOT_ defined. * @@ -187,16 +331,16 @@ public class CPreprocessor implements TokenSource { */ private void ifndef(CTokenSource cTokenSource) { skipWhitespace(cTokenSource); - String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + String macroName = nextToken(cTokenSource, KickCLexer.NAME).getText(); final boolean defined = this.defines.containsKey(macroName); if(defined) { iffalse(cTokenSource); } } - /** * Skip tokens based in an #if that is false + * * @param cTokenSource The token source */ private void iffalse(CTokenSource cTokenSource) { @@ -205,14 +349,14 @@ public class CPreprocessor implements TokenSource { while(true) { final Token token = cTokenSource.nextToken(); final int tokenType = token.getType(); - if(tokenType == tokenTypes.ifdef || tokenType == tokenTypes.ifndef) { + if(tokenType == KickCLexer.IFDEF || tokenType == KickCLexer.IFNDEF || tokenType == KickCLexer.IFIF) { ++nesting; - } else if(tokenType == tokenTypes.ifelse) { + } else if(tokenType == KickCLexer.IFELSE) { if(nesting == 1) { // We are at the outer #if - #else means we must generate output from here! return; } - } else if(tokenType == tokenTypes.endif) { + } else if(tokenType == KickCLexer.ENDIF) { if(--nesting == 0) { // We have passed the matching #endif - restart the output! return; @@ -231,9 +375,9 @@ public class CPreprocessor implements TokenSource { while(true) { final Token token = cTokenSource.nextToken(); final int tokenType = token.getType(); - if(tokenType == tokenTypes.ifdef || tokenType == tokenTypes.ifndef) { + if(tokenType == KickCLexer.IFDEF || tokenType == KickCLexer.IFNDEF || tokenType == KickCLexer.IFIF) { ++nesting; - } else if(tokenType == tokenTypes.endif) { + } else if(tokenType == KickCLexer.ENDIF) { if(--nesting == 0) { // We have passed the matching #endif return; @@ -250,34 +394,45 @@ public class CPreprocessor implements TokenSource { private void define(CTokenSource cTokenSource) { // #define a new macro - find the name skipWhitespace(cTokenSource); - String macroName = nextToken(cTokenSource, tokenTypes.identifier).getText(); + String macroName = nextToken(cTokenSource, KickCLexer.NAME).getText(); // Examine whether the macro has parameters skipWhitespace(cTokenSource); - if(cTokenSource.peekToken().getType() == tokenTypes.parBegin) { + if(cTokenSource.peekToken().getType() == KickCLexer.PAR_BEGIN) { // Macro has parameters - find parameter name list throw new CompileError("Macros with parameters not supported!"); } + final ArrayList macroBody = readBody(cTokenSource); + defines.put(macroName, macroBody); + } + + /** + * Read a preprocessor body (eg. a macro body) until encountering a newline + * + * @param cTokenSource The token source to read from + * @return The list of body tokens read + */ + private ArrayList readBody(CTokenSource cTokenSource) { // Find body by gobbling tokens until the line ends final ArrayList macroBody = new ArrayList<>(); while(true) { final Token bodyToken = cTokenSource.nextToken(); - if(bodyToken.getType() == tokenTypes.defineMultiline) { + if(bodyToken.getType() == KickCLexer.DEFINE_CONTINUE) { // 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.setType(KickCLexer.WS); + newlineToken.setChannel(CParser.CHANNEL_WHITESPACE); newlineToken.setText("\n"); macroBody.add(newlineToken); continue; } - if(bodyToken.getChannel() == tokenTypes.channelWhitespace && bodyToken.getText().contains("\n")) { + if(bodyToken.getChannel() == CParser.CHANNEL_WHITESPACE && bodyToken.getText().contains("\n")) { // Done reading the body break; } else { macroBody.add(bodyToken); } } - defines.put(macroName, macroBody); + return macroBody; } /** @@ -302,7 +457,7 @@ public class CPreprocessor implements TokenSource { private void skipWhitespace(CTokenSource cTokenSource) { while(true) { final Token token = cTokenSource.peekToken(); - if(token.getChannel() != tokenTypes.channelWhitespace) + if(token.getChannel() != CParser.CHANNEL_WHITESPACE) break; if(token.getText().contains("\n")) break; diff --git a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java b/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java deleted file mode 100644 index c57284fba..000000000 --- a/src/main/java/dk/camelot64/kickc/preprocessor/CPreprocessorTokens.java +++ /dev/null @@ -1,50 +0,0 @@ -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 #ifdef. */ - final int ifdef; - /** The token type for #ifndef. */ - final int ifndef; - /** The token type for #else. */ - final int ifelse; - /** The token type for #endif. */ - final int endif; - /** 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 ifdef, int ifndef, int ifelse, int endif, 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.ifdef = ifdef; - this.ifndef = ifndef; - this.ifelse = ifelse; - this.endif = endif; - 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 deleted file mode 100644 index 7ffecccf2..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 +++ /dev/null @@ -1,49 +0,0 @@ -/** - * Minimal grammar implementing C macros - */ - -grammar Macros; - -@header { -} - -@parser::members { -} - -@lexer::members { -} - -stmtSeq - : stmt* - ; - -stmt - : expr ';' #stmtExpr - ; - -expr - : PAR_BEGIN SIMPLETYPE PAR_END expr #exprCast - | IDENTIFIER #exprName - | NUMBER #exprNumber - | PAR_BEGIN expr PAR_END #exprPar - | expr '*' expr #exprBinary - | expr '/' expr #exprBinary - | expr '+' expr #exprBinary - | expr '-' expr #exprBinary - | expr COMMA expr #exprBinary - ; - -PAR_BEGIN: '(' ; -PAR_END: ')' ; -COMMA : ',' ; -SIMPLETYPE: 'char' | 'int' ; -IDENTIFIER: [a-zA-Z_][a-zA-Z_0-9]* ; -NUMBER: [0-9]+ ; -DEFINE: '#define' ; -UNDEF: '#undef' ; -IFDEF: '#ifdef' ; -IFNDEF: '#ifndef' ; -IFELSE: '#else' ; -ENDIF: '#endif' ; -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 deleted file mode 100644 index 643899ccd..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.interp +++ /dev/null @@ -1,52 +0,0 @@ -token literal names: -null -';' -'*' -'/' -'+' -'-' -'(' -')' -',' -null -null -null -'#define' -'#undef' -'#ifdef' -'#ifndef' -'#else' -'#endif' -'\\\n' -null - -token symbolic names: -null -null -null -null -null -null -PAR_BEGIN -PAR_END -COMMA -SIMPLETYPE -IDENTIFIER -NUMBER -DEFINE -UNDEF -IFDEF -IFNDEF -IFELSE -ENDIF -DEFINE_CONTINUE -WHITESPACE - -rule names: -stmtSeq -stmt -expr - - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 21, 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 deleted file mode 100644 index 96a5a3767..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.tokens +++ /dev/null @@ -1,34 +0,0 @@ -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 -UNDEF=13 -IFDEF=14 -IFNDEF=15 -IFELSE=16 -ENDIF=17 -DEFINE_CONTINUE=18 -WHITESPACE=19 -';'=1 -'*'=2 -'/'=3 -'+'=4 -'-'=5 -'('=6 -')'=7 -','=8 -'#define'=12 -'#undef'=13 -'#ifdef'=14 -'#ifndef'=15 -'#else'=16 -'#endif'=17 -'\\\n'=18 diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseListener.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseListener.java deleted file mode 100644 index cd6a72974..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseListener.java +++ /dev/null @@ -1,125 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - - -import org.antlr.v4.runtime.ParserRuleContext; -import org.antlr.v4.runtime.tree.ErrorNode; -import org.antlr.v4.runtime.tree.TerminalNode; - -/** - * This class provides an empty implementation of {@link MacrosListener}, - * which can be extended to create a listener which only needs to handle a subset - * of the available methods. - */ -public class MacrosBaseListener implements MacrosListener { - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterStmtSeq(MacrosParser.StmtSeqContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitStmtSeq(MacrosParser.StmtSeqContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterStmtExpr(MacrosParser.StmtExprContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitStmtExpr(MacrosParser.StmtExprContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterExprCast(MacrosParser.ExprCastContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitExprCast(MacrosParser.ExprCastContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterExprBinary(MacrosParser.ExprBinaryContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitExprBinary(MacrosParser.ExprBinaryContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterExprPar(MacrosParser.ExprParContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitExprPar(MacrosParser.ExprParContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterExprNumber(MacrosParser.ExprNumberContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitExprNumber(MacrosParser.ExprNumberContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterExprName(MacrosParser.ExprNameContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitExprName(MacrosParser.ExprNameContext ctx) { } - - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterEveryRule(ParserRuleContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitEveryRule(ParserRuleContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void visitTerminal(TerminalNode node) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void visitErrorNode(ErrorNode node) { } -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseVisitor.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseVisitor.java deleted file mode 100644 index 1aa7f4efa..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosBaseVisitor.java +++ /dev/null @@ -1,65 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - -import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; - -/** - * This class provides an empty implementation of {@link MacrosVisitor}, - * which can be extended to create a visitor which only needs to handle a subset - * of the available methods. - * - * @param The return type of the visit operation. Use {@link Void} for - * operations with no return type. - */ -public class MacrosBaseVisitor extends AbstractParseTreeVisitor implements MacrosVisitor { - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitStmtSeq(MacrosParser.StmtSeqContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitStmtExpr(MacrosParser.StmtExprContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitExprCast(MacrosParser.ExprCastContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitExprBinary(MacrosParser.ExprBinaryContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitExprPar(MacrosParser.ExprParContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitExprNumber(MacrosParser.ExprNumberContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

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

- */ - @Override public T visitExprName(MacrosParser.ExprNameContext ctx) { return visitChildren(ctx); } -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp deleted file mode 100644 index ae39ad25d..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.interp +++ /dev/null @@ -1,74 +0,0 @@ -token literal names: -null -';' -'*' -'/' -'+' -'-' -'(' -')' -',' -null -null -null -'#define' -'#undef' -'#ifdef' -'#ifndef' -'#else' -'#endif' -'\\\n' -null - -token symbolic names: -null -null -null -null -null -null -PAR_BEGIN -PAR_END -COMMA -SIMPLETYPE -IDENTIFIER -NUMBER -DEFINE -UNDEF -IFDEF -IFNDEF -IFELSE -ENDIF -DEFINE_CONTINUE -WHITESPACE - -rule names: -T__0 -T__1 -T__2 -T__3 -T__4 -PAR_BEGIN -PAR_END -COMMA -SIMPLETYPE -IDENTIFIER -NUMBER -DEFINE -UNDEF -IFDEF -IFNDEF -IFELSE -ENDIF -DEFINE_CONTINUE -WHITESPACE - -channel names: -DEFAULT_TOKEN_CHANNEL -HIDDEN - -mode names: -DEFAULT_MODE - -atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 21, 131, 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, 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, 65, 10, 10, 3, 11, 3, 11, 7, 11, 69, 10, 11, 12, 11, 14, 11, 72, 11, 11, 3, 12, 6, 12, 75, 10, 12, 13, 12, 14, 12, 76, 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, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 6, 20, 126, 10, 20, 13, 20, 14, 20, 127, 3, 20, 3, 20, 2, 2, 21, 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, 33, 18, 35, 19, 37, 20, 39, 21, 3, 2, 6, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 5, 2, 11, 12, 15, 15, 34, 34, 2, 134, 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, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 3, 41, 3, 2, 2, 2, 5, 43, 3, 2, 2, 2, 7, 45, 3, 2, 2, 2, 9, 47, 3, 2, 2, 2, 11, 49, 3, 2, 2, 2, 13, 51, 3, 2, 2, 2, 15, 53, 3, 2, 2, 2, 17, 55, 3, 2, 2, 2, 19, 64, 3, 2, 2, 2, 21, 66, 3, 2, 2, 2, 23, 74, 3, 2, 2, 2, 25, 78, 3, 2, 2, 2, 27, 86, 3, 2, 2, 2, 29, 93, 3, 2, 2, 2, 31, 100, 3, 2, 2, 2, 33, 108, 3, 2, 2, 2, 35, 114, 3, 2, 2, 2, 37, 121, 3, 2, 2, 2, 39, 125, 3, 2, 2, 2, 41, 42, 7, 61, 2, 2, 42, 4, 3, 2, 2, 2, 43, 44, 7, 44, 2, 2, 44, 6, 3, 2, 2, 2, 45, 46, 7, 49, 2, 2, 46, 8, 3, 2, 2, 2, 47, 48, 7, 45, 2, 2, 48, 10, 3, 2, 2, 2, 49, 50, 7, 47, 2, 2, 50, 12, 3, 2, 2, 2, 51, 52, 7, 42, 2, 2, 52, 14, 3, 2, 2, 2, 53, 54, 7, 43, 2, 2, 54, 16, 3, 2, 2, 2, 55, 56, 7, 46, 2, 2, 56, 18, 3, 2, 2, 2, 57, 58, 7, 101, 2, 2, 58, 59, 7, 106, 2, 2, 59, 60, 7, 99, 2, 2, 60, 65, 7, 116, 2, 2, 61, 62, 7, 107, 2, 2, 62, 63, 7, 112, 2, 2, 63, 65, 7, 118, 2, 2, 64, 57, 3, 2, 2, 2, 64, 61, 3, 2, 2, 2, 65, 20, 3, 2, 2, 2, 66, 70, 9, 2, 2, 2, 67, 69, 9, 3, 2, 2, 68, 67, 3, 2, 2, 2, 69, 72, 3, 2, 2, 2, 70, 68, 3, 2, 2, 2, 70, 71, 3, 2, 2, 2, 71, 22, 3, 2, 2, 2, 72, 70, 3, 2, 2, 2, 73, 75, 9, 4, 2, 2, 74, 73, 3, 2, 2, 2, 75, 76, 3, 2, 2, 2, 76, 74, 3, 2, 2, 2, 76, 77, 3, 2, 2, 2, 77, 24, 3, 2, 2, 2, 78, 79, 7, 37, 2, 2, 79, 80, 7, 102, 2, 2, 80, 81, 7, 103, 2, 2, 81, 82, 7, 104, 2, 2, 82, 83, 7, 107, 2, 2, 83, 84, 7, 112, 2, 2, 84, 85, 7, 103, 2, 2, 85, 26, 3, 2, 2, 2, 86, 87, 7, 37, 2, 2, 87, 88, 7, 119, 2, 2, 88, 89, 7, 112, 2, 2, 89, 90, 7, 102, 2, 2, 90, 91, 7, 103, 2, 2, 91, 92, 7, 104, 2, 2, 92, 28, 3, 2, 2, 2, 93, 94, 7, 37, 2, 2, 94, 95, 7, 107, 2, 2, 95, 96, 7, 104, 2, 2, 96, 97, 7, 102, 2, 2, 97, 98, 7, 103, 2, 2, 98, 99, 7, 104, 2, 2, 99, 30, 3, 2, 2, 2, 100, 101, 7, 37, 2, 2, 101, 102, 7, 107, 2, 2, 102, 103, 7, 104, 2, 2, 103, 104, 7, 112, 2, 2, 104, 105, 7, 102, 2, 2, 105, 106, 7, 103, 2, 2, 106, 107, 7, 104, 2, 2, 107, 32, 3, 2, 2, 2, 108, 109, 7, 37, 2, 2, 109, 110, 7, 103, 2, 2, 110, 111, 7, 110, 2, 2, 111, 112, 7, 117, 2, 2, 112, 113, 7, 103, 2, 2, 113, 34, 3, 2, 2, 2, 114, 115, 7, 37, 2, 2, 115, 116, 7, 103, 2, 2, 116, 117, 7, 112, 2, 2, 117, 118, 7, 102, 2, 2, 118, 119, 7, 107, 2, 2, 119, 120, 7, 104, 2, 2, 120, 36, 3, 2, 2, 2, 121, 122, 7, 94, 2, 2, 122, 123, 7, 12, 2, 2, 123, 38, 3, 2, 2, 2, 124, 126, 9, 5, 2, 2, 125, 124, 3, 2, 2, 2, 126, 127, 3, 2, 2, 2, 127, 125, 3, 2, 2, 2, 127, 128, 3, 2, 2, 2, 128, 129, 3, 2, 2, 2, 129, 130, 8, 20, 2, 2, 130, 40, 3, 2, 2, 2, 7, 2, 64, 70, 76, 127, 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 deleted file mode 100644 index f4e8cafe0..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.java +++ /dev/null @@ -1,159 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - -import org.antlr.v4.runtime.Lexer; -import org.antlr.v4.runtime.CharStream; -import org.antlr.v4.runtime.Token; -import org.antlr.v4.runtime.TokenStream; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.misc.*; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class MacrosLexer extends Lexer { - static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - 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, UNDEF=13, IFDEF=14, - IFNDEF=15, IFELSE=16, ENDIF=17, DEFINE_CONTINUE=18, WHITESPACE=19; - public static String[] channelNames = { - "DEFAULT_TOKEN_CHANNEL", "HIDDEN" - }; - - public static String[] modeNames = { - "DEFAULT_MODE" - }; - - 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", "UNDEF", "IFDEF", "IFNDEF", - "IFELSE", "ENDIF", "DEFINE_CONTINUE", "WHITESPACE" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "';'", "'*'", "'/'", "'+'", "'-'", "'('", "')'", "','", null, null, - null, "'#define'", "'#undef'", "'#ifdef'", "'#ifndef'", "'#else'", "'#endif'", - "'\\\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", "UNDEF", "IFDEF", "IFNDEF", - "IFELSE", "ENDIF", "DEFINE_CONTINUE", "WHITESPACE" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - - - - public MacrosLexer(CharStream input) { - super(input); - _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - @Override - public String getGrammarFileName() { return "Macros.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public String[] getChannelNames() { return channelNames; } - - @Override - public String[] getModeNames() { return modeNames; } - - @Override - public ATN getATN() { return _ATN; } - - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\25\u0083\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\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\nA\n\n\3\13\3\13\7"+ - "\13E\n\13\f\13\16\13H\13\13\3\f\6\fK\n\f\r\f\16\fL\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\17\3"+ - "\17\3\17\3\17\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\20\3\21\3\21\3\21\3"+ - "\21\3\21\3\21\3\22\3\22\3\22\3\22\3\22\3\22\3\22\3\23\3\23\3\23\3\24\6"+ - "\24~\n\24\r\24\16\24\177\3\24\3\24\2\2\25\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!\22#\23%\24\'\25\3\2\6"+ - "\5\2C\\aac|\6\2\62;C\\aac|\3\2\62;\5\2\13\f\17\17\"\"\2\u0086\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\2!\3\2\2\2\2#\3\2\2\2\2%\3"+ - "\2\2\2\2\'\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\61\3"+ - "\2\2\2\r\63\3\2\2\2\17\65\3\2\2\2\21\67\3\2\2\2\23@\3\2\2\2\25B\3\2\2"+ - "\2\27J\3\2\2\2\31N\3\2\2\2\33V\3\2\2\2\35]\3\2\2\2\37d\3\2\2\2!l\3\2\2"+ - "\2#r\3\2\2\2%y\3\2\2\2\'}\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/\60\7-\2\2\60\n\3\2\2\2\61\62\7/\2\2\62\f\3"+ - "\2\2\2\63\64\7*\2\2\64\16\3\2\2\2\65\66\7+\2\2\66\20\3\2\2\2\678\7.\2"+ - "\28\22\3\2\2\29:\7e\2\2:;\7j\2\2;<\7c\2\2\7k\2\2>?\7p\2\2?"+ - "A\7v\2\2@9\3\2\2\2@=\3\2\2\2A\24\3\2\2\2BF\t\2\2\2CE\t\3\2\2DC\3\2\2\2"+ - "EH\3\2\2\2FD\3\2\2\2FG\3\2\2\2G\26\3\2\2\2HF\3\2\2\2IK\t\4\2\2JI\3\2\2"+ - "\2KL\3\2\2\2LJ\3\2\2\2LM\3\2\2\2M\30\3\2\2\2NO\7%\2\2OP\7f\2\2PQ\7g\2"+ - "\2QR\7h\2\2RS\7k\2\2ST\7p\2\2TU\7g\2\2U\32\3\2\2\2VW\7%\2\2WX\7w\2\2X"+ - "Y\7p\2\2YZ\7f\2\2Z[\7g\2\2[\\\7h\2\2\\\34\3\2\2\2]^\7%\2\2^_\7k\2\2_`"+ - "\7h\2\2`a\7f\2\2ab\7g\2\2bc\7h\2\2c\36\3\2\2\2de\7%\2\2ef\7k\2\2fg\7h"+ - "\2\2gh\7p\2\2hi\7f\2\2ij\7g\2\2jk\7h\2\2k \3\2\2\2lm\7%\2\2mn\7g\2\2n"+ - "o\7n\2\2op\7u\2\2pq\7g\2\2q\"\3\2\2\2rs\7%\2\2st\7g\2\2tu\7p\2\2uv\7f"+ - "\2\2vw\7k\2\2wx\7h\2\2x$\3\2\2\2yz\7^\2\2z{\7\f\2\2{&\3\2\2\2|~\t\5\2"+ - "\2}|\3\2\2\2~\177\3\2\2\2\177}\3\2\2\2\177\u0080\3\2\2\2\u0080\u0081\3"+ - "\2\2\2\u0081\u0082\b\24\2\2\u0082(\3\2\2\2\7\2@FL\177\3\2\3\2"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens deleted file mode 100644 index 96a5a3767..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosLexer.tokens +++ /dev/null @@ -1,34 +0,0 @@ -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 -UNDEF=13 -IFDEF=14 -IFNDEF=15 -IFELSE=16 -ENDIF=17 -DEFINE_CONTINUE=18 -WHITESPACE=19 -';'=1 -'*'=2 -'/'=3 -'+'=4 -'-'=5 -'('=6 -')'=7 -','=8 -'#define'=12 -'#undef'=13 -'#ifdef'=14 -'#ifndef'=15 -'#else'=16 -'#endif'=17 -'\\\n'=18 diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosListener.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosListener.java deleted file mode 100644 index 063bc3ee7..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosListener.java +++ /dev/null @@ -1,94 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - -import org.antlr.v4.runtime.tree.ParseTreeListener; - -/** - * This interface defines a complete listener for a parse tree produced by - * {@link MacrosParser}. - */ -public interface MacrosListener extends ParseTreeListener { - /** - * Enter a parse tree produced by {@link MacrosParser#stmtSeq}. - * @param ctx the parse tree - */ - void enterStmtSeq(MacrosParser.StmtSeqContext ctx); - /** - * Exit a parse tree produced by {@link MacrosParser#stmtSeq}. - * @param ctx the parse tree - */ - void exitStmtSeq(MacrosParser.StmtSeqContext ctx); - /** - * Enter a parse tree produced by the {@code stmtExpr} - * labeled alternative in {@link MacrosParser#stmt}. - * @param ctx the parse tree - */ - void enterStmtExpr(MacrosParser.StmtExprContext ctx); - /** - * Exit a parse tree produced by the {@code stmtExpr} - * labeled alternative in {@link MacrosParser#stmt}. - * @param ctx the parse tree - */ - void exitStmtExpr(MacrosParser.StmtExprContext ctx); - /** - * Enter a parse tree produced by the {@code exprCast} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void enterExprCast(MacrosParser.ExprCastContext ctx); - /** - * Exit a parse tree produced by the {@code exprCast} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void exitExprCast(MacrosParser.ExprCastContext ctx); - /** - * Enter a parse tree produced by the {@code exprBinary} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void enterExprBinary(MacrosParser.ExprBinaryContext ctx); - /** - * Exit a parse tree produced by the {@code exprBinary} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void exitExprBinary(MacrosParser.ExprBinaryContext ctx); - /** - * Enter a parse tree produced by the {@code exprPar} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void enterExprPar(MacrosParser.ExprParContext ctx); - /** - * Exit a parse tree produced by the {@code exprPar} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void exitExprPar(MacrosParser.ExprParContext ctx); - /** - * Enter a parse tree produced by the {@code exprNumber} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void enterExprNumber(MacrosParser.ExprNumberContext ctx); - /** - * Exit a parse tree produced by the {@code exprNumber} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void exitExprNumber(MacrosParser.ExprNumberContext ctx); - /** - * Enter a parse tree produced by the {@code exprName} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void enterExprName(MacrosParser.ExprNameContext ctx); - /** - * Exit a parse tree produced by the {@code exprName} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - */ - void exitExprName(MacrosParser.ExprNameContext ctx); -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java deleted file mode 100644 index 968f8d151..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosParser.java +++ /dev/null @@ -1,533 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - -import org.antlr.v4.runtime.atn.*; -import org.antlr.v4.runtime.dfa.DFA; -import org.antlr.v4.runtime.*; -import org.antlr.v4.runtime.misc.*; -import org.antlr.v4.runtime.tree.*; -import java.util.List; -import java.util.Iterator; -import java.util.ArrayList; - -@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) -public class MacrosParser extends Parser { - static { RuntimeMetaData.checkVersion("4.7.2", RuntimeMetaData.VERSION); } - - protected static final DFA[] _decisionToDFA; - protected static final PredictionContextCache _sharedContextCache = - 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, UNDEF=13, IFDEF=14, - IFNDEF=15, IFELSE=16, ENDIF=17, DEFINE_CONTINUE=18, WHITESPACE=19; - public static final int - RULE_stmtSeq = 0, RULE_stmt = 1, RULE_expr = 2; - private static String[] makeRuleNames() { - return new String[] { - "stmtSeq", "stmt", "expr" - }; - } - public static final String[] ruleNames = makeRuleNames(); - - private static String[] makeLiteralNames() { - return new String[] { - null, "';'", "'*'", "'/'", "'+'", "'-'", "'('", "')'", "','", null, null, - null, "'#define'", "'#undef'", "'#ifdef'", "'#ifndef'", "'#else'", "'#endif'", - "'\\\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", "UNDEF", "IFDEF", "IFNDEF", - "IFELSE", "ENDIF", "DEFINE_CONTINUE", "WHITESPACE" - }; - } - private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); - public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); - - /** - * @deprecated Use {@link #VOCABULARY} instead. - */ - @Deprecated - public static final String[] tokenNames; - static { - tokenNames = new String[_SYMBOLIC_NAMES.length]; - for (int i = 0; i < tokenNames.length; i++) { - tokenNames[i] = VOCABULARY.getLiteralName(i); - if (tokenNames[i] == null) { - tokenNames[i] = VOCABULARY.getSymbolicName(i); - } - - if (tokenNames[i] == null) { - tokenNames[i] = ""; - } - } - } - - @Override - @Deprecated - public String[] getTokenNames() { - return tokenNames; - } - - @Override - - public Vocabulary getVocabulary() { - return VOCABULARY; - } - - @Override - public String getGrammarFileName() { return "Macros.g4"; } - - @Override - public String[] getRuleNames() { return ruleNames; } - - @Override - public String getSerializedATN() { return _serializedATN; } - - @Override - public ATN getATN() { return _ATN; } - - - - public MacrosParser(TokenStream input) { - super(input); - _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); - } - - public static class StmtSeqContext extends ParserRuleContext { - public List stmt() { - return getRuleContexts(StmtContext.class); - } - public StmtContext stmt(int i) { - return getRuleContext(StmtContext.class,i); - } - public StmtSeqContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_stmtSeq; } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterStmtSeq(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitStmtSeq(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitStmtSeq(this); - else return visitor.visitChildren(this); - } - } - - public final StmtSeqContext stmtSeq() throws RecognitionException { - StmtSeqContext _localctx = new StmtSeqContext(_ctx, getState()); - enterRule(_localctx, 0, RULE_stmtSeq); - int _la; - try { - enterOuterAlt(_localctx, 1); - { - setState(9); - _errHandler.sync(this); - _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PAR_BEGIN) | (1L << IDENTIFIER) | (1L << NUMBER))) != 0)) { - { - { - setState(6); - stmt(); - } - } - setState(11); - _errHandler.sync(this); - _la = _input.LA(1); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class StmtContext extends ParserRuleContext { - public StmtContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_stmt; } - - public StmtContext() { } - public void copyFrom(StmtContext ctx) { - super.copyFrom(ctx); - } - } - public static class StmtExprContext extends StmtContext { - public ExprContext expr() { - return getRuleContext(ExprContext.class,0); - } - public StmtExprContext(StmtContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterStmtExpr(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitStmtExpr(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitStmtExpr(this); - else return visitor.visitChildren(this); - } - } - - public final StmtContext stmt() throws RecognitionException { - StmtContext _localctx = new StmtContext(_ctx, getState()); - enterRule(_localctx, 2, RULE_stmt); - try { - _localctx = new StmtExprContext(_localctx); - enterOuterAlt(_localctx, 1); - { - setState(12); - expr(0); - setState(13); - match(T__0); - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - exitRule(); - } - return _localctx; - } - - public static class ExprContext extends ParserRuleContext { - public ExprContext(ParserRuleContext parent, int invokingState) { - super(parent, invokingState); - } - @Override public int getRuleIndex() { return RULE_expr; } - - public ExprContext() { } - public void copyFrom(ExprContext ctx) { - super.copyFrom(ctx); - } - } - public static class ExprCastContext extends ExprContext { - public TerminalNode PAR_BEGIN() { return getToken(MacrosParser.PAR_BEGIN, 0); } - public TerminalNode SIMPLETYPE() { return getToken(MacrosParser.SIMPLETYPE, 0); } - public TerminalNode PAR_END() { return getToken(MacrosParser.PAR_END, 0); } - public ExprContext expr() { - return getRuleContext(ExprContext.class,0); - } - public ExprCastContext(ExprContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterExprCast(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitExprCast(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitExprCast(this); - else return visitor.visitChildren(this); - } - } - public static class ExprBinaryContext extends ExprContext { - public List expr() { - return getRuleContexts(ExprContext.class); - } - public ExprContext expr(int i) { - return getRuleContext(ExprContext.class,i); - } - public TerminalNode COMMA() { return getToken(MacrosParser.COMMA, 0); } - public ExprBinaryContext(ExprContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterExprBinary(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitExprBinary(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitExprBinary(this); - else return visitor.visitChildren(this); - } - } - public static class ExprParContext extends ExprContext { - public TerminalNode PAR_BEGIN() { return getToken(MacrosParser.PAR_BEGIN, 0); } - public ExprContext expr() { - return getRuleContext(ExprContext.class,0); - } - public TerminalNode PAR_END() { return getToken(MacrosParser.PAR_END, 0); } - public ExprParContext(ExprContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterExprPar(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitExprPar(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitExprPar(this); - else return visitor.visitChildren(this); - } - } - public static class ExprNumberContext extends ExprContext { - public TerminalNode NUMBER() { return getToken(MacrosParser.NUMBER, 0); } - public ExprNumberContext(ExprContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterExprNumber(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitExprNumber(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitExprNumber(this); - else return visitor.visitChildren(this); - } - } - public static class ExprNameContext extends ExprContext { - public TerminalNode IDENTIFIER() { return getToken(MacrosParser.IDENTIFIER, 0); } - public ExprNameContext(ExprContext ctx) { copyFrom(ctx); } - @Override - public void enterRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).enterExprName(this); - } - @Override - public void exitRule(ParseTreeListener listener) { - if ( listener instanceof MacrosListener ) ((MacrosListener)listener).exitExprName(this); - } - @Override - public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof MacrosVisitor ) return ((MacrosVisitor)visitor).visitExprName(this); - else return visitor.visitChildren(this); - } - } - - public final ExprContext expr() throws RecognitionException { - return expr(0); - } - - private ExprContext expr(int _p) throws RecognitionException { - ParserRuleContext _parentctx = _ctx; - int _parentState = getState(); - ExprContext _localctx = new ExprContext(_ctx, _parentState); - ExprContext _prevctx = _localctx; - int _startState = 4; - enterRecursionRule(_localctx, 4, RULE_expr, _p); - try { - int _alt; - enterOuterAlt(_localctx, 1); - { - setState(26); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,1,_ctx) ) { - case 1: - { - _localctx = new ExprCastContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - - setState(16); - match(PAR_BEGIN); - setState(17); - match(SIMPLETYPE); - setState(18); - match(PAR_END); - setState(19); - expr(9); - } - break; - case 2: - { - _localctx = new ExprNameContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(20); - match(IDENTIFIER); - } - break; - case 3: - { - _localctx = new ExprNumberContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(21); - match(NUMBER); - } - break; - case 4: - { - _localctx = new ExprParContext(_localctx); - _ctx = _localctx; - _prevctx = _localctx; - setState(22); - match(PAR_BEGIN); - setState(23); - expr(0); - setState(24); - match(PAR_END); - } - break; - } - _ctx.stop = _input.LT(-1); - setState(45); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,3,_ctx); - while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { - if ( _alt==1 ) { - if ( _parseListeners!=null ) triggerExitRuleEvent(); - _prevctx = _localctx; - { - setState(43); - _errHandler.sync(this); - switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) { - case 1: - { - _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(28); - if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); - setState(29); - match(T__1); - setState(30); - expr(6); - } - break; - case 2: - { - _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(31); - if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(32); - match(T__2); - setState(33); - expr(5); - } - break; - case 3: - { - _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(34); - if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(35); - match(T__3); - setState(36); - expr(4); - } - break; - case 4: - { - _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(37); - if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); - setState(38); - match(T__4); - setState(39); - expr(3); - } - break; - case 5: - { - _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); - pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(40); - if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(41); - match(COMMA); - setState(42); - expr(2); - } - break; - } - } - } - setState(47); - _errHandler.sync(this); - _alt = getInterpreter().adaptivePredict(_input,3,_ctx); - } - } - } - catch (RecognitionException re) { - _localctx.exception = re; - _errHandler.reportError(this, re); - _errHandler.recover(this, re); - } - finally { - unrollRecursionContexts(_parentctx); - } - return _localctx; - } - - public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { - switch (ruleIndex) { - case 2: - return expr_sempred((ExprContext)_localctx, predIndex); - } - return true; - } - private boolean expr_sempred(ExprContext _localctx, int predIndex) { - switch (predIndex) { - case 0: - return precpred(_ctx, 5); - case 1: - return precpred(_ctx, 4); - case 2: - return precpred(_ctx, 3); - case 3: - return precpred(_ctx, 2); - case 4: - return precpred(_ctx, 1); - } - return true; - } - - public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\25\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"+ - "\4\6\2\2\28\2\13\3\2\2\2\4\16\3\2\2\2\6\34\3\2\2\2\b\n\5\4\3\2\t\b\3\2"+ - "\2\2\n\r\3\2\2\2\13\t\3\2\2\2\13\f\3\2\2\2\f\3\3\2\2\2\r\13\3\2\2\2\16"+ - "\17\5\6\4\2\17\20\7\3\2\2\20\5\3\2\2\2\21\22\b\4\1\2\22\23\7\b\2\2\23"+ - "\24\7\13\2\2\24\25\7\t\2\2\25\35\5\6\4\13\26\35\7\f\2\2\27\35\7\r\2\2"+ - "\30\31\7\b\2\2\31\32\5\6\4\2\32\33\7\t\2\2\33\35\3\2\2\2\34\21\3\2\2\2"+ - "\34\26\3\2\2\2\34\27\3\2\2\2\34\30\3\2\2\2\35/\3\2\2\2\36\37\f\7\2\2\37"+ - " \7\4\2\2 .\5\6\4\b!\"\f\6\2\2\"#\7\5\2\2#.\5\6\4\7$%\f\5\2\2%&\7\6\2"+ - "\2&.\5\6\4\6\'(\f\4\2\2()\7\7\2\2).\5\6\4\5*+\f\3\2\2+,\7\n\2\2,.\5\6"+ - "\4\4-\36\3\2\2\2-!\3\2\2\2-$\3\2\2\2-\'\3\2\2\2-*\3\2\2\2.\61\3\2\2\2"+ - "/-\3\2\2\2/\60\3\2\2\2\60\7\3\2\2\2\61/\3\2\2\2\6\13\34-/"; - public static final ATN _ATN = - new ATNDeserializer().deserialize(_serializedATN.toCharArray()); - static { - _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; - for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { - _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); - } - } -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosVisitor.java b/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosVisitor.java deleted file mode 100644 index 1966fac6c..000000000 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/MacrosVisitor.java +++ /dev/null @@ -1,63 +0,0 @@ -// Generated from /Users/jespergravgaard/c64/kickc/src/test/java/dk/camelot64/kickc/parsing/macros/Macros.g4 by ANTLR 4.7.2 -package dk.camelot64.kickc.parsing.macros; - - -import org.antlr.v4.runtime.tree.ParseTreeVisitor; - -/** - * This interface defines a complete generic visitor for a parse tree produced - * by {@link MacrosParser}. - * - * @param The return type of the visit operation. Use {@link Void} for - * operations with no return type. - */ -public interface MacrosVisitor extends ParseTreeVisitor { - /** - * Visit a parse tree produced by {@link MacrosParser#stmtSeq}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitStmtSeq(MacrosParser.StmtSeqContext ctx); - /** - * Visit a parse tree produced by the {@code stmtExpr} - * labeled alternative in {@link MacrosParser#stmt}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitStmtExpr(MacrosParser.StmtExprContext ctx); - /** - * Visit a parse tree produced by the {@code exprCast} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitExprCast(MacrosParser.ExprCastContext ctx); - /** - * Visit a parse tree produced by the {@code exprBinary} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitExprBinary(MacrosParser.ExprBinaryContext ctx); - /** - * Visit a parse tree produced by the {@code exprPar} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitExprPar(MacrosParser.ExprParContext ctx); - /** - * Visit a parse tree produced by the {@code exprNumber} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitExprNumber(MacrosParser.ExprNumberContext ctx); - /** - * Visit a parse tree produced by the {@code exprName} - * labeled alternative in {@link MacrosParser#expr}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitExprName(MacrosParser.ExprNameContext ctx); -} \ No newline at end of file diff --git a/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java b/src/test/java/dk/camelot64/kickc/parsing/macros/TestPreprocessor.java similarity index 56% rename from src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java rename to src/test/java/dk/camelot64/kickc/parsing/macros/TestPreprocessor.java index 591792262..36ad02ca2 100644 --- a/src/test/java/dk/camelot64/kickc/parsing/macros/TestMacrosParser.java +++ b/src/test/java/dk/camelot64/kickc/parsing/macros/TestPreprocessor.java @@ -1,16 +1,18 @@ package dk.camelot64.kickc.parsing.macros; -import dk.camelot64.kickc.model.CompileError; -import dk.camelot64.kickc.preprocessor.CPreprocessor; -import dk.camelot64.kickc.preprocessor.CPreprocessorTokens; -import org.antlr.v4.runtime.*; +import dk.camelot64.kickc.parser.CParser; +import dk.camelot64.kickc.parser.KickCParser; +import dk.camelot64.kickc.parser.KickCParserBaseVisitor; +import org.antlr.v4.runtime.CharStreams; +import org.antlr.v4.runtime.CodePointCharStream; import org.junit.Test; import static org.junit.Assert.assertEquals; -public class TestMacrosParser { - - private int CHANNEL_WHITESPACE = 1; +/** + * Test the C preprocessor + */ +public class TestPreprocessor { /** * Test some parsing without macros @@ -36,6 +38,8 @@ public class TestMacrosParser { public void testSimpleDefine() { // A simple unused define assertEquals("+(name:b,num:1);*(name:c,num:2);", parse("#define A a\nb+1;\nc*2;\n")); + // A minimal used define + assertEquals("name:a;", parse("#define A a\nA;")); // A simple used define assertEquals("+(*(name:axe,num:2),name:axe);", parse("#define A axe\nA*2+A;")); // A define using a special token class @@ -116,6 +120,47 @@ public class TestMacrosParser { assertEquals("name:x2;name:y;", parse("#define A a\n#ifndef A\nx1;\n#else\nx2;\n#endif\ny;")); } + /** + * Test #if + */ + @Test + public void testIf() { + // Output not generated by #if + assertEquals("name:y;", parse("#if 0\nx;\n#endif\ny;")); + // Output generated by #if + assertEquals("name:x;name:y;", parse("#define A 7\n#if 7\nx;\n#endif\ny;")); + // Output generated by #if using a sub-define + assertEquals("name:x;name:y;", parse("#define A 7\n#if A\nx;\n#endif\ny;")); + // Output not generated by #if using an undefined symbol + assertEquals("name:y;", parse("#if A\nx;\n#endif\ny;")); + // Output not generated by #if using an symbol==0 + assertEquals("name:y;", parse("#define A 0\n#if A\nx;\n#endif\ny;")); + // Output generated by #if using an expression + assertEquals("name:x;name:y;", parse("#define A 7\n#if A==7\nx;\n#endif\ny;")); + // Output not generated by #if using an expression + assertEquals("name:y;", parse("#define A 7\n#if A==6\nx;\n#endif\ny;")); + // Output generated by #if using an expression + assertEquals("name:x;name:y;", parse("#define A 7\n#define B 8\n#if AB\nx;\n#endif\ny;")); + // Output generated by #if using an expression with a parenthesis + assertEquals("name:x;name:y;", parse("#define A 7\n#define B 8\n#if (A(B))\nx;\n#endif\ny;")); + // Output generated by #if using a unary expression + assertEquals("name:x;name:y;", parse("#define A -10\n#define B 8\n#if A<-B\nx;\n#endif\ny;")); + // Output not generated by #if using a unary expression + assertEquals("name:y;", parse("#define A 7\n#define B 8\n#if !(A recognizer, - Object offendingSymbol, - int line, - int charPositionInLine, - String msg, - RecognitionException e) { - throw new CompileError("Error parsing file " + fileStream.getSourceName() + "\n - Line: " + line + "\n - Message: " + msg); - } - }); - - final CPreprocessorTokens preprocessorTokens = new CPreprocessorTokens(CHANNEL_WHITESPACE, MacrosLexer.WHITESPACE, MacrosLexer.DEFINE, MacrosLexer.IDENTIFIER, MacrosLexer.DEFINE_CONTINUE, MacrosLexer.UNDEF, MacrosLexer.IFDEF, MacrosLexer.IFNDEF, MacrosLexer.IFELSE, MacrosLexer.ENDIF, 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() { - @Override - public void syntaxError( - Recognizer recognizer, - Object offendingSymbol, - int line, - int charPositionInLine, - String msg, - RecognitionException e) { - throw new CompileError("Error parsing file " + fileStream.getSourceName() + "\n - Line: " + line + "\n - Message: " + msg); - } - }); - + CodePointCharStream charStream = CharStreams.fromString(program); + CParser cParser = new CParser(null); + cParser.addSource(charStream); + KickCParser.StmtSeqContext stmtSeqContext = cParser.getParser().stmtSeq(); MacrosPrinter printVisitor = new MacrosPrinter(); - printVisitor.visit(parser.stmtSeq()); + printVisitor.visit(stmtSeqContext); return printVisitor.getOut().toString(); } - private static class MacrosPrinter extends MacrosBaseVisitor { + private static class MacrosPrinter extends KickCParserBaseVisitor { StringBuilder out = new StringBuilder(); - public StringBuilder getOut() { + StringBuilder getOut() { return out; } + @Override - public Object visitStmtSeq(MacrosParser.StmtSeqContext ctx) { - for(MacrosParser.StmtContext stmtContext : ctx.stmt()) { + public Object visitStmtSeq(KickCParser.StmtSeqContext ctx) { + for(KickCParser.StmtContext stmtContext : ctx.stmt()) { this.visit(stmtContext); out.append(";"); } @@ -188,26 +205,20 @@ public class TestMacrosParser { } @Override - public Object visitStmtExpr(MacrosParser.StmtExprContext ctx) { - this.visit(ctx.expr()); + public Object visitExprId(KickCParser.ExprIdContext ctx) { + out.append("name:").append(ctx.NAME().getText()); return null; } @Override - public Object visitExprName(MacrosParser.ExprNameContext ctx) { - out.append("name:").append(ctx.getText()); - return null; + public Object visitExprNumber(KickCParser.ExprNumberContext ctx) { + return out.append("num:").append(ctx.NUMBER().getText()); } @Override - public Object visitExprNumber(MacrosParser.ExprNumberContext ctx) { - return out.append("num:").append(ctx.getText()); - } - - @Override - public Object visitExprCast(MacrosParser.ExprCastContext ctx) { + public Object visitExprCast(KickCParser.ExprCastContext ctx) { out.append("cast("); - out.append(ctx.SIMPLETYPE().getText()); + out.append(ctx.typeSpecifier().getText()); out.append(","); this.visit(ctx.expr()); out.append(")"); @@ -215,7 +226,7 @@ public class TestMacrosParser { } @Override - public Object visitExprBinary(MacrosParser.ExprBinaryContext ctx) { + public Object visitExprBinary(KickCParser.ExprBinaryContext ctx) { String fct = ctx.getChild(1).getText(); out.append(fct).append("("); this.visit(ctx.expr(0)); @@ -225,11 +236,10 @@ public class TestMacrosParser { return null; } - @Override - public Object visitExprPar(MacrosParser.ExprParContext ctx) { + public Object visitExprPar(KickCParser.ExprParContext ctx) { out.append("("); - this.visit(ctx.expr()); + this.visit(ctx.commaExpr()); out.append(")"); return null; }